@charset "UTF-8";
/*商品 詳細
------------------------------- */
.product-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch; /* 縦方向*/
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /*横方向*/
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto 103px;
}
@media only screen and (max-width: 767px) {
  .product-detail {
    margin-bottom: 0;
  }
}
.product-detail .breadcrumb .base {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 18px;
}
.product-detail__main {
  width: 61%;
  padding-left: 15px;
  padding-right: 20px;
}
@media only screen and (max-width: 767px) {
  .product-detail__main {
    width: 100%;
    padding: 0 25px 40px;
  }
}
.product-detail__main__inner {
  max-width: 777px;
  margin-left: auto;
}
.product-detail__description {
  width: 39%;
  background-color: #fff9f2;
  padding: 100px 15px 50px;
}
@media only screen and (max-width: 767px) {
  .product-detail__description {
    width: 100%;
    padding: 35px 25px 35px;
  }
}
.product-detail__description__inner {
  max-width: 420px;
  margin: 0 auto;
}
.product-detail__sub-ttl {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
@media only screen and (max-width: 767px) {
  .product-detail__sub-ttl {
    font-size: 12px;
    margin-bottom: 18px;
  }
}
.product-detail__ttl {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .product-detail__ttl {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
.product-detail__name {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.4em;
}
@media only screen and (max-width: 767px) {
  .product-detail__name {
    font-size: 14px;
  }
}
.product-detail__name strong {
  display: block;
  font-weight: 600;
}
.product-detail__caption {
  font-size: 19px;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.32;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .product-detail__caption {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
.product-detail__caption .great-deal {
  display: block;
  padding: 15px;
  color: #bf0000;
  font-weight: 700;
  background: #fff;
}
.product-detail__caption .great-deal a {
  text-decoration: underline;
}
.product-detail__price {
  font-size: 23px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #3d3d3d;
  margin-top: 17px;
}
@media only screen and (max-width: 767px) {
  .product-detail__price {
    font-size: 20px;
    margin-top: 17px;
  }
}
.product-detail__price span:not(.product-detail__price__off) {
  font-weight: 700;
  color: #bf0000;
}
.product-detail__price__source {
  display: block;
  margin: 0 0 10px;
}
.product-detail__price span.defaults {
  color: #000;
  font-size: 19px;
}
@media only screen and (max-width: 767px) {
  .product-detail__price span.defaults {
    font-size: 14px;
  }
}
.product-detail__price span.line {
  position: relative;
}
.product-detail__price span.line::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 1px;
  background: #000;
}
.product-detail__price__sale {
  font-weight: 700;
  color: #bf0000;
  font-size: 40px;
}
@media only screen and (max-width: 767px) {
  .product-detail__price__sale {
    font-size: 36px;
  }
}
.product-detail__price__tax {
  display: inline-block;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 0.5217391304em;
  font-weight: 400;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #bf0000;
}
@media only screen and (max-width: 767px) {
  .product-detail__price__tax {
    font-size: 12px;
  }
}
.product-detail__subscription {
  padding: 20px 0;
  font-size: 19px;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.32;
  margin: 0 0 15px;
}
@media only screen and (max-width: 767px) {
  .product-detail__subscription {
    padding: 15px 0;
    font-size: 14px;
    margin: 0 0 10px;
  }
}
.product-detail__subscription span {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  background: #3d3d3d;
  padding: 5px 8px;
  line-height: 1;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 10px;
}
@media only screen and (max-width: 767px) {
  .product-detail__subscription span {
    font-size: 12px;
    margin: 0 0 7px;
  }
}
.product-detail .spinner__container {
  margin-top: 17px;
}
.product-detail .spinner__container + .product-detail__btn-wrap {
  margin-top: 31px;
}
.product-detail__ico-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: #000;
  position: relative;
  padding-left: 25px;
}
.product-detail__ico-text ._ico {
  display: block;
  width: 20px;
  position: absolute;
  top: 1px;
  left: 0;
}
.product-detail__find {
  margin-top: 29px;
}
@media only screen and (max-width: 767px) {
  .product-detail__find {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; /* 縦方向*/
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; /*横方向*/
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 29px;
  }
}
.product-detail__find + .product-detail__overview {
  margin-top: 66px;
}
@media only screen and (max-width: 767px) {
  .product-detail__find + .product-detail__overview {
    margin-top: 26px;
  }
}
.product-detail__find__ttl {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.1em;
  margin-bottom: 19px;
}
@media only screen and (max-width: 767px) {
  .product-detail__find__ttl {
    width: 130px;
    font-size: 12px;
  }
}
.product-detail__find__list {
  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; /*横方向*/
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px 30px;
}
@media only screen and (max-width: 767px) {
  .product-detail__find__list {
    width: calc(100% - 130px);
    gap: 15px 20px;
  }
}
.product-detail__find__item {
  display: block;
  width: auto;
  height: 28px;
}
.product-detail__find__item picture,
.product-detail__find__item img {
  display: block;
  width: auto;
  height: 100%;
}
.product-detail__btn-wrap {
  margin-top: 52px;
}
.product-detail__btn {
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  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; /*横方向*/
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 420px;
  max-width: 100%;
  height: 72px;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.2;
  text-align: center;
  background-color: #fff;
  border: 1px solid #3d3d3d;
  margin: 0 auto;
  padding: 5px 10px;
}
.product-detail__btn._red {
  background-color: #bf0000;
  color: #fff;
  border: 0;
}
.product-detail__btn._gray {
  background-color: #b5b5b5;
  color: #fff;
  border: 0;
}
.product-detail__btn._dgray {
  background-color: #3d3d3d;
  color: #fff;
  border: 0;
}
.product-detail__btn + .product-detail__btn {
  margin-top: 6px;
}
.product-detail__supplement {
  font-size: 16px;
  font-weight: 400;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.125;
  letter-spacing: 0.08em;
  color: #000;
  margin-top: 12px;
}
@media only screen and (max-width: 767px) {
  .product-detail__supplement {
    font-size: 12px;
    margin-top: 12px;
  }
}
.product-detail__supplement strong {
  font-weight: 700;
}
.product-detail__overview {
  margin-top: 77px;
}
@media only screen and (max-width: 767px) {
  .product-detail__overview {
    margin-top: 40px;
  }
}
.product-detail__overview__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; /* 縦方向*/
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; /*横方向*/
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  padding-bottom: 9px;
  margin-top: 41px;
  margin-bottom: 10px;
  border-bottom: 1px solid #3d3d3d;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .product-detail__overview__ttl {
    font-size: 14px;
    padding-bottom: 9px;
    margin-top: 41px;
    margin-bottom: 10px;
    position: relative;
    padding-right: 20px;
  }
}
.product-detail__overview__ttl:first-child {
  margin-top: 0;
}
.product-detail__overview__ttl.js-aco-btn::after {
  content: "";
  display: block;
  width: 16px;
  aspect-ratio: 1/1;
  background-image: url("https://d2w53g1q050m78.cloudfront.net/titanistjp/uploads/assets_20240312/img/product/bg_plus.png.webp");
  background-size: 9px auto;
  background-position: center center;
  background-repeat: no-repeat;
  border: 1px solid #000;
  margin-top: 1px;
  margin-left: 3px;
}
@media only screen and (max-width: 767px) {
  .product-detail__overview__ttl.js-aco-btn::after {
    width: 15px;
    position: absolute;
    top: -2px;
    right: 0;
  }
}
.no-webp .product-detail__overview__ttl.js-aco-btn::after {
  background-image: url("https://d2w53g1q050m78.cloudfront.net/titanistjp/uploads/assets_20240312/img/product/bg_plus.png");
}
.product-detail__overview__ttl.aco-active.js-aco-btn::after {
  background-image: url("https://d2w53g1q050m78.cloudfront.net/titanistjp/uploads/assets_20240312/img/product/bg_minus.png.webp");
}
.no-webp .product-detail__overview__ttl.aco-active.js-aco-btn::after {
  background-image: url("https://d2w53g1q050m78.cloudfront.net/titanistjp/uploads/assets_20240312/img/product/bg_minus.png");
}
.product-detail__overview__desc {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.25;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  .product-detail__overview__desc {
    font-size: 14px;
  }
}
.product-detail__overview__desc a {
  text-decoration: underline;
}
.product-detail__movie {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .product-detail__movie {
    margin-top: 0;
    padding: 40px 25px;
  }
}
.product-detail__movie__ttl {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  margin: 50px 0 13px;
}
.product-detail__movie__ttl:first-child {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .product-detail__movie__ttl {
    font-size: 14px;
    margin-top: 40px;
  }
}
.product-detail__movie iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.product-review {
  margin-bottom: 46px;
}
@media only screen and (max-width: 767px) {
  .product-review {
    margin-bottom: 57px;
  }
}
.product-review._type_b {
  margin-bottom: 145px;
}
@media only screen and (max-width: 767px) {
  .product-review._type_b {
    margin-bottom: 57px;
  }
}
.product-review .base {
  max-width: 1256px;
}
.product-review__inner {
  max-height: 560px;
  overflow-y: scroll;
}
@media only screen and (max-width: 767px) {
  .product-review__inner {
    max-height: none;
    overflow-y: auto;
  }
}
.product-review__ttl {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 32px;
}
@media only screen and (max-width: 767px) {
  .product-review__ttl {
    font-size: 18px;
    margin-bottom: 24px;
  }
}
.product-review__item {
  border-top: 1px solid #3d3d3d;
  border-bottom: 1px solid #3d3d3d;
  padding: 25px 0;
}
@media only screen and (max-width: 767px) {
  .product-review__item {
    padding: 20px 0 18px;
  }
}
.product-review__item + .product-review__item {
  border-top: 0;
}
.product-review__star-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 縦方向*/
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; /*横方向*/
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3px;
  margin-bottom: 27px;
}
@media only screen and (max-width: 767px) {
  .product-review__star-wrap {
    gap: 4px;
    margin-bottom: 12px;
  }
}
.product-review__star {
  display: block;
  width: 16px;
  aspect-ratio: 1/1;
  background-image: url("https://d2w53g1q050m78.cloudfront.net/titanistjp/uploads/assets_20240312/img/product/ic_star.svg");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}
