:root{
  --g:#628D67;           /* 緑 */
  --arc-h: 120px;
  --header-h: 0px;
  --vw: 1vw;
}

.sp-only {
    display: none;
}
.sp-only-flex {
    display: none;
}
.pc-only {
    display: block;
}
.pc-only-flex {
    display: flex;
}
@media screen and (max-width: 767px) {
  .sp-only {
    display: block;
  }
  .sp-only-flex {
    display: flex;
  }
  .pc-only {
    display: none;
  }
  .pc-only-flex {
    display: none;
  }

}

html, body {
  overflow-x: hidden;
  font-family: "Noto Sans", "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.info-banner {
    width: 100%;
    background: #645556;
    color: #fff;
    text-align: center;
    padding: 0.5em;
}

.fs-c-breadcrumb  {
    background: #F8F3EB;
}

.fs-l-header {
    padding-top: 0;
    position: relative;
    z-index: 100;
    background: #fff;
}

.fs-l-header.is-fixed {
    position: fixed;
    top: max(0px, env(safe-area-inset-top));
    left: 0;
    right: 0;
}
#header-spacer { height: 0; }

.fv-section .fs-c-slick .slick-slide {
    width: calc(100 * var(--vw));
}

.fs-c-heading--page {
    border-bottom: none;
    letter-spacing: 0.1em;
    font-size: 3rem;
    margin: 0;
}

  .site-nav {
    position: relative;
    box-shadow: 0px 2px 3px #4C4C4C4C;
    padding: 0 2em;
  }

  .drawer-navigation-list {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .drawer-navigation-list-item {
    background: transparent;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    font-size: 1.5em;
    padding: 14px 8px;
    border-top: 1px solid #4C4C4C;
    border-bottom: 1px solid #4C4C4C;
    margin-top: -1px;
  }

  .drawer-navigation-list-item a {
    color: #4C4C4C;
  }

  .top-nav a, .dd-trigger {
    text-decoration: none;
    color: #3b3b3b;
    /* font-weight: 600; */
  }
  .dd-trigger {
    background: none;
    border: 0;
    padding: 0;
    display: inline-flex;
    gap: .4em;
    align-items: center;
    cursor: pointer;
  }

  /* ========== Dropdown wrapper ========== */
  .dropdown {
    position: absolute;
    left: 225px;                /* ドロップ位置（必要に応じ調整） */
    top: 98%;
    background: #fff;
    display: none;
    border: 1px solid #C6C6C6;
    border-top: 3px solid #645556;
    z-index: 10;
  }
  /* PC: hover / focus で開く */
  .top-item:hover > .dropdown,
  .top-item:focus-within > .dropdown,
  .dropdown:hover,
  .dropdown:focus-within,
  .top-item.open > .dropdown { /* SPでの開閉用 */
    display: flex;
  }

  /* ========== Level 1 (左パネル) ========== */
  .level-1 {
    position: relative;
    width: var(--panel-w);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    background: var(--bg);
    border: var(--border);
    box-shadow: var(--shadow);
  }
  .level-1 > li { position: relative; }
  .level-1 > li > a.item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    text-decoration: none;
    color: #333;
  }
  .level-1 > li > a.item::after {
    content: "›";
    opacity: .6;
    font-size: 18px;
    line-height: 1;
  }
  .level-1 > li:hover > a.item,
  .level-1 > li:focus-within > a.item {
    background: var(--hover);
  }

  /* ========== Level 2 (右パネル) ========== */
  .level-2 {
    position: absolute;
    left: 100%;
    top: -1px; /* 枠線分を合わせる */
    min-width: 130px;
    width: auto;
    /* height: calc(100% + 2px); */
    display: none;
    margin: 0;
    padding: 0;
    border: 1px solid #C6C6C6;
    list-style: none;
    background: #fff;
    /* border: var(--border); */
    box-shadow: var(--shadow);
  }
  .level-1 > li:hover > .level-2,
  .level-1 > li:focus-within > .level-2 {
    display: block;
  }
  .level-2 li a {
    display: block;
    padding: 16px 24px;
    color: #333;
    white-space: nowrap;
    text-decoration: none;
  }
  /* .level-2 li a:hover, .level-2 li a:focus {
    background: var(--hover);
  } */



  .header-right {
    display: flex;
    gap: 2px;
    margin: 0.5em;
  }
  .header-right img {
    width: 25px;
  }

  .search-area {
    padding: 0.2em 2em;
    padding-top: 0.5em;
    display: none;
  }

  .search-area.open {
    display: block;
  }

  .search-area .fs-p-inputGroup {
    border: none;
    background: #ffffff;
    gap: 0.2em;
  }

  .search-area .fs-p-inputGroup__button {
    background: #ffffff;
    width: 35px;
    display: flex;
    align-items: center;
  }

