@charset "UTF-8";
/****************************************/

/* ページレイアウト */

/****************************************/

main {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 16px;
  background: #fff;
  color: #333;
  line-height: 1.5;
  box-sizing: border-box !important;
}

.product-detail-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 5rem;
  padding: 16px 16px 0;
}
.left-col {
  flex: 1;
  /* padding: 0 2rem; */
}
.right-col {
  flex: 1;
  /* padding: 0 2rem; */
  /* max-width: 500px; */
}
.marker {
  background: -webkit-linear-gradient(transparent 80%, #fff200 0%);
  background: linear-gradient(transparent 80%, #fff200 0%);
}

/****************************************/

/* grid-1 商品写真 */

/****************************************/
.grid-1 img.product-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
.thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.thumbs img.thumb {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  transition: opacity 0.2s;
}

.thumbs img.thumb:hover {
  opacity: .85;
}

/****************************************/

/* grid-2 お客様の声 */

/****************************************/

.tabs {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  border-bottom: 1px solid #eee;
}

.tab {
  cursor: pointer;
  padding: 0.5rem 1rem;
  background: #f3f3f4;
  border-radius: 4px;
  border: 1px solid #eee;
  border-bottom: none;
}
.tab.active {
  background: #a81e18;
  color: #fff;
}
.tab-content {
  display: none;
  padding: 1em;
  border: 1px solid #eee;
}
.tab-content.active {
  display: block;
}


/* UGCレビュー */
.tab-content .ugc-review-wrapper{
  width: 100%;
  max-width: 465px;
  overflow-x: hidden;
  box-sizing: border-box;
}
.tab-content .ugc-review-wrapper > p{
  margin: 15px 0;
}
.tab-content #UgcCreativeReviewArea {
  width: 100% !important;
  max-width: 465px;
}

.tab-content .UgcCreativeReview-swiper-button-next {
  top: unset !important;
  bottom: 15px !important;
  right: 35% !important;
  /* right: -6px !important; */
}
.tab-content .UgcCreativeReview-swiper-button-prev {
  top: unset !important;
  bottom: 15px !important;
  left: 35% !important;
  /* left: -6px !important; */
}
/* .tab-content .UgcCreativeReview-gradItem {
  height: 10em !important;
} */
/* .tab-content .UgcCreativeReview-gradBtnWrap {
  display: none;
} */
.tab-content .UgcCreativeReview-reviews-display_like_counts {
  margin-top: 0 !important;
}
.tab-content .UgcCreativeReview-reviewDate {
  visibility: hidden;
}
/* .tab-content .UgcCreativeReview-comBtn1,
.tab-content .UgcCreativeReview-comBtn2 {
  display: block;
} */

/* アンケートハガキ */

.tab-content#survey .survey-title{
  margin: 15px 15px 15px 0;
  text-align: left;
  font-size: 24px;
  font-weight: bold;
  color: #333"
}

.survey-gallery-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.survey-gallery-page {
  display: none;
}

.survey-gallery-page.active {
  display: block;
}

.survey-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列 */
  grid-template-rows: repeat(2, auto);  /* 2行 */
  gap: 10px;
}

.survey-gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  cursor: pointer;
  transition: opacity 0.2s;
  clip-path: inset(0 0 8% 0);
}

.survey-gallery img:hover{
  opacity: .7;
}
.pagination-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

button.prev-btn,
button.next-btn {
  padding: 8px 16px;
  font-size: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}

/* モーダル表示 */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  clip-path: inset(0 0 8% 0);
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}


/****************************************/

/* grid-3 商品名 */

/****************************************/
.product-category {
  margin-bottom: 0.2em;
}
.product-category span.category-text{
  font-size: 12px;
  /* padding: .4375rem .875rem; */
  padding: 0.4rem 0.8rem;
  /* margin-right: .9375rem; */
  margin-right: .5rem;
  color: #fff;
  letter-spacing: .1em;
  /* background-color: #b0aaa8; */
  background-color: #B8860B;
  border-radius: .78125rem;

}
.product-subtitle {
  font-size: 18px;
  margin: 20px 0 0;
}
h2.product-name {
  font-size: 36px;
  /* font-size: 32px; */
  margin: 0;
  font-weight: bold;
  font-feature-settings: "palt";
	letter-spacing:0.08em;
}

/****************************************/

/* grid-4 商品説明文 */

/****************************************/

p.product-description {
  font-size: 15px;
  line-height: 2;
  letter-spacing: .04em;
  margin:5px 0 30px;
}

/****************************************/

/* grid-5 CTAブロック*/

/****************************************/
.purchase-block {
  margin: auto;
  background: #fff;
  padding: 0;
  border-radius: 8px;
}
.purchase-block .toggle-content img{
  width: 90%;
}
.purchase-step{
  margin-bottom: 48px;
}
.purchase-step:last-of-type{
  margin-bottom: 64px;
}
.purchase-step > h3 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
}

.purchase-type-toggle {
  display: flex;
  gap: 1rem;
}

