/* オプション設定のラベルの装飾　セレクト＆ラジオ　css */
#fs_ProductDetails .fs-c-productSelection__label {
        font-size: 1.6em !important;
        font-weight: bold !important;
        background-color: #c1ab05 !important;
        color: white !important;
    }
#fs_ProductDetails .fs-c-productSelection__field {
  border-right:1px solid #000000;
  font-weight: bold
}

#fs_ProductDetails .fs-c-productOption__label {
        font-size: 1.6em !important;
        font-weight: bold !important;
        background-color: #A5A5A5 !important;
        color: white !important;
    }
#fs_ProductDetails .fs-c-productOption__field {
  border-right:1px solid #000000;
  font-weight: bold
}

/* お客様情報登録　登録ボタンの上余白を広げる 8px→16px　css */
@media screen and (max-width: 1024px) {
    #content .main .fs-c-buttonContainer {
        padding: 16px 0;
    }
}
/* 足圧測定会ページのトップバナー表示用css */
p#top_banner {
    content: url(https://sorbothane.itembox.design/item/img/top/t-main-bnr_07.jpg);
    width: 100%;
    height: auto;
}

/* 新価格[通常価格]と現在の価格[販売価格]　を利用した値上げ告知css */
/* 背景色の設定　ダークグレー */
#fs_ProductDetails .fs-c-productPrice.fs-c-productPrice--listed {
    background: #e5e5e5;
}
span.fs-c-productPrice__addon.fs-c-productPrice__addon--listed {
    color: black;
}
/* 背景色の設定　商品リスト　ダークグレー */
.fs-c-productPrice.fs-c-productPrice--listed {
    background: #e5e5e5;
}
@media screen and (max-width: 767px)  {
    /* 新価格[通常価格]の表示 */ 
    #fs_ProductDetails .fs-c-productPrice--listed .fs-c-productPrice__main .fs-c-price__value {
        margin-right: 5px;
        font-size: 1.6em;
        font-weight: bold;
        color: #004d9d;
    }
    /* 現在の価格[販売価格]表示 */ 
    #fs_ProductDetails .fs-c-productPrice--selling .fs-c-productPrice__main .fs-c-price__value {
        margin-right: 5px;
        font-size: 2.2em;
        font-weight: bold;
        color: #004d9d;
    }
    /* 前の括弧を非表示 */ 
    #fs_ProductDetails .fs-c-productPrice__addon--listed::after{
        content: "" !important;
    }
    /* 後ろの括弧を非表示 */ 
    #fs_ProductDetails .fs-c-productPrice__addon--listed::before{
        content: "" !important;
    }
    /* 前の括弧を非表示　商品リスト */ 
#fs_ProductCategory .fs-c-productPrice__addon--listed::after{
        content: "" !important;
    }
    /* 後ろの括弧を非表示　商品リスト */ 
#fs_ProductCategory .fs-c-productPrice__addon--listed::before{
        content: "" !important;
    }
}
@media screen and (min-width: 768px) {
    /* 新価格[通常価格]の表示 */ 
    #fs_ProductDetails .fs-c-productPrice--listed .fs-c-productPrice__main .fs-c-price__value {
        margin-right: 5px;
        font-size: 1.8em;
        font-weight: bold;
        color: #004d9d;
    }

    /* 現在の価格[販売価格]表示 */ 
    #fs_ProductDetails .fs-c-productPrice--selling .fs-c-productPrice__main .fs-c-price__value {
        margin-right: 5px;
        font-size: 2.2em;
        font-weight: bold;
        color: #004d9d;
    }
    /* 前の括弧を非表示 */ 
    #fs_ProductDetails .fs-c-productPrice__addon--listed::after{
        content: "" !important;
    }
    /* 後ろの括弧を非表示 */ 
    #fs_ProductDetails .fs-c-productPrice__addon--listed::before{
        content: "" !important;
    }
    /* 前の括弧を非表示　商品リスト */ 
#fs_ProductCategory .fs-c-productPrice__addon--listed::after{
        content: "" !important;
    }
    /* 後ろの括弧を非表示　商品リスト */ 
#fs_ProductCategory .fs-c-productPrice__addon--listed::before{
        content: "" !important;
    }
}

/* -----商品比較表　アコーデオン表示用　CSS ----- */
/* -----<details> <summary>への対応 ----------- */
/* defaultの▼アイコンを消す */
.summary {
  display: block;
  margin:10px 0px 0px;
}
summary::-webkit-details-marker {
  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}

/* アコーディオン */
.summary_content h2{
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
  font-size: min(4.5vw, 27px);
  color: #004fa2;
  font-weight: bold;
  background: #f8efe2;
  border-bottom: #6c9bd2 dotted 4px;
  padding:min(5vw , 6px) min(4vw , 13px);
  text-align: center;
}
.details {
  margin-bottom: 10px;
}
.details_content {
  background: #ddd;
  padding: 24px 16px;
  margin-left: 0px;
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
}
/* 露出しているヘッダー */
details[open] summary h2 {
  background-color: #ddd;
}
/* アコーディオンオープン・アニメーション */
details[open] .details_content {
  animation: fadeIn 0.85s ease;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-12px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
/* 三角ボタン */
.toggle_button {
  display: block;
  position: relative;
  width: 20px;
  margin-left: 8px;
  flex-shrink: 0;
  transform-origin: center 45%;
  transition: transform 0.75s;
}
/* トグルボタンの設定 */
.toggle_button::before,
.toggle_button::after {
  content: "";
  position: absolute;
  display: block;
  width: 12px;
  height: 3px;
  background-color: #000000;
}
.toggle_button::before {
  left: 0;
  transform: rotate(45deg);
}
.toggle_button::after {
  right: 0;
  transform: rotate(-45deg);
}
/* トグルボタン開閉時の動作切り替え */
details[open] .toggle_button {
  transform: rotate(180deg);
}

/* -----商品比較表　レスポンシブ表示用　CSS ----- */
    #table03 th,
    #table03 td {
        text-align: center;
        width: 20%;
        min-width: 130px;
        padding: 10px;
        height: 50px;
        font-size: 13px;
        border:1px solid #e2e1e1;    }
    #table03 th {
        background-color: #f0f0f0;
    }
    #table03 .head {
        background-color: #e2e2e2;
    }
    #table03 a {
        color: blue;
        text-decoration: underline;
    }
    /* tab */
    @media only screen and (max-width: 768px) {
        #table03 {
            display: block;
            overflow-x: scroll;
            white-space: nowrap;

            /* テーブル文字改行幅 */
            /* line-height: 14px; */
            /* テーブル文字改行幅 */
        }
        #table03 td {
            vertical-align: bottom;
        }
        #table03 .fixed {
            position: sticky;
            left: 0;
            /* 列見出し透明関連 */
            min-width: 80px; /* ヘッダ列を狭く */
            background: transparent;
            text-align: left;
            vertical-align: top;
            color: #2E8B57;
            font-weight: bold;
            text-shadow: 4px 0px 1px #fff, -4px 0px 1px #fff,
                         0px -4px 1px #fff, -4px 0px 1px #fff,
                         4px 4px 1px #fff, -4px 4px 1px #fff,
                         4px -4px 1px #fff, -4px -4px 1px #fff,
                         1px 4px 1px #fff, -1px 4px 1px #fff,
                         1px -4px 1px #fff, -1px -4px 1px #fff,
                         4px 1px 1px #fff, -4px 1px 1px #fff,
                         4px -1px 1px #fff, -4px -1px 1px #fff,
                         1px 1px 1px #fff, -1px 1px 1px #fff,
                         1px -1px 1px #fff, -1px -1px 1px #fff;
            /* 列見出し透明関連 */
        }


        #table03 .fixed:before {
            content: "";
            position: absolute;
            top: 0;
            left: -1px;
            right: -1px;
            height: 100%;
            border-left: 1px solid #707070;
            /* 列見出し透明関連 */
            border-right: 0px solid #707070;
            /* 列見出し透明関連 */
        }
    }

/* -----ご注文手続き　お届け希望日時指定ガイド　CSS ----- */
div#fs_button_changeDeliveryMethod::before {
    content: "お届け希望日・時間帯を指定→　";
    color: tomato;
    font-weight: bold;
}
/* -----ご注文手続き　ご利用ポイントガイド　CSS ----- */
div#fs_button_changePoints::before {
    content: "お支払いにポイントをご利用→　";
    color: tomato;
    font-weight: bold;
}

/* ----- ソルボセイン特徴ブロック表示　CSS ----- */
    .sorbo_origin_container {
        font-size: 16px;
        display: flex;
        flex-direction: column;
        gap: 1vh;
        padding: 1vh;
        border: 2px solid #48CAE4;
    }
    [class^=sorbo_origin_block-] {
        display: flex;
        flex-direction: row;
        height: auto;
        gap: 1vh;
    }
    .sorbo_origin_box_img {
        margin: auto;
        vertical-align: bottom;
        display: block;
    }
    .sorbo_origin_box_p {
        padding: 16px;
    }

/* ----- 会員登録年月日　CSS ----- */
/*　span class　*/
media="screen and (max-width: 767px)"
#fs_Register .fs-c-inputTable select#fs_input_birthdayYear, #fs_Register .fs-c-inputTable select#fs_input_birthdayMonth, #fs_Register .fs-c-inputTable select#fs_input_birthdayDay {
    width:100% !important;
}

media="print, screen and (min-width: 768px)"
#fs_Register .fs-c-inputTable select#fs_input_birthdayYear, #fs_Register .fs-c-inputTable select#fs_input_birthdayMonth, #fs_Register .fs-c-inputTable select#fs_input_birthdayDay {
    width:100% !important;
}

/* ----- ラインマーカー　CSS ----- */
/*　span class　*/
.org_marker-yellow {
    background: linear-gradient(transparent 60%, #fff236 0%);
    display: inline;
    font-weight: bold;
}

.org_marker-blue {
    background: linear-gradient(transparent 60%,  #dbffff 0%);
    display: inline;
    font-weight: bold;
}

.org_marker-red {
    background: linear-gradient(transparent 60%,  #E6CCFF 0%);
    display: inline;
    font-weight: bold;
}


/* ----- 会員限定商品　CSS ----- */
/*　ログイン誘導の装飾　*/
.fs-c-memberOnlyMessage__title {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.2;
    text-align:center;
}

/* ----- マイページ　CSS ----- */
/*　会員ランクの装飾　*/
.fs-p-accountInfo__accountRank {
    color: white;
    background-color: #00529b;
}

/* ----- 全ページ　CSS ----- */
/*　marginを調整　*/
@media only screen and (min-width:1000px){
#content .main {
    margin: 10px 10px !important;
}
}
@media only screen and (max-width:1000px){
#content .main {
	margin: 10px auto !important;
}
}
/* ----- 商品詳細　CSS ----- */
/*　リストの青いディスクを調整　*/
#fs_ProductDetails .main ul.discList li:before {
    left: 1em !important;
    font-size: 30% !important;
}


/* ----- フットケアサポーターLP　CSS ----- */
/*　上部の空白を少なく調整　*/
@media screen and (max-width: 768px) {
  .gaihanbosi_contents {
    margin-top: 3px !important;
  }
}
/* ----- メルマガ会員申し込みフォームCSS ----- */
/*　futureshopオリジナル　*/
.fs-body-newsletter-subscribe .fs-c-inputInformation__field {
    background: rgba(126, 126, 126, 0.08);
    padding: 16px 32px;
}

.fs-body-newsletter-subscribe .fs-c-inputInformation__field .fs-c-additionalCheckField {
    margin-top: 0;
}

.fs-body-newsletter-subscribe .fs-c-inputTable {
    margin-bottom: 16px;
}

@media screen and (min-width: 600px) {

    .fs-body-newsletter-subscribe .fs-c-privacyAgreeField,
    .fs-body-newsletter-subscribe .fs-c-fieldMessage {
        display: block;
        text-align: center;
    }
}

.fs-body-newsletter-subscribe-verification .fs-c-inputInformation__field {
    background: rgba(126, 126, 126, 0.08);
    padding: 16px 32px;
}

.fs-body-newsletter-unsubscribe .fs-c-inputInformation__field {
    background: rgba(126, 126, 126, 0.08);
    padding: 16px 32px;
}

.fs-c-heading {
    -moz-font-feature-settings: "palt";
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    font-weight: bold;
}

.fs-c-heading--page {
    border-bottom: 2px solid #7c8790;
    color: #7C8790;
    font-weight: 300;
    font-size: 2.2rem;
    line-height: 1.2;
    margin: 0 0 24px;
    padding: 0 0 1.2em;
    text-align: center;
}

.fs-c-documentContent {
    font-size: 14px;
}

/* ----- 会員ステージCSS ----- */
/*　氏名の後ろに会員ステージを表示　*/
span.fs-p-accountInfo__accountRank__rank {
    font-size: 14px;
    font-weight: bold;
}

span.fs-p-accountInfo__accountRank__rankLabel {
    font-size: 14px;
    font-weight: bold;
}

.fs-p-accountInfo__header {
    justify-content: space-evenly !important;
}

/* ----- 商品詳細CSS ----- */
/*　会員ステージ機能後の価格表示　上級会員価格に装飾　*/
/* VIP会員：装飾あり */
.fs-c-productPrice--stage2 .fs-c-productPrice__main .fs-c-productPrice__main__label {
    background-color: #d0ad00;
    color: white;
    padding: 2px;
}

/* プラチナ会員：装飾あり */
.fs-c-productPrice--stage1 .fs-c-productPrice__main .fs-c-productPrice__main__label {
    background-color: #d0ad00;
    color: white;
    padding: 2px;
}

/*  ゴールド会員：会員特別価格表示しない */
.fs-c-productPrice.fs-c-productPrice--member.fs-c-productPrice--stage3 {
    display: none;
}

/*  シルバー会員：会員特別価格表示しない */
.fs-c-productPrice.fs-c-productPrice--member.fs-c-productPrice--stage4 {
    display: none;
}

/*  メンバー会員：会員特別価格表示しない */
.fs-c-productPrice.fs-c-productPrice--member.fs-c-productPrice--stage5 {
    display: none;
}

/*  非ログイン時または非会員に会員価格表示しない */
/*　設定／商品･商品グループ／商品ページ設定／会員価格表示設定　*/
/*　会員価格表示設定(商品一覧／商品詳細共通)　               */
/*　✓を外す　非ログイン時にも会員価格を表示する　[設定済み]   */

/*  非ログイン時または非会員 */
/*  表示しない：会員価格で購入するにはログインが必要です */
a.fs-c-productMembersLoginLink {
    display: none;
}

/* ----- カートページ送料情報　CSS ----- */
/*　高額購入割引の送料の文字色・サイズの変更　*/
.fs-c-cartDiscountInfo--postage .fs-c-cartDiscountInfo__info {
    font-size: 1rem;
    color: #000000;
    line-height: 120%;
    font-weight: bold;
    background-color: #ffffdd;
}