.header-logo {
    margin-right: 2em;
    width: 11rem;
}

.fs-icon--navCtrl:before {
    color: #645556;
}

.fs-p-headerNavigation {
    margin: none;
    max-width: none;
}

.fs-p-headerNavigation__listItem {
    height: 70px;
}

.site-nav-inner {
    display: flex;
}


.bg-sub {
    background: #DACCB14B;
}

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

.fs-l-main {
    max-width: none;
    padding: 8px 0;
}

.fs-l-pageMain {
    margin: 0 auto;
    width: 96%;
    /* width: 100vw;
    max-width: none !important; */
}

.fs-p-drawer {
    display: none;
    z-index: 101;
}

.top-section {
    margin: 5em auto;
}

.top-section-hr {
    box-shadow: 0px 3px 3px #4C4C4C4C;
    max-width: 1024px;
    border: none;
    height: 3px;
    background-color: #FFFDFA;
}

.section-title {
    font-family: "Julius Sans One", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    font-size: 2em;
    margin-bottom: 1em;
}

.top-item-outer {
    margin: 1em auto;
    max-width: 1024px;
}

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

/* .fs-c-productListItem .fs-c-buttonContainer {
    position: absolute;
    top: 0;
    right: 1em;
}
.fs-c-wishList .fs-c-productListItem .fs-c-buttonContainer {
    top: 1em;
} */

.fs-c-productListItem .fs-c-button--addToWishList--icon, 
.fs-c-productListItem .fs-c-button--removeFromWishList--icon {
    position: absolute;
    top: 1em;
    right: 1em;
}

.fs-c-productList__list .fs-c-productListItem .fs-c-button--addToWishList--icon, 
.fs-c-productList__list .fs-c-button--removeFromWishList--icon {
    top: 1.5em;
}

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

.fs-c-button--particular.fs-c-button--addToWishList--icon::before {
    /* color: #fff; */
}

.view-all-btn, .btn-brown {
    background: #645556;
    border-radius: 20px;
    border: none;
    padding: 0.6em 2em;
    color: #fff;
    margin: 0 auto;
}

.fs-pt-column__heading {
    font-size: 2rem;
    font-weight: 500;
}

.fs-pt-column__item {
    text-decoration: none !important;
    color: #4C4C4C;
}

