@charset "utf-8";

/* header */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 3.5%;
  z-index: 40;
  transition: backdrop-filter 0.5s ease-in-out;
  will-change: backdrop-filter;
}

.js-sticky .header {
  backdrop-filter: blur(10px);
}

.header::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right, #eaf5fc, #f5fdff, #f5feff, #eaf5fc);
  opacity: 0;
  content: '';
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
}

.js-sticky .header::before {
  opacity: 0.3;
}

.fs-body-top .header-bg {
  display: none;
}

.header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 320px;
  pointer-events: none;
  z-index: -10;
  overflow: hidden;
}

.header-bg-pic {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: max(100%, 1400px);
  translate: -50% 0;
}

.header-bg-pic img {
  width: 100%;
}

.header-logo {
  width: 100px;
}

.header-logo img {
  width: 100%;
}

.header-nav {
  display: none;
}

.header-menu {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0 18px;
  margin-right: 50px;
}

.header-menu-item {
  position: relative;
  cursor: pointer;
  transition: opacity 0.5s ease-in-out;
}

.header-menu-item a:hover {
  opacity: 0.75;
}

.header-menu-item-guide {
  display: none;
}

.header-menu-inner,
.fs-pt-menu__item .fs-pt-menu__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px 0;
  cursor: pointer;
  font-size: 0px;
  text-align: center;
}

.fs-pt-menu__item .fs-pt-menu__link::before {
  width: 25px;
  height: 25px;
  background: url(/item/iconLogin.svg) no-repeat;
  background-size: 100% auto;
  content: '';
}

.header-menu-inner img {
  width: 25px;
}

body:has(.fs-p-headerUtilityMenu__login.is-loggedIn--false) .fs-p-headerUtilityMenu__logout,
.fs-p-headerUtilityMenu__login.is-loggedIn--true {
  display: none;
}

.header-menu-text {
  display: none;
  font-size: 11px;
  text-align: center;
}

.header-menu-search {
  position: fixed;
  top: 100px;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  width: 90vw;
  max-width: 500px;
  translate: -50% 0;
}

.is-open + .header-menu-search {
  opacity: 1;
  pointer-events: auto;
}

.header-menu-search form {
  position: relative;
  display: flex;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
  will-change: filter;
}

.header-menu-search form input {
  border: 1px solid #ebf0f2;
  padding: 18px 44px 18px 14px;
  font-size: 14px;
}

.header-menu-search form .search-btn {
  position: absolute;
  top: 50%;
  right: 8px;
  translate: 0 -50%;
  cursor: pointer;
}

.fs-p-cartItemNumber {
  display: flex;
  align-items: center;
  justify-content: center;
  top: -7px;
  right: -6px;
  font-size: 10px;
  padding: 0 5px;
  aspect-ratio: 1/1;
  padding-bottom: 1px;
  background-color: #e56382;
  color: #fff;
  border-radius: 50%;
  font-weight: 500;
  line-height: 1;
  position: absolute;
}

.fs-client-cart-count--0 {
  display: none !important;
}

.hamburger {
  position: fixed;
  top: 0;
  right: 0;
  width: 60px;
  aspect-ratio: 1/1;
  z-index: 9999;
  cursor: pointer;
}

.hamburger-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 2px;
  background-color: var(--color-primary);
  translate: -50% -50%;
}

.hamburger-bar::before,
.hamburger-bar::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  transition: all 0.5s ease-in-out;
  content: '';
}

.hamburger-bar::before {
  top: -9px;
}

.hamburger-bar::after {
  top: 9px;
}

.hamburger-open .hamburger-bar {
  background-color: transparent;
}

.hamburger-open .hamburger-bar::before {
  rotate: 45deg;
  top: 0;
}

.hamburger-open .hamburger-bar::after {
  rotate: -45deg;
  top: 0;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: white;
  padding-top: 62px;
  z-index: 30;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}

.hamburger-open .drawer {
  opacity: 1;
  pointer-events: auto;
}

.drawer-nav {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 0 5% 100px;
  z-index: 10;
}

.drawer-list,
.drawer-sns,
.drawer-contact {
  max-width: 330px;
  margin-right: auto;
  margin-left: auto;
}

.draser-list {
  margin-bottom: 40px;
}

.drawer-item-text {
  position: relative;
  display: block;
  padding: 24px 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.drawer-item-text.accordion-item::before,
.drawer-item-text.accordion-item::after {
  position: absolute;
  top: 50%;
  right: 14px;
  translate: 50% -50%;
  background-color: var(--color-primary);
  content: '';
}

.drawer-item-text.accordion-item::before {
  width: 10px;
  height: 1px;
}

.drawer-item-text.accordion-item::after {
  width: 1px;
  height: 10px;
}

.drawer-block,
.drawer-children {
  height: 0;
  padding: 0 5.8%;
  overflow: hidden;
}

.is-open + .drawer-block,
.is-open + .drawer-children {
  height: auto;
}

.is-open + .drawer-children {
  padding-top: 27px;
  padding-bottom: 20px;
}

.drawer-block-item-border {
  border-top: 1px solid #ebf0f2;
}

.drawer-block-link {
  position: relative;
  display: block;
  padding: 16px 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.drawer-block-categories {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
  border-top: 1px solid #ebf0f2;
  padding-top: 20px;
  margin-bottom: 20px;
}

.drawer-block-category-item a {
  display: flex;
  align-items: center;
  gap: 0 15px;
}

.drawer-block-category-icon {
  width: 40px;
}

.drawer-block-category-text {
  font-size: 12px;
  letter-spacing: 0.1em;
}

.drawer-block-types {
  border-top: 1px solid #ebf0f2;
  margin-bottom: 12px;
}

.drawer-block-type-item + .drawer-block-type-item {
  border-top: 1px solid #ebf0f2;
}

.drawer-block-type-item a {
  position: relative;
  display: block;
  padding: 15px 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.drawer-children {
  display: flex;
  flex-direction: column;
  gap: 13px 0;
}

.drawer-children-item a {
  font-size: 12px;
  letter-spacing: 0.1em;
}

.drawer-sns {
  display: flex;
  align-items: center;
  margin-top: 42px;
  margin-bottom: 47px;
}

.drawer-sns-title {
  margin-right: 30px;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.drawer-sns-list {
  display: flex;
  align-items: center;
  gap: 0 24px;
}

.drawer-sns-item img {
  width: 22px;
}

.drawer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  border: 2px solid #2a7fa1;
  border-radius: 5px;
  color: #2a7fa1;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.drawerBg {
  position: absolute;
  width: 400px;
  pointer-events: none;
  z-index: 0;
}

.drawerBg-01 {
  top: -100px;
  right: -100px;
}

.drawerBg-02 {
  bottom: -100px;
  left: -100px;
}

/*--- header ---*/

/* footer */

.footer {
  position: relative;
  padding: 100px 5% 12px;
  background: linear-gradient(30deg, #eaf5fc, #f5fdff, #f5feff, #eaf5fc);
}

.fs-body-top .footer {
  background: white;
}

.footer-logo {
  width: 120px;
  margin-bottom: 32px;
}

.footer-logo img {
  width: 100%;
}

.footer-container {
  display: flex;
  flex-direction: column-reverse;
  gap: 40px 0;
  margin-bottom: 40px;
}

.footer-box {
  width: 100%;
}

.footer-address {
  margin-bottom: 16px;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 2;
}

.footer-btn {
  width: 280px;
  height: 52px;
}

.footer-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 2px solid #2a7fa1;
  border-radius: 5px;
  color: #2a7fa1;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out;
}

.footer-btn a:hover {
  background-color: #2a7fa1;
  color: white;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
  width: 100%;
}

.footer-nav-title {
  margin-bottom: 16px;
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.footer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-item a {
  font-size: 12px;
}

.footer-block {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
}

.footer-sns {
  display: flex;
  align-items: center;
}

.footer-sns-lead {
  margin-right: 16px;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.footer-sns-list {
  display: flex;
  align-items: center;
  gap: 0 14px;
}

.footer-sns-item a {
  transition: opacity 0.5s ease-in-out;
}

.footer-sns-item a:hover {
  opacity: 0.75;
}

.footer-sns-item img {
  width: 22px;
}

.footer-copy {
  color: #8695a3;
  font-size: 11px;
  letter-spacing: 0.1em;
}

/*--- header ---*/

/*--- main ---*/
.main {
  position: relative;
  z-index: 0;
}

/*--- main ---*/

/*--- hero ---*/
.hero {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
}

.hero-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-item img {
  width: 100%;
}

.hero .splide__arrow {
  width: 35px;
  height: auto;
  aspect-ratio: 1/2;
  background-color: rgba(68, 79, 87, 0.3);
  opacity: 1;
}

.hero .splide__arrow.splide__arrow--prev {
  border-radius: 0 100px 100px 0;
  left: 0;
}

.hero .splide__arrow.splide__arrow--next {
  border-radius: 100px 0 0 100px;
  right: 0;
}

.hero .splide__arrow svg {
  width: 1.2em;
  fill: white;
  height: auto;
  aspect-ratio: 1/1;
}

/*--- hero ---*/

/*--- feature ---*/
.feature {
  position: relative;
  padding-top: 50px;
  padding-bottom: 100px;
}

.feature-slider {
  /* width: 90%; */
  margin: 40px auto 0;
}

.feature-item {
  position: relative;
}

.feature-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 14px;
}

.feature-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.feature-thumb-02 {
  opacity: 0;
}

.feature-lead {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.feature-text {
  font-size: 12px;
  letter-spacing: 0.05em;
}

/*--- feature ---*/

/*--- newItem ---*/
.newItem {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}

.newItem-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
}

.newItem-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newItem .fs-c-productListCarousel.fs-c-slick {
  display: none !important;
}

.newItem span.fs-c-productListCarousel__ctrl {
  display: none !important;
}

.futureshop-product-slider {
  margin: 20px 0;
}

.futureshop-product-slider .splide__slide {
  display: flex;
  justify-content: center;
}

.futureshop-product-slider .fs-c-productListItem {
  width: 100%;
  margin: 0;
  min-width: auto;
}

.futureshop-product-slider .fs-c-productListItem img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.newItem-slider {
  width: 90%;
  margin: 0 auto 40px;
}

.feature-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 60px 0;
}

.fs-c-productListCarousel__list__item.fs-c-productListItem {
  display: flex !important;
  flex-direction: column;
  height: 100%;
}

.fs-c-productListItem__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  margin-bottom: 14px;
  border-radius: 5px;
  overflow: hidden;
}

.fs-c-productListItem__image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease-in-out;
}

.fs-c-productImage__image--clone {
  opacity: 0 !important;
}

.fs-c-productListItem__image:has(.fs-c-productImage__image--clone) a:hover .fs-c-productListItem__image__image {
  opacity: 0 !important;
}

.fs-c-productListItem__image a:hover .fs-c-productImage__image--clone {
  opacity: 1 !important;
}

.fs-c-productName__name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-bottom: 13px;
  word-break: break-all;
}

.fs-c-productName__copy {
  display: block;
  font-size: 12px;
  color: #8695a3;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
}

.newItem .fs-c-productPrice__main .fs-c-productPrice__main__label {
  display: block;
  font-size: 12px;
  line-height: 1.75;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
  color: var(--color-primary);
}

.fs-c-productPrice__main__price.fs-c-price {
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.newItem .fs-c-productPrice__main .fs-c-productPrice__main__price.fs-c-price::after {
  margin: 0;
  font-size: 12px;
  content: '(税込)';
  color: var(--color-primary);
}

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

.fs-c-button--addToCart--list.fs-c-button--plain,
.fs-c-button--viewProductDetail.fs-c-button--plain,
.fs-c-buttonContainer--unregisteredUserPurchase a,
.fs-c-productReview__addReview a,
.fs-c-button--login,
.fs-c-buttonContainer--memberRegister a,
.fs-c-button--guestPurchase,
.fs-c-button--registerAndContinue,
.fs-c-button--sendVerificationCode,
.fs-c-button--send,
.fs-c-button--confirmRegister,
.fs-c-button--primary,
.fs-c-button--addToAddressbook.fs-c-button--secondary,
.inquiry-btn,
.fs-c-button--cancel.fs-c-button--standard,
.fs-c-button--continueShopping,
.btn-container a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  border-radius: 5px;
  border: 2px solid #2a7fa1;
  color: #2a7fa1;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: color 0.5s ease-in-out, background-color 0.5s ease-in-out;
}

.fs-c-button--addToCart--list.fs-c-button--plain:hover,
.fs-c-button--viewProductDetail.fs-c-button--plain:hover,
.fs-c-buttonContainer--unregisteredUserPurchase a:hover,
.fs-c-productReview__addReview a:hover,
.fs-c-button--login:hover,
.fs-c-buttonContainer--memberRegister a:hover,
.fs-c-button--guestPurchase:hover,
.fs-c-button--registerAndContinue:hover,
.fs-c-button--sendVerificationCode:hover,
.fs-c-button--send:hover,
.fs-c-button--confirmRegister:hover,
.fs-c-button--primary:hover,
.fs-c-button--addToAddressbook.fs-c-button--secondary:hover,
.inquiry-btn:hover,
.fs-c-button--cancel.fs-c-button--standard:hover,
.fs-c-button--continueShopping:hover,
.btn-container a:hover {
  background-color: #2a7fa1;
  color: white;
}

.fs-c-buttonContainer--unregisteredUserPurchase a,
.fs-c-button--cancel.fs-c-button--standard {
  margin-right: auto;
  margin-left: auto;
  border: 2px solid #8695a3;
  color: #8695a3;
}

.fs-c-buttonContainer--unregisteredUserPurchase a:hover,
.fs-c-button--cancel.fs-c-button--standard:hover {
  background-color: #8695a3;
}

.fs-c-productReview__addReview a {
  gap: 0 10px;
  width: 180px;
}

.fs-c-button--login,
.fs-c-buttonContainer--memberRegister a,
.fs-c-button--guestPurchase,
.fs-c-button--registerAndContinue,
.fs-c-button--sendVerificationCode,
.fs-c-button--send,
.fs-c-button--confirmRegister,
.fs-c-button--primary,
.fs-c-button--addToAddressbook.fs-c-button--secondary,
.inquiry-btn,
.fs-c-button--cancel.fs-c-button--standard,
.btn-container a,
.fs-c-buttonContainer--unregisteredUserPurchase a {
  max-width: 280px;
  margin-right: auto;
  margin-left: auto;
}

.fs-p-productDescription .fs-c-productActionButton button {
  max-width: 450px;
  background: transparent !important;
  border: none !important;
  height: auto;
  margin: 0;
}

.fs-p-productDescription .fs-c-productActionButton .fs-c-button__label {
  width: 100%;
  background: transparent;
  border: none;
}

.fs-c-button--continueShopping {
  max-width: 280px;
}

.fs-c-button--addToWishList--icon.fs-c-button--particular,
.fs-c-button--removeFromWishList--icon.fs-c-button--particular {
  position: absolute;
  top: auto;
  bottom: 7px;
  right: 1.8%;
  bottom: 2.5%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14.5%;
  aspect-ratio: 1/1;
  border-radius: 50px;
  background-color: white;
  border: 1px solid #ced7de;
  background-repeat: no-repeat;
  background-image: url('/item/like_gray.svg');
  background-size: 50% auto;
  background-position: center;
  translate: 0 0;
}

.fs-c-button--removeFromWishList--icon.fs-c-button--particular {
  background-image: url('/item/like_blue.svg');
}

.fs-c-button--addToWishList--icon.fs-c-button--particular .fs-c-button__label,
.fs-c-button--removeFromWishList--icon.fs-c-button--particular .fs-c-button__label,
.fs-c-productListItem__control .fs-c-button--removeFromWishList--icon,
.fs-c-productListItem__control .fs-c-button--addToWishList--icon {
  display: none;
}

.viewMore {
  display: flex;
  align-items: center;
}

.topBrand-box .viewMore {
  justify-content: flex-end;
}

.viewMore-right {
  justify-content: flex-end;
}

.viewMore a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0 10px;
  color: #2a7fa1;
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 600;
  transition: opacity 0.5s ease-in-out;
}

.viewMore a:hover {
  opacity: 0.75;
}

.viewMore-white a {
  color: white;
}

.viewMore a::after {
  display: block;
  width: 35px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid #2a7fa1;
  background-repeat: no-repeat;
  background-image: url('/item/arrow_right_blue.svg');
  background-size: 6px auto;
  background-position: center;
  content: '';
}

.viewMore-white a::after {
  border-color: white;
  background-image: url('/item/arrow_right_white.svg');
}

/*--- nawItem ---*/

/*--- itemSearch ---*/
.itemSearch {
  padding-top: 50px;
}

.itemSearch-title {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}

.itemSearch-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.itemSearch-item {
  position: relative;
}

.itemSearch-item a {
  display: block;
}

.itemSearch-item img {
  width: 100%;
}

/*--- itemSearch ---*/

/*--- topNews ---*/
.topNews {
  padding-top: 100px;
  padding-bottom: 100px;
}

.topNews-box {
  width: 100%;
  margin-top: 40px;
}

.topNews-list {
  border-top: 1px solid #ebf0f2;
}

.topNews-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px 0;
  padding: 20px 0;
  border-bottom: 1px solid #ebf0f2;
}

.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: 0px;
}

.topNews-date {
  display: block;
  font-family: var(--font-poppins);
  color: #8695a3;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.topNews-title {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.75;
  transition: color 0.5s ease-in-out;
}

.fs-pt-list__link:hover .topNews-title {
  color: #2a7fa1;
}

/*--- topNews ---*/

/*--- topBrand ---*/
.topBrand {
  position: relative;
  padding: 120px 0 290px;
}

.topBrand-box {
  position: relative;
  width: 90%;
  margin: 0 auto;
  z-index: 10;
}

.topBrand-lead {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px 0;
  margin-bottom: 25px;
}

.topBrand-en {
  font-family: var(--font-poppins);
  font-size: 14px;
  letter-spacing: 0.15em;
}

.topBrand-jp {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.topBrand-text {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 34px;
  letter-spacing: 0.165em;
  line-height: 2;
}

.topBrand-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  will-change: filter;
}

/*--- topBrand ---*/

/*--- topCounseling ---*/
.topCounseling {
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
  will-change: filter;
}

.topCounseling-pic {
  width: 100%;
}

.topCounseling-pic img {
  width: 100%;
}

/*--- topCounseling ---*/

.topOuter {
  background: linear-gradient(30deg, #eaf5fc, #f5fdff, #f5feff, #eaf5fc);
}

/*--- topMedia ---*/
.topMedia {
  padding-top: 100px;
}

.topMedia-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 25px;
  margin-top: 40px;
}

.topMedia-thumb {
  width: 100%;
  margin-bottom: 6px;
}

.topMedia-text {
  font-size: 12px;
  letter-spacing: 0.1em;
}

/*--- topMedia ---*/

/*--- topColumn ---*/
.topColumn {
  padding-top: 100px;
  padding-bottom: 100px;
}

.topColumn-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.topColumn-thumb {
  width: 100%;
  margin-bottom: 12px;
}