/*　送料880円告知等の付加文言　*/
.fs-c-cartDiscountInfo--postage .fs-c-cartDiscountInfo__info:before {
    content: "今回のご購入は"
}

/*　送料880円告知等の付加文言　*/
.fs-c-cartDiscountInfo--postage .fs-c-cartDiscountInfo__info:after {
    font-weight: normal;
    background-color: #ffffff;
    content: "（5,500円以上のご購入、送料込み商品、会員様限定の送料クーポン(3,000円以上ご購入で送料ご負担０円)をご利用の際は送料は頂戴しません。それ以外の場合の送料は880円です。）"
}

/* ----- 商品詳細CSS ----- */
/* ----- パンくずリストを表示しない ----- */
nav.fs-c-breadcrumb {
    display: none !important;
}

/* ----- 商品サムネイルCSS ----- */
/* ----- キャプションを表示しない ----- */
.fs-c-productThumbnail__image__caption {
    display: none !important;
}

/* ----- クローズドクーポンCSS ----- */
/* ----- スマホで文字1.0em ----- */
@media (max-width: 767px) {
    #fs_Checkout .fs-c-checkout-couponCodeInput__title {
        font-size: 1.4em !important;
        font-weight:bold;
    }
}

/* ----- 商品一覧スマホでの拡大ボタンCSS ----- */
/* ----- 表示しない ----- */
/**/
#fs_ProductCategory .fs-c-productListItem__viewMoreImageButton {
    display: none !important;
}



/* ----- 問い合わせ画面CSS ----- */
/* ----- スマホでのレスポンシブ表示用 ----- */
.iframe-wrap {
    position: relative;
    width: 100%;
    padding: calc(960 / 854 * 100%) 0 0;
}

.iframe-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ----- 商品画像拡大表示CSS ----- */
/* ----- 閉じる×印の色をグレー地に白へ ----- */
.fs-c-productImageModal__close::before {
    background-color: #9b9b9b;
}

/* ----- 商品詳細ページ　プルダウンCSS ----- */
/* ----- 文字を濃く、オリジナルプルダウン表示へ戻す ----- */
.fs-c-dropdown::after {
    content: none !important;
}

#fs_ProductDetails .fs-c-dropdown__menu {
    appearance: auto !important;
}

.fs-c-dropdown__menu {
    background: #ffffdd !important;
}

#fs_ProductDetails .fs-c-variationSelect__select.fs-c-dropdown select {
    font-weight: bold !important;
    color: #004d9d !important;
}

.fs-c-dropdown__menu {
    color: #000000;
}

/* ----- トップページランキング、タイトルお悩み画像選択用CSS ----- */
/* ----- タイトルにお悩み画像を書き込み ----- */
.fs-body-top #content .main section.content04.content04s>h2:nth-of-type(1) span:before {
    background-image: url(https://sorbothane.itembox.design/item/img/top/t-icon_01.png);
}

.fs-body-top #content .main section.content04.content04s>h2:nth-of-type(2) span:before {
    background-image: url(https://sorbothane.itembox.design/item/img/top/t-icon_01.png) !important;
}

.fs-body-top #content .main section.content04.content04s>h2:nth-of-type(3) span:before {
    background-image: url(https://sorbothane.itembox.design/item/img/top/t-icon_01.png) !important;
}

.fs-body-top #content .main section.content04.content04s>h2:nth-of-type(4) span:before {
    background-image: url(https://sorbothane.itembox.design/item/img/top/t-icon_01.png) !important;
}

.fs-body-top #content .main section.content04.content04s>h2:nth-of-type(5) span:before {
    background-image: url(https://sorbothane.itembox.design/item/img/top/t-icon_01.png) !important;
}

.fs-body-top #content .main section.content04.content04s>h2:nth-of-type(6) span:before {
    background-image: url(https://sorbothane.itembox.design/item/img/top/t-icon_02.png) !important;
}

.fs-body-top #content .main section.content04.content04s>h2:nth-of-type(7) span:before {
    background-image: url(https://sorbothane.itembox.design/item/img/top/t-icon_03.png) !important;
}

.fs-body-top #content .main section.content04.content04s>h2:nth-of-type(8) span:before {
    background-image: url(https://sorbothane.itembox.design/item/img/top/t-icon_04.png) !important;
}

.fs-body-top #content .main section.content04.content04s>h2:nth-of-type(9) span:before {
    background-image: url(https://sorbothane.itembox.design/item/img/top/t-icon_04.png) !important;
}

.fs-body-top #content .main section.content04.content04s>h2:nth-of-type(10) span:before {
    background-image: url(https://sorbothane.itembox.design/item/img/top/t-icon_04.png) !important;
}

.fs-body-top #content .main section.content04.content04s>h2:nth-of-type(11) span:before {
    background-image: url(https://sorbothane.itembox.design/item/img/top/t-icon_05.png) !important;
}




.fs-body-top #content .main section.content04.content04s>h2:nth-of-type(12) span:before {
    background-image: url(https://sorbothane.itembox.design/item/img/top/t-icon_05.png) !important;
}

.fs-body-top #content .main section.content04.content04s>h2:nth-of-type(13) span:before {
    background-image: url(https://sorbothane.itembox.design/item/img/top/t-icon_06.png) !important;
}

.fs-body-top #content .main section.content04.content04s>h2:nth-of-type(14) span:before {
    background-image: url(https://sorbothane.itembox.design/item/img/top/t-icon_06.png) !important;
}





/* ----- ショッピングカート、商品詳細CSS ----- */
/* ----- 数量選択リストに矢印 ----- */
#fs_ProductDetails .fs-system-quantity-list {
    appearance: auto !important;
    background: #ffffdd;
    font-weight: bold;
}

#fs_ShoppingCart td.fs-c-cartTable__dataCell--quantity .fs-c-quantity__select.fs-system-quantity-list {
    appearance: auto !important;
    background: #ffffdd;
    font-weight: bold;
}

/* ----- ページ全体のパッディングCSS ----- */
/* ----- padding:2px; ----- */
#content .main .inner {
    padding: 2px !important;
}

/* ----- カート・バリエーションごとにボタンパーツCSS ----- */
/* ----- バラエティーリスト ----- */
.fs-c-variationList__item__title {
    background: rgba(126, 126, 126, 0.08);
    font-size: 1.0rem;
    font-weight: 700;
    padding: 2px 4px;
}

.fs-c-variationCart__variationName__name {
    font-weight: normal;
    font-size: 1.0rem;
}

.fs-c-variationCart__wishlist {
    display: grid;
    justify-content: center;
    font-size: 1.0rem;
}

.fs-c-button--particular.fs-c-button--addToWishList--icon::before {
    content: "\e919";
}

.fs-c-button--primary.fs-c-button--addToCart--variation {
    font-size: 1.0rem;
    min-width: 100%;
}

.fs-c-variationCart__cartButton>button {
    -webkit-appearance: none;
    font-size: 1.0rem !important;
    background: #00529b;
    width: 100%;
    white-space: normal;
    word-wrap: break-word;
    word-break: break-all;
}


/* ----- ボタンの枠線と背景を消すCSS ----- */
/* ----- カートに入れるボタン ----- */
button.fs-c-button--addToCart--detail {
    background: none;
    border: none;
}

/* ----- お気に入りマーク ----- */
/* ----- ライトグレイ ----- */
.fs-c-button--particular.fs-c-button--addToWishList--icon::before {
    content: "\e919";
    color: lightgrey !important;
}

/* ----- 商品価格 ----- */
/* ----- 定価”のところ”販売価格 ----- */
.fs-c-productPrice__addon.fs-c-productPrice__addon--listed {
    display: block !important;
    font-size: 12px !important;
}

.fs-c-variationCart__variationName__stock {
    font-size: 1.0rem;
}

/* ----- 商品説明 ----- */
/* ----- h2に表示される取り消し線を描画させない ----- */
#fs_ProductDetails .productDescription {
    margin: 30px 0 0 0;
}

#fs_ProductDetails .productDescription h2 {
    position: relative;
    margin: 20px 0 20px 0;
    text-align: center;
}

#fs_ProductDetails .productDescription h2:before {
    content: '';
    background-color: transparent !important;
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 0px !important;
    top: 0;
    bottom: 0;
    margin: auto;
}

#fs_ProductDetails .productDescription h2 span {
    margin: 0;
    position: relative;
    display: inline-block;
    background-color: #fff;
    padding: 0 15px;
    font-size: 1.8em;
    font-weight: bold;
}

/* ----- 商品価格の表示制御 ----- */
.fs-body-top #content .main section.content04 div.rank.fs-c-productListCarousel.fs-c-slick .slick-slide .fs-c-productPrice.fs-c-productPrice--listed,
.fs-body-category#content .main section.content04 div.rank.fs-c-productListCarousel.fs-c-slick .slick-slide .fs-c-productPrice.fs-c-productPrice--listed {
    display: none;
    flex-wrap: wrap;
}

.fs-body-top #content .main section.content04 div.rank.fs-c-productListCarousel.fs-c-slick .slick-slide .fs-c-productPrice.fs-c-productPrice--listed .fs-c-productPrice__main {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-end;
    height: 5vw;
    max-height: 55px;
}

.fs-body-top #content .main section.content04 div.rank.fs-c-productListCarousel.fs-c-slick .slick-slide .fs-c-productPrice.fs-c-productPrice--listed .fs-c-productPrice__addon.fs-c-productPrice__addon--listed {
    display: flex !important;
    font-size: 12px !important;
    align-items: center;
    position: relative;
    top: max(-1vw, -5px);
    left: max(-1vw, -5px);
}

@media only screen and (max-width:840px) {
    .fs-body-top #content .main section.content04 div.rank.fs-c-productListCarousel.fs-c-slick .slick-slide .fs-c-productPrice.fs-c-productPrice--listed {
        display: none !important;
    }
}

/*  **************************************************
* チェックアウト画面　クーポン表示用
* ****************************************************
*/
.fs-c-checkout-couponList {
    margin: 8px 0;
}

.fs-c-checkout-couponList__item>*+* {
    margin-left: 4px;
}

.fs-c-checkout-couponStatus {
    border-radius: 3px;
    border: 1px solid #cccccc;
    color: #ffffff;
    font-size: 1.2rem;
    width: 64px;
    height: 64px;
    max-width: 100%;
    white-space: normal;
    padding: 4px;
}

.fs-c-checkout-couponStatus::after {
    display: block;
    font-family: "fs-icon" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.8rem;
}

.fs-c-checkout-couponStatus.is-active {
    background: #4DAD71;
    font-size: 0px;
}

.fs-c-checkout-couponStatus.is-active::after {
    content: "\e923";
}

.fs-c-checkout-couponStatus.is-inactive {
    background: #ffffff;
    color: #666666;
    font-size: 1rem;
}

.fs-c-checkout-couponStatus.is-disabled {
    background: #b2b2b2;
}

.fs-c-checkout-couponStatus.is-disabled::after {
    content: "\e924";
}

.fs-c-checkout-couponList {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0;
}

.fs-c-checkout-couponList>li {
    box-sizing: border-box;
}

.fs-c-checkout-couponList__item {
    background: #f7f7f7;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
}

.fs-c-checkout-couponList__item+* {
    margin-top: 8px;
}

.fs-c-checkout-couponList__item.is-active {
    background: #F9F9D6;
}

.fs-c-checkout-couponList__description {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    flex-direction: column;
}

.fs-c-checkout-couponList__control {
    flex-basis: 88px;
}

.fs-c-checkout-couponList__couponName {
    font-size: 1.2rem;
}

.fs-c-checkout-couponList__couponDiscount {
    color: #e76b34;
}

@media screen and (min-width: 768px) {
    .fs-c-checkout-couponList {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: auto;
        grid-auto-flow: row;
        grid-column-gap: 8px;
        grid-row-gap: 8px;
        align-items: stretch;
    }

    .fs-c-checkout-couponList__item+* {
        margin-top: 0;
    }
}

/*  **************************************************
* インソールサイズ調整方法ガイド　2行3列⇔6月1列
* ****************************************************
*/
.morigin_container {
    font-size: 16px;
    display: flex;
    flex-direction: column;
    gap: 1vh;
    padding: 1vh;
    border: 2px solid #48CAE4;
}

[class^=morigin_block-] {
    display: flex;
    flex-direction: row;
    height: 27.3333333333vh;
    gap: 1vh;
}

@media screen and (max-width:480px) {
    [class^=morigin_block-] {
        flex-direction: column;
        height: 800px;
    }
}

[class^=morigin_box-] {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-basis: 33.3333333333%;
    border: 1px solid black;
    border-radius: 10px;
    background-color: #eeecec;
}

/*  **************************************************
* クレジットカード有効年月ドロップダウンメニュー幅
* ****************************************************
*/
#fs_Checkout .fs-c-modal__inner #fs_creditCardInputForm #fs_input_creditCardExpirationMonth {
    width: 100px;
    font-size: 1.3em;
}

#fs_Checkout .fs-c-modal__inner #fs_creditCardInputForm #fs_input_creditCardExpirationYear {
    width: 100px;
    font-size: 1.3em;
}

/*  **************************************************
* 注文履歴合計金額を表示しない 
* **************************************************
*/
.fs-body-my-orders .fs-c-pairList {
    display: none;
}

/* **************************************************
* レビューシステムパーツ用
* fs_theme.css?t=20221019101318より抜粋
* **************************************************
*/
.fs-c-productReviewed+.fs-c-aggregateRating {
    max-width: 600px;
    margin: 24px auto;
}

.fs-c-productReviewed {
    display: -ms-grid;
    display: grid;
    grid-gap: 8px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
}

.fs-c-productReviewed>*+* {
    margin-top: 8px;
}

@supports (grid-gap: 8px) {
    .fs-c-productReviewed>*+* {
        margin-top: 0;
    }
}

.fs-c-productReviewed__image {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
}

.fs-c-productReviewed__name {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
    font-size: 1.0rem;
}

.fs-c-productReviewed__number {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 3;
    grid-row: 3;
}

.fs-c-productReviewed__prices {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 4;
    grid-row: 4;
}

