@charset "UTF-8";
/* common
--------------------------------------------- */
:root {
  --ny-w-page: 1298px;
  --ny-p-page: 16px;
  --ny-c-gray: #ccc;
  --ny-c-orange: #f28c28;
  --ny-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.3);
}

body {
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Original Yu Gothic", "Yu Gothic", sans-serif;
  font-size: 1.6rem;
  color: #333;
}

pre {
  white-space: pre-line;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Original Yu Gothic", "Yu Gothic", sans-serif;
}

img {
  vertical-align: top;
}

a:hover {
  text-decoration: none;
  transition: opacity 0.2s ease;
  opacity: 0.7;
}

a img:hover {
  transition: background-color 0.2s ease;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  font-weight: bold;
}

ruby > rt {
  font-size: 1.4rem;
}

.pc-only {
  display: none;
}

#nyScrollTrigger {
  position: absolute;
  top: 0;
  width: 0;
  height: 150px;
  z-index: -10;
}

/* TABLET */
@media screen and (min-width: 768px) {
  :root {
    --ny-p-page: 24px;
    --ny-shadow: 0px 4px 10px -4px rgba(0, 0, 0, 0.3);
  }
  .smp-only {
    display: none;
  }
}
/* PC */
@media screen and (min-width: 1200px) {
  .pc-only {
    display: block;
  }
}
/* フューチャーショップ 汎用
--------------------------------------------- */
/* サイドナビ、メイン */
.fs-l-main {
  display: block;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.fs-l-sideArea + .fs-l-pageMain,
.fs-l-pageMain + .fs-l-sideArea,
.fs-l-pageMain {
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .fs-l-sideArea {
    display: none;
  }
}
/* パンくず */
.fs-c-breadcrumb {
  background-color: #f4f4f4;
  font-size: 1.6rem;
  line-height: 1;
}
.fs-c-breadcrumb .fs-c-breadcrumb__list {
  padding: 1em;
  overflow-x: auto;
  white-space: nowrap;
}
.fs-c-breadcrumb .fs-c-breadcrumb__list::-webkit-scrollbar {
  height: 2px;
  background-color: #ccc;
}
.fs-c-breadcrumb .fs-c-breadcrumb__list::-webkit-scrollbar-thumb {
  background-color: #757575;
}
.fs-c-breadcrumb .fs-c-breadcrumb__list .simplebar-track.simplebar-horizontal {
  height: 2px;
}
.fs-c-breadcrumb .fs-c-breadcrumb__list .simplebar-scrollbar:before {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 0;
}
.fs-c-breadcrumb .fs-c-breadcrumb__listItem + .fs-c-breadcrumb__listItem::before {
  padding: 0 1em;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  -webkit-text-stroke-color: #f4f4f4;
  -webkit-text-stroke-width: 1px;
  content: "\f054";
}

@media screen and (min-width: 768px) {
  .fs-c-breadcrumb {
    background-color: #fff;
  }
  .fs-c-breadcrumb .fs-c-breadcrumb__list {
    max-width: var(--ny-w-page);
    margin: 0 auto;
    padding: 1em var(--ny-p-page);
  }
}
/* 見出し */
.fs-c-heading {
  font-feature-settings: normal;
}

.fs-c-heading--page {
  margin: 0;
  padding: 1em 16px;
  border-bottom: none;
  font-weight: bold;
  font-size: 2.8rem;
  line-height: 1.3;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .fs-c-heading--page {
    padding: 48px 1em;
    font-size: 3rem;
  }
}

/* 空のメッセージ */
.fs-c-noResultMessage {
  width: 100%;
  margin: 0 auto 40px;
  padding: 28px 24px;
  font-size: 1.8rem;
}
.fs-c-noResultMessage b {
  display: block;
  margin-bottom: 1em;
}
@media screen and (min-width: 1200px) {
  .fs-c-noResultMessage {
    width: 600px;
    padding: 40px;
    font-size: 2rem;
  }
  .fs-c-noResultMessage b {
    font-size: 2.2rem;
  }
}

/* ボタン */
.fs-c-button--primary {
  width: 100%;
  max-width: 380px;
  padding: 24px 0;
  border: none;
  border-radius: 4px;
  background: #d32f2f;
  color: #fff;
  font-weight: bold;
  font-size: 2.2rem;
  box-shadow: var(--ny-shadow);
}
.fs-c-button--primary:hover, .fs-c-button--primary:visited, .fs-c-button--primary:active {
  color: #fff;
}

.fs-c-button--standard,
.fs-c-button--secondary {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 380px;
  min-width: auto;
  padding: 1em 0;
  border: 1px solid var(--ny-c-gray);
  border-radius: 2em;
  background-color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  box-shadow: none;
}
.fs-c-button--standard::after,
.fs-c-button--secondary::after {
  position: absolute;
  top: 7px;
  right: 8px;
  width: 1.75em;
  height: 1.75em;
  border-radius: 1.75em;
  background-color: var(--ny-c-gray);
  color: #fff;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.25em;
  line-height: 1.75;
  -webkit-text-stroke-color: var(--ny-c-gray);
  -webkit-text-stroke-width: 1px;
  content: "\f054";
}
.fs-c-button--standard:hover, .fs-c-button--standard:visited, .fs-c-button--standard:active,
.fs-c-button--secondary:hover,
.fs-c-button--secondary:visited,
.fs-c-button--secondary:active {
  color: var(--fs-color-maincolor__font);
}
@media screen and (min-width: 768px) {
  .fs-c-button--standard,
  .fs-c-button--secondary {
    font-size: 2.2rem;
  }
  .fs-c-button--standard::after,
  .fs-c-button--secondary::after {
    top: 8px;
  }
}
@media screen and (min-width: 1200px) {
  .fs-c-button--standard,
  .fs-c-button--secondary {
    border-width: 2px;
  }
}

.fs-c-button--plain:hover {
  text-decoration: none;
  transition: opacity 0.2s ease;
}

/* ラジオボタン */
.fs-c-radio__radioMark {
  width: 25px;
  height: 25px;
  margin-right: 8px;
  border-width: 3px;
}

.fs-c-radio__radio:checked:enabled + label > .fs-c-radio__radioMark {
  border-color: var(--ny-c-orange);
}

.fs-c-radio__radio:checked:enabled + label > .fs-c-radio__radioMark::before {
  width: 12px;
  height: 12px;
  background: var(--ny-c-orange);
}

/* チェックボックス */
.fs-c-checkbox__checkMark {
  width: 25px;
  height: 25px;
  margin-right: 1em;
  border-width: 3px;
  border-color: #c0c0c0;
}

.fs-c-checkbox__checkMark::before {
  top: -1px;
  left: -3px;
  font-weight: bold;
  font-size: 2.4rem;
}

.fs-c-checkbox__checkbox:checked + label > .fs-c-checkbox__checkMark {
  border-color: #ed6d00;
  background-color: #ed6d00;
}

/* フォーム汎用 */
.fs-c-inputInformation__field {
  max-width: none;
  margin: 0;
}

.fs-c-inputField__field input,
.fs-c-inputField__field select {
  padding: 16px 1em;
  border-radius: 4px;
  font-size: 1.9rem;
  line-height: 1;
}

.fs-c-inputTable {
  border-spacing: 0;
}
.fs-c-inputTable > tbody > tr + tr {
  margin-top: 40px;
}

.fs-c-inputTable__headerCell {
  margin: 0 -16px;
  padding: var(--ny-p-page);
  border: none;
  background-color: #ededed;
  font-size: 1.8rem;
  line-height: 1;
}
.fs-c-inputTable__headerCell .fs-c-requiredMark {
  display: none;
}

.fs-c-subSection__title,
.fs-c-linkedServiceLogin__title {
  border: none;
  color: initial;
  font-size: 1.9rem;
  text-align: center;
}

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

.fs-c-dropdown::after {
  right: 8px;
  border: none;
  background: none;
  color: #757575;
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900;
  font-size: 1.25em;
  -webkit-text-stroke-color: #fff;
  -webkit-text-stroke-width: 0.5px;
  transform: rotate(90deg);
  content: "\f054";
}

@media screen and (min-width: 768px) {
  .fs-c-inputTable__headerCell {
    margin-left: -24px;
    margin-right: -24px;
  }
}
@media screen and (min-width: 1200px) {
  .fs-c-inputTable__headerCell {
    margin-left: 0;
    margin-right: 0;
  }
  .fs-c-inputField__field input,
  .fs-c-inputField__field select {
    font-size: 2rem;
  }
  .fs-c-inputTable__headerCell {
    padding: 16px var(--ny-p-page);
    font-size: 2.2rem;
  }
  .fs-c-subSection__title,
  .fs-c-linkedServiceLogin__title {
    font-size: 2.2rem;
  }
}
/* フォームパスワード */
.fs-c-button--particular.fs-c-button--displayPassword::before,
.fs-c-button--particular.fs-c-button--hidePassword::before {
  margin-right: 16px;
  font-size: 2em;
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 400;
  content: "\f06e";
}

/* 商品マーク */
.fs-c-productMark__mark {
  display: inline-block;
  margin: 0;
  padding: 4px 6px;
  border: 1px solid #0d326f;
  border-radius: 4px;
  background-color: #fff;
  color: #0d326f;
  font-size: 1.4rem;
}
.fs-c-productMark__mark.--blue {
  background-color: #0d326f;
  color: #fff;
}
.fs-c-productMark__mark.--sale {
  border-color: #ec6c00;
  background-color: #ec6c00;
  color: #fff;
}
.fs-c-productMark__mark.--new {
  border-color: #4caf50;
  background-color: #4caf50;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .fs-c-productMark__mark {
    padding: 4px 8px;
    font-size: 1.6rem;
  }
}

/* 販売価格 */
.fs-c-productPrices:has(.fs-c-productPrice--listed) {
  display: flex;
  flex-direction: column;
}
.fs-c-productPrices:has(.fs-c-productPrice--listed) .fs-c-productPrice--selling {
  order: -1;
  color: #c62828;
}
.fs-c-productPrices:has(.fs-c-productPrice--listed) .fs-c-productPrice--selling .fs-c-productPrice__main__price {
  color: #c62828;
}

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

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

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

/* 数量メッセージ */
.fs-c-quantity__number:focus:not(.is-error) + .fs-c-quantity__message {
  border: none;
  background: transparent;
  text-align: right;
}
.fs-c-quantity__number:focus:not(.is-error) + .fs-c-quantity__message::before {
  font-size: 1.4rem;
}

/* ページネーション */
.fs-c-productList .fs-c-productList__controller {
  margin: 0;
}
.fs-c-productList .fs-c-productList__list + .fs-c-productList__controller {
  padding-top: 60px;
}
.fs-c-productList .fs-c-productList__controller > *,
.fs-c-productList .fs-c-staffList__controller > *,
.fs-c-productList .fs-c-coordinationList__controller > * {
  margin: 0;
}
.fs-c-productList .fs-c-listControl {
  display: block;
}
.fs-c-productList .fs-c-listControl__status {
  width: 100%;
  text-align: center;
}
.fs-c-productList .fs-c-listControl__status__indication {
  margin-left: 0.5em;
}
.fs-c-productList .fs-c-listControl__status__total,
.fs-c-productList .fs-c-listControl__status__indication {
  font-size: 2.2rem;
}
.fs-c-productList .fs-c-listControl__status__total__label,
.fs-c-productList .fs-c-listControl__status__indication__label {
  font-size: 1.8rem;
}
.fs-c-productList .fs-c-pagination {
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}
.fs-c-productList a.fs-c-pagination__item,
.fs-c-productList span.fs-c-pagination__item.is-active {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: none;
  width: 50px;
  height: 50px;
  margin-left: 1em;
  padding: 0;
  border: 1px solid #757575;
  border-radius: 50%;
  background-color: #fff;
  color: #757575;
  font-size: 2.2rem;
  line-height: 1;
}
.fs-c-productList span.fs-c-pagination__item.is-active {
  background-color: #757575;
  color: #fff;
}
.fs-c-productList span.fs-c-pagination__item {
  flex: none;
  padding: 0 1em;
}
.fs-c-productList span.fs-c-pagination__item:not(.is-active) + .fs-c-pagination__item {
  margin-left: 0;
}
.fs-c-productList a.fs-c-pagination__item--prev,
.fs-c-productList a.fs-c-pagination__item--next {
  margin-left: 0.75em;
  border: none;
  background-color: transparent;
}
.fs-c-productList a.fs-c-pagination__item--prev::before,
.fs-c-productList a.fs-c-pagination__item--next::before {
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900;
  content: "\f054";
}
.fs-c-productList a.fs-c-pagination__item--prev::before {
  transform: rotate(180deg);
}

@media screen and (min-width: 768px) {
  .fs-c-productList .fs-c-listControl__status__total,
  .fs-c-productList .fs-c-listControl__status__indication {
    font-size: 2.4rem;
  }
  .fs-c-productList .fs-c-listControl__status__total__label,
  .fs-c-productList .fs-c-listControl__status__indication__label {
    font-size: 1.6rem;
  }
  .fs-c-productList a.fs-c-pagination__item,
  .fs-c-productList span.fs-c-pagination__item.is-active {
    font-size: 2.4rem;
  }
}
/* モーダル */
.fs-c-modal .fs-c-modal__header,
.fs-c-modal--medium .fs-c-modal__header,
.fs-c-modal--small .fs-c-modal__header {
  font-size: 2.2rem;
}
.fs-c-modal .fs-c-inputTable__headerCell,
.fs-c-modal--medium .fs-c-inputTable__headerCell,
.fs-c-modal--small .fs-c-inputTable__headerCell {
  margin-bottom: 1em;
  padding: 1em;
}
.fs-c-modal .fs-c-dropdown select,
.fs-c-modal--medium .fs-c-dropdown select,
.fs-c-modal--small .fs-c-dropdown select {
  padding-right: 3em;
}
.fs-c-modal .fs-c-checkout-checkoutMethod + .fs-c-checkout-checkoutMethod,
.fs-c-modal--medium .fs-c-checkout-checkoutMethod + .fs-c-checkout-checkoutMethod,
.fs-c-modal--small .fs-c-checkout-checkoutMethod + .fs-c-checkout-checkoutMethod {
  margin-top: 2em;
}
.fs-c-modal .fs-c-inputInformation,
.fs-c-modal--medium .fs-c-inputInformation,
.fs-c-modal--small .fs-c-inputInformation {
  margin-bottom: 2em;
}
.fs-c-modal .fs-c-buttonContainer,
.fs-c-modal--medium .fs-c-buttonContainer,
.fs-c-modal--small .fs-c-buttonContainer {
  margin-top: 2em;
}
.fs-c-modal .fs-c-button--standard,
.fs-c-modal--medium .fs-c-button--standard,
.fs-c-modal--small .fs-c-button--standard {
  min-width: 250px;
}

/* 合計テーブル */
.fs-c-orderTotalTable > thead > tr > th,
.fs-c-orderTotalTable > thead > tr th,
.fs-c-orderTotalTable > thead > tr td,
.fs-c-orderTotalTable > tfoot > tr > th,
.fs-c-orderTotalTable > tfoot > tr th,
.fs-c-orderTotalTable > tfoot > tr td,
.fs-c-orderTotalTable > tbody > tr > th,
.fs-c-orderTotalTable > tbody > tr th,
.fs-c-orderTotalTable > tbody > tr td {
  padding: 0;
  border: none;
}

.fs-c-orderTotalTable > thead > tr:last-of-type,
.fs-c-orderTotalTable > tfoot > tr:last-of-type,
.fs-c-orderTotalTable > tbody > tr:last-of-type {
  padding: 0;
  border: none;
}

/* header
--------------------------------------------- */
.ny-header-contents {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 100;
}

.ny-header-contents-inner {
  display: flex;
  justify-content: space-between;
  place-items: center;
  transition: box-shadow 0.2s ease;
}

.ny-header-logo {
  padding: 0 16px;
}

.ny-header-menu ul {
  display: flex;
}
.ny-header-menu .ny-header-menu-btn,
.ny-header-menu .ny-header-drawer-btn {
  position: relative;
  display: grid;
  place-content: center;
  place-items: center;
  width: 70px;
  height: 72.5px;
}
.ny-header-menu .ny-header-menu-btn span,
.ny-header-menu .ny-header-drawer-btn span {
  padding-top: 2px;
  font-size: 1.2rem;
  line-height: 1;
}
.ny-header-menu .ny-header-menu-btn {
  transition: background-color 0.2s ease;
}
.ny-header-menu .ny-header-menu-btn:hover {
  background-color: #f0f0f0;
  opacity: 1;
}
.ny-header-menu .fs-p-cartItemNumber.is-ready:not(.fs-client-cart-count--0) {
  top: 4px;
  right: 8px;
  display: grid;
  place-content: center;
  width: 20px;
  height: 20px;
  padding: 0;
  border-radius: 50%;
  background-color: var(--ny-c-orange);
  font-style: normal;
  font-size: 1.2rem;
}
.ny-header-menu .ny-header-drawer-btn {
  background-color: var(--ny-c-orange);
  color: #fff;
}
.ny-header-menu .ny-icon-drawer {
  font-style: normal;
}
.ny-header-menu .ny-icon-drawer::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.5em;
  -webkit-text-stroke-color: var(--ny-c-orange);
  -webkit-text-stroke-width: 1px;
  content: "\f0c9";
}
.ny-header-menu .ny-icon-drawer + span {
  position: relative;
  top: -6px;
}

.ny-header-search,
.ny-header-nav {
  display: none;
}

/* TABLET */
@media screen and (min-width: 768px) {
  .ny-header-contents-inner {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
  }
  .ny-header-logo {
    padding: 0 24px;
  }
  .ny-header-logo img {
    height: 50px;
  }
  .ny-header-search {
    display: block;
    width: 100%;
  }
  .ny-header-search .ny-search-form .fs-p-inputGroup {
    border: 2px solid var(--ny-c-gray);
    border-radius: 8px;
  }
  .ny-header-search .ny-search-form .fs-p-inputGroup::placeholder {
    color: #a8a8a8;
  }
  .ny-header-search .ny-search-form .fs-p-searchForm__input {
    height: 52px;
    padding: 0 1em;
    border-radius: 8px;
    font-size: 2rem;
  }
  .ny-header-search .ny-search-form .fs-p-searchForm__input:focus {
    border: none;
    box-shadow: none;
  }
  .ny-header-search .ny-search-form button {
    padding: 0 0.75em;
    border: none;
    border-radius: 8px;
    background: none;
  }
  .ny-header-search .ny-search-form button::after {
    color: #757575;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 1.8em;
    -webkit-text-stroke-color: #fff;
    -webkit-text-stroke-width: 1px;
    content: "\f002";
  }
  .ny-header-menu {
    margin-left: 16px;
  }
  .ny-header-menu .ny-header-menu-btn {
    width: 95px;
    height: 85px;
  }
  .ny-header-menu .ny-header-menu-btn span {
    padding-top: 4px;
    font-size: 1.6rem;
  }
  .ny-header-menu .ny-header-menu-btn img {
    height: 33px;
  }
  .ny-header-menu .fs-p-cartItemNumber.is-ready:not(.fs-client-cart-count--0) {
    right: 16px;
  }
  .ny-header-nav {
    display: block;
    border-bottom: 2px solid var(--ny-c-orange);
    background-color: #f4f4f4;
    font-size: 1.9rem;
  }
  .ny-header-category {
    display: grid;
    grid-template-columns: repeat(7, auto);
    padding: 8px 0;
  }
  .ny-header-category li a {
    display: block;
    line-height: 56px;
    text-align: center;
    transition: line-height 0.5s ease, opacity 0.2s ease;
  }
  .ny-header-category li + li {
    border-left: 1px solid var(--ny-c-gray);
  }
}
/* PC */
@media screen and (min-width: 1200px) {
  .ny-header-contents-inner {
    max-width: 1250px;
    margin: 0 auto;
  }
  .ny-header-logo {
    padding-left: 0;
  }
  .ny-header-tel {
    margin-left: 24px;
  }
  .ny-header-tel p {
    margin: 0 0 -2px 0;
  }
  .ny-header-tel small {
    font-size: 1.3rem;
  }
  .ny-header-tel a {
    color: var(--ny-c-orange);
    font-weight: bold;
    font-size: 2.8rem;
    line-height: 1.2;
    letter-spacing: 1px;
  }
  .ny-header-menu {
    margin-left: 8px;
  }
  .ny-header-menu .ny-header-menu-btn {
    width: 90px;
    height: 96px;
  }
  .ny-header-menu .fs-p-cartItemNumber.is-ready:not(.fs-client-cart-count--0) {
    top: 8px;
  }
  .ny-header-nav {
    font-size: 1.8rem;
  }
  .ny-header-category {
    max-width: 1250px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1280px) {
  .ny-header-logo {
    padding-left: 16px;
  }
}
.ny-header-contents.--is-scroll {
  box-shadow: var(--ny-shadow);
}

/* シンプル用ヘッダー */
.fs-l-header--min {
  padding: 12px var(--ny-p-page);
  border: none;
}
.fs-l-header--min .ny-header-logo {
  padding: 0;
}

@media screen and (min-width: 768px) {
  .fs-l-header--min .ny-header-logo img {
    width: 110px;
    height: auto;
  }
}
@media screen and (min-width: 1200px) {
  .fs-l-header--min {
    max-width: var(--ny-w-page);
    margin: 0 auto;
    padding: 16px var(--ny-p-page);
  }
}
/* スマホメニュー
--------------------------------------------- */
.ny-aside {
  left: auto;
  right: 0;
  width: 100%;
  padding: 0;
  box-shadow: none;
  z-index: 1000;
  transform: translateX(101%);
  transition: transform 0.4s ease-in-out;
}

.fs-p-ctrlDrawer:checked + .ny-aside {
  animation: asideback 0.1s ease 0.4s forwards;
}

@keyframes asideback {
  0% {
    background-color: rgba(0, 0, 0, 0);
  }
  100% {
    background-color: rgba(0, 0, 0, 0.3);
  }
}
.--is-menu-open {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .--is-menu-open {
    overflow: initial;
  }
}

.ny-aside-inner {
  min-height: 100svh;
  margin-left: 16px;
  background-color: #f0f0f0;
}

.ny-aside-close {
  position: absolute;
  top: 0;
  right: 0;
}
.ny-aside-close .fs-p-drawerButton {
  display: grid;
  place-content: center;
  place-items: center;
  width: 70px;
  height: 72.5px;
  padding: 0;
  background-color: var(--ny-c-orange);
  color: #fff;
  font-size: 1.3rem;
}
.ny-aside-close .ny-aside-close-icon::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 2em;
  line-height: 1.2;
  content: "\f00d";
}

