@charset "UTF-8";
section {
  scroll-margin-top: 120px; /* ヘッダー高さ分 or 好きなだけ余白 */
}

.coatingpage-col {
  padding-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.coatingpage-col .lr {
  display: flex;
  justify-content: space-between;
}
.coatingpage-col .lr .left {
  position: relative;
  width: 275px;
}
.coatingpage-col .lr .right {
  width: calc(100% - 275px - 64px);
}
.coatingpage-col .lr .ankerlinks {
  position: absolute;
  left: 0;
  top: 0;
  width: 275px;
  transition: opacity 0.5s ease;
  opacity: 1;
}
.coatingpage-col .lr .ankerlinks a {
  padding: 12px 12px;
  display: block;
  letter-spacing: 0.1em;
  font-size: 1.8rem;
  font-weight: 600;
  color: #ACACAC;
  border-bottom: solid 1px #acacac;
}
.coatingpage-col .lr .ankerlinks a.show {
  color: #000000;
  border-bottom: solid 1px #061E4E;
  background-color: #061E4E;
  color: #fff;
}
.coatingpage-col .lr .ankerlinks.fixed {
  position: fixed;
  z-index: 100;
}
.coatingpage-col .lr .ankerlinks.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.coatingpage-col .lr section {
  margin-bottom: 80px;
}
.coatingpage-col .lr section h2 {
  font-size: 2.8rem;
  letter-spacing: 0.1em;
  color: #061E4E;
  border-bottom: solid 1px #061E4E;
  padding-bottom: 8px;
  margin-bottom: 24px;
}
.coatingpage-col .lr section .image {
  margin-bottom: 24px;
}
.coatingpage-col .lr section .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  border-radius: 30px;
}
.coatingpage-col .lr section h3 {
  margin-top: 40px;
  font-size: 2.4rem;
}
.coatingpage-col .lr section .product-items {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px 0;
}
.coatingpage-col .lr section .product-items::after {
  content: "";
  width: 32%;
}
.coatingpage-col .lr section .product-items li {
  position: relative;
  width: 32%;
}
.coatingpage-col .lr section .product-items li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #ddd;
}
.coatingpage-col .lr section .product-items li figure {
  margin-bottom: 16px;
}
.coatingpage-col .lr section .product-items li figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
}
.coatingpage-col .lr section .product-items li h4 {
  margin-bottom: 8px;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}
.coatingpage-col .lr section .product-items li p {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  line-height: 1.7;
  padding-bottom: 8px;
}
.coatingpage-col .lr section .product-cta {
  position: relative;
  margin-top: 40px;
  padding: 64px 32px;
  border-radius: 20px;
  background-color: #061E4E;
}
.coatingpage-col .lr section .product-cta::before {
  content: "";
  position: absolute;
  left: -4px;
  top: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  border: solid 2px #061E4E;
  border-radius: 24px;
  z-index: -1;
}
.coatingpage-col .lr section .product-cta .lr {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.coatingpage-col .lr section .product-cta .lr .left {
  width: 55%;
}
.coatingpage-col .lr section .product-cta .lr .left .heading {
  margin-top: 0;
  font-size: 2.4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
}
.coatingpage-col .lr section .product-cta .lr .left .desc {
  font-size: 1.4rem;
  color: #fff;
}
.coatingpage-col .lr section .product-cta .lr .right {
  width: 45%;
}
.coatingpage-col .lr section .product-cta .lr .right .btn-gr {
  text-align: center;
}
.coatingpage-col .lr section .product-cta .lr .right .btn-gr .upper {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.coatingpage-col .lr section .product-cta .lr .right .btn-gr a {
  margin-left: auto;
  margin-right: auto;
  display: block;
  padding: 12px;
  width: 80%;
  background-color: #fff;
  border-radius: 50px;
  font-size: 1.8rem;
  font-weight: 600;
  color: #061E4E;
}

@media screen and (max-width: 750px) {
  section {
    scroll-margin-top: 72px; /* ヘッダー高さ分 or 好きなだけ余白 */
  }
  .coatingpage-col {
    padding-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  .coatingpage-col .lr {
    display: block;
  }
  .coatingpage-col .lr .left {
    width: 100%;
  }
  .coatingpage-col .lr .right {
    width: 100%;
  }
  .coatingpage-col .lr .ankerlinks {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
  }
  .coatingpage-col .lr .ankerlinks a {
    padding: 8px 8px;
    font-size: 1.4rem;
  }
  .coatingpage-col .lr .ankerlinks.fixed {
    position: initial;
  }
  .coatingpage-col .lr section {
    margin-bottom: 40px;
  }
  .coatingpage-col .lr section h2 {
    font-size: 2rem;
    padding-bottom: 4px;
    margin-bottom: 16px;
  }
  .coatingpage-col .lr section .image {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 12px;
  }
  .coatingpage-col .lr section .image img {
    border-radius: 10px;
  }
  .coatingpage-col .lr section h3 {
    margin-top: 24px;
    font-size: 1.8rem;
  }
  .coatingpage-col .lr section .product-items {
    margin-top: 16px;
    gap: 24px 0;
  }
  .coatingpage-col .lr section .product-items::after {
    display: none;
  }
  .coatingpage-col .lr section .product-items li {
    width: 48%;
  }
  .coatingpage-col .lr section .product-items li figure {
    margin-bottom: 8px;
  }
  .coatingpage-col .lr section .product-items li figure img {
    border-radius: 10px;
  }
  .coatingpage-col .lr section .product-items li h4 {
    margin-bottom: 6px;
    font-size: 1.5rem;
  }
  .coatingpage-col .lr section .product-items li p {
    font-size: 1.2rem;
  }
  .coatingpage-col .lr section .product-cta {
    margin-top: 24px;
    padding: 32px 16px;
    border-radius: 10px;
  }
  .coatingpage-col .lr section .product-cta::before {
    border-radius: 10px;
  }
  .coatingpage-col .lr section .product-cta .lr {
    display: block;
  }
  .coatingpage-col .lr section .product-cta .lr .left {
    width: 100%;
  }
  .coatingpage-col .lr section .product-cta .lr .left .heading {
    font-size: 1.8rem;
    margin-bottom: 12px;
    text-align: center;
  }
  .coatingpage-col .lr section .product-cta .lr .left .desc {
    font-size: 1.28rem;
  }
  .coatingpage-col .lr section .product-cta .lr .right {
    margin-top: 16px;
    width: 100%;
  }
  .coatingpage-col .lr section .product-cta .lr .right .btn-gr .upper {
    color: #fff;
    font-size: 1.28rem;
    margin-bottom: 4px;
  }
  .coatingpage-col .lr section .product-cta .lr .right .btn-gr a {
    padding: 12px 4px;
    width: 80%;
    font-size: 1.5rem;
  }
}/*# sourceMappingURL=coatingpage.css.map */