/* ========================================
   リセット・ベーススタイル
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: normal;
}

html {
    overflow-x: hidden;
    scroll-padding: 72px;
}

body {
    background-color: #F8F2DF;
    color: #4D2500;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Sans", "ヒラギノ角ゴシック", sans-serif;
}

p {
    margin: 0 !important;
    font-size: 16px;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:visited {
    color: inherit !important;
}

/* ========================================
   CSS変数（フォントサイズ）
   ======================================== */

:root {
    --titleText: 25px;
    --subTitleText: 20px;
    --mainText: 16px;
    --asideText: 14px;
}

@media screen and (min-width: 768px) {
    :root {
        --titleText: 28px;
        --subTitleText: 24px;
        --mainText: 18px;
        --asideText: 15px;
    }
}

/* ========================================
   汎用クラス
   ======================================== */

.relative {
    position: relative;
}

.absolute {
    transform: translate(-50%, -50%);
    position: absolute;
}

.flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.flexItem {
    width: 40%;
    text-align: left;
    padding: 1vw 0 1vw 2vw;
}

.brown {
    color: #4E2501;
}

.orange {
    color: #FF6600;
}

.pcVisible {
    display: none;
}

.spVisible {
    display: block;
}

.marginTop {
    margin-top: 15px;
}

@media screen and (min-width: 768px) {
    .pcVisible {
        display: block;
    }

    .spVisible {
        display: none !important;
    }
}

/* ========================================
   ヘッダー
   ======================================== */

.fs-l-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background-color: #F8F2DF;
}

/* ========================================
   パンくずリスト
   ======================================== */

.fs-c-breadcrumb {
    color: #717171;
    font-size: 12px;
    padding: 4px 0;
}

.fs-c-breadcrumb__list {
    border-bottom: 0 !important;
    text-align: left;
    width: 100%;
    max-width: 1200px;
    padding: 5px 0;
    font-size: 14px;
}

/* ========================================
   商品マーク・アイコン
   ======================================== */

.fs-c-productMark__mark {
    font-size: 12px;
    font-weight: 600;
    padding: 2px 6px;
}

.mark-freeshipping {
    color: white;
    background-color: #D90000;
}

.mark-reitou,
.mark-reizou,
.mark-jouon {
    color: white;
    letter-spacing: 0.10em;
}

.mark-reitou {
    background-color: #016BB9;
}

.mark-reizou {
    background-color: #10A4DC;
}

.mark-mail {
    color: #4D2500;
    background-color: #FDD96C;
}

.mark-jouon {
    background-color: #FF6600;
}

/* ========================================
   カテゴリページ
   ======================================== */

/* ヒーローイメージ */
.heroIMG {
    margin: 0px auto 0;
    margin-inline: calc(50% - 50vw);
    text-align: center;
}

@media screen and (max-width: 768px) {
    .heroIMG {
        padding: 0 13px;
        background-color: inherit;
    }
}

.bannerCont {
    margin: 20px auto;
}

/* ジャンルから探す */
#containerGenre {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 30px;
    border-bottom: lightgray 2px solid;
    margin: 0 auto;
}

.GenreItem {
    width: calc(100% / 5);
    padding: 0 5px;
    margin: 10px 0;
}

.simplebar-track.simplebar-horizontal,
.simplebar-scrollbar {
    opacity: 0;
}

@media screen and (max-width: 767px) {
    #containerGenre {
        display: flex;
        justify-content: center;
        overflow: auto;
    }

    .GenreItem {
        width: clamp(170px, 45vw, 200px);
    }

    .simplebar-track.simplebar-horizontal {
        height: 60px;
        background: #B5B5B5;
        border-radius: 5px;
        max-width: 372px;
        margin: 0 auto;
        opacity: 1 !important;
    }

    .simplebar-scrollbar {
        height: 60px;
        background: #41485B;
        border-radius: 5px;
        top: 0;
        opacity: 1 !important;
    }
}

/* カテゴリーコメントレイアウト */
.categoryComment1 {
    margin: 16px 0;
}

/* ========================================
   セクション見出し・トピック
   ======================================== */

