@charset "UTF-8";
/**
 * フォントファミリー
 * -----------------------------------------------
 *
 * @format
 */
/* フォント
-----------------------------------------------*/
/* カラー
-----------------------------------------------*/
/* インナー幅
-----------------------------------------------*/
/* z-index
-----------------------------------------------*/
/** @format */
/*==============================================
#共通クラス
===============================================*/
html {
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 0.8928571429vw;
  }
}
@media (min-width: 1120px) {
  html {
    font-size: 10px;
  }
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 160%;
  color: #3c3c3c;
  background-color: #f7f6f1;
}

.inner {
  padding-left: 1.6rem;
  padding-right: 1.6rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: calc(1080px + 4rem);
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.section {
  padding-block: 6rem;
}
@media screen and (min-width: 768px) {
  .section {
    padding-block: 10rem;
  }
}

.content {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .content {
    margin-top: 6rem;
  }
}

.section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .section-title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 6.4rem;
  }
}

.section-title__main {
  font-size: 2rem;
  letter-spacing: 3.2px;
  position: relative;
}
.section-title__main::before {
  content: "";
  position: absolute;
  width: 2.4rem;
  height: 2px;
  background-color: #efc033;
  left: 0;
  top: calc(100% + 1rem);
}
@media screen and (min-width: 768px) {
  .section-title__main::before {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: calc(100% + 2rem);
  }
}

.section-title__sub {
  font-size: 1.4rem;
  letter-spacing: 1.4px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .section-title__sub {
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
hr {
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid #000;
  margin: 2rem 0;
}

.hidden-sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .hidden-sp {
    display: block;
  }
}

button {
  color: #3c3c3c;
  background: transparent;
  border: none;
}

.emphasis {
  color: #efc033;
  font-weight: bold;
}

.bg-white {
  background-color: #fff;
}

.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*==============================================
#コンポーネント
===============================================*/
.btn {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  border-radius: 50px;
  background-color: #efc033;
  padding: 6px 20px;
  border: 2px solid #efc033;
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}
.btn img {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
}
.btn:hover {
  background-color: #fff;
}

.btn-header__text {
  font-family: "DM Sans", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.07rem;
  font-weight: 500;
}

.btn-cta {
  -webkit-box-shadow: 0px 4px 6px 0px rgba(16, 8, 0, 0.15);
          box-shadow: 0px 4px 6px 0px rgba(16, 8, 0, 0.15);
  padding: 0.6rem 2rem;
  width: 28rem;
  max-width: 100%;
  height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn-cta__text {
  font-size: 1.8rem;
  letter-spacing: 0.09rem;
  font-weight: 500;
}

.microcopy {
  font-family: "DM Sans", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.7px;
}

/** @format */
/*==============================================
#header
===============================================*/
.header-wrapper {
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 1.6rem;
  padding-inline: 1.6rem;
}

.header {
  background: #fff;
  max-width: 1140px;
  width: 100%;
  height: 60px;
  margin-inline: auto;
  border-radius: 50px;
  -webkit-box-shadow: 0px 16px 32px 0px rgba(16, 8, 0, 0.12);
          box-shadow: 0px 16px 32px 0px rgba(16, 8, 0, 0.12);
}

.header__inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 3rem;
}

.header__logo {
  width: 12rem;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 14.3rem;
  }
}
.header__logo a {
  display: inline-block;
  width: inherit;
}

.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
    margin-left: auto;
    height: inherit;
  }
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  height: inherit;
}

.header__list li {
  height: inherit;
}

.header__list-link {
  position: relative;
  display: inline-block;
  width: 9rem;
  height: 60px;
  line-height: 60px;
  overflow: hidden;
}

.btn__text {
  position: absolute;
  left: 0;
  display: block;
  height: 100%;
  width: 100%;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  letter-spacing: 0.8px;
}

.btn__text:nth-child(1) {
  top: 0;
  font-family: "DM Sans", sans-serif;
}

.btn__text:nth-child(2) {
  top: -180%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.3rem;
}