.ny-aside-register {
  display: grid;
  grid-template-columns: repeat(2, 125px);
  column-gap: 16px;
  padding: 12px;
  background-color: #fff;
}
.ny-aside-register.is-ready {
  display: grid;
}
.ny-aside-register .ny-aside-register-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  border: 1px solid var(--ny-c-gray);
  background-color: #f19f2b;
  color: #fff;
  font-weight: bold;
  font-size: 1.9rem;
}
.ny-aside-register .ny-aside-register-item.--mypage img {
  height: 24px;
  margin-right: 10px;
}

.ny-aside .ny-top-search {
  padding: 12px;
  background-color: #fff;
}
.ny-aside .ny-top-search .ny-search-form button::after {
  -webkit-text-stroke-width: 0.5px;
}

.ny-aside-category {
  padding: 0 12px 20px;
  background-color: #f8f8f8;
}
.ny-aside-category li a {
  display: block;
  position: relative;
  padding: 20px 12px;
  border-bottom: 1px solid var(--ny-c-gray);
  font-size: 1.9rem;
  line-height: 1;
}
.ny-aside-category li a::after {
  position: absolute;
  top: 20px;
  right: 12px;
  color: #757575;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
}

.ny-aside-info {
  padding: 24px 12px;
}
.ny-aside-info h2 {
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1;
  text-align: center;
}

.ny-aside-info-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 12px;
  margin-top: 20px;
}
.ny-aside-info-list li a {
  display: block;
  padding: 20px 0 16px;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: var(--ny-shadow);
  font-size: 1.9rem;
  text-align: center;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}
.ny-aside-info-list li a img {
  display: block;
  width: 40px;
  margin: 0 auto 8px;
}

/* footer
--------------------------------------------- */
/* 共通 */
.ny-footer h2 {
  color: #fff;
  font-size: 1.9rem;
  line-height: 1;
}

.ny-footer-link-list li {
  border-bottom: 1px solid var(--ny-c-gray);
}
.ny-footer-link-list li a {
  display: block;
  position: relative;
  padding: var(--ny-p-page);
  background-color: #f8f8f8;
  font-weight: bold;
  font-size: 1.9rem;
  line-height: 1;
}
.ny-footer-link-list li a::after {
  position: absolute;
  top: 16px;
  right: 16px;
  color: #757575;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  -webkit-text-stroke-color: #f8f8f8;
  -webkit-text-stroke-width: 0.5px;
  content: "\f054";
}

/* カテゴリー */
.fs-body-top .ny-footer-category {
  display: block;
}

.ny-footer-category {
  display: none;
}
.ny-footer-category h2 {
  padding: var(--ny-p-page);
  background-color: var(--fs-color-maincolor__font);
  text-align: center;
}

/* 当サイトについて */
.ny-footer-about h2 {
  position: relative;
  padding: var(--ny-p-page);
  background: linear-gradient(180deg, #1d478d 0%, #1d478d 50%, #0d326f 50%, #0d326f 100%);
}
.ny-footer-about h2::after {
  position: absolute;
  top: 16px;
  right: 18px;
  transition: transform 0.5s ease;
  transform: rotate(90deg);
  color: #fff;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  -webkit-text-stroke-color: #0d326f;
  -webkit-text-stroke-width: 0.5px;
  content: "\f054";
}
.ny-footer-about .ny-footer-link-list {
  height: 0;
  overflow: hidden;
  transition: height 0.5s ease;
}

.ny-footer-about.--is-open h2::after {
  transform: rotate(-90deg);
}

/* お問い合わせ */
.ny-footer-contact {
  background-color: #041d45;
}
.ny-footer-contact h2 {
  padding: 32px var(--ny-p-page);
}

.ny-footer-contact-list li {
  padding: 0 var(--ny-p-page) 32px;
  color: #fff;
  font-size: 1.5rem;
}
.ny-footer-contact-list li h3 {
  margin-bottom: 8px;
  padding: 8px var(--ny-p-page);
  border-radius: 18px;
  background-color: #fff;
  color: #041d45;
  font-size: 1.8rem;
}
.ny-footer-contact-list li p {
  margin: 0 0 0 16px;
}
.ny-footer-contact-list li b {
  font-size: 4.2rem;
}
.ny-footer-contact-list li a {
  color: #fff;
}
.ny-footer-contact-list li .ny-footer-contact-link {
  margin-top: 16px;
}
.ny-footer-contact-list li .ny-footer-contact-link a {
  font-weight: bold;
  font-size: 2rem;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

/* リンク、会社概要 */
.ny-footer-company ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 8px 0;
}
.ny-footer-company ul li {
  margin-top: 0.5em;
  padding-right: 0.5em;
  border-right: 1px solid;
}
.ny-footer-company ul li + li {
  margin-left: 0.5em;
}
.ny-footer-company ul li:last-of-type {
  padding-right: 0;
  border-right: none;
}

.ny-footer-copyright {
  padding: 8px 0 3em;
  font-size: 1.2rem;
  text-align: center;
}
.ny-footer-copyright p {
  margin: 0;
}

/* TABLET */
@media screen and (min-width: 768px) {
  /* 共通 */
  .ny-footer h2 {
    margin-bottom: 40px;
    font-size: 2.4rem;
  }
  .ny-footer-link-list li {
    border-bottom: none;
  }
  .ny-footer-link-list li a {
    display: inline;
    padding: 0;
    background: none;
    font-weight: normal;
    font-size: 2rem;
  }
  .ny-footer-link-list li a::after {
    content: none;
  }
  .ny-footer-content {
    padding-left: var(--ny-p-page);
    padding-right: var(--ny-p-page);
  }
  /* カテゴリー */
  .ny-footer-category {
    display: block;
    padding: 56px 0;
    background-color: #f0f0f0;
  }
  .ny-footer-category h2 {
    padding: 0;
    background: none;
    color: var(--fs-color-maincolor__font);
    text-align: left;
  }
  .ny-footer-category .ny-footer-link-list {
    display: grid;
    grid-template: repeat(6, 1fr)/repeat(3, 1fr);
    row-gap: 1.25em;
    grid-auto-flow: column;
  }
  /* 当サイトについて */
  .ny-footer-about-wrapper {
    padding: 40px 0;
    background-color: #041d45;
  }
  .ny-footer-about-wrapper .ny-footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
  }
  .ny-footer-about h2 {
    padding: 0;
    background: none;
  }
  .ny-footer-about h2::after {
    content: none;
  }
  .ny-footer-about .ny-footer-link-list {
    display: grid;
    row-gap: 1.25em;
    height: auto !important;
    transition: height none;
  }
  .ny-footer-about .ny-footer-link-list li a {
    color: #fff;
  }
  .ny-footer-about:nth-of-type(2) .ny-footer-link-list {
    grid-template: repeat(4, 1fr)/repeat(2, 1fr);
    grid-auto-flow: column;
  }
  /* お問い合わせ */
  .ny-footer-contact {
    padding: 40px 0;
  }
  .ny-footer-contact h2 {
    padding: 0;
  }
  .ny-footer-contact-list {
    display: flex;
    column-gap: 24px;
  }
  .ny-footer-contact-list li {
    padding: 24px 16px;
    background-color: #233a5f;
    font-size: 1.5rem;
  }
  .ny-footer-contact-list li h3 {
    font-weight: normal;
    font-size: 1.8rem;
  }
  .ny-footer-contact-list li b {
    font-size: 3.4rem;
  }
  .ny-footer-contact-list li .ny-footer-contact-link a {
    font-weight: normal;
  }
  /* リンク、会社概要 */
  .ny-footer-company ul {
    padding: 24px 0;
  }
  .ny-footer-copyright {
    padding-top: 16px;
    font-size: 1.6rem;
  }
}
/* PC */
@media screen and (min-width: 1200px) {
  /* 共通 */
  .ny-footer-content {
    max-width: var(--ny-w-page);
    margin: 0 auto;
  }
  /* カテゴリー */
  .ny-footer-category .ny-footer-link-list {
    display: grid;
    grid-template: repeat(4, 1fr)/repeat(5, 1fr);
  }
  /* 当サイトについて */
  .ny-footer-about-wrapper {
    padding: 56px 0 0;
  }
  .ny-footer-about-wrapper .ny-footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
  }
  .ny-footer-about:nth-of-type(2) .ny-footer-link-list {
    grid-template: repeat(4, 1fr)/repeat(3, 1fr);
    grid-auto-flow: column;
  }
  /* お問い合わせ */
  .ny-footer-contact {
    padding: 56px 0;
  }
  .ny-footer-contact-list {
    margin-left: -24px;
  }
  .ny-footer-contact-list li {
    padding: 24px;
    font-size: 1.8rem;
  }
  .ny-footer-contact-list li h3 {
    font-weight: bold;
    font-size: 2.2rem;
  }
  .ny-footer-contact-list li p {
    margin-left: 24px;
  }
  .ny-footer-contact-list li b {
    font-size: 4rem;
  }
  .ny-footer-contact-list li .ny-footer-contact-link a {
    font-weight: normal;
  }
  /* リンク、会社概要 */
  .ny-footer-copyright p + p {
    margin-top: 0.75em;
  }
}
/* component
--------------------------------------------- */
.ny-common-wrapper {
  background-color: #f8f8f8;
}

.ny-general-wrapper {
  padding-top: 28px;
  padding-bottom: 200px;
}

.ny-container {
  max-width: var(--ny-w-page);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--ny-p-page);
  padding-right: var(--ny-p-page);
}
.ny-container.--item {
  padding-left: 0;
  padding-right: 0;
}

@media screen and (min-width: 768px) {
  .ny-container.--item {
    padding-left: var(--ny-p-page);
    padding-right: var(--ny-p-page);
  }
}
@media screen and (min-width: 1200px) {
  .ny-general-wrapper {
    padding-top: 40px;
  }
}
/* トップへ戻るボタン */
.ny-button-totop {
  position: fixed;
  right: 8px;
  bottom: 8px;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.ny-button-totop a::after {
  display: grid;
  place-content: center;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: rgba(3, 3, 3, 0.5);
  color: #fff;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 2em;
  transform: rotate(-90deg);
  -webkit-text-stroke-color: rgba(3, 3, 3, 0.5);
  -webkit-text-stroke-width: 1px;
  content: "\f054";
}
.ny-button-totop.--is-scroll {
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 768px) {
  .ny-button-totop {
    right: 16px;
    bottom: 16px;
  }
}
/* リンクボタン */
.ny-button-link {
  text-align: center;
}
.ny-button-link a {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 380px;
  padding: 1em 0;
  border: 1px solid var(--ny-c-gray);
  border-radius: 2em;
  background-color: #fff;
  font-size: 1.7rem;
  line-height: 1;
}
.ny-button-link a::after {
  position: absolute;
  top: 7px;
  right: 8px;
  width: 1.75em;
  height: 1.75em;
  border-radius: 1.75em;
  background-color: var(--ny-c-gray);
  color: #fff;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.25em;
  line-height: 1.75;
  -webkit-text-stroke-color: var(--ny-c-gray);
  -webkit-text-stroke-width: 1px;
  content: "\f054";
}
.ny-button-link a:hover {
  cursor: pointer;
}
.ny-button-link.--reverse a::after {
  right: 0;
  left: 8px;
  transform: rotate(180deg);
}
@media screen and (min-width: 768px) {
  .ny-button-link a {
    font-size: 2.2rem;
  }
  .ny-button-link a::after {
    top: 8px;
  }
  .ny-button-link.--reverse a::after {
    right: 0;
    left: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .ny-button-link a {
    border-width: 2px;
  }
}

/* 汎用ボタン */
.ny-button-simple a {
  display: inline-block;
  padding: 1em;
  border: 1px solid var(--ny-c-gray);
  border-radius: 4px;
  background-color: #fff;
  line-height: 1;
}
@media screen and (min-width: 1200px) {
  .ny-button-simple a {
    padding: 0.75em 1.5em;
  }
}

/* フロー表示（購入、会員登録など） */
.ny-flow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}
.ny-flow li {
  padding: 16px;
  background-color: #fff3e0;
  line-height: 1;
}
.ny-flow li:first-of-type {
  position: relative;
  background-color: #f19f2b;
  color: #fff;
  font-weight: bold;
}
.ny-flow li:first-of-type::after {
  top: 0;
  right: -12px;
  position: absolute;
  border-style: solid;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-left: 12px solid #f19f2b;
  border-right: 0;
  content: "";
}

.ny-flow.--step2 li {
  background-color: #f19f2b;
  color: #fff;
  font-weight: bold;
}
.ny-flow.--step2 li:first-of-type {
  background-color: #fff3e0;
  color: initial;
  font-weight: normal;
}
.ny-flow.--step2 li:first-of-type::after {
  border-left-color: #fff3e0;
}

@media screen and (min-width: 1200px) {
  .ny-flow {
    max-width: var(--ny-w-page);
    margin: 0 auto;
    padding: 0 var(--ny-p-page);
  }
}
/* 商品一覧の並び替え */
.ny-item-sort {
  position: relative;
  padding-right: 16px;
  text-align: right;
}
.ny-item-sort select {
  width: auto;
  padding: 14px 50px 14px 14px;
  border-color: var(--ny-c-gray);
  border-radius: 4px;
  background-color: #fff;
  line-height: 1;
}
.ny-item-sort::after {
  position: absolute;
  top: 7px;
  right: 34px;
  color: #757575;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.25em;
  transform: rotate(90deg);
  content: "\f054";
}

@media screen and (min-width: 768px) {
  .ny-item-sort {
    padding-right: 24px;
  }
  .ny-item-sort::after {
    right: 42px;
  }
}
@media screen and (min-width: 1200px) {
  .ny-item-sort {
    max-width: var(--ny-w-page);
    margin: 0 auto;
  }
}
/* 関連キーワード */
.ny-related-keyword:not(:has(.ny-related-keyword-list)) {
  display: none;
}

.ny-related-keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ny-p-page);
}
.ny-related-keyword-list li a {
  display: block;
  padding: 0.75em;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: var(--ny-shadow);
  font-size: 1.9rem;
  text-align: center;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}
.ny-related-keyword-list li a:hover {
  background-color: #f0f0f0;
  opacity: 1;
  transition: background-color 0.2s ease;
}

@media screen and (min-width: 768px) {
  .ny-related-keyword-list li a {
    padding: 0.75em 1em;
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .ny-related-keyword-list li a {
    padding: 0.75em 2em;
    font-size: 2.2rem;
  }
}
/* 商品一覧 汎用
--------------------------------------------- */
.fs-c-productList__list {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 12px;
  padding: 0;
}

.fs-c-productListItem {
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  background-color: #fff;
  box-shadow: var(--ny-shadow);
}
.fs-c-productListItem:has(.fs-c-productListItem__outOfStock)::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  pointer-events: none;
  z-index: 1;
  content: "";
}

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

.fs-c-productListItem .fs-c-productListItem__image {
  padding: 1em;
}
.fs-c-productListItem .fs-c-productListItem__viewMoreImageButton {
  display: none;
}
.fs-c-productListItem .fs-c-productListItem__productName {
  margin: 0;
}
.fs-c-productListItem .fs-c-productName__name {
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 3em;
  margin: 12px 8px 16px;
  font-weight: normal;
  font-size: 1.9rem;
  line-height: 1.5;
}
.fs-c-productListItem .fs-c-productMarks {
  margin: 0 8px;
}
.fs-c-productListItem .fs-c-productMark {
  gap: 4px;
}
.fs-c-productListItem .fs-c-productMark__item:has(.--sale),
.fs-c-productListItem .fs-c-productMark__item:has(.--new) {
  position: absolute;
  top: 0;
  left: 0;
}
.fs-c-productListItem .fs-c-productMark__item:has(.--sale) {
  z-index: 1;
}
.fs-c-productListItem .fs-c-productMark__mark.--sale, .fs-c-productListItem .fs-c-productMark__mark.--new {
  display: block;
  padding: 0;
  border: none;
  transform: rotate(315deg);
}
.fs-c-productListItem .fs-c-productMark__mark.--sale::after, .fs-c-productListItem .fs-c-productMark__mark.--new::after {
  position: absolute;
  top: 0;
  left: -50px;
  border-style: solid;
  border-right: 50px solid transparent;
  border-left: 50px solid transparent;
  border-bottom: 50px solid #ec6c00;
  border-top: 0;
  content: "";
}
.fs-c-productListItem .fs-c-productMark__mark.--sale > span, .fs-c-productListItem .fs-c-productMark__mark.--new > span {
  position: absolute;
  top: 28px;
  left: -19px;
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  z-index: 1;
}
.fs-c-productListItem .fs-c-productMark__mark.--new::after {
  border-bottom-color: #4caf50;
}
.fs-c-productListItem .fs-c-productMark__mark.--new > span {
  left: -17px;
}
.fs-c-productListItem .fs-c-productListItem__prices {
  margin-top: auto;
  padding: 32px 8px 28px;
}
.fs-c-productListItem .fs-c-productPrice__main__label {
  font-size: 1.4rem;
}
.fs-c-productListItem .fs-c-price__value::after {
  margin-left: 4px;
  font-weight: normal;
  font-size: 1.4rem;
  content: "円";
}
.fs-c-productListItem .fs-c-price__value {
  font-weight: bold;
  font-size: 1.8rem;
}
.fs-c-productListItem .fs-c-productPrice--listed .fs-c-productPrice__main__label,
.fs-c-productListItem .fs-c-productPrice--listed .fs-c-price__value::after,
.fs-c-productListItem .fs-c-productPrice--listed .fs-c-price__value {
  color: #757575;
  font-size: 1.4rem;
}
.fs-c-productListItem .fs-c-productListItem__outOfStock {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0.5em;
  border: none;
  background-color: var(--fs-color-maincolor__font);
  color: #fff;
  font-size: 1.4rem;
  z-index: 10;
}

.fs-c-productListCarousel .fs-c-productListCarousel__list {
  margin: -2px;
  padding: 2px;
}
.fs-c-productListCarousel .fs-c-productListCarousel__list .fs-c-productListItem {
  display: flex !important;
}
.fs-c-productListCarousel .slick-list {
  height: 100%;
  margin: -2px;
  padding: 2px;
}
.fs-c-productListCarousel .slick-track {
  height: 100%;
}
.fs-c-productListCarousel .slick-slide > div,
.fs-c-productListCarousel .slick-slide > div > .fs-c-productListCarousel__list__item {
  height: 100%;
}
.fs-c-productListCarousel .fs-c-productListCarousel__list__item {
  flex-direction: column;
}

.fs-c-productListCarousel.--no-carousel {
  display: block;
}
.fs-c-productListCarousel.--no-carousel .slick-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 12px;
  padding: 0;
}
.fs-c-productListCarousel.--no-carousel .fs-c-productListCarousel__list {
  display: block;
  overflow: visible;
}
.fs-c-productListCarousel.--no-carousel .fs-c-productListCarousel__list__item {
  max-width: 100%;
}
.fs-c-productListCarousel.--no-carousel .slick-list {
  overflow: visible;
}
.fs-c-productListCarousel.--no-carousel .fs-c-button--carousel {
  display: none;
}
.fs-c-productListCarousel.--no-carousel .slick-track {
  width: 100% !important;
}
.fs-c-productListCarousel.--no-carousel .slick-track::before, .fs-c-productListCarousel.--no-carousel .slick-track::after {
  display: none;
}
.fs-c-productListCarousel.--no-carousel .slick-slide:nth-of-type(n + 3) {
  display: none;
}