.topColumn-text {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

/*--- topColumn ---*/

/*--- topBeautyworld ---*/
.topBeautyworld {
  padding-top: 100px;
  padding-bottom: 100px;
  will-change: filter;
}

.topBeautyworld-pic {
  width: 100%;
}

.topBeautyworld-pic img {
  width: 100%;
}

/*--- topBeautyworld ---*/

/*--- topMerit ---*/
.topMerit {
  padding-bottom: 100px;
}

.topMerit-lead {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.12em;
}

.topMerit-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.topMerit-item {
  width: calc(100% / 2 - 10px);
  aspect-ratio: 1/1;
  border: 1px solid #ced7de;
  padding: 20px 0% 10px;
}

.topMerit-icon {
  width: 100px;
  margin: 0 auto 10px;
}

.topMerit-text {
  font-size: 13px;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.75;
}

/*--- topMerit ---*/

/*--- topInfo ---*/
.topInfo {
  background: linear-gradient(30deg, #eaf5fc, #f5fdff, #f5feff, #eaf5fc);
  padding-top: 40px;
  padding-bottom: 40px;
}

.topInfo-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.topInfo-item {
  width: calc(100% / 2 - 10px);
}

.topInfo-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  background-color: white;
  padding: 10px 1% 10px;
}

.topInfo-icon {
  width: 100px;
  margin: 0 auto 10px;
}

.topInfo-text {
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.08em;
  line-height: 1.75;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 37px;
}

/*--- topInfo ---*/

/*--- guide ---*/

.guide {
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}

/*--- guide ---*/

/*--- lead ---*/
.lead {
  display: flex;
  flex-direction: column;
  gap: 8px 0;
  align-items: flex-start;
}

.lead-center {
  align-items: center;
}

.lead-jp {
  font-size: 12px;
  letter-spacing: 0.17em;
}

.lead-en {
  font-family: var(--font-poppins);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
}

/*--- lead ---*/

.contents-flex .splide__arrows {
  position: relative;
  display: flex;
  justify-content: flex-end;
  gap: 0 12px;
}

.newItem .splide__arrows {
  position: relative;
  display: flex;
  justify-content: flex-end;
  gap: 0 12px;
  margin-bottom: 12px;
}

.feature .splide__arrow,
.newItem .splide__arrow {
  position: relative;
  inset: 0;
  width: 35px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid #ced7de;
  background-color: transparent;
  opacity: 1;
  transform: none;
  transition: opacity 0.5s ease-in-out;
}

.feature .splide__arrow:hover,
.newItem .splide__arrow:hover {
  opacity: 0.75;
}

.feature .splide__arrows svg,
.newItem .splide__arrows svg {
  fill: var(--color-primary);
  width: 14px;
  height: auto;
  aspect-ratio: 1/1;
}

.contentsLayer-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}

.contentsLayer-top img {
  width: 100%;
}

.contentsLayer-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
}

.contentsLayer-bottom img {
  width: 100%;
}

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

.fs-l-main {
  margin-bottom: 100px;
}

body:not(.fs-body-top) .fs-l-main {
  width: 90%;
  padding-top: 100px;
  margin-right: auto;
  margin-left: auto;
}

body.fs-body-custom .fs-l-main {
  width: 100%;
  padding-top: 100px;
}

body:has(.story) .fs-l-main {
  padding-top: 0;
  margin-bottom: 0;
}

body.fs-body-notfound .fs-l-main {
  padding-top: 210px !important;
}

body.fs-body-notfound .fs-c-heading {
  text-align: center;
}

body.fs-body-closed .fs-l-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 210px;
}

.fs-p-pageNotFound__image,
.fs-p-closed__image {
  display: block;
  margin: 0 auto 40px;
}

.fs-p-pageNotFound__title,
.fs-p-closed__heading {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
}

.fs-p-pageNotFound__body,
.fs-p-closed__message {
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: 0.1em;
  text-align: center;
}

.fs-c-heading.fs-c-heading--page {
  color: #444f57;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

.free-container .fs-c-heading.fs-c-heading--page {
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}

body:has(.story) .free-container .fs-c-heading.fs-c-heading--page {
  display: none;
}

body:has(.membership) .free-container .fs-c-heading.fs-c-heading--page {
  max-width: 1200px;
}

.fs-c-documentArticle + .fs-c-documentArticle {
  margin-top: 75px;
}

.fs-c-documentArticle:last-of-type {
  margin-bottom: 100px;
}

.fs-c-documentArticle__heading {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.11em;
  padding-bottom: 16px;
  margin-bottom: 28px;
  border-bottom: 1px solid #ebf0f2;
}

.fs-body-about-shippingPayment .fs-c-documentArticle__content {
  margin-bottom: 60px;
}

.fs-c-documentColumn + .fs-c-documentColumn {
  margin-top: 60px;
}

.fs-c-address {
  padding: 32px 8%;
  margin-bottom: 20px;
  background-color: #f2f7fa;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 2;
  font-style: normal;
}

.fs-c-localNavigation {
  padding: 32px 8%;
  margin-top: 33px;
  background-color: #f2f7fa;
}

.fs-c-localNavigation__heading {
  margin-bottom: 8px;
}

.fs-c-localNavigation__content + .fs-c-localNavigation__heading {
  margin-top: 21px;
}

.fs-c-localNavigation__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 9px;
}

.fs-c-localNavigation__list__item {
  width: 100%;
}

.fs-c-localNavigation__list__item a {
  position: relative;
  display: block;
  padding: 4px 28px 4px 15px;
  border: 1.5px solid #2a7fa1;
  color: #2a7fa1;
  font-size: 14px;
  letter-spacing: 0.11em;
  background: url('/item/arrow_down_blue.svg') no-repeat;
  background-size: 11px auto;
  background-position: calc(100% - 13px) 50%;
  border-radius: 3px;
  text-decoration: none !important;
  white-space: nowrap;
  transition: opacity 0.5s ease-in-out;
}

.fs-c-localNavigation__list__item a:hover {
  opacity: 0.75;
}

.fs-c-documentArticle__content.fs-c-documentColumn + .fs-c-documentArticle__content.fs-c-documentColumn {
  margin-top: 50px;
}

.fs-c-documentColumn__heading {
  position: relative;
  padding-left: 20px;
  margin-bottom: 42px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.11em;
}

.fs-c-documentColumn__heading + .fs-c-documentColumn__content > p:first-child {
  margin-top: -21px;
}

.fs-c-documentColumn__content p,
.fs-c-documentColumn__content,
.fs-c-documentArticle__content p {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.85;
}

.fs-c-documentColumn__content p a,
.fs-c-documentColumn__content a,
.fs-c-documentArticle__content p a {
  color: #2a7fa1;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
  transition: opacity 0.5s ease-in-out;
}

.fs-c-documentColumn__content p a:hover,
.fs-c-documentColumn__content a:hover,
.fs-c-documentArticle__content p a:hover {
  opacity: 0.75;
}

.fs-c-documentColumn__content p {
  margin-bottom: 20px;
}

.fs-c-documentColumn__content p + p {
  margin-top: 29px;
}

.fs-c-documentSubColumn {
  margin-top: 31px;
  margin-bottom: 76px;
  padding: 32px 8%;
  border: 1px solid #ebf0f2;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.fs-c-documentSubColumn__heading {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.fs-c-creditCardIcons {
  display: flex;
  flex-wrap: wrap;
  gap: 0 8px;
}

.fs-c-documentColumn__heading::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2px;
  height: 70%;
  background-color: #8695a3;
  translate: 0 -50%;
  content: '';
}

.fs-c-documentContent__heading {
  position: relative;
  padding-left: 20px;
  margin-bottom: 23px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.fs-c-documentContent__heading::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 2px;
  background-color: #8695a3;
  translate: 0 -50%;
  content: '';
}

.fs-c-documentContent__content {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.75;
}

.fs-c-documentContent + .fs-c-documentContent {
  margin-top: 55px;
}

.fs-c-shippingCarrierInfo {
  border: 1px solid #ebf0f2;
  border-radius: 5px;
  padding: 32px 8%;
}

.fs-c-shippingCarrierInfo + .fs-c-shippingCarrierInfo {
  margin-top: 20px;
}

.fs-c-documentSubContent {
  margin-top: 33px;
}

.fs-c-documentSubContent__heading {
  margin-bottom: 19px;
  font-size: 14px;
  font-weight: 600;
}

.fs-c-shippingCarrierInfo__heading {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 27px;
}

.fs-c-pointSummary__label--purchasePointExpiration,
.fs-c-pointSummary__label--waitingPoint,
.fs-c-pointSummary__label--purchasePointTotal {
  grid-column: 1;
}
.fs-c-pointSummary__value--purchasePointExpiration,
.fs-c-pointSummary__value--waitingPoint,
.fs-c-pointSummary__value--purchasePointTotal {
  grid-column: 2/4;
}
.fs-c-pointSummary [class$='--purchasePointExpiration'] {
  grid-row: 3;
}
.fs-c-pointSummary [class$='--waitingPoint'] {
  grid-row: 4;
}
.fs-c-pointSummary [class$='--purchasePointTotal'] {
  grid-row: 5;
}

.fs-c-postage__list {
  display: grid;
  grid-template-rows: auto auto;
  grid-auto-flow: dense;
  grid-auto-rows: auto auto;
  margin-top: 25px;
  margin-bottom: 34px;
}

.fs-c-postage__list > dt,
.fs-c-postage__list > dd {
  margin: 0;
}

.fs-c-postage__list > dt.case-undeliverable,
.fs-c-postage__list > dd.case-undeliverable {
  background-color: #f7f7f7;
  color: #b2b2b2;
}

.fs-c-postage__list > dt {
  background: #f2f7fa;
  border-top: 1px solid #ced7de;
  padding: 8px 15px 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.fs-c-postage__list > dd {
  position: relative;
  font-size: 13px;
  padding: 4px 15px 7px;
}

.fs-c-postage__list--prefecture > dt:nth-of-type(3n + 1),
.fs-c-postage__list--prefecture > dd:nth-of-type(3n + 1) {
  grid-column: 1;
}

.fs-c-postage__list--prefecture > dt:nth-of-type(3n + 2),
.fs-c-postage__list--prefecture > dd:nth-of-type(3n + 2) {
  grid-column: 2;
}

.fs-c-postage__list--prefecture > dt:nth-of-type(3n + 3),
.fs-c-postage__list--prefecture > dd:nth-of-type(3n + 3) {
  grid-column: 3;
}

.fs-c-postage__table {
  border-collapse: separate;
  border-spacing: 2px;
  margin: -4px;
  width: calc(100% + 8px);
}
.fs-c-postage__table > thead {
  background: rgba(126, 126, 126, 0.08);
  font-weight: bold;
}
.fs-c-postage__table__headerCell {
  font-weight: normal;
  font-size: 1.2rem;
}
.fs-c-postage__table > thead .fs-c-postage__table__headerCell {
  font-weight: bold;
}
.fs-c-postage__table__dataCell {
  padding: 2px;
}
.fs-c-postage__table > tbody .fs-c-postage__table__headerCell,
.fs-c-postage__table > tbody .fs-c-postage__table__dataCell {
  text-align: right;
}
.fs-c-postage__table > tbody > tr + tr .fs-c-postage__table__headerCell,
.fs-c-postage__table > tbody > tr + tr .fs-c-postage__table__dataCell {
  border-top: 1px dotted #e5e5e5;
}

.fs-c-productChooseVariation__variation + .fs-c-productChooseVariation__variation {
  margin-top: 16px;
}

.fs-c-postage {
  margin-bottom: 29px;
}

.fs-c-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 29px;
}

.fs-c-list__item {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.85;
}

.fs-c-list__item::before {
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #2a7fa1;
  content: '';
}

.fs-c-list__item a {
  color: #2a7fa1;
  font-weight: 600;
  text-decoration: underline;
}

.fs-c-note {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 29px;
}

.fs-c-note__item {
  position: relative;
  padding-left: 15px;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.fs-c-note__item::before {
  position: absolute;
  left: 0;
  top: 0;
  content: '※';
}

.fs-c-specTable {
  width: 100%;
  margin-top: 32px;
  margin-bottom: 38px;
  overflow-x: auto;
}

.fs-c-specTable__caption {
  padding: 11px 10px;
  border-top: 1px solid #ced7de;
  background-color: #f2f7fa;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
}

.fs-c-specTable__headerCell {
  padding: 15px 20px 14px;
  border-top: 1px solid #ced7de;
  background-color: #f2f7fa;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
}

.fs-c-specTable__dataCell {
  padding: 15px 20px 14px 20px;
  border-top: 1px solid #ced7de;
  font-size: 13px;
  letter-spacing: 0.1em;
}

.fs-c-specTable__dataCell:has(.fs-c-price.fs-c-price--inline) {
  text-align: center;
}

.fs-c-specTable--salesTax .fs-c-specTable__dataCell {
  text-align: center;
}

.fs-c-specTable tr:last-child .fs-c-specTable__headerCell,
.fs-c-specTable tr:last-child .fs-c-specTable__dataCell {
  border-bottom: 1px solid #ced7de;
}

.fs-c-explainList,
.fs-p-footerNavigationItem__dataList {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 5px 20px;
  padding: 32px 8%;
  background-color: #f2f7fa;
}

.fs-c-explainList {
  margin-top: 28px;
  margin-bottom: 40px;
}

.fs-c-explainList dt,
.fs-p-footerNavigationItem__dataList__title {
  display: block;
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.85;
}

.fs-c-explainList dd + dt,
.fs-p-footerNavigationItem__dataList__data + .fs-p-footerNavigationItem__dataList__title {
  margin-top: 16px;
}

.fs-c-explainList dd,
.fs-p-footerNavigationItem__dataList__data {
  display: block;
  width: 100%;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.85;
}

.fs-c-orderedList {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: 31px;
  margin-left: 0;
  counter-reset: number;
}

.fs-c-orderedList li {
  position: relative;
  padding-left: 32px;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.85;
}

.fs-c-orderedList li::before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: number;
  content: counter(number) '.';
}

.fs-p-address {
  margin-top: 31px;
  font-style: normal;
}

.fs-p-address span {
  display: block;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.85;
}

.fs-p-privacyPolicy,
.fs-p-aboutTerms,
.fs-p-memberAgreement,
.fs-p-returnPolicy,
.fs-c-productList,
.login-contents {
  margin-bottom: 100px;
}

.fs-c-documentColumn .fs-c-documentColumn__content > .fs-p-address:first-child {
  padding: 22px 4%;
  margin-top: 33px;
  background-color: #f2f7fa;
}

.fs-c-documentColumn .fs-c-documentColumn__content > .fs-p-address:first-child span {
  font-size: 12px;
  line-height: 2;
}

.fs-c-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: 31px;
  margin-left: 0;
  counter-reset: number;
}

.fs-c-productList__controller {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 20px;
}

