@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 {
  display: grid;
  place-content: center;
  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 {
  position: static;
  width: 12px;
  height: 12px;
  margin: 0;
  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;
  scroll-margin-top: 72.5px;
}
.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.full {
  grid-column: 1/-1;
}

/* 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 {
    scroll-margin-top: 85px;
  }
  .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;
  }
}
/* 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 {
    scroll-margin-top: 96px;
  }
  .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-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;
  }
}