@media screen and (min-width: 768px) {
  .fs-c-productList__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 16px;
  }
  .fs-c-productListItem .fs-c-productName__name {
    margin: 24px 16px 16px;
    font-size: 2.2rem;
  }
  .fs-c-productListItem .fs-c-productMarks {
    margin: 0 16px;
  }
  .fs-c-productListItem .fs-c-productMark {
    gap: 8px;
  }
  .fs-c-productListItem .fs-c-productMark__mark.--sale::after, .fs-c-productListItem .fs-c-productMark__mark.--new::after {
    left: -60px;
    border-right: 60px solid transparent;
    border-left: 60px solid transparent;
    border-bottom: 60px solid #ec6c00;
  }
  .fs-c-productListItem .fs-c-productMark__mark.--sale > span, .fs-c-productListItem .fs-c-productMark__mark.--new > span {
    top: 30px;
    left: -27px;
    font-size: 2.2rem;
  }
  .fs-c-productListItem .fs-c-productMark__mark.--new::after {
    border-bottom-color: #4caf50;
  }
  .fs-c-productListItem .fs-c-productMark__mark.--new > span {
    left: -25px;
  }
  .fs-c-productListItem .fs-c-productListItem__prices {
    padding: 40px 16px 32px;
  }
  .fs-c-productListItem .fs-c-productPrice__main__label {
    font-size: 1.6rem;
  }
  .fs-c-productListItem .fs-c-price__value::after {
    font-size: 1.6rem;
  }
  .fs-c-productListItem .fs-c-price__value {
    font-size: 2.2rem;
  }
  .fs-c-productListItem .fs-c-productPrice--listed .fs-c-productPrice__main__label,
  .fs-c-productListItem .fs-c-productPrice--listed .fs-c-price__value::after,
  .fs-c-productListItem .fs-c-productPrice--listed .fs-c-price__value {
    font-size: 1.6rem;
  }
  .fs-c-productListCarousel .fs-c-productListCarousel__list {
    margin: -4px;
    padding: 4px;
  }
  .fs-c-productListCarousel .slick-list {
    margin: -4px;
    padding: 4px;
  }
  .fs-c-productListCarousel.--no-carousel .slick-track {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 16px;
  }
  .fs-c-productListCarousel.--no-carousel .slick-slide:nth-of-type(n + 3) {
    display: block;
  }
  .fs-c-productListCarousel.--no-carousel .slick-slide:nth-of-type(n + 4) {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .fs-c-productList__list {
    grid-template-columns: repeat(5, 1fr);
  }
  .fs-c-productListItem .fs-c-productName__name {
    margin-bottom: 24px;
  }
  .fs-c-productListItem .fs-c-productMark__mark.--sale::after, .fs-c-productListItem .fs-c-productMark__mark.--new::after {
    left: -50px;
    border-right: 50px solid transparent;
    border-left: 50px solid transparent;
    border-bottom: 50px solid #ec6c00;
  }
  .fs-c-productListItem .fs-c-productMark__mark.--sale > span, .fs-c-productListItem .fs-c-productMark__mark.--new > span {
    top: 28px;
    left: -19px;
    font-size: 1.6rem;
  }
  .fs-c-productListItem .fs-c-productMark__mark.--new::after {
    border-bottom-color: #4caf50;
  }
  .fs-c-productListItem .fs-c-productMark__mark.--new > span {
    left: -17px;
  }
  .fs-c-productListCarousel.--no-carousel .slick-track {
    grid-template-columns: repeat(5, 1fr);
  }
  .fs-c-productListCarousel.--no-carousel .slick-slide:nth-of-type(n + 4) {
    display: block;
  }
  .fs-c-productListCarousel.--no-carousel .slick-slide:nth-of-type(n + 6) {
    display: none;
  }
}
/* future ai recommend
--------------------------------------------- */
.flywheel-recommend__frame .fs-p-heading--lv2 {
  display: none;
}
.flywheel-recommend__frame .fr3-productListStatic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 12px;
  padding: 0;
}
.flywheel-recommend__frame .fr3-item,
.flywheel-recommend__frame .fr3-productListCarousel__slide {
  background-color: #fff;
  box-shadow: var(--ny-shadow);
}
.flywheel-recommend__frame .fr3-item__link {
  gap: 0;
}
.flywheel-recommend__frame .fr3-item__link:hover img {
  opacity: 1;
}
.flywheel-recommend__frame .fr3-item__rankContainer {
  position: relative;
  height: 0;
}
.flywheel-recommend__frame .fr3-item__rank {
  position: absolute;
  display: grid;
  place-content: center;
  top: 0;
  left: 0;
  width: 35px;
  height: 40px;
  border-radius: 0 0 50% 50%;
  background-color: #ededed;
  font-weight: bold;
  font-size: 2rem;
  z-index: 1;
}
.flywheel-recommend__frame .fr3-item__rank[data-item-rank="1"] {
  background-color: #d9b300;
  color: #fff;
}
.flywheel-recommend__frame .fr3-item__rank[data-item-rank="2"] {
  background-color: #b0b0b0;
  color: #fff;
}
.flywheel-recommend__frame .fr3-item__rank[data-item-rank="3"] {
  background-color: #ca724c;
  color: #fff;
}
.flywheel-recommend__frame .fr3-item:nth-of-type(n + 5) {
  display: none;
}
.flywheel-recommend__frame .fr3-item__imageContainer {
  padding: 1em;
}
.flywheel-recommend__frame .fr3-item__productName {
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 3em;
  margin: 12px 8px 36px;
  font-size: 1.9rem;
  line-height: 1.5;
}
.flywheel-recommend__frame .fr3-item__productPrice {
  margin: 0 8px 28px;
}
.flywheel-recommend__frame .fr3-item__productPrice__price::before {
  font-size: 1.4rem;
  content: "税込";
}
.flywheel-recommend__frame .fr3-item__productPrice__price::after {
  font-size: 1.4rem;
  content: "円";
}
.flywheel-recommend__frame .fr3-item__productPrice__value {
  font-weight: bold;
  font-size: 1.8rem;
}
.flywheel-recommend__frame .fr3-item__productPrice__currencyMark {
  display: none;
}
.flywheel-recommend__frame .fr3-item__productPrice__addon {
  display: none;
}

@media screen and (min-width: 768px) {
  .flywheel-recommend__frame .fr3-productListStatic {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 16px;
  }
  .flywheel-recommend__frame .fr3-item:nth-of-type(n + 5) {
    display: inline-flex;
  }
  .flywheel-recommend__frame .fr3-item:nth-of-type(n + 7) {
    display: none;
  }
  .flywheel-recommend__frame .fr3-item__productName {
    margin: 24px 16px 40px;
    font-size: 2.2rem;
  }
  .flywheel-recommend__frame .fr3-item__productPrice {
    margin: 0 16px 32px;
  }
  .flywheel-recommend__frame .fr3-item__productPrice__price::before {
    font-size: 1.6rem;
  }
  .flywheel-recommend__frame .fr3-item__productPrice__price::after {
    font-size: 1.6rem;
  }
  .flywheel-recommend__frame .fr3-item__productPrice__value {
    font-size: 2.2rem;
  }
}
/* カルーセル */
.flywheel-recommend__frame .fr3-productListCarousel {
  display: block;
  position: relative;
}
.flywheel-recommend__frame .fr3-productListCarousel__slides {
  gap: 12px;
  margin: -2px;
  padding: 2px;
  scrollbar-width: none;
}
.flywheel-recommend__frame .fr3-productListCarousel__slides .fr3-productListCarousel__slide {
  flex: 0 0 calc((100% - 12px) / 2);
}
.flywheel-recommend__frame .fr3-productListCarousel__Button {
  position: absolute;
  top: calc(50% - 32.5px);
  width: auto;
  height: auto;
}
.flywheel-recommend__frame .fr3-productListCarousel__Button::before {
  display: grid;
  place-content: center;
  width: 40px;
  height: 65px;
  border-radius: 5px 0 0 5px;
  background-color: rgba(3, 3, 3, 0.5);
  color: #fff;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 2em;
  -webkit-text-stroke-color: rgba(3, 3, 3, 0.5);
  -webkit-text-stroke-width: 1px;
  z-index: 1;
  content: "\f054";
}
.flywheel-recommend__frame .fr3-productListCarousel__Button:disabled {
  display: none;
}
.flywheel-recommend__frame .fr3-productListCarousel__Button img {
  display: none;
}
.flywheel-recommend__frame .fr3-productListCarousel__prevButton {
  left: 0;
}
.flywheel-recommend__frame .fr3-productListCarousel__prevButton::before {
  transform: rotate(180deg);
}
.flywheel-recommend__frame .fr3-productListCarousel__nextButton {
  right: 0;
}

@media screen and (min-width: 768px) {
  .flywheel-recommend__frame .fr3-productListCarousel__slides {
    gap: 16px;
    margin: -4px;
    padding: 4px;
  }
  .flywheel-recommend__frame .fr3-productListCarousel__slides .fr3-productListCarousel__slide {
    flex: 0 0 calc((100% - 32px) / 3);
  }
  .flywheel-recommend__frame .fr3-productListCarousel__Button::before {
    width: 65px;
    border-radius: 50%;
  }
  .flywheel-recommend__frame .fr3-productListCarousel__prevButton {
    left: -32.5px;
  }
  .flywheel-recommend__frame .fr3-productListCarousel__nextButton {
    right: -32.5px;
  }
}
@media screen and (min-width: 1200px) {
  .flywheel-recommend__frame .fr3-productListCarousel__slides .fr3-productListCarousel__slide {
    flex: 0 0 calc((100% - 64px) / 5);
  }
}
/* トップ */
.flywheel-recommend__frame .fr3-productListStatic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 12px;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .flywheel-recommend__frame .fr3-productListStatic {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 16px;
  }
  .flywheel-recommend__frame .fr3-item:nth-of-type(n + 5) {
    display: inline-flex;
  }
  .flywheel-recommend__frame .fr3-item:nth-of-type(n + 7) {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .flywheel-recommend__frame .fr3-productListStatic {
    grid-template-columns: repeat(5, 1fr);
  }
  .flywheel-recommend__frame .fr3-item:nth-of-type(n + 7) {
    display: inline-flex;
  }
}
/* メインビジュアル 2025 */
.ny-top-carousel.fs-c-slick .slick-slide > div {
  font-size: 1px;
  line-height: 1;
}

.ny-top-carousel.fs-c-slick .slick-slide img {
  width: 100%;
  height: auto;
  max-width: calc(100vw + 1px);
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .ny-top-carousel .slick-arrow {
    position: absolute;
    bottom: 0;
    top: unset;
    width: 3.2vw;
    height: 3.2vw;
    border: none;
    background-color: transparent;
    color: transparent;
    font-size: 0;
  }
  .ny-top-carousel .slick-prev {
    left: 16vw;
  }
  .ny-top-carousel .slick-next {
    right: 16vw;
  }
  .ny-top-carousel .slick-arrow::before {
    content: "";
    display: block;
    position: absolute;
    top: 0.6vw;
    width: 2vw;
    height: 2vw;
    transform: rotate(45deg);
  }
  .ny-top-carousel .slick-prev::before {
    left: 0.6vw;
    border-bottom: 3px solid #757575;
    border-left: 3px solid #757575;
  }
  .ny-top-carousel .slick-next::before {
    right: 0.6vw;
    border-top: 3px solid #757575;
    border-right: 3px solid #757575;
  }
  .ny-top-carousel .slick-dots {
    display: flex;
    justify-content: center;
    margin: 18px 0 0 0;
    padding-bottom: 1.6vw;
  }
  .ny-top-carousel .slick-dots li {
    position: relative;
    width: 10px;
    height: 10px;
    margin: 0 12px;
  }
  .ny-top-carousel .slick-dots li button {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 50%;
    background-color: #c4c4c4;
    color: transparent;
    font-size: 0;
    cursor: pointer;
    transition: 0.14s ease;
  }
  .ny-top-carousel .slick-dots li button::before {
    display: none;
  }
  .ny-top-carousel .slick-dots li.slick-active button {
    background-color: #333;
  }
}
@media screen and (min-width: 768px) {
  .ny-top-carousel {
    margin-top: 16px;
  }
  .ny-top-carousel.fs-c-slick .slick-slide {
    width: 64vw;
    max-width: 760px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .ny-top-carousel.fs-c-slick .slick-slide > div {
    position: relative;
  }
  .ny-top-carousel.fs-c-slick .slick-slide > div::after {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.2);
    pointer-events: none;
  }
  .ny-top-carousel.fs-c-slick .slick-slide.slick-active > div::after {
    display: none;
  }
  .ny-top-carousel .slick-arrow {
    position: absolute;
    bottom: 2px;
    top: unset;
    width: 10px;
    height: 20px;
    margin: -20px 0 0;
    padding: 0;
    border: none;
    background-color: transparent;
    color: transparent;
    font-size: 0;
    cursor: pointer;
    z-index: 9;
  }
  .ny-top-carousel .slick-prev {
    left: 25vw;
    transform: translateX(0);
  }
  .ny-top-carousel .slick-next {
    right: 25vw;
    transform: translateX(0);
  }
  .ny-top-carousel .slick-arrow::before {
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    width: 14px;
    height: 14px;
    transform: rotate(45deg);
  }
  .ny-top-carousel .slick-prev::before {
    left: 3px;
    border-bottom: 3px solid #757575;
    border-left: 3px solid #757575;
  }
  .ny-top-carousel .slick-next::before {
    right: 3px;
    border-top: 3px solid #757575;
    border-right: 3px solid #757575;
  }
  .ny-top-carousel .slick-dots {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 28px;
  }
  .ny-top-carousel .slick-dots li {
    position: relative;
    width: 10px;
    height: 10px;
    margin: 0 16px;
  }
  .ny-top-carousel .slick-dots li button {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 10px;
    background-color: #c4c4c4;
    color: transparent;
    font-size: 0;
    cursor: pointer;
    transition: 0.16s ease;
  }
  .ny-top-carousel .slick-dots li button::before {
    display: none;
  }
  .ny-top-carousel .slick-dots li.slick-active button {
    background-color: #333;
  }
}
.ny-top-carousel-stage + .ny-top-carousel-noraml {
  display: none;
}

@media screen and (min-width: 1200px) {
  .ny-top-carousel {
    margin-top: 10px;
  }
  .ny-top-carousel.fs-c-slick .slick-slide {
    padding-left: 12px;
    padding-right: 12px;
  }
  .ny-top-carousel .slick-dots {
    margin-top: 20px;
  }
  .ny-top-carousel .slick-prev {
    left: calc(50% - 300px);
  }
  .ny-top-carousel .slick-next {
    right: calc(50% - 300px);
  }
}
/* top
--------------------------------------------- */
/* 共通 */
.ny-top-heading {
  margin-bottom: 60px;
  text-align: center;
}
.ny-top-heading h2 {
  display: inline-block;
  padding: 0 1em;
  border-left: 2px solid var(--ny-c-orange);
  border-right: 2px solid var(--ny-c-orange);
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1;
}
.ny-top-heading span {
  display: block;
  margin-top: 0.75em;
  font-size: 1.6rem;
}

.ny-top-content {
  padding: 60px 0;
}

.ny-top-content-column .fs-pt-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px var(--ny-p-page);
}
.ny-top-content-column .fs-pt-column__item {
  padding: 0;
}
.ny-top-content-column .fs-pt-column__heading {
  margin-top: 4px;
  font-weight: normal;
  font-size: 1.7rem;
}

.ny-top-button-link {
  margin-top: 28px;
  text-align: center;
}
.ny-top-button-link a {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 500px;
  padding: 1em 0;
  border: 1px solid var(--ny-c-gray);
  border-radius: 2em;
  background-color: #fff;
  font-weight: bold;
  font-size: 1.7rem;
  line-height: 1;
}
.ny-top-button-link a::after {
  position: absolute;
  top: 7px;
  right: 8px;
  width: 1.75em;
  height: 1.75em;
  border-radius: 1.75em;
  background-color: var(--ny-c-gray);
  color: #fff;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.25em;
  line-height: 1.75;
  -webkit-text-stroke-color: var(--ny-c-gray);
  -webkit-text-stroke-width: 1px;
  content: "\f054";
}

.ny-container.--item .ny-top-button-link {
  padding: 0 var(--ny-p-page);
}

/* 検索窓 */
.ny-top-search {
  padding: 12px var(--ny-p-page);
  background-color: #f4f4f4;
}
.ny-top-search .ny-search-form .fs-p-inputGroup {
  border: 1px solid var(--ny-c-gray);
  border-radius: 4px;
}
.ny-top-search .ny-search-form .fs-p-inputGroup::placeholder {
  color: #a8a8a8;
}
.ny-top-search .ny-search-form .fs-p-searchForm__input {
  padding: 0.5em;
  border-radius: 4px;
  font-size: 1.7rem;
}
.ny-top-search .ny-search-form .fs-p-searchForm__input:focus {
  border: none;
  box-shadow: none;
}
.ny-top-search .ny-search-form button {
  padding: 0 0.75em;
  border: none;
  border-radius: 4px;
  background: none;
}
.ny-top-search .ny-search-form button::after {
  color: #757575;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.6em;
  -webkit-text-stroke-color: #fff;
  -webkit-text-stroke-width: 1px;
  content: "\f002";
}

/* 会員登録 */
.ny-top-register .is-loggedIn--false {
  margin-top: 24px;
}
.ny-top-register .is-loggedIn--true {
  display: none;
}

.ny-top-register-wrapper {
  display: flex;
  justify-content: center;
  column-gap: 12px;
  padding: 0 var(--ny-p-page);
}

.ny-top-register-item {
  display: block;
  position: relative;
  width: 100%;
  padding: 10px 0;
  border: 1px solid var(--ny-c-gray);
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1;
}
.ny-top-register-item:visited {
  color: #fff;
}
.ny-top-register-item::before {
  position: absolute;
  width: 25px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
.ny-top-register-item.--new {
  background-color: #f19f2b;
}
.ny-top-register-item.--new::before {
  top: 6px;
  left: 12px;
  background-image: url("https://nanohanaonline.itembox.design/item/top/images/chara_01.png");
}
.ny-top-register-item.--about {
  background-color: var(--ny-c-orange);
}
.ny-top-register-item.--about::before {
  top: 8px;
  right: 4px;
  background-image: url("https://nanohanaonline.itembox.design/item/top/images/chara_02.png");
}
.ny-top-register-item b {
  display: block;
  padding-bottom: 8px;
  font-size: 1.9rem;
}

/* お知らせ */
.ny-top-notice {
  margin: 32px 0 28px;
  text-align: center;
}
.ny-top-notice > a {
  display: inline-block;
  text-decoration: none;
}
.ny-top-notice .ny-notice-list {
  margin: 0;
  padding: 0;
}
.ny-top-notice .ny-notice-list li {
  display: flex;
  justify-content: center;
  line-height: 1;
}
.ny-top-notice .ny-notice-list li:not(:first-of-type) {
  display: none;
}
.ny-top-notice .ny-notice-list li div:not(h3) {
  display: none;
}
.ny-top-notice .ny-notice-list li h3 {
  margin: 0;
  font-weight: normal;
  font-size: 1.7rem;
  text-decoration: underline;
}
.ny-top-notice .ny-notice-list li::before {
  margin: -2px 8px 0 0;
  color: var(--ny-c-orange);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.5em;
  -webkit-text-stroke-color: var(--ny-c-orange);
  -webkit-text-stroke-width: 1px;
  content: "\f06a";
}

/* 店舗スタッフおすすめ */
.ny-top-shoprecommend {
  background-color: #f8f8f8;
}

/* 部位・症状などから探す */
.ny-top-symptoms {
  background-color: #f0f0f0;
}
.ny-top-symptoms .ny-top-heading:nth-of-type(2) {
  margin: 60px 0 40px;
}

.ny-top-symptoms-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--ny-p-page);
}
.ny-top-symptoms-list li {
  width: 100%;
}
.ny-top-symptoms-list li a {
  display: block;
  padding: 0.75em 0;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: var(--ny-shadow);
  font-size: 1.9rem;
  text-align: center;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}
.ny-top-symptoms-list li a img {
  display: block;
  margin: 0 auto 8px;
}
.ny-top-symptoms-list li a:hover {
  background-color: #f0f0f0;
  opacity: 1;
  transition: background-color 0.2s ease;
}

.ny-top-symptoms-list.--keyword {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.ny-top-symptoms-list.--keyword li {
  width: auto;
}
.ny-top-symptoms-list.--keyword li a {
  padding: 0.75em;
}

/* 人気ランキング */
.ny-top-ranking {
  background-color: #f8f8f8;
}

/* 季節の健康特集 */
.ny-top-season {
  background-color: #f8f8f8;
}

/* 便利な定期便 */
.ny-top-subscription-list {
  display: grid;
  row-gap: 12px;
}

.ny-top-subscription-list-item-box {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 8px;
  padding: 16px 10px;
  border: 2px solid #f4eae5;
  background-color: #fff9f4;
}

.ny-top-subscription-image {
  align-self: start;
  width: 125px;
  padding: 1em;
  background-color: #fff;
}

.ny-top-subscription-detail {
  min-height: 125px;
  font-size: 1.4rem;
}
.ny-top-subscription-detail .tag {
  display: inline-block;
  padding: 4px 6px;
  border: 1px solid var(--ny-c-orange);
  border-radius: 5px;
  color: var(--ny-c-orange);
  line-height: 1;
}
.ny-top-subscription-detail .desc {
  display: block;
  margin: 0.5em 0;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #f4eae5;
}
.ny-top-subscription-detail .desc br {
  display: none;
}
.ny-top-subscription-detail .maker {
  margin-top: 0.5em;
}
.ny-top-subscription-detail .name {
  margin-top: 0.25em;
  font-weight: normal;
  font-size: 1.9rem;
}
.ny-top-subscription-detail .price {
  margin-top: 0.25em;
}
.ny-top-subscription-detail .price b {
  font-size: 1.8rem;
}

/* お得なまとめ買い */
.ny-top-bulk {
  background-color: #f8f8f8;
}

/* 最近閲覧した商品 */
.ny-top-history {
  background-color: #f8f8f8;
}
.ny-top-history:not(:has(.fs-p-heading--lv2)) {
  display: none;
}

/* メーカーから探す */
.ny-top-maker {
  background-color: #f8f8f8;
}

.ny-top-maker-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
}
.ny-top-maker-list li a img {
  border: 1px solid #e8e8e8;
}