@media screen and (min-width: 600px) {
    .fs-c-productReviewed {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
        margin: auto;
        max-width: 600px;
    }

    .fs-c-productReviewed__image {
        -ms-grid-column: 1;
        grid-column: 1;
        -ms-grid-row: 1;
        -ms-grid-row-span: 4;
        grid-row: 1/5;
        margin-right: 8px;
    }

    @supports (grid-gap: 8px) {
        .fs-c-productReviewed__image {
            margin-right: 0;
        }
    }

    .fs-c-productReviewed__image__image {
        max-width: 100%;
    }

    .fs-c-productReviewed__name {
        -ms-grid-column: 2;
        grid-column: 2;
        -ms-grid-row: 2;
        grid-row: 2;
    }

    .fs-c-productReviewed__number {
        -ms-grid-column: 2;
        grid-column: 2;
        -ms-grid-row: 3;
        grid-row: 3;
    }

    .fs-c-productReviewed__prices {
        -ms-grid-column: 2;
        grid-column: 2;
        -ms-grid-row: 4;
        grid-row: 4;
    }

    .fs-c-productReviewed__name:first-child {
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        grid-column: 1/2;
    }

    .fs-c-productReviewed__name:first-child+.fs-c-productReviewed__number {
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        grid-column: 1/2;
    }

    .fs-c-productReviewed__name:first-child+.fs-c-productReviewed__number+.fs-c-productReviewed__prices {
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        grid-column: 1/2;
    }
}


.fs-c-aggregateRating {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
}

.fs-c-aggregateRating__rating {
    display: flex;
    align-items: baseline;
    flex: 0 1 10rem;
    flex-wrap: wrap;
    font-size: 1.0rem;
    font-weight: normal;
    line-height: 1;
}

.fs-c-aggregateRating__rating::before {
    content: "ご購入されご使用の方からのご評価";
    flex: 1 0 200%;
    font-size: 0.5rem;
}

.fs-c-aggregateRating__count {
    flex-grow: 1;
    font-size: 1.4rem;
}

.fs-c-aggregateRating__message {
    flex-basis: 100%;
    background: #f7f7f7;
    padding: 8px;
    text-align: center;
}

.fs-c-productReviewed+.fs-c-aggregateRating {
    max-width: 600px;
    margin: 24px auto;
}

.fs-c-reviewInfo__reviewer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.fs-c-reviewer__profile__prefecture {
    font-size: 1rem;
}

.fs-c-reviewer__profile__ageGroup {
    font-size: 1rem;
}

.fs-c-reviewer__profile__gender {
    font-size: 1rem;
}

.fs-c-reviewer__profile__status {
    font-size:0.7rem;
    }
.fs-c-reviewer__profile__status:before {
    font-size:0.7rem;
    content:'年齢性別：';
    }

.fs-c-reviewer__profile__status:after {
    font-size:0.7rem;
    content:' 希望';
    }

.fs-c-reviewer__name__nickname {
    font-size: 1rem;
}

.fs-c-reviewer__name__reviewNumber {
    font-size: 1rem;
}

.fs-c-reviewInfo__date {
    display: flex;
    flex-wrap: wrap;
    font-size: 1.2rem;
    margin: 4px 0;
}

.fs-c-reviewInfo__date>dt:after {
    content: "：";
}

.fs-c-reviewInfo__date>dd {
    margin-left: 0;
}

.fs-c-reviewInfo--productDescription .fs-c-reviewInfo__reviewer {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.fs-c-reviewer__profile {
    font-size: 1.2rem;
}

.fs-c-reviewer__name__nickname::after {
    content: "さん";
}

.fs-c-reviewBody {
    border: 1px solid #e5e5e5;
    padding: 16px;
    font-size: 1.6rem;
}

.fs-c-reviewList {
    list-style: none;
    padding: 0;
}

.fs-c-reviewList__item {
    border-bottom: 1px solid #999999;
    display: flex;
    flex-direction: column;
    padding: 16px 8px;
}

.fs-c-reviewList__item:first-child {
    border-top: 1px solid #999999;
}

.fs-c-reviewList__item__product {
    display: flex;
    flex-direction: column;
    min-height: 1px;
}

.fs-c-reviewList__item__info {
    display: flex;
    flex-direction: column;
}

.fs-c-reviewList__item__body {
    margin: 8px 0;
}

.fs-c-reviewList__item__editButton {
    display: flex;
    justify-content: flex-end;
}

@media screen and (min-width: 768px) {
    .fs-c-reviewList__item {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 1fr 4fr;
        grid-template-columns: 1fr 1fr 4fr;
        -ms-grid-rows: 1fr auto auto;
        grid-template-rows: 1fr auto auto;
        grid-column-gap: 8px;
    }

    .fs-c-reviewList__item>* {
        margin-left: 8px;
    }

    @supports (grid-gap: 8px) {
        .fs-c-reviewList__item>* {
            margin-left: 0;
        }
    }

    .fs-c-reviewList__item__product {
        -ms-grid-row: 1;
        grid-row: 1;
        -ms-grid-column: 1;
        grid-column: 1;
        margin-left: 0;
    }

    .fs-c-reviewList__item__info {
        -ms-grid-row: 1;
        grid-row: 1;
        -ms-grid-column: 2;
        grid-column: 2;
    }

    .fs-c-reviewList__item__body {
        -ms-grid-row: 1;
        grid-row: 1;
        -ms-grid-column: 3;
        grid-column: 3;
    }

    .fs-c-reviewList__item__editButton {
        -ms-grid-row: 3;
        grid-row: 3;
        -ms-grid-column: 1;
        -ms-grid-column-span: 3;
        grid-column: 1/4;
    }
}

.fs-c-reviewList--product .fs-c-reviewList__item {
    grid-template: 1fr/1fr 4fr;
    -ms-grid-columns: 1fr 4fr;
    -ms-grid-rows: 1fr;
}

.fs-c-reviewList--product .fs-c-reviewList__item__info {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
}

.fs-c-reviewList--product .fs-c-reviewList__item__body {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
}

.fs-c-reviewList--productDescription .fs-c-reviewList__item {
    grid-template: auto auto/1fr;
    -ms-grid-columns: 1fr;
    -ms-grid-rows: auto auto;
}

.fs-c-reviewList--productDescription .fs-c-reviewList__item__info {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 1;
    grid-column: 1;
}

.fs-c-reviewList--productDescription .fs-c-reviewList__item__body {
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column: 1;
    grid-column: 1;
}

.fs-c-reviewProduct__image {
    min-height: 1px;
    margin-bottom: 8px;
}

.fs-c-reviewStars::before {
    color: #C78D2F;
}

.fs-c-reviewStatus {
    background: #090;
    color: #ffffff;
    display: inline-block;
    font-size: 1rem;
    padding: 4px 8px;
}

.fs-c-reviewerStatus {
    background: #1f5da0;
    border-radius: 1em;
    color: #ffffff;
    display: inline-block;
    font-size: 1rem;
    line-height: 1;
    margin: 0 4px;
    min-width: 5em;
    padding: 4px 8px;
    text-align: center;
}

/* レビュー履歴
------------------------------------------------------------------ */
#fs_MyReviews .fs-c-reviewList .fs-c-productName__name,
#fs_ReviewsByCustomer .fs-c-reviewList .fs-c-productName__name,
#fs_ReviewsByProduct .fs-c-reviewList .fs-c-productName__name {
    font-size: 1.4em;
}

#fs_MyReviews .fs-c-reviewList .fs-c-reviewer,
#fs_ReviewsByCustomer .fs-c-reviewList .fs-c-reviewer,
#fs_ReviewsByProduct .fs-c-reviewList .fs-c-reviewer,
#fs_ProductDetails .fs-c-reviewList .fs-c-reviewer {
    font-size: 1.3em;
}

#fs_MyReviews .fs-c-reviewList .fs-c-reviewInfo__date,
#fs_ReviewsByCustomer .fs-c-reviewList .fs-c-reviewInfo__date,
#fs_ReviewsByProduct .fs-c-reviewList .fs-c-reviewInfo__date,
#fs_ProductDetails .fs-c-reviewList .fs-c-reviewInfo__date {
    font-size: 1.3em;
}

#fs_MyReviews .fs-c-reviewList .fs-c-reviewBody,
#fs_ReviewsByCustomer .fs-c-reviewList .fs-c-reviewBody,
#fs_ReviewsByProduct .fs-c-reviewList .fs-c-reviewBody,
#fs_ProductDetails .fs-c-reviewList .fs-c-reviewBody {
    font-size: 1.3em;
}

#fs_ProductDetails .fs-c-reviewList .fs-c-reviewBody {
    margin-bottom: 15px;
}

#fs_MyReviews .fs-c-reviewList .fs-c-buttonContainer--editReview,
#fs_ReviewsByCustomer .fs-c-reviewList .fs-c-buttonContainer--editReview,
#fs_ReviewsByProduct .fs-c-reviewList .fs-c-buttonContainer--editReview,
#fs_ProductDetails .fs-c-reviewList .fs-c-buttonContainer--editReview {
    font-size: 1.3em;
}

/* レビュー平均評価 */
#fs_WriteReview .fs-c-aggregateRating .fs-c-rating::before,
#fs_WriteReview .fs-c-aggregateRating .fs-c-reviewStars::before,
#fs_WriteReview .fs-c-aggregateRating .fs-c-rating__value,
#fs_WriteReview .fs-c-aggregateRating .fs-c-aggregateRating__count {
    font-size: 1.4em;
}

#fs_ProductDetails .fs-c-aggregateRating .fs-c-rating::before,
#fs_ProductDetails .fs-c-aggregateRating .fs-c-reviewStars::before,
#fs_ProductDetails .fs-c-aggregateRating .fs-c-rating__value,
#fs_ProductDetails .fs-c-aggregateRating .fs-c-aggregateRating__count {
    font-size: 1.4em;
}

#fs_ReviewsByProduct .fs-c-aggregateRating .fs-c-rating::before,
#fs_ReviewsByProduct .fs-c-aggregateRating .fs-c-reviewStars::before,
#fs_ReviewsByProduct .fs-c-aggregateRating .fs-c-rating__value,
#fs_ReviewsByProduct .fs-c-aggregateRating .fs-c-aggregateRating__count {
    font-size: 1.4em;
}


/* レビューを変更する
------------------------------------------------------------------ */
#fs_WriteReview {}

#fs_WriteReview .fs-c-productReviewed+.fs-c-aggregateRating {
    margin: 24px auto;
}

#fs_WriteReview .fs-c-productReviewed {
    margin: auto;
}

#fs_WriteReview .fs-c-productReviewed__image__image {
    width: 90%;
    margin: 10px auto 20px auto;
}

/* レビューを変更する */
/* 販売価格 */
#fs_WriteReview .fs-c-productPrice__main .fs-c-productPrice__main__label {
    margin-right: 5px;
    font-size: 1.0em;
}

/* 販売価格：円マーク */
#fs_WriteReview .fs-c-productPrice__main .fs-c-price__currencyMark {
    font-size: 1.2em;
    font-weight: bold;
    color: #004d9d;
}

/* 販売価格：価格 */
#fs_WriteReview .fs-c-productPrice__main .fs-c-price__value {
    margin-right: 5px;
    font-size: 1.2em;
    font-weight: bold;
    color: #004d9d;
}

/* 消費税込 */
#fs_WriteReview .fs-c-productPrice__addon .fs-c-price {
    display: inline-block;
}

#fs_WriteReview .fs-c-productPrice__addon::before {
    content: "（";
}

#fs_WriteReview .fs-c-productPrice__addon::after {
    content: "）";
}

#fs_WriteReview .fs-c-productPrice__addon .fs-c-productPrice__addon__label {
    font-size: 1.0em;
}

/* 消費税込：円マーク */
#fs_WriteReview .fs-c-productPrice__addon .fs-c-price__currencyMark {
    font-size: 1.0em;
}

/* fs_MyPageTop：価格 */
#fs_WriteReview .fs-c-productPrice__addon .fs-c-price__value {
    font-size: 1.1em;
}


/* 対象商品 */
#fs_WriteReview .fs-c-productReviewed .fs-c-productImage img {
    max-width: 400px;
}

#fs_WriteReview .fs-c-productReviewed .fs-c-productName__name,
#fs_ReviewsByProduct .fs-c-productReviewed .fs-c-productName__name {
    font-size: 1.4em;
}

#fs_WriteReview .fs-c-productReviewed .fs-c-productReviewed__number,
#fs_ReviewsByProduct .fs-c-productReviewed .fs-c-productReviewed__number {
    font-size: 1.4em;
}

#fs_WriteReview .fs-c-productReviewed .fs-c-productPrices,
#fs_ReviewsByProduct .fs-c-productReviewed .fs-c-productPrices {
    font-size: 1.4em;
}

/* まだ、レビューが書かれていません。 */
#fs_WriteReview .fs-c-aggregateRating .fs-c-aggregateRating__message {
    margin: 0 auto;
    padding: 10px;
    max-width: 600px;
    background: #eeeeee;
    font-size: 1.4em;
    text-align: center;
}

/* レビュー投稿入力 */
.fs-body-review-write .fs-c-reveiwNotes {
    border: 1px solid #7c8790;
    border-width: 1px 0;
    max-width: 100%;
    margin: 0 auto;
    padding: 10px 0;
}

#fs_WriteReview .fs-c-reveiwNotes h3 {
    font-size: 1.6em;
    font-weight: bold;
}

#fs_WriteReview .fs-c-reveiwNotes p {
    font-size: 1.4em;
}

#fs_WriteReview .fs-c-inputInformation__field {
    margin: 35px auto 25px auto;
    max-width: 600px;
}

#fs_WriteReview .fs-c-inputTable {
    width: 100%;
}

#fs_WriteReview .fs-c-inputTable__headerCell {
    text-align: left;
}

#fs_WriteReview .fs-c-inputTable__headerCell .fs-c-inputTable__label {
    font-size: 1.4em;
    font-weight: bold;
}

#fs_WriteReview .fs-c-inputTable__dataCell input,
#fs_WriteReview .fs-c-inputTable__dataCell textarea,
#fs_WriteReview .fs-c-inputTable__dataCell select {
    font-size: 1.4em;
}

#fs_WriteReview .fs-c-inputField__explanation {
    font-size: 1.3em;
}

#fs_WriteReview .fs-c-inputTable__comment {
    font-size: 1.3em;
}

#fs_WriteReview .fs-c-inputTable--child .fs-c-checkbox__labelText {
    font-size: 1.4em;
    font-weight: bold;
}

#fs_WriteReview .fs-c-inputTable--child .fs-c-radio__label {
    font-size: 1.4em;
    font-weight: bold;
}

#fs_WriteReview .fs-c-checkbox__checkMark::before {
    color: #ffffff;
    font-size: 1.8em;
    top: -0.05em;
    left: -0.08em;
}

#fs_WriteReview .fs-c-dropdown::after {
    position: absolute;
    top: 1px;
    right: 1px;
    bottom: 1px;
    width: 1em;
    background: #f2f2f2;
    border-left: 1px solid #ccc;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    box-sizing: content-box;
    color: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    content: "\e90f";
    font-family: 'fs-icon' !important;
    font-size: 1.8em;
    line-height: 1;
    padding: 8px;
    pointer-events: none;
}

#fs_WriteReview .fs-c-inputTable__headerCell,
.fs-c-inputTable__dataCell {
    padding: 0;
}

#fs_WriteReview .fs-c-inputTable>thead {
    display: none;
}