.fs-c-sortItems {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.fs-c-sortItems__label {
  position: relative;
  padding-left: 21px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.fs-c-sortItems__label::before {
  position: absolute;
  top: 3px;
  left: 0;
  width: 17px;
  aspect-ratio: 15/12;
  background: url('/item/sort.svg') no-repeat;
  background-size: 100% auto;
  content: '';
}

.fs-c-sortItems__list {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fs-c-sortItems__list__item {
  padding: 3px 17px;
  border-radius: 15px;
  border: 1px solid #2a7fa1;
  color: #2a7fa1;
  font-size: 12px;
  letter-spacing: 0.1em;
  transition: color 0.5s ease-in-out, background-color 0.5s ease-in-out;
}

.fs-c-sortItems__list__item.is-active,
.fs-c-sortItems__list__item:hover {
  color: white;
  background-color: #2a7fa1;
}

.fs-c-listControl {
  display: flex;
  align-items: baseline;
  gap: 0 19px;
  margin-left: auto;
}

.fs-c-listControl__status {
  display: flex;
  align-items: baseline;
  gap: 0 4px;
}

.fs-c-listControl__status__total {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.fs-c-listControl__status__total__label,
.fs-c-listControl__status__indication {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.fs-c-pagination {
  display: flex;
  gap: 0 5px;
}

.fs-c-pagination__item {
  position: relative;
  display: block;
  width: 30px;
  aspect-ratio: 1/1;
  color: #8695a3;
  background-color: transparent !important;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: opacity 0.5s ease-in-out;
}

.fs-c-pagination__item:hover {
  opacity: 0.75;
}

.fs-c-pagination__item::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #ebf0f2;
  content: '';
  transition: background-color 0.5s ease-in-out;
}

.fs-c-pagination__item.is-active::before,
.fs-c-pagination__item:hover::before {
  background-color: #2a7fa1;
}

.fs-c-pagination__item.fs-c-pagination__item--next,
.fs-c-pagination__item.fs-c-pagination__item--prev {
  display: none;
}

.fs-c-productList__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 25px;
  margin-bottom: 40px;
}

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

.fs-c-productList__list__item form {
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.fs-l-productLayout {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 100px;
}

.details-block {
  width: 100%;
}

.details-info {
  width: 100%;
}

.details-info p {
  color: #8695a3;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 1.85;
}

.details-info .fs-c-productPointDisplay {
  margin: 9px 0 47px;
}

.fs-c-productNameHeading {
  margin-bottom: 30px;
}

.fs-c-productNameHeading__copy {
  color: #8695a3;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.fs-c-productNameHeading__name {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.1em;
  word-break: break-all;
}

.fs-c-productReviewed {
  position: relative;
  margin-bottom: 40px;
}

.fs-c-productReviewed__image {
  margin-bottom: 20px;
}

.fs-c-productReview__aggregateRating,
.fs-c-aggregateRating {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 10px;
}

.fs-c-aggregateRating {
  margin-top: 0;
  margin-bottom: 5px;
}

.fs-c-button--viewReview.fs-c-button--plain {
  display: inline-block;
  color: #2a7fa1;
  font-size: 13px;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.fs-c-wishList .fs-c-productListItem__control.fs-c-buttonContainer {
  margin-top: 20px;
}

.fs-c-aggregateRating__rating {
  display: flex;
  align-items: baseline;
  gap: 0 12px;
}

.fs-c-reviewStars::before {
  color: #e2a037;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  translate: 0 2px;
}

.fs-c-aggregateRating__rating::before {
  display: none;
}

.fs-c-rating__value {
  color: #e2a037;
  font-size: 20px;
  letter-spacing: 0.03em;
  line-height: 1;
}

.fs-c-aggregateRating__count {
  color: #8695a3;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1;
}

.fs-c-aggregateRating__count::before {
  content: '（';
}

.fs-c-aggregateRating__count::after {
  content: '件）';
}

.fs-c-productNumber {
  display: flex;
  gap: 0 1px;
  color: #8695a3;
  font-size: 13px;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.fs-c-productNumber__label {
  display: flex;
  gap: 0 1px;
}

.fs-c-productNumber__label::after {
  content: '：';
}

.details-info .fs-c-productPrice {
  padding: 10px 0;
  border-top: 1px solid #ebf0f2;
  border-bottom: 1px solid #ebf0f2;
  margin-bottom: 20px;
}

.newItem .fs-c-productPrice {
  padding: 0;
  border: none;
  margin: 0;
}

.details-info .fs-c-productPrice__main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.newItem .fs-c-productPrice__main {
  display: block;
}

.fs-c-subscriptionPriceTable__row .fs-c-productPrice {
  padding: 0;
  border: none;
  margin-bottom: 0;
}

.fs-c-subscriptionPriceTable {
  display: block;
  width: 100%;
  padding: 10px 0;
  border-top: 1px solid #ebf0f2;
  border-bottom: 1px solid #ebf0f2;
  margin-top: 40px;
  margin-bottom: 20px;
}

.fs-c-subscriptionPriceTable tbody {
  display: block;
}

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

.fs-c-subscriptionPriceTable__row + .fs-c-subscriptionPriceTable__row {
  margin-top: 10px;
}

.details-info .fs-c-productPrice__main .fs-c-price,
.fs-c-subscriptionPriceTable__price {
  margin-bottom: 0;
  font-family: var(--font-poppins);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.fs-c-postage .fs-c-price__currencyMark,
.fs-c-note__item .fs-c-price__currencyMark,
.fs-c-specTable__headerCell .fs-c-price__currencyMark,
.fs-c-specTable__dataCell .fs-c-price__currencyMark {
  margin-right: 0;
}

.fs-c-productPrice__main .fs-c-productPrice__main__price.fs-c-price::after,
.fs-c-subscriptionPriceTable__price .fs-c-productPrice__main__price.fs-c-price::after {
  color: #8695a3;
  font-size: 14px;
  margin-left: -5px;
}

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

.fs-c-productPointDisplay__quantity {
  position: relative;
  display: inline-block;
  padding: 2px 10px;
  background-color: #f2f7fa;
  border-radius: 3px;
  color: #2a7fa1;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.fs-c-productPointDisplay__quantity::after {
  content: 'ポイント進呈';
}

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

.fs-c-productPrice__main .fs-c-productPrice__main__label,
.fs-c-subscriptionPriceTable__label {
  color: #8695a3;
  font-size: 13px;
  letter-spacing: 0.05em;
  font-weight: 400;
}

.fs-c-productQuantityAndWishlist {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}

.fs-c-productQuantityAndWishlist .fs-c-button__label,
.fs-c-button--addToWishList--detail .fs-c-button__label {
  display: flex;
  align-items: center;
  gap: 0 7px;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #8695a3;
}

.fs-c-productQuantityAndWishlist .fs-c-button__label::before,
.fs-c-button--addToWishList--detail .fs-c-button__label::before {
  display: block;
  width: 22px;
  aspect-ratio: 1/1;
  background: url(/item/iconHeart.svg) no-repeat;
  background-size: 100% auto;
  margin-top: 3px;
  content: '';
}

.custom-qty-wrap {
  display: flex;
  align-items: center;
}

.quantity-wishlist-wrapper {
  display: flex;
  flex-direction: column-reverse;
  gap: 10px 0;
  margin-bottom: 12px;
}

.fs-c-quantity {
  max-width: none;
}

.custom-qty-btn {
  display: block;
  width: 46px;
  aspect-ratio: 1/1;
  flex: none;
  border-top: 1px solid #ebf0f2;
  border-bottom: 1px solid #ebf0f2;
  font-size: 16px;
  text-align: center;
  -webkit-appearance: none !important;
}

.custom-qty-btn:nth-of-type(1) {
  border-left: 1px solid #ebf0f2;
  border-radius: 3px 0 0 3px;
}

.custom-qty-btn:nth-of-type(2) {
  border-right: 1px solid #ebf0f2;
  border-radius: 0 3px 3px 0;
}

.custom-qty-input {
  padding: 4px 13px 4px 28px;
  flex: none;
  width: 66px;
  height: 46px;
  border-top: 1px solid #ebf0f2;
  border-bottom: 1px solid #ebf0f2;
  border-right: none;
  border-left: none;
  color: #444f57;
  font-family: var(--font-poppins);
  font-size: 18px;
  font-weight: 500;
}

.custom-qty-label {
  flex: none;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #8695a3;
  margin-right: 13px;
}

.fs-c-productActionButton {
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
}

.fs-c-productActionButton button {
  display: block;
}

.fs-c-productActionButton-tanpin + .fs-c-productActionButton-teiki {
  margin-top: 0 !important;
}

.fs-p-productDescription .fs-c-productActionButton + .fs-c-productActionButton {
  margin-top: 20px !important;
}

.fs-c-button__label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fs-c-button--addToCart--detail .fs-c-button__label::before,
.fs-c-button--addToSubscriptionCart--detail .fs-c-button__label::before {
  display: block;
  width: 17px;
  aspect-ratio: 1/1;
  background: url(/item/iconCart_white.svg) no-repeat;
  background-size: 100% auto;
  content: '';
}

.fs-c-productMarks {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 12px;
}

.newItem .fs-c-productMarks {
  display: none;
}

.fs-c-productListItem__prices.fs-c-productPrices {
  margin-top: auto;
}

.fs-c-productListItem__salesPeriod,
.fs-c-productListItem__productDescription {
  display: none;
}

.fs-c-productListItem__outOfStock {
  align-self: flex-start;
  display: inline-block;
  border-radius: 3px;
  background-color: #d34f59;
  color: white;
  font-size: 12px;
  letter-spacing: 0.03em;
  padding: 3px 10px;
  margin-bottom: 12px;
}

.details-info .fs-c-productMarks {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.fs-c-mark {
  border-radius: 3px;
  color: white;
  font-size: 12px;
  letter-spacing: 0.03em;
  padding: 3px 10px;
}

.fs-c-productMark__mark--10 {
  border-radius: 3px;
  font-size: 12px;
  letter-spacing: 0.03em;
  line-height: 1.5;
  padding: 3px 10px;
  font-weight: 500;
  background-color: #e56382;
  color: white;
}

.newItem .fs-c-mark {
  display: none;
}

.fs-c-mark--coolDeliveryAvailable {
  background-color: #28bf9b;
}

.fs-c-mark--subscription {
  background-color: #32b5bf;
}

.fs-c-mark--firstTimeSpecialPrice {
  background-color: #5e83db;
}

.fs-c-mark--coolDelivery {
  background-color: #58b8dd;
}

.details-info p.teiki-notice-added {
  color: #d34f59;
  font-size: 13px;
  letter-spacing: 0.05em;
}

.fs-c-productMainImage {
  margin-bottom: 29px;
  transition: opacity 0.5s ease-in-out;
}

.fs-c-productMainImage:hover {
  opacity: 0.75;
}

.fs-c-productMainImage img,
.fs-c-productMainImage__image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 5px;
}

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

.fs-c-productMainImage .splide__arrow {
  position: absolute;
  width: 35px;
  top: 50%;
  height: auto;
  aspect-ratio: 1 / 2;
  background-color: rgba(68, 79, 87, 0.3);
  align-items: center;
  cursor: pointer;
  transform: translateY(-50%);
  z-index: 1;
}

.fs-c-productMainImage .splide__arrow--prev {
  border-radius: 0 100px 100px 0;
  left: 0;
}

.fs-c-productMainImage .splide__arrow--next {
  border-radius: 100px 0 0 100px;
  right: 0;
}

.fs-c-productMainImage .splide__arrow svg {
  width: 1.2em;
  fill: white;
  height: auto;
  aspect-ratio: 1/1;
}

.image-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-modal__inner {
  position: relative;
  width: min(90%, 75vh);
}

.image-modal__inner img {
  width: 100%;
}

.image-modal__close {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 40px;
  color: white;
  translate: -50% -50%;
  cursor: pointer;
}

.fs-c-button--viewExtendedImage {
  position: absolute;
  right: 3%;
  bottom: 3%;
  width: 50px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: url(/item/iconZoom.svg) no-repeat white;
  background-size: 19px auto;
  background-position: 50% 50%;
  z-index: 10;
  pointer-events: none;
}

.fs-c-button--viewExtendedImage .fs-c-button__label {
  font-size: 0;
}

.fs-c-productThumbnail {
  margin-bottom: 30px;
  gap: 10px;
}

.thumbnail-item {
  flex-basis: 56px;
  min-width: 56px;
}

.fs-c-productThumbnail img {
  border-radius: 5px;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.fs-c-productThumbnail__image {
  margin: 0;
  flex-basis: 80px;
  min-width: 80px;
}

.tanpin-button-wrap {
  margin-top: 40px;
}

.teiki-notice-added + .fs-c-productActionButton.fs-c-buttonContainer {
  margin-top: 20px !important;
}

.teiki-notice-added + .fs-c-productActionButton.fs-c-buttonContainer button {
  display: block;
  width: 100%;
  background: transparent;
  border-radius: 5px;
}

.fs-c-button--addToCart--detail,
.fs-c-button--addToSubscriptionCart--detail,
.tanpin-button,
.fs-c-productActionButton.fs-c-buttonContainer .fs-c-button__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: 70px;
  background-color: #2a7fa1;
  border-radius: 5px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: opacity 0.5s ease-in-out;
}

.fs-c-button--addToCart--detail:hover,
.fs-c-button--addToSubscriptionCart--detail:hover,
.tanpin-button:hover,
.fs-c-productActionButton.fs-c-buttonContainer .fs-c-button__label:hover {
  opacity: 0.75;
}

.tanpin-button,
.fs-c-productActionButton.fs-c-buttonContainer .fs-c-button__label {
  background-color: #8695a3;
}

.fs-c-button--addToSubscriptionCart--detail .fs-c-button__label,
.details-info .fs-c-productActionButton-tanpin .fs-c-button--primary .fs-c-button__label {
  background-color: #2a7fa1 !important;
}

.tanpin-button::before,
.fs-c-productActionButton.fs-c-buttonContainer .fs-c-button__label::before {
  display: block;
  width: 17px;
  aspect-ratio: 1/1;
  background: url(/item/iconCart_white.svg) no-repeat;
  background-size: 100% auto;
  content: '';
}

.product_contents {
  position: relative;
  padding-top: 38px;
  border-top: 1px solid #ebf0f2;
}

.product_contents .ttl {
  font-size: 20px;
  letter-spacing: 0.1em;
  font-weight: 600;
  line-height: 1.75;
  margin-bottom: 29px;
}

br.sp {
  display: none;
}

.leadWrap,
.fs-p-productDescription {
  margin-bottom: 57px;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.95;
}

.leadWrap .flex {
  display: flex;
  flex-direction: column-reverse;
  gap: 33px 0;
}

.leadWrap .lead {
  gap: 0;
}

.leadWrap .list {
  display: flex;
  flex-direction: column;
  gap: 0px 0;
  margin-top: 28px;
}

.leadWrap .list li {
  color: #8695a3;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

.leadWrap .img {
  width: 100%;
}

.sec {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.95;
}

.sec + .sec,
.fs-p-productDescription + .fs-p-productDescription {
  margin-top: 40px;
}

.sec .ttl {
  font-size: 20px;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 31px;
}

.sec .ttl.sp {
  font-size: 18px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.sec .list {
  display: flex;
  flex-direction: column;
  gap: 2px 0;
  margin-top: 21px;
  margin-bottom: 22px;
}

.sec .list li {
  font-size: 14px;
  letter-spacing: 0.1em;
}

.sec .box .list {
  display: flex;
  flex-direction: column;
  gap: 0px 0;
  margin-top: 28px;
}

.sec .box .list li {
  color: #8695a3;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

.sec .box .ttl.pc {
  display: none;
}

.sec .box .img + .ttl {
  margin-top: 30px;
}

.sec > .box + .box {
  margin-top: 65px;
}

.sec .img {
  width: 100%;
}

.sec .flex_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px 24px;
  padding-bottom: 15px;
}

.sec .flex_box .box {
  width: calc(100% / 3 - 16px);
}

.sec .flex_box .box .img {
  width: 100%;
  margin-bottom: 26px;
}

.sec .flex_box .box .txt {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.85;
}

.inner-bak.sp-bak {
  margin-top: 60px !important;
}

.accordion {
  border-top: 1px solid #ebf0f2;
  margin-bottom: 100px;
}

.drawer-item-text.accordion-item {
  border-bottom: 1px solid #ebf0f2;
}

.details-block .accordion-item {
  border-bottom: 1px solid #ebf0f2;
}

.accordion-header {
  position: relative;
  display: block;
  width: 100%;
  padding: 20px 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: left;
  cursor: pointer;
}

.accordion-header::before,
.accordion-header::after {
  position: absolute;
  top: 50%;
  right: 36px;
  background-color: #444f57;
  translate: 50% -50%;
  content: '';
}

.accordion-header::before {
  width: 15px;
  height: 2px;
}

.accordion-header::after {
  width: 2px;
  height: 15px;
}

.accordion-item.is-open .accordion-header::after {
  opacity: 0;
}

.accordion-content {
  height: 0;
  font-size: 13px;
  line-height: 1.95;
  letter-spacing: 0.1em;
  overflow: hidden;
}

.accordion-item.active .accordion-content,
.accordion-item.is-open .accordion-content {
  height: auto;
  padding-top: 10px;
  padding-bottom: 30px;
}

.review-put-here {
  position: relative;
  margin-bottom: 60px !important;
  padding-top: 80px;
  padding-bottom: 0 !important;
  border: none !important;
}

.fs-c-productReview {
  position: relative;
  padding-top: 80px;
}

.review-put-here .fs-c-productReview {
  position: initial;
  padding: 0;
}

.review-banner {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  padding: 9px 24px;
  border: 1px solid #ced7de;
  border-radius: 30px;
}

.review-banner::before,
.review-banner::after {
  position: absolute;
  left: 33px;
  width: 13px;
  height: 10px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  content: '';
}

.review-banner::before {
  top: calc(100% + 1px);
  background-color: #ced7de;
  z-index: 0;
}

.review-banner::after {
  top: calc(100% + -1px);
  background-color: white;
  z-index: 10;
}

.review-text {
  font-size: 14px;
  letter-spacing: 0.04em;
}

.review-banner .highlight {
  color: #e2a037;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.fs-c-productReview__aggregateRating {
  margin-top: 6px;
  margin-bottom: 30px;
}

.fs-c-productReview .fs-c-productReview__aggregateRating::before {
  display: block;
  width: 100%;
  font-size: 12px;
  letter-spacing: 0.1em;
  content: 'この商品の平均評価';
  margin-bottom: 2px;
}

.fs-c-productReview__reviewList,
.fs-c-reviewList.fs-c-reviewList--product {
  display: flex;
  flex-direction: column;
  gap: 32px 0;
  margin-bottom: 60px;
}

.fs-c-reviewList__item {
  position: relative;
  padding-top: 24px;
  border-top: 1px solid #ebf0f2;
}

.fs-c-reviewInfo__reviewer.fs-c-reviewer {
  width: calc(100% - 80px);
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  margin-right: 120px;
  gap: 15px;
}

.fs-c-reviewer__name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.fs-body-reviews .fs-c-reviewer__name {
  flex: 1;
}

.fs-c-reviewerStatus {
  padding: 3px 17px 4px;
  color: white;
  font-size: 11px;
  letter-spacing: 0.1em;
  background-color: #2a7fa1;
  border-radius: 5px;
  display: inline-block;
}

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

.fs-c-reviewInfo__date dt {
  display: none;
}

.fs-c-reviewInfo__date dd {
  position: absolute;
  top: 31px;
  right: 0;
  color: #8695a3;
  font-size: 12px;
  letter-spacing: 0.03em;
}

.fs-body-reviews .fs-c-reviewList__item .fs-c-reviewInfo__date dd {
  position: relative;
  top: 0;
  margin-bottom: 5px;
}

.fs-c-reviewRating {
  margin-bottom: 16px;
}

.fs-c-reviewRating .fs-c-reviewStars::before {
  font-size: 20px;
}

.fs-c-productReview__addReview {
  position: absolute;
  top: 0;
  right: 0;
}

.fs-c-productReview__addReview a::before {
  display: block;
  width: 16px;
  aspect-ratio: 1/1;
  background: url(/item/pen.svg) no-repeat;
  background-size: 100% auto;
  content: '';
}

.fs-c-reviewList__item__body.fs-c-reviewBody {
  font-size: 13px;
  letter-spacing: 0.1em;
  line-height: 1.95;
}

.details-add-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 63px;
}

.fs-p-snsArea {
  display: flex;
  align-items: center;
  gap: 0 4px;
}

.fs-p-snsArea .fb_iframe_widget_fluid {
  padding-top: 7px;
}

.fs-c-button--viewAllReviews {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #2a7fa1;
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.fs-c-button--viewAllReviews::before,
.fs-c-button--viewAllReviews::after {
  content: '';
}

.fs-c-button--viewAllReviews::before {
  display: block;
  width: 18px;
  aspect-ratio: 1/1;
  background: url(/item/review.svg) no-repeat;
  background-size: 100% auto;
  margin-right: 11px;
}

.fs-c-button--viewAllReviews::after {
  display: block;
  width: 35px;
  aspect-ratio: 1 / 1;
  border: 1px solid #2a7fa1;
  border-radius: 50%;
  background: url(/item/arrow_right_blue.svg) no-repeat;
  background-size: 6px auto;
  background-position: 50% 50%;
  margin-left: 10px;
}

.fs-p-card {
  padding: 32px 8% 32px;
  background-color: #f2f7fa;
}

.fs-p-card__title {
  margin-bottom: 19px;
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-align: center;
}

.fs-p-card__message p {
  margin-bottom: 22px;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2;
}

.fs-p-card__message .list {
  display: flex;
  flex-direction: column;
  gap: 4px 0;
  padding-top: 25px;
  border-top: 1px solid #ced7de;
}

.fs-p-card__message .list li {
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

.infoWrapper {
  margin-top: 37px;
  display: flex;
  flex-direction: column;
  gap: 8px 0;
}

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

.infoWrapper .fs-c-inquiryAboutProduct {
  display: block;
}

.fs-c-shippingAndPaymentMethods a,
.fs-c-returnedSpecialContract a,
.fs-c-inquiryAboutProduct span {
  color: #2a7fa1;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: underline;
  text-underline-offset: 3px;
}

#floting-bt {
  display: none;
}

/* brand story */
.story {
  position: relative;
}

.story-head {
  position: relative;
  height: 170px;
  padding-top: 85px;
}

.story-head-title {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px 0;
  z-index: 0;
}

.story-head-title-sm {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.story-head-title-lg {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
}

.story-head-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -10;
}

.story-movie {
  padding-top: 100px;
}

.story-movie-wrapper {
  position: relative;
  aspect-ratio: 16/9;
}

.story-movie-wrapper video,
.story-movie-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.story-contents {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}

.story-contents-wrapper {
  display: flex;
  flex-direction: column;
  gap: 100px 0;
  margin-bottom: 100px;
}

.story-contents-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0 5%;
  width: 100%;
}

.story-contents-block:nth-child(2n) {
  flex-direction: column-reverse;
}

.story-contents-box {
  width: 100%;
}

.story-contents-block:nth-child(2n) .story-contents-box {
  margin-top: 40px;
}

.story-contents-pic {
  will-change: filter;
}

.story-contents-pic-01 {
  width: 45%;
  margin-top: 30px;
  margin-left: auto;
}

.story-contents-pic-02 {
  width: 45%;
}

.story-contents-pic img {
  width: 100%;
}

.story-contents-lead {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.7;
}

.story-contents-lead-sm {
  font-size: 20px;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

.story-contents-sub {
  color: #8695a3;
  font-family: var(--font-poppins);
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.75;
  margin-bottom: 28px;
  padding-left: 5%;
}

.story-contents-item .story-contents-sub {
  padding-left: 0;
  margin-bottom: 16px;
}

.story-contents-text {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2;
  padding-left: 5%;
}

.story-contents-description {
  padding-left: 0;
}

.story-contents-block:nth-child(2n + 1) .story-contents-text {
  padding-left: 5%;
}

.story-contents-text + .story-contents-text {
  margin-top: 20px;
}

.story-contents-catch {
  padding-left: 5%;
  margin-top: 31px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.1em;
}

.story-contents-list {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
}

.story-contents-item {
  display: flex;
  flex-direction: column;
  background: linear-gradient(-20deg, #eaf5fc, #f5fdff, #f5feff, #eaf5fc);
  padding: 40px 8%;
}

.story-contents-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -10;
}

.story-brand {
  position: relative;
  padding-top: 302px;
  padding-bottom: 80px;
  background-color: #444f57;
  will-change: filter;
}

.story-brand-box {
  position: relative;
  padding: 80px 8% 80px;
  border-radius: 10px;
  backdrop-filter: blur(17px);
  will-change: backdrop-filter;
  z-index: 10;
}

.story-brand-box::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right, #eaf5fc, #f5fdff, #f5feff, #eaf5fc);

  opacity: 0.3;
  content: '';
}

.story-brand-sub {
  color: white;
  font-family: var(--font-poppins);
  font-size: 14px;
  letter-spacing: 0.13em;
  margin-bottom: 9px;
}

.story-brand-lead {
  display: flex;
  flex-direction: column;
  gap: 5px 0;
  color: white;
  margin-bottom: 36px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.6;
}

.story-brand-lead span {
  font-size: 16px;
  letter-spacing: 0.11em;
}

.story-brand-text {
  color: white;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-bottom: 42px;
}

.story-brand-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  object-fit: cover;
  z-index: 0;
}

.story-message {
  position: relative;
  padding-top: 120px;
  padding-bottom: 80px;
}

.story-message-text {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 2.45;
  text-align: center;
}

.story-message-logo {
  position: absolute;
  top: 20.1%;
  left: 50%;
  width: 76.6%;
  translate: -50% -50%;
  z-index: -10;
  will-change: filter;
}

.story-message-bg {
  position: absolute;
  top: 54%;
  left: 50%;
  width: 97%;
  translate: -50% -50%;
  z-index: -20;
  will-change: filter;
}

.membership {
  margin-bottom: 100px;
}

.membership-head {
  margin-bottom: 30px;
}

.membership-stage {
  padding-top: 60px;
  padding-bottom: 80px;
  background: linear-gradient(30deg, #eaf5fc, #f5fdff, #f5feff, #eaf5fc);
}

.membership-intro {
  margin-bottom: 40px;
}

.membership-intro-sub {
  font-size: 16px;
  line-height: 1.75;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-align: center;
  margin-bottom: 36px;
}

.membership-lead {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.75;
  text-align: center;
}

.membership-intro-text {
  font-size: 14px;
  letter-spacing: 0.11em;
  line-height: 2;
  margin-top: 20px;
  text-align: center;
}

.membership-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
}

.membership-block {
  width: 100%;
  background-color: white;
  padding: 40px 8%;
}

.membership-block-text {
  margin-top: 17px;
  margin-bottom: 24px;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.9;
  text-align: center;
}

.membership-box {
  border: 1px solid #ced7de;
  padding: 32px 8%;
  margin: 24px auto 60px;
}

.membership-box-list {
  display: flex;
  flex-direction: column;
  gap: 22px 0;
  margin-bottom: 27px;
}

.membership-box-item-title {
  margin-bottom: 0px;
  color: #2a7fa1;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.75;
}

.membership-box-item-text {
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 2;
}

.membership-item-note {
  position: relative;
  padding-left: 12px;
  color: #8695a3;
  font-size: 12px;
  letter-spacing: 0.07em;
  line-height: 1.9;
}

.membership-item-note::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '※';
}

.membership-catch {
  color: #2a7fa1;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.55;
  margin-bottom: 32px;
  text-align: center;
}

.membership-pic {
  width: 100%;
}

.membership-pic img {
  width: 100%;
}

.membership-area {
  background-color: #f2f7fa;
  border-radius: 5px;
  padding: 32px 8%;
}

.membership-area-lead {
  position: relative;
  padding-top: 35px;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
}

.membership-area-lead::before {
  position: absolute;
  top: 0px;
  left: 50%;
  width: 25px;
  aspect-ratio: 1/1;
  background: url(/item/iconQuestion.svg) no-repeat;
  background-size: 100% auto;
  content: '';
  translate: -50% 0;
}

.membership-area-text {
  margin-bottom: 20px;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 2;
}

.membership-area-note {
  position: relative;
  margin-top: 26px;
  margin-bottom: -10px;
  padding-left: 30px;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.75;
}

.membership-area-note::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '（例）';
}

.membership-container {
  padding-top: 85px;
}

.membership-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 60px;
  margin: 32px auto 100px;
}

.membership-icon {
  width: 100%;
  max-width: 220px;
  margin: 0 auto 16px;
}

.membership-item-text {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.75;
  text-align: center;
}

.membership-item-text span {
  font-size: 14px;
}

.membership-contents-box {
  margin: 32px auto 24px;
  padding: 32px 8%;
  background-color: #f2f7fa;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: center;
}

.membership-contents-box span {
  color: #2a7fa1;
  font-size: 20px;
  font-weight: 600;
}

.membership-contents-text {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: center;
}

.membership-contents-label {
  margin-top: 32px;
  margin-bottom: 16px;
  color: #2a7fa1;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
}

.membership-contents-btn {
  display: block;
  width: 276px;
  height: 50px;
  margin: 0 auto;
}

.membership-contents-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #2a7fa1;
  border-radius: 5px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.free-container > table {
  display: block;
  width: 90%;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 100px;
  border-bottom: 1px solid #ebf0f2;
}

.free-container > table tbody {
  display: block;
}

.free-container > table tr {
  display: flex;
  flex-direction: column;
  gap: 14px 0;
  border-top: 1px solid #ebf0f2;
  padding: 20px 0;
}

.free-container > table th {
  width: 100%;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  background-color: transparent;
  border: none;
}

.free-container > table td {
  width: 100%;
  padding: 0;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2;
  border: none;
}

.inquiry-container {
  width: 90%;
  margin: 0 auto 100px;
}

.inquiry-text {
  margin-bottom: 32px;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.85;
}

.inquiry-text span {
  color: #e56382;
}

.inquiry-form {
  padding: 32px 8% 44px;
  margin: 0 auto;
  border: 1px solid #ebf0f2;
}

.inquiry-table {
  margin-bottom: 36px;
}

.inquiry-name {
  margin-bottom: 17px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.inquiry-name-required::before {
  display: inline-block;
  color: #e56382;
  content: '*';
}

.inquiry-data + .inquiry-name {
  margin-top: 35px;
}

.inquiry-data {
  position: relative;
}

.inquiry-data-flex {
  display: flex;
  align-items: center;
}

.inquiry-data input[type='text'],
.inquiry-data input[type='email'],
.inquiry-data input[type='tel'],
.inquiry-data textarea {
  width: 100%;
  border: 1px solid #ebf0f2;
  background-color: #fff;
  padding: 14px 18px;
  font-size: 16px;
  letter-spacing: 0.05em;
}

.inquiry-data input[type='text']:placeholder,
.inquiry-data input[type='email']:placeholder,
.inquiry-data input[type='tel']:placeholder,
.inquiry-data textarea:placeholder {
  color: #8695a3;
}

.inquiry-data textarea {
  height: 150px;
  resize: none;
}

.inquiry-input + .inquiry-input {
  margin-left: 8px;
}

.inquiry-input-xs,
.inquiry-select-xs {
  max-width: 78px;
}

.inquiry-input-sm,
.inquiry-select-sm {
  max-width: 100px;
}

.inquiry-input-md,
.inquiry-select-md {
  max-width: 250px;
}

.inquiry-data select {
  width: 100%;
  border: 1px solid #ebf0f2;
  background-color: #fff;
  border-radius: 3px;
  padding: 14px 18px;
  font-size: 16px;
  letter-spacing: 0.05em;
}

.inquiry-data-label {
  position: relative;
  display: block;
}

.inquiry-data-label-select::before {
  position: absolute;
  top: 50%;
  right: 19px;
  width: 7px;
  aspect-ratio: 1/2;
  background: url('/item/arrow_right.svg') no-repeat;
  background-size: 100% auto;
  content: '';
  translate: 0 -50%;
  pointer-events: none;
}

.inquiry-data:has(.inquiry-select) .inquiry-data-label-select::before {
  display: none;
}

.inquiry-data-zip {
  margin-right: 12px;
  font-size: 16px;
}

.inquiry-data-bar {
  margin-right: 7px;
  margin-left: 7px;
  font-size: 16px;
}

.inquiry-data-text {
  margin-right: 10px;
  margin-left: 10px;
  font-size: 14px;
}

.fs-c-documentArticle {
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}

.login-contents {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 60px;
}

.fs-c-registeredUsers__title,
.fs-c-linkedServiceLogin__title,
.fs-c-newUsers__title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.11em;
  padding-bottom: 24px;
  margin-bottom: 40px;
  border-bottom: 1px solid #ebf0f2;
}

.fs-c-inputTable {
  display: block;
  /* background-color: #f2f7fa; */
  /* padding: 40px 5%; */
  margin-bottom: 36px;
}

.fs-c-inputTable tbody {
  display: flex;
  flex-direction: column;
  gap: 35px 0;
}

.fs-c-inputTable tbody tr {
  display: flex;
  flex-direction: column;
  gap: 17px 0;
}

.fs-c-inputTable__headerCell {
  width: 100%;
  padding: 0;
  text-align: left;
}

.fs-c-inputTable__headerCell,
.fs-c-inputTable__headerCell label,
.fs-c-inputTable__headerCell .fs-c-inputTable__label {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.fs-c-inputTable__headerCell:has(.fs-c-requiredMark)::before {
  display: inline-block;
  font-size: 16px;
  color: #e56382;
  content: '*';
}

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

.fs-c-inputTable__dataCell {
  position: relative;
  width: 100%;
  padding: 0;
  text-align: left;
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: 0.1em;
}

.fs-c-inputTable__dataCell input {
  width: 100%;
  border: 1px solid #ebf0f2 !important;
  background-color: #fff;
  padding: 14px 18px;
  font-size: 16px;
  letter-spacing: 0.05em;
}

.fs-c-button--particular {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 40px;
  border: none;
  border-radius: 0;
  padding: 0;
  translate: 0 -50%;
  border: none !important;
}

.details-info .fs-c-button--particular {
  position: relative;
  top: 0;
  right: 0;
  width: auto;
  translate: 0;
  transition: opacity 0.5s ease-in-out;
}

.details-info .fs-c-button--particular:hover {
  opacity: 0.75;
}

.fs-c-button--particular.fs-c-button--addToWishList--icon::before,
.fs-c-button--particular.fs-c-button--removeFromWishList--icon::before,
.fs-c-button--particular.fs-c-button--displayPassword::before,
.fs-c-button--particular.fs-c-button--hidePassword::before {
  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: 2.2rem;
}

.fs-c-button--displayPassword::before {
  content: '\e917';
}

.fs-c-button--hidePassword::before {
  content: '\e918';
}

.fs-c-inputInformation__button {
  margin-bottom: 30px;
}

.fs-c-button--primary + .fs-c-button--cancel {
  margin-top: 20px;
}

.fs-c-buttonContainer--pair .fs-c-button--primary + .fs-c-button--cancel {
  margin-top: 0;
}

.fs-c-button--addToAddressbook.fs-c-button--secondary {
  margin: 0;
}

.details-info .fs-c-button--primary {
  max-width: none;
  height: auto;
  background: transparent;
  border: none;
  color: white;
  border-radius: 0;
}

.details-info .fs-c-productActionButton-teiki .fs-c-button--primary {
  border-radius: 5px;
}

.fs-c-inputInformation__link {
  text-align: right;
}

.fs-c-textLink {
  font-size: 14px;
  color: #2a7fa1;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.fs-c-fsLogin {
  margin-bottom: 60px;
}

.fs-c-anotherLogin--google {
  margin-bottom: 30px;
}

.fs-c-anotherLogin__button--amazon,
.fs-c-anotherLogin--google iframe {
  margin: 0 auto !important;
  max-width: 100%;
  aspect-ratio: 290/45;
}

.fs-c-anotherLogin--line {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fs-c-anotherLogin__message--line {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.85;
}

.fs-c-guestPurchase {
  margin-top: 100px;
}

.fs-c-newUsers__message {
  margin-bottom: 36px;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.85;
}

.fs-c-noResultMessage__title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.11em;
  padding-bottom: 24px;
  margin-bottom: 40px;
  border-bottom: 1px solid #ebf0f2;
}

.fs-p-announcement {
  margin-bottom: 36px;
}

.fs-p-announcement__title {
  position: relative;
  padding-left: 20px;
  margin-bottom: 31px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.11em;
}

.fs-p-announcement__title::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2px;
  height: 70%;
  background-color: #8695a3;
  translate: 0 -50%;
  content: '';
}

.fs-p-announcement__body,
.fs-c-registerSuccessMessage {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.85;
}

.fs-c-inputInformation__message {
  margin-bottom: 55px;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.85;
}

.fs-c-inputInformation__message + form {
  padding: 53px 9.7% 60px;
  margin: 0 auto;
  border: 1px solid #ebf0f2;
}

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

.fs-c-dropdown::before {
  position: absolute;
  top: 50%;
  right: 19px;
  width: 7px;
  aspect-ratio: 1 / 2;
  background: url(/item/arrow_right.svg) no-repeat;
  background-size: 100% auto;
  content: '';
  translate: 0 -50%;
  pointer-events: none;
}

.fs-c-dropdown::after {
  display: none;
}

.fs-c-inputDate__year::before,
.fs-c-inputDate__month::before,
.fs-c-inputDate__date::before {
  display: none;
}

.fs-c-dropdown__menu {
  width: 100%;
  border: 1px solid #ebf0f2;
  background-color: #fff;
  border-radius: 3px;
  padding: 14px 18px;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.fs-c-radio__label {
  font-size: 14px;
  letter-spacing: 0.05em;
}

.fs-c-privacyPolicyAgreeField {
  margin-bottom: 36px;
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: 0.1em;
}

.fs-c-agreementConfirmationArea {
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.85;
}

.fs-c-checkbox__labelText {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.85;
}

.fs-c-agreementConfirmationArea__message {
  margin-bottom: 10px;
}

.fs-c-agreementConfirmation {
  margin: 0;
  padding: 0;
}

.fs-c-agreementConfirmation + .fs-c-agreementConfirmation {
  margin-top: 40px;
}

.fs-c-agreementConfirmation__message {
  font-size: 14px;
  background-color: #f2f7fa;
  padding: 10px 2.8%;
  margin-bottom: 10px;
}

.fs-c-checkbox__label {
  align-items: flex-start;
  gap: 0 5px;
}

.fs-c-checkbox__checkMark {
  margin-top: 5px;
}

.fs-c-agreementConfirmation__addon {
  margin: 0;
}

.fs-c-inputInformation__buttonMessage {
  margin-top: 20px;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-align: center;
}

.fs-c-history .fs-c-listControl {
  justify-content: flex-end;
}

.fs-body-reviews .fs-c-reviewList {
  margin-top: 87px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 20px;
}

.fs-body-reviews .fs-c-reviewList__item {
  border: none;
  padding: 0;
  display: block;
}

.fs-body-reviews .fs-c-reviewProduct__image {
  margin-bottom: 22px;
}

.fs-c-reviewProduct__image img {
  width: 100%;
}

.fs-body-reviews .fs-c-reviewList__item .fs-c-productName .fs-c-productName__name {
  margin-bottom: 5px;
}

.fs-body-reviews .fs-c-reviewList__item__info .fs-c-reviewRating {
  margin-bottom: 10px;
}

.fs-body-reviews .fs-c-reviewList__item__info .fs-c-reviewInfo__reviewer.fs-c-reviewer {
  gap: 10px;
  margin: 0 0 12px;
}

.fs-body-reviews .fs-c-reviewer__status {
  flex: none;
}

.fs-body-reviews .fs-c-reviewList__item__body {
  flex: 1;
}

.article-container {
  width: 90%;
  margin: 0 auto 100px;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.85;
}

.article-container-box {
  padding: 53px 8% 60px;
  margin-bottom: 20px;
  border: 1px solid #ebf0f2;
}

.article-container p + p {
  margin-top: 29px;
}

.article-container p + .btn-container {
  margin-top: 40px;
}

.article-container h2 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.11em;
  padding-bottom: 16px;
  margin-bottom: 28px;
  border-bottom: 1px solid #ebf0f2;
}

.article-container * + h2 {
  margin-top: 60px;
}

.article-container h3 {
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.11em;
}

.article-container h3::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2px;
  height: 70%;
  background-color: #8695a3;
  translate: 0 -50%;
  content: '';
}

.article-container h4 {
  position: relative;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.42;
}

.article-container h4 + * {
  margin-top: 0 !important;
}

.article-container ul,
.article-container ol {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.article-container * + h3 {
  margin-top: 40px;
}

.article-container figure {
  margin-top: 40px;
  margin-bottom: 40px;
}

.article-container blockquote {
  padding: 20px 6%;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  background-color: #f2f7fa;
  border-left: 8px solid #2a7fa1;
  font-size: 12px;
  font-style: italic;
}

.fs-c-moveToAnotherCart {
  margin-bottom: 20px;
}

.fs-c-moveToAnotherCart__message {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.85;
}

.fs-c-moveToAnotherCart__button {
  color: #2a7fa1;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fs-l-cart__contentsArea,
.fs-c-history {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 80px;
}

.fs-l-cart__mainColumn {
  flex: 1;
  width: 100%;
}

.fs-c-cartTableContainer {
  margin-bottom: 40px;
}

.fs-c-cartTable__row {
  border-bottom: 1px solid #ebf0f2;
  border-left: 1px solid #ebf0f2;
  border-right: 1px solid #ebf0f2;
}

.fs-c-cartTable__headerCell,
.fs-c-cartTable__dataCell {
  border-top: 1px solid #ebf0f2;
}

.fs-c-cartTable__product > .fs-c-cartTable__productImage {
  flex: none;
}

.fs-c-cartTable__dataCell--point::before,
.fs-c-cartTable__dataCell--quantity::before,
.fs-c-cartTable__dataCell--subtotal::before {
  display: inline-block;
  font-size: 12px;
  margin-bottom: 4px;
}

.fs-c-cartTable__dataCell--point::before {
  margin-bottom: 0;
}

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

.fs-c-cartTable__headerCell {
  font-size: 13px;
  font-weight: 600;
  background: #f2f7fa;
  padding: 8px 10px;
}

.fs-c-cartTable__productInfo {
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 10px;
}

.fs-c-cartTable__productInfo .fs-c-cartTable__unitPrice {
  margin-top: 5px;
}

.fs-c-cartTableContainer .fs-c-productPrice__main__price.fs-c-price {
  margin-bottom: 0;
}

.fs-c-cartTableContainer .fs-c-productPrice__main .fs-c-productPrice__main__price.fs-c-price::after {
  font-size: 12px;
}

.fs-c-cartTableContainer .fs-c-quantity__select {
  font-size: 12px;
  padding: 8px 10px;
}

.fs-c-cartTableContainer .fs-c-button--cancel--cart {
  font-size: 12px;
  color: #2a7fa1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fs-c-cartTableContainer .fs-c-price__price {
  font-size: 16px;
}

.fs-c-button--buyItLater .fs-c-button__label {
  justify-content: center;
}

.fs-c-cartTableContainer .fs-c-price__currencyMark {
  margin: 0;
}

.fs-c-cartDiscountInfo.fs-c-cartDiscountInfo--postage,
.fs-c-cartBundleInfo {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.85;
}

.fs-c-totalAndActions.fs-l-cart__sideColumn,
.fs-c-history__info {
  width: 100%;
  border: 1px solid #ebf0f2;
  padding: 30px 20px;
  font-size: 12px;
  line-height: 1.85;
  letter-spacing: 0.1em;
}

.fs-c-history__termCtrl {
  margin-bottom: 10px;
}

.fs-c-history__term {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.fs-c-pairList {
  border-top: 1px solid #ebf0f2;
  font-size: 14px;
  gap: 0;
}

.fs-c-pairList dt,
.fs-c-pairList dd {
  border-bottom: 1px solid #ebf0f2;
  padding: 5px 0;
}

.fs-c-pairList dd {
  text-align: right;
}

.fs-c-checkout-shippingDetail__deliveryDetail .fs-c-pairList {
  border: none;
}

.fs-c-checkout-shippingDetail__deliveryDetail .fs-c-pairList dd,
.fs-c-checkout-shippingDetail__deliveryDetail .fs-c-pairList dt {
  text-align: left;
  padding: 0;
  border: none;
}

.fs-c-pairList > dt::after {
  position: relative;
}

.fs-c-orderTotalTable {
  display: block;
  width: 100%;
  border-top: 1px solid #ebf0f2;
  margin-bottom: 20px;
}

.fs-c-subscriptionTotalTable--firstDelivery,
.fs-c-subscriptionTotalTable {
   display: block;
   width: 100%;
   margin-bottom: 25px;
}

.fs-c-subscriptionTotalTable__caption {
  display: block;
}

.fs-c-orderTotalTable tbody,
.fs-c-subscriptionTotalTable--firstDelivery tbody,
.fs-c-subscriptionTotalTable tbody {
  display: block;
}

.fs-c-orderTotalTable tbody tr,
.fs-c-subscriptionTotalTable--firstDelivery tbody tr,
.fs-c-subscriptionTotalTable tbody tr {
  display: flex;
  justify-content: space-between;
  gap: 0 5%;
  border-bottom: 1px solid #ebf0f2;
  padding: 5px 0;
}

.fs-c-orderTotalTable th,
.fs-c-orderTotalTable td,
.fs-c-subscriptionTotalTable--firstDelivery th,
.fs-c-subscriptionTotalTable--firstDelivery td,
.fs-c-subscriptionTotalTable th,
.fs-c-subscriptionTotalTable td {
  border: none;
  font-size: 13px;
  letter-spacing: 0.1em;
  font-weight: 400;
  border: none !important;
}

.fs-c-orderTotalTable td .fs-c-price,
.fs-c-subscriptionTotalTable--firstDelivery td .fs-c-price,
.fs-c-subscriptionTotalTable td .fs-c-price {
  font-size: 16px;
  font-weight: 600;
}

.fs-c-orderTotalTable td .fs-c-price__currencyMark,
.fs-c-subscriptionTotalTable--firstDelivery td .fs-c-price__currencyMark {
  margin: 0;
}

.fs-c-orderTotalTable td {
  text-align: right;
}

.fs-c-estimatedDeliveryDate {
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.85;
  margin-bottom: 30px;
}

.fs-c-purchaseHere.fs-c-cartPayment {
  margin-bottom: 30px;
}

.fs-c-purchaseHere__message,
.fs-c-linkedServiceLogin__message,
.fs-c-payWithAmazon__message {
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.fs-c-buttonContainer--loginAndPurchase + .fs-c-buttonContainer--unregisteredUserPurchase {
  margin-top: 20px;
}

.fs-c-totalAndActions.fs-l-cart__sideColumn .fs-c-payWithAmazon__button {
  max-width: 100%;
}

.hidden-sp {
  display: none;
}

.fs-c-subgroup {
  position: relative;
  margin-bottom: 60px;
}

.fs-c-subgroup::before {
  display: block;
  font-family: var(--font-poppins);
  font-size: 14px;
  color: #8695a3;
  margin-bottom: 27px;
  letter-spacing: 0.1em;
  content: 'Category';
}

.fs-c-subgroupList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.fs-c-subgroupList__item a {
  display: block;
  width: 100%;
  aspect-ratio: 276/120;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.fs-c-subgroupList__item a[href='/c/item/supplement'] {
  background-image: url('/item/subgroupList_supplement.webp');
}

.fs-c-subgroupList__item a[href='/c/item/haircare'] {
  background-image: url('/item/subgroupList_haircare.webp');
}

.fs-c-subgroupList__item a[href='/c/item/haircare/hair-mist'] {
  background-image: url('/item/subgroupList_hairmist.webp');
}

.fs-c-subgroupList__item a[href='/c/item/skincare'] {
  background-image: url('/item/subgroupList_skincare.webp');
}

.fs-c-subgroupList__item a[href='/c/item/skincare/face-pack'] {
  background-image: url('/item/subgroupList_facepack.webp');
}

.fs-c-subgroupList__item a[href='/c/item/skincare/beauty-serum'] {
  background-image: url('/item/subgroupList_beautyserum.webp');
}

.fs-c-subgroupList__item a[href='/c/item/skincare/gel-cream'] {
  background-image: url('/item/subgroupList_gelcream.webp');
}

.fs-c-subgroupList__item a[href='/c/item/skincare/lotion'] {
  background-image: url('/item/subgroupList_lotion.webp');
}

.fs-c-subgroupList__item a[href='/c/item/skincare/face-wash'] {
  background-image: url('/item/subgroupList_facewash.webp');
}

.fs-c-subgroupList__item a[href='/c/item/skincare/cleansing'] {
  background-image: url('/item/subgroupList_cleansing.webp');
}

.fs-c-subgroupList__item a[href='/c/brand/themecell-series'] {
  background-image: url('/item/subgroupList_andthemecell.webp');
}

.fs-c-subgroupList__item a[href='/c/brand/shinme'] {
  background-image: url('/item/subgroupList_shinandme.webp');
}

.fs-c-subgroupList__item a[href='/c/brand/other'] {
  background-image: url('/item/subgroupList_others.webp');
}

.fs-c-subgroupList__item a[href='/c/trouble/byage'] {
  background-image: url('/item/subgroupList_byage.webp');
}

.fs-c-subgroupList__item a[href='/c/trouble/byage/40s-plus'] {
  background-image: url('/item/subgroupList_40s.webp');
}

.fs-c-subgroupList__item a[href='/c/trouble/byage/30s'] {
  background-image: url('/item/subgroupList_30s.webp');
}

.fs-c-subgroupList__item a[href='/c/trouble/byage/10-20s'] {
  background-image: url('/item/subgroupList_20s.webp');
}

.fs-c-subgroupList__item a[href='/c/trouble/body'] {
  background-image: url('/item/subgroupList_body.webp');
}

.fs-c-subgroupList__item a[href='/c/trouble/body/stress-damage'] {
  background-image: url('/item/subgroupList_stressdamage.webp');
}

.fs-c-subgroupList__item a[href='/c/trouble/body/constipation'] {
  background-image: url('/item/subgroupList_constipation.webp');
}

.fs-c-subgroupList__item a[href='/c/trouble/body/Antioxidant'] {
  background-image: url('/item/subgroupList_antioxidant.webp');
}

.fs-c-subgroupList__item a[href='/c/trouble/body/basal-metabolism-up'] {
  background-image: url('/item/subgroupList_basalmetabolismup.webp');
}

.fs-c-subgroupList__item a[href='/c/trouble/body/hangover'] {
  background-image: url('/item/subgroupList_hangover.webp');
}

.fs-c-subgroupList__item a[href='/c/trouble/hair'] {
  background-image: url('/item/subgroupList_hair.webp');
}

.fs-c-subgroupList__item a[href='/c/trouble/hair/lack-of-shine'] {
  background-image: url('/item/subgroupList_lackofshine.webp');
}

.fs-c-subgroupList__item a[href='/c/trouble/hair/hari-koshi'] {
  background-image: url('/item/subgroupList_harikoshi.webp');
}

.fs-c-subgroupList__item a[href='/c/trouble/hair/static'] {
  background-image: url('/item/subgroupList_static.webp');
}

.fs-c-subgroupList__item a[href='/c/trouble/hair/scalp-odor'] {
  background-image: url('/item/subgroupList_scalpodor.webp');
}

.fs-c-subgroupList__item a[href='/c/trouble/hair/damage-care'] {
  background-image: url('/item/subgroupList_damagecare.webp');
}

.fs-c-subgroupList__item a[href='/c/trouble/skin'] {
  background-image: url('/item/subgroupList_skin.webp');
}

.fs-c-subgroupList__item a[href='/c/trouble/skin/shiwa'] {
  background-image: url('/item/subgroupList_wrinklessmilelines.webp');
}

.fs-c-subgroupList__item a[href='/c/trouble/skin/pores'] {
  background-image: url('/item/subgroupList_pores.webp');
}

.fs-c-subgroupList__item a[href='/c/trouble/skin/atopy'] {
  background-image: url('/item/subgroupList_atopy.webp');
}

.fs-c-subgroupList__item a[href='/c/trouble/skin/oily-skin'] {
  background-image: url('/item/subgroupList_oilyskin.webp');
}

.fs-c-subgroupList__item a[href='/c/trouble/skin/wrinkles'] {
  background-image: url('/item/subgroupList_wrinkles.webp');
}

.fs-c-subgroupList__item a[href='/c/trouble/skin/stain'] {
  background-image: url('/item/subgroupList_stain.webp');
}

.fs-c-subgroupList__item a[href='/c/trouble/skin/drying'] {
  background-image: url('/item/subgroupList_drying.webp');
}

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

.fs-p-accountInfo {
  background: #f7f7f7;
  color: #333333;
  padding: 16px 20px;
}

.fs-clientInfo.is-ready {
  display: block;
}

.fs-body-my-top .fs-p-accountInfo {
  margin-bottom: 24px;
}

.fs-p-accountInfo__header,
.fs-p-accountInfo__currentPurchase {
  display: flex;
  align-items: baseline;
  flex-direction: row;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 10px;
}

.fs-p-accountInfo__body {
  text-align: center;
  background: #ffffff;
  padding: 8px;
  margin-bottom: 8px;
  font-size: 14px;
}

.fs-p-accountInfo__body {
  text-align: center;
}

.fs-p-accountInfo__point__point__available {
  font-weight: bold;
}

.fs-p-accountInfo__point__point__available__number {
  color: #c98696;
  font-size: 2.2rem;
}

.fs-c-accountService {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 16px;
}

.fs-c-accountService__page {
  flex-basis: calc(100% / 2 - 8px);
  display: flex;
  align-items: stretch;
  height: 128px;
}

.fs-c-accountService__page a,
.fs-c-button--myPageTop {
  transition: opacity 0.5s ease-in-out;
}

.fs-c-accountService__page a:hover,
.fs-c-button--myPageTop:hover {
  opacity: 0.75;
}

.fs-c-accountService__page--couponList {
  flex-basis: 100%;
}

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

.fs-c-accountService__page:not(.fs-c-accountService__page--accountDelete) .fs-c-accountService__pageLink {
  box-shadow: 0 0 2px #b2b2b2;
  background: #f7f7f7;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  color: #141414;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  width: 100%;
}

.fs-c-accountService__page:not(.fs-c-accountService__page--accountDelete) .fs-c-accountService__pageLink__label {
  flex-grow: 1;
  font-size: 1.2rem;
}

.fs-c-accountService__page:not(.fs-c-accountService__page--accountDelete) .fs-c-accountService__pageLink__label::before {
  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;
  display: block;
  color: #383838;
  font-size: 48px;
  line-height: 1.2;
  margin: 8px auto 0;
  width: 64px;
  height: 64px;
}

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

.fs-c-accountService__page--membershipCard .fs-c-accountService__pageLink__label::before {
  content: '\e93a';
}
.fs-c-accountService__page--couponList .fs-c-accountService__pageLink__label::before {
  content: '\e900';
}
.fs-c-accountService__page--wishList .fs-c-accountService__pageLink__label::before {
  content: '\e901';
}
.fs-c-accountService__page--orderHistoryList .fs-c-accountService__pageLink__label::before {
  content: '\e902';
}
.fs-c-accountService__page--storeOrderHistoryList .fs-c-accountService__pageLink__label::before {
  content: '\e93b';
}
.fs-c-accountService__page--subscriptionHistoryList .fs-c-accountService__pageLink__label::before {
  content: '\e93e';
}
.fs-c-accountService__page--pointHistory .fs-c-accountService__pageLink__label::before {
  content: '\e903';
}
.fs-c-accountService__page--accountReviews .fs-c-accountService__pageLink__label::before {
  content: '\e904';
}
.fs-c-accountService__page--accountCard .fs-c-accountService__pageLink__label::before {
  content: '\e905';
}
.fs-c-accountService__page--addressbook .fs-c-accountService__pageLink__label::before {
  content: '\e906';
}
.fs-c-accountService__page--lineIdLink .fs-c-accountService__pageLink__label::before {
  content: '\e907';
}
.fs-c-accountService__page--accountPassword .fs-c-accountService__pageLink__label::before {
  content: '\e908';
}
.fs-c-accountService__page--accountSettingsModify .fs-c-accountService__pageLink__label::before {
  content: '\e909';
}
.fs-c-accountService__page--membershipMerge .fs-c-accountService__pageLink__label::before {
  content: '\e93c';
}
.fs-c-accountService__page--linkedAccounts .fs-c-accountService__pageLink__label::before {
  content: '\e93f';
}

.fs-c-accountService__page:not(.fs-c-accountService__page--accountDelete) .fs-c-accountService__pageLink {
  box-shadow: 0 0 2px #b2b2b2;
  background: #f7f7f7;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  color: #141414;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  width: 100%;
}

.fs-c-accountService__page:not(.fs-c-accountService__page--accountDelete) .fs-c-accountService__pageLink__label {
  flex-grow: 1;
  font-size: 1.2rem;
}

.fs-c-buttonContainer--myPageTop,
.fs-c-buttonContainer--backToRegister {
  margin-top: 40px;
}

.fs-c-button--myPageTop .fs-c-button__label,
.fs-c-button--back .fs-c-button__label,
.fs-c-buttonContainer--backToRegister .fs-c-button__label {
  color: #2a7fa1;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fs-c-pointListTable.fs-c-listTable {
  width: 100%;
  margin: 12px 0;
}

.fs-c-pointListTable.fs-c-listTable th {
  font-size: 13px;
  font-weight: 600;
  background: #f2f7fa;
  border: 1px solid #ccc;
  padding: 8px 10px;
  min-width: 0;
}

.fs-c-pointListTable.fs-c-listTable td {
  border: 1px solid #ccc;
  padding: 8px;
  font-size: 13px;
}

.fs-c-pointSummary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  margin: 0;
  font-size: 14px;
}
.fs-c-pointSummary > dd {
  margin-left: 0;
  text-align: right;
}
.fs-c-pointSummary [class$='--availablePoint'] {
  padding: 20px 12px 8px;
  background: rgba(126, 126, 126, 0.08);
}
.fs-c-pointSummary__label--availablePoint {
  grid-column: 1;
  grid-row: 1;
}
.fs-c-pointSummary__value--availablePoint {
  grid-column: 2/4;
  grid-row: 1;
  padding-bottom: 8px;
}
.fs-c-pointSummary__value--availablePoint .fs-c-pointSummary__number {
  color: #c98696;
  font-size: 2.6rem;
}
.fs-c-pointSummary [class$='--limitedPoint'] {
  background: rgba(126, 126, 126, 0.08);
  padding-bottom: 16px;
  margin-bottom: 16px;
  padding-right: 12px;
}
.fs-c-pointSummary__label--limitedPoint {
  grid-column: 1/3;
  grid-row: 2;
  text-align: right;
}
.fs-c-pointSummary__label--limitedPoint::before {
  content: '（';
}
.fs-c-pointSummary__label--limitedPoint::after {
  content: '：';
}
.fs-c-pointSummary__value--limitedPoint {
  grid-column: 3;
  grid-row: 2;
}
.fs-c-pointSummary__value--limitedPoint::after {
  content: '）';
}
.fs-c-pointSummary__label--purchasePointExpiration,
.fs-c-pointSummary__label--waitingPoint,
.fs-c-pointSummary__label--purchasePointTotal {
  grid-column: 1;
}
.fs-c-pointSummary__value--purchasePointExpiration,
.fs-c-pointSummary__value--waitingPoint,
.fs-c-pointSummary__value--purchasePointTotal {
  grid-column: 2/4;
}
.fs-c-pointSummary [class$='--purchasePointExpiration'] {
  grid-row: 3;
}
.fs-c-pointSummary [class$='--waitingPoint'] {
  grid-row: 4;
}
.fs-c-pointSummary [class$='--purchasePointTotal'] {
  grid-row: 5;
}

.fs-c-history__termCtrl + .fs-c-listControl {
  margin-top: 24px;
}

.fs-c-history__listContainer {
  width: 100%;
}

.fs-c-addressBookList__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.fs-c-addressBookList__addButton.fs-c-buttonContainer--addAddressbook {
  width: min(100%, 280px);
}

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

.fs-c-linkService__status {
  font-size: 13px;
}

.fs-c-listTable {
  border-collapse: collapse;
  width: 100%;
  margin: 8px 0;
  font-size: 14px;
}
.fs-c-listTable > thead {
  border-top: 1px solid #b2b2b2;
  background: rgba(126, 126, 126, 0.08);
}
.fs-c-listTable > tbody {
  border-top: 1px solid #b2b2b2;
  border-bottom: 1px solid #b2b2b2;
}
.fs-c-listTable > tbody > tr:nth-child(even) {
  background: rgba(126, 126, 126, 0.08);
}
.fs-c-listTable th,
.fs-c-listTable td {
  border-right: 1px solid #b2b2b2;
  border-left: 1px solid #b2b2b2;
  padding: 12px;
}
.fs-c-listTable th:first-child,
.fs-c-listTable td:first-child {
  border-left: none;
}
.fs-c-listTable th:last-child,
.fs-c-listTable td:last-child {
  border-right: none;
}

.fs-c-listTable .fs-c-address {
  padding: 0;
  background: transparent;
  line-height: 1.85;
  margin: 0;
}

.fs-c-linkServicesList {
  display: grid;
  gap: 16px;
}

.fs-c-linkService {
  display: grid;
  grid-template-columns: 1fr 1fr 290px;
  align-items: center;
  gap: 16px;
}

.fs-c-linkServicesList__item {
  box-shadow: 0 0 2px #b2b2b2;
  border: 1px solid #ebf0f2;
  background-color: #ffffff;
  border-radius: 3px;
  padding: 16px;
}

.fs-c-linkService__service__label {
  color: #333333;
  font-weight: 700;
  font-size: 14px;
}

.fs-c-linkService__status__label {
  color: #aaaaaa;
}
.fs-c-linkService.is-linked .fs-c-linkService__status__label {
  color: #c98696;
}

.fs-c-linkService__button {
  align-self: stretch;
  display: flex;
  align-items: stretch;
  width: 290px;
}

.fs-p-banner {
  border-radius: 3px;
  border: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fs-p-banner:hover {
  opacity: 0.6;
}

.fs-p-banner--lineIdLink {
  background: #50c900;
  border-color: #50c900;
  max-width: 50%;
  margin: auto;
  margin-top: 30px;
  margin-bottom: 60px;
}

.fs-p-banner__link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 12px 8px;
  position: relative;
}
.fs-p-banner__link:hover {
  text-decoration: none;
}
.fs-p-banner__link i {
  font-size: 1.4rem;
  padding-right: 4px;
}
.fs-p-banner__label {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
}

.fs-p-banner--lineIdLink .fs-p-banner__link {
  color: #ffffff;
}

.fs-p-banner__label--emphasis {
  font-size: 18px;
}

[class*='fs-l-col--'] {
  display: grid;
  grid-gap: 16px;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
}
[class*='fs-l-col--'] img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.fs-c-imageContainer__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: auto;
}

.fs-c-descriptionList {
  border-top: 1px solid #ebf0f2;
}

.fs-c-descriptionList:not(:first-child) {
  margin: 24px 0;
}

.fs-c-descriptionList__label {
  font-weight: 600;
  padding-top: 24px;
  font-size: 14px;
  line-height: 1.85;
}
.fs-c-descriptionList__content {
  border-bottom: 1px solid #ebf0f2;
  margin: 0;
  padding-bottom: 24px;
  font-size: 14px;
  line-height: 1.85;
}

.fs-c-buttonContainer--deleteChange {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  gap: 20px;
}
.fs-c-buttonContainer--pair {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 32px;
}
.fs-c-buttonContainer--pair > *:first-child {
  grid-row: 1;
  grid-column: 1;
}
.fs-c-buttonContainer--pair > *:last-child {
  grid-row: 2;
  grid-column: 1;
}

.fs-c-button--delete.fs-c-button--standard,
.fs-c-button--changeInfomation.fs-c-button--secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 35px;
  border-radius: 5px;
  border: 2px solid #2a7fa1;
  color: #2a7fa1;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.fs-c-button--changeInfomation.fs-c-button--secondary {
  border-color: #8695a3;
  color: #8695a3;
  border-color: #8695a3;
}

.fs-c-modal__header {
  background: #f7f7f7;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  padding: 8px 16px;
  font-size: 13px;
}

.fs-c-modal__title,
.fs-c-modal__productName {
  font-size: inherit;
  font-weight: bold;
  margin: 0;
  padding: 0.1em 0 0;
}

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

.fs-c-modal__productPrice {
  font-weight: normal;
}

.fs-c-modal--inquiry .fs-c-modal__inner {
  min-width: 360px;
}

.fs-c-modal .fs-c-inputInformation__message {
  margin: 24px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.fs-c-modal .fs-c-inputInformation__field {
  margin: 24px auto;
  max-width: 600px;
}

.fs-c-modal form {
  border: none;
  padding: 0 !important;
}

.fs-c-modal .fs-c-inputTable tbody {
  gap: 0;
}

.fs-c-modal .fs-c-address {
  padding: 0;
  background: transparent;
  margin: 0;
}

.fs-c-modal .fs-c-inputTable--inModal > tbody > tr + tr,
.fs-c-modal .fs-c-inputTable tbody tr {
  padding: 0;
}

.fs-c-modal .fs-c-inputTable {
  margin: 0;
}

.fs-c-modal .fs-c-inputInformation__button {
  margin-bottom: 14px;
  gap: 0;
}

.fs-c-modal .fs-c-inquiryMessage {
  font-size: 13px;
  letter-spacing: 0.1em;
  line-height: 1.85;
  margin-bottom: 12px;
}

.fs-c-button--sendInquiry {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  border: 2px solid #2a7fa1;
  border-radius: 5px;
  color: #2a7fa1;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out;
}

.fs-c-button--sendInquiry:hover {
  background-color: #2a7fa1;
  color: white;
}

.fs-c-checkout-preview {
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  padding: 16px;
  background: #ffffff;
  color: #333333;
  font-size: 14px;
}
.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: grid;
  grid-template-rows: auto auto;
  grid-row-gap: 8px;
}
.fs-c-checkout-previewAndEdit > * {
  align-self: center;
}
.fs-c-checkout-previewAndEdit__info {
  border: 3px solid #e5e5e5;
  border-radius: 3px;
  line-height: 1;
  padding: 8px;
}
.fs-c-checkout-previewAndEdit__info:only-child {
  grid-column: 1/3;
}

.fs-c-checkout-customerInfo__address.fs-c-address {
  padding: 0;
  background: transparent;
}

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

.fs-c-button--primary.is-disabled,
.fs-c-button--secondary.is-disabled,
.fs-c-button--particular.is-disabled,
.fs-c-button--standard.is-disabled {
  background: #f7f7f7;
  border-color: transparent;
  box-shadow: none;
  color: #b2b2b2;
  cursor: default;
}
.fs-c-button--primary.is-disabled:hover,
.fs-c-button--secondary.is-disabled:hover,
.fs-c-button--particular.is-disabled:hover,
.fs-c-button--standard.is-disabled:hover {
  opacity: 1;
}

[class^='fs-body-checkout'] .fs-l-checkout__mainColumn > * + * {
  margin-top: 24px;
}

.fs-c-checkout-shippingOptionPreview {
  margin: 0;
  padding: 16px;
  background-color: #f7f7f7;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fs-c-checkout-shippingOptionPreview__label:not(:first-child) {
  margin-top: 24px;
}
.fs-c-checkout-shippingOptionPreview__value {
  margin: 0;
  font-size: 16px;
}
.fs-c-checkout-shippingOptionPreview__note {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 8px;
  font-size: 13px;
  background-color: #ffffff;
}
.fs-c-checkout-shippingOptionPreview__note > p {
  margin: 0;
}

.fs-c-checkout-shippingDestination {
  display: grid;
  gap: 16px 8px;
}
.fs-c-checkout-shippingDestination__name {
  font-size: 1.8rem;
  display: flex;
  align-items: baseline;
}
.fs-c-checkout-shippingDestination__control {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fs-c-checkout-heading {
  background-color: #383838;
  color: #ffffff;
  font-size: 1.4rem;
  padding: 4px;
  text-align: center;
  margin: 0;
}

.fs-c-checkout-heading-lv2 {
  margin: 0;
  border-left: 2px solid #999999;
  padding-left: 8px;
}

.fs-c-checkout-shippingAddress {
  display: grid;
  gap: 0;
}

.fs-c-checkout-shippingDestination__control {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fs-c-checkout-shippingDetail {
  display: grid;
  gap: 16px;
}

.fs-c-deliveryDateInfo__info__date {
  font-weight: bold;
}

.fs-c-checkout-shippingDetail__parcel {
  display: grid;
  gap: 16px;
}

.fs-c-checkout-shippingParcel {
  border: 1px solid #e5e5e5;
}
.fs-c-checkout-shippingParcel__title {
  background: #f7f7f7;
  padding: 8px;
}
.fs-c-checkout-shippingParcel__productList {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fs-c-checkout-shippingParcel__product {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  margin: 8px;
  padding: 8px;
}
.fs-c-checkout-shippingParcel__product + .fs-c-checkout-shippingParcel__product {
  border-top: 1px solid #e5e5e5;
}

.fs-c-checkout-shippingDetail__detail {
  display: grid;
  gap: 8px;
}

.fs-c-checkout-shippingDetail__shippingCarrier {
  display: grid;
  gap: 8px;
}

.fs-c-checkout-shippingDetail__shippingCarrier__comment {
  border: 1px solid #e5e5e5;
  padding: 12px 16px;
  font-size: 13px;
  margin-bottom: 4px;
}

.fs-c-checkout-shippingDetail__wrappingInfo {
  display: grid;
  gap: 8px;
}
.fs-c-checkout-shippingDetail__outline {
  display: grid;
  gap: 8px;
}

.fs-c-checkout-shippingDetail__deliveryDetail {
  background: #f7f7f7;
  padding: 8px;
  display: grid;
  gap: 8px;
  font-size: 13px;
}

.fs-c-pairList {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-auto-rows: auto;
  grid-auto-flow: row;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: baseline;
  margin: 0;
}

.fs-c-pairList > * {
  margin: 0;
}
.fs-c-pairList > dt {
  position: relative;
  padding-right: 8px;
}

.fs-c-destinationFeeTable {
  border-collapse: collapse;
  width: 100%;
}

[class^='fs-body-checkout'] .fs-l-checkout__mainColumn > * + * {
  margin-top: 24px;
}
[class^='fs-body-checkout'] .fs-l-checkout__sideColumn {
  margin-top: 24px;
}
[class^='fs-body-checkout'] .fs-l-checkout__sideColumn .fs-c-agreementConfirmationArea,
[class^='fs-body-checkout'] .fs-l-checkout__sideColumn .fs-c-additionalCheckField,
[class^='fs-body-checkout'] .fs-l-checkout__sideColumn .fs-c-fieldMessage {
  font-size: 1.2rem;
}
[class^='fs-body-checkout'] .fs-l-checkout__sideColumn .fs-c-additionalCheckField {
  margin-top: 8px;
}
[class^='fs-body-checkout'] .fs-l-checkout__sideColumn .fs-c-fieldMessage {
  margin-top: 0;
}

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

.fs-c-subscriptionTotal {
  margin-top: 40px;
}

.fs-c-checkout-preview__title,
.fs-c-subscriptionTotal__title{
  border-bottom: 1px solid #999999;
  font-size: 14px;
  line-height: 1;
  margin: 0 0 14px;
  padding: 0 0 14px;
  text-align: center;
}
.fs-c-checkout-preview__body > * + * {
  margin-top: 8px;
}

.fs-c-checkout-paymentMethod__title {
  background: #f7f7f7;
  color: #333333;
}

.fs-c-checkout-couponCodeInput {
  background: #f7f7f7;
  padding: 8px;
}
.fs-c-checkout-couponCodeInput__title {
  font-size: 1.2rem;
  flex-basis: 100%;
}

.fs-c-checkout-couponCodeInput > *:not(:last-child) {
  margin-right: 8px;
}

.fs-c-checkout-previewAndEdit {
  display: grid;
  grid-template-rows: auto auto;
  grid-row-gap: 8px;
}
.fs-c-checkout-previewAndEdit > * {
  align-self: center;
}
.fs-c-checkout-previewAndEdit__info {
  border: 3px solid #e5e5e5;
  border-radius: 3px;
  line-height: 1;
  padding: 8px;
}
.fs-c-checkout-previewAndEdit__info:only-child {
  grid-column: 1/3;
}

.fs-c-productImage__image {
  display: block;
  max-width: 100%;
}

.fs-c-checkout-shippingParcel__productImage__image {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.fs-c-checkout-shippingAddress__name {
  font-size: 17px;
  display: flex;
  align-items: baseline;
  margin-bottom: 4px;
}

.fs-c-checkout-shippingInfo__body {
  display: grid;
  gap: 24px;
}

.fs-c-checkout-shippingParcel__productInfo {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 8px;
}

.fs-c-checkout-shippingParcel__productName,
.fs-c-checkout-shippingParcel__listedOptionPrice {
  grid-column: 1 / span 2;
}
.fs-c-checkout-shippingParcel__productVariation,
.fs-c-checkout-shippingParcel__productSelection {
  grid-column: 1 / span 2;
  font-size: 1rem;
}

.fs-c-checkout-shippingParcel__productInfo .fs-c-checkout-shippingParcel__quantity {
  margin-top: 3px;
}

.fs-c-destinationFeeTable,
.fs-c-destinationFeeTable__headerCell,
.fs-c-destinationFeeTable__dataCell {
  border: 1px solid #b2b2b2;
}
.fs-c-destinationFeeTable__caption {
  margin-bottom: 4px;
}

.fs-c-destinationFeeTable__headerCell {
  background: rgba(126, 126, 126, 0.08);
  font-weight: normal;
}
.fs-c-destinationFeeTable__headerCell,
.fs-c-destinationFeeTable__dataCell {
  padding: 8px 16px;
  text-align: right;
}

.fs-c-wishlistProduct {
  margin-top: 80px;
}

.fs-c-wishlistProduct__title {
  position: relative;
  padding-left: 20px;
  margin-bottom: 31px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.11em;
}

.fs-c-wishlistProduct__title::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2px;
  height: 70%;
  background-color: #8695a3;
  translate: 0 -50%;
  content: '';
}

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

.fs-c-productListCarousel__list .slick-track {
  display: flex;
  gap: 25px;
}

.fs-c-wishlistProduct__list .slick-slide {
  max-width: 200px;
  margin-right: 25px;
  float: none;
  height: auto;
}

.fs-c-wishlistProduct__list .slick-slide > div {
  height: 100%;
}

.fs-c-button--carousel {
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: linear;
  transition-delay: 0s;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 4.4rem;
  line-height: 1;
  min-height: 1em;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fs-c-button--carousel .fs-c-button__label {
  display: none;
}
.fs-c-button--carousel::before {
  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;
}
.fs-c-button--carousel--prev::before {
  content: '\e90b';
}
.fs-c-button--carousel--next::before {
  content: '\e90c';
}
.fs-c-button--carousel:hover {
  opacity: 0.6;
}

.translate-buttons {
  display: none;
  position: fixed;
  top: 150px;
  right: 0;
  transition: top 0.5s ease-in-out;
}

body:has(.story) .translate-buttons,
body:has(.free-container > table) .translate-buttons {
  /* display: block; */
}

.lang-btn {
  /* position: absolute; */
  top: 0;
  right: 0;
  width: 100px;
  height: 40px;
  background: #2a7fa1;
  color: white;
  cursor: pointer;
  border-radius: 25px 0 0 25px;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.lang-btn:hover {
  opacity: 0.75;
}

html[lang='ja'] .lang-btn-ja {
  display: none;
}

html[lang='en'] .lang-btn-en {
  display: none;
}

/* Google翻訳の余計な要素を非表示 */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

.goog-te-balloon-frame {
  display: none !important;
}

.fs-c-checkoutSuccess__title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.11em;
  padding-bottom: 24px;
  margin-bottom: 40px;
  border-bottom: 1px solid #ebf0f2;
}

.fs-c-checkoutSuccess__message {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.85;
}

.fs-c-checkoutSuccess__code {
  font-weight: 600;
  color: #2a7fa1;
}

.fs-c-reveiwNotes {
  margin-top: 60px;
  margin-bottom: 36px;
}

.fs-c-reveiwNotes h3 {
  position: relative;
  padding-left: 20px;
  margin-bottom: 31px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.11em;
}

.fs-c-reveiwNotes h3::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2px;
  height: 70%;
  background-color: #8695a3;
  translate: 0 -50%;
  content: '';
}

.fs-c-reveiwNotes p {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.85;
}

/* 以下レスポンシブ */
@media screen and (max-width: 480px) {
  .fs-c-linkService {
    grid-template-columns: 1fr 1fr;
    gap: 8px 40px;
  }
  .fs-c-linkService .fs-c-linkService__status {
    text-align: right;
  }
  .fs-c-linkService .fs-c-linkService__button {
    grid-column: 1 / span 2;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .lead {
    gap: 11px 0;
  }

  .lead-jp {
    font-size: 14px;
  }

  .lead-en {
    font-size: 50px;
  }

  .lead-en-sm {
    font-size: 35px;
    letter-spacing: 0.02em;
  }

  .contents-flex {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0 12.4%;
  }

  .contents-flex-start {
    align-items: flex-start;
  }

  .newItem .splide__arrows {
    position: absolute;
    left: min(1200px, 95%);
    top: -127px;
    translate: -100%;
    margin-bottom: 0;
  }

  .feature .splide__arrow,
  .newItem .splide__arrow {
    width: 70px;
  }

  .feature .splide__arrows svg,
  .newItem .splide__arrows svg {
    width: 18px;
  }

  .header {
    padding: 25px 3.5%;
  }

  .header-logo {
    width: 120px;
    margin-top: 10px;
  }

  .footer {
    padding: 183px 6.9% 47px;
  }

  .footer-logo {
    width: 150px;
    margin-bottom: 43px;
  }

  .footer-box {
    width: auto;
  }

  .footer-address {
    margin-bottom: 35px;
  }

  .footer-block {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer-sns-lead {
    margin-right: 27px;
  }

  .footer-sns-list {
    gap: 0 25px;
  }

  .hero {
    padding-top: 167px;
    padding-bottom: 182px;
  }

  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
  }

  .hero-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-item img {
    width: 100%;
    transition: opacity 0.5s ease-in-out;
  }

  .hero-item img:hover {
    opacity: 0.75;
  }

  .hero .splide__arrow {
    width: 35px;
    height: auto;
    aspect-ratio: 1/2;
    background-color: rgba(68, 79, 87, 0.3);
    opacity: 1;
  }

  .hero .splide__arrow.splide__arrow--prev {
    border-radius: 0 100px 100px 0;
    left: 0;
  }

  .hero .splide__arrow.splide__arrow--next {
    border-radius: 100px 0 0 100px;
    right: 0;
  }

  .hero .splide__arrow svg {
    width: 1.2em;
    fill: white;
    height: auto;
    aspect-ratio: 1/1;
  }

  .feature {
    padding-top: 100px;
  }

  .feature-slider {
    /* width: min(95%, calc(100vw - ((100vw - 1200px) / 2))); */
    margin-top: 51px;
    /* margin-right: 0; */
  }

  .feature-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5%;
  }

  .feature-item {
    position: relative;
  }

  .feature-thumb {
    transition: opacity 0.35s ease-in-out;
  }

  .feature-thumb-02,
  .feature-item a:hover .feature-thumb-01 {
    opacity: 0;
  }

  .feature-item a:hover .feature-thumb-02 {
    opacity: 1;
  }

  .feature-lead {
    font-size: 20px;
    transition: opacity 0.5s ease-in-out;
  }

  .feature-text {
    font-size: 14px;
    transition: opacity 0.5s ease-in-out;
  }

  .feature-item a:hover .feature-lead,
  .feature-item a:hover .feature-text {
    opacity: 0.75;
  }

  .newItem-slider {
    width: min(95%, calc(100vw - ((100vw - 1200px) / 2)));
    margin-top: 51px;
    margin-right: 0;
    margin-bottom: 48px;
  }

  .fs-c-productPrice__main__label {
    display: block;
    font-size: 12px;
    line-height: 1.75;
    letter-spacing: 0.1em;
    margin-bottom: 3px;
  }

  .details-info .fs-c-productPrice__main__label {
    margin-top: 6px;
  }

  .fs-c-productPrice__main__price.fs-c-price::after {
    font-size: 12px;
    content: '(税込)';
  }

  .fs-c-button--addToWishList--icon.fs-c-button--particular.like {
    background-image: url('/item/like_blue.svg');
  }

  .fs-c-productListItem__productName a,
  .itemSearch-item a,
  .fs-pt-list__link,
  .topCounseling-box a,
  .topMedia-item a,
  .topColumn-item a,
  .topInfo-item a,
  .footer-item a {
    transition: opacity 0.5s ease-in-out;
  }

  .fs-c-productListItem__productName a:hover,
  .itemSearch-item a:hover,
  .fs-pt-list__link:hover,
  .topCounseling-box a:hover,
  .topMedia-item a:hover,
  .topColumn-item a:hover,
  .topInfo-item a:hover,
  .footer-item a:hover {
    opacity: 0.75;
  }

  .viewMore a {
    gap: 0 15px;
  }

  .viewMore a::after {
    width: 42px;
  }

  .newItem {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .fs-c-productListItem__image {
    margin-bottom: 22px;
  }

  .itemSearch-title {
    font-size: 20px;
    margin-bottom: 45px;
  }

  .itemSearch-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }

  .itemSearch {
    padding-top: 100px;
  }

  .topNews-item {
    align-items: flex-start;
    flex-direction: row;
    gap: 0 6%;
    padding: 34px 0;
  }

  .topNews-date {
    font-size: 14px;
  }

  .topNews-box {
    flex: 1;
    margin-top: 0;
  }

  .topBrand {
    padding: 100px 0;
  }

  .topBrand-box {
    width: 54.3%;
    padding-right: 8%;
    margin-right: 0;
  }

  .topBrand-lead {
    margin-bottom: 35px;
  }

  .topBrand-en {
    font-size: 14px;
  }

  .topBrand-jp {
    font-size: 28px;
  }

  .topBrand-text {
    font-size: 16px;
    margin-bottom: 55px;
  }

  .topBrand-box .viewMore {
    justify-content: flex-start;
  }

  .topBrand-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  .topBrand {
    padding-bottom: 122px;
  }

  .topCounseling-box a {
    padding: 186px 4.3% 43px;
  }

  .topCounseling-lead {
    gap: 6px 0;
  }

  .topCounseling-jp {
    font-size: 28px;
  }

  .topCounseling {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .topCounseling-pic img {
    transition: opacity 0.5s ease-in-out;
  }

  .topCounseling-pic img:hover {
    opacity: 0.75;
  }

  .topMedia-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 45px;
  }

  .topMedia-thumb {
    margin-bottom: 27px;
  }

  .topMedia-text {
    font-size: 14px;
  }

  .topColumn-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 45px;
  }

  .topColumn-thumb {
    margin-bottom: 25px;
  }

  .topColumn {
    padding-top: 105px;
    padding-bottom: 112px;
  }

  .topBeautyworld {
    padding-top: 150px;
    padding-bottom: 0;
  }

  .topMerit-lead {
    font-size: 24px;
    margin-bottom: 42px;
  }

  .topMerit-item {
    width: calc(100% / 5 - 16px);
    padding: 25px 1% 10px;
    min-width: 180px;
  }

  .topMerit-icon {
    margin: 0 auto 11px;
  }

  .topMerit-text {
    font-size: 14px;
  }

  .topMerit {
    padding-top: 143px;
    padding-bottom: 100px;
  }

  .topInfo-list {
    gap: 10px 10px;
    margin-top: 45px;
  }

  .topInfo-item {
    width: calc(100% / 6 - 9px);
    min-width: 150px;
  }

  .topInfo-item a {
    padding: 10px 1% 10px;
  }

  .topInfo-icon {
    margin: 0 auto 10px;
  }

  .topInfo-text {
    min-height: 40px;
    font-size: 14px;
    line-height: 1.43;
  }

  .topInfo {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .fs-c-postage__list--prefecture > dt:nth-of-type(6n + 1),
  .fs-c-postage__list--prefecture > dd:nth-of-type(6n + 1) {
    grid-column: 1;
  }
  .fs-c-postage__list--prefecture > dt:nth-of-type(6n + 2),
  .fs-c-postage__list--prefecture > dd:nth-of-type(6n + 2) {
    grid-column: 2;
  }
  .fs-c-postage__list--prefecture > dt:nth-of-type(6n + 3),
  .fs-c-postage__list--prefecture > dd:nth-of-type(6n + 3) {
    grid-column: 3;
  }
  .fs-c-postage__list--prefecture > dt:nth-of-type(6n + 4),
  .fs-c-postage__list--prefecture > dd:nth-of-type(6n + 4) {
    grid-column: 4;
  }
  .fs-c-postage__list--prefecture > dt:nth-of-type(6n + 5),
  .fs-c-postage__list--prefecture > dd:nth-of-type(6n + 5) {
    grid-column: 5;
  }
  .fs-c-postage__list--prefecture > dt:nth-of-type(6n + 6),
  .fs-c-postage__list--prefecture > dd:nth-of-type(6n + 6) {
    grid-column: 6;
  }

  .fs-c-postage__list--purchasePrice > dt:nth-of-type(3n + 1),
  .fs-c-postage__list--purchasePrice > dd:nth-of-type(3n + 1),
  .fs-c-postage__list--pattern > dt:nth-of-type(3n + 1),
  .fs-c-postage__list--pattern > dd:nth-of-type(3n + 1),
  .fs-c-postage__list--packingWeight > dt:nth-of-type(3n + 1),
  .fs-c-postage__list--packingWeight > dd:nth-of-type(3n + 1) {
    grid-column: 1;
  }
  .fs-c-postage__list--purchasePrice > dt:nth-of-type(3n + 2),
  .fs-c-postage__list--purchasePrice > dd:nth-of-type(3n + 2),
  .fs-c-postage__list--pattern > dt:nth-of-type(3n + 2),
  .fs-c-postage__list--pattern > dd:nth-of-type(3n + 2),
  .fs-c-postage__list--packingWeight > dt:nth-of-type(3n + 2),
  .fs-c-postage__list--packingWeight > dd:nth-of-type(3n + 2) {
    grid-column: 2;
  }
  .fs-c-postage__list--purchasePrice > dt:nth-of-type(3n + 3),
  .fs-c-postage__list--purchasePrice > dd:nth-of-type(3n + 3),
  .fs-c-postage__list--pattern > dt:nth-of-type(3n + 3),
  .fs-c-postage__list--pattern > dd:nth-of-type(3n + 3),
  .fs-c-postage__list--packingWeight > dt:nth-of-type(3n + 3),
  .fs-c-postage__list--packingWeight > dd:nth-of-type(3n + 3) {
    grid-column: 3;
  }

  .fs-c-breadcrumb {
    display: block;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 115px 0 78px;
  }

  body:has(.story) .fs-c-breadcrumb-free {
    display: none;
  }

  .fs-c-breadcrumb__list {
    padding: 0;
    display: flex;
    gap: 8px;
  }

  .fs-c-breadcrumb__listItem {
    display: flex;
    align-items: center;
    gap: 0 8px;
    font-size: 12px;
    color: #8695a3;
    letter-spacing: 0.05em;
  }

  .fs-c-breadcrumb__listItem + .fs-c-breadcrumb__listItem::before {
    display: block;
    content: '';
    width: 1px;
    height: 10px;
    background-color: #8695a3;
  }

  .fs-c-breadcrumb__listItem a {
    transition: opacity 0.5s ease-in-out;
  }

  .fs-c-breadcrumb__listItem a:hover {
    opacity: 0.75;
  }

  body:not(.fs-body-top) .fs-l-main {
    max-width: 1000px;
    padding-top: 0;
  }

  body.fs-body-category .fs-l-main,
  body.fs-body-product .fs-l-main,
  body.fs-body-search .fs-l-main {
    max-width: 1200px;
  }

  body.fs-body-custom .fs-l-main {
    max-width: none;
    padding-top: 0;
  }

  .fs-c-heading.fs-c-heading--page {
    font-size: 28px;
    margin-bottom: 70px;
  }

  .free-container .fs-c-heading.fs-c-heading--page {
    max-width: 1000px;
  }

  .fs-c-documentArticle__heading {
    font-size: 20px;
    padding-bottom: 24px;
    margin-bottom: 40px;
  }

  .fs-c-documentColumn + .fs-c-documentColumn {
    margin-top: 69px;
  }

  .fs-c-address {
    padding: 30px 2.8%;
  }

  .fs-c-localNavigation {
    padding: 30px 2.8%;
  }

  .fs-c-localNavigation__heading {
    display: inline-block;
    width: 74px;
    margin-bottom: 0;
  }

  .fs-c-localNavigation__content {
    display: inline-block;
    width: calc(100% - 79px);
  }

  .fs-c-localNavigation__list {
    gap: 5px 9px;
  }

  .fs-c-localNavigation__list__item {
    width: auto;
  }

  .fs-c-documentSubColumn {
    padding: 28px 3%;
    flex-direction: row;
    gap: 0 26px;
  }

  .fs-c-shippingCarrierInfo {
    padding: 32px 3.2% 39px;
  }

  .fs-c-specTable {
    width: auto;
  }

  .fs-c-specTable__headerCell {
    padding: 15px 47px 14px;
  }

  .fs-c-specTable__dataCell {
    padding: 15px 227px 14px 29px;
  }

  .fs-c-specTable__dataCell:has(.fs-c-price.fs-c-price--inline) {
    padding-right: 106px;
    padding-left: 106px;
  }

  .fs-c-specTable--salesTax .fs-c-specTable__dataCell {
    padding-right: 106px;
    padding-left: 106px;
  }

  .fs-c-explainList,
  .fs-p-footerNavigationItem__dataList {
    padding: 26px 4%;
  }

  .fs-c-explainList {
    flex-direction: row;
    margin-top: 33px;
    margin-bottom: 75px;
  }

  .fs-c-explainList dt,
  .fs-p-footerNavigationItem__dataList__title {
    display: inline-block;
    width: 120px;
  }

  .fs-c-explainList dd + dt,
  .fs-p-footerNavigationItem__dataList__data + .fs-p-footerNavigationItem__dataList__title {
    margin-top: 0;
  }

  .fs-c-explainList dd,
  .fs-p-footerNavigationItem__dataList__data {
    display: inline-block;
    width: calc(100% - 172px);
  }

  .fs-c-list {
    gap: 1px;
    margin-top: 31px;
    margin-left: 0;
  }

  .fs-c-productList__controller {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 87px;
  }

  .fs-c-sortItems {
    flex-direction: row;
    align-items: center;
    gap: 0 18px;
  }

  .fs-c-sortItems__list {
    gap: 0 8px;
  }

  .fs-c-sortItems__list__item {
    padding: 5px 20px;
  }

  .fs-c-productList__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 100px 3.5%;
    margin-bottom: 80px;
  }

  .fs-c-productNameHeading {
    margin-bottom: 30px;
  }

  .fs-c-productQuantityAndWishlist .fs-c-button__label,
  .fs-c-button--addToWishList--detail .fs-c-button__label {
    display: flex;
    align-items: center;
    gap: 0 7px;
    font-size: 12px;
    letter-spacing: 0.05em;
    color: #8695a3;
  }

  .fs-c-productQuantityAndWishlist .fs-c-button__label::before,
  .fs-c-button--addToWishList--detail .fs-c-button__label::before {
    display: block;
    width: 22px;
    aspect-ratio: 1/1;
    background-repeat: no-repeat;
    background-image: url(/item/iconHeart.svg);
    background-size: 100% auto;
    margin-top: 3px;
    content: '';
  }

  .fs-c-button--removeFromWishList--detail .fs-c-button__label::before {
    background-image: url('/item/like_blue.svg');
  }

  .custom-qty-wrap {
    display: flex;
    align-items: center;
  }

  .fs-c-quantity {
    max-width: none;
  }

  .custom-qty-btn {
    display: block;
    width: 46px;
    aspect-ratio: 1/1;
    flex: none;
    border-top: 1px solid #ebf0f2;
    border-bottom: 1px solid #ebf0f2;
    font-size: 16px;
    text-align: center;
    -webkit-appearance: none !important;
  }

  .custom-qty-btn:nth-of-type(1) {
    border-left: 1px solid #ebf0f2;
    border-radius: 3px 0 0 3px;
  }

  .custom-qty-btn:nth-of-type(2) {
    border-right: 1px solid #ebf0f2;
    border-radius: 0 3px 3px 0;
  }

  .custom-qty-input {
    padding: 4px 13px 4px 28px;
    flex: none;
    width: 66px;
    height: 46px;
    border-top: 1px solid #ebf0f2;
    border-bottom: 1px solid #ebf0f2;
    border-right: none;
    border-left: none;
    color: #444f57;
    font-family: var(--font-poppins);
    font-size: 18px;
    font-weight: 500;
  }

  .custom-qty-label {
    flex: none;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: #8695a3;
    margin-right: 13px;
  }

  .fs-c-productActionButton {
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .fs-c-button--addToCart--detail .fs-c-button__label::before,
  .fs-c-button--addToSubscriptionCart--detail .fs-c-button__label::before {
    display: block;
    width: 17px;
    aspect-ratio: 1/1;
    background: url(/item/iconCart_white.svg) no-repeat;
    background-size: 100% auto;
    content: '';
  }

  .details-info .fs-c-productMarks {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
  }

  .fs-c-mark {
    border-radius: 3px;
    color: white;
    font-size: 12px;
    letter-spacing: 0.03em;
    padding: 3px 10px;
  }

  .fs-c-productMainImage .splide__arrow {
    transition: opacity 0.5s ease-in-out;
  }

  .fs-c-productMainImage .splide__arrow:hover {
    opacity: 0.75;
  }

  .thumbnail-item {
    flex-basis: 80px;
    min-width: 80px;
  }

  .fs-c-productThumbnail img {
    transition: opacity 0.5s ease-in-out;
    cursor: pointer;
  }

  .fs-c-productThumbnail img:hover {
    opacity: 0.75;
  }

  .product_contents {
    margin-top: 100px;
    margin-bottom: 45px;
  }

  .product_contents .ttl {
    font-size: 24px;
  }

  .sec .ttl {
    font-size: 24px;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 31px;
  }

  .sec .ttl.sp {
    font-size: 20px;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .sec .list {
    display: flex;
    flex-direction: column;
    gap: 2px 0;
    margin-top: 21px;
    margin-bottom: 22px;
  }

  .sec .list li {
    font-size: 14px;
    letter-spacing: 0.1em;
  }

  .sec .box .list {
    display: flex;
    flex-direction: column;
    gap: 0px 0;
    margin-top: 28px;
  }

  .sec .box .list li {
    color: #8695a3;
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 1.8;
  }

  .sec .box .ttl.pc {
    display: none;
  }

  .sec .box .img + .ttl {
    margin-top: 30px;
  }

  .sec > .box + .box {
    margin-top: 65px;
  }

  .sec .img {
    width: 100%;
  }

  .sec .flex_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px 24px;
    padding-bottom: 15px;
  }

  .sec .flex_box .box {
    width: calc(100% / 3 - 16px);
  }

  .sec .flex_box .box .img {
    width: 100%;
    margin-bottom: 26px;
  }

  .sec .flex_box .box .txt {
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 1.85;
  }

  .inner-bak.sp-bak {
    margin-top: 100px !important;
  }

  .accordion-item.active .accordion-content {
    padding-top: 16px;
    padding-bottom: 43px;
  }

  .review-put-here {
    position: relative;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border: none !important;
  }

  .review-banner {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    padding: 9px 24px;
    border: 1px solid #ced7de;
    border-radius: 30px;
  }

  .review-banner::before,
  .review-banner::after {
    position: absolute;
    left: 33px;
    width: 13px;
    height: 10px;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    content: '';
  }

  .review-banner::before {
    top: calc(100% + 1px);
    background-color: #ced7de;
    z-index: 0;
  }

  .review-banner::after {
    top: calc(100% + -1px);
    background-color: white;
    z-index: 10;
  }

  .review-text {
    font-size: 14px;
    letter-spacing: 0.04em;
  }

  .review-banner .highlight {
    color: #e2a037;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.04em;
  }

  .fs-c-productReview__aggregateRating {
    margin-top: 6px;
    margin-bottom: 16px;
  }

  .fs-c-productReview .fs-c-productReview__aggregateRating::before {
    display: block;
    width: 100%;
    font-size: 12px;
    letter-spacing: 0.1em;
    content: 'この商品の平均評価';
    margin-bottom: 2px;
  }

  .fs-c-productReview__reviewList {
    display: flex;
    flex-direction: column;
    gap: 45px 0;
    margin-bottom: 100px;
  }

  .fs-c-reviewList__item {
    position: relative;
    padding-top: 29px;
    border-top: 1px solid #ebf0f2;
  }

  .fs-c-reviewInfo__reviewer.fs-c-reviewer {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    margin-right: 120px;
    gap: 34px;
  }

  .fs-c-reviewer__name {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
  }

  .fs-body-reviews .fs-c-reviewer__name {
    flex: 1;
  }

  .fs-c-reviewerStatus {
    padding: 3px 17px 4px;
    color: white;
    font-size: 11px;
    letter-spacing: 0.1em;
    background-color: #2a7fa1;
    border-radius: 5px;
    display: inline-block;
  }

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

  .fs-c-reviewInfo__date dt {
    display: none;
  }

  .fs-c-reviewInfo__date dd {
    position: absolute;
    top: 31px;
    right: 0;
    color: #8695a3;
    font-size: 12px;
    letter-spacing: 0.03em;
  }

  .fs-body-reviews .fs-c-reviewList__item .fs-c-reviewInfo__date dd {
    position: relative;
    top: 0;
    margin-bottom: 5px;
  }

  .fs-c-reviewRating {
    margin-bottom: 22px;
  }

  .fs-c-reviewRating .fs-c-reviewStars::before {
    font-size: 20px;
  }

  .fs-c-productReview__addReview {
    position: absolute;
    top: 0;
    right: 0;
  }

  .fs-c-productReview__addReview a::before {
    display: block;
    width: 16px;
    aspect-ratio: 1/1;
    background: url(/item/pen.svg) no-repeat;
    background-size: 100% auto;
    content: '';
  }

  .fs-c-reviewList__item__body.fs-c-reviewBody {
    font-size: 13px;
    letter-spacing: 0.1em;
    line-height: 1.95;
  }

  .details-add-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .fs-p-snsArea {
    display: flex;
    align-items: center;
    gap: 0 4px;
  }

  .fs-p-snsArea .fb_iframe_widget_fluid {
    padding-top: 7px;
  }

  .fs-c-button--viewAllReviews {
    display: flex;
    align-items: center;
    color: #2a7fa1;
    font-size: 14px;
    letter-spacing: 0.1em;
    font-weight: 600;
  }

  .fs-c-button--viewAllReviews::before,
  .fs-c-button--viewAllReviews::after {
    content: '';
  }

  .fs-c-button--viewAllReviews::before {
    display: block;
    width: 18px;
    aspect-ratio: 1/1;
    background: url(/item/review.svg) no-repeat;
    background-size: 100% auto;
    margin-right: 11px;
  }

  .fs-c-button--viewAllReviews::after {
    display: block;
    width: 40px;
    aspect-ratio: 1 / 1;
    border: 1px solid #2a7fa1;
    border-radius: 50%;
    background: url(/item/arrow_right_blue.svg) no-repeat;
    background-size: 6px auto;
    background-position: 50% 50%;
    margin-left: 16px;
  }

  .fs-p-card {
    padding: 44px 6% 47px;
    background-color: #f2f7fa;
  }

  .fs-p-card__title {
    margin-bottom: 19px;
    font-size: 18px;
    letter-spacing: 0.1em;
    font-weight: 600;
    text-align: center;
  }

  .fs-p-card__message p {
    margin-bottom: 22px;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2;
  }

  .fs-p-card__message .list {
    display: flex;
    flex-direction: column;
    gap: 4px 0;
    padding-top: 25px;
    border-top: 1px solid #ced7de;
  }

  .fs-p-card__message .list li {
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 1.8;
  }

  .infoWrapper {
    margin-top: 37px;
    display: flex;
    flex-direction: column;
    gap: 8px 0;
  }

  .fs-c-shippingAndPaymentMethods a,
  .fs-c-returnedSpecialContract a,
  .fs-c-inquiryAboutProduct span {
    color: #2a7fa1;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.5s ease-in-out;
  }

  .fs-c-shippingAndPaymentMethods a:hover,
  .fs-c-returnedSpecialContract a:hover,
  .fs-c-inquiryAboutProduct span:hover {
    opacity: 0.75;
  }

  #floting-bt {
    display: none;
  }

  /* brand story */
  .story {
    position: relative;
  }

  .story .fs-c-breadcrumb {
    width: 100%;
    max-width: none;
    padding: 0 0 166px;
  }

  .story-head {
    height: 530px;
    padding-top: 115px;
  }

  .story-head-title {
    gap: 15px 0;
  }

  .story-head-title-sm {
    font-size: 16px;
  }

  .story-head-title-lg {
    font-size: 50px;
  }

  .story-movie {
    padding-top: 170px;
  }

  .story-movie-wrapper video,
  .story-movie-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .story-contents {
    padding-top: 159px;
    padding-bottom: 150px;
  }

  .story-contents-wrapper {
    gap: 110px 0;
    margin-bottom: 155px;
  }

  .story-contents-block {
    flex-direction: row;
    gap: 0 5%;
  }

  .story-contents-block:nth-child(2n) {
    flex-direction: row-reverse;
    gap: 0 12.4%;
  }

  .story-contents-box {
    flex: 1;
  }

  .story-contents-block:nth-child(2n) .story-contents-box {
    margin-top: 67px;
  }

  .story-contents-pic-01 {
    width: 37.6%;
    margin-top: 140px;
  }

  .story-contents-pic-02 {
    width: 33.4%;
    margin-left: 8.3%;
  }

  .story-contents-lead {
    margin-bottom: 22px;
    font-size: 32px;
  }

  .story-contents-block:nth-child(2n + 1) .story-contents-lead {
    padding-left: 8.1%;
  }

  .story-contents-lead-sm {
    font-size: 24px;
    margin-bottom: 4px;
  }

  .story-contents-sub {
    line-height: 2;
    margin-bottom: 51px;
    padding-left: 0;
  }

  .story-contents-block:nth-child(2n + 1) .story-contents-sub {
    padding-left: 21.9%;
  }

  .story-contents-item .story-contents-sub {
    margin-bottom: 0;
  }

  .story-contents-text {
    padding-left: 0;
  }

  .story-contents-description {
    width: 45.1%;
  }

  .story-contents-block:nth-child(2n + 1) .story-contents-text {
    padding-left: 21.9%;
  }

  .story-contents-text + .story-contents-text {
    margin-top: 28px;
  }

  .story-contents-catch {
    padding-left: 21.9%;
    font-size: 18px;
    line-height: 1.55;
  }

  .story-contents-item {
    flex-direction: row;
    gap: 0 5%;
    padding: 50px 8.2%;
  }

  .story-contents-bg {
    height: auto;
  }

  .story-brand {
    padding-top: 123px;
    padding-bottom: 123px;
  }

  .story-brand-box {
    width: 50.1%;
    padding: 110px 4.2% 80px;
    margin-left: auto;
  }

  .story-brand-lead {
    display: block;
    margin-bottom: 36px;
  }

  .story-brand-lead span {
    font-size: 16px;
    letter-spacing: 0.11em;
  }

  .story-brand-bg img {
    height: 100%;
  }

  .story-message {
    padding-top: 300px;
    padding-bottom: 350px;
  }

  .story-message-logo {
    top: 31.9%;
    width: 58.6%;
  }

  .story-message-bg {
    top: 44%;
    width: 89%;
  }

  .membership {
    margin-bottom: 100px;
  }

  .membership-head {
    margin-bottom: 30px;
  }

  .membership-stage {
    padding-top: 95px;
  }

  .membership-intro {
    margin-bottom: 73px;
  }

  .membership-intro-sub {
    margin-bottom: 32px;
  }

  .membership-lead {
    font-size: 32px;
  }

  .membership-intro-text {
    line-height: 1.85;
    margin-top: 30px;
  }

  .membership-wrapper {
    gap: 40px 0;
  }

  .membership-block {
    padding: 40px 5%;
  }

  .membership-block-text {
    margin-bottom: 40px;
  }

  .membership-box {
    max-width: 800px;
    padding: 43px 4.5% 45px;
    margin: 36px auto 71px;
  }

  .membership-catch {
    font-size: 28px;
  }

  .membership-area {
    border-radius: 10px;
    padding: 39px 3.8%;
  }

  .membership-area-lead {
    padding-top: 0;
    padding-left: 43px;
    margin-bottom: 12px;
    font-size: 18px;
    text-align: left;
  }

  .membership-area-lead::before {
    top: -2px;
    left: 0;
    width: 33px;
    translate: 0;
  }

  .membership-area-text {
    margin-bottom: 22px;
    font-size: 16px;
  }

  .membership-area-note {
    font-size: 14px;
    line-height: 1.45;
  }

  .membership-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 7%;
    max-width: 870px;
    margin: 40px auto 100px;
  }

  .membership-icon {
    max-width: none;
    margin-bottom: 25px;
  }

  .membership-contents-box {
    max-width: 1000px;
    margin: 40px auto 33px;
    padding: 20px 5%;
    font-size: 18px;
  }

  .membership-contents-label {
    margin-top: 39px;
  }

  .free-container > table {
    max-width: 1000px;
  }

  .free-container > table tr {
    flex-direction: row;
    padding: 28px 0;
  }

  .free-container > table th {
    width: 340px;
  }

  .inquiry-container {
    max-width: 1000px;
  }

  .inquiry-text {
    margin-bottom: 55px;
  }

  .inquiry-form {
    max-width: 800px;
    padding: 53px 9.7% 60px;
  }

  .inquiry-data input[type='text'],
  .inquiry-data input[type='email'],
  .inquiry-data input[type='tel'],
  .inquiry-data textarea {
    font-size: 14px;
  }

  .inquiry-data select {
    font-size: 14px;
  }

  .inquiry-data-zip {
    margin-right: 18px;
    font-size: 14px;
  }

  .inquiry-data-bar {
    font-size: 14px;
  }

  .fs-c-documentArticle {
    max-width: 1000px;
  }

  .fs-body-about-shippingPayment .fs-c-documentArticle__content {
    margin-bottom: 75px;
  }

  .quantity-wishlist-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .details-info .fs-c-button--primary {
    display: block;
  }

  .fs-c-inputInformation__message + form {
    max-width: 800px;
  }

  .article-container {
    max-width: 1000px;
  }

  .article-container p + p {
    margin-top: 29px;
  }

  .article-container h2 {
    font-size: 20px;
    padding-bottom: 24px;
    margin-bottom: 40px;
  }

  .article-container * + h2 {
    margin-top: 69px;
  }

  .article-container h3 {
    margin-bottom: 31px;
  }

  .article-container * + h3 {
    margin-top: 69px;
  }

  .article-container blockquote {
    padding: 20px 3%;
    font-size: 14px;
  }

  .fs-c-cartTable__dataCell--point {
    width: 100px;
    font-size: 16px;
  }

  .fs-c-cartTable__dataCell--action {
    width: 88px;
    text-align: center;
  }

  .fs-c-cartDiscountInfo.fs-c-cartDiscountInfo--postage {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.85;
  }

  .fs-c-totalAndActions.fs-l-cart__sideColumn,
  .fs-c-history__info {
    width: 340px;
  }

  .fs-l-checkout__sideColumn .fs-c-orderTotalTable {
    border: none;
  }

  .fs-c-buttonContainer--loginAndPurchase + .fs-c-buttonContainer--unregisteredUserPurchase {
    margin-top: 20px;
  }

  .fs-c-totalAndActions.fs-l-cart__sideColumn .fs-c-payWithAmazon__button {
    max-width: 100%;
  }

  .hidden-sp {
    display: inline;
  }

  .hidden-pc {
    display: none;
  }

  .fs-c-buttonContainer--myPageTop,
  .fs-c-buttonContainer--backToRegister {
    margin-top: 80px;
  }

  .fs-c-accountService__page {
    flex-basis: 128px;
  }

  .fs-c-accountService__page--couponList {
    flex-basis: calc(100% / 7 * 2 - 14px);
  }

  .fs-c-history__message.fs-c-noResultMessage {
    flex: 1;
  }

  .fs-c-accountService {
    justify-content: flex-start;
  }

  .fs-c-addressBookList__form {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
  }

  .fs-l-col--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .fs-l-col--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .fs-l-col--4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .fs-l-col--5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .fs-c-descriptionList {
    display: grid;
    grid-template-columns: auto 1fr;
  }

  .fs-c-descriptionList__label {
    border-bottom: 1px solid #ebf0f2;
  }
  .fs-c-descriptionList__content {
    padding: 24px 0 24px 32px;
  }

  .fs-c-buttonContainer--deleteChange {
    gap: 0 20px;
  }

  .fs-c-checkout-shippingDestination {
    grid-template-columns: 1fr auto;
  }
  .fs-c-checkout-shippingDestination .fs-c-checkout-shippingDestination__title {
    grid-column: 1 / span 2;
  }
  .fs-c-checkout-shippingDestination .fs-c-checkout-shippingDestination__control {
    flex-direction: column;
    align-items: flex-end;
  }

  .fs-c-checkout-shippingDetail .fs-c-checkout-shippingDetail__deliveryDetail {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  .fs-c-checkout-shippingDetail .fs-c-checkout-shippingDetail__deliveryDetailMessage {
    grid-column: 1;
  }
  .fs-c-checkout-shippingDetail .fs-c-checkout-shippingDetail__deliveryDetailPreview {
    grid-column: 1;
  }
  .fs-c-checkout-shippingDetail .fs-c-checkout-shippingDetail__button {
    grid-column: 2;
  }
  .fs-c-checkout-shippingDetail .fs-c-checkout-shippingDetail__button:nth-child(3) {
    grid-row: 1 / span 2;
  }

  .fs-c-destinationFeeTable {
    width: auto;
  }

  .fs-c-checkout-couponCodeInput__title {
    flex-basis: auto;
  }

  .fs-c-checkout-couponCodeInput__input {
    flex-basis: auto;
  }

  .fs-c-checkout-previewAndEdit {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto;
    align-items: start;
    grid-column-gap: 48px;
  }

  .fs-c-subgroupList {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }

  .fs-c-subgroup {
    margin-bottom: 119px;
  }

  .header-menu-item-guide {
    display: block;
  }

  .header-menu-text {
    display: block;
  }

  .header-menu-inner,
  .fs-pt-menu__item .fs-pt-menu__link {
    font-size: 11px;
  }

  .hamburger {
    top: 15px;
    right: 15px;
  }

  .drawer {
    padding-top: 95px;
  }

  .translate-buttons {
    top: 505px;
  }

  .js-sticky .translate-buttons {
    top: 120px;
  }

  .lang-btn {
    width: 150px;
    height: 50px;
    border-radius: 25px 0 0 25px;
    font-size: 14px;
  }

  .fs-body-reviews .fs-c-reviewList {
    grid-template-columns: repeat(4, 1fr);
    gap: 100px 2.6%;
  }

  .login-contents {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 8%;
  }

  .fs-c-button--buyItLater {
    margin-top: 4px;
  }

  /* min-width: 768px */
}

@media screen and (min-width: 960px) {
  .fs-c-postage__list--purchasePrice > dt:nth-of-type(5n + 1),
  .fs-c-postage__list--purchasePrice > dd:nth-of-type(5n + 1),
  .fs-c-postage__list--pattern > dt:nth-of-type(5n + 1),
  .fs-c-postage__list--pattern > dd:nth-of-type(5n + 1),
  .fs-c-postage__list--packingWeight > dt:nth-of-type(5n + 1),
  .fs-c-postage__list--packingWeight > dd:nth-of-type(5n + 1) {
    grid-column: 1;
  }
  .fs-c-postage__list--purchasePrice > dt:nth-of-type(5n + 2),
  .fs-c-postage__list--purchasePrice > dd:nth-of-type(5n + 2),
  .fs-c-postage__list--pattern > dt:nth-of-type(5n + 2),
  .fs-c-postage__list--pattern > dd:nth-of-type(5n + 2),
  .fs-c-postage__list--packingWeight > dt:nth-of-type(5n + 2),
  .fs-c-postage__list--packingWeight > dd:nth-of-type(5n + 2) {
    grid-column: 2;
  }
  .fs-c-postage__list--purchasePrice > dt:nth-of-type(5n + 3),
  .fs-c-postage__list--purchasePrice > dd:nth-of-type(5n + 3),
  .fs-c-postage__list--pattern > dt:nth-of-type(5n + 3),
  .fs-c-postage__list--pattern > dd:nth-of-type(5n + 3),
  .fs-c-postage__list--packingWeight > dt:nth-of-type(5n + 3),
  .fs-c-postage__list--packingWeight > dd:nth-of-type(5n + 3) {
    grid-column: 3;
  }
  .fs-c-postage__list--purchasePrice > dt:nth-of-type(5n + 4),
  .fs-c-postage__list--purchasePrice > dd:nth-of-type(5n + 4),
  .fs-c-postage__list--pattern > dt:nth-of-type(5n + 4),
  .fs-c-postage__list--pattern > dd:nth-of-type(5n + 4),
  .fs-c-postage__list--packingWeight > dt:nth-of-type(5n + 4),
  .fs-c-postage__list--packingWeight > dd:nth-of-type(5n + 4) {
    grid-column: 4;
  }

  .fs-c-postage__list--purchasePrice > dt:nth-of-type(5n + 5),
  .fs-c-postage__list--purchasePrice > dd:nth-of-type(5n + 5),
  .fs-c-postage__list--pattern > dt:nth-of-type(5n + 5),
  .fs-c-postage__list--pattern > dd:nth-of-type(5n + 5),
  .fs-c-postage__list--packingWeight > dt:nth-of-type(5n + 5),
  .fs-c-postage__list--packingWeight > dd:nth-of-type(5n + 5) {
    grid-column: 5;
  }

  /* min-width: 900px */
}

@media screen and (min-width: 1024px) {
  .guide-md {
    max-width: 1000px;
  }

  .guide-lg {
    max-width: 1100px;
  }

  .guide-xl {
    max-width: 1200px;
  }

  .guide-2xl {
    max-width: 1400px;
  }

  .header-nav {
    display: block;
    margin-left: auto;
  }

  .header-menu {
    gap: 0 18px;
    padding-left: 31px;
    margin-top: 2px;
    margin-left: 30px;
    margin-right: 0;
  }

  .header-menu::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 40px;
    background-color: #444f57;
    translate: 0 -50%;
    content: '';
  }

  .header-navList {
    display: flex;
    align-items: center;
    gap: 0 28px;
  }

  .header-navItem {
    position: relative;
    line-height: 1;
  }

  .header-navItem > a,
  .header-navItem > span {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0 10px;
    color: #444f57;
    font-size: 13px;
    cursor: pointer;
    transition: color 0.5s ease-in-out;
  }

  .header-navItem > a:hover,
  .header-navItem > span:hover {
    color: #2a7fa1;
  }

  .header-navItem:has(.header-navChild) > a::after,
  .header-navItem:has(.header-navChild) > span::after {
    display: block;
    width: 9px;
    aspect-ratio: 9/4;
    background: url('/item/arrow_down.svg') no-repeat;
    background-size: 100% auto;
    content: '';
  }

  .header-navChild {
    position: fixed;
    top: 100px;
    left: 50%;
    width: 95vw;
    max-width: 1400px;
    opacity: 0;
    pointer-events: none;
    background: white;
    border-radius: 10px;
    padding: 0px 2.5% 80px;
    translate: -50% 0;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
    will-change: filter;
    transition: opacity 0.5s ease-in-out;
    content: '';
  }

  .header-navChild::before {
    position: fixed;
    left: 50%;
    top: 0;
    width: 100vw;
    height: 200vh;
    content: '';
    pointer-events: none;
    background: linear-gradient(to right, #eaf5fc, #f5fdff, #f5feff, #eaf5fc);
    opacity: 0.5;
    backdrop-filter: blur(14px);
    will-change: backdrop-filter;
    translate: -50% 0;
    z-index: -1;
  }

  .is-open + .header-navChild {
    opacity: 1;
    pointer-events: auto;
  }

  .header-navChild-all a {
    position: relative;
    display: block;
    padding: 30px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #ebf0ee;
    transition: color 0.5s ease-in-out;
  }

  .header-navChild-all a:hover {
    color: #2a7fa1;
  }

  .header-navChild-all a::before {
    position: absolute;
    top: 50%;
    right: 0;
    width: 40px;
    aspect-ratio: 1/1;
    border: 1px solid #2a7fa1;
    background: url('/item/arrow_right_blue.svg') no-repeat;
    background-size: 7px auto;
    background-position: center;
    border-radius: 50%;
    content: '';
    translate: 0 -50%;
    transition: translate 0.5s ease-in-out;
  }

  .header-navChild-all a:hover::before {
    translate: 5px -50%;
  }

  .header-navChild-block {
    display: flex;
    flex-direction: column;
    gap: 32px 0;
  }

  .header-navChild-link {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.1em;
  }

  .header-navChild-categories {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px 39px;
  }

  .header-navChild-category-item a {
    display: flex;
    align-items: center;
    gap: 0 9px;
  }

  .header-navChild-category-text {
    font-size: 14px;
    line-height: 1.75;
    left: 0.1em;
    transition: color 0.5s ease-in-out;
  }

  .header-navChild-category-item a:hover .header-navChild-category-text {
    color: #2a7fa1;
  }

  .header-navChild-category-icon {
    width: 50px;
    transition: opacity 0.5s ease-in-out;
  }

  .header-navChild-category-item a:hover .header-navChild-category-icon {
    opacity: 0.75;
  }

  .header-navChild-types {
    margin-top: 16px;
    display: flex;
    gap: 0 30px;
  }

  .header-navChild-type-item {
    width: 150px;
  }

  .header-navChild-type-item a {
    display: block;
    padding: 19px 0;
    border-bottom: 1px solid #ebf0f2;
    background: url('/item/arrow_right_blue.svg') no-repeat;
    background-size: 7px auto;
    background-position: calc(100% - 5px) 50%;
    font-size: 14px;
    letter-spacing: 0.1em;
    white-space: nowrap;
    transition: color 0.5s ease-in-out, background-position 0.5s ease-in-out;
  }

  .header-navChild-type-item a:hover {
    color: #2a7fa1;
    background-position: calc(100% - 0px) 50%;
  }

  .hamburger,
  .drawer {
    display: none;
  }

  .footer-container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0 5%;
    margin-bottom: 57px;
  }

  .footer-nav {
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 0 74px;
    width: auto;
  }

  .footer-nav-title {
    margin-bottom: 21px;
  }

  .footer-list {
    flex-direction: column;
    gap: 10px 0;
  }

  .fs-c-productList__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 100px 2.6%;
  }

  .fs-l-productLayout {
    flex-direction: row;
    align-items: flex-start;
    gap: 0 8.4%;
    padding-bottom: 100px;
  }

  .details-block {
    flex: 1;
  }

  .details-info {
    width: 450px;
    position: sticky;
    top: 130px;
    left: 0;
    padding-bottom: 100px;
  }

  .fs-l-cart__contentsArea {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0 30px;
    margin-bottom: 80px;
  }

  .fs-c-history {
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0 30px;
    margin-bottom: 80px;
  }

  body:has(.fs-c-reviewList) .fs-c-history {
    flex-direction: column;
    gap: 30px;
  }

  .fs-l-cart__mainColumn,
  .fs-c-history__listContainer {
    flex: 1;
  }

  .fs-c-cartTableContainer {
    margin-bottom: 40px;
  }

  .fs-c-cartTable__headerCell,
  .fs-c-cartTable__dataCell {
    border: 1px solid #ebf0f2;
  }

  .fs-c-cartTable__dataCell--product {
    width: 350px;
  }

  [class^='fs-body-checkout'] .fs-l-checkout {
    display: flex;
    align-items: flex-start;
    width: 100%;
  }

  [class^='fs-body-checkout'] .fs-l-checkout__mainColumn {
    flex-grow: 1;
    max-width: calc(100vw - 8px * 44);
    padding-right: 24px;
  }

  [class^='fs-body-checkout'] .fs-l-checkout__sideColumn {
    margin-top: 0;
    flex-grow: 1;
    flex-basis: 320px;
    min-width: 320px;
  }

  /* min-width: 1024px */
}

@media screen and (min-width: 1200px) {
  .fs-c-postage__list--prefecture > dt:nth-of-type(8n + 1),
  .fs-c-postage__list--prefecture > dd:nth-of-type(8n + 1) {
    grid-column: 1;
  }
  .fs-c-postage__list--prefecture > dt:nth-of-type(8n + 2),
  .fs-c-postage__list--prefecture > dd:nth-of-type(8n + 2) {
    grid-column: 2;
  }
  .fs-c-postage__list--prefecture > dt:nth-of-type(8n + 3),
  .fs-c-postage__list--prefecture > dd:nth-of-type(8n + 3) {
    grid-column: 3;
  }
  .fs-c-postage__list--prefecture > dt:nth-of-type(8n + 4),
  .fs-c-postage__list--prefecture > dd:nth-of-type(8n + 4) {
    grid-column: 4;
  }
  .fs-c-postage__list--prefecture > dt:nth-of-type(8n + 5),
  .fs-c-postage__list--prefecture > dd:nth-of-type(8n + 5) {
    grid-column: 5;
  }
  .fs-c-postage__list--prefecture > dt:nth-of-type(8n + 6),
  .fs-c-postage__list--prefecture > dd:nth-of-type(8n + 6) {
    grid-column: 6;
  }
  .fs-c-postage__list--prefecture > dt:nth-of-type(8n + 7),
  .fs-c-postage__list--prefecture > dd:nth-of-type(8n + 7) {
    grid-column: 7;
  }

  .fs-c-postage__list--prefecture > dt:nth-of-type(8n + 8),
  .fs-c-postage__list--prefecture > dd:nth-of-type(8n + 8) {
    grid-column: 8;
  }

  .fs-c-postage__list--prefecture > dd:nth-of-type(n + 40)::before {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background-color: #ced7de;
    content: '';
  }

  .fs-c-linkServicesList {
    grid-template-columns: repeat(2, 1fr);
  }

  .fs-c-linkServicesList__item {
    padding: 16px 32px;
  }

  /* min-width: 1200px */
}

@media screen and (min-width: 1280px) {
  .header-navChild {
    padding: 0px 5% 80px;
  }

  .header-navChild-block {
    gap: 0 5.6%;
    flex-direction: row;
  }

  .header-navChild-categories {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px 39px;
  }

  .header-navChild-types {
    margin-top: 29px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 30px;
  }

  /* min-width: 1280px */
}

/* 検証後に削除する */
.fs-preview-header {
  display: none;
}