.arrow-btn:after {
    content: '';
    display: inline-block;
    width: 1.5em;
    height: 0.8em;
    margin-left: 1em;
    margin-bottom: 0.4em;
    background-image: url("https://meettreegolf.itembox.design/item/arrow.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    vertical-align: middle;
}

.follow-us-btn:after {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-left: 1em;
    background-image: url("https://meettreegolf.itembox.design/item/link.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    vertical-align: middle;
}

.fs-pt-column {
    max-width: 1216px;
    margin: 1em auto;
}

.news-section {
    padding: 4em 2em;
}

.news-date {
    font-weight: normal;
    font-size: 0.8em;
}

.fs-pt-column__item {
    height: 100%;
}

.fs-pt-column__description {
    display: flex;
    flex-flow: column;
}

.fs-pt-column__description .news-text {
    margin-bottom: 2em;
}
.fs-pt-column__description .view-more-img {
    margin-top: auto;
    width: 120px;
    transform: scale(1);
    transition: transform 0.3s;
}
.fs-pt-column__description .view-more-img.active {
    transform: scale(1.2);
}

.fs-c-button--carousel {
    border: 1px solid #645556;
    border-radius: 50px;
    width: 100%;
    min-height: unset;
    aspect-ratio: 1 / 1;
}
.fs-c-button--carousel::before {
    content: "";
    border-right: 1px solid #645556;
    border-bottom: 1px solid #645556;
    width: 15px;
    height: 15px;
    position: absolute;
}
.fs-c-button--carousel--prev::before {
    transform: rotate(135deg);
    left: 40%;
}
.fs-c-button--carousel--next::before {
    transform: rotate(-45deg);
    right: 40%;
}

.fs-c-productListCarousel {
    margin-left: 1em !important;
    margin-right: 1em !important;
}

.fs-c-productListCarousel__list .fs-c-productName__copy {
    display: none;
}
.fs-c-productListCarousel__list .fs-c-productListItem__productName {
    text-align: center;
}
.fs-c-productListCarousel__list .fs-c-productPrice {
    justify-content: center
}
.fs-c-productList__list .fs-c-button--particular.fs-c-button--addToWishList--icon::before {
    color: #fff;
}
.fs-c-productListCarousel__list .fs-c-button--particular.fs-c-button--addToWishList--icon::before {
    color: #fff;
}
.fs-c-productList__list .fs-c-productListItem__productName a,
.fs-c-productListCarousel__list .fs-c-productListItem__productName a {
    color: #4C4C4C !important;
}
.fs-c-productListItem__image__image {
    aspect-ratio: 12 / 15;
    object-fit: cover;
    margin: 0 auto;
}
.ranking-list .fs-c-productListItem__image__image {
    border-radius: 30px;
    aspect-ratio: 12 / 15;
    object-fit: cover;
}
.ranking-list .fs-c-productListItem__image {
    position: relative;
}
.ranking-list .fs-c-productListItem__image:before {
    font-family: "Julius Sans One", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    font-size: 18px;
    line-height: 28px;
    position: absolute;
    top: 14px;
    left: 14px;
    width: 28px;
    height: 28px;
    border-radius: 20px;
    background: #fff;
}


.fs-l-footer {
  position:relative;
  background:var(--g);
  color:#fff;
  padding:0 4em;
  margin-top: 120px;
  border-top: none;
}

.fs-l-footer:before {
  content:"";
  position:absolute;
  left:-30vw;
  right:-30vw;
  top: calc(-0.8 * var(--arc-h));          /* 画面上へ持ち上げる */
  height: calc(var(--arc-h)*2 + 1px);  /* +1pxで段差防止 */
  background:var(--g);
  border-top-left-radius:80% 100%;
  border-top-right-radius:80% 100%;
  pointer-events:none;
  z-index: -1;
}

.footer-head {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    margin-bottom: 2em;
    max-width: 1216px;
}

.footer-head-left img {
    height: 60px;
}

.footer-head-right img {
    height: 80px;
}

.fs-l-footer__contents {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fs-l-footer__contents .fs-l-footer__utility {
    display: none;
}

.footer-link {
    margin: 1em 0;
}

.fs-p-footerCopyright {
    background: var(--g);
}

.footer-sns {
    display: flex;
    gap: 1em;
    margin: 0 auto;
    margin-top: 2em;
    max-width: 1216px;
}

.footer-menu {
    display: flex;
    gap: 2em;
    justify-content: center;
    width: 100%;
    margin-bottom: 1.5em;
}

.istagram-column {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1em;
}
.instagram-img-column img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}


/*
 * 商品一覧
 */
.product-search {
    width: 200px;
    padding: 1em;
}

.fs-c-productList {
    width: calc(100% - 200px);
    margin: 0 2em;
}

.fs-c-sortItems__label {
    border: none;
}

.search-block {
    border-bottom: 1px solid #D1D1D1;
}
.search-block-head, .search-block-head-sp {
    font-size: 1.2em;
    padding: 0.5em 0;
    position: relative;
    cursor: pointer;
}
.search-block-head:after,
.search-block-head-sp:after {
    content: "";
    position: absolute;
    top: 0.9em;
    right: 0.8em;
    width: 0.4em;
    height: 0.4em;
    transform: rotate(-45deg);
    border-bottom: 1px solid #4C4C4C;
    border-left: 1px solid #4C4C4C;
}
.search-block-head.open:after,
.search-block-head-sp.open:after {
    top: 1.1em;
    transform: rotate(135deg);
}
.search-block-body {
    overflow-y: hidden;
    max-height: 0;
}
.search-block-body.open {
    max-height: none;
}
.search-block-body > div {
    padding: 0.5em 0;
}

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


.fs-c-sortItems {
    position: relative;
    z-index: 2;
    display: block;
    margin: 0 0 0 auto;
    width: 100px;
}

.fs-c-sortItems .fs-c-sortItems__label {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
    text-align: center;
    cursor: pointer;
    -webkit-justify-content: center;
    justify-content: center;
}

.fs-c-productList__controller .item-search-btn::before {
    content: '';
    display: inline-block;
    margin: 0 6px 0 0;
    width: 18px;
    height: 18px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzUiIGhlaWdodD0iMzUiIHZpZXdCb3g9IjAgMCAzNSAzNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIzLjMzMzMgMTQuNTgzM0MyNS4zNDY5IDE0LjU4MzMgMjYuOTc5MiAxMi45NTEgMjYuOTc5MiAxMC45Mzc1QzI2Ljk3OTIgOC45MjM5NSAyNS4zNDY5IDcuMjkxNjYgMjMuMzMzMyA3LjI5MTY2QzIxLjMxOTggNy4yOTE2NiAxOS42ODc1IDguOTIzOTUgMTkuNjg3NSAxMC45Mzc1QzE5LjY4NzUgMTIuOTUxIDIxLjMxOTggMTQuNTgzMyAyMy4zMzMzIDE0LjU4MzNaIiBzdHJva2U9IiM2NDU1NTYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0xLjQ1ODAxIDEwLjkzNzVIMTQuNTgzIiBzdHJva2U9IiM2NDU1NTYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0yNy4zNDM4IDEwLjkzNzVIMzMuNTQxNyIgc3Ryb2tlPSIjNjQ1NTU2IiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNMS40NTgwMSAyNC4wNjI1SDguMDIwNTEiIHN0cm9rZT0iIzY0NTU1NiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTExLjY2NjMgMjcuNzA4M0MxMy42Nzk5IDI3LjcwODMgMTUuMzEyMiAyNi4wNzYgMTUuMzEyMiAyNC4wNjI1QzE1LjMxMjIgMjIuMDQ5IDEzLjY3OTkgMjAuNDE2NyAxMS42NjYzIDIwLjQxNjdDOS42NTI4IDIwLjQxNjcgOC4wMjA1MSAyMi4wNDkgOC4wMjA1MSAyNC4wNjI1QzguMDIwNTEgMjYuMDc2IDkuNjUyOCAyNy43MDgzIDExLjY2NjMgMjcuNzA4M1oiIHN0cm9rZT0iIzY0NTU1NiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTE5LjY4NzUgMjQuMDYyNUgzMy41NDE3IiBzdHJva2U9IiM2NDU1NTYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPg==);
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: 50% 50%;
}

.fs-c-sortItems .fs-c-sortItems__label:after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-bottom: 1px solid #4C4C4C;
    border-right: 1px solid #4C4C4C;
    transform: rotate(45deg);
    position: absolute;
    right: -10px;
    top: 6px;
}

