@charset "UTF-8";
/*------------------------------------------------------
    Product page用scss
------------------------------------------------------*/
/*------------------------------------------------------
    Breakpoint　値はサイトに合わせて変更しましょう
------------------------------------------------------*/
/*------------------------------------------------------
    このファイルは基本触らない
------------------------------------------------------*/
/*------------------------------------------------------
    color format (カラー設定)
------------------------------------------------------*/
/*------------------------------------------------------
    color format (カラー設定)
------------------------------------------------------*/
/*------------------------------------------------------
    Product page用scss
------------------------------------------------------*/
/*------------------------------------------------------
    Product page用scss
------------------------------------------------------*/
/*------------------------------------------------------
    Product page用scss
------------------------------------------------------*/
.maintitle {
  font-size: 60px;
  color: blue;
}

.subtitle {
  font-size: 40px;
  color: red;
}

.lower__mv {
  position: relative;
  z-index: 2;
  padding: 230px 120px 375px 120px;
  padding-top: clamp(180px, 11.9791666667vw, 230px);
  padding-bottom: clamp(275px, 19.53125vw, 375px);
  padding-left: clamp(20px, 5.3333333333vw, 120px);
}
.lower__mv__container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}
.lower__mv__container .lower__mv__content .lower__mv__title {
  font-family: "Oooh Baby", cursive;
  color: #262626;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lower__mv__container .lower__mv__content .lower__mv__title__en {
  font-size: clamp(32px, 6vw, 60px);
  font-family: "Aboreto", sans-serif;
  color: #262626;
}
.lower__mv__container .lower__mv__content .lower__mv__title__ja {
  font-size: clamp(18px, 3vw, 30px);
  font-family: "Sawarabi Mincho", sans-serif;
  letter-spacing: 0.1em;
  color: #262626;
}
.lower__mv__container .lower__mv__content .breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 27px;
}
.lower__mv__container .lower__mv__content .breadcrumb__link {
  font-size: 13px;
  color: #909090;
}
.lower__mv__container .lower__mv__content .breadcrumb__separator {
  font-size: 13px;
  color: #909090;
}
.lower__mv__container .lower__mv__content .breadcrumb__current {
  font-size: 13px;
  color: #909090;
}
.lower__mv__container .lower__mv__image__wrap {
  width: 100%;
  position: absolute;
  top: -56px;
  right: 0;
  z-index: -1;
}
.lower__mv__container .lower__mv__image__wrap .lower__mv__image1 {
  width: clamp(400px, 38.3333333333vw, 621px);
  aspect-ratio: 621/417;
  object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
}
.lower__mv__container .lower__mv__image__wrap .lower__mv__image2 {
  width: clamp(200px, 21.8518518519vw, 354px);
  aspect-ratio: 354/470;
  object-fit: cover;
  position: absolute;
  top: 134px;
  right: clamp(-120px, -13.024691358vw, -211px);
}
@media screen and (max-width: 768px) {
  .lower__mv {
    padding: 100px 20px clamp(30px, 15.1041666667vw, 116px) 20px;
  }
  .lower__mv__container .lower__mv__content .breadcrumb {
    margin-top: 56px;
  }
  .lower__mv__container .lower__mv__image__wrap {
    top: -7px;
    right: 40px;
  }
  .lower__mv__container .lower__mv__image__wrap .lower__mv__image1 {
    width: clamp(185px, 49.3333333333vw, 400px);
  }
  .lower__mv__container .lower__mv__image__wrap .lower__mv__image2 {
    width: clamp(104px, 27.7333333333vw, 200px);
    top: 32px;
    right: -60px;
  }
}