#fs_WriteReview .fs-c-inputTable>tbody {
    display: block;
}

#fs_WriteReview .fs-c-inputTable>tbody>tr {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 0;
}

#fs_WriteReview .fs-c-inputTable>tbody>tr+tr {
    margin-top: 24px;
}

#fs_WriteReview .fs-c-inputTable--child {
    background: #f7f7f7;
    display: block;
    padding: 8px;
}

#fs_WriteReview .fs-c-inputTable--child>tbody>tr>th,
.fs-c-inputTable--child>tbody>tr>td {
    padding: 8px 4px;
    display: table-cell;
}

#fs_WriteReview .fs-c-inputTable--inModal>tbody {
    padding-bottom: 16px;
}

#fs_WriteReview .fs-c-inputTable--inModal>tbody>tr+tr {
    margin-top: 8px;
}

#fs_WriteReview .fs-c-inputTable--inModal>tbody>tr:nth-child(even) {
    background: none;
}

#fs_WriteReview .fs-c-inputTable--inModal th,
.fs-c-inputTable--inModal td {
    border: none;
}

#fs_WriteReview _:-ms-input-placeholder,
:root .fs-c-inputTable>tbody>tr>th,
#fs_WriteReview _:-ms-input-placeholder,
:root .fs-c-inputTable>tbody>tr>td {
    display: block;
}

#fs_WriteReview .fs-c-dropdown__menu {}

#fs_WriteReview .fs-c-dropdown {
    border-right: 1px solid #cccccc;
}


/* レビュー書き込み完了
------------------------------------------------------------------ */
#fs_ReviewSuccess .fs-c-documentContent {
    font-size: 1.4em;
}

/* レビューを変更する
------------------------------------------------------------------ */
#fs_WriteReview {}

#fs_WriteReview .fs-c-productReviewed+.fs-c-aggregateRating {
    margin: 24px auto;
}

#fs_WriteReview .fs-c-productReviewed {
    margin: auto;
}

#fs_WriteReview .fs-c-productReviewed__image__image {
    width: 90%;
    margin: 10px auto 20px auto;
}

/* レビューを変更する */
/* 販売価格 */
#fs_WriteReview .fs-c-productPrice__main .fs-c-productPrice__main__label {
    margin-right: 5px;
    font-size: 1.0em;
}

/* 販売価格：円マーク */
#fs_WriteReview .fs-c-productPrice__main .fs-c-price__currencyMark {
    font-size: 1.2em;
    font-weight: bold;
    color: #004d9d;
}

/* 販売価格：価格 */
#fs_WriteReview .fs-c-productPrice__main .fs-c-price__value {
    margin-right: 5px;
    font-size: 1.2em;
    font-weight: bold;
    color: #004d9d;
}

/* 消費税込 */
#fs_WriteReview .fs-c-productPrice__addon .fs-c-price {
    display: inline-block;
}

#fs_WriteReview .fs-c-productPrice__addon::before {
    content: "（";
}

#fs_WriteReview .fs-c-productPrice__addon::after {
    content: "）";
}

#fs_WriteReview .fs-c-productPrice__addon .fs-c-productPrice__addon__label {
    font-size: 1.0em;
}

/* 消費税込：円マーク */
#fs_WriteReview .fs-c-productPrice__addon .fs-c-price__currencyMark {
    font-size: 1.0em;
}

/* fs_MyPageTop：価格 */
#fs_WriteReview .fs-c-productPrice__addon .fs-c-price__value {
    font-size: 1.1em;
}


/* 対象商品 */
#fs_WriteReview .fs-c-productReviewed .fs-c-productImage img {
    max-width: 400px;
}

#fs_WriteReview .fs-c-productReviewed .fs-c-productName__name,
#fs_ReviewsByProduct .fs-c-productReviewed .fs-c-productName__name {
    font-size: 1.4em;
}

#fs_WriteReview .fs-c-productReviewed .fs-c-productReviewed__number,
#fs_ReviewsByProduct .fs-c-productReviewed .fs-c-productReviewed__number {
    font-size: 1.4em;
}

#fs_WriteReview .fs-c-productReviewed .fs-c-productPrices,
#fs_ReviewsByProduct .fs-c-productReviewed .fs-c-productPrices {
    font-size: 1.4em;
}

/* まだ、レビューが書かれていません。 */
#fs_WriteReview .fs-c-aggregateRating .fs-c-aggregateRating__message {
    margin: 0 auto;
    padding: 10px;
    max-width: 600px;
    background: #eeeeee;
    font-size: 1.4em;
    text-align: center;
}

/* レビュー投稿入力 */
.fs-body-review-write .fs-c-reveiwNotes {
    border: 1px solid #7c8790;
    border-width: 1px 0;
    max-width: 100%;
    margin: 0 auto;
    padding: 10px 0;
}

#fs_WriteReview .fs-c-reveiwNotes h3 {
    font-size: 1.6em;
    font-weight: bold;
}

#fs_WriteReview .fs-c-reveiwNotes p {
    font-size: 1.4em;
}

#fs_WriteReview .fs-c-inputInformation__field {
    margin: 35px auto 25px auto;
    max-width: 600px;
}

#fs_WriteReview .fs-c-inputTable {
    width: 100%;
}

#fs_WriteReview .fs-c-inputTable__headerCell {
    text-align: left;
}

#fs_WriteReview .fs-c-inputTable__headerCell .fs-c-inputTable__label {
    font-size: 1.4em;
    font-weight: bold;
}

#fs_WriteReview .fs-c-inputTable__dataCell input,
#fs_WriteReview .fs-c-inputTable__dataCell textarea,
#fs_WriteReview .fs-c-inputTable__dataCell select {
    font-size: 1.4em;
}

#fs_WriteReview .fs-c-inputField__explanation {
    font-size: 1.3em;
}

#fs_WriteReview .fs-c-inputTable__comment {
    font-size: 1.3em;
}

#fs_WriteReview .fs-c-inputTable--child .fs-c-checkbox__labelText {
    font-size: 1.4em;
    font-weight: bold;
}

#fs_WriteReview .fs-c-inputTable--child .fs-c-radio__label {
    font-size: 1.4em;
    font-weight: bold;
}

#fs_WriteReview .fs-c-checkbox__checkMark::before {
    color: #ffffff;
    font-size: 1.8em;
    top: -0.05em;
    left: -0.08em;
}

#fs_WriteReview .fs-c-dropdown::after {
    position: absolute;
    top: 1px;
    right: 1px;
    bottom: 1px;
    width: 1em;
    background: #f2f2f2;
    border-left: 1px solid #ccc;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    box-sizing: content-box;
    color: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    content: "\e90f";
    font-family: 'fs-icon' !important;
    font-size: 1.8em;
    line-height: 1;
    padding: 8px;
    pointer-events: none;
}

#fs_WriteReview .fs-c-inputTable__headerCell,
.fs-c-inputTable__dataCell {
    padding: 0;
}

#fs_WriteReview .fs-c-inputTable>thead {
    display: none;
}

#fs_WriteReview .fs-c-inputTable>tbody {
    display: block;
}

#fs_WriteReview .fs-c-inputTable>tbody>tr {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 0;
}

#fs_WriteReview .fs-c-inputTable>tbody>tr+tr {
    margin-top: 24px;
}

#fs_WriteReview .fs-c-inputTable--child {
    background: #f7f7f7;
    display: block;
    padding: 8px;
}

#fs_WriteReview .fs-c-inputTable--child>tbody>tr>th,
.fs-c-inputTable--child>tbody>tr>td {
    padding: 8px 4px;
    display: table-cell;
}

#fs_WriteReview .fs-c-inputTable--inModal>tbody {
    padding-bottom: 16px;
}

#fs_WriteReview .fs-c-inputTable--inModal>tbody>tr+tr {
    margin-top: 8px;
}

#fs_WriteReview .fs-c-inputTable--inModal>tbody>tr:nth-child(even) {
    background: none;
}

#fs_WriteReview .fs-c-inputTable--inModal th,
.fs-c-inputTable--inModal td {
    border: none;
}

#fs_WriteReview _:-ms-input-placeholder,
:root .fs-c-inputTable>tbody>tr>th,
#fs_WriteReview _:-ms-input-placeholder,
:root .fs-c-inputTable>tbody>tr>td {
    display: block;
}

#fs_WriteReview .fs-c-dropdown__menu {}

#fs_WriteReview .fs-c-dropdown {
    border-right: 1px solid #cccccc;
}


/* レビュー書き込み完了
------------------------------------------------------------------ */
#fs_ReviewSuccess .fs-c-documentContent {
    font-size: 1.4em;
}

/* **************************************************
* /f/event
* 足圧測定会開催リストに使用
* **************************************************
*/

.sokuatu table {
    border-collapse: collapse;
    font-size: 1rem;
}

.sokuatu th,
.sokuatu td {
    border: solid 1px #74a5dd;
    /* 線の種類 太さ 色 */
    padding: 0.25rem;
}

.sokuatu th {
    background-color: #c2f3ff;
}

/* 767px以下の画面で適用 */
@media only screen and (max-width: 767px) {

    .mobile-blocky tr,
    .mobile-blocky th,
    .mobile-blocky td {
        display: block;
        /* セルを縦に */
        border: none;
        /* 線をリセット */
    }

    /* 以下で線を再設定 */
    .mobile-blocky {
        font-size: 1rem;
        border: solid 2px #74a5dd;
        border-top: none;
    }

    .mobile-blocky th {
        border-top: solid 2px #74a5dd;
        background-color: #c2f3ff;
    }

    .mobile-blocky td {
        border-top: dashed 1px #74a5dd;
    }
}

/* **************************************************
 * toc 
 * 目次リンクの設定
 * **************************************************
 */
.toc_container {
    margin-left: 0;
    padding: 10px 15px 15px 15px;
    /* 枠内の余白(上右下左) */
    font-size: 14px;
    /* 文字サイズ */
    border: dotted 1px #777;
    /* 線の種類と色 */
    background: #f7f7f7;
    /* 背景 */
    line-height: 24px;
}

.toc_title {
    font-size: 14px;
    font-weight: bold;
    /* 文字の太さ　通常はnormal */
    color: #000;
    /* 文字の色 */
}

.toc_list li {
    list-style-type: none;
    line-height: 250%;
    /* マークの種類 */
}

.toc_header {
    font-size: 18px;
    font-weight: bold;
    border-bottom: 0px;
    border-bottom: 1px solid #777;
}

/* **************************************************
 * fs-c-coupon
 * マイページ／クーポン情報
 * **************************************************
 */
.fs-c-coupon__info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fs-c-coupon__info>*+* {
    margin-top: 24px;
}

.fs-c-coupon__image {
    max-width: 100%;
    min-width: auto;
}

.fs-c-coupon__image__image {
    max-width: 100%;
    max-height: 320px;
}

.fs-c-coupon__name,
.fs-c-coupon__description {
    width: 100%;
}

.fs-c-coupon__description>*+* {
    margin-top: 16px;
}

.fs-c-coupon__useMethodComment {
    border-top: 1px solid #e5e5e5;
}

.fs-c-coupon__useMethodComment dl {
    display: flex;
    flex-direction: column;
}

.fs-c-coupon__useMethodComment dl>dd {
    margin: 0;
}

.fs-c-coupon__useMethodComment dl>dd p {
    margin: 0;
}

.fs-c-coupon__useMethodComment__title {
    font-weight: 700;
    margin-bottom: 8px;
}

@media screen and (min-width: 960px) {
    .fs-c-coupon__info {
        flex-direction: row;
    }

    .fs-c-coupon__info>*+* {
        margin-top: 0;
        margin-left: 16px;
    }

    .fs-c-coupon__image__image {
        max-width: 320px;
    }

    .fs-c-coupon__name {
        width: auto;
        min-width: 320px;
    }

    .fs-c-coupon__description {
        border-left: 1px solid #e5e5e5;
        padding-left: 16px;
    }

    .fs-c-coupon__useMethodComment dl {
        flex-direction: row;
    }

    .fs-c-coupon__useMethodComment dl>dd {
        margin-left: 24px;
    }
}

.fs-c-couponAppliedCondition__title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 8px;
}

.fs-c-couponAppliedCondition__list {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0;
    margin: 0;
}

.fs-c-couponAppliedCondition__list>li {
    box-sizing: border-box;
}

.fs-c-couponAppliedCondition__listItem+.fs-c-couponAppliedCondition__listItem {
    margin-top: 8px;
}

.fs-c-couponAppliedCondition__list__item {
    padding-left: 0.6em;
    position: relative;
}

.fs-c-couponAppliedCondition__list__item::before {
    content: "";
    background: currentColor;
    display: block;
    width: 0.4em;
    height: 0.4em;
    position: absolute;
    top: 0.55em;
    left: 0;
}

.fs-c-couponAppliedCondition__notice {
    color: #C98696;
}

.fs-c-couponMessage__label {
    color: #7c8790;
    font-size: 1.8rem;
    text-align: center;
    border-bottom: 1px solid #999999;
}

.fs-c-couponMessage__listItem {
    overflow: hidden;
}

.fs-c-couponMessage__listItem>*+* {
    margin-top: 8px;
}

.fs-c-couponMessage__listItem__name {
    display: block;
    padding: 8px;
    color: #7c8790;
    background: #f7f7f7;
    margin: -8px;
    margin-bottom: 8px;
    text-align: center;
}

.fs-c-couponMessage__listItem__discount {
    display: block;
    background: #C98696;
    color: #ffffff;
    width: 100%;
    padding: 4px;
    text-align: center;
}

.fs-c-couponExpiration__title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 8px;
}

.fs-c-couponExpiration__list {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 1rem;
}

.fs-c-couponExpiration__list>li {
    box-sizing: border-box;
}