/* 安心・便利なサービス */
.ny-top-service {
  background-color: #f8f8f8;
}
.ny-top-service .ny-top-content {
  padding-bottom: 160px;
}

.ny-top-service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--ny-p-page);
  text-align: center;
}
.ny-top-service-list li a img {
  border: 1px solid var(--ny-c-gray);
}
.ny-top-service-list li:last-of-type {
  grid-column: 1/3;
}

/* TABLET */
@media screen and (min-width: 768px) {
  /* 共通 */
  .ny-top-heading {
    margin-bottom: 64px;
  }
  .ny-top-heading h2 {
    padding: 0 2em;
    font-size: 3rem;
  }
  .ny-top-heading span {
    font-size: 2.2rem;
  }
  .ny-top-content {
    padding: 80px 0;
  }
  .ny-top-content-column .fs-pt-column {
    row-gap: 40px;
  }
  .ny-top-content-column .fs-pt-column__heading {
    margin-top: 10px;
    font-size: 2.4rem;
  }
  .ny-top-button-link {
    margin-top: 48px;
  }
  .ny-top-button-link a {
    padding: 1.25em 0;
    font-size: 2.2rem;
  }
  .ny-top-button-link a::after {
    top: 14px;
    right: 14px;
  }
  /* 会員登録 */
  .ny-top-register .is-loggedIn--false {
    margin-top: 40px;
  }
  .ny-top-register-wrapper {
    column-gap: 24px;
  }
  .ny-top-register-item {
    width: 340px;
    padding: 12px 0;
    font-size: 1.8rem;
    letter-spacing: 8px;
  }
  .ny-top-register-item::before {
    width: 50px;
    height: 50px;
  }
  .ny-top-register-item.--new::before {
    top: 14px;
    left: 14px;
  }
  .ny-top-register-item.--about::before {
    top: 16px;
    right: 12px;
  }
  .ny-top-register-item b {
    padding-bottom: 12px;
    font-size: 2.5rem;
    letter-spacing: initial;
  }
  /* お知らせ */
  .ny-top-notice {
    margin: 48px 0 32px;
  }
  .ny-top-notice .ny-notice-list li h3 {
    font-size: 2.4rem;
  }
  .ny-top-notice .ny-notice-list li::before {
    margin-top: 2px;
  }
  /* 部位・症状などから探す */
  .ny-top-symptoms .ny-top-heading:nth-of-type(2) {
    margin: 72px 0 56px;
  }
  .ny-top-symptoms-list {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 16px;
  }
  .ny-top-symptoms-list li a {
    border-radius: 10px;
    font-size: 2.5rem;
  }
  .ny-top-symptoms-list li a img {
    width: 63px;
    margin-bottom: 12px;
  }
  .ny-top-symptoms-list.--keyword {
    justify-content: left;
  }
  .ny-top-symptoms-list.--keyword li a {
    padding: 0.75em 1em;
    font-size: 2.5rem;
  }
  /* 便利な定期便 */
  .ny-top-subscription-list {
    row-gap: 24px;
  }
  .ny-top-subscription-list-item-box {
    column-gap: 16px;
    padding: 24px;
  }
  .ny-top-subscription-image {
    width: 250px;
  }
  .ny-top-subscription-detail {
    min-height: 250px;
    font-size: 2rem;
  }
  .ny-top-subscription-detail .tag {
    padding: 8px;
    font-size: 1.6rem;
  }
  .ny-top-subscription-detail .desc {
    border-width: 2px;
  }
  .ny-top-subscription-detail .maker {
    margin-top: 1em;
    font-size: 1.8rem;
  }
  .ny-top-subscription-detail .name {
    font-size: 2.2rem;
  }
  .ny-top-subscription-detail .price {
    font-size: 1.6rem;
  }
  .ny-top-subscription-detail .price b {
    font-size: 2.2rem;
  }
  /* メーカーから探す */
  .ny-top-maker-list {
    grid-template-columns: repeat(4, 1fr);
  }
  /* 安心・便利なサービス */
  .ny-top-service .ny-top-content {
    padding-bottom: 200px;
  }
  .ny-top-service-list {
    display: flex;
    gap: 24px;
  }
  .ny-top-service-list li a img {
    border-width: 2px;
  }
  .ny-top-service-list li:last-of-type {
    grid-column: auto;
  }
}
/* PC */
@media screen and (min-width: 1024px) {
  .ny-top-content-column .fs-pt-column {
    grid-template-columns: repeat(4, 1fr);
  }
  .ny-top-content-column .fs-pt-column__heading {
    margin-top: 8px;
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1200px) {
  /* 共通 */
  .ny-top-heading span {
    font-size: 2.4rem;
  }
  .ny-top-button-link {
    margin-top: 64px;
  }
  .ny-top-button-link a {
    border-width: 2px;
  }
  /* お知らせ */
  .ny-top-notice {
    margin: 40px 0 32px;
  }
  .ny-top-notice .ny-notice-list li h3 {
    font-size: 1.8rem;
  }
  .ny-top-notice .ny-notice-list li::before {
    margin-top: -2px;
  }
  /* 部位・症状などから探す */
  .ny-top-symptoms .ny-top-heading:nth-of-type(2) {
    margin-top: 80px;
  }
  .ny-top-symptoms-list {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 20px;
  }
  .ny-top-symptoms-list li a {
    font-size: 2.2rem;
  }
  .ny-top-symptoms-list li a img {
    width: 53px;
  }
  .ny-top-symptoms-list.--keyword li a {
    padding: 0.75em 2em;
    font-size: 2.2rem;
  }
  /* 便利な定期便 */
  .ny-top-subscription-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .ny-top-subscription-list .ny-top-subscription-list-item-box {
    height: 100%;
  }
  .ny-top-subscription-list .ny-top-subscription-detail {
    display: flex;
    flex-direction: column;
  }
  .ny-top-subscription-list .ny-top-subscription-detail .tag {
    align-self: start;
  }
  .ny-top-subscription-list .ny-top-subscription-detail .desc {
    margin-bottom: 0;
    padding-bottom: 16px;
  }
  .ny-top-subscription-list .ny-top-subscription-detail .desc br {
    display: block;
  }
  .ny-top-subscription-list .ny-top-subscription-detail .maker {
    margin-top: 16px;
    font-size: 1.6rem;
  }
  .ny-top-subscription-list .ny-top-subscription-detail .name {
    margin: 0.25em 0;
  }
  .ny-top-subscription-list .ny-top-subscription-detail .price {
    margin-top: auto;
  }
  /* メーカーから探す */
  .ny-top-maker-list {
    grid-template-columns: repeat(6, 1fr);
    gap: 32px 24px;
  }
  /* 安心・便利なサービス */
  .ny-top-service-list li a img {
    max-width: 294px;
  }
}
/* 検索結果、グループ
--------------------------------------------- */
.fs-body-search .fs-c-subgroup,
.fs-body-category .fs-c-subgroup {
  margin: 0 auto 2em;
  padding: 0;
}
.fs-body-search .fs-c-subgroup .fs-c-listControl,
.fs-body-category .fs-c-subgroup .fs-c-listControl {
  display: none;
}
.fs-body-search .fs-c-subgroup .fs-c-subgroupList,
.fs-body-category .fs-c-subgroup .fs-c-subgroupList {
  margin: 0;
  padding: 0;
}
.fs-body-search .fs-c-subgroup .fs-c-subgroupList__link,
.fs-body-category .fs-c-subgroup .fs-c-subgroupList__link {
  padding: 0.75em 1.25em;
  transition: 0.2s ease;
}
.fs-body-search .fs-c-productList,
.fs-body-category .fs-c-productList {
  margin: 0;
  padding: 28px 0 100px;
  background-color: #f8f8f8;
}
.fs-body-search .fs-c-productList__list,
.fs-body-category .fs-c-productList__list {
  margin-top: 28px;
}
.fs-body-search .fs-c-inputTable__dataCell,
.fs-body-category .fs-c-inputTable__dataCell {
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .fs-body-search .fs-c-subgroup,
  .fs-body-category .fs-c-subgroup {
    max-width: var(--ny-w-page);
    margin: 0 auto 2em;
    padding: 0 var(--ny-p-page);
  }
  .fs-body-search .fs-c-productList,
  .fs-body-category .fs-c-productList {
    padding: 24px 0 140px;
  }
  .fs-body-search .fs-c-productList__list,
  .fs-body-category .fs-c-productList__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 24px;
    margin-top: 24px;
    padding: 0 var(--ny-p-page);
  }
}
@media screen and (min-width: 840px) {
  .fs-body-search .fs-c-productList__list,
  .fs-body-category .fs-c-productList__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 16px;
  }
  .fs-body-search .fs-c-productListItem .fs-c-productMark__mark.--sale::after, .fs-body-search .fs-c-productListItem .fs-c-productMark__mark.--new::after,
  .fs-body-category .fs-c-productListItem .fs-c-productMark__mark.--sale::after,
  .fs-body-category .fs-c-productListItem .fs-c-productMark__mark.--new::after {
    left: -50px;
    border-right: 50px solid transparent;
    border-left: 50px solid transparent;
    border-bottom: 50px solid #ec6c00;
  }
  .fs-body-search .fs-c-productListItem .fs-c-productMark__mark.--sale > span, .fs-body-search .fs-c-productListItem .fs-c-productMark__mark.--new > span,
  .fs-body-category .fs-c-productListItem .fs-c-productMark__mark.--sale > span,
  .fs-body-category .fs-c-productListItem .fs-c-productMark__mark.--new > span {
    top: 28px;
    left: -19px;
    font-size: 1.6rem;
  }
  .fs-body-search .fs-c-productListItem .fs-c-productMark__mark.--new::after,
  .fs-body-category .fs-c-productListItem .fs-c-productMark__mark.--new::after {
    border-bottom-color: #4caf50;
  }
  .fs-body-search .fs-c-productListItem .fs-c-productMark__mark.--new > span,
  .fs-body-category .fs-c-productListItem .fs-c-productMark__mark.--new > span {
    left: -17px;
  }
}
@media screen and (min-width: 1024px) {
  .fs-body-search .fs-c-productList__list,
  .fs-body-category .fs-c-productList__list {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .fs-body-search .fs-c-productList,
  .fs-body-category .fs-c-productList {
    padding: 24px 0 200px;
  }
  .fs-body-search .fs-c-productList__list,
  .fs-body-category .fs-c-productList__list {
    max-width: var(--ny-w-page);
    margin: 16px auto;
  }
}
/* 検索結果 */
.fs-body-search .fs-p-productSearch {
  max-width: var(--ny-w-page);
  margin: 0 auto;
  padding: 0 var(--ny-p-page) var(--ny-p-page);
  border: none;
}
.fs-body-search .fs-p-productSearch__searchButton::before {
  font-size: 3rem;
}
.fs-body-search .fs-p-productSearch__inputTable + .fs-p-productSearch__inputTable,
.fs-body-search .fs-p-productSearch__searchButtonContainer {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .fs-body-search .fs-p-productSearch__searchButton::before {
    font-size: 4rem;
  }
  .fs-body-search .fs-p-productSearch__inputTable + .fs-p-productSearch__inputTable,
  .fs-body-search .fs-p-productSearch__searchButtonContainer {
    margin-top: 0;
  }
  .fs-body-search .fs-p-productSearch__form {
    padding: var(--ny-p-page);
  }
  .fs-body-search .fs-c-inputTable__headerCell {
    margin-left: -8px;
    margin-right: -8px;
  }
}
@media screen and (min-width: 1200px) {
  .fs-body-search .fs-c-inputTable__headerCell {
    margin-left: 0;
    margin-right: 0;
    font-size: 2rem;
  }
}

/* グループ（カテゴリ） */
.ny-group-comment1 .ny-related-keyword-list {
  margin-bottom: 40px;
}

/* カート
--------------------------------------------- */
.ny-cart-other {
  display: none;
}

/* 買い物かご 空 */
.fs-body-cart .fs-l-cart__contentsArea {
  margin-bottom: 0;
}
.fs-body-cart .fs-l-cart__contentsArea:has(.fs-l-cart__mainColumn) ~ .ny-top-history {
  display: none;
}
.fs-body-cart .fs-c-noResultMessage {
  margin-bottom: 40px;
}
.fs-body-cart .fs-c-continueShopping {
  text-align: center;
}
.fs-body-cart .fs-c-continueShopping a::after {
  right: 0;
  left: 8px;
  transform: rotate(180deg);
}
.fs-body-cart .ny-top-history {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .fs-body-cart .fs-c-continueShopping a::after {
    right: 0;
    left: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .fs-body-cart .ny-top-history {
    margin-top: 120px;
  }
}

/* 買い物かご 有り */
.fs-body-cart .fs-l-cart__contentsArea,
.fs-body-cart .fs-c-continueShopping {
  max-width: var(--ny-w-page);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--ny-p-page);
  padding-right: var(--ny-p-page);
}
.fs-body-cart .fs-cartContent-container {
  margin-bottom: 0;
}
.fs-body-cart .fs-c-cartTableContainer {
  padding: 28px var(--ny-p-page) 32px;
  border: 1px solid var(--ny-c-gray);
  background-color: #fff;
}
.fs-body-cart .fs-c-cartTableContainer table td {
  padding: 0;
  border: none;
}
.fs-body-cart .fs-c-cartTable thead,
.fs-body-cart .fs-c-productPrice__addon,
.fs-body-cart .fs-c-priceDisplay__memberPrice,
.fs-body-cart .fs-c-cartTable__actionButton__container--buyItLater {
  display: none;
}
.fs-body-cart .fs-c-cartTable tbody {
  display: block;
}
.fs-body-cart .fs-c-cartTable__row {
  width: 100%;
  border: none;
  margin-bottom: 0;
}
.fs-body-cart .fs-c-cartTable__row + .fs-c-cartTable__row {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--ny-c-gray);
}
.fs-body-cart .fs-c-price__value::before {
  content: "税込 ";
}
.fs-body-cart .fs-c-price__value::after {
  content: " 円";
}
.fs-body-cart .fs-c-cartTable__row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
}
.fs-body-cart .fs-c-cartTable__row .fs-c-cartTable__dataCell--product {
  grid-column: 1/3;
  grid-row: 1;
}
.fs-body-cart .fs-c-cartTable__row .fs-c-cartTable__dataCell--quantity {
  grid-column: 2/3;
  grid-row: 2;
}
.fs-body-cart .fs-c-cartTable__row .fs-c-cartTable__dataCell--subtotal {
  grid-column: 1/3;
  grid-row: 3;
}
.fs-body-cart .fs-c-cartTable__row .fs-c-cartTable__dataCell--point {
  grid-column: 1/3;
  grid-row: 3;
}
.fs-body-cart .fs-c-cartTable__row .fs-c-cartTable__dataCell--action {
  grid-column: 1/2;
  grid-row: 2;
}
.fs-body-cart .fs-c-cartTable__dataCell--product .fs-c-cartTable__productInfo {
  font-size: 1.6rem;
}
.fs-body-cart .fs-c-cartTable__dataCell--product .fs-c-listedProductName__name {
  font-size: 1.8rem;
}
.fs-body-cart .fs-c-cartTable__dataCell--product .fs-c-listedProductName__variation,
.fs-body-cart .fs-c-cartTable__dataCell--product .fs-c-listedProductName__selection {
  margin-top: 1em;
  font-size: 1.6rem;
}
.fs-body-cart .fs-c-cartTable__dataCell--product .fs-c-cartTable__unitPrice {
  justify-self: end;
  margin-top: 1em;
  line-height: 1;
}
.fs-body-cart .fs-c-cartTable__dataCell--product .fs-c-cartTable__product {
  grid-template-columns: 90px 1fr;
}
.fs-body-cart .fs-c-cartTable__dataCell--product .fs-c-cartTable__productImage {
  padding: 8px;
}
.fs-body-cart .fs-c-cartTable__dataCell--product .fs-c-cartTable__productImage img {
  padding-right: 0;
}
.fs-body-cart .fs-c-cartTable__dataCell--quantity {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  width: auto;
  margin-top: 20px;
}
.fs-body-cart .fs-c-cartTable__dataCell--quantity::before {
  margin-right: 1em;
  font-weight: normal;
  font-size: 1.8rem;
  content: attr(data-cell-label);
}
.fs-body-cart .fs-c-cartTable__dataCell--quantity .fs-c-cartTable__quantity {
  position: relative;
  max-width: none;
}
.fs-body-cart .fs-c-cartTable__dataCell--quantity .fs-c-cartTable__quantity::after {
  position: absolute;
  top: 10px;
  right: 16px;
  color: #757575;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.5em;
  -webkit-text-stroke-color: #fff;
  -webkit-text-stroke-width: 1px;
  pointer-events: none;
  content: "\f078";
}
.fs-body-cart .fs-c-cartTable__dataCell--quantity .fs-c-quantity__select,
.fs-body-cart .fs-c-cartTable__dataCell--quantity .fs-c-quantity__number {
  width: 115px;
  margin-left: auto;
  padding: 16px;
  border-radius: 4px;
  background-color: #fff;
  font-size: 2.3rem;
  line-height: 1;
  cursor: pointer;
}
.fs-body-cart .fs-c-cartTable__dataCell--subtotal {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  margin: 20px 120px 0 0;
  justify-self: end;
  line-height: 1;
}
.fs-body-cart .fs-c-cartTable__dataCell--subtotal::before {
  content: none;
}
.fs-body-cart .fs-c-cartTable__dataCell--subtotal .fs-c-price__value {
  font-weight: bold;
  font-size: 3rem;
}
.fs-body-cart .fs-c-cartTable__dataCell--subtotal .fs-c-price__value::before, .fs-body-cart .fs-c-cartTable__dataCell--subtotal .fs-c-price__value::after {
  font-weight: normal;
  font-size: 1.6rem;
}
.fs-body-cart .fs-c-cartTable__dataCell--point {
  align-self: end;
  margin: 20px 0 0;
  font-weight: bold;
}
.fs-body-cart .fs-c-cartTable__dataCell--point::before {
  content: none;
}
.fs-body-cart .fs-c-cartTable__dataCell--point::after {
  font-weight: normal;
  content: "ポイント";
}
.fs-body-cart .fs-c-cartTable__dataCell--action {
  margin-top: 20px;
}
.fs-body-cart .fs-c-cartTable__dataCell--action .fs-c-cartTable__actionButton__container--cancel--cart {
  width: 65px;
}
.fs-body-cart .fs-c-cartTable__dataCell--action .fs-c-cartTable__actionButton__container--cancel--cart button {
  height: 45px;
  border: 1px solid var(--ny-c-gray);
  background-color: #ededed;
  font-size: 1.6rem;
  line-height: 45px;
}
.fs-body-cart .fs-c-totalAndActions {
  margin: 36px 0 0;
  padding: 28px var(--ny-p-page);
  background-color: #fff;
  border: 1px solid var(--ny-c-gray);
}
.fs-body-cart #fs-cartTotals-container {
  padding-bottom: 28px;
  border-bottom: 1px dashed var(--ny-c-gray);
}
.fs-body-cart .fs-c-orderTotalTable tbody {
  display: grid;
  grid-template-columns: 1fr 180px;
  grid-template-rows: repeat(2, auto);
  row-gap: var(--ny-p-page);
}
.fs-body-cart .fs-c-orderTotalTable tbody tr {
  display: flex;
  align-items: baseline;
}
.fs-body-cart .fs-c-orderTotalTable tbody .fs-c-orderTotalTable__mainRow {
  grid-area: 1/1/2/3;
  color: #d32f2f;
  justify-content: space-between;
}
.fs-body-cart .fs-c-orderTotalTable tbody .fs-c-orderTotalTable__mainRow th {
  padding-left: 1em;
}
.fs-body-cart .fs-c-orderTotalTable tbody .fs-c-orderTotalTable__mainRow th::before {
  font-weight: bold;
  font-size: 1.8rem;
  content: "商品合計";
}
.fs-body-cart .fs-c-orderTotalTable tbody .fs-c-orderTotalTable__mainRow th span {
  display: none;
}
.fs-body-cart .fs-c-orderTotalTable tbody .fs-c-orderTotalTable__mainRow td .fs-c-price__value {
  font-size: 3.5rem;
}
.fs-body-cart .fs-c-orderTotalTable tbody .fs-c-orderTotalTable__mainRow td .fs-c-price__value::before, .fs-body-cart .fs-c-orderTotalTable tbody .fs-c-orderTotalTable__mainRow td .fs-c-price__value::after {
  font-weight: normal;
  font-size: 1.6rem;
}
.fs-body-cart .fs-c-orderTotalTable tbody .fs-c-orderTotalTable__count {
  margin-left: auto;
  padding-right: 1em;
  border-right: 1px solid var(--ny-c-gray);
}
.fs-body-cart .fs-c-orderTotalTable tbody .fs-c-orderTotalTable__count th::after {
  content: "：";
}
.fs-body-cart .fs-c-orderTotalTable tbody .fs-c-orderTotalTable__getPoint {
  margin-left: auto;
  padding: 0;
  border-bottom: none;
}
.fs-body-cart .fs-c-orderTotalTable tbody .fs-c-orderTotalTable__getPoint th::after {
  content: "：";
}
.fs-body-cart .fs-c-purchaseHere__message {
  margin: var(--ny-p-page) 0 32px;
}
.fs-body-cart .fs-c-purchaseHere__message p {
  margin: 0;
  font-size: 1.6rem;
}
.fs-body-cart .fs-c-button--unregisteredUserPurchase {
  margin-top: 28px;
  padding: 24px 0;
  border: 2px solid;
  border-radius: 4px;
  background: #fff;
  color: #d32f2f;
  font-weight: bold;
  font-size: 2.2rem;
  box-shadow: var(--ny-shadow);
}
.fs-body-cart .fs-c-button--unregisteredUserPurchase::after {
  display: none;
}
.fs-body-cart .fs-c-payWithAmazon {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px dashed var(--ny-c-gray);
}
.fs-body-cart .fs-c-payWithAmazon__message {
  font-size: 1.6rem;
}
.fs-body-cart .fs-c-continueShopping {
  margin-top: 60px;
}