.purchase-type-toggle button {
  flex: 1;
  padding: 12px;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
  background: #f3f3f4;
  border: none;
  border-radius: 4px;
  transition: 0.2s;
}

.purchase-type-toggle .active {
  background-color: #f8d57e;
  font-weight: bold;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-block {
  border: 1px solid #f3f3f4;
  background-color: #f3f3f4;
  padding: 1rem 2rem;
  margin: 0 0;
  border-radius: 0px;
}
.price-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-block h3 {
  font-size: 24px;
  margin: 0 0 10px;
}
.price-quantity-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content:flex-start;
  margin: 8px 0;
}
.price {
  font-size: 40px;
  color: #a81e18;
  font-weight: bold;
  font-family: "DM Sans","Meiryo", "メイリオ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
}
.price span.tax-font-size {
  font-size: 1.1rem;
}
.price-radio {
  visibility: hidden;
}
.quantity-wrap {
  display: flex;
  align-items: center;
  margin: 0 16px 0;
}
.quantity-wrap p {
  font-size: 14px;
  margin: 0 0 0 5px;
}
.toggle-button {
  position: absolute;
  top: 50%;
  right: 0px;
  /* font-size: 40px; */
  /* font-weight: bold; */
    width: 24px;
  height: 24px;
  /* color: #a81e18; */
  cursor: pointer;
  line-height: 1;
  user-select: none;
  transform: translateY(-50%);
  /* transform: translateY(-50%) rotate(-90deg);  */
  /* transition: transform 0.3s ease; */
}

/* 横棒 */
.toggle-button::before,
.toggle-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 5px;
  background-color: #a81e18;
  transform-origin: center;
  transition: transform 0.2s ease;
}

.toggle-button.no-transition::before,
.toggle-button.no-transition::after {
  transition: none !important; /* 初期状態はtransition無効 */
}

/* 横棒（常に表示） */
.toggle-button::before {
  transform: translate(-50%, -50%);
}

/* 縦棒（＋の縦線になる部分） */
.toggle-button::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* 開いている時（－表示にする） */
.toggle-button.open::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
/* .toggle-button.open {
  transform: translateY(-50%) rotate(0deg); 
} */

.buy-button {
  display: inline-block;
  background: #a81e18;
  color: #fff;
  /* padding: 0.7rem 2.1rem; */
  padding: 12px 24px;
  margin-top: 1rem;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  font-size: 1rem;
  font-weight: bold;
  /* font-size: 20px; */
  font-feature-settings: "palt";
	letter-spacing:0.08em;
  cursor: pointer;
  transition: opacity 0.2s;
}

/* .toggle-content {
  display: block;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  color: #666;
} */

.toggle-content {
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.toggle-content p:first-of-type{
  margin-top: 0.5rem;
}
.toggle-content p {
  /* font-size: 0.8rem; */
  margin-top: 2px;
  color: #666;
  line-height: 1.5;
  font-size: 12px;
  font-feature-settings: "palt";
	letter-spacing:0.06em;
  padding-left: 1.5em;
	text-indent: -1.5em;
}

.toggle-content p::before {
  content: "※ "
}



/* セレクトボックス */
.select_wrap {
  background: #ffffff;
  border: #555 2px solid;
  height: 36px;
  width: 58px;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  display: flex;
}

.select_wrap::after {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  right: 8px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border-bottom: 2px solid #555;
  border-right: 2px solid #555;
  z-index: -1;
}
/* 初期化 */
select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  color: #333;
  font-size: 16px;
  width: 100%;
  height: 100%;
  padding: 0 10px;
  display: block;
}

/****************************************/

/* grid-6 商品詳細ブロック*/

/****************************************/

.details-block {
  /* border: 1px solid #eee; */
  /* background-color: #f3f3f4; */
  padding: 1rem;
  margin: 2rem 0;
  border-radius: 0px;
}

.details-block h3 {
  font-size: 24px;
  margin: 0 0 15px;
}

.details-block .info-list {
  margin: 0;
  padding: 0;
}
.details-block .info-list dt {
  font-weight: bold;
  padding: 0.8em 0 0;
  font-size: 16px;
}

.details-block .info-list dd {
  margin: 0;
  padding: 0.8em 0;
  border-bottom: 1px solid #eee;
  line-height: 2;
  font-size: 15px;
}

/****************************************/

/* LPブロック*/

/****************************************/

.lp-banner {
  margin: 3rem auto 0;
  text-align: center;
  max-width: 650px;
  padding: 0 15px;
  color: #333;
}

.lp-banner h3 { 
  font-size:1.2rem;
  font-weight:700;
  margin:2.5rem 0 2rem;
 }
.lp-banner h4 {
   font-size:1rem;
   font-weight:700;
   margin:1.2rem 0 .4rem;
   }
.lp-banner p {
  margin:.6rem auto 1rem;
  line-height:1.8;
  padding: 0 15px;
  text-align: justify;
}
.lp-banner ul {
  margin:.4rem auto 1rem;
  padding: 0 30px 0 45px;
}