.fs-c-couponExpiration__list__item {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.fs-c-couponExpiration__list__item__title {
    border: 1px solid #3c3c3c;
    padding: 0 4px;
    margin-right: 4px;
    font-size: 1.0rem;
}

.fs-c-couponExpiration__list__item--available {
    flex-direction: column;
    align-items: flex-start;
}

.fs-c-couponExpiration__list>*+* {
    margin-top: 4px;
}

.fs-c-couponExpiration__notice {
    font-size: 1.8rem;
    color: #C98696;
}

.fs-c-couponList__item {
    border: 2px solid #e6c2c9;
    margin: 16px 0;
    border-radius: 3px;
    font-size: 1.0rem;
}

.fs-c-couponName {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
}

.fs-c-couponName>* {
    width: 100%;
    text-align: center;
}

.fs-c-couponName__name {
    color: #7c8790;
    font-size: 1.6rem;
    font-weight: bold;
}

.fs-c-couponName__discount {
    background: #C98696;
    color: #ffffff;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 4px;
}

.fs-c-couponName__discount__offLabel {
    margin-left: 0.2em;
}

.fs-c-couponProduct {
    margin: 16px 0;
}

.fs-c-couponProduct__header {
    padding-bottom: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.fs-c-couponProduct__title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.fs-c-couponProduct__footer {
    text-align: right;
    padding-top: 4px;
}

/* **************************************************
 * fs-p-searchForm
 * 検索窓
 * **************************************************
 */
/* キーワード検索・ */
/* 上、右、下、左 */
.fs-p-searchForm {
    margin: 0px 25px 0 25px;
    padding: 10px 0 10px 0;
    border-top: 1px solid #e3e3e3;
}

.fs-p-inputGroup {
    display: flex;
    margin: 0 25px;
    align-items: stretch;
    border: 1px solid #444444;
    background: #444444;
}

.fs-p-inputGroup__input {
    border: none;
    border-radius: 0;
    width: calc(100% - 3em);
    flex-grow: 1;
}

.fs-p-inputGroup__button {
    background: #444444;
    border: none;
    color: #ffffff;
    width: 3em;
}

.fs-p-searchForm__input {
    width: calc(100% - 2.2em);
    font-size: 1.4em;
}

.fs-p-searchForm__button {
    overflow: hidden;
    position: relative;
    text-indent: -999px;
    width: 2.2em;
    height: 2.8em;
}

.fs-p-searchForm__button::before {
    font-family: 'fs-icon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1.2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e932";
    display: block;
    font-size: 2.4em;
    line-height: 1.3;
    position: absolute;
    text-indent: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/* **************************************************
 * fs-c-inputTable
 * お客様情報入力背景：薄グレイ#E8E8E8
 * **************************************************
 */
.fs-c-inputTable {
    table-layout: fixed;
    background-color: #ebebf2;
}

/* **************************************************
 * fs-c-button--primary
 * amazonpay注文確定ボタン
 * **************************************************
 */
.fs-c-button--standard {
    background: #ebebeb;
    border: 1px solid #bbbbbb;
    border-radius: 0px;
    color: #3c3c3c;
    cursor: pointer;
    display: inline-block;
    font-size: 1.2rem;
    line-height: 1;
    text-decoration: none;
    text-align: center;
    padding: 0.8em 1.6em 0.6em;
    box-shadow: 0 0 2px #b2b2b2;
}

.fs-c-button--primary {
    background: #444444;
    border: 1px solid #444444;
    border-radius: 0px;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1;
    text-decoration: none;
    text-align: center;
    padding: 0.8em 1.6em 0.6em;
    box-shadow: 0 0 2px #b2b2b2;
    min-width: 240px;
}

.fs-c-checkout-preview {
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    padding: 16px;
    background: #ffffff;
    color: #333333;
}

.fs-c-checkout-preview__body>*+* {
    margin-top: 8px;
}

.fs-c-checkout-preview__body>*+* {
    margin-top: 8px;
}

.fs-c-buttonContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
}

.fs-c-totalAndActions button:not(.fs-c-button--image) {
    font-size: 1.5rem;
    min-height: 2.0rem;
    min-width: 100%;
    max-width: 100%;
    background-color: #ff971a;
    color: #000000;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

.fs-c-button--primary:hover {
    opacity: 0.8;
}

/* **************************************************
 * fs-c-checkout-pointinfo fs-c-checkout-preview
 * **************************************************
 */
.fs-c-checkout-pointInfo__usePoint__number {
    font-size: 2.6rem;
}

.fs-c-checkout-pointInfo__usePoint__label {
    font-size: 1.2rem;
}

.fs-c-checkout-deliveryInfo:not(.fs-c-checkout-preview) {
    margin: 48px 0;
}


.fs-c-checkout-preview {
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    padding: 16px;
    background: #ffffff;
    color: #333333;
}

.fs-c-checkout-preview__title {
    border-bottom: 1px solid #999999;
    font-size: 1.4rem;
    line-height: 1;
    margin: 0 0 8px;
    padding: 0 0 8px;
    text-align: center;
}

.fs-c-checkout-preview__body>*+* {
    margin-top: 8px;
}

.fs-c-checkout-previewAndEdit {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    -ms-grid-columns: 1fr;
    grid-row-gap: 8px;
}

.fs-c-checkout-previewAndEdit>* {
    align-self: center;
}

.fs-c-checkout-previewAndEdit__info {
    -ms-grid-column: 1;
    -ms-grid-row: 1;
    border: 3px solid #e5e5e5;
    border-radius: 3px;
    line-height: 1;
    padding: 8px;
}

.fs-c-checkout-previewAndEdit__info:only-child {
    grid-column: 1 /3;
    -ms-grid-column-span: 3;
}

.fs-c-checkout-previewAndEdit__button {
    -ms-grid-column: 1;
    -ms-grid-row: 2;
}

/* **************************************************
 * fs-p-card カード形式メッセージ　商品詳細ページ
 * **************************************************
 */
.fs-p-card {
    background: rgba(126, 126, 126, 0.08);
    border: 1px solid #999999;
    margin: 8px 0;
    padding: 12px;
}

.fs-p-card__title {
    border-bottom: 1px solid currentColor;
    font-size: 1.5rem;
    margin-top: 8px;
    text-align: center;
    padding-bottom: 16px;
}

.fs-p-card__message {
    padding: 0 8px;
    font-size: 1.0rem;
}

.fs-p-card__footer {
    text-align: right;
}

/* **************************************************
 * もくじ 用　ＣＳＳ
 * **************************************************
 */
.page-contents-index span {
    font-size: 2.0em;
}

.page-contents-index a {
    text-decoration: none;
    color: black;
}

.page-contents-index ul {
    border: solid 2px skyblue;
    border-radius: 5px;
    padding: 0.5em 1em 0.5em 2.3em;
    position: relative;
}

.page-contents-index ul li {
    font-size: 1.5em;
    line-height: 1.5;
    padding: 0.5em 0;
    list-style-type: none !important;
}

.page-contents-index ul li:before {
    font-family: "Font Awesome 5 Free";
    content: "■";
    /*アイコンの種類*/
    position: absolute;
    left: 0.5em;
    /*左端からのアイコンまでの距離*/
    color: skyblue;
    /*アイコン色*/
}

/* **************************************************
 * リスト用　ＣＳＳ
 * **************************************************
 */
.fs-p-dateList>li {
    border: 1px solid #999999;
    border-width: 1px 0 0 0;
    padding: 8px 0 0;
}

.fs-p-dateList>li:last-child {
    border-bottom-width: 1px;
    padding-bottom: 8px;
}

.fs-p-dateList>li time:first-child {
    background: #646464;
    color: #ffffff;
    line-height: 1.2;
    padding: 2px 4px 1.6px;
}

.fs-pt-list {
    list-style: none;
    padding: 0;
}

.fs-pt-list--noMarker>li+li,
.fs-pt-list--unordered>li+li,
.fs-pt-list--ordered>li+li,
.fs-pt-list--note>li+li {
    margin-top: 8px;
}

.fs-pt-list--unordered>li,
.fs-pt-list--ordered>li,
.fs-pt-list--note>li {
    margin-left: 1.1em;
    position: relative;
}

.fs-pt-list--unordered>li::before,
.fs-pt-list--ordered>li::before,
.fs-pt-list--note>li::before {
    position: absolute;
    margin-left: -1.1em;
}

.fs-pt-list--unordered>li::before {
    border: 3px solid #ccc;
    border-radius: 50%;
    content: "";
    width: 0.75em;
    height: 0.75em;
    top: 0.75em;
    box-sizing: content-box;
}

.fs-pt-list--ordered {
    counter-reset: fs-pt-list--orderd;
}

.fs-pt-list--ordered>li {
    counter-increment: fs-pt-list--orderd;
}

.fs-pt-list--ordered>li::before {
    content: counter(fs-pt-list--orderd) ".";
}

.fs-pt-list--note>li::before {
    content: "*";
}

.fs-pt-list--breadcrumb {
    display: flex;
    flex-wrap: wrap;
}

.fs-pt-list--breadcrumb>li+li::before {
    content: ">";
    margin: 0 0.5em;
}

.fs-p-heading--lv2 {
    border-bottom: 2px solid currentColor;
    color: #7C8790;
    font-size: 1.8rem;
}

.fs-p-heading--lv2:not(:first-child) {
    margin-top: 2em;
}

.fs-p-dateList>li {
    border: 1px solid #999999;
    border-width: 1px 0 0 0;
    padding: 8px 0 0;
}

.fs-p-dateList>li:last-child {
    border-bottom-width: 1px;
    padding-bottom: 8px;
}

.fs-p-dateList>li time:first-child {
    background: #646464;
    color: #ffffff;
    line-height: 1.2;
    padding: 2px 4px 1.6px;
}

.fs-pt-list__link {
    background: #ffffff;
    color: #3c3c3c;
    text-decoration: none;
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
    font-size: 1.0rem;
    font-weight: 300;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.fs-pt-list__item {
    background: #ffffff;
    color: #3c3c3c;
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
    font-size: 1.0rem;
    font-weight: 300;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* **************************************************
 * コラムパーツ用　ＣＳＳ
 * **************************************************
 */
/* fs-pt-column */
.fs-pt-column {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    align-items: flex-start;
}

.fs-pt-column>*:nth-child(1) {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
}

.fs-pt-column>*:nth-child(2) {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
}

.fs-pt-column>*:nth-child(3) {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 3;
    grid-row: 3;
}

.fs-pt-column>*:nth-child(4) {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 4;
    grid-row: 4;
}

.fs-pt-column>*:nth-child(5) {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 5;
    grid-row: 5;
}

.fs-pt-column>*:nth-child(6) {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 6;
    grid-row: 6;
}

.fs-pt-column>*:nth-child(7) {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 7;
    grid-row: 7;
}

.fs-pt-column>*:nth-child(8) {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 8;
    grid-row: 8;
}

.fs-pt-column>*:nth-child(9) {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 9;
    grid-row: 9;
}

.fs-pt-column>*:nth-child(10) {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 10;
    grid-row: 10;
}

.fs-pt-column>*:nth-child(11) {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 11;
    grid-row: 11;
}

.fs-pt-column>*:nth-child(12) {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 12;
    grid-row: 12;
}

.fs-pt-column>*:nth-child(13) {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 13;
    grid-row: 13;
}

.fs-pt-column>*:nth-child(14) {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 14;
    grid-row: 14;
}

.fs-pt-column>*:nth-child(15) {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 15;
    grid-row: 15;
}

.fs-pt-column>*:nth-child(16) {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 16;
    grid-row: 16;
}

.fs-pt-column>*:nth-child(17) {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 17;
    grid-row: 17;
}

.fs-pt-column>*:nth-child(18) {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 18;
    grid-row: 18;
}

.fs-pt-column>*:nth-child(19) {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 19;
    grid-row: 19;
}

.fs-pt-column>*:nth-child(20) {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 20;
    grid-row: 20;
}

.fs-pt-column__item {
    color: inherit;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    padding: 8px;
    text-decoration: none;
}

.fs-pt-column__item>*:nth-child(1) {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
}

.fs-pt-column__item>*:nth-child(2) {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
}

.fs-pt-column__item>*:nth-child(3) {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 3;
    grid-row: 3;
}

.fs-pt-column__item:only-child {
    padding: 8px 0;
}

.fs-pt-column__item>*+* {
    margin-top: 4px;
}

.fs-pt-column__image>img {
    display: block;
    max-width: 100%;
}

.fs-pt-column__heading {
    font-size: 1.0rem;
    font-weight: bold;
}

.fs-pt-column__description {
    font-size: 0.8rem;
    font-weight: normal;
}

@media screen and (min-width: 600px) {
    .fs-pt-column {
        flex-direction: row;
    }

    .fs-pt-column--2 {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }

    .fs-pt-column--2>*:nth-child(1) {
        -ms-grid-column: 1;
        grid-column: 1;
        -ms-grid-row: 1;
        grid-row: 1;
    }

    .fs-pt-column--2>*:nth-child(2) {
        -ms-grid-column: 2;
        grid-column: 2;
        -ms-grid-row: 1;
        grid-row: 1;
    }

    .fs-pt-column--2>*:nth-child(3) {
        -ms-grid-column: 1;
        grid-column: 1;
        -ms-grid-row: 2;
        grid-row: 2;
    }

    .fs-pt-column--2>*:nth-child(4) {
        -ms-grid-column: 2;
        grid-column: 2;
        -ms-grid-row: 2;
        grid-row: 2;
    }

    .fs-pt-column--2>*:nth-child(5) {
        -ms-grid-column: 1;
        grid-column: 1;
        -ms-grid-row: 3;
        grid-row: 3;
    }

    .fs-pt-column--2>*:nth-child(6) {
        -ms-grid-column: 2;
        grid-column: 2;
        -ms-grid-row: 3;
        grid-row: 3;
    }

    .fs-pt-column--2>*:nth-child(7) {
        -ms-grid-column: 1;
        grid-column: 1;
        -ms-grid-row: 4;
        grid-row: 4;
    }

    .fs-pt-column--2>*:nth-child(8) {
        -ms-grid-column: 2;
        grid-column: 2;
        -ms-grid-row: 4;
        grid-row: 4;
    }

    .fs-pt-column--2>*:nth-child(9) {
        -ms-grid-column: 1;
        grid-column: 1;
        -ms-grid-row: 5;
        grid-row: 5;
    }

    .fs-pt-column--2>*:nth-child(10) {
        -ms-grid-column: 2;
        grid-column: 2;
        -ms-grid-row: 5;
        grid-row: 5;
    }

    .fs-pt-column--2>*:nth-child(11) {
        -ms-grid-column: 1;
        grid-column: 1;
        -ms-grid-row: 6;
        grid-row: 6;
    }

    .fs-pt-column--2>*:nth-child(12) {
        -ms-grid-column: 2;
        grid-column: 2;
        -ms-grid-row: 6;
        grid-row: 6;
    }

    .fs-pt-column--2>*:nth-child(13) {
        -ms-grid-column: 1;
        grid-column: 1;
        -ms-grid-row: 7;
        grid-row: 7;
    }

    .fs-pt-column--2>*:nth-child(14) {
        -ms-grid-column: 2;
        grid-column: 2;
        -ms-grid-row: 7;
        grid-row: 7;
    }

    .fs-pt-column--2>*:nth-child(15) {
        -ms-grid-column: 1;
        grid-column: 1;
        -ms-grid-row: 8;
        grid-row: 8;
    }

    .fs-pt-column--2>*:nth-child(16) {
        -ms-grid-column: 2;
        grid-column: 2;
        -ms-grid-row: 8;
        grid-row: 8;
    }

    .fs-pt-column--2>*:nth-child(17) {
        -ms-grid-column: 1;
        grid-column: 1;
        -ms-grid-row: 9;
        grid-row: 9;
    }

    .fs-pt-column--2>*:nth-child(18) {
        -ms-grid-column: 2;
        grid-column: 2;
        -ms-grid-row: 9;
        grid-row: 9;
    }

    .fs-pt-column--2>*:nth-child(19) {
        -ms-grid-column: 1;
        grid-column: 1;
        -ms-grid-row: 10;
        grid-row: 10;
    }

    .fs-pt-column--2>*:nth-child(20) {
        -ms-grid-column: 2;
        grid-column: 2;
        -ms-grid-row: 10;
        grid-row: 10;
    }

    .fs-pt-column--3 {
        -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .fs-pt-column--3>*:nth-child(1) {
        -ms-grid-column: 1;
        grid-column: 1;
        -ms-grid-row: 1;
        grid-row: 1;
    }

    .fs-pt-column--3>*:nth-child(2) {
        -ms-grid-column: 2;
        grid-column: 2;
        -ms-grid-row: 1;
        grid-row: 1;
    }

    .fs-pt-column--3>*:nth-child(3) {
        -ms-grid-column: 3;
        grid-column: 3;
        -ms-grid-row: 1;
        grid-row: 1;
    }

    .fs-pt-column--3>*:nth-child(4) {
        -ms-grid-column: 1;
        grid-column: 1;
        -ms-grid-row: 2;
        grid-row: 2;
    }

    .fs-pt-column--3>*:nth-child(5) {
        -ms-grid-column: 2;
        grid-column: 2;
        -ms-grid-row: 2;
        grid-row: 2;
    }

    .fs-pt-column--3>*:nth-child(6) {
        -ms-grid-column: 3;
        grid-column: 3;
        -ms-grid-row: 2;
        grid-row: 2;
    }

    .fs-pt-column--3>*:nth-child(7) {
        -ms-grid-column: 1;
        grid-column: 1;
        -ms-grid-row: 3;
        grid-row: 3;
    }

    .fs-pt-column--3>*:nth-child(8) {
        -ms-grid-column: 2;
        grid-column: 2;
        -ms-grid-row: 3;
        grid-row: 3;
    }

    .fs-pt-column--3>*:nth-child(9) {
        -ms-grid-column: 3;
        grid-column: 3;
        -ms-grid-row: 3;
        grid-row: 3;
    }

    .fs-pt-column--3>*:nth-child(10) {
        -ms-grid-column: 1;
        grid-column: 1;
        -ms-grid-row: 4;
        grid-row: 4;
    }

    .fs-pt-column--3>*:nth-child(11) {
        -ms-grid-column: 2;
        grid-column: 2;
        -ms-grid-row: 4;
        grid-row: 4;
    }

    .fs-pt-column--3>*:nth-child(12) {
        -ms-grid-column: 3;
        grid-column: 3;
        -ms-grid-row: 4;
        grid-row: 4;
    }

    .fs-pt-column--3>*:nth-child(13) {
        -ms-grid-column: 1;
        grid-column: 1;
        -ms-grid-row: 5;
        grid-row: 5;
    }

    .fs-pt-column--3>*:nth-child(14) {
        -ms-grid-column: 2;
        grid-column: 2;
        -ms-grid-row: 5;
        grid-row: 5;
    }

    .fs-pt-column--3>*:nth-child(15) {
        -ms-grid-column: 3;
        grid-column: 3;
        -ms-grid-row: 5;
        grid-row: 5;
    }

    .fs-pt-column--3>*:nth-child(16) {
        -ms-grid-column: 1;
        grid-column: 1;
        -ms-grid-row: 6;
        grid-row: 6;
    }

    .fs-pt-column--3>*:nth-child(17) {
        -ms-grid-column: 2;
        grid-column: 2;
        -ms-grid-row: 6;
        grid-row: 6;
    }

    .fs-pt-column--3>*:nth-child(18) {
        -ms-grid-column: 3;
        grid-column: 3;
        -ms-grid-row: 6;
        grid-row: 6;
    }

    .fs-pt-column--3>*:nth-child(19) {
        -ms-grid-column: 1;
        grid-column: 1;
        -ms-grid-row: 7;
        grid-row: 7;
    }

    .fs-pt-column--3>*:nth-child(20) {
        -ms-grid-column: 2;
        grid-column: 2;
        -ms-grid-row: 7;
        grid-row: 7;
    }

    .fs-pt-column--4 {
        -ms-grid-columns: 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .fs-pt-column--4>*:nth-child(1) {
        -ms-grid-column: 1;
        grid-column: 1;
        -ms-grid-row: 1;
        grid-row: 1;
    }

    .fs-pt-column--4>*:nth-child(2) {
        -ms-grid-column: 2;
        grid-column: 2;
        -ms-grid-row: 1;
        grid-row: 1;
    }

    .fs-pt-column--4>*:nth-child(3) {
        -ms-grid-column: 3;
        grid-column: 3;
        -ms-grid-row: 1;
        grid-row: 1;
    }

    .fs-pt-column--4>*:nth-child(4) {
        -ms-grid-column: 4;
        grid-column: 4;
        -ms-grid-row: 1;
        grid-row: 1;
    }

    .fs-pt-column--4>*:nth-child(5) {
        -ms-grid-column: 1;
        grid-column: 1;
        -ms-grid-row: 2;
        grid-row: 2;
    }

    .fs-pt-column--4>*:nth-child(6) {
        -ms-grid-column: 2;
        grid-column: 2;
        -ms-grid-row: 2;
        grid-row: 2;
    }

    .fs-pt-column--4>*:nth-child(7) {
        -ms-grid-column: 3;
        grid-column: 3;
        -ms-grid-row: 2;
        grid-row: 2;
    }

    .fs-pt-column--4>*:nth-child(8) {
        -ms-grid-column: 4;
        grid-column: 4;
        -ms-grid-row: 2;
        grid-row: 2;
    }

    .fs-pt-column--4>*:nth-child(9) {
        -ms-grid-column: 1;
        grid-column: 1;
        -ms-grid-row: 3;
        grid-row: 3;
    }

    .fs-pt-column--4>*:nth-child(10) {
        -ms-grid-column: 2;
        grid-column: 2;
        -ms-grid-row: 3;
        grid-row: 3;
    }

    .fs-pt-column--4>*:nth-child(11) {
        -ms-grid-column: 3;
        grid-column: 3;
        -ms-grid-row: 3;
        grid-row: 3;
    }

    .fs-pt-column--4>*:nth-child(12) {
        -ms-grid-column: 4;
        grid-column: 4;
        -ms-grid-row: 3;
        grid-row: 3;
    }

    .fs-pt-column--4>*:nth-child(13) {
        -ms-grid-column: 1;
        grid-column: 1;
        -ms-grid-row: 4;
        grid-row: 4;
    }

    .fs-pt-column--4>*:nth-child(14) {
        -ms-grid-column: 2;
        grid-column: 2;
        -ms-grid-row: 4;
        grid-row: 4;
    }

    .fs-pt-column--4>*:nth-child(15) {
        -ms-grid-column: 3;
        grid-column: 3;
        -ms-grid-row: 4;
        grid-row: 4;
    }

    .fs-pt-column--4>*:nth-child(16) {
        -ms-grid-column: 4;
        grid-column: 4;
        -ms-grid-row: 4;
        grid-row: 4;
    }

    .fs-pt-column--4>*:nth-child(17) {
        -ms-grid-column: 1;
        grid-column: 1;
        -ms-grid-row: 5;
        grid-row: 5;
    }

    .fs-pt-column--4>*:nth-child(18) {
        -ms-grid-column: 2;
        grid-column: 2;
        -ms-grid-row: 5;
        grid-row: 5;
    }

    .fs-pt-column--4>*:nth-child(19) {
        -ms-grid-column: 3;
        grid-column: 3;
        -ms-grid-row: 5;
        grid-row: 5;
    }

    .fs-pt-column--4>*:nth-child(20) {
        -ms-grid-column: 4;
        grid-column: 4;
        -ms-grid-row: 5;
        grid-row: 5;
    }

    .fs-pt-column--5 {
        -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }

    .fs-pt-column--5>*:nth-child(1) {
        -ms-grid-column: 1;
        grid-column: 1;
        -ms-grid-row: 1;
        grid-row: 1;
    }

    .fs-pt-column--5>*:nth-child(2) {
        -ms-grid-column: 2;
        grid-column: 2;
        -ms-grid-row: 1;
        grid-row: 1;
    }

    .fs-pt-column--5>*:nth-child(3) {
        -ms-grid-column: 3;
        grid-column: 3;
        -ms-grid-row: 1;
        grid-row: 1;
    }

    .fs-pt-column--5>*:nth-child(4) {
        -ms-grid-column: 4;
        grid-column: 4;
        -ms-grid-row: 1;
        grid-row: 1;
    }

    .fs-pt-column--5>*:nth-child(5) {
        -ms-grid-column: 5;
        grid-column: 5;
        -ms-grid-row: 1;
        grid-row: 1;
    }

    .fs-pt-column--5>*:nth-child(6) {
        -ms-grid-column: 1;
        grid-column: 1;
        -ms-grid-row: 2;
        grid-row: 2;
    }

    .fs-pt-column--5>*:nth-child(7) {
        -ms-grid-column: 2;
        grid-column: 2;
        -ms-grid-row: 2;
        grid-row: 2;
    }

    .fs-pt-column--5>*:nth-child(8) {
        -ms-grid-column: 3;
        grid-column: 3;
        -ms-grid-row: 2;
        grid-row: 2;
    }

    .fs-pt-column--5>*:nth-child(9) {
        -ms-grid-column: 4;
        grid-column: 4;
        -ms-grid-row: 2;
        grid-row: 2;
    }

    .fs-pt-column--5>*:nth-child(10) {
        -ms-grid-column: 5;
        grid-column: 5;
        -ms-grid-row: 2;
        grid-row: 2;
    }

    .fs-pt-column--5>*:nth-child(11) {
        -ms-grid-column: 1;
        grid-column: 1;
        -ms-grid-row: 3;
        grid-row: 3;
    }

    .fs-pt-column--5>*:nth-child(12) {
        -ms-grid-column: 2;
        grid-column: 2;
        -ms-grid-row: 3;
        grid-row: 3;
    }

    .fs-pt-column--5>*:nth-child(13) {
        -ms-grid-column: 3;
        grid-column: 3;
        -ms-grid-row: 3;
        grid-row: 3;
    }

    .fs-pt-column--5>*:nth-child(14) {
        -ms-grid-column: 4;
        grid-column: 4;
        -ms-grid-row: 3;
        grid-row: 3;
    }

    .fs-pt-column--5>*:nth-child(15) {
        -ms-grid-column: 5;
        grid-column: 5;
        -ms-grid-row: 3;
        grid-row: 3;
    }

    .fs-pt-column--5>*:nth-child(16) {
        -ms-grid-column: 1;
        grid-column: 1;
        -ms-grid-row: 4;
        grid-row: 4;
    }

    .fs-pt-column--5>*:nth-child(17) {
        -ms-grid-column: 2;
        grid-column: 2;
        -ms-grid-row: 4;
        grid-row: 4;
    }

    .fs-pt-column--5>*:nth-child(18) {
        -ms-grid-column: 3;
        grid-column: 3;
        -ms-grid-row: 4;
        grid-row: 4;
    }

    .fs-pt-column--5>*:nth-child(19) {
        -ms-grid-column: 4;
        grid-column: 4;
        -ms-grid-row: 4;
        grid-row: 4;
    }

    .fs-pt-column--5>*:nth-child(20) {
        -ms-grid-column: 5;
        grid-column: 5;
        -ms-grid-row: 4;
        grid-row: 4;
    }
}

/* **************************************************
 * アコーディオン用ＣＳＳ label+ul方式　label画像に利用
 * **************************************************
 */
/* accordion menu */
/* アコーディオンのラベル(書記表示部分)の設定 */
.accordionmenu label {
    display: block;
    width: 99%;
    /* オリジナルは設定無し */
    margin: 0px 0px 5px 0px;
    padding: 5px;
    line-height: 1;
    color: #fff;
    background: rgb(213, 238, 245);
    /* rgb(246, 246, 248); */
    cursor: pointer;
    font-family: sans-serif;
    font-weight: bold;
}

/* アコーディオンのインプットの設定 */
.accordionmenu input {
    display: none;
}

/* アコーディオンの表示幅の設定 */
.accordionmenu {
    max-width: 99%;
    /* 640px; */
}

/* アコーディオンのｕｌの設定 */
.accordionmenu ul {
    margin: 0px 0px 10px 0px;
    /*四辺マージン　上、右、下、左 オリジナル0px;*/
    padding: 0px;
    background: #f4f4f4;
    list-style: none;
}

/* アコーディオンのｌｉの設定 */
.accordionmenu li {
    height: 0;
    overflow: hidden;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-family: sans-serif;
}

/* アコーディオンのｐの設定 */
.accordionmenu p {
    line-height: 1.5em;
    padding-left: 15px;
    font-size: 18px;
}

/* アコーディオンの展開部分設定 */
#accordiontype01:checked~#accordionlinks01 li {
    height: auto;
    opacity: 1;
}

/* **************************************************
           　 * アコーディオン用ＣＳＳ label_p 方式　label文字に利用
　*occ_cp_actab
 * **************************************************
 */
/*occ_cp_actabの設定*/
/*スマホの設定*/
.occ_cp_actab {
    position: relative;
    /*位置取り：左起点*/
    overflow: hidden;
    /*オーバーフロー：表示しない*/
    width: auto;
    /*幅：640px固定*/
    margin: 0.1rem 0rem 0.1rem 0rem;
    /*四辺マージン　上、右、下、左*/
    color: #000;
    /*文字色：黒*/
}

/*ＰＣの設定*/
@media screen and (min-width: 460px) {
    .occ_cp_actab {
        position: relative;
        /*位置取り：左起点*/
        overflow: hidden;
        /*オーバーフロー：表示しない*/
        width: auto;
        /*幅：640px固定*/
        margin: 0.1rem 3rem 0.1rem 3rem;
        /*四辺マージン　上、右、下、左*/
        color: #000;
        /*文字色：黒*/
    }
}

/*occ_cp_actabのinputの設定：<input id="tab-one" type="checkbox" name="tabs">*/
.occ_cp_actab input {
    position: absolute;
    /*絶対座標位置*/
    z-index: -1;
    /*重ね合わせレベル：最下層*/
    opacity: 0;
    /*不透明度：不透明*/
}

/*occ_cp_actabのlabelの設定：<label for="tab-one">*/
.occ_cp_actab label {
    font-size: 18px;
    font-weight: bold;
    /*文字：太字*/
    line-height: 3;
    /*文字：行間　3文字分*/
    position: relative;
    /*位置取り：左起点*/
    display: block;
    /*この要素labelを１つのブロックとして扱う*/
    padding: 0 0 0 1em;
    /*四辺パディング：左右上0　下1em*/
    cursor: pointer;
    /*マウスカーソル：リンクポインタ*/
    margin: 0 0 1px 0;
    /*四辺マージン：左右0 上1px　下0*/
    background: #c7f8ff;
    /*ラベル背景色：*/
}

/*occ_cp_actabの子要素<div class="occ_cp_actab-content">)の設定*/
.occ_cp_actab .occ_cp_actab-content {
    font-size: 16px;
    overflow: hidden;
    /*オーバーフロー：表示しない*/
    max-height: 0;
    /*最大高さ：0　表示しない*/
    /*非推奨-webkit-transition: max-height 0.35s;*/
    transition: max-height 0.35s;
    /*動作の所要時間：0.3秒*/
    color: #333333;
    /*文字色：*/
    background: #fffee1;
    /*アコーデオン背景色：*/
}

/*タブ(occ_cp_actabの子要素<div class="occ_cp_actab-content">)の<p>設定 */
.occ_cp_actab .occ_cp_actab-content p {
    margin: 1em;
    /*四辺マージン：左1em*/
}

/* :checked */
/*occ_cp_actabのinput:checkedなら子要素<div class="occ_cp_actab-content">の表示設定*/
.occ_cp_actab input:checked~.occ_cp_actab-content {
    max-height: 50em;
    /*最大高さ：50em*/
}

/* Icon */
/* 疑似要素 input:checkedの後のlabel動作*/
.occ_cp_actab label::after {
    line-height: 3;
    /*文字：行間　3文字分*/
    position: absolute;
    /*絶対座標位置*/
    top: 0;
    /*上0*/
    right: 0;
    /*右0*/
    display: block;
    /*この要素labelを１つのブロックとして扱う*/
    width: 3em;
    height: 3em;
    /*非推奨-webkit-transition: max-height 0.35s;*/
    transition: all 0.35s;
    /*動作の所要時間：0.3秒*/
    text-align: center;
    /*文字の配置：中央*/
}

/* 疑似要素 input:checkedの前のlabel checkboxの表示文字*/
.occ_cp_actab input[type=checkbox]+label::after {
    content: '▼';
}

/* 疑似要素 input:checkedの後のlabel checkboxの表示文字を180度回転させる*/
.occ_cp_actab input[type=checkbox]:checked+label::after {
    transform: rotate(180deg);
}

/* **************************************************
  * レスポンシブ
　*　id=responsive_changer
 * **************************************************
 */
/*スマホの設定*/
.responsive_changer {
    margin: 1rem 0rem 0.1rem 0rem;
    /*四辺マージン　上、右、下、左*/
    text-align: center;
    padding: 20px 0;
    background-color: #fee600
}

.responsive_changer p {
    font-size: 18px;
    font-weight: bold;
}

/*ＰＣの設定*/
@media screen and (min-width: 460px) {
    .responsive_changer {
        margin: 1rem 3rem 0.1rem 3rem;
        /*四辺マージン　上、右、下、左*/
        text-align: center;
        padding: 20px 0;
        background-color: #fee600
    }

    .responsive_changer p {
        font-size: 18px;
        font-weight: bold;
    }
}

/**********************
*サーチフォーム20220804
**********************/
main>.fs-p-headerNavigation__search {
    padding: 20px 0 10px 0;
}

main>.fs-p-headerNavigation__search form {
    border: 2px solid #004D9D;
    background: #fff;
    height: 50px;
    border-radius: 25px;
    padding: 0 20px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    box-sizing: border-box;
}

main>.fs-p-headerNavigation__search .fs-p-inputGroup {
    border: none;
    background-color: #fff;
    align-items: center;
    width: 100%;
    margin: 0;
}

main>.fs-p-headerNavigation__search .fs-p-inputGroup .fs-p-searchForm__input {
    outline: none;
    border: none;
    width: 100%;
}

main>.fs-p-headerNavigation__search .fs-p-inputGroup__button {
    background: #fff;
}

main>.fs-p-headerNavigation__search .fs-p-inputGroup__button::before {
    color: #004D9D;
    font-size: 3em;
    line-height: 100%;
}

main>.fs-p-headerNavigation__search+div>p {
    margin-top: 0 !important;
    color: #333;
    font-weight: bold;
}

@media screen and (min-width: 768px) {

    /**********************
  *サーチフォーム
  **********************/
    main>.fs-p-headerNavigation__search form {
        margin: 0 auto;
        width: 100%;
        max-width: 800px;
    }

    body {
        padding-top: 0 !important;
    }
}

@media screen and (max-width: 767px) {
    .smp_header_banner {
        display: block;
        /*position: fixed;*/
        /*top: 73px;*/
        /*left: 0;
    right: 0;
    z-index: 9998;*/
        width: 100%;
    }

    .smp_header_banner a img {
        width: 100% !important;
    }
}

@media screen and (max-width: 640px) {

    /**********************
  *サーチフォーム
  **********************/
    main>.fs-p-headerNavigation__search {
        margin: 0 10px;
    }

    main>.fs-p-headerNavigation__search form {
        padding: 0 15px;
    }

    main>.fs-p-headerNavigation__search .fs-p-inputGroup__button {
        height: 2.5em;
        width: 1.8em;
    }

    main>.fs-p-headerNavigation__search .fs-p-inputGroup__button::before {
        font-size: 2.5em;
    }
}

/**********************
*会員登録フォーム20220804
**********************/
@media screen and (max-width: 767px) {

    #fs_Register .fs-c-inputTable th,
    #fs_Register .fs-c-inputTable td {
        width: 100% !important;
        display: block;
        box-sizing: border-box;
        padding: 16px 5% 0;
    }

    #fs_Register .fs-c-inputTable th .fs-c-inputTable__label .fs-c-requiredMark {
        width: auto;
        height: auto;
        overflow: inherit;
        text-indent: 0;
    }

    #fs_Register .fs-c-inputTable th .fs-c-inputTable__label .fs-c-requiredMark::before {
        content: none;
    }

    #fs_Register .fs-c-inputField__explanation {
        margin: 20px 0 30px;
    }

    #fs_Register .fs-c-inputField__explanation>p {
        background: #b2b2b2 !important;
    }
}

/**********************
*ヘッダー20220804
**********************/
.smp_header_banner {
    display: none;
}

@media screen and (min-width: 768px) {
    body {
        padding-top: 0 !important;
    }
}

@media screen and (max-width: 767px) {
    .mm-wrapper_opened body {
        padding-top: 0 !important;
    }

    #header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 100000;
    }

    .smp_header_banner {
        display: block;
        /*position: fixed;*/
        /*top: 73px;*/
        /*left: 0;
    right: 0;
    z-index: 9998;*/
        width: 100%;
    }

    .smp_header_banner a img {
        width: 100% !important;
    }
}