@media screen and (min-width: 960px) {
  .fs-body-cart .fs-l-cart__contentsArea {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .fs-body-cart .fs-l-cart__contentsArea {
    display: grid;
    grid-template-columns: 1fr 340px;
    column-gap: 50px;
    max-width: var(--ny-w-page);
    margin: 0 auto;
  }
  .fs-body-cart .fs-c-cartTableContainer {
    padding: 32px var(--ny-p-page);
    border: 1px solid var(--ny-c-gray);
    background-color: #fff;
  }
  .fs-body-cart .fs-c-cartTableContainer table td {
    padding: 0;
    border: none;
  }
  .fs-body-cart .fs-c-cartTable__row + .fs-c-cartTable__row {
    margin-top: var(--ny-p-page);
    padding-top: var(--ny-p-page);
  }
  .fs-body-cart .fs-c-cartTable__row {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto 1fr;
    column-gap: 24px;
    align-items: unset;
  }
  .fs-body-cart .fs-c-cartTable__row .fs-c-cartTable__dataCell--product {
    grid-column: 1/2;
    grid-row: 1/4;
  }
  .fs-body-cart .fs-c-cartTable__row .fs-c-cartTable__dataCell--quantity {
    grid-column: 2/3;
    grid-row: 1;
  }
  .fs-body-cart .fs-c-cartTable__row .fs-c-cartTable__dataCell--subtotal {
    grid-column: 2/3;
    grid-row: 2;
  }
  .fs-body-cart .fs-c-cartTable__row .fs-c-cartTable__dataCell--point {
    grid-column: 2/3;
    grid-row: 2;
  }
  .fs-body-cart .fs-c-cartTable__row .fs-c-cartTable__dataCell--action {
    grid-column: 2/3;
    grid-row: 3;
  }
  .fs-body-cart .fs-c-cartTable__dataCell--product .fs-c-cartTable__productInfo {
    font-size: 1.8rem;
  }
  .fs-body-cart .fs-c-cartTable__dataCell--product .fs-c-listedProductName__name {
    font-size: 2rem;
  }
  .fs-body-cart .fs-c-cartTable__dataCell--product .fs-c-listedProductName__variation,
  .fs-body-cart .fs-c-cartTable__dataCell--product .fs-c-listedProductName__selection {
    font-size: 1.8rem;
  }
  .fs-body-cart .fs-c-cartTable__dataCell--product .fs-c-cartTable__unitPrice {
    justify-self: unset;
    margin-top: 0.5em;
  }
  .fs-body-cart .fs-c-cartTable__dataCell--quantity {
    margin-top: 0;
  }
  .fs-body-cart .fs-c-cartTable__dataCell--quantity .fs-c-quantity__select,
  .fs-body-cart .fs-c-cartTable__dataCell--quantity .fs-c-quantity__number {
    width: 90px;
  }
  .fs-body-cart .fs-c-cartTable__dataCell--subtotal .fs-c-price__value {
    font-size: 2.4rem;
  }
  .fs-body-cart .fs-c-cartTable__dataCell--action {
    justify-self: end;
    margin-top: 32px;
  }
  .fs-body-cart .fs-c-cartTable__dataCell--action .fs-c-cartTable__actionButton__container--cancel--cart {
    width: 90px;
  }
  .fs-body-cart .fs-c-cartTable__dataCell--action .fs-c-cartTable__actionButton__container--cancel--cart button {
    height: 30px;
    line-height: 30px;
  }
  .fs-body-cart .fs-c-totalAndActions {
    margin: 0;
    padding: 32px var(--ny-p-page);
  }
  .fs-body-cart #fs-cartTotals-container {
    padding-bottom: 24px;
  }
  .fs-body-cart .fs-c-orderTotalTable tbody {
    grid-template-columns: repeat(2, auto);
  }
  .fs-body-cart .fs-c-orderTotalTable tbody .fs-c-orderTotalTable__mainRow th {
    padding-left: 0;
  }
  .fs-body-cart .fs-c-orderTotalTable tbody .fs-c-orderTotalTable__mainRow th::before {
    font-size: 1.6rem;
  }
  .fs-body-cart .fs-c-orderTotalTable tbody .fs-c-orderTotalTable__mainRow td .fs-c-price__value {
    font-size: 3.4rem;
  }
  .fs-body-cart .fs-c-orderTotalTable tbody .fs-c-orderTotalTable__count,
  .fs-body-cart .fs-c-orderTotalTable tbody .fs-c-orderTotalTable__getPoint {
    font-size: 1.8rem;
  }
  .fs-body-cart .fs-c-purchaseHere__message {
    margin: var(--ny-p-page) 0 40px;
  }
  .fs-body-cart .fs-c-button--unregisteredUserPurchase {
    margin-top: 16px;
  }
  .fs-body-cart .fs-c-payWithAmazon {
    margin-top: 32px;
    padding-top: 32px;
  }
  .fs-body-cart .fs-c-payWithAmazon__message {
    font-size: 1.8rem;
  }
}
/* お支払・配送方法
--------------------------------------------- */
.fs-body-checkout .fs-l-checkout__mainColumn {
  padding: 0 16px;
}
.fs-body-checkout .fs-c-checkout-preview {
  padding: 24px 10px 28px;
  border-color: var(--ny-c-gray);
}
.fs-body-checkout .fs-c-checkout-preview__title {
  margin-bottom: 20px;
  padding-bottom: 24px;
  border-color: var(--ny-c-gray);
  font-size: 1.8rem;
  line-height: 1;
  text-align: left;
}
.fs-body-checkout .fs-c-checkout-preview__body {
  font-size: 1.8rem;
  line-height: 1.7;
}
.fs-body-checkout .fs-c-checkout-preview__body > * + * {
  margin-top: 0;
}
.fs-body-checkout .fs-c-checkout-preview__body .fs-c-button--standard {
  width: auto;
  padding: 1em;
  border-width: 1px;
  border-radius: 4px;
  font-size: 1.6rem;
}
.fs-body-checkout .fs-c-checkout-preview__body .fs-c-button--standard::after {
  display: none;
}
.fs-body-checkout .fs-c-checkout-preview__button {
  margin-top: 24px;
}
.fs-body-checkout .fs-c-price__value::before {
  content: "税込 ";
}
.fs-body-checkout .fs-c-price__value::after {
  content: " 円";
}
.fs-body-checkout #fs-addressInfo-container .fs-c-checkout-shippingInfo__body {
  display: grid;
}
.fs-body-checkout #fs-addressInfo-container .fs-c-checkout-shippingInfo__body .fs-c-checkout-shippingDestination {
  order: 1;
}
.fs-body-checkout #fs-addressInfo-container .fs-c-checkout-shippingInfo__body .fs-c-checkout-shippingDetail {
  order: 2;
}
.fs-body-checkout #fs-addressInfo-container .fs-c-checkout-shippingInfo__body .fs-c-checkout-shippingOption {
  order: 3;
}
.fs-body-checkout #fs-addressInfo-container .fs-c-checkout-shippingInfo__body {
  gap: 40px;
}
.fs-body-checkout #fs-addressInfo-container .fs-c-checkout-shippingDestination {
  display: block;
}
.fs-body-checkout #fs-addressInfo-container .fs-c-checkout-heading {
  padding: 8px 10px;
  background-color: #757575;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1;
  text-align: left;
}
.fs-body-checkout #fs-addressInfo-container .fs-c-checkout-shippingAddress {
  margin-top: 20px;
}
.fs-body-checkout #fs-addressInfo-container .fs-c-checkout-shippingAddress__storeComment {
  margin-top: 1em;
  padding: 1em;
  background: #f7f7f7;
  font-size: 1.6rem;
}
.fs-body-checkout #fs-addressInfo-container .fs-c-checkout-shippingAddress__address__zipCode {
  display: block;
}
.fs-body-checkout #fs-addressInfo-container .fs-u-tel::before {
  content: "電話番号：";
}
.fs-body-checkout #fs-addressInfo-container .fs-c-checkout-shippingDestination__control {
  justify-content: end;
  flex-direction: row;
  column-gap: 24px;
  margin-top: 24px;
}
.fs-body-checkout #fs-addressInfo-container .fs-c-deliveryDateInfo__info__date {
  font-weight: normal;
}
.fs-body-checkout #fs-addressInfo-container .fs-c-checkout-shippingParcel {
  border: none;
}
.fs-body-checkout #fs-addressInfo-container .fs-c-checkout-shippingParcel__product {
  grid-template-columns: 80px 1fr;
  margin: 0;
  padding: 20px 0 20px 8px;
  gap: 16px;
}
.fs-body-checkout #fs-addressInfo-container .fs-c-checkout-shippingParcel__product + .fs-c-checkout-shippingParcel__product {
  border-top: 1px dashed var(--ny-c-gray);
}
.fs-body-checkout #fs-addressInfo-container .fs-c-checkout-shippingParcel__productInfo {
  grid-template-columns: 1fr auto;
  gap: 20px 8px;
}
.fs-body-checkout #fs-addressInfo-container .fs-c-checkout-shippingParcel__productImage__image {
  width: auto;
  height: auto;
}
.fs-body-checkout #fs-addressInfo-container .fs-c-checkout-shippingParcel__productVariation,
.fs-body-checkout #fs-addressInfo-container .fs-c-checkout-shippingParcel__productSelection,
.fs-body-checkout #fs-addressInfo-container .fs-c-checkout-shippingParcel__unitPrice,
.fs-body-checkout #fs-addressInfo-container .fs-c-checkout-shippingParcel__quantity {
  font-size: 1.6rem;
}
.fs-body-checkout #fs-addressInfo-container .fs-c-checkout-shippingParcel__unitPrice {
  justify-self: right;
  padding-right: 8px;
  border-right: 1px solid var(--ny-c-gray);
}
.fs-body-checkout #fs-addressInfo-container .fs-c-checkout-shippingDetail {
  gap: 28px;
}
.fs-body-checkout #fs-addressInfo-container .fs-c-checkout-shippingDetail__detail {
  gap: 32px;
}
.fs-body-checkout #fs-addressInfo-container .fs-c-checkout-shippingDetail__shippingCarrier {
  gap: 20px;
}
.fs-body-checkout #fs-addressInfo-container .fs-c-checkout-shippingDetail__shippingCarrier__comment {
  padding: 0;
  border: none;
}
.fs-body-checkout #fs-addressInfo-container .fs-c-checkout-shippingCarrierComment p {
  padding-left: 1em;
  text-indent: -1em;
}
.fs-body-checkout #fs-addressInfo-container .fs-c-checkout-shippingDetail__deliveryDetail {
  gap: 24px;
  padding: 0;
  background: none;
}
.fs-body-checkout #fs-addressInfo-container .fs-c-checkout-shippingDetail__deliveryDetailPreview {
  gap: 0;
  border: 1px solid var(--ny-c-gray);
  border-bottom: none;
}
.fs-body-checkout #fs-addressInfo-container .fs-c-checkout-shippingDetail__deliveryDetailPreview dt {
  padding: 8px 10px;
  border-bottom: 1px solid var(--ny-c-gray);
  background-color: #ededed;
}
.fs-body-checkout #fs-addressInfo-container .fs-c-checkout-shippingDetail__deliveryDetailPreview dt::after {
  display: none;
}
.fs-body-checkout #fs-addressInfo-container .fs-c-checkout-shippingDetail__deliveryDetailPreview dd {
  padding: 8px 10px;
  border-bottom: 1px solid var(--ny-c-gray);
}
.fs-body-checkout #fs-addressInfo-container .fs-c-destinationFeeTable,
.fs-body-checkout #fs-addressInfo-container .fs-c-destinationFeeTable__headerCell,
.fs-body-checkout #fs-addressInfo-container .fs-c-destinationFeeTable__dataCell {
  padding: 0;
  border: none;
  background: none;
}
.fs-body-checkout #fs-addressInfo-container .fs-c-destinationFeeTable {
  width: auto;
  margin-left: auto;
}
.fs-body-checkout #fs-addressInfo-container .fs-c-destinationFeeTable .fs-c-price__value {
  font-weight: bold;
  font-size: 2.5rem;
}
.fs-body-checkout #fs-addressInfo-container .fs-c-destinationFeeTable .fs-c-price__value::before, .fs-body-checkout #fs-addressInfo-container .fs-c-destinationFeeTable .fs-c-price__value::after {
  font-weight: normal;
  font-size: 1.6rem;
}
.fs-body-checkout #fs-addressInfo-container .fs-c-checkout-shippingOption__control {
  margin-top: 24px;
}
.fs-body-checkout #fs-paymentList-container .fs-c-checkout-paymentInfo__message {
  display: none;
}
.fs-body-checkout #fs-paymentList-container .fs-c-checkout-paymentMethod {
  border: none;
}
.fs-body-checkout #fs-paymentList-container .fs-c-checkout-paymentMethod__title {
  padding: 8px 0;
  background: none;
}
.fs-body-checkout #fs-couponInfo-container .fs-c-checkout-couponInfo__body {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.fs-body-checkout #fs-couponInfo-container .fs-c-checkout-couponCodeInput {
  order: 4;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  padding: 0;
  background: none;
}
.fs-body-checkout #fs-couponInfo-container .fs-c-checkout-couponCodeInput .fs-c-checkout-couponCodeInput__title {
  grid-column: 1/3;
  font-size: 1.4rem;
}
.fs-body-checkout #fs-couponInfo-container .fs-c-checkout-couponCodeInput input,
.fs-body-checkout #fs-couponInfo-container .fs-c-checkout-couponCodeInput button {
  display: grid;
  place-content: center;
  height: 55px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}
.fs-body-checkout #fs-couponInfo-container .fs-c-checkout-couponCodeInput input {
  padding: 0 1em;
}
.fs-body-checkout #fs-couponInfo-container .fs-c-checkout-couponCodeInput button {
  width: 90px;
}
.fs-body-checkout #fs-couponInfo-container .fs-c-checkout-couponCodeInput .fs-c-checkout-couponCodeInput__input,
.fs-body-checkout #fs-couponInfo-container .fs-c-checkout-couponCodeInput .fs-c-couponCodeInput__button {
  border: 1px solid var(--ny-c-gray);
}
.fs-body-checkout #fs-couponInfo-container .fs-c-checkout-couponCodeInput .fs-c-checkout-couponCodeInput__input {
  margin-right: 0;
  border-right: none;
  border-radius: 4px 0 0 4px;
}
.fs-body-checkout #fs-couponInfo-container .fs-c-checkout-couponCodeInput .fs-c-couponCodeInput__button {
  border-radius: 0 4px 4px 0;
  background-color: #ededed;
}
.fs-body-checkout #fs-couponInfo-container .fs-c-checkout-couponList {
  order: 3;
  display: grid;
  gap: 16px;
}
.fs-body-checkout #fs-couponInfo-container .fs-c-checkout-couponList .fs-c-checkout-couponList__item {
  margin: 0;
  padding: 12px;
  border-radius: 4px;
  background: #fff3e0;
}
.fs-body-checkout #fs-couponInfo-container .fs-c-checkout-couponList .fs-c-checkout-couponList__couponName {
  font-size: 1.8rem;
}
.fs-body-checkout #fs-couponInfo-container .fs-c-checkout-couponList .fs-c-checkout-couponList__couponDiscount {
  color: var(--fs-color-maincolor__font);
  font-size: 1.4rem;
}
.fs-body-checkout #fs-couponInfo-container .fs-c-checkout-couponList .fs-c-checkout-couponList__description {
  width: auto;
}
.fs-body-checkout #fs-couponInfo-container .fs-c-checkout-couponList .fs-c-checkout-couponList__control {
  flex-basis: unset;
  margin-left: 0;
}
.fs-body-checkout #fs-couponInfo-container .fs-c-checkout-couponList .fs-c-checkout-couponList__control button {
  display: grid;
  place-content: center;
  width: 80px;
  height: 80px;
  padding: 0;
  border: none;
  border-radius: 4px;
}
.fs-body-checkout #fs-couponInfo-container .fs-c-checkout-couponList .fs-c-checkout-couponList__control .is-inactive {
  background-color: #ededed;
  box-shadow: var(--ny-shadow);
  color: var(--fs-color-maincolor__font);
  font-size: 1.4rem;
}
.fs-body-checkout #fs-couponInfo-container .fs-c-checkout-couponList .fs-c-checkout-couponList__control .is-active {
  background-color: #f19f2b;
  box-shadow: inset 0px 4px 8px 0px rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 1.6rem;
}
.fs-body-checkout #fs-couponInfo-container .fs-c-checkout-couponList .fs-c-checkout-couponList__control .is-active::after {
  display: none;
}
.fs-body-checkout #fs-orderContents-container .fs-c-cartTable thead {
  display: none;
}
.fs-body-checkout #fs-orderContents-container .fs-c-cartTable__row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  grid-template-rows: 1fr auto;
}
.fs-body-checkout #fs-orderContents-container .fs-c-cartTable__row .fs-c-cartTable__dataCell--product {
  grid-column: 1/4;
}
.fs-body-checkout #fs-orderContents-container .fs-c-cartTable__row .fs-c-cartTable__dataCell--quantity {
  grid-column: 1/2;
  grid-row: 2/3;
}
.fs-body-checkout #fs-orderContents-container .fs-c-cartTable__row .fs-c-cartTable__dataCell--subtotal {
  grid-column: 2/3;
  grid-row: 2/3;
}
.fs-body-checkout #fs-orderContents-container .fs-c-cartTable__row .fs-c-cartTable__dataCell--point {
  grid-column: 3/4;
  grid-row: 2/3;
}
.fs-body-checkout #fs-orderContents-container .fs-c-cartTable__row {
  gap: 20px 8px;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
  padding: 0 0 20px 8px;
  border-bottom: 1px dashed var(--ny-c-gray);
}
.fs-body-checkout #fs-orderContents-container .fs-c-cartTable__row:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}
.fs-body-checkout #fs-orderContents-container .fs-c-cartTable__dataCell {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  padding: 0;
  border: none;
}
.fs-body-checkout #fs-orderContents-container .fs-c-cartTable__dataCell--product {
  justify-content: start;
  padding: 0;
}
.fs-body-checkout #fs-orderContents-container .fs-c-cartTable__productImage {
  padding-right: 0;
}
.fs-body-checkout #fs-orderContents-container .fs-c-cartTable__productImage__image {
  padding-right: 8px;
}
.fs-body-checkout #fs-orderContents-container .fs-c-listedProductName {
  font-size: 1.8rem;
}
.fs-body-checkout #fs-orderContents-container .fs-c-cartTable__dataCell--quantity {
  justify-self: end;
}
.fs-body-checkout #fs-orderContents-container .fs-c-cartTable__dataCell--subtotal::before {
  display: none;
}
.fs-body-checkout #fs-orderContents-container .fs-c-cartTable__dataCell--quantity::before {
  content: attr(data-cell-label);
}
.fs-body-checkout #fs-orderContents-container .fs-c-cartTable__dataCell--point::before {
  content: "";
}
.fs-body-checkout #fs-orderContents-container .fs-c-cartTable__dataCell--point::after {
  margin-left: 4px;
  content: attr(data-cell-label);
}
.fs-body-checkout #fs-orderContents-container .fs-c-listedProductName__variation,
.fs-body-checkout #fs-orderContents-container .fs-c-listedProductName__selection,
.fs-body-checkout #fs-orderContents-container .fs-c-cartTable__unitPrice,
.fs-body-checkout #fs-orderContents-container .fs-c-cartTable__dataCell--quantity,
.fs-body-checkout #fs-orderContents-container .fs-c-cartTable__dataCell--quantity::before,
.fs-body-checkout #fs-orderContents-container .fs-c-cartTable__dataCell--point,
.fs-body-checkout #fs-orderContents-container .fs-c-cartTable__dataCell--point::before {
  margin-right: 0;
  border: 0;
  font-weight: normal;
  font-size: 1.6rem;
}
.fs-body-checkout #fs-orderContents-container .fs-c-listedProductName__variation,
.fs-body-checkout #fs-orderContents-container .fs-c-listedProductName__selection {
  margin-top: 20px;
}
.fs-body-checkout #fs-orderContents-container .fs-c-cartTable__dataCell--quantity,
.fs-body-checkout #fs-orderContents-container .fs-c-cartTable__dataCell--subtotal {
  padding-right: 8px;
  border-right: 1px solid var(--ny-c-gray);
}
.fs-body-checkout #fs-orderContents-container .fs-c-cartTable__dataCell--subtotal .fs-c-price__value {
  font-size: 1.6rem;
}
.fs-body-checkout .fs-c-returnedSpecialContract {
  margin-top: 36px;
  padding: 0;
  text-align: center;
}
.fs-body-checkout .fs-c-returnedSpecialContract a {
  text-decoration: underline;
}
.fs-body-checkout #fs_orderTotalContainer {
  margin-top: 36px;
  padding: 0 var(--ny-p-page);
}
.fs-body-checkout #fs_orderTotalContainer .fs-c-orderTotalTable {
  position: relative;
}
.fs-body-checkout #fs_orderTotalContainer .fs-c-orderTotalTable tr,
.fs-body-checkout #fs_orderTotalContainer .fs-c-orderTotalTable th,
.fs-body-checkout #fs_orderTotalContainer .fs-c-orderTotalTable td {
  padding: 0;
  border: none;
}
.fs-body-checkout #fs_orderTotalContainer .fs-c-orderTotalTable th {
  width: 85px;
  text-align: right;
}
.fs-body-checkout #fs_orderTotalContainer .fs-c-orderTotalTable__subtotal th::before {
  content: "商品合計";
}
.fs-body-checkout #fs_orderTotalContainer .fs-c-orderTotalTable__subtotal th span {
  display: none;
}
.fs-body-checkout #fs_orderTotalContainer .fs-c-orderTotalTable__subtotal td {
  font-weight: bold;
  font-size: 2.5rem;
}
.fs-body-checkout #fs_orderTotalContainer .fs-c-orderTotalTable__subtotal td::before, .fs-body-checkout #fs_orderTotalContainer .fs-c-orderTotalTable__subtotal td::after {
  font-weight: normal;
  font-size: 1.6rem;
}
.fs-body-checkout #fs_orderTotalContainer .fs-c-orderTotalTable__subtotal td::before {
  content: "税込 ";
}
.fs-body-checkout #fs_orderTotalContainer .fs-c-orderTotalTable__subtotal td::after {
  content: " 円";
}
.fs-body-checkout #fs_orderTotalContainer .fs-c-orderTotalTable__postageFee th,
.fs-body-checkout #fs_orderTotalContainer .fs-c-orderTotalTable__postageFee td {
  padding: 8px 0 20px;
  border-bottom: 1px dashed var(--ny-c-gray);
}
.fs-body-checkout #fs_orderTotalContainer .fs-c-orderTotalTable__postageFee td {
  font-weight: bold;
  font-size: 2.5rem;
}
.fs-body-checkout #fs_orderTotalContainer .fs-c-orderTotalTable__postageFee td::after {
  font-weight: normal;
  font-size: 1.6rem;
  content: " 円";
}
.fs-body-checkout #fs_orderTotalContainer .fs-c-orderTotalTable__couponDiscount th,
.fs-body-checkout #fs_orderTotalContainer .fs-c-orderTotalTable__couponDiscount td {
  padding: 20px 0 8px;
}
.fs-body-checkout #fs_orderTotalContainer .fs-c-orderTotalTable__couponDiscount td {
  font-weight: bold;
  font-size: 2.5rem;
}
.fs-body-checkout #fs_orderTotalContainer .fs-c-orderTotalTable__couponDiscount td::after {
  font-weight: normal;
  font-size: 1.6rem;
  content: " 円";
}
.fs-body-checkout #fs_orderTotalContainer .fs-c-orderTotalTable__grandTotal {
  color: #d32f2f;
}
.fs-body-checkout #fs_orderTotalContainer .fs-c-orderTotalTable__grandTotal th,
.fs-body-checkout #fs_orderTotalContainer .fs-c-orderTotalTable__grandTotal td {
  padding: 20px 0 8px;
}
.fs-body-checkout #fs_orderTotalContainer .fs-c-orderTotalTable__grandTotal th {
  font-weight: bold;
  font-size: 1.8rem;
}
.fs-body-checkout #fs_orderTotalContainer .fs-c-orderTotalTable__grandTotal td {
  font-weight: bold;
  font-size: 3.5rem;
}
.fs-body-checkout #fs_orderTotalContainer .fs-c-orderTotalTable__grandTotal td .fs-c-price__value::before,
.fs-body-checkout #fs_orderTotalContainer .fs-c-orderTotalTable__grandTotal td .fs-c-price__value::after {
  font-weight: normal;
  font-size: 1.6rem;
}
.fs-body-checkout #fs_orderTotalContainer .fs-c-orderTotalTable__earnPoints {
  position: absolute;
  bottom: -20px;
  right: 0;
  display: flex;
  justify-content: end;
  align-items: baseline;
  width: 100%;
  border: none;
  color: #d32f2f;
}
.fs-body-checkout #fs_orderTotalContainer .fs-c-orderTotalTable__earnPoints th {
  width: auto;
  margin-right: 4px;
}
.fs-body-checkout #fs_orderTotalContainer .fs-c-orderTotalTable__earnPoints td {
  font-weight: bold;
  font-size: 2rem;
}
.fs-body-checkout #fs_orderTotalContainer .fs-c-confirmOrder {
  margin-top: 56px;
}
.fs-body-checkout #fs_orderTotalContainer .fs-c-confirmOrder::before {
  display: block;
  margin-bottom: 16px;
  text-align: center;
  content: "上記内容でご注文を確定します。";
}
.fs-body-checkout .fs-c-checkout-paymentMethod.is-active .fs-c-checkout-paymentMethod__title {
  color: initial;
}
.fs-body-checkout .fs-c-checkout-pickupStoreList__list__item {
  display: block;
  padding: 1em;
}
.fs-body-checkout .fs-c-checkout-pickupStoreList__list__item .fs-c-checkout-addressee__data {
  padding: 0;
}
.fs-body-checkout .fs-c-checkout-pickupStoreList__list__item .fs-c-checkout-addressee__data__storeComment {
  margin-top: 1em;
  padding: 1em;
  font-size: 1.6rem;
}
.fs-body-checkout .fs-c-checkout-pickupStoreList__list__item .fs-c-checkout-addressee__control {
  justify-content: center;
  margin-top: 1em;
}