.fs-c-sortItems .fs-c-sortItems__list {
    display: none;
    position: absolute;
    top: 45px;
    left: 0;
    transition: ease .3s;
    padding: 10px 0;
    width: 130px;
    background: #fff;
    color: #4C4C4C;
    border-radius: 5px;
    border: none;
    box-shadow: 0px 5px 5px #4C4C4C4C;
}


.fs-c-sortItems .fs-c-sortItems__list.open {
    display: block;
}

.fs-c-productList__controller {
    justify-content: flex-end;
}
.fs-c-productList__controller .fs-c-sortItems {
    margin: 0;
}
.fs-c-productList__controller .fs-c-listControl {
    width: 100%;
}

.fs-c-subgroup .fs-c-listControl {
    display: none;
}

.fs-c-productPrice:not(.fs-c-productPrice--listed) .fs-c-productPrice__main__price {
    color: #3c3c3c;
    font-size: 1em;
}

.fs-c-productList__list__item .fs-c-productPrice {
    justify-content: center;
}

.fs-c-subgroupList__item {
    margin: 1em;
    border: 1px solid #D1D1D1;
}

.fs-c-subgroupList__item .fs-c-subgroupList__link {
    background: none;
    border: none;
    padding: 1em;
}

#currentSearchParamArea {
    display: flex;
    gap: 1em;
    
}