/**********************
*FV 20220913
**********************/
#home_fv,
#fv_link {
    max-width: 1300px;
    margin: 0 auto;
    display: block;
}

#home_fv {
    margin: 0 auto 40px;
}

#home_fv img {}

#fv_link {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
}

#fv_link li a {
    display: block;
    transition-duration: .3s;
}

#fv_link li a:hover {
    opacity: 0.7;
}

@media screen and (min-width: 768px) {

    #home_fv img.sp,
    #fv_link li a .sp {
        display: none !important;
    }

    #fv_link {
        width: 90%;
    }

    #fv_link li {
        width: 24.2308%;
    }
}

@media screen and (max-width: 767px) {

    #home_fv img.pc,
    #fv_link li a .pc {
        display: none !important;
    }

    #fv_link {
        flex-wrap: wrap;
        width: 92%;
        margin: 0 auto 15px;
    }

    #fv_link li {
        width: 48.6111%;
        margin-bottom: 2.0%;
    }

    #fv_link li:nth-last-child(-n+2) {
        margin-bottom: 0;
    }

    #fv_link li a>.pc {
        display: none !important;
    }
}

@media screen and (max-width: 640px) {
    #home_fv {
        margin: 0 auto 15px;
    }
}



/********************************************************************************/
/***************************　カートページ調整　20230804　***********************/
/********************************************************************************/