.product-review__caption {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.2em;
}
@media only screen and (max-width: 767px) {
  .product-review__caption {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0.5em;
  }
}
.product-review__user {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  .product-review__user {
    font-size: 14px;
  }
}

.product-faq {
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .product-faq {
    padding: 60px 0 60px;
    margin-bottom: 0;
  }
}
.product-faq .base {
  max-width: 1256px;
}
.product-faq__inner {
  max-height: 320px;
  overflow-y: scroll;
}
@media only screen and (max-width: 767px) {
  .product-faq__inner {
    max-height: none;
    overflow-y: auto;
  }
}
.product-faq__ttl {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 59px;
}
@media only screen and (max-width: 767px) {
  .product-faq__ttl {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.product-faq__q {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: 700;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.5;
  letter-spacing: 0.05em;
  position: relative;
  border-bottom: 1px solid #3d3d3d;
  margin: 10px 0 13px;
  padding-left: 1.2em;
  padding-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .product-faq__q {
    font-size: 14px;
    margin: 10px 0 13px;
    padding-left: 1.2em;
    padding-right: 24px;
    padding-bottom: 10px;
  }
}
.product-faq__q::before {
  content: "Q.";
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  position: absolute;
  top: 0;
  left: 0;
}
.product-faq__q.js-aco-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; /* 縦方向*/
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; /*横方向*/
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  cursor: pointer;
  position: relative;
}
.product-faq__q.js-aco-btn::after {
  content: "";
  display: block;
  width: 55px;
  height: 16px;
  background-image: url("https://d2w53g1q050m78.cloudfront.net/titanistjp/uploads/assets_20240312/img/product/bg_plus_box.png.webp");
  background-size: auto 100%;
  background-position: right 0 center;
  background-repeat: no-repeat;
  margin-top: 4px;
}
@media only screen and (max-width: 767px) {
  .product-faq__q.js-aco-btn::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 16px;
  }
}
.no-webp .product-faq__q.js-aco-btn::after {
  background-image: url("https://d2w53g1q050m78.cloudfront.net/titanistjp/uploads/assets_20240312/img/product/bg_plus_box.png");
}
.product-faq__q.js-aco-btn.aco-active.js-aco-btn::after {
  background-image: url("https://d2w53g1q050m78.cloudfront.net/titanistjp/uploads/assets_20240312/img/product/bg_minus_box.png.webp");
}
.no-webp .product-faq__q.js-aco-btn.aco-active.js-aco-btn::after {
  background-image: url("https://d2w53g1q050m78.cloudfront.net/titanistjp/uploads/assets_20240312/img/product/bg_minus_box.png");
}
.product-faq__a {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding-bottom: 1em;
}
@media only screen and (max-width: 767px) {
  .product-faq__a {
    font-size: 14px;
    padding-bottom: 1em;
  }
}
.product-faq__a::before {
  content: "A.";
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
}