.product__contents {
  background-color: #fbfbfb;
  padding: 0 20px 160px;
}
.product__contents__container {
  max-width: 1300px;
  margin: 0 auto;
}
.product__contents__container__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.product__contents__container__inner__text {
  font-size: clamp(16px, 0.9375vw, 18px);
  color: #5C5C5C;
  font-family: "Sawarabi Gothic", sans-serif;
  margin-bottom: 40px;
}
.product__contents__container__inner__wrap {
  display: flex;
  flex-wrap: wrap;
}
.product__contents__container__inner__wrap__item {
  width: 50%;
  padding-top: clamp(23px, 2.4479166667vw, 47px);
  padding-bottom: clamp(23px, 2.4479166667vw, 47px);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.product__contents__container__inner__wrap__item:nth-child(odd) {
  padding-right: clamp(23px, 2.4479166667vw, 47px);
}
.product__contents__container__inner__wrap__item:nth-child(odd)::before {
  content: "";
  display: block;
  width: 1px;
  height: 85%;
  background-color: #dbdbdb;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.product__contents__container__inner__wrap__item:nth-child(odd)::after {
  content: "";
  display: block;
  width: 95%;
  height: 1px;
  background-color: #dbdbdb;
  position: absolute;
  bottom: 0;
  left: 0;
}
.product__contents__container__inner__wrap__item:nth-child(even) {
  padding-left: clamp(23px, 2.4479166667vw, 47px);
}
.product__contents__container__inner__wrap__item:nth-child(even)::after {
  content: "";
  display: block;
  width: 95%;
  height: 1px;
  background-color: #dbdbdb;
  position: absolute;
  bottom: 0;
  right: 0;
}
.product__contents__container__inner__wrap__item:last-child::after {
  display: none;
}
.product__contents__container__inner__wrap__item__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  flex-grow: 1;
}
.product__contents__container__inner__wrap__item__top__left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: 21.9791666667vw;
}
.product__contents__container__inner__wrap__item__top__left__title {
  font-size: clamp(20px, 1.4583333333vw, 28px);
  color: #13816B;
  font-weight: 700;
}
.product__contents__container__inner__wrap__item__top__left__text {
  font-size: clamp(16px, 1.1979166667vw, 23px);
  font-weight: 500;
}
.product__contents__container__inner__wrap__item__top__right {
  display: block;
}
.product__contents__container__inner__wrap__item__top__right img {
  width: 4.6875vw;
  aspect-ratio: 1;
  margin-top: 8px;
}
.product__contents__container__inner__wrap__item__desc {
  font-size: clamp(16px, 0.8854166667vw, 23px);
  color: #5C5C5C;
  font-family: "Sawarabi Gothic", sans-serif;
  margin-bottom: 48px;
}
.product__contents__container__inner__wrap__item__bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  background-color: #efefef;
  padding: 12px 20px;
  flex-grow: 1;
}
.product__contents__container__inner__wrap__item__bottom__title {
  font-size: clamp(18px, 1.0416666667vw, 20px);
  font-weight: 700;
}
.product__contents__container__inner__wrap__item__bottom__text {
  font-size: clamp(16px, 0.8854166667vw, 17px);
  font-weight: 400;
  word-break: auto-phrase;
}
@media screen and (max-width: 768px) {
  .product__contents {
    padding: 0 20px 80px;
  }
  .product__contents__container__inner__wrap__item {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .product__contents__container__inner__wrap__item:nth-child(odd) {
    padding-right: 0;
  }
  .product__contents__container__inner__wrap__item:nth-child(odd)::before {
    display: none;
  }
  .product__contents__container__inner__wrap__item:nth-child(odd)::after {
    width: 100vw;
    left: -20px;
  }
  .product__contents__container__inner__wrap__item:nth-child(even) {
    padding-left: 0;
  }
  .product__contents__container__inner__wrap__item:nth-child(even)::after {
    width: 100vw;
    right: -20px;
  }
  .product__contents__container__inner__wrap__item:last-child::after {
    display: none;
  }
  .product__contents__container__inner__wrap__item__top {
    flex-grow: 0;
  }
  .product__contents__container__inner__wrap__item__top__left {
    width: calc(100% - clamp(80px, 33.0666666667vw, 124px) - 18px);
  }
  .product__contents__container__inner__wrap__item__top__left__title {
    font-size: clamp(20px, 6.6666666667vw, 28px);
  }
  .product__contents__container__inner__wrap__item__top__left__text {
    font-size: clamp(16px, 4.8vw, 22px);
  }
  .product__contents__container__inner__wrap__item__top__right img {
    width: clamp(80px, 33.0666666667vw, 124px);
  }
  .product__contents__container__inner__wrap__item__desc {
    font-size: 16px;
  }
  .product__contents__container__inner__wrap__item__bottom__title {
    font-size: 18px;
  }
  .product__contents__container__inner__text {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 974px) {
  .product__contents__container__inner__wrap__item__top {
    flex-grow: 0;
  }
  .product__contents__container__inner__wrap__item__top__left {
    width: calc(100% - clamp(80px, 11.71875vw, 100px) - 18px);
  }
  .product__contents__container__inner__wrap__item__top__right img {
    width: clamp(80px, 11.71875vw, 100px);
  }
  .product__contents__container__inner__wrap__item__desc {
    font-size: 16px;
  }
  .product__contents__container__inner__wrap__item__bottom__title {
    font-size: 18px;
  }
  .product__contents__container__inner__wrap__item__bottom__text {
    font-size: 16px;
  }
}

.product__title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: clamp(15px, 1.5277777778vw, 22px) clamp(20px, 2.0833333333vw, 30px);
  position: relative;
  z-index: 1;
  margin-bottom: 54px;
}
.product__title::before {
  content: "";
  display: block;
  width: clamp(122px, 11.1111111111vw, 160px);
  height: 100%;
  background: url(../img/noise_bg.webp) no-repeat center center/cover;
  position: absolute;
  top: 49%;
  left: 0;
  z-index: -1;
  transform: translateY(-50%);
}
.product__title__en {
  font-size: clamp(26px, 2.0833333333vw, 30px);
  color: #262626;
  font-family: "Oooh Baby", cursive;
}
.product__title__ja {
  font-size: clamp(19px, 1.5972222222vw, 23px);
  color: #262626;
  font-family: "Sawarabi Mincho", sans-serif;
}
@media screen and (max-width: 768px) {
  .product__title {
    margin: 0 calc(50% - 50vw) 18px;
    gap: 20px;
  }
}