@media (hover: hover) {
  .header__list-link:hover .btn__text:nth-child(1) {
    top: 100%;
  }
}
@media (hover: hover) {
  .header__list-link:hover .btn__text:nth-child(2) {
    top: 0;
  }
}
.header__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .header__icons {
    display: none;
  }
}

.header__btn-sp {
  width: 3rem;
  height: 3rem;
  text-align: center;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.header__btn-sp:hover {
  opacity: 0.7;
}

/* ハンバーガーメニュー
-----------------------------------------------*/
.drawer__icon {
  width: 3.2rem;
  height: 2.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-block: 6px;
}
.drawer__icon:hover {
  cursor: pointer;
}

.drawer__icon--bar {
  width: 100%;
  height: 2px;
  background-color: #3c3c3c;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.drawer__icon.js-show .drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 0.7rem;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(2) {
  display: none;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -0.7rem;
}

.drawer {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  max-width: 375px;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background-color: #f7f6f1;
  overflow-y: scroll;
  translate: 101%;
  -webkit-transition: translate 0.5s ease;
  transition: translate 0.5s ease;
}
.drawer.js-show {
  translate: 0;
}

.drawer__body {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-block: 140px;
  padding-inline: 10rem;
  margin-inline: auto;
}

.drawer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 4rem;
}
.drawer__list li a {
  display: block;
  font-size: 2rem;
  font-weight: 400;
  line-height: normal;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.drawer__list li a:hover {
  color: #efc033;
}

/** @format */
/*==============================================
#fv
===============================================*/
.fv {
  height: 650px;
  position: relative;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .fv {
    height: 800px;
  }
}

.fv__img {
  height: 100%;
}
@media screen and (min-width: 768px) {
  .fv__img {
    margin-left: 30rem;
  }
}
.fv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 20% 50%;
     object-position: 20% 50%;
}
@media screen and (min-width: 768px) {
  .fv__img img {
    -o-object-position: 50% 35%;
       object-position: 50% 35%;
    border-bottom-left-radius: 12rem;
  }
}

.fv__message {
  position: absolute;
  top: 186px;
}
@media screen and (min-width: 768px) {
  .fv__message {
    top: 170px;
    left: 17.8rem;
  }
}

.fv__lead {
  width: 14.6rem;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 0rem 1rem 0.4rem 1rem;
}
@media screen and (min-width: 768px) {
  .fv__lead {
    width: 28.2rem;
    background-color: transparent;
    padding: unset;
  }
}

.fv__title {
  color: #efc033;
  font-family: "Cormorant Garamond";
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 7.68px;
  padding: 0.2rem 0.6rem 0.2rem 1rem;
  background-color: rgba(255, 255, 255, 0.6);
  margin-top: 0.6rem;
}
@media screen and (min-width: 768px) {
  .fv__title {
    font-size: 9.6rem;
    letter-spacing: 15.36px;
    background-color: transparent;
    padding: unset;
    mix-blend-mode: multiply;
  }
}

.fv__text {
  color: #222;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 1.5px;
  padding: 0.4rem 1rem;
  background-color: rgba(255, 255, 255, 0.6);
  margin-top: 0.6rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .fv__text {
    font-size: 2.4rem;
    letter-spacing: 3.6px;
    background-color: transparent;
    padding: unset;
  }
}