body#fs_Checkout.fs-body-checkout nav.fs-c-breadcrumb,
body#fs_CheckoutWithAmazon.fs-body-checkout-amazon nav.fs-c-breadcrumb {
    position: relative;
    top: 0;
    left: 0;
    float: left;
    display: inline-block;
    font-size: 1.1em;
    width: 100%;
}

body#fs_ShoppingCart.fs-body-cart .container {
    position: relative;
    height: auto;
    background-color: #fff;
    width: 100%;
    max-width: 100%;
    order: 2;
}

body#fs_Checkout.fs-body-checkout .container {
    position: relative;
    height: auto;
    background-color: #fff;
    width: 100%;
    max-width: 100%;
    order: 2;
}

body#fs_CheckoutWithAmazon.fs-body-checkout-amazon .fs-c-checkout-loginGuidance {
    display: flex;
    font-size: min(4vw, 20px);
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    width: 90%;
    margin: auto;
}

body#fs_CheckoutWithAmazon.fs-body-checkout-amazon .fs-c-button--standard {
    font-size: 1em;
}

body#fs_Checkout.fs-body-checkout .container .main .inner,
body#fs_CheckoutWithAmazon.fs-body-checkout-amazon main.fs-l-main {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: min(4vw, 18px);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: min(3vw, 40px);
    width: 96%;
    margin: auto;
}

body#fs_CheckoutWithAmazon.fs-body-checkout-amazon main.fs-l-main {
    justify-content: space-around;
}

body#fs_CheckoutWithAmazon.fs-body-checkout-amazon main.fs-l-main :not(rt) {
    font-size: 1em;
}

body#fs_CheckoutWithAmazon.fs-body-checkout-amazon main.fs-l-main .fs-l-checkout__mainColumn {
    width: 95%;
}

body#fs_CheckoutWithAmazon.fs-body-checkout-amazon main.fs-l-main .fs-l-checkout__sideColumn {
    width: 27%;
}

body#fs_Checkout.fs-body-checkout .container .main .inner>p {
    width: 100%;
}

body#fs_Checkout.fs-body-checkout .container .main .inner .pgTtl {
    overflow: hidden;
    margin: min(4vw, 40px) 0 min(4vw, 40px) 0;
    font-size: min(7vw, 40px);
    font-weight: bold;
    color: #004d9d;
    text-align: left;
}

body#fs_Checkout.fs-body-checkout .container .main .inner .fs-c-checkout-preview__title {
    border-bottom: none;
    font-size: 1.4rem;
    line-height: 1.7;
    margin: 0 0 8px;
    padding: 0 0 8px;
    text-align: center;
}

body#fs_Checkout.fs-body-checkout .container .main .inner .fs-c-totalAndActions {
    margin: 0;
    padding: 10px 20px 20px 20px;
    border: 1px solid #cccccc;
    text-align: center;
}

body#fs_Checkout.fs-body-checkout .container .main .inner .fs-c-checkout-orderInfo {
    margin: 0;
    padding: 10px 20px 20px 20px;
    border: 1px solid #cccccc;
    text-align: center;
}

body#fs_Checkout.fs-body-checkout .container .main .inner .fs-c-checkout-buyerInfo {
    padding: 10px 20px 20px 20px;
    border: 1px solid #cccccc;
    text-align: center;
    margin: 30px 0 0 0;
}

body#fs_Checkout.fs-body-checkout .container .main .inner .fs-c-buttonContainer a,
body#fs_CheckoutWithAmazon.fs-body-checkout-amazon main.fs-l-main .fs-c-buttonContainer a {
    margin: 0 0 auto auto;
}

body#fs_Checkout.fs-body-checkout .container .main .inner .fs-c-checkout-preview__title,
body#fs_CheckoutWithAmazon.fs-body-checkout-amazon main.fs-l-main .fs-l-checkout__mainColumn .fs-c-checkout-preview__title {
    font-size: min(5vw, 21px);
    line-height: 1.7;
}

body#fs_Checkout.fs-body-checkout .container .main .inner .fs-c-checkout-customerInfo__name,
body#fs_Checkout.fs-body-checkout .container .main .inner .fs-c-checkout-destination__name,
body#fs_CheckoutWithAmazon.fs-body-checkout-amazon main.fs-l-main .fs-l-checkout__mainColumn .fs-c-checkout-customerInfo__name,
body#fs_CheckoutWithAmazon.fs-body-checkout-amazon main.fs-l-main .fs-l-checkout__mainColumn .fs-c-checkout-destination__name {
    font-size: min(5vw, 30px);
}

body#fs_Checkout.fs-body-checkout .container .main .inner .fs-c-checkout-customerInfo,
body#fs_Checkout.fs-body-checkout .container .main .inner .fs-c-checkout-destination__list,
body#fs_Checkout.fs-body-checkout .container .main .inner .fs-c-button--standard,
body#fs_Checkout.fs-body-checkout .container .main .inner .fs-c-checkout-destination__address,
body#fs_Checkout.fs-body-checkout .container .main .inner .fs-c-checkout-destination__tel.fs-u-tel,
body#fs_Checkout.fs-body-checkout .container .main .inner .fs-c-checkout-paymentInfo__body .fs-c-checkout-paymentInfo__message p,
body#fs_Checkout.fs-body-checkout .container .main .inner .fs-c-checkout-couponInfo__message,
body#fs_Checkout.fs-body-checkout .container .main .inner .fs-c-checkout-delivery__body h4,
body#fs_Checkout.fs-body-checkout .container .main .inner .fs-c-checkout-delivery__method p,
body#fs_Checkout.fs-body-checkout .container .main .inner .fs-c-checkout-delivery__method dt,
body#fs_Checkout.fs-body-checkout .container .main .inner .fs-c-checkout-delivery__method dd,
body#fs_Checkout.fs-body-checkout .container .main .inner td.fs-c-cartTable__dataCell--product,
body#fs_Checkout.fs-body-checkout .container .main .inner .fs-c-orderTotalTable th,
body#fs_Checkout.fs-body-checkout .container .main .inner .fs-c-orderTotalTable td,
#fs_Checkout .fs-c-checkout-paymentMethodList .fs-c-radio__radioLabelText {
    font-size: 1em;
}

body#fs_CheckoutWithAmazon.fs-body-checkout-amazon main.fs-l-main #fs-orderContents-container,
body#fs_CheckoutWithAmazon.fs-body-checkout-amazon main.fs-l-main .fs-c-checkout-destination,
body#fs_CheckoutWithAmazon.fs-body-checkout-amazon main.fs-l-main .fs-c-checkout-paymentInfo,
body#fs_CheckoutWithAmazon.fs-body-checkout-amazon main.fs-l-main .fs-buyerInfo-container,
body#fs_CheckoutWithAmazon.fs-body-checkout-amazon main.fs-l-main .fs-deliveryInfo-container,
body#fs_CheckoutWithAmazon.fs-body-checkout-amazon main.fs-l-main .fs-c-totalAndActions,
body#fs_CheckoutWithAmazon.fs-body-checkout-amazon main.fs-l-main #fs-buyerInfo-container,
body#fs_CheckoutWithAmazon.fs-body-checkout-amazon main.fs-l-main #fs-deliveryInfo-container {

    margin: 30px 0 0 0;
}