.current-search-param {
    border: 1px solid #D1D1D1;
    padding: 1em;
    display: flex;
    align-items: center;
    gap: 0.8em;
    cursor: pointer;
}
.current-search-param:before {
    content: "";
    display: block;
    background-image: url("https://meettreegolf.itembox.design/item/x.svg");
    width: 1.5em;
    height: 1.5em;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    vertical-align: middle;
}

/*
 * 商品一覧
 */


/*
 * 商品詳細
 */

.fs-l-product2 .fs-l-productLayout {
    grid-template-columns: calc(55% - 16px / 2) calc(45% - 16px / 2);
}

.fs-l-product2 .fs-l-productLayout {
    margin: 1em 2em;
    margin-bottom: 4em;
    grid-template-columns: 450px 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas:
        "one two"
        "three two";
    gap: 4em;
}
.fs-l-product2 .fs-l-productLayout > div:nth-of-type(1) {
    grid-area: one;
}
.fs-l-product2 .fs-l-productLayout > div:nth-of-type(2) {
    grid-area: two;
}
.fs-l-product2 .fs-l-productLayout > div:nth-of-type(3) {
    grid-area: three;
}

.item-tag {
    display: flex;
    flex-flow: wrap;
    gap: 5px;
}
.item-tag span {
    background: #628E67;
    color: #ffffff;
    border-radius: 15px;
    padding: 0.5em 2em;
    font-size: 0.8em;
    white-space: nowrap;
}

.item-tag span:empty {
    display: none;
}

.item-section {
    padding: 3em 0;
}

.fs-c-productNameHeading {
    font-size: 2em;
    letter-spacing: 0.1em;
    font-weight: 400;
}

.fs-c-price {
    color: #3c3c3c;
    font-size: 1.4em;
}
.fs-c-productPrices--productDetail .fs-c-productPrice:not(.fs-c-productPrice--listed) .fs-c-productPrice__main__price {
    color: #3c3c3c;
    font-size: 1.4em;
}

.fs-c-price .fs-c-price__value {
    margin: 0 0.5em;
}

.fs-c-variationList__item__title {
    background: none;
    border-bottom: 1px solid #D1D1D1;
    font-weight: 400;
    margin: 1em 0;
}

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

.fs-c-variationCart__variationName__name {
    font-weight: 400;
}

.fs-c-variationList__item__body {
    margin: 0 1em;
}

.fs-c-variationCart--withImage > li {
    grid-template-columns: auto 1fr 154px 2em;
    margin: 1em 0;
    gap: 0.5em;
}

.fs-c-variationCart--withImage > li .fs-c-variationCart__variationName {
    order: 1;
}
.fs-c-variationCart--withImage > li .fs-c-variationCart__cartButton {
    order: 2;
}
.fs-c-variationCart--withImage > li .fs-c-variationCart__wishlist {
    order: 3;
}