.fv__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 470px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .fv__btn {
    left: 17.8rem;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

.fv__btn-microcopy {
  padding: 0 1rem;
  background-color: rgba(255, 255, 255, 0.6);
}
@media screen and (min-width: 768px) {
  .fv__btn-microcopy {
    background-color: transparent;
    padding: unset;
  }
}

.fv__btn-link {
  margin-top: 0.6rem;
}

/* スクロールダウンの位置 */
.scroll {
  position: absolute;
  left: 17.8rem;
  bottom: 120px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

/* 線のアニメーション部分 */
.scroll::before {
  -webkit-animation: scroll 2s infinite;
          animation: scroll 2s infinite;
  background-color: #000;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
  z-index: 2;
}

/* 線の背景色 */
.scroll::after {
  background-color: #ccc;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}

/* 線のアニメーション */
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
/*==============================================
#banner
===============================================*/
.banner {
  padding-block: 4rem;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .banner {
    padding-block: 6rem;
  }
}
.banner img {
  width: 30rem;
  height: auto;
}
@media screen and (min-width: 600px) {
  .banner img {
    width: 60rem;
  }
}

/** @format */
/*==============================================
#worry
===============================================*/
.worry {
  position: relative;
  background: rgba(136, 136, 136, 0.6);
  overflow-x: hidden;
}

.worry__img1 {
  position: absolute;
  top: 0;
  right: calc(50% + 26.3rem);
  width: 31.7rem;
  height: 21.2rem;
  z-index: -1;
}

.worry__img2 {
  position: absolute;
  bottom: 0;
  left: calc(50% + 18.5rem);
  width: 47.3rem;
  height: 31.6rem;
  z-index: -1;
}

.worry__title {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .worry__title {
    font-size: 2.4rem;
    letter-spacing: 2.4px;
  }
}

.worry__list {
  max-width: 56rem;
  width: 100%;
  margin-inline: auto;
  background-color: #fff;
  padding: 2rem 1.6rem;
}
@media screen and (min-width: 768px) {
  .worry__list {
    padding: 3rem 2rem 3rem 3rem;
  }
}

.worry__item {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  padding-left: 23.5px;
  position: relative;
}
.worry__item::before {
  content: "";
  position: absolute;
  width: 15.5px;
  height: 13.5px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/icon_checkbox.svg) no-repeat center center/contain;
}
.worry__item + .worry__item {
  margin-top: 1.4rem;
}

/** @format */
/*==============================================
#feature
===============================================*/
.feature {
  position: relative;
  padding-top: calc(100px + 7rem);
}
@media screen and (min-width: 768px) {
  .feature {
    padding-top: calc(100px + 10rem);
  }
}
.feature::before {
  content: "";
  position: absolute;
  height: 7rem;
  width: 100%;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: rgba(136, 136, 136, 0.6);
  left: 0;
  top: 0px;
}
@media screen and (min-width: 768px) {
  .feature::before {
    height: 10rem;
  }
}

.feature__title {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .feature__title {
    font-size: 2.4rem;
    letter-spacing: 2.4px;
  }
}

.feature__subtitle {
  font-weight: 500;
  letter-spacing: 1.6px;
  margin-top: 1.2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .feature__subtitle {
    font-size: 18px;
    letter-spacing: 1.8px;
    margin-top: 0.8rem;
  }
}

.feature__content {
  max-width: 32rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .feature__content {
    max-width: unset;
  }
}

.feature-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.6rem;
}
@media screen and (min-width: 768px) {
  .feature-cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: 6rem;
       -moz-column-gap: 6rem;
            column-gap: 6rem;
    row-gap: 0;
  }
}

.feature-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.feature-card::before {
  position: absolute;
  font-family: "DM Sans", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.5px;
  color: #fff;
  background-color: #efc033;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: -1.5rem;
  left: -1.5rem;
}

.feature-card:nth-child(1)::before {
  content: "01";
}

.feature-card:nth-child(2)::before {
  content: "02";
}

.feature-card:nth-child(3)::before {
  content: "03";
}

.feature-card__body {
  padding: 2.4rem;
  background-color: #fff;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.feature-card__title {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.9px;
  text-align: center;
}

.feature-card__text {
  letter-spacing: 0.8px;
  margin-top: 1rem;
}

.feature__btn {
  margin-top: 4rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .feature__btn {
    margin-top: 6rem;
  }
}
.feature__btn a {
  margin-inline: auto;
}

/** @format */
/*==============================================
#gallery
===============================================*/
.gallery {
  background-color: #fff;
}