@media screen and (max-width: 1024px) {


    body#fs_Checkout.fs-body-checkout .container .main .inner .fs-c-checkout-buyerInfo,
    body#fs_Checkout.fs-body-checkout .container .main .inner .fs-c-checkout-destination,
    body#fs_Checkout.fs-body-checkout .container .main .inner .fs-c-checkout-paymentInfo,
    body#fs_Checkout.fs-body-checkout .container .main .inner .fs-c-checkout-couponInfo,
    body#fs_Checkout.fs-body-checkout .container .main .inner .fs-c-checkout-deliveryInfo,
    body#fs_Checkout.fs-body-checkout .container .main .inner .fs-c-checkout-orderInfo,
    body#fs_Checkout.fs-body-checkout .container .main .inner .fs-c-totalAndActions {
        padding: 2vw 4vw;
    }

    body#fs_Checkout.fs-body-checkout .container .main .inner .fs-c-cartTable__product {
        display: flex;
        flex-wrap: wrap;
    }

    body#fs_Checkout.fs-body-checkout .container .main .inner .cart02,
    body#fs_CheckoutWithAmazon.fs-body-checkout-amazon main.fs-l-main #fs_orderTotalContainer {
        width: 100%;
    }

    body#fs_Checkout.fs-body-checkout .container .main .inner .fs-c-totalAndActions {
        margin-top: 30px;
    }

    #content .main {
        display: block;
        margin: 0;
        background-color: #fff;
        padding-top: min(3vw, 40px);
        width: 100%;
        margin: auto;
    }

    #content .main .fs-c-buttonContainer {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px 0;
        margin: auto;
    }

}



/********************************************************************************/
/************************　トップページバナー追加　202311　**********************/
/********************************************************************************/

body.fs-body-top #content .main section.content01.bnrs23 {}

body.fs-body-top #content .main section.content01.bnrs23 ul.fe {
    width: 100%;
    justify-content: space-between;
}

.fs-body-top #content .main section.content01 ul.fe li + li,
body.fs-body-top #content .main section.content01.bnrs23 ul.fe:nth-of-type(2) li{margin-top:min(3vw , 25px);}

body.fs-body-top #content .main section.content01.bnrs23 ul.fe:nth-of-type(2) li {
    width: calc(98% / 2);
}

body.fs-body-top #content .main section.content01.bnrs23 ul.fe li img {
    width: 100%;
    height: auto;
}


/********************************************************************************/
/************************　2重価格非表示設定　202312　**********************/
/********************************************************************************/

#content .main .inner div.fs-c-slick .slick-slide .fs-c-productListCarousel__list__item .fs-c-productPrice.fs-c-productPrice--member,
#content .main .inner section.content04 div.rank.fs-c-slick .slick-slide .fs-c-productListCarousel__list__item .fs-c-productPrice.fs-c-productPrice--member {
    display: none;
}





/********************************************************************************/
/************************　カート横ハートボタン非表示　202312　**********************/
/********************************************************************************/

#fs_ProductDetails.fs-body-product #content .fs-l-productLayout__item .fs-c-variationAndActions .fs-c-button--particular.fs-c-button--addToWishList--icon{display: none;}



/**************************************************************************/
/************************　レイアウト調整　202404追記分　**********************/
/**************************************************************************/
/*appearance: auto;へ変更したドロップダウンメニューの矢印表示のため*/
.fs-c-dropdown__menu {
	-webkit-appearance: auto;
	-moz-appearance: none;
	appearance: auto;
	vertical-align: middle;
	background: #ffffff;
	color: #333333;
	width: 100%;
	padding: 4px 8px 4px 8px;
}


div.fs-c-productList__list .productRating .a_toLink {display:none;}
div.fs-c-productList__list .productRating .fs-c-rating {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

div.fs-c-productList__list .productRating .fs-c-rating p{width:100%;}

@media only screen and (max-width:1000px){
.fs-c-reviewStars {
	display: flex;
	justify-content: space-between;
}
div.fs-c-productList__list .productRating .fs-c-rating * {
	font-size: 3.5vw;
}
.fs-c-reviewStars::before {
	font-size: 4vw;
}
.fs-body-category-gaihanbosi main section.oldContent01 .wrapper {
	padding: 7vw 0 5vw;
}
}



/**************************************************************************/
/****************　商品ページ任意商品パーツcss　202405追記分　*************/
/**************************************************************************/

.fs-l-page main.main h4.rankTitle{
	background: #e2ebf8;
	border-top: #6c9bd2 solid 4px;
	padding: min(5vw , 11px) min(4vw , 25px);
	text-align: center;
}

.fs-l-page main.main h4.rankTitle span {
	font-size: min(4.5vw , 27px);
	color: #004fa2;
	font-weight: bold;
	display: inline-block;
	position: relative;
}

.fs-l-page main.main h4.rankTitle + p{
	font-size: min(4vw , 27px);
	width: 90%;
	margin: min(4vw, 40px) auto;
}
	

.fs-l-page main.main div.productRank.fs-c-slick + h4,
.fs-l-page main.main section + h4 {
	margin-top: min(9vw , 100px);
}

.fs-l-page main.main div.productRank.fs-c-slick {
	margin-top: 45px;
	margin: 90px auto 0;
}

.fs-l-page main.main div:not(.ooguchiWrap) div.productRank.fs-c-slick .fs-c-productListCarousel__list .slick-track {
	justify-content: center;
	flex-wrap: wrap;
	margin: auto;
}

.fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item .fs-c-productListItem__productDescription,
.fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item .fs-c-productMarks,
.fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item .fs-c-button--plain,
.fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item button,
.fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item .fs-c-productPrice__main__label,
.fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item .fs-c-productPrice__addon__label,
.fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item .fs-c-productPrice__addon,
.fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item .fs-c-price__currencyMark,
#fs_ProductCategory .fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item .fs-c-productName__copy,
#fs_ProductSearch .fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item .fs-c-productName__copy,
#fs_ProductDetails .fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item .fs-c-productName__copy,
#fs_CustomPage .fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item .fs-c-productName__copy {display: none !important;}

#fs_ProductCategory .fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item .fs-c-price__value,
#fs_ProductDetails .fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item .fs-c-price__value,
#fs_CustomPage .fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item .fs-c-price__value {
	font-size: min(3.5vw , 25px);
	font-weight: bold;
}
	
#fs_ProductCategory .fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item .fs-c-price__value::after,
#fs_ProductDetails .fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item .fs-c-price__value::after,
#fs_CustomPage .fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item .fs-c-price__value::after {
	content: "円(税込)";
	font-size: min(2.5vw , 15px);
	text-align: center;
	color: #004D9D;
	font-weight: 500;
}

#fs_ProductCategory .fs-l-page main.main div.productRank.fs-c-slick .slick-slide,
#fs_ProductDetails .fs-l-page main.main div.productRank.fs-c-slick .slick-slide,
#fs_CustomPage .fs-l-page main.main div.productRank.fs-c-slick .slick-slide {
	float: left;
	height: 100%;
	min-height: 1px;
	width: calc((100vw - 620px) /3);
	margin: 0 10px;
}

#fs_ProductCategory .fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item,
#fs_ProductDetails .fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item,
#fs_CustomPage .fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item {
	flex-basis: 270px;
	min-width: 100%;
	margin: 0;
	padding-bottom: min(15vw , 50px);
	position: relative;
	height: 30vw;
	max-height: 465px;
	max-width: 100%;
}

#fs_ProductCategory .fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item h2.fs-c-productListItem__productName,
#fs_ProductDetails .fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item h2.fs-c-productListItem__productName,
#fs_CustomPage .fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item h2.fs-c-productListItem__productName {
	position: relative;
	padding-left: min(8vw , 55px);
	font-size: min(3.5vw , 23px);
}
#fs_ProductCategory .fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item h2.fs-c-productListItem__productName span,
#fs_ProductDetails .fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item h2.fs-c-productListItem__productName span,
#fs_CustomPage .fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item h2.fs-c-productListItem__productName span {
	font-size: min(3.5vw , 23px);
	color: #1d1d1d;
	line-height: 1.3;
	max-height: 65px;
	overflow: hidden;
}
.fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item h2.fs-c-productListItem__productName span.fs-c-productName__copy{display:none;}
.fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item h2.fs-c-productListItem__productName:before{
	content:"";
	 width:40px; height:60px; background:no-repeat center center / 100%; position:absolute; top:0; bottom:0; left:0;
	}
.fs-l-page main.main div.productRank.fs-c-slick.fs-c-slick .slick-slide:nth-of-type(1) .fs-c-productListCarousel__list__item h2.fs-c-productListItem__productName:before{background-image:url(https://sorbothane.itembox.design/item/img/top/t-icon_rank_01.png);}
.fs-l-page main.main div.productRank.fs-c-slick.fs-c-slick .slick-slide:nth-of-type(2) .fs-c-productListCarousel__list__item h2.fs-c-productListItem__productName:before{background-image:url(https://sorbothane.itembox.design/item/img/top/t-icon_rank_02.png);}
.fs-l-page main.main div.productRank.fs-c-slick.fs-c-slick .slick-slide:nth-of-type(3) .fs-c-productListCarousel__list__item h2.fs-c-productListItem__productName:before{background-image:url(https://sorbothane.itembox.design/item/img/top/t-icon_rank_03.png);}
.fs-l-page main.main div.productRank.fs-c-slick.fs-c-slick .slick-slide:nth-of-type(4) .fs-c-productListCarousel__list__item h2.fs-c-productListItem__productName:before{background-image:url(https://sorbothane.itembox.design/item/img/lower/ooguchi_img_16.png);}

.fs-l-page main.main div.productRank.fs-c-slick.fs-c-slick .slick-slide .fs-c-productPrice {
	color: #004fa2;
	font-size: min(5vw , 30px);
	font-weight: bold;
	position: absolute;
	right: min(1vw , 10px);
	bottom: 0;
}

.fs-l-page main.main div.productRank.fs-c-slick.fs-c-slick .slick-slide img {
	display: block;
	max-width: 330px;
	margin: auto;
	width: 100%;
}


@media only screen and (max-width:1250px){
#fs_ProductCategory .container,
#fs_ProductDetails .container,
#fs_CustomPage .container {
	min-width: 100%;
}
#fs_ProductCategory .fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item,
#fs_ProductDetails .fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item,
#fs_CustomPage .fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item {
	flex-basis: 270px;
	min-width: 100%;
	margin: 0;
	padding-bottom: min(15vw , 50px);
	position: relative;
	height: min(40vw , 465px);
	max-width: 100%;
}
}

@media only screen and (max-width:1000px){
.fs-l-page main.main div.productRank.fs-c-slick {
	margin: 5vw auto 0;
}

#fs_ProductCategory .fs-l-page main.main div:not(.ooguchiWrap) div.productRank.fs-c-slick .fs-c-productListCarousel__list .slick-track,
#fs_ProductDetails .fs-l-page main.main div:not(.ooguchiWrap) div.productRank.fs-c-slick .fs-c-productListCarousel__list .slick-track,
#fs_CustomPage .fs-l-page main.main div:not(.ooguchiWrap) div.productRank.fs-c-slick .fs-c-productListCarousel__list .slick-track {
	justify-content: center;
	flex-wrap: wrap;
}
#fs_ProductCategory .fs-l-page main.main div.productRank.fs-c-slick .slick-slide,
#fs_ProductDetails .fs-l-page main.main div.productRank.fs-c-slick .slick-slide,
#fs_CustomPage .fs-l-page main.main div.productRank.fs-c-slick .slick-slide {
	float: left;
	height: 100%;
	min-height: 1px;
	width: initial;
	margin: 0 1.5vw;
}


.fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list .slick-track .slick-slide:nth-of-type(1) h2 span.fs-c-productName__copy {
	color: #fff;
	text-align: center;
	background-color: #06A1BE;
	padding: 2.5vw 0 2.5vw;
	font-size: 3vw !important;
	letter-spacing: 0.06em;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	display: block;
}

#fs_ProductCategory .fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item,
#fs_ProductDetails .fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item,
#fs_CustomPage .fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item {
	flex-basis: 30vw;
	max-width: 29vw;
	min-width: 28vw;
	margin: 0 1vw;
	padding-bottom: min(15vw , 50px);
	position: relative;
	height: 59vw;
	max-height: 415px;
	padding-top: 0;
}

.fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list .slick-track .slick-slide h2 span.fs-c-productName__copy {
	color: #fff;
	text-align: center;
	background-color: #06A1BE;
	padding: 2vw 0 2vw;
	font-size: 2.5vw !important;
	letter-spacing: -0.1vw;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	display: block;
}
.fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list .slick-track .slick-slide h2 span.fs-c-productName__name {
	text-align: center;
	font-size: 3vw !important;
	font-weight: bold;
	line-height: 4vw;
	margin-top: 0;
	color: #333333;
	padding: 0 20px;
}

#fs_ProductCategory .fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item h2.fs-c-productListItem__productName:before,
#fs_ProductDetails .fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item h2.fs-c-productListItem__productName:before,
#fs_CustomPage .fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item h2.fs-c-productListItem__productName:before {
	content: "";
	width: 7vw;
	height: 12vw;
	background-size:100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
}

#fs_ProductCategory .fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item h2.fs-c-productListItem__productName span,
#fs_ProductDetails .fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item h2.fs-c-productListItem__productName span,
#fs_CustomPage .fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list__item h2.fs-c-productListItem__productName span {
	font-size: min(3.5vw , 23px);
	color: #1d1d1d;
	line-height: 1.3;
	max-height: 19vw;
	overflow: hidden;
	padding: 0;
	text-align: left;
}

.fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list .slick-track .slick-slide .fs-c-productListCarousel__list__item {
	flex-basis: 100%;
	max-width: 100%;
	min-width: initial;
	margin: 0 auto 40px;
	position: relative;
	padding-top: 10vw;
}

.fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list .slick-track .slick-slide .fs-c-productPrice__main__price {
	font-size: 3vw;
	font-weight: bold;
	padding-right: 0;
}

.fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list .slick-track .slick-slide .fs-c-productPrice {
	display: flex;
	justify-content: flex-end;
}

.fs-l-page main.main div.productRank.fs-c-slick .fs-c-productListCarousel__list .slick-track .slick-slide .fs-c-productPrice__addon {
	padding-right: 0;
	font-size: 13px;
	text-align: center;
	color: #004D9D;
	font-weight: 500;
}


}


/********************************************************************/
/**************　会員別コンテンツ調整css　202502追記分　*************/
/********************************************************************/

@media only screen and (max-width:1024px){
.fs-l-page div.menber {
	width: 100%;
	height: 9vw;
}
}