.product-recommend .base {
  max-width: 1256px;
}
.product-recommend__ttl {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
@media only screen and (max-width: 767px) {
  .product-recommend__ttl {
    text-align: center;
    margin-bottom: 23px;
  }
}
.product-recommend__ttl strong {
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .product-recommend__ttl strong {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
  }
}
.product-recommend__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; /* 縦方向*/
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; /*横方向*/
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 32px;
}
@media only screen and (max-width: 767px) {
  .product-recommend__list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; /*横方向*/
    gap: 20px 0;
  }
}
.product-recommend__list__item {
  width: 184px;
}
@media only screen and (max-width: 767px) {
  .product-recommend__list__item {
    width: 156px;
  }
}
.product-recommend__list__item__img {
  aspect-ratio: 184/241;
  margin-bottom: 14px;
}
.product-recommend__list__item__img img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-recommend__list__item__box {
  min-height: 30px;
}
.product-recommend__list__item__ttl {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.1em;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 767px) {
  .product-recommend__list__item__ttl {
    text-overflow: clip;
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}
.product-recommend__list__item__price {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #000;
}
.product-recommend__list__item__tax {
  color: #9a9a9a;
}
@media only screen and (max-width: 767px) {
  .product-recommend__list__item__tax {
    display: inline-block;
  }
}
.product-recommend__list__item__btn {
  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; /*横方向*/
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 150px;
  max-width: 100%;
  height: 28px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.1em;
  border: 1px solid #9a9a9a;
  margin: 34px auto 0;
}
@media only screen and (max-width: 767px) {
  .product-recommend__list__item__btn {
    width: 100%;
    margin: 22px auto 0;
  }
}

/* 商品画像スライド
------------------------------- */
.product-detail__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; /* 縦方向*/
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; /*横方向*/
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  aspect-ratio: 777/733;
  padding-top: 14px;
}
@media only screen and (max-width: 767px) {
  .product-detail__img {
    aspect-ratio: auto;
    padding-top: 14px;
  }
}