.gallery-items {
  display: grid;
  gap: 2.4rem;
  max-width: 30rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .gallery-items {
    max-width: 1080px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .gallery-item:nth-of-type(1) {
    grid-column: 1/2;
    grid-row: 1/3;
  }
  .gallery-item:nth-of-type(2) {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  .gallery-item:nth-of-type(3) {
    grid-column: 3/4;
    grid-row: 1/2;
  }
  .gallery-item:nth-of-type(4) {
    grid-column: 2/4;
    grid-row: 2/3;
  }
}

/** @format */
/*==============================================
#color
===============================================*/
.color__content {
  margin-top: 7rem;
}

.color__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6.5rem;
  max-width: 28rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .color__list {
    gap: 5.9rem;
    max-width: 104rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.color__item {
  text-align: center;
}

.color__img {
  position: relative;
}
.color__img::before {
  content: "";
  position: absolute;
  width: 105%;
  height: 105%;
  top: 53%;
  left: 47%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  rotate: 4deg;
  z-index: -1;
}

.color__item:nth-of-type(1) .color__img::before {
  background-color: #333333;
}

.color__item:nth-of-type(2) .color__img::before {
  background-color: #beb0a3;
}

.color__item:nth-of-type(3) .color__img::before {
  background-color: #f1cccf;
}

.color__item:nth-of-type(4) .color__img::before {
  background-color: #b2bacf;
}

.color__title {
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 0.4rem 0.8rem;
  text-align: center;
  display: inline-block;
  margin-top: 2.4rem;
}

.color__item:nth-of-type(1) .color__title {
  background-color: #333333;
}

.color__item:nth-of-type(2) .color__title {
  background-color: #beb0a3;
}

.color__item:nth-of-type(3) .color__title {
  background-color: #f1cccf;
}

.color__item:nth-of-type(4) .color__title {
  background-color: #b2bacf;
}

.color__text {
  letter-spacing: 0.4px;
  margin-top: 0.8rem;
}

/** @format */
/*==============================================
#voice
===============================================*/
.voice-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
}
@media screen and (min-width: 768px) {
  .voice-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

.voice-item {
  background-color: #fff;
  padding: 1.4rem;
}
@media screen and (min-width: 768px) {
  .voice-item {
    padding: 2rem;
  }
}

.voice-item__review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.4rem;
}
@media screen and (min-width: 768px) {
  .voice-item__review {
    gap: 2rem;
  }
}

.voice-item__review-title {
  letter-spacing: 0.8px;
}

.voice-item__review img {
  width: 10rem;
}
@media screen and (min-width: 768px) {
  .voice-item__review img {
    width: 12rem;
  }
}

.voice-item__number {
  color: #efc033;
  font-family: "DM Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 100%;
}
@media screen and (min-width: 768px) {
  .voice-item__number {
    font-size: 2rem;
  }
}

.voice-item__title {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.7px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .voice-item__title {
    font-size: 1.8rem;
    letter-spacing: 0.9px;
  }
}

.voice-item__body {
  margin-top: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.voice-item__customer {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 7rem;
          flex: 0 0 7rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .voice-item__customer {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8rem;
            flex: 0 0 8rem;
  }
}

.voice-item__customer-img {
  width: 5rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .voice-item__customer-img {
    width: 6rem;
  }
}

.voice-item__customer-text {
  margin-top: 1rem;
  font-size: 1.2rem;
  line-height: 140%;
  letter-spacing: 0.5px;
}
@media screen and (min-width: 768px) {
  .voice-item__customer-text {
    font-size: 1.4rem;
    letter-spacing: 0.7px;
  }
}

.voice-item__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/** @format */
/*==============================================
#product
===============================================*/
.product {
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .product-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6%;
  }
}

@media screen and (min-width: 768px) {
  .product__image {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.product__image img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.product__sub-img {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
@media screen and (min-width: 768px) {
  .product__sub-img {
    margin-top: 3rem;
    gap: 2.4rem;
  }
}

.product__sub-img img {
  cursor: pointer;
}

.product__body {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .product__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50rem;
            flex: 0 0 50rem;
    margin-top: unset;
  }
}

.product__title {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 2.4px;
}

.product__campaign {
  font-size: 1.4rem;
  letter-spacing: 1.4px;
  margin-top: 1.6rem;
}

.product__price--original {
  font-size: 1.4rem;
  letter-spacing: 1.4px;
  position: relative;
  margin-top: 0.6rem;
}
.product__price--original span {
  font-family: "DM Sans", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 1.8px;
}
.product__price--original::before {
  content: "";
  position: absolute;
  width: 13.2rem;
  height: 1px;
  background-color: #3c3c3c;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.product__price--current {
  color: #bf0000;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 1.4px;
  margin-top: 0.4rem;
}
.product__price--current span {
  font-family: "DM Sans", sans-serif;
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 2.6px;
}

.product__color-title {
  font-size: 1.6rem;
  letter-spacing: 1.6px;
  margin-top: 2.6rem;
}

.product__color {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 2.4rem;
  margin-top: 1rem;
}
.product__color span {
  display: inline-block;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  cursor: pointer;
}

.product__color span:nth-of-type(1) {
  background-color: #333333;
}

.product__color span:nth-of-type(2) {
  background-color: #beb0a3;
}

.product__color span:nth-of-type(3) {
  background-color: #f1cccf;
}

.product__color span:nth-of-type(4) {
  background-color: #b2bacf;
}

.product__quantity {
  padding: 1rem 6.8rem;
  border: 1px solid;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2rem;
  letter-spacing: 2px;
  margin-top: 2.4rem;
  position: relative;
}
.product__quantity::before {
  content: "";
  position: absolute;
  width: 2.4rem;
  height: 2.4rem;
  background: url(../img/icon_product-minus.svg) no-repeat center center/cover;
  top: 50%;
  left: 1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}
.product__quantity::after {
  content: "";
  position: absolute;
  width: 2.4rem;
  height: 2.4rem;
  background: url(../img/icon_product-plus.svg) no-repeat center center/cover;
  top: 50%;
  right: 1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}

.product__btn {
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.product__btn-cart,
.product__btn-favorite {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 29.2rem;
}

.product__btn-cart a,
.product__btn-favorite a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-align: center;
  border: 1px solid;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  line-height: 1.6;
  cursor: pointer;
}

.product__btn-cart a {
  color: #fff;
  background: #efc033;
}
.product__btn-cart a:hover {
  color: #efc033;
  background-color: #fff;
}

.product__btn-favorite a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}

.product__btn-favorite img {
  width: 2.4rem;
  height: 2.4rem;
}

.product-table {
  margin-top: 5.6rem;
  border: 1px solid #ccc;
  border-collapse: collapse;
  width: 100%;
}
.product-table tr {
  border-bottom: 1px solid #ccc;
}
.product-table th,
.product-table td {
  padding: 1rem 1rem;
}
@media screen and (min-width: 768px) {
  .product-table th,
  .product-table td {
    padding: 1rem 2rem;
  }
}
.product-table th {
  width: 12.4rem;
  background-color: #e5e5e5;
}
.product-table td {
  background-color: #fff;
}

/** @format */
/*==============================================
#footer
===============================================*/
.footer {
  padding-top: 4rem;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 10rem;
  }
}

.footer__logo {
  height: 5rem;
}
.footer__logo a {
  display: inline-block;
  height: inherit;
}
.footer__logo img {
  width: auto;
  height: 100%;
}

.footer__sns {
  margin-top: 1.4rem;
}

.footer__sns a {
  padding-inline: 0.2rem;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  display: inline-block;
}
.footer__sns a:hover {
  opacity: 0.7;
}

.footer__sns a:nth-of-type(2) {
  margin-left: 2rem;
}

.footer__nav {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    margin-top: 9.6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (min-width: 768px) {
  .footer__nav li {
    padding-inline: 0.4rem;
  }
}

.footer__nav li:not(:first-of-type) {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .footer__nav li:not(:first-of-type) {
    border-left: 1px solid;
    margin-top: unset;
  }
}

.footer__nav li a {
  display: inline-block;
  padding-inline: 1rem;
  letter-spacing: 0.8px;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.footer__nav li a:hover {
  opacity: 0.7;
}

.copyright {
  margin-top: 6rem;
  border-top: 1px solid #ccc;
  padding-block: 1rem;
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.7px;
}
@media screen and (min-width: 768px) {
  .copyright {
    margin-top: 4rem;
  }
}