.fs-c-variationCart--withImage > li .fs-c-variationCart__cartButton .fs-c-button--primary.fs-c-button--addToCart--variation {
    position: relative;
    padding-left: 3em;
}
.fs-c-variationCart--withImage > li .fs-c-variationCart__cartButton .fs-c-button--primary.fs-c-button--addToCart--variation::before {
    content: "";
    position: absolute;
    left: 1.5em;
    top: 0.5em;
    width: 1.5em;
    height: 1.5em;
    background-image: url("https://meettreegolf.itembox.design/item/cart_w.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    vertical-align: middle;
}
.fs-c-variationCart--withImage > li .fs-c-variationCart__wishlist .fs-c-button--particular.fs-c-button--addToWishList--icon::before {
    font-size: 2em;
}
 

.fs-p-productDescription--full {
    margin: 2em 1em;
}

.item-info-label {
    font-size: 1.2em;
    letter-spacing: 0.05em;
    margin: 0 1em;
    margin-top: 3em;
}

.item-info-hr {
    background-color:#D1D1D1;
    height: 1px;
    border: none;
}

.item-table-outer {
    margin: 2em 1em;
}

.item-table-outer th {
    font-weight: 400;
    text-align: center;
}

.custom-hr {
    width: 90%;
    margin: 0 auto;
    border: 1px solid #FFFDFA;
    box-shadow: 0px 2px 3px #4C4C4C4C;

}

.fs-c-returnedSpecialContract__link a {
    color: #4C4C4C;
}
.fs-c-productReview__addReview .fs-c-button--plain, .fs-c-button--inquiryAboutProduct .fs-c-button__label {
    color: #4C4C4C;
}
.fs-c-cartTable__message {
    color: #fff;
}

.fs-c-history__total .fs-c-price {
    font-size: 1em;
}
.fs-c-history__total .fs-c-price .fs-c-price__value {
    margin: 0;
}

@media screen and (min-width: 768px) {
    .fs-c-slick.slick-initialized .slick-slide {
        width: 450px;
    }
}

.fs-c-slick.slick-initialized .slick-slide img {
    width: 100%;
    height: auto;
}

.fs-c-productCarouselMainImage__thumbnailList {
    flex-wrap: wrap;
    overflow-x: auto;
}

/*
 * 商品詳細
 */



@media screen and (max-width: 767px) {
    .site-nav {
        padding: 0 0.5em;
    }

    .fs-l-pageMain {
        max-width: 90vw;
    }

    .header-logo {
        margin: 0;
        padding: 5px;
    }

    .site-nav-inner {
        width: 105px;
    }
    .header-right  {
        gap: 0px;
        margin: 0;
    }

    .istagram-column {
        grid-template-columns: 1fr;
    }
    
    .fs-p-headerNavigation__link {
        padding: 5px;
    }

    .fs-p-drawer {
        display: block;
        width: 100%;
    }

    .dropdown {
        position: unset;
        border: none;
    }
    .level-2 {
        position: unset;
        border: none;
        padding-left: 24px;
    }

    .product-search-sp {
        width: 100%;
    }

    .news-section {
        padding: 3em 1em;
    }

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

    .fs-pt-column__description .news-text {
        margin-bottom: 1em;
    }

    #currentSearchParamArea {
        margin: 0.5em;
    }

    .fs-c-productList {
        width: 100%; 
        padding: 0 0.5em;
    }

    .fs-c-productList__list {
        grid-template-columns: 1fr 1fr;
    }

    .fs-c-heading--page {
        margin-bottom: 0;
    }

    .fs-c-subgroup, .fs-c-subgroupList {
        margin: 0;
    }
    
    .fs-c-productList {
        margin: 0;
        padding: 0;
    }
    .fs-c-productList__controller {
        margin: 0;
    }
    .item-search-btn, .fs-c-sortItems {
        width: 50%;
        border: none;
        background: #F8F3EB;
        margin: 0;
        padding: 0.8em;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .item-search-btn {
        border-right: 0.5px solid #D1D1D1;
    }
    .fs-c-sortItems {
        border-left: 0.5px solid #D1D1D1;
        margin-left: -1px !important;
    }

    .search-close-outer {
        display: flex;
        justify-content: flex-end;
        margin-bottom: 1em;
    }

    .search-close {
        width: 2.5em;
        height: 2.5em;
    }
    .search-close::before {
        font-size: 2.5em;
    }

    .product-search {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        z-index: 1000;
        overflow-y: auto;
    }

    .product-search.open {
        display: block;
    }


    .fs-l-footer {
        padding: 0 2em;
    }

    .footer-head-left img {
        height: 56px;
    }

    .footer-head-right img {
        height: 52px;
    }

    .fs-l-footer__contents {
        flex-flow: column;
        align-items: start;
    }

    .fs-l-footer__utility {
        display: none;
    }
    .fs-l-footer__contents .fs-l-footer__utility {
        display: flex;
        margin: 24px 0;
    }

    .footer-menu {
        flex-flow: column;
        gap: 1em;
    }


    .fs-l-product2 .fs-l-productLayout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "one"
            "two"
            "three";

    }

    .fs-c-variationList__item__body {
        margin: 0;
    }
    .fs-c-variationCart--withImage > li {
        gap: 0.1em;
    }

    .fs-c-button--carousel::before {
        width: 10px;
        height: 10px;
    }
}