.tc {
text-align: center;
}

/* SET ITEMの調整 */
.fs-c-productName__copy,
.slick-slide .fs-c-productMarks {
    display: none!important;
}

/* ご注文手続きの案内文 */
#fs_Checkout .fs-c-confirmOrder {
	padding-top: 15px;
	position: relative;
}
#fs_Checkout .fs-c-confirmOrder:before {
    content: "※ご注文後の変更・キャンセルは、原則として承ることが出来ません。\Aご注文確定ボタンを押下される前に、必ずクーポン・ポイントのご利用状況、サイズやカラーにお間違いがないかご確認下さいます様お願いいたします。";
    display: block;
    color: red;
    font-size: 12px;
	letter-spacing: 0;
    white-space: pre-line;
    margin-bottom: 10px;
}
#fs_Checkout .fs-c-confirmOrder .fs-c-buttonContainer {
	display: block;
	position: relative;
}
#fs_Checkout .fs-c-confirmOrder .fs-c-buttonContainer:before {
    content: "ご注文内容とご注文後の変更・キャンセル\Aに関する注意事項をご確認の上";
    display: block;
    font-size: 12px;
	text-align: center;
	letter-spacing: 0;
    white-space: pre-line;
    margin-bottom: 10px;
}

/* 楽天pay表示 */
.fs-c-button--confirmOrder--rakutenPay img {
    height: 50px!important;
}

/* 商品ページのアイテムタグの開始位置調整 */
.fs-l-productLayout__item .fs-c-productMark__item:has(.tag-color) {
  display: none;
}

/* 会員ステージ表示 */
.fs-p-accountInfo__header, .fs-p-accountInfo__currentPurchase {
    padding-bottom: 0!important;
}
.fs-p-accountInfo__accountRank {
    margin-bottom: 5px;
}
.fs-p-accountInfo__accountRank .fs-p-accountInfo__accountRank__rank {
    font-weight: 600;
    color: #488299;
}
.rank-att {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 15px;
}


/* 商品ページ　インフルエンサー開閉エリア */
      .item-detail .accordion-box {
        position: relative;
        margin: 0 0 100px 0;
      }
      .item-detail .accordion-box label {
        content: "もっと見る"; /* ラベルの文字 */
        height: 300px; /* グラデーションの高さ */
        cursor: pointer;
        text-align: center;
        font-size: 12px;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;

        /* 以下グラデーションは「背景が白」に併せて設定しています */
        background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 90%);
        background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 90%);
        background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 90%);
        background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 90%);
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 90%);
      }

      .item-detail .accordion-box label:has(input:checked) {
        background: inherit; /*開いた時には背景グラデーションを消す*/
      }
      .item-detail .accordion-box label:after {
    content: "もっと見る";
    cursor: pointer;
    width: 150px;
    height: 30px;
    border-radius: 100px;
    text-align: center;
    background: #221F1D;
    font-size: 1.4rem;
    line-height: 29px;
    color: #fff;
    margin: 10px auto 0 auto;
    transition: 0.3s;
    padding: 10px;
    display: block;
    top: 103%;
    left: 33%;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 10;
  left: 50%;
  transform: translateX(-50%);
      }
      .item-detail .accordion-box label:before {
        font-weight: 700;
        position: absolute;
        bottom: 30px;
        left: 50%;
        -webkit-transform: translate(-140px, 0);
        transform: translate(-140px, 0);
        background-color: #fff;
        z-index: 1;
        -webkit-border-radius: 100%;
        -moz-border-radius: 100%;
        border-radius: 100%;
        width: 20px;
        height: 20px;
        line-height: 20px;
      }
      .item-detail .accordion-box input {
        display: none;
      }
      .item-detail .accordion-box .accordion-container {
        overflow: hidden;
        height: 2100px; /* 開く前に見えている部分の高さ */
        -webkit-transition: all 0.1s;
        -moz-transition: all 0.1s;
        -ms-transition: all 0.1s;
        -o-transition: all 0.1s;
        transition: all 0.1s;
      }
      .item-detail .accordion-box label:has(input:checked) {
         display: none ; /* 閉じるボタンは要らないとき */
      }

      /* 閉じるボタン用 */
.item-detail .accordion-box label:has(input:checked)::after {
  content: "閉じる";
  top: calc(103% - 20px);
}
      /* 閉じるボタン用 */

.item-detail .accordion-box:has(input:checked) .accordion-container {
            height: auto;
        padding-bottom: 0px; /* 閉じるボタンのbottomからの位置 */
        -webkit-transition: all 0.1s;
        -moz-transition: all 0.1s;
        -ms-transition: all 0.1s;
        -o-transition: all 0.1s;
        transition: all 0.1s;
      }

.item-detail .accordion-box:has(input:checked) {
  margin-bottom: 20px; /* ← 開いた時の下余白。好みで調整 */
}
            @media screen and (max-width: 640px) {
    .item-detail .accordion-box label {
        height: 200px; /* グラデーションの高さ */
    }
    .item-detail .accordion-box .accordion-container{
        height: 350vw; /* 開く前に見えている部分の高さ */
    }
  }