.iconAllFlex {
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.iconPartFlex {
    width: 100%;
    justify-content: center;
}

.iconAllFlex,
.iconPartFlex {
    display: flex;
    align-items: center;
    font-weight: bold;
}

.SectionTitle {
    letter-spacing: 0.1em;
    font-size: var(--titleText);
    font-weight: bold;
}

.EngSectionTitle {
    letter-spacing: 0.1em;
    font-size: var(--mainText);
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    .iconAllFlex {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .iconPartFlex {
        width: auto;
    }

    .EngSectionTitle {
        margin-left: 10px !important;
    }
}

/* ========================================
   ページ見出し
   ======================================== */

.fs-c-heading--page {
    border-bottom: none;
    color: #4E2501;
    font-weight: bold;
    margin: 48px 0;
    padding: 0;
}

@media screen and (min-width: 768px) {
    .fs-c-heading--page {
        margin: 40px 0 -10px;
        font-size: 34px;
        padding: 0 0 1.2em !important;
    }
}

/* ========================================
   レイアウト・セクション
   ======================================== */

.SectionFrame {
    margin-top: 35px;
    padding: 0 13px;
    width: 100%;
}

.SectionFrame2 {
    margin-top: 45px;
    padding: 0 13px;
    width: 100%;
}

.topicIcon {
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}

.fs-l-main {
    padding: 0 13px;
    margin: 0 auto;
}

@media screen and (min-width: 768px) {
    .fs-l-main {
        padding: 0;
    }
}

.fs-c-buttonContainer {
    padding: 0;
}

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

/* ========================================
   スライダー（slick）
   ======================================== */

.fs-c-slick .slick-dots {
    padding: 9px;
}

.fs-c-slick .slick-dots li button:before {
    font-size: 20px !important;
    width: 16px;
    height: 16px;
}

.fs-c-slick .slick-dots li.slick-active button:before {
    color: #FF6600;
}

.slick-dots li {
    width: 17px !important;
}

/* カルーセルボタン */
.fs-c-slick .slick-prev,
.fs-c-slick .slick-next {
    border-radius: 50%;
    height: 35px;
    width: 39px;
    background: none;
}

.fs-c-slick .slick-prev:before,
.fs-c-slick .slick-next:before {
    color: #4E2501;
    font-size: 35px;
    opacity: initial;
}

@media screen and (min-width: 768px) {
    .fs-c-slick .slick-prev,
    .fs-c-slick .slick-next {
        height: 44px;
        width: 44px;
    }

    .fs-c-slick .slick-prev:before,
    .fs-c-slick .slick-next:before {
        font-size: 40px;
    }

    .fs-p-cartItemNumber {
        top: 6px;
    }
}

/* ========================================
   商品一覧
   ======================================== */

.fs-c-productName__name {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    font-weight: 600;
    margin: 4px 0;
}

.fs-c-productName__copy {
    font-size: 11px;
}

@media screen and (min-width: 960px) {
    .fs-c-productName__name {
        font-size: 16px;
    }

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

/* 商品価格 */
.fs-c-productPrice--selling .fs-c-productPrice__main__price,
.fs-c-productPrice__main .fs-c-productPrice__main__price {
    color: #4E2501 !important;
    font-weight: bold;
}

.fs-c-productPrice--member .fs-c-productPrice__main__price,
.fs-c-priceDisplay .fs-c-productPrice__main__price {
    color: #D90000 !important;
    font-weight: bold;
}

.fs-c-productPrice:not(.fs-c-productPrice--listed),
.fs-c-productPrice--member .fs-c-productPrice__main__price,
.fs-c-priceDisplay .fs-c-productPrice__main__price,
.fs-c-productPrice__main .fs-c-productPrice__main__price {
    font-size: var(--mainText);
}

.fs-c-productPrice__main__label {
    font-size: var(--asideText);
}

.fs-c-productPrice__addon:where(:not([class*="--listed"])),
.fs-c-productPrice__main__addon:where(:not([class*="--listed"])) {
    line-height: inherit;
}

.fs-c-productPrice__addon,
.fs-c-productPrice__main__addon {
    font-size: 10px;
}

.fs-c-productListItem__viewMoreImageButton {
    position: relative;
}

.fs-c-button--viewMoreImage {
    position: absolute;
    top: -29px;
    right: 4%;
    background-color: #fff;
    line-height: 0;
    border-radius: 20px;
    transform: scale(1.2);
}

.fs-c-productList__list__item {
    border-bottom: none;
}

.fs-c-productListItem__control.fs-c-buttonContainer {
    display: none;
}

/* 検索・ソート */
.fs-p-productSearch__formOpen,
.fs-p-productSearch__formClose,
.fs-p-productSearch__parameter,
.fs-c-sortItems,
.fs-c-listControl {
    font-size: var(--mainText);
}

.fs-c-sortItems__label {
    text-wrap: nowrap;
    padding: 4px 10px 4px 4px;
}

@media screen and (max-width: 768px) {
    .fs-c-accountService {
        justify-content: space-evenly !important;
    }
}

.fs-c-wishlistProduct {
    margin-top: clamp(10px, 2vw, 20px);
}

/* ========================================
   商品ページ
   ======================================== */

.hero-banner-wrap {
    max-width: 960px;
    margin: 0 auto;
}

.fs-c-productCarouselMainImage__expandButton.fs-c-buttonContainer {
    display: none;
}

.fs-c-productCarouselMainImage__thumbnailList > li {
    margin: 0 4px 0 0;
}

.fs-c-productNameHeading {
    font-size: initial;
}

.fs-c-productNameHeading__copy {
    color: #717171;
    font-size: 14px;
    font-weight: initial;
}

.fs-c-productNameHeading__name {
    font-size: 16px !important;
    font-weight: 600;
    display: block;
    margin: 8px 0;
}

.fs-c-productMembersLoginLink {
    display: none;
}

/* 数量・カートボタン */
.fs-c-quantity {
    display: flex !important;
    align-items: baseline !important;
    font-size: var(--mainText);
}

.fs-system-quantity-list {
    padding: 10px 5px;
}

.fs-c-button--particular {
    background: #F8F2DF;
    border: 2px solid #C29162;
    border-radius: 7px;
    color: #4E2501;
    font-weight: 600;
    width: 100%;
    padding: 7px 0;
    justify-content: center;
}

.fs-c-button--particular.fs-c-button--addToWishList--detail::after {
    color: #D90000;
}

.fs-c-productQuantityAndWishlist {
    justify-content: center;
}

.fs-c-button--addToCart--detail {
    background-color: #D90000;
    color: #fff;
}

.fs-p-scrollingCartButton__button {
    display: none;
}

.fs-c-button--addToWishList--icon,
.fs-c-button--removeFromWishList--icon {
    width: inherit !important;
}

.fs-c-button--particular.fs-c-button--removeFromWishList--detail::after {
    content: "\e91a";
    color: #D90000;
}

/* 在庫なし */
.fs-c-productNotice--outOfStock {
    margin-top: 16px;
}

/* レビュー */
.fs-c-productReview {
    margin: 32px auto;
}

/* 検索バー */
.fs-p-inputGroup {
    background: #C29162;
    border: 1px solid #C29162;
}

.fs-p-inputGroup__button {
    background: #C29162;
}

/* カート */
.fs-p-cartItemNumber {
    right: 10px;
}

/* ========================================
   共通リンクボタン
   ======================================== */

.linkFrame {
    text-align: center;
    font-size: var(--mainText);
}

.CommonLink {
    width: fit-content;
    padding: clamp(4px, 2.5vw, 20px) clamp(60px, 17vw, 120px) clamp(4px, 2.5vw, 20px) clamp(50px, 15vw, 110px);
    background-color: #4E2501;
    color: #F8F2DF;
    border-radius: 10px;
    position: relative;
    text-align: center;
    display: inline-block;
}

.CommonLink:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-top: solid 2px #F8F2DF;
    border-right: solid 2px #F8F2DF;
    transform: translateY(-50%) rotate(45deg);
    top: 50%;
    margin-left: 2vw;
}

/* ========================================
   PC専用レイアウト
   ======================================== */

@media screen and (min-width: 768px) {
    body {
        font-weight: 400;
    }

    .topicIcon {
        margin: inherit;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }

    .iconMmargin {
        margin-left: 1.2vw;
    }

    .SectionFrame {
        margin-top: 100px;
        padding: 0;
    }

    .SectionFrame2 {
        margin-top: 100px;
        padding: 7px 0;
    }

    main {
        padding: 0 13px 30px;
    }
}

@media screen and (min-width: 960px) {
    html {
        scroll-padding: 120px;
    }
}

/* ========================================
   コラム（forColumn）
   ======================================== */

.forColumn {
    font-weight: initial;
    margin: 0 auto 48px;
    max-width: 1080px;
}

.forColumn p {
    margin: 0 auto 32px !important;
}

.forColumn ul,
.forColumn ol {
    margin: 0 auto 32px !important;
}

.forColumn .breadcrumbs {
    font-size: 12px;
    margin-top: 16px;
}

.forColumn .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

.forColumn .breadcrumbs li::after {
    content: ">";
    margin: 0 8px;
}

.forColumn .breadcrumbs li:last-child::after {
    display: none;
}

.forColumn h1 {
    font-size: 24px;
    font-weight: 600;
    margin: 24px 0;
}

@media screen and (min-width: 960px) {
    .forColumn h1 {
        font-size: 40px;
        margin: 32px 0;
    }
}

.forColumn img {
    display: block;
    margin: 0 auto 32px;
    max-width: 960px;
    width: 100%;
}

.forColumn nav {
    background-color: #ffffff;
    border: 1px solid #c29162;
    border-radius: 4px;
    font-size: 16px;
    margin-bottom: 48px;
    padding: 16px;
}

.forColumn nav p {
    border-bottom: 1px solid #c29162;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px !important;
    padding-bottom: 16px;
}

.forColumn nav ol {
    list-style-position: inside;
}

.forColumn nav li {
    margin-bottom: 8px;
}

.forColumn nav li:last-child {
    margin-bottom: 0;
}

.forColumn section {
    font-size: 16px;
    margin: 32px 0 48px;
}

.forColumn section ul {
    list-style-position: inside;
    list-style-type: disc;
}

.forColumn section ul.fs-c-productMark {
    list-style: none;
}

.forColumn section ol {
    list-style-position: inside;
}

.forColumn section:last-child {
    margin-bottom: 0;
}

.forColumn section h2 {
    border-top: 2px solid #c29162;
    border-bottom: 2px solid #c29162;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    padding: 16px 0;
}

.forColumn section h3 {
    border-bottom: 1px solid #c29162;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
    padding-bottom: 8px;
}

.forColumn table {
    background-color: #ffffff;
    border: 1px solid #c29162;
    border-collapse: collapse;
    font-size: 12px;
    font-weight: normal;
    margin: 24px 0;
    max-width: 720px;
    width: 100%;
}

.forColumn th {
    background-color: #c29162;
}

.forColumn tr,
.forColumn td {
    border: 1px solid #c29162;
}

.forColumn th,
.forColumn td {
    padding: 8px;
}

.forColumn .relatedArticle a {
    color: #3572b0;
    text-decoration: underline;
}

.forColumn .btn {
    margin-top: 16px;
    text-align: center;
}

.forColumn .btn a {
    align-items: center;
    background-color: #4d2500;
    border-radius: 32px;
    color: #fff !important;
    font-size: 14px;
    display: inline-flex;
    gap: 4px;
    padding: 8px 48px;
    position: relative;
}

.forColumn .btn a::after {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    content: '';
    display: block;
    height: 8px;
    transform: rotate(45deg);
    width: 8px;
}

/* ========================================
   よくある質問（FAQ）
   ======================================== */

.faq {
    background-color: #fff;
    border: 1px solid #4e2501;
    margin-bottom: 16px;
    padding: 16px;
    transition: box-shadow 0.2s ease;
}

.faq h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

.faq details {
    margin-bottom: 8px;
}

.faq summary {
    align-items: center;
    background-color: #4e2501;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 16px;
    justify-content: space-between;
    list-style: none;
    padding: 16px;
}

.faq summary::after {
    content: "＋";
    font-weight: bold;
    transition: transform 0.2s ease;
}

.faq details[open] summary::after {
    content: "－";
    transform: rotate(180deg);
}

.faq p {
    animation: fadeIn 0.2s ease;
    border: 1px solid #4e2501;
    font-size: 16px;
    padding: 16px !important;
}

/* ========================================
   ブラックフライデー
   ======================================== */

.black-friday {
    padding: 32px 0;
    text-align: center;
}

@media screen and (min-width: 960px) {
    .black-friday {
        padding: 32px 128px;
    }
}

.black-friday .fs-c-button--carousel {
    display: none;
}

.black-friday .fs-c-productListCarousel {
    display: block;
}

.black-friday .fs-c-productListCarousel__list__item {
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.black-friday .fs-c-productListItem__productName {
    margin: 8px;
}

.black-friday .fs-c-productName__name {
    font-size: 14px;
    text-align: left;
}

.black-friday .fs-c-productListItem__prices.fs-c-productPrices {
    margin: 8px;
}

.black-friday .fs-c-productPrice {
    justify-content: flex-end;
}

.black-friday .fs-c-productPrice__main__label {
    font-size: 10px;
}

.black-friday .fs-c-productPrice__main__price .fs-c-price {
    font-size: 12px;
}

.black-friday .fs-c-productPrice__addon {
    display: none;
}

.black-friday .fs-c-productName__copy {
    display: none;
}

.black-friday .fs-c-buttonContainer {
    display: none;
}