.product-slide-nav__wrap {
  max-width: 26.8983268983%;
  height: 100%;
  position: relative;
}
.product-slide-nav__item {
  width: auto;
  height: calc((100% - 1px - 24px) / 3);
}
.product-slide-nav__item.swiper-slide-thumb-active::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #3d3d3d;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.product-slide-nav__button__prev {
  width: 27px;
  aspect-ratio: 1/1;
  background-image: url("https://d2w53g1q050m78.cloudfront.net/titanistjp/uploads/assets_20240312/img/product/slide_arrow_top.png.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  z-index: 1;
  cursor: pointer;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.product-slide-nav__button__prev.swiper-button-disabled {
  opacity: 0;
}
.product-slide-nav__button__next {
  width: 27px;
  aspect-ratio: 1/1;
  background-image: url("https://d2w53g1q050m78.cloudfront.net/titanistjp/uploads/assets_20240312/img/product/slide_arrow_btm.png.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateY(50%) translateX(-50%);
          transform: translateY(50%) translateX(-50%);
  z-index: 1;
  cursor: pointer;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.product-slide-nav__button__next.swiper-button-disabled {
  opacity: 0;
}

.product-slide {
  width: 100%;
}
.product-slide__wrap {
  width: 71%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .product-slide__wrap {
    width: 100%;
    height: auto;
  }
}
.product-slide__pagination {
  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; /*横方向*/
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
}
.product-slide__pagination__in {
  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; /*横方向*/
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 28px;
}
.product-slide__arrow {
  width: 5px;
}
.product-slide__arrow img {
  display: block;
  width: 100%;
}
.product-slide__dot {
  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; /*横方向*/
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
.product-slide__dot .swiper-pagination-bullet {
  display: block;
  width: 9px;
  aspect-ratio: 1/1;
  border: 1px solid #eaeaea;
  background-color: #fff;
  border-radius: 100%;
}
.product-slide__dot .swiper-pagination-bullet-active {
  background-color: #3d3d3d;
  border-color: #3d3d3d;
}

.product-slide-nav,
.product-slide {
  height: 100%;
}
.product-slide-nav__item,
.product-slide__item {
  aspect-ratio: 568/742;
}
.product-slide-nav__item__img,
.product-slide__item__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*PhotoSwipe*/
.js-product-photo-swipe .product-slide__item {
  display: block;
  width: 100%;
  height: 100%;
}

.pswp__bg {
  background: #fff;
}

.pswp__top-bar {
  top: auto;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateY(0) translateX(-50%);
          transform: translateY(0) translateX(-50%);
  width: auto;
  padding: 0 15px;
}

.pswp__button {
  aspect-ratio: 5/6;
  width: 80px;
  height: auto;
}

.pswp__icn {
  aspect-ratio: 1/1;
  width: 60px;
  height: auto;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
}

.pswp__counter {
  font-size: 24px;
}

/* 商品一覧
------------------------------- */
@media only screen and (max-width: 767px) {
  .ttl-side.js-aco-btn-sp {
    padding: 0 20px 8px 16px;
    border-bottom: 1px solid #9a9a9a;
    position: relative;
  }
  .ttl-side.js-aco-btn-sp::after {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    background-image: url("https://d2w53g1q050m78.cloudfront.net/titanistjp/uploads/assets_20240312/img/product/arrow_wedge.svg");
    background-size: auto 100%;
    background-position: center 0;
    background-repeat: no-repeat;
    position: absolute;
    top: 4px;
    right: 12px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .ttl-side.js-aco-btn-sp + .js-aco-contents-sp {
    width: 100%;
    background-color: #fff;
    position: absolute;
    top: 28px;
    left: 0;
    z-index: 1;
  }
}
.ttl-side.js-aco-btn-sp.aco-active::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

@media only screen and (max-width: 767px) {
  .category__block__wrap {
    width: 194px;
    margin-left: auto;
    margin-top: 32px;
    position: relative;
  }
}

.category__block {
  margin: 0 0 28px;
}
@media only screen and (max-width: 767px) {
  .category__block {
    padding-left: 16px;
    padding-top: 16px;
    margin-bottom: 0;
  }
  .category__block + .category__block {
    padding-top: 8px;
  }
}

.category__list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; /* 縦方向*/
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; /*横方向*/
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-family: "Montserrat", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 9px;
}
@media only screen and (max-width: 767px) {
  .category__list__item {
    font-size: 12px;
    margin-bottom: 14px;
  }
}
.category__list__item._current {
  font-weight: 700;
}
.category__list__item__arrow {
  display: block;
  width: 1em;
}
.category__list__item a {
  display: block;
  width: calc(100% - 1em);
}

.product__block {
  max-width: 890px;
  padding-top: 63px;
  padding-bottom: 75px;
}
@media only screen and (max-width: 767px) {
  .product__block {
    padding-top: 10px;
    padding-bottom: 77px;
  }
}

.product__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; /* 縦方向*/
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; /*横方向*/
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 76px 7.6404494382%;
}
@media only screen and (max-width: 980px) {
  .product__list {
    gap: 24px 12px;
  }
}
@media only screen and (max-width: 767px) {
  .product__list {
    gap: 30px 12px !important;
  }
}
.product__list__item {
  width: calc((100% - 1px - 7.6404494382% * 2) / 3);
}
@media only screen and (max-width: 980px) {
  .product__list__item {
    width: calc((100% - 1px - 8%) / 3);
  }
}
@media only screen and (max-width: 767px) {
  .product__list__item {
    width: calc((100% - 12px) / 2) !important;
  }
}

.product__cell__link {
  display: block;
}
.product__cell__img {
  width: 100%;
  aspect-ratio: 253/330;
  position: relative;
}
.product__cell__img img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product__cell__img__tag {
  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; /*横方向*/
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  min-width: 104px;
  min-height: 22px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
  background-color: #3d3d3d;
  padding: 0 9px;
  position: absolute;
  top: 9px;
  right: 6px;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .product__cell__img__tag {
    min-width: 85px;
    min-height: 18px;
    font-size: 10px;
    top: 6px;
  }
}
.product__cell__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  padding: 10px 0 0;
}
@media only screen and (max-width: 767px) {
  .product__cell__text {
    font-size: 12px;
  }
}
.product__cell__ttl {
  width: 100%;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .product__cell__ttl {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
}
.product__cell__price {
  color: #000;
}
@media only screen and (max-width: 767px) {
  .product__cell__price {
    display: inline;
  }
}
.product__cell__price._price-down .product__cell__price__money {
  color: #3d3d3d;
  position: relative;
}
.product__cell__price._price-down .product__cell__price__money::after {
  content: "";
  display: block;
  width: 100%;
  border-bottom: 1px solid #3d3d3d;
  position: absolute;
  top: 45%;
  left: 0;
  z-index: 1;
}
.product__cell__price__desc {
  font-weight: 300;
}
.product__cell__tax {
  font-weight: 400;
  white-space: nowrap;
  color: #9a9a9a;
}
.product__cell__sale {
  font-weight: 500;
  color: #ef0000;
}
@media only screen and (max-width: 767px) {
  .product__cell__sale {
    display: inline;
  }
}

.buy-bulk {
  background-color: #fff9f2;
  padding: 33px 0;
}
@media only screen and (max-width: 767px) {
  .buy-bulk {
    padding: 52px 0;
  }
}
.buy-bulk .base {
  max-width: 1335px;
}
.buy-bulk__in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; /* 縦方向*/
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; /*横方向*/
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1245px;
}
@media only screen and (max-width: 1050px) {
  .buy-bulk__in {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; /*横方向*/
  }
}
.buy-bulk__product {
  width: calc(100% - 387px);
  background-color: #fff;
  padding: 62px 35px 68px 70px;
}
@media only screen and (max-width: 1150px) {
  .buy-bulk__product {
    padding-left: 35px;
  }
}
@media only screen and (max-width: 1050px) {
  .buy-bulk__product {
    width: 640px;
  }
}
@media only screen and (max-width: 767px) {
  .buy-bulk__product {
    padding: 0 !important;
    background-color: transparent;
  }
}
.buy-bulk__product__ttl {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
@media only screen and (max-width: 1050px) {
  .buy-bulk__product__ttl {
    text-align: center;
  }
  .buy-bulk__product__ttl .pc {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .buy-bulk__product__ttl {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
.buy-bulk__product__ttl__en {
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .buy-bulk__product__ttl__en {
    display: block;
    font-size: 18px;
    margin-bottom: -7px;
  }
}
.buy-bulk__desc {
  width: 387px;
  padding-top: 187px;
}
@media only screen and (max-width: 1050px) {
  .buy-bulk__desc {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 10px;
  }
}
.buy-bulk__desc__in {
  width: 280px;
  margin: 0 0 0 auto;
  position: relative;
}
@media only screen and (max-width: 1050px) {
  .buy-bulk__desc__in {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .buy-bulk__desc__in {
    width: 100%;
  }
}
.buy-bulk__desc__ttl {
  font-size: 16px;
  font-weight: 400;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: center;
  margin: 0 -1em 10px;
}
@media only screen and (max-width: 767px) {
  .buy-bulk__desc__ttl {
    font-size: 12px;
    margin-bottom: 9px;
  }
}
.buy-bulk__desc__ttl ._tax {
  display: inline-block;
  color: #9a9a9a;
}
.buy-bulk__desc__btn {
  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; /*横方向*/
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 280px;
  max-width: 100%;
  height: 50px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: #3d3d3d;
}
@media only screen and (max-width: 767px) {
  .buy-bulk__desc__btn {
    width: 100%;
    height: 45px;
    font-size: 12px;
  }
}
.buy-bulk__desc ._add-oval-line {
  display: block;
  position: absolute;
  top: 42px;
  right: 108%;
}
@media only screen and (min-width: 768px) {
  .buy-bulk__desc ._add-oval-line::before {
    left: 100%;
    right: 100%;
    margin-left: auto;
    margin-right: 10px;
  }
  .buy-bulk__desc ._add-oval-line::after {
    left: 100%;
    right: 100%;
    margin-left: auto;
    margin-right: 34px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1250px) {
  .buy-bulk__desc ._add-oval-line::after {
    width: 120px;
  }
}
@media only screen and (max-width: 1050px) {
  .buy-bulk__desc ._add-oval-line {
    display: none;
  }
}
.buy-bulk__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch; /* 縦方向*/
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; /*横方向*/
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 1050px) {
  .buy-bulk__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; /*横方向*/
  }
}
.buy-bulk__list__item._block_a {
  width: 166px;
}
@media only screen and (max-width: 767px) {
  .buy-bulk__list__item._block_a {
    width: calc((100% - 1px - 24px) / 3);
  }
}
.buy-bulk__list__item._block_b {
  width: 53px;
  background-image: url("https://d2w53g1q050m78.cloudfront.net/titanistjp/uploads/assets_20240312/img/product/ico_plus.svg");
  background-size: 10px auto;
  background-position: center 120px;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1095px) {
  .buy-bulk__list__item._block_b {
    width: 5%;
  }
}
@media only screen and (max-width: 767px) {
  .buy-bulk__list__item._block_b {
    width: 12px !important;
    background-size: 7px auto;
    background-position: center 64px;
  }
}
.buy-bulk__list__item .product__cell__ttl {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .buy-bulk__list__item .product__cell__ttl {
    display: block;
  }
}
.buy-bulk .product__cell__text {
  padding-top: 22px;
  font-size: 12px;
}
@media only screen and (max-width: 767px) {
  .buy-bulk .product__cell__text {
    padding-top: 13px;
  }
}
.buy-bulk .product__cell__text p {
  display: inline;
}
@media only screen and (max-width: 767px) {
  .buy-bulk .product__cell__tax {
    font-size: 10px;
  }
}

.c-product_info__category {
  display: none;
}

#product-detail__btn__popup {
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#product-detail__btn__popup:hover {
  opacity: 0.7;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  display: none;
}
.popup__wrap {
  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;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
}
.popup__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.popup__container {
  position: relative;
  background-color: #fff;
  padding: 80px 74px;
  max-width: 1000px;
  max-height: 80%;
  width: 100%;
  overflow-y: auto;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .popup__container {
    padding: 60px 20px 40px;
  }
}
.popup__ttl {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  padding: 6px 20px;
  border-radius: 999px;
  background-color: #000;
  margin: 0 auto 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 767px) {
  .popup__ttl {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
.popup__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .popup__block {
    gap: 30px 0;
  }
}
.popup__box {
  width: 23%;
}
@media only screen and (max-width: 767px) {
  .popup__box {
    width: 48%;
  }
}
.popup__box__img {
  max-width: 140px;
  margin: 0 auto 20px;
}
.popup__box__btn {
  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;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  width: 100%;
  height: 44px;
  background: #bf0000;
}
.popup__close {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: #000;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .popup__close {
    top: 15px;
    right: 15px;
  }
}
.popup__close::before, .popup__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background-color: #fff;
}
.popup__close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.popup__close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}/*# sourceMappingURL=product.css.map */