@media screen and (min-width: 960px) {
  .fs-body-checkout .fs-l-checkout {
    display: block;
  }
  .fs-body-checkout .fs-l-checkout__mainColumn {
    max-width: none;
  }
}
@media screen and (min-width: 1200px) {
  .fs-body-checkout .fs-l-checkout {
    display: grid;
    grid-template-columns: 1fr 340px;
    column-gap: 50px;
    padding-left: var(--ny-p-page);
    padding-right: var(--ny-p-page);
  }
  .fs-body-checkout .fs-l-checkout__mainColumn,
  .fs-body-checkout #fs_orderTotalContainer {
    margin: 0;
    padding: 0;
  }
  .fs-body-checkout .fs-l-checkout__mainColumn > * + * {
    margin-top: 56px;
  }
  .fs-body-checkout .fs-c-checkout-preview {
    padding: 24px 24px 40px;
  }
  .fs-body-checkout .fs-c-checkout-preview__title {
    margin-bottom: 24px;
    font-size: 2rem;
  }
  .fs-body-checkout .fs-c-checkout-preview__body {
    font-size: 2rem;
  }
  .fs-body-checkout .fs-c-checkout-preview__body .fs-c-button--standard {
    padding: 12px 24px;
    border-width: 2px;
    font-size: 1.8rem;
  }
  .fs-body-checkout #fs-addressInfo-container .fs-c-checkout-heading {
    padding: 8px 12px;
  }
  .fs-body-checkout #fs-addressInfo-container .fs-c-checkout-shippingParcel__product {
    grid-template-columns: 100px 1fr;
    gap: 24px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .fs-body-checkout #fs-addressInfo-container .fs-c-checkout-shippingParcel__productInfo {
    row-gap: 16px;
  }
  .fs-body-checkout #fs-addressInfo-container .fs-c-checkout-shippingParcel__productVariation,
  .fs-body-checkout #fs-addressInfo-container .fs-c-checkout-shippingParcel__productSelection,
  .fs-body-checkout #fs-addressInfo-container .fs-c-checkout-shippingParcel__unitPrice,
  .fs-body-checkout #fs-addressInfo-container .fs-c-checkout-shippingParcel__quantity {
    font-size: 1.8rem;
  }
  .fs-body-checkout #fs-couponInfo-container .fs-c-checkout-couponCodeInput {
    width: calc(50% - 16px);
  }
  .fs-body-checkout #fs-couponInfo-container .fs-c-checkout-couponList {
    column-gap: 18px;
  }
  .fs-body-checkout #fs-couponInfo-container .fs-c-checkout-couponList .fs-c-checkout-couponList__item {
    padding: 16px;
  }
  .fs-body-checkout #fs-couponInfo-container .fs-c-checkout-couponList .fs-c-checkout-couponList__control button {
    width: 100px;
    height: 80px;
  }
  .fs-body-checkout #fs-couponInfo-container .fs-c-checkout-couponList .fs-c-checkout-couponList__control .is-inactive {
    font-size: 1.6rem;
  }
  .fs-body-checkout #fs-couponInfo-container .fs-c-checkout-couponList .fs-c-checkout-couponList__control .is-active {
    font-size: 1.8rem;
  }
  .fs-body-checkout #fs-orderContents-container .fs-c-cartTable__row {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
  .fs-body-checkout #fs-orderContents-container .fs-c-cartTable__product {
    grid-template-columns: 100px 1fr;
    column-gap: 24px;
  }
  .fs-body-checkout #fs-orderContents-container .fs-c-cartTable__productImage__image {
    padding-right: 0;
  }
  .fs-body-checkout #fs-orderContents-container .fs-c-listedProductName {
    font-size: 2rem;
  }
  .fs-body-checkout #fs-orderContents-container .fs-c-listedProductName__variation,
  .fs-body-checkout #fs-orderContents-container .fs-c-listedProductName__selection,
  .fs-body-checkout #fs-orderContents-container .fs-c-cartTable__unitPrice,
  .fs-body-checkout #fs-orderContents-container .fs-c-cartTable__dataCell--quantity,
  .fs-body-checkout #fs-orderContents-container .fs-c-cartTable__dataCell--quantity::before,
  .fs-body-checkout #fs-orderContents-container .fs-c-cartTable__dataCell--point,
  .fs-body-checkout #fs-orderContents-container .fs-c-cartTable__dataCell--point::before {
    font-size: 1.8rem;
  }
  .fs-body-checkout #fs-orderContents-container .fs-c-cartTable__dataCell--subtotal .fs-c-price__value {
    font-size: 1.8rem;
  }
  .fs-body-checkout .fs-c-returnedSpecialContract {
    text-align: left;
  }
  .fs-body-checkout #fs_orderTotalContainer .fs-c-orderTotalTable th {
    width: 4em;
  }
  .fs-body-checkout #fs_orderTotalContainer .fs-c-orderTotalTable__postageFee th,
  .fs-body-checkout #fs_orderTotalContainer .fs-c-orderTotalTable__postageFee td {
    padding-bottom: 24px;
  }
  .fs-body-checkout #fs_orderTotalContainer .fs-c-orderTotalTable__earnPoints {
    bottom: -24px;
  }
  .fs-body-checkout #fs_orderTotalContainer .fs-c-orderTotalTable__earnPoints th {
    width: auto;
  }
  .fs-body-checkout #fs_orderTotalContainer .fs-c-confirmOrder {
    margin-top: 74px;
  }
  .fs-body-checkout #fs_orderTotalContainer .fs-c-confirmOrder::before {
    font-size: 1.8rem;
  }
  .fs-body-checkout #fs_orderTotalContainer .fs-c-confirmOrder .fs-c-button--primary {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1298px) {
  .fs-body-checkout .fs-l-checkout {
    grid-template-columns: 860px 340px;
    justify-content: center;
  }
}
/* 注文完了 */
.fs-body-checkout-success .ny-general-wrapper {
  padding-left: var(--ny-p-page);
  padding-right: var(--ny-p-page);
}
.fs-body-checkout-success .fs-c-checkoutSuccess__title {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  text-align: left;
}

.fs-c-checkoutSuccess__message {
  margin-top: 24px;
  font-size: 1.8rem;
}
.fs-c-checkoutSuccess__message b {
  display: block;
  margin-bottom: 24px;
}

.ny-checkout-success-status {
  margin-top: 36px;
  padding: 24px 8px 28px;
  border: 1px solid var(--ny-c-gray);
  background-color: #fff;
  font-size: 1.8rem;
}
.ny-checkout-success-status b {
  display: block;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ny-c-gray);
  line-height: 1;
}
.ny-checkout-success-status p {
  margin-top: 20px;
  line-height: 1.7;
}
.ny-checkout-success-status em {
  font-style: normal;
}
.ny-checkout-success-status a {
  text-decoration: underline;
}

.fs-body-checkout-success .ny-button-link {
  margin-top: 40px;
}
.fs-body-checkout-success .ny-button-link + .ny-button-link {
  margin-top: 36px;
}

@media screen and (min-width: 1200px) {
  .fs-body-checkout-success .fs-c-checkoutSuccess__title {
    width: 300px;
    margin: 0 auto;
    font-size: 2rem;
  }
  .fs-c-checkoutSuccess__message {
    margin: 24px auto;
    text-align: center;
  }
  .fs-c-checkoutSuccess__message b {
    font-size: 2rem;
  }
  .ny-checkout-success-status {
    width: 590px;
    margin: 40px auto;
    padding: 24px 24px 40px;
  }
  .ny-checkout-success-status p {
    margin-top: 24px;
  }
  .fs-body-checkout-success .ny-button-link {
    margin-top: 80px;
  }
  .fs-body-checkout-success .ny-button-link + .ny-button-link {
    margin-top: 24px;
  }
}
/* 会員登録、お客様情報入力、お届け先登録
--------------------------------------------- */
/* 会員登録、共通 */
.ny-register-postal > div {
  margin-top: 1em;
}
.ny-register-postal > div a {
  text-decoration: underline;
}
.ny-register-postal > div::after {
  margin-left: 4px;
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900;
  content: "\f08e";
}