.lp-banner li { 
  list-style-type: disc !important;
  margin:.3rem 0;
  text-align: left;
 }
.lp-banner img {
  width:100%;
  display:block;
  margin:.4rem auto 1rem; 
  text-align: center;
}

/* 画像を2枚並べたいとき */
.lp-banner .img2 { display:grid; gap:8px; }
@media (min-width: 768px) {
  .lp-banner .img2 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .lp-banner ul {
  padding: 0 15px 0 15px;
}
}



/****************************************/

/* TOPへ戻る*/

/****************************************/
html{
    scroll-behavior: smooth;
}
footer a.page-top{
    margin-bottom: 50px;
    font-size: 16px;
    font-weight: bold;
    display: block;
    padding: 20px 10px;
    cursor: pointer;
    text-align: center;
    font-feature-settings: "palt";
	  letter-spacing:0.1em;
    background-color: #aaaaaa;
    text-decoration: none;
    list-style-type: none;
    color: #ffffff;
	transition: 0.6s;
	-webkit-transition: 0.6s;
	-moz-transition: 0.6s;
	-o-transition: 0.6s; 
  }

/****************************************/

/* レスポンシブ対応*/

/****************************************/
@media (max-width: 1100px) {
  .product-detail-wrapper {
    gap: 3rem;
  }

/* grid-2 お客様の声 */
.tab-content .ugc-review-wrapper{
  max-width: 360px;
}
.tab-content #UgcCreativeReviewArea {
  max-width: 360px;
}

/* grid-3 商品名 */
h2.product-name{
  font-size: 32px;
}

/* grid-5 CTAブロック*/

.purchase-type-toggle {
  flex-direction: column;
}
  .purchase-step > h3 {
    font-size: 1.1rem;
  }
    .price-block {
    padding: 1rem 1.5rem;
  }
  .quantity-wrap {
    flex-direction: column;
    padding-top: 16px;
  }
  .quantity-wrap p {
    margin: 5px 0 0 0;
    font-size: 12px;
  }
  .price-block h3 {
    font-size: 1.4rem;
  }
  .price{
    line-height: 1.2;
  }

/* grid-6 商品詳細ブロック*/
  .details-block h3 {
    font-size: 1.4rem;
  }
  .details-block .info-list dt {
  font-size: 14px;
}
  .details-block .info-list dd {
  font-size: 14px;
}
}

@media (max-width: 900px) {

/* grid-2 お客様の声 */
.tab-content .ugc-review-wrapper{
  max-width: 300px;
}
.tab-content #UgcCreativeReviewArea {
  max-width: 300px;
}
 .tab-content .UgcCreativeReview-swiper-button-next {
  right: 30% !important;
}
.tab-content .UgcCreativeReview-swiper-button-prev {
  left: 30% !important;
}
/* grid-5 CTAブロック*/
  .quantity-wrap {
    padding-top: 8px;
  }
  .price span.tax-font-size {
    display: block;
    text-align: right;
}
}

@media (max-width: 767px) {
  .product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .left-col,
  .right-col {
    display: contents;
  }
  .grid-3 {
    order: 1;
  }
  .grid-1 {
    order: 2;
  }
  .grid-4 {
    order: 3;
  }
  .grid-5 {
    order: 4;
  }
  .grid-6 {
    order: 5;
  }
  .grid-2 {
    order: 6;
  }
  /* .thumbs {
    grid-template-columns: repeat(3, 1fr);
  } */

/* grid-2 お客様の声 */
.tab-content .ugc-review-wrapper{
  width: 100% !important;
  max-width: 80vw  !important;
}
.tab-content #UgcCreativeReviewArea {
  max-width: 100% !important;
}

/* grid-5 CTAブロック*/
.purchase-type-toggle {
  flex-direction: row;
}
  .price-block {
    padding: 1.5rem 1.5rem;
  }
  .quantity-wrap {
    margin: 0 15px 0;
    padding-top: 16px;
}
  .purchase-block {
    width: 100%;
  }
  .price span.tax-font-size {
    display: inline;
    text-align: left;
}
/* grid-6 商品詳細ブロック*/
.details-block {
  margin: 0 0;
}
}

@media (max-width: 640px) {
  .product-detail-wrapper{
    padding: 8px 16px 0px;
  }
}
 

@media (max-width: 500px) {

/* grid-3 商品名 */
.product-subtitle {
  font-size: 15px;
}
/* grid-5 CTAブロック*/
.price {
  font-size: 36px;
}
  .price-block {
    padding: 1rem 1rem;
  }
  .price span.tax-font-size {
    display: block;
    text-align: right;
  }

.purchase-block .toggle-content img{
  width: 100%;
}
  .quantity-wrap {
    padding-top: 8px;
  }
}
@media (max-width: 370px) {
/* grid-5 CTAブロック*/
  .price{
    font-size: 30px;
  }
  .quantity-wrap {
    margin: 0 0 0;
}
}