.fs-body-register .fs-c-inputInformation,
.fs-body-customerDetails .fs-c-inputInformation,
.fs-body-my-account-delete .fs-c-inputInformation,
body[class^=fs-body-my-account-settings] .fs-c-inputInformation,
body[class^=fs-body-my-addressbook] .fs-c-inputInformation {
  padding: 0 var(--ny-p-page) 200px;
  background-color: #f8f8f8;
}
.fs-body-register .fs-c-inputTable__headerCell,
.fs-body-customerDetails .fs-c-inputTable__headerCell,
.fs-body-my-account-delete .fs-c-inputTable__headerCell,
body[class^=fs-body-my-account-settings] .fs-c-inputTable__headerCell,
body[class^=fs-body-my-addressbook] .fs-c-inputTable__headerCell {
  margin-bottom: 20px;
}
.fs-body-register .fs-c-inputTextGroup,
.fs-body-customerDetails .fs-c-inputTextGroup,
.fs-body-my-account-delete .fs-c-inputTextGroup,
body[class^=fs-body-my-account-settings] .fs-c-inputTextGroup,
body[class^=fs-body-my-addressbook] .fs-c-inputTextGroup {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, 1fr);
  row-gap: 20px;
}
.fs-body-register .fs-c-inputTextGroup > * + *,
.fs-body-customerDetails .fs-c-inputTextGroup > * + *,
.fs-body-my-account-delete .fs-c-inputTextGroup > * + *,
body[class^=fs-body-my-account-settings] .fs-c-inputTextGroup > * + *,
body[class^=fs-body-my-addressbook] .fs-c-inputTextGroup > * + * {
  margin: 0;
}
.fs-body-register .fs-c-inputTextGroup__item,
.fs-body-customerDetails .fs-c-inputTextGroup__item,
.fs-body-my-account-delete .fs-c-inputTextGroup__item,
body[class^=fs-body-my-account-settings] .fs-c-inputTextGroup__item,
body[class^=fs-body-my-addressbook] .fs-c-inputTextGroup__item {
  display: flex;
  align-items: center;
}
.fs-body-register .fs-c-inputTextGroup__item::before,
.fs-body-customerDetails .fs-c-inputTextGroup__item::before,
.fs-body-my-account-delete .fs-c-inputTextGroup__item::before,
body[class^=fs-body-my-account-settings] .fs-c-inputTextGroup__item::before,
body[class^=fs-body-my-addressbook] .fs-c-inputTextGroup__item::before {
  font-size: 1.8rem;
}
.fs-body-register .fs-c-inputTextGroup__item input,
.fs-body-customerDetails .fs-c-inputTextGroup__item input,
.fs-body-my-account-delete .fs-c-inputTextGroup__item input,
body[class^=fs-body-my-account-settings] .fs-c-inputTextGroup__item input,
body[class^=fs-body-my-addressbook] .fs-c-inputTextGroup__item input {
  width: 87%;
  margin-left: auto;
}
.fs-body-register .fs-c-inputTextGroup__item:has(#fs_input_lastName)::before,
.fs-body-customerDetails .fs-c-inputTextGroup__item:has(#fs_input_lastName)::before,
.fs-body-my-account-delete .fs-c-inputTextGroup__item:has(#fs_input_lastName)::before,
body[class^=fs-body-my-account-settings] .fs-c-inputTextGroup__item:has(#fs_input_lastName)::before,
body[class^=fs-body-my-addressbook] .fs-c-inputTextGroup__item:has(#fs_input_lastName)::before {
  content: "姓";
}
.fs-body-register .fs-c-inputTextGroup__item:has(#fs_input_firstName)::before,
.fs-body-customerDetails .fs-c-inputTextGroup__item:has(#fs_input_firstName)::before,
.fs-body-my-account-delete .fs-c-inputTextGroup__item:has(#fs_input_firstName)::before,
body[class^=fs-body-my-account-settings] .fs-c-inputTextGroup__item:has(#fs_input_firstName)::before,
body[class^=fs-body-my-addressbook] .fs-c-inputTextGroup__item:has(#fs_input_firstName)::before {
  content: "名";
}
.fs-body-register .fs-c-inputTextGroup__item:has(#fs_input_lastNameKana)::before,
.fs-body-customerDetails .fs-c-inputTextGroup__item:has(#fs_input_lastNameKana)::before,
.fs-body-my-account-delete .fs-c-inputTextGroup__item:has(#fs_input_lastNameKana)::before,
body[class^=fs-body-my-account-settings] .fs-c-inputTextGroup__item:has(#fs_input_lastNameKana)::before,
body[class^=fs-body-my-addressbook] .fs-c-inputTextGroup__item:has(#fs_input_lastNameKana)::before {
  content: "セイ";
}
.fs-body-register .fs-c-inputTextGroup__item:has(#fs_input_firstNameKana)::before,
.fs-body-customerDetails .fs-c-inputTextGroup__item:has(#fs_input_firstNameKana)::before,
.fs-body-my-account-delete .fs-c-inputTextGroup__item:has(#fs_input_firstNameKana)::before,
body[class^=fs-body-my-account-settings] .fs-c-inputTextGroup__item:has(#fs_input_firstNameKana)::before,
body[class^=fs-body-my-addressbook] .fs-c-inputTextGroup__item:has(#fs_input_firstNameKana)::before {
  content: "メイ";
}
.fs-body-register .fs-c-inputField__explanation,
.fs-body-customerDetails .fs-c-inputField__explanation,
.fs-body-my-account-delete .fs-c-inputField__explanation,
body[class^=fs-body-my-account-settings] .fs-c-inputField__explanation,
body[class^=fs-body-my-addressbook] .fs-c-inputField__explanation {
  margin-top: 12px;
}
.fs-body-register #fs_label_zipCode::after,
.fs-body-register #fs_label_phoneNumber::after,
.fs-body-customerDetails #fs_label_zipCode::after,
.fs-body-customerDetails #fs_label_phoneNumber::after,
.fs-body-my-account-delete #fs_label_zipCode::after,
.fs-body-my-account-delete #fs_label_phoneNumber::after,
body[class^=fs-body-my-account-settings] #fs_label_zipCode::after,
body[class^=fs-body-my-account-settings] #fs_label_phoneNumber::after,
body[class^=fs-body-my-addressbook] #fs_label_zipCode::after,
body[class^=fs-body-my-addressbook] #fs_label_phoneNumber::after {
  font-weight: normal;
  content: "（ハイフン「-」なし）";
}
.fs-body-register .fs-c-input--zipCode,
.fs-body-customerDetails .fs-c-input--zipCode,
.fs-body-my-account-delete .fs-c-input--zipCode,
body[class^=fs-body-my-account-settings] .fs-c-input--zipCode,
body[class^=fs-body-my-addressbook] .fs-c-input--zipCode {
  flex-basis: auto;
  max-width: none;
  min-width: auto;
  margin: 0;
}
.fs-body-register #fs_label_addressLine3::after,
.fs-body-register #fs_label_birthday::after,
.fs-body-register tr:has(#fs_input_gender-00) .fs-c-inputTable__label::after,
.fs-body-customerDetails #fs_label_addressLine3::after,
.fs-body-customerDetails #fs_label_birthday::after,
.fs-body-customerDetails tr:has(#fs_input_gender-00) .fs-c-inputTable__label::after,
.fs-body-my-account-delete #fs_label_addressLine3::after,
.fs-body-my-account-delete #fs_label_birthday::after,
.fs-body-my-account-delete tr:has(#fs_input_gender-00) .fs-c-inputTable__label::after,
body[class^=fs-body-my-account-settings] #fs_label_addressLine3::after,
body[class^=fs-body-my-account-settings] #fs_label_birthday::after,
body[class^=fs-body-my-account-settings] tr:has(#fs_input_gender-00) .fs-c-inputTable__label::after,
body[class^=fs-body-my-addressbook] #fs_label_addressLine3::after,
body[class^=fs-body-my-addressbook] #fs_label_birthday::after,
body[class^=fs-body-my-addressbook] tr:has(#fs_input_gender-00) .fs-c-inputTable__label::after {
  margin-left: 0.25em;
  font-weight: normal;
  content: "※任意";
}
.fs-body-register tr:has(#fs_input_gender-00) .fs-c-inputTable__label::after,
.fs-body-customerDetails tr:has(#fs_input_gender-00) .fs-c-inputTable__label::after,
.fs-body-my-account-delete tr:has(#fs_input_gender-00) .fs-c-inputTable__label::after,
body[class^=fs-body-my-account-settings] tr:has(#fs_input_gender-00) .fs-c-inputTable__label::after,
body[class^=fs-body-my-addressbook] tr:has(#fs_input_gender-00) .fs-c-inputTable__label::after {
  margin-left: 0.5em;
}
.fs-body-register .fs-c-radioGroup,
.fs-body-customerDetails .fs-c-radioGroup,
.fs-body-my-account-delete .fs-c-radioGroup,
body[class^=fs-body-my-account-settings] .fs-c-radioGroup,
body[class^=fs-body-my-addressbook] .fs-c-radioGroup {
  display: grid;
  grid-template-columns: repeat(3, auto);
}
.fs-body-register .fs-c-radio__radioLabelText,
.fs-body-register .fs-c-checkbox__labelText,
.fs-body-customerDetails .fs-c-radio__radioLabelText,
.fs-body-customerDetails .fs-c-checkbox__labelText,
.fs-body-my-account-delete .fs-c-radio__radioLabelText,
.fs-body-my-account-delete .fs-c-checkbox__labelText,
body[class^=fs-body-my-account-settings] .fs-c-radio__radioLabelText,
body[class^=fs-body-my-account-settings] .fs-c-checkbox__labelText,
body[class^=fs-body-my-addressbook] .fs-c-radio__radioLabelText,
body[class^=fs-body-my-addressbook] .fs-c-checkbox__labelText {
  font-size: 1.9rem;
}
.fs-body-register .fs-c-checkbox__labelText a,
.fs-body-customerDetails .fs-c-checkbox__labelText a,
.fs-body-my-account-delete .fs-c-checkbox__labelText a,
body[class^=fs-body-my-account-settings] .fs-c-checkbox__labelText a,
body[class^=fs-body-my-addressbook] .fs-c-checkbox__labelText a {
  text-decoration: underline;
}
.fs-body-register .fs-c-inputDate__year::after,
.fs-body-register .fs-c-inputDate__month::after,
.fs-body-register .fs-c-inputDate__date::after,
.fs-body-customerDetails .fs-c-inputDate__year::after,
.fs-body-customerDetails .fs-c-inputDate__month::after,
.fs-body-customerDetails .fs-c-inputDate__date::after,
.fs-body-my-account-delete .fs-c-inputDate__year::after,
.fs-body-my-account-delete .fs-c-inputDate__month::after,
.fs-body-my-account-delete .fs-c-inputDate__date::after,
body[class^=fs-body-my-account-settings] .fs-c-inputDate__year::after,
body[class^=fs-body-my-account-settings] .fs-c-inputDate__month::after,
body[class^=fs-body-my-account-settings] .fs-c-inputDate__date::after,
body[class^=fs-body-my-addressbook] .fs-c-inputDate__year::after,
body[class^=fs-body-my-addressbook] .fs-c-inputDate__month::after,
body[class^=fs-body-my-addressbook] .fs-c-inputDate__date::after {
  font-size: 1em;
}
.fs-body-register .fs-c-inputDate__year select,
.fs-body-customerDetails .fs-c-inputDate__year select,
.fs-body-my-account-delete .fs-c-inputDate__year select,
body[class^=fs-body-my-account-settings] .fs-c-inputDate__year select,
body[class^=fs-body-my-addressbook] .fs-c-inputDate__year select {
  width: 5.5em;
}
.fs-body-register .fs-c-inputDate__month select,
.fs-body-register .fs-c-inputDate__date select,
.fs-body-customerDetails .fs-c-inputDate__month select,
.fs-body-customerDetails .fs-c-inputDate__date select,
.fs-body-my-account-delete .fs-c-inputDate__month select,
.fs-body-my-account-delete .fs-c-inputDate__date select,
body[class^=fs-body-my-account-settings] .fs-c-inputDate__month select,
body[class^=fs-body-my-account-settings] .fs-c-inputDate__date select,
body[class^=fs-body-my-addressbook] .fs-c-inputDate__month select,
body[class^=fs-body-my-addressbook] .fs-c-inputDate__date select {
  width: 4.5em;
}
.fs-body-register fieldset:not(.fs-c-additionalCheckField) + .fs-c-additionalCheckField,
.fs-body-customerDetails fieldset:not(.fs-c-additionalCheckField) + .fs-c-additionalCheckField,
.fs-body-my-account-delete fieldset:not(.fs-c-additionalCheckField) + .fs-c-additionalCheckField,
body[class^=fs-body-my-account-settings] fieldset:not(.fs-c-additionalCheckField) + .fs-c-additionalCheckField,
body[class^=fs-body-my-addressbook] fieldset:not(.fs-c-additionalCheckField) + .fs-c-additionalCheckField {
  margin-top: 80px;
}
.fs-body-register .fs-c-privacyPolicyAgreeField,
.fs-body-customerDetails .fs-c-privacyPolicyAgreeField,
.fs-body-my-account-delete .fs-c-privacyPolicyAgreeField,
body[class^=fs-body-my-account-settings] .fs-c-privacyPolicyAgreeField,
body[class^=fs-body-my-addressbook] .fs-c-privacyPolicyAgreeField {
  margin-top: 36px;
}
.fs-body-register .fs-c-inputInformation__button,
.fs-body-customerDetails .fs-c-inputInformation__button,
.fs-body-my-account-delete .fs-c-inputInformation__button,
body[class^=fs-body-my-account-settings] .fs-c-inputInformation__button,
body[class^=fs-body-my-addressbook] .fs-c-inputInformation__button {
  margin-top: 40px;
  padding: 0;
}
.fs-body-register .ny-button-link,
.fs-body-customerDetails .ny-button-link,
.fs-body-my-account-delete .ny-button-link,
body[class^=fs-body-my-account-settings] .ny-button-link,
body[class^=fs-body-my-addressbook] .ny-button-link {
  margin-top: 36px;
}
.fs-body-register .fs-l-footer,
.fs-body-customerDetails .fs-l-footer,
.fs-body-my-account-delete .fs-l-footer,
body[class^=fs-body-my-account-settings] .fs-l-footer,
body[class^=fs-body-my-addressbook] .fs-l-footer {
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .fs-body-register .fs-c-inputTable__headerCell,
  .fs-body-customerDetails .fs-c-inputTable__headerCell,
  .fs-body-my-account-delete .fs-c-inputTable__headerCell,
  body[class^=fs-body-my-account-settings] .fs-c-inputTable__headerCell,
  body[class^=fs-body-my-addressbook] .fs-c-inputTable__headerCell {
    padding: 24px;
  }
  .fs-body-register tr:has(#fs_input_lastName) .fs-c-inputTextGroup,
  .fs-body-register tr:has(#fs_input_lastNameKana) .fs-c-inputTextGroup,
  .fs-body-customerDetails tr:has(#fs_input_lastName) .fs-c-inputTextGroup,
  .fs-body-customerDetails tr:has(#fs_input_lastNameKana) .fs-c-inputTextGroup,
  .fs-body-my-account-delete tr:has(#fs_input_lastName) .fs-c-inputTextGroup,
  .fs-body-my-account-delete tr:has(#fs_input_lastNameKana) .fs-c-inputTextGroup,
  body[class^=fs-body-my-account-settings] tr:has(#fs_input_lastName) .fs-c-inputTextGroup,
  body[class^=fs-body-my-account-settings] tr:has(#fs_input_lastNameKana) .fs-c-inputTextGroup,
  body[class^=fs-body-my-addressbook] tr:has(#fs_input_lastName) .fs-c-inputTextGroup,
  body[class^=fs-body-my-addressbook] tr:has(#fs_input_lastNameKana) .fs-c-inputTextGroup {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    column-gap: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .ny-register-postal > div {
    margin-top: 8px;
  }
  .fs-body-register .fs-c-inputInformation,
  .fs-body-customerDetails .fs-c-inputInformation,
  .fs-body-my-account-delete .fs-c-inputInformation,
  body[class^=fs-body-my-account-settings] .fs-c-inputInformation,
  body[class^=fs-body-my-addressbook] .fs-c-inputInformation {
    padding: 40px 0 200px;
  }
  .fs-body-register #fs_form,
  .fs-body-customerDetails #fs_form,
  .fs-body-my-account-delete #fs_form,
  body[class^=fs-body-my-account-settings] #fs_form,
  body[class^=fs-body-my-addressbook] #fs_form {
    max-width: var(--ny-w-page);
    margin: 0 auto;
    padding: 0 var(--ny-p-page);
  }
  .fs-body-register .fs-c-inputTable > tbody > tr,
  .fs-body-customerDetails .fs-c-inputTable > tbody > tr,
  .fs-body-my-account-delete .fs-c-inputTable > tbody > tr,
  body[class^=fs-body-my-account-settings] .fs-c-inputTable > tbody > tr,
  body[class^=fs-body-my-addressbook] .fs-c-inputTable > tbody > tr {
    flex-direction: row;
    border-top: 1px solid var(--ny-c-gray);
  }
  .fs-body-register .fs-c-inputTable > tbody > tr:last-of-type,
  .fs-body-customerDetails .fs-c-inputTable > tbody > tr:last-of-type,
  .fs-body-my-account-delete .fs-c-inputTable > tbody > tr:last-of-type,
  body[class^=fs-body-my-account-settings] .fs-c-inputTable > tbody > tr:last-of-type,
  body[class^=fs-body-my-addressbook] .fs-c-inputTable > tbody > tr:last-of-type {
    border-bottom: 1px solid var(--ny-c-gray);
  }
  .fs-body-register .fs-c-inputTable > tbody > tr + tr,
  .fs-body-customerDetails .fs-c-inputTable > tbody > tr + tr,
  .fs-body-my-account-delete .fs-c-inputTable > tbody > tr + tr,
  body[class^=fs-body-my-account-settings] .fs-c-inputTable > tbody > tr + tr,
  body[class^=fs-body-my-addressbook] .fs-c-inputTable > tbody > tr + tr {
    margin-top: 0;
  }
  .fs-body-register .fs-c-inputTable__headerCell,
  .fs-body-customerDetails .fs-c-inputTable__headerCell,
  .fs-body-my-account-delete .fs-c-inputTable__headerCell,
  body[class^=fs-body-my-account-settings] .fs-c-inputTable__headerCell,
  body[class^=fs-body-my-addressbook] .fs-c-inputTable__headerCell {
    display: flex;
    align-items: center;
    width: 330px;
    margin: 0;
    padding: 24px 0 24px 24px;
    font-size: 2rem;
  }
  .fs-body-register .fs-c-inputTable__dataCell,
  .fs-body-customerDetails .fs-c-inputTable__dataCell,
  .fs-body-my-account-delete .fs-c-inputTable__dataCell,
  body[class^=fs-body-my-account-settings] .fs-c-inputTable__dataCell,
  body[class^=fs-body-my-addressbook] .fs-c-inputTable__dataCell {
    display: flex;
    align-items: center;
    padding: 24px 0 24px 40px;
  }
  .fs-body-register .fs-c-inputField__field,
  .fs-body-customerDetails .fs-c-inputField__field,
  .fs-body-my-account-delete .fs-c-inputField__field,
  body[class^=fs-body-my-account-settings] .fs-c-inputField__field,
  body[class^=fs-body-my-addressbook] .fs-c-inputField__field {
    width: 740px;
  }
  .fs-body-register .fs-c-inputField__field input,
  .fs-body-register .fs-c-inputField__field select,
  .fs-body-customerDetails .fs-c-inputField__field input,
  .fs-body-customerDetails .fs-c-inputField__field select,
  .fs-body-my-account-delete .fs-c-inputField__field input,
  .fs-body-my-account-delete .fs-c-inputField__field select,
  body[class^=fs-body-my-account-settings] .fs-c-inputField__field input,
  body[class^=fs-body-my-account-settings] .fs-c-inputField__field select,
  body[class^=fs-body-my-addressbook] .fs-c-inputField__field input,
  body[class^=fs-body-my-addressbook] .fs-c-inputField__field select {
    border-radius: 8px;
    font-size: 2rem;
  }
  .fs-body-register tr:has(#fs_input_lastName) .fs-c-inputTextGroup,
  .fs-body-register tr:has(#fs_input_lastNameKana) .fs-c-inputTextGroup,
  .fs-body-customerDetails tr:has(#fs_input_lastName) .fs-c-inputTextGroup,
  .fs-body-customerDetails tr:has(#fs_input_lastNameKana) .fs-c-inputTextGroup,
  .fs-body-my-account-delete tr:has(#fs_input_lastName) .fs-c-inputTextGroup,
  .fs-body-my-account-delete tr:has(#fs_input_lastNameKana) .fs-c-inputTextGroup,
  body[class^=fs-body-my-account-settings] tr:has(#fs_input_lastName) .fs-c-inputTextGroup,
  body[class^=fs-body-my-account-settings] tr:has(#fs_input_lastNameKana) .fs-c-inputTextGroup,
  body[class^=fs-body-my-addressbook] tr:has(#fs_input_lastName) .fs-c-inputTextGroup,
  body[class^=fs-body-my-addressbook] tr:has(#fs_input_lastNameKana) .fs-c-inputTextGroup {
    column-gap: 40px;
  }
  .fs-body-register .fs-c-inputTextGroup__item::before,
  .fs-body-customerDetails .fs-c-inputTextGroup__item::before,
  .fs-body-my-account-delete .fs-c-inputTextGroup__item::before,
  body[class^=fs-body-my-account-settings] .fs-c-inputTextGroup__item::before,
  body[class^=fs-body-my-addressbook] .fs-c-inputTextGroup__item::before {
    width: 60px;
    font-size: 2rem;
  }
  .fs-body-register .fs-c-inputTextGroup__item input,
  .fs-body-customerDetails .fs-c-inputTextGroup__item input,
  .fs-body-my-account-delete .fs-c-inputTextGroup__item input,
  body[class^=fs-body-my-account-settings] .fs-c-inputTextGroup__item input,
  body[class^=fs-body-my-addressbook] .fs-c-inputTextGroup__item input {
    width: 290px;
    margin-left: 0;
  }
  .fs-body-register #fs_label_zipCode::after,
  .fs-body-register #fs_label_phoneNumber::after,
  .fs-body-register #fs_label_addressLine3::after,
  .fs-body-register #fs_label_birthday::after,
  .fs-body-register tr:has(#fs_input_gender-00) .fs-c-inputTable__label::after,
  .fs-body-customerDetails #fs_label_zipCode::after,
  .fs-body-customerDetails #fs_label_phoneNumber::after,
  .fs-body-customerDetails #fs_label_addressLine3::after,
  .fs-body-customerDetails #fs_label_birthday::after,
  .fs-body-customerDetails tr:has(#fs_input_gender-00) .fs-c-inputTable__label::after,
  .fs-body-my-account-delete #fs_label_zipCode::after,
  .fs-body-my-account-delete #fs_label_phoneNumber::after,
  .fs-body-my-account-delete #fs_label_addressLine3::after,
  .fs-body-my-account-delete #fs_label_birthday::after,
  .fs-body-my-account-delete tr:has(#fs_input_gender-00) .fs-c-inputTable__label::after,
  body[class^=fs-body-my-account-settings] #fs_label_zipCode::after,
  body[class^=fs-body-my-account-settings] #fs_label_phoneNumber::after,
  body[class^=fs-body-my-account-settings] #fs_label_addressLine3::after,
  body[class^=fs-body-my-account-settings] #fs_label_birthday::after,
  body[class^=fs-body-my-account-settings] tr:has(#fs_input_gender-00) .fs-c-inputTable__label::after,
  body[class^=fs-body-my-addressbook] #fs_label_zipCode::after,
  body[class^=fs-body-my-addressbook] #fs_label_phoneNumber::after,
  body[class^=fs-body-my-addressbook] #fs_label_addressLine3::after,
  body[class^=fs-body-my-addressbook] #fs_label_birthday::after,
  body[class^=fs-body-my-addressbook] tr:has(#fs_input_gender-00) .fs-c-inputTable__label::after {
    font-size: 1.8rem;
  }
  .fs-body-register .fs-c-input--zipCode,
  .fs-body-register #fs_input_prefecture,
  .fs-body-register #fs_input_phoneNumber,
  .fs-body-customerDetails .fs-c-input--zipCode,
  .fs-body-customerDetails #fs_input_prefecture,
  .fs-body-customerDetails #fs_input_phoneNumber,
  .fs-body-my-account-delete .fs-c-input--zipCode,
  .fs-body-my-account-delete #fs_input_prefecture,
  .fs-body-my-account-delete #fs_input_phoneNumber,
  body[class^=fs-body-my-account-settings] .fs-c-input--zipCode,
  body[class^=fs-body-my-account-settings] #fs_input_prefecture,
  body[class^=fs-body-my-account-settings] #fs_input_phoneNumber,
  body[class^=fs-body-my-addressbook] .fs-c-input--zipCode,
  body[class^=fs-body-my-addressbook] #fs_input_prefecture,
  body[class^=fs-body-my-addressbook] #fs_input_phoneNumber {
    width: 290px;
  }
  .fs-body-register .fs-c-inputField:has(#fs_input_zipCode),
  .fs-body-customerDetails .fs-c-inputField:has(#fs_input_zipCode),
  .fs-body-my-account-delete .fs-c-inputField:has(#fs_input_zipCode),
  body[class^=fs-body-my-account-settings] .fs-c-inputField:has(#fs_input_zipCode),
  body[class^=fs-body-my-addressbook] .fs-c-inputField:has(#fs_input_zipCode) {
    display: flex;
    column-gap: 24px;
  }
  .fs-body-register .fs-c-inputField:has(#fs_input_zipCode) .fs-c-inputField__field,
  .fs-body-customerDetails .fs-c-inputField:has(#fs_input_zipCode) .fs-c-inputField__field,
  .fs-body-my-account-delete .fs-c-inputField:has(#fs_input_zipCode) .fs-c-inputField__field,
  body[class^=fs-body-my-account-settings] .fs-c-inputField:has(#fs_input_zipCode) .fs-c-inputField__field,
  body[class^=fs-body-my-addressbook] .fs-c-inputField:has(#fs_input_zipCode) .fs-c-inputField__field {
    width: auto;
  }
  .fs-body-register .fs-c-inputField:has(#fs_input_zipCode) .fs-c-assist.is-error,
  .fs-body-customerDetails .fs-c-inputField:has(#fs_input_zipCode) .fs-c-assist.is-error,
  .fs-body-my-account-delete .fs-c-inputField:has(#fs_input_zipCode) .fs-c-assist.is-error,
  body[class^=fs-body-my-account-settings] .fs-c-inputField:has(#fs_input_zipCode) .fs-c-assist.is-error,
  body[class^=fs-body-my-addressbook] .fs-c-inputField:has(#fs_input_zipCode) .fs-c-assist.is-error {
    position: absolute;
    top: 80px;
  }
  .fs-body-register .fs-c-inputField:has(#fs_input_zipCode) .fs-c-inputField__explanation,
  .fs-body-customerDetails .fs-c-inputField:has(#fs_input_zipCode) .fs-c-inputField__explanation,
  .fs-body-my-account-delete .fs-c-inputField:has(#fs_input_zipCode) .fs-c-inputField__explanation,
  body[class^=fs-body-my-account-settings] .fs-c-inputField:has(#fs_input_zipCode) .fs-c-inputField__explanation,
  body[class^=fs-body-my-addressbook] .fs-c-inputField:has(#fs_input_zipCode) .fs-c-inputField__explanation {
    margin-top: 0;
  }
  .fs-body-register .fs-c-dropdown:has(#fs_input_prefecture)::after,
  .fs-body-customerDetails .fs-c-dropdown:has(#fs_input_prefecture)::after,
  .fs-body-my-account-delete .fs-c-dropdown:has(#fs_input_prefecture)::after,
  body[class^=fs-body-my-account-settings] .fs-c-dropdown:has(#fs_input_prefecture)::after,
  body[class^=fs-body-my-addressbook] .fs-c-dropdown:has(#fs_input_prefecture)::after {
    right: 0;
    left: 250px;
  }
  .fs-body-register .fs-c-radioGroup,
  .fs-body-customerDetails .fs-c-radioGroup,
  .fs-body-my-account-delete .fs-c-radioGroup,
  body[class^=fs-body-my-account-settings] .fs-c-radioGroup,
  body[class^=fs-body-my-addressbook] .fs-c-radioGroup {
    grid-template-columns: repeat(3, 1fr);
    width: 500px;
  }
  .fs-body-register .fs-c-additionalCheckField,
  .fs-body-customerDetails .fs-c-additionalCheckField,
  .fs-body-my-account-delete .fs-c-additionalCheckField,
  body[class^=fs-body-my-account-settings] .fs-c-additionalCheckField,
  body[class^=fs-body-my-addressbook] .fs-c-additionalCheckField {
    width: 380px;
    margin: auto;
  }
  .fs-body-register .fs-c-privacyPolicyAgreeField,
  .fs-body-customerDetails .fs-c-privacyPolicyAgreeField,
  .fs-body-my-account-delete .fs-c-privacyPolicyAgreeField,
  body[class^=fs-body-my-account-settings] .fs-c-privacyPolicyAgreeField,
  body[class^=fs-body-my-addressbook] .fs-c-privacyPolicyAgreeField {
    margin-top: 24px;
  }
  .fs-body-register .ny-button-link,
  .fs-body-customerDetails .ny-button-link,
  .fs-body-my-account-delete .ny-button-link,
  body[class^=fs-body-my-account-settings] .ny-button-link,
  body[class^=fs-body-my-addressbook] .ny-button-link {
    margin-top: 40px;
  }
}
/* 会員登録完了 */
.fs-body-register-success .ny-general-wrapper {
  padding-left: var(--ny-p-page);
  padding-right: var(--ny-p-page);
}
.fs-body-register-success .fs-c-registerSuccessMessage {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  text-align: left;
}
.fs-body-register-success p {
  margin: 0;
}

.ny-register-success-info {
  margin-top: 24px;
  font-size: 1.8rem;
}
.ny-register-success-info b {
  display: block;
  margin-bottom: 24px;
}

.ny-register-success-status {
  margin-top: 36px;
  padding: 24px 8px 28px;
  border: 1px solid var(--ny-c-gray);
  background-color: #fff;
  font-size: 1.8rem;
}
.ny-register-success-status b {
  display: block;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ny-c-gray);
  line-height: 1;
}
.ny-register-success-status p {
  margin-top: 20px;
  line-height: 1.7;
}
.ny-register-success-status a {
  text-decoration: underline;
}

.fs-body-register-success .ny-button-link {
  margin-top: 40px;
}
.fs-body-register-success .ny-button-link + .ny-button-link {
  margin-top: 36px;
}

@media screen and (min-width: 1200px) {
  .fs-body-register-success .fs-c-registerSuccessMessage {
    width: 300px;
    margin: 0 auto;
    font-size: 2rem;
  }
  .ny-register-success-info {
    width: 300px;
    margin: 24px auto;
  }
  .ny-register-success-info b {
    font-size: 2rem;
  }
  .ny-register-success-status {
    width: 590px;
    margin: 40px auto;
    padding: 24px 24px 40px;
  }
  .ny-register-success-status p {
    margin-top: 24px;
    line-height: 1;
  }
  .fs-body-register-success .ny-button-link {
    margin-top: 80px;
  }
  .fs-body-register-success .ny-button-link + .ny-button-link {
    margin-top: 24px;
  }
}
/* お客様情報入力 */
.fs-body-customerDetails .fs-c-inputInformation__message {
  margin: 0 auto;
  padding: 28px 0;
}
.fs-body-customerDetails .fs-c-agreementField {
  border: none;
}
.fs-body-customerDetails .fs-c-agreementConfirmationArea,
.fs-body-customerDetails .fs-c-agreementConfirmation {
  margin: 0;
  padding: 0;
}
.fs-body-customerDetails .fs-c-agreementConfirmation + .fs-c-agreementConfirmation {
  margin-top: 40px;
}
.fs-body-customerDetails .fs-c-agreementConfirmation__message {
  margin: 0 -16px 20px;
  padding: var(--ny-p-page);
  border: none;
  background-color: #ededed;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1;
}
.fs-body-customerDetails .fs-c-agreementConfirmation__addon {
  margin-top: 1em;
}
.fs-body-customerDetails .fs-c-agreementConfirmation__password__input input {
  padding: 16px 1em;
  border-radius: 4px;
  font-size: 1.9rem;
  line-height: 1;
}
.fs-body-customerDetails #fs_unregisterAndContinue {
  width: 100%;
  text-align: center;
}
.fs-body-customerDetails .fs-p-listWithCheckmark > li {
  margin: 16px 0;
}
@media screen and (min-width: 768px) {
  .fs-body-customerDetails .fs-c-agreementConfirmation__message {
    margin-left: -24px;
    margin-right: -24px;
  }
}
@media screen and (min-width: 1200px) {
  .fs-body-customerDetails .fs-c-agreementField,
  .fs-body-customerDetails .fs-c-privacyPolicyAgreeField {
    width: 680px;
  }
}

/* 会員カード認証 */
.fs-body-membershipCardAuth .fs-c-buttonContainer--pair {
  grid-template-columns: 1fr;
  row-gap: 40px;
}
.fs-body-membershipCardAuth .fs-c-buttonContainer--pair > *:first-child,
.fs-body-membershipCardAuth .fs-c-buttonContainer--pair > *:last-child {
  grid-column: auto;
  grid-row: auto;
  justify-self: center;
}

/* ログイン、パスワード変更・再設定
--------------------------------------------- */
/* ログイン */
.fs-body-login .fs-c-subSection,
.fs-body-wishlist-login .fs-c-subSection,
.fs-body-cart-login .fs-c-subSection {
  margin-bottom: 0;
}
.fs-body-login .fs-c-registeredUsers__title,
.fs-body-wishlist-login .fs-c-registeredUsers__title,
.fs-body-cart-login .fs-c-registeredUsers__title {
  display: none;
}
.fs-body-login .fs-c-loginForm,
.fs-body-wishlist-login .fs-c-loginForm,
.fs-body-cart-login .fs-c-loginForm {
  margin: 0;
  padding: 0 var(--ny-p-page) 200px;
  background-color: #f8f8f8;
}
.fs-body-login .fs-c-inputInformation__field,
.fs-body-wishlist-login .fs-c-inputInformation__field,
.fs-body-cart-login .fs-c-inputInformation__field {
  padding: 0;
  background: transparent;
}
.fs-body-login .fs-c-inputTable__dataCell,
.fs-body-wishlist-login .fs-c-inputTable__dataCell,
.fs-body-cart-login .fs-c-inputTable__dataCell {
  margin: 20px 0 0;
}
.fs-body-login .fs-c-inputField:has(#fs_input_password)::after,
.fs-body-wishlist-login .fs-c-inputField:has(#fs_input_password)::after,
.fs-body-cart-login .fs-c-inputField:has(#fs_input_password)::after {
  display: block;
  margin-top: 12px;
  content: "右の目のマークを押すと入力したパスワードが表示されます。";
}
.fs-body-login .fs-c-inputInformation__button,
.fs-body-wishlist-login .fs-c-inputInformation__button,
.fs-body-cart-login .fs-c-inputInformation__button {
  margin-top: 40px;
}
.fs-body-login .fs-c-inputInformation__link,
.fs-body-wishlist-login .fs-c-inputInformation__link,
.fs-body-cart-login .fs-c-inputInformation__link {
  margin-top: 28px;
  text-align: center;
}
.fs-body-login .fs-c-inputInformation__link > a,
.fs-body-wishlist-login .fs-c-inputInformation__link > a,
.fs-body-cart-login .fs-c-inputInformation__link > a {
  text-decoration: underline;
}
.fs-body-login .fs-c-guestPurchase,
.fs-body-wishlist-login .fs-c-guestPurchase,
.fs-body-cart-login .fs-c-guestPurchase {
  margin-top: 28px;
  padding: 0;
  border: none;
}
.fs-body-login .fs-c-guestPurchase a,
.fs-body-wishlist-login .fs-c-guestPurchase a,
.fs-body-cart-login .fs-c-guestPurchase a {
  text-decoration: underline;
}
.fs-body-login .fs-c-otherServiceLogin,
.fs-body-wishlist-login .fs-c-otherServiceLogin,
.fs-body-cart-login .fs-c-otherServiceLogin {
  margin: 60px -16px 0;
  padding: 40px var(--ny-p-page);
  background-color: #ededed;
}
.fs-body-login .fs-c-newUsers,
.fs-body-wishlist-login .fs-c-newUsers,
.fs-body-cart-login .fs-c-newUsers {
  display: grid;
  margin-top: 60px;
}
.fs-body-login .fs-c-buttonContainer--memberRegister,
.fs-body-wishlist-login .fs-c-buttonContainer--memberRegister,
.fs-body-cart-login .fs-c-buttonContainer--memberRegister {
  margin-top: 28px;
}
.fs-body-login .fs-c-newUsers__message,
.fs-body-wishlist-login .fs-c-newUsers__message,
.fs-body-cart-login .fs-c-newUsers__message {
  margin-top: 28px;
  order: 2;
}
@media screen and (min-width: 768px) {
  .fs-body-login .fs-c-otherServiceLogin,
  .fs-body-wishlist-login .fs-c-otherServiceLogin,
  .fs-body-cart-login .fs-c-otherServiceLogin {
    margin-left: -24px;
    margin-right: -24px;
  }
}
@media screen and (min-width: 960px) {
  .fs-body-login .fs-c-loginForm,
  .fs-body-wishlist-login .fs-c-loginForm,
  .fs-body-cart-login .fs-c-loginForm {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .fs-body-login .fs-c-loginForm,
  .fs-body-wishlist-login .fs-c-loginForm,
  .fs-body-cart-login .fs-c-loginForm {
    padding-top: 40px;
  }
  .fs-body-login .fs-c-registeredUsers,
  .fs-body-login .fs-c-newUsers,
  .fs-body-wishlist-login .fs-c-registeredUsers,
  .fs-body-wishlist-login .fs-c-newUsers,
  .fs-body-cart-login .fs-c-registeredUsers,
  .fs-body-cart-login .fs-c-newUsers {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .fs-body-login .fs-c-otherServiceLogin,
  .fs-body-wishlist-login .fs-c-otherServiceLogin,
  .fs-body-cart-login .fs-c-otherServiceLogin {
    margin-left: 0;
    margin-right: 0;
  }
  .fs-body-login .fs-c-inputTable__dataCell,
  .fs-body-wishlist-login .fs-c-inputTable__dataCell,
  .fs-body-cart-login .fs-c-inputTable__dataCell {
    margin: var(--ny-p-page) var(--ny-p-page) 0;
  }
  .fs-body-login .fs-c-inputInformation__link,
  .fs-body-wishlist-login .fs-c-inputInformation__link,
  .fs-body-cart-login .fs-c-inputInformation__link {
    margin-top: 40px;
    font-size: 2.2rem;
  }
  .fs-body-login .fs-c-guestPurchase,
  .fs-body-wishlist-login .fs-c-guestPurchase,
  .fs-body-cart-login .fs-c-guestPurchase {
    margin-top: 40px;
    font-size: 2.2rem;
  }
  .fs-body-login .fs-c-otherServiceLogin,
  .fs-body-wishlist-login .fs-c-otherServiceLogin,
  .fs-body-cart-login .fs-c-otherServiceLogin {
    margin-top: 80px;
  }
  .fs-body-login .fs-c-newUsers,
  .fs-body-wishlist-login .fs-c-newUsers,
  .fs-body-cart-login .fs-c-newUsers {
    margin-top: 120px;
    padding: 40px;
    border: 1px solid var(--ny-c-gray);
  }
  .fs-body-login .fs-c-buttonContainer--memberRegister,
  .fs-body-wishlist-login .fs-c-buttonContainer--memberRegister,
  .fs-body-cart-login .fs-c-buttonContainer--memberRegister {
    margin-top: 40px;
  }
  .fs-body-login .fs-c-newUsers__message,
  .fs-body-wishlist-login .fs-c-newUsers__message,
  .fs-body-cart-login .fs-c-newUsers__message {
    margin-top: 40px;
    font-size: 2rem;
    text-align: center;
  }
}

.fs-body-cart-login .fs-c-loginForm {
  max-width: 100%;
}

/* パスワード変更・再設定 */
.fs-body-my-account-password .fs-c-inputInformation,
.fs-body-forgotPassword .fs-c-inputInformation,
.fs-body-resetPassword .fs-c-inputInformation,
.fs-body-my-membership-merge .fs-c-inputInformation,
.fs-body-membershipCardAuth .fs-c-inputInformation {
  padding: 0 var(--ny-p-page) 200px;
  background-color: #f8f8f8;
}
.fs-body-my-account-password .fs-c-inputInformation__message,
.fs-body-forgotPassword .fs-c-inputInformation__message,
.fs-body-resetPassword .fs-c-inputInformation__message,
.fs-body-my-membership-merge .fs-c-inputInformation__message,
.fs-body-membershipCardAuth .fs-c-inputInformation__message {
  margin: 0;
  padding: 28px 0 32px;
}
.fs-body-my-account-password .fs-c-inputInformation__field,
.fs-body-forgotPassword .fs-c-inputInformation__field,
.fs-body-resetPassword .fs-c-inputInformation__field,
.fs-body-my-membership-merge .fs-c-inputInformation__field,
.fs-body-membershipCardAuth .fs-c-inputInformation__field {
  padding: 0;
  background: transparent;
}
.fs-body-my-account-password .fs-c-inputTable__dataCell,
.fs-body-forgotPassword .fs-c-inputTable__dataCell,
.fs-body-resetPassword .fs-c-inputTable__dataCell,
.fs-body-my-membership-merge .fs-c-inputTable__dataCell,
.fs-body-membershipCardAuth .fs-c-inputTable__dataCell {
  margin: 20px 0 0;
}
.fs-body-my-account-password .fs-c-inputField:has(#fs_input_currentPassword)::after,
.fs-body-my-account-password .fs-c-inputField:has(#fs_input_newPassword)::after,
.fs-body-my-account-password .fs-c-inputField:has(#fs_input_tempPassword)::after,
.fs-body-my-account-password .fs-c-inputField:has(#fs_input_membershipPassword)::after,
.fs-body-forgotPassword .fs-c-inputField:has(#fs_input_currentPassword)::after,
.fs-body-forgotPassword .fs-c-inputField:has(#fs_input_newPassword)::after,
.fs-body-forgotPassword .fs-c-inputField:has(#fs_input_tempPassword)::after,
.fs-body-forgotPassword .fs-c-inputField:has(#fs_input_membershipPassword)::after,
.fs-body-resetPassword .fs-c-inputField:has(#fs_input_currentPassword)::after,
.fs-body-resetPassword .fs-c-inputField:has(#fs_input_newPassword)::after,
.fs-body-resetPassword .fs-c-inputField:has(#fs_input_tempPassword)::after,
.fs-body-resetPassword .fs-c-inputField:has(#fs_input_membershipPassword)::after,
.fs-body-my-membership-merge .fs-c-inputField:has(#fs_input_currentPassword)::after,
.fs-body-my-membership-merge .fs-c-inputField:has(#fs_input_newPassword)::after,
.fs-body-my-membership-merge .fs-c-inputField:has(#fs_input_tempPassword)::after,
.fs-body-my-membership-merge .fs-c-inputField:has(#fs_input_membershipPassword)::after,
.fs-body-membershipCardAuth .fs-c-inputField:has(#fs_input_currentPassword)::after,
.fs-body-membershipCardAuth .fs-c-inputField:has(#fs_input_newPassword)::after,
.fs-body-membershipCardAuth .fs-c-inputField:has(#fs_input_tempPassword)::after,
.fs-body-membershipCardAuth .fs-c-inputField:has(#fs_input_membershipPassword)::after {
  display: block;
  margin-top: 12px;
  content: "右の目のマークを押すと入力したパスワードが表示されます。";
}
.fs-body-my-account-password .fs-c-inputInformation__button,
.fs-body-forgotPassword .fs-c-inputInformation__button,
.fs-body-resetPassword .fs-c-inputInformation__button,
.fs-body-my-membership-merge .fs-c-inputInformation__button,
.fs-body-membershipCardAuth .fs-c-inputInformation__button {
  margin-top: 40px;
}
@media screen and (min-width: 1200px) {
  .fs-body-my-account-password .fs-c-inputInformation__message,
  .fs-body-my-account-password .fs-c-inputInformation__field,
  .fs-body-forgotPassword .fs-c-inputInformation__message,
  .fs-body-forgotPassword .fs-c-inputInformation__field,
  .fs-body-resetPassword .fs-c-inputInformation__message,
  .fs-body-resetPassword .fs-c-inputInformation__field,
  .fs-body-my-membership-merge .fs-c-inputInformation__message,
  .fs-body-my-membership-merge .fs-c-inputInformation__field,
  .fs-body-membershipCardAuth .fs-c-inputInformation__message,
  .fs-body-membershipCardAuth .fs-c-inputInformation__field {
    max-width: 600px;
    margin: 0 auto;
  }
  .fs-body-my-account-password .fs-c-inputTable__dataCell,
  .fs-body-forgotPassword .fs-c-inputTable__dataCell,
  .fs-body-resetPassword .fs-c-inputTable__dataCell,
  .fs-body-my-membership-merge .fs-c-inputTable__dataCell,
  .fs-body-membershipCardAuth .fs-c-inputTable__dataCell {
    margin: var(--ny-p-page) var(--ny-p-page) 0;
  }
}

/* 特定商取引法に基づく表示
--------------------------------------------- */
.ny-terms-list {
  margin: 0;
  padding-bottom: 200px;
  background-color: #f8f8f8;
}
.ny-terms-list dt {
  margin: 0;
  padding: var(--ny-p-page);
  border: none;
  background-color: #ededed;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1;
}
.ny-terms-list dd {
  margin: 0;
  padding: var(--ny-p-page);
  padding-bottom: 40px;
  font-size: 1.8rem;
}
.ny-terms-list dd a {
  text-decoration: underline;
}

@media screen and (min-width: 1200px) {
  .ny-terms-container {
    max-width: var(--ny-w-page);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--ny-p-page);
    padding-right: var(--ny-p-page);
  }
  .ny-terms-list {
    display: grid;
    grid-template-columns: 380px 1fr;
    padding-top: 40px;
  }
  .ny-terms-list dt,
  .ny-terms-list dd {
    padding: var(--ny-p-page) 40px;
    border-bottom: 1px solid var(--ny-c-gray);
    font-size: 2rem;
  }
  .ny-terms-list dt:first-of-type,
  .ny-terms-list dd:first-of-type {
    border-top: 1px solid var(--ny-c-gray);
  }
  .ny-terms-list dt {
    line-height: 1.5;
  }
}
/* プライバシーポリシー、パーソナルデータの外部送信に関するポリシー
--------------------------------------------- */
.ny-policy {
  padding: 40px 0 80px;
}
.ny-policy section {
  line-height: 1.7;
}
.ny-policy section + section {
  margin-top: 40px;
}
.ny-policy section > ol,
.ny-policy section > ul {
  margin-top: 2em;
}
.ny-policy h2 {
  margin-bottom: 1.5em;
  font-weight: bold;
  font-size: 1.7rem;
}
.ny-policy h3 {
  margin-top: 1.5em;
  font-weight: bold;
  font-size: 1.6rem;
}
.ny-policy a {
  text-decoration: underline;
}
.ny-policy ol,
.ny-policy ul {
  padding: 0 0 0 1.5em;
}
.ny-policy ol > li + li {
  margin-top: 2em;
}
.ny-policy ol ul li {
  list-style-type: square;
}
.ny-policy table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
}
.ny-policy table tr:first-of-type th {
  border-bottom: none;
  background-color: #f0f0f0;
}
.ny-policy table th,
.ny-policy table td {
  padding: 1em 0.25em;
  border-bottom: 1px solid var(--ny-c-gray);
  font-size: 1.3rem;
  text-align: left;
}
.ny-policy table th:nth-of-type(2) {
  width: 32%;
}
.ny-policy table th:last-of-type {
  width: 18%;
}
.ny-policy table th small {
  font-size: 1.3rem;
}
.ny-policy table td:nth-of-type(n + 2) {
  text-align: center;
}
.ny-policy table td:nth-of-type(n + 2) a > i {
  color: #757575;
  font-size: 1.1em;
}

/* TAB */
@media screen and (min-width: 768px) {
  .ny-policy {
    padding: 46px 0 180px;
  }
  .ny-policy section {
    font-size: 1.8rem;
  }
  .ny-policy section + section {
    margin-top: 4em;
  }
  .ny-policy h2 {
    font-size: 2.2rem;
  }
  .ny-policy h3 {
    font-size: 1.8rem;
  }
  .ny-policy ol ul li {
    padding-left: 1em;
  }
  .ny-policy table {
    margin-top: 3em;
  }
  .ny-policy table th,
  .ny-policy table td {
    padding: 1em;
    font-size: 1.8rem;
    border-width: 2px;
  }
  .ny-policy table th small {
    font-size: 1.4rem;
  }
}
/* PC */
@media screen and (min-width: 1200px) {
  .ny-policy {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 70px;
  }
  .ny-policy section {
    font-size: 2rem;
    line-height: 1.8;
  }
  .ny-policy h2 {
    font-size: 2.8rem;
  }
  .ny-policy h3 {
    font-size: 2rem;
  }
  .ny-policy table th,
  .ny-policy table td {
    font-size: 2rem;
  }
  .ny-policy table th small {
    font-size: 1.6rem;
  }
}
