/*--------------------------------
CSS変数
--------------------------------*/
:root {
  --main-theme-color: #ff6b35;
  --main-color: #ff6b35;
  --main-color-black: #292929;
  --main-color-red: #cc3d23;
  --main-color-gray: #a0a0a0;
  --main-color-gray-2: #959595;
  --border-color-gray: #c9c9c9;
  --bg-color-gold: #fffcf2;
  --box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  --width-inner-pc: calc(100vw - 36px * 2);
  --width-inner-sp: calc(100vw - 20px * 2);
}

/*-----------------------
utility
--------------------------------*/

/* margin */
@media screen and (min-width: 720px) {
  .u-margin_pc__top--120 {
    margin-top: 120px;
  }
  .u-margin_pc__top--110 {
    margin-top: 110px;
  }
  .u-margin_pc__top--100 {
    margin-top: 100px;
  }
  .u-margin_pc__top--80 {
    margin-top: 80px;
  }
  .u-margin_pc__top--60 {
    margin-top: 60px;
  }
  .u-margin_pc__top--40 {
    margin-top: 40px;
  }

  .u-margin_pc__bottom--120 {
    margin-bottom: 120px;
  }
  .u-margin_pc__bottom--100 {
    margin-bottom: 100px;
  }
  .u-margin_pc__bottom--80 {
    margin-bottom: 80px;
  }
  .u-margin_pc__bottom--60 {
    margin-bottom: 60px;
  }
  .u-margin_pc__bottom--40 {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 719px) {
  .u-margin_sp__top--120 {
    margin-top: 120px;
  }
  .u-margin_sp__top--100 {
    margin-top: 100px;
  }
  .u-margin_sp__top--80 {
    margin-top: 80px;
  }
  .u-margin_sp__top--60 {
    margin-top: 60px;
  }
  .u-margin_sp__top--50 {
    margin-top: 50px;
  }
  .u-margin_sp__top--40 {
    margin-top: 40px;
  }
  .u-margin_sp__top--30 {
    margin-top: 30px;
  }

  .u-margin_sp__bottom--120 {
    margin-bottom: 120px;
  }
  .u-margin_sp__bottom--100 {
    margin-bottom: 100px;
  }
  .u-margin_sp__bottom--80 {
    margin-bottom: 80px;
  }
  .u-margin_sp__bottom--60 {
    margin-bottom: 60px;
  }
  .u-margin_sp__bottom--50 {
    margin-bottom: 50px;
  }
  .u-margin_sp__bottom--40 {
    margin-bottom: 40px;
  }
}

/* padding */
@media screen and (min-width: 720px) {
  .u-padding_pc__top--120 {
    padding-top: 120px;
  }
  .u-padding_pc__top--100 {
    padding-top: 100px;
  }
  .u-padding_pc__top--80 {
    padding-top: 80px;
  }
  .u-padding_pc__top--60 {
    padding-top: 60px;
  }
  .u-padding_pc__top--30 {
    padding-top: 30px;
  }

  .u-padding_pc__bottom--120 {
    padding-bottom: 120px;
  }
  .u-padding_pc__bottom--100 {
    padding-bottom: 100px;
  }
  .u-padding_pc__bottom--80 {
    padding-bottom: 80px;
  }
  .u-padding_pc__bottom--60 {
    padding-bottom: 60px;
  }
  .u-padding_pc__bottom--30 {
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 719px) {
  .u-padding_sp__top--100 {
    padding-top: 100px;
  }
  .u-padding_sp__top--80 {
    padding-top: 80px;
  }
  .u-padding_sp__top--60 {
    padding-top: 60px;
  }
  .u-padding_sp__top--30 {
    padding-top: 30px;
  }
  .u-padding_sp__top--20 {
    padding-top: 20px;
  }

  .u-padding_sp__bottom--100 {
    padding-bottom: 100px;
  }
  .u-padding_sp__bottom--80 {
    padding-bottom: 80px;
  }
  .u-padding_sp__bottom--60 {
    padding-bottom: 60px;
  }
  .u-padding_sp__bottom--50 {
    padding-bottom: 50px;
  }
  .u-padding_sp__bottom--30 {
    padding-bottom: 30px;
  }
  .u-padding_sp__bottom--20 {
    padding-bottom: 20px;
  }
}

/*
color
*/
.u-theme--color-bg {
  background-color: var(--main-theme-color);
}
.u-theme--color-text {
  color: var(--main-theme-color) !important;
}

.u-color__bg--bg {
  background-color: var(--bg-color-gold);
}

/*
グラデーション背景

使用箇所 ↓
コンセプトセクション

jsonでオンオフを切り替える
*/

/* text align */
.u-text--left {
  text-align: left;
}
.u-text--center {
  text-align: center;
}
.u-text--right {
  text-align: right;
}

/* br */
@media screen and (min-width: 720px) {
  .u-br--sp-only {
    display: none;
  }
}
@media screen and (max-width: 719px) {
  .u-br--pc-only {
    display: none;
  }
}

/* arrow icon */
.u-arrow--icon {
  position: relative;
}

.u-arrow--icon::after {
  content: "\e901";
  font-family: "icon", sans-serif;
  font-weight: 400;
  font-size: 20px;
  position: absolute;
  top: 50%;
  right: 0;
  pointer-events: none;
}

.u-arrow--icon--up::after {
  transform: translateY(-50%) rotate(270deg);
}
.u-arrow--icon--down::after {
  transform: translateY(-50%) rotate(90deg);
}
.u-arrow--icon--right::after {
  transform: translateY(-50%) rotate(0deg);
}
.u-arrow--icon--left::after {
  transform: translateY(-50%) rotate(180deg);
}

/* close button */
.close-button {
  position: relative;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.close-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background-color: #000;
  transform: translate(-50%, -50%);
}

.close-line:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-line:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/*
金色のマーカー丸

各所のタイトルの前に表示する目的で使用
*/
.u-marker-circle::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--main-color);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}
@media screen and (max-width: 719px) {
  .u-marker-circle::before {
    width: 6px;
    height: 6px;
    margin-right: 12px;
  }
}
/*--------------------------------
共通クラス
--------------------------------*/
.l-content__inner {
  max-width: calc(1280px + 44px * 2);
  margin-inline: auto;
  padding-inline: 44px;
}
@media screen and (max-width: 719px) {
  .l-content__inner {
    padding-inline: 20px;
  }
}
.p-list_header__inner__sub-container {
  flex-direction: column;
  padding-right: 0;
}

/* 全テンプレートでフッターを最下部に位置させるためのクラス */
.l-wrapper-none {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.l-wrapper-none > main {
  flex: 1;
  padding-top: 71px;
}

/* 見出し */
.p-list_header__inner {
  text-align: center;
  justify-content: center;
}
.p-page_header__inner {
  text-align: center;
}

/* サブタイトル(英字) */
.u-subtitle__en {
  display: block;
  letter-spacing: 0;
  margin-bottom: 8px;
  color: var(--main-color) !important;
  font-family: Jost;
}
@media screen and (min-width: 720px) {
  .u-subtitle__en {
    margin-bottom: 12px;
  }
}

/*
矢印アイコン

使用箇所　↓
.c-gmenu__container__inner__list__item__menu__item__inner
*/
.c-icon--arrow {
  position: absolute;
  inset: 0 7px 0 auto;
  margin: auto;
  max-width: 15px;
  height: auto;
}

/*
ボタン
*/
.p-btn--more__wrapper {
  margin-top: 40px;
}
@media screen and (min-width: 720px) {
  .p-btn--more__wrapper {
    margin-top: 80px;
  }
}
.p-btn--more__wrapper .u-btn--more {
  margin-inline: auto;
}

/* パンくず */
.c-breadcrumbs__item {
  color: #ffffff;
}


/*
カテゴリリスト

使用箇所 ↓
トップページ：商品カテゴリセクション,よくある質問セクション

*/
.p-category__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
@media screen and (max-width: 719px) {
  .p-category__list {
    gap: 8px;
  }
}

.p-category__list__item {
  padding: 8px 20px;
  border: 1px solid var(--main-color);
  border-radius: 8px;
  color: var(--main-color) !important;
  background-color: #ffffff;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  letter-spacing: 0;
}
@media screen and (max-width: 719px) {
  .p-category__list__item {
    width: 100%;
  }
}
.p-category__list__item.active {
  /* アクティブ状態のスタイル */
  background-color: var(--main-color);
  color: #ffffff !important;
  -webkit-box-shadow: unset;
  box-shadow: unset;
}

/*
　2列のカテゴリリスト

　使用箇所 ↓
　メニューラインナップセクション：トップページ
　選べるセットページ
*/
.p-new_product__category__list {
  margin-top: 50px;
}
@media screen and (max-width: 719px) {
  .p-new_product__category__list {
    margin-top: 40px;
    align-items: flex-start;
    justify-content: space-between;
  }
}

@media screen and (max-width: 719px) {
  .p-new_product__category__list__item {
    width: 48.5%;
    padding: 8px 0;
  }
}

/*
商品カード

*/

/*
商品カードホバー時の透過を無効化
指示内容：商品全体が透明度下げるのやめた　追加と削除わかりづらい
*/
.c-product_item:hover {
  opacity: 1;
}

.c-product_item__inner__eyecatch__img {
  background-size: cover !important;
  aspect-ratio: 281 / 211;
  padding-top: unset;
  border-radius: 10px;
}

/* -----------------------------------
商品数のフィールド
使用箇所：トップ＿メニューラインナップ
---------------------- ------------*/

.custom-section_new_product .c-product_info__form__quantity__wrap {
  min-width: 92px;
}
@media screen and (max-width: 1050px) {
  .custom-section_new_product .c-product_info__form__quantity__wrap {
    max-width: 100%;
    width: 100%;
  }
}

.custom-section_new_product .c-order_quantity__input {
  padding-inline: 20px;
  height: 30px;
  border-radius: 4px;
}

/*--------------------------------
スライドショーセクション
--------------------------------*/
.splide__arrows--hidden .splide__arrows.splide__arrows--ltr {
  display: none;
}

/*---------- カスタムセクション↓ ----------*/

/* メインビジュアル */

.custom-section_slider .p-kv_slider__track__list__item__inner {
  padding-top: 0;
  background-position: center;
  background-size: cover;
  height: 100%;
}
@media screen and (max-width: 1065px) {
  .custom-section_slider .p-kv_slider__track__list__item__inner {
    background-position: right;
    background-size: cover;
  }
}
@media screen and (max-width: 719px) {
  .custom-section_slider .p-kv_slider__track__list__item__inner {
    height: 100%;
    aspect-ratio: 390 / 596;
    background-position: center;
    background-size: cover;
  }
}

.custom-section_slider .p-kv_slider__track__list__item__inner:before {
  background: unset;
}

@media screen and (min-width: 720px) {
  .custom-section_slider .p-kv_slider__track {
    /* display: grid;
    grid-template: "content slider" 1fr / 32.81% 67.19%; */
    min-height: 57vw;
  }
}

.custom-section_slider .p-kv_slider__track__list {
  /* grid-area: slider; */
  height: unset;
}
@media screen and (min-width: 720px) {
  .custom-section_slider .p-kv_slider__track__list {
    min-height: 57vw;
  }
}

.custom-section_slider .p-kv_slider__content {
  /* grid-area: content; */
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 100%;
  max-width: 350px;
}

.custom-section_slider .p-kv_slider__content__inner {
  position: relative;
  padding: 0;
}
@media screen and (min-width: 720px) {
  .custom-section_slider .p-kv_slider__content__inner {
    /* display: grid;
    align-items: end; */
    padding: unset;
    /* grid-template-rows: 2fr; */
    height: 100%;
  }
}

.custom-section_slider .p-kv_slider__content__heading {
  position: absolute;
  top: -72px;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 720px) {
  .custom-section_slider .p-kv_slider__content__heading {
    top: 56px;
    left: 9%;
  }
}
.custom-section_slider .p-kv_slider__content__heading__title {
  display: inline-block;
  margin-bottom: 8px;
  padding: 6px;
  background: #ffffff;
  white-space: nowrap;
  width: fit-content;
}
@media screen and (min-width: 720px) {
  .custom-section_slider .p-kv_slider__content__heading__title {
    margin-bottom: 20px;
    padding: 10px 0 10px 10px;
    font-size: 40px !important;
  }
}
.custom-section_slider .p-kv_slider__content__heading__subtitle {
  display: inline-block;
  padding: 10px;
  background: #ffffff;
  white-space: nowrap;
  width: fit-content;
}
@media screen and (min-width: 720px) {
  .custom-section_slider .p-kv_slider__content__heading__subtitle {
    font-size: 22px !important;
  }
}

.custom-section_slider .p-kv_slider__content__text {
  margin-top: 8px;
  line-height: 2;
}
@media screen and (min-width: 720px) {
  .custom-section_slider .p-kv_slider__content__text {
    margin-top: 20px;
  }
}

.custom-section_slider .p-kv_slider__content__label {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  text-align: center;
}
@media screen and (max-width: 720px) {
  .custom-section_slider .p-kv_slider__content__label {
    margin-top: 20px;
  }
}

@media screen and (min-width: 720px) {
  .custom-section_slider .p-kv_slider__content__text {
    margin-top: 20px;
    font-size: 16px !important;
  }
}
.custom-section_slider .p-kv_slider__content__label__item {
  padding: 20px 12px;
  letter-spacing: 0;
  border-radius: 10px;
  border-width: 1px;
  border-style: solid;
}
@media screen and (min-width: 720px) {
  .custom-section_slider .p-kv_slider__content__label__item {
    padding: 20px 6px;
  }
}

.custom-section_slider .p-kv_slider__content__catchphrase__wrapper {
  margin-top: unset;
  text-align: center;
  font-size: 16px !important;
}
@media screen and (min-width: 720px) {
  .custom-section_slider .p-kv_slider__content__catchphrase__wrapper {
    /* margin-top: 76px; */
  }
}
.custom-section_slider .p-kv_slider__content__catchphrase {
  position: relative;
  display: inline-block;
}
.custom-section_slider .p-kv_slider__content__catchphrase:before,
.custom-section_slider .p-kv_slider__content__catchphrase:after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  width: 1px;
  height: 24px;
  border-left: 3px dotted #ffffff;
}
.custom-section_slider .p-kv_slider__content__catchphrase:before {
  transform: rotate(325deg) translateY(-50%);
  left: -10px;
}
.custom-section_slider .p-kv_slider__content__catchphrase::after {
  transform: rotate(30deg) translateY(-50%);
  right: -10px;
}

.custom-section_slider .p-kv_slider__content__btn {
  margin: 12px auto 0;
  max-width: 350px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  font-size: 16px !important;
}
@media screen and (min-width: 720px) {
  .custom-section_slider .p-kv_slider__content__btn {
    margin-top: 15px;
  }
}

/*----------- カスタムレイアウト 定期便 3つの特徴 -----------*/

.features-section_slider .p-kv_slider {
  padding-inline: 36px;
}
@media screen and (max-width: 719px) {
  .features-section_slider .p-kv_slider {
    padding-inline: 20px;
  }
}

.features-section_slider .splide__track {
  margin-inline: auto;
  max-width: 1280px;
  overflow: visible;
  grid-template:
    "heading" auto
    "track" auto
    "content" auto / 1fr;
}

@media screen and (max-width: 719px) {
  .features-section_slider .splide__track {
    padding-inline: 0;
  }
}

@media screen and (min-width: 720px) {
  .features-section_slider .splide__track {
    grid-template:
      "heading heading" auto
      "track content" auto / 1fr 1fr;
  }
}

.features-section_slider .splide__track--fade > .splide__list > .splide__slide {
  max-width: 42%;
}
@media screen and (max-width: 719px) {
  .features-section_slider
    .splide__track--fade
    > .splide__list
    > .splide__slide {
    max-width: 51.43%;
  }
}

.features-section_slider .p-kv_slider__track__list {
  grid-area: track;
  position: relative;
  margin-top: 50px !important;
  width: 100%;
}
@media screen and (max-width: 719px) {
  .features-section_slider .p-kv_slider__track__list {
    margin-top: 40px !important;
    /* display: grid; */
    grid-template:
      "track content" auto
      "description description" auto;
    /* gap: 20px; */
    padding-bottom: 40% !important;
  }
}

.features-section_slider .p-kv_slider__track__list__item {
  max-width: calc(1280px - 36px * 2);
  width: 100%;
  overflow: hidden;
}

.features-section_slider .p-kv_slider__content__item {
  border-bottom: 1px solid var(--border-color-gray);
  padding-block: 40px;
  display: block;
  width: 100%;
}
@media screen and (max-width: 719px) {
  .features-section_slider .p-kv_slider__content__item {
    display: none;
    padding-top: 28%;
    padding-bottom: unset;
    border-bottom: unset;
  }
  .features-section_slider .p-kv_slider__content__item.is-active {
    display: block;
  }
}
.features-section_slider .p-kv_slider__content__item:first-child {
  border-top: 1px solid var(--border-color-gray);
}
@media screen and (max-width: 719px) {
  .features-section_slider .p-kv_slider__content__item:first-child {
    border-top: unset;
  }
}

.features-section_slider .p-kv_slider__track__list__item__inner {
  max-width: 487px;
  padding-top: 0;
  aspect-ratio: 1;
  border-radius: 10px;
  transform: scale(1);
}

.features-section_slider .p-kv_slider__track__list__item__inner::before {
  background: unset;
}

.features-section_slider .p-features__item__image-wrapper {
  display: none;
}

.features-section_slider .p-features__item__image-wrapper.is-active {
  display: block;
}

.features-section_slider .p-features__item__image {
  grid-area: image;
  border-radius: 4px;
}

.features-section_slider .p-features__item__content {
  grid-area: content;
  border-bottom: 1px solid var(--border-color-gray);
  padding-block: 40px;
}

.features-section_slider .p-features__item__content-wrapper {
  display: block;
}

.features-section_slider .p-kv_slider__content__inner {
  grid-area: content;
  position: absolute;
  top: 0;
  right: 0;
  left: unset;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 54%;
}
@media screen and (max-width: 719px) {
  .features-section_slider .p-kv_slider__content__inner {
    display: block;
    width: 45%;
  }
}

.features-section_slider .p-kv_slider__content__title__wrapper {
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
  gap: 30px;
}
@media screen and (max-width: 719px) {
  .features-section_slider .p-kv_slider__content__title__wrapper {
    align-items: flex-start;
    gap: 4px;
    flex-direction: column;
  }
}

.features-section_slider .p-kv_slider__content__index,
.features-section_slider .p-kv_slider__content__title {
  color: #a0a0a0 !important;
  transition: color 0.3s ease;
}
/* スライドがアクティブでない場合のコンテンツスタイル */
.features-section_slider
  .p-kv_slider__content__item.is-active
  .p-kv_slider__content__index {
  color: var(--main-color) !important;
}
.features-section_slider
  .p-kv_slider__content__item.is-active
  .p-kv_slider__content__title {
  color: #000000 !important;
}

.features-section_slider .p-kv_slider__content__text {
  grid-area: description;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease;
  opacity: 0;
}
.features-section_slider .p-kv_slider__content__text.is-active {
  max-height: 200px; /* 十分な高さを設定 */
  margin-top: 30px;
  opacity: 1;
}
@media screen and (max-width: 719px) {
  .features-section_slider .p-kv_slider__content__text {
    display: none;
    position: absolute;
    top: 50%;
    width: 100vw;
    max-width: calc(100vw - 40px);
    left: 0;
    opacity: 1;
    max-height: unset;
  }
  .features-section_slider .p-kv_slider__content__text.is-active {
    display: block;
  }
}

@media screen and (min-width: 720px) {
  .features-section_slider .p-kv_slider__content__text__wrapper--sp {
    display: none;
  }
  .features-section_slider .p-kv_slider__content__text--sp {
    display: none;
  }
}
@media screen and (max-width: 719px) {
  .features-section_slider .p-kv_slider__content__text--pc {
    display: none !important;
  }
}

/* ナビゲーションを使用して、PC時にスライドを切り替えられるようにする */
.features-section_slider .p-kv_slider__nav {
  display: none;
}
@media screen and (min-width: 720px) {
  .features-section_slider .p-kv_slider__nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 1200px;
    width: 50%;
    position: absolute;
    left: unset;
    right: 50px;
    top: 116px;
    padding-bottom: 0;
    transform: unset;
  }

  .features-section_slider .p-kv_slider__nav__pagination {
    display: flex;
    width: 100%;
    align-items: center;
    flex-direction: column;
    opacity: 0.3;
  }

  .features-section_slider .p-kv_slider__nav__pagination__dot {
    display: flex;
    align-items: center;
    width: 100%;
    margin-right: unset;
  }
  .features-section_slider .p-kv_slider__nav__pagination__dot:not(:last-child) {
    margin-right: unset;
  }

  .features-section_slider .p-kv_slider__nav__pagination__dot button {
    width: 100%;
    height: auto;
    opacity: 0;
    padding-block: 88px;
  }

  .features-section_slider
    .p-kv_slider__nav__pagination__dot.is-current
    button {
    opacity: 0;
  }
}

/*-----------------------
header
--------------------------------*/
@media screen and (min-width: 720px) {
  .l-header__inner--wrapper {
    display: flex;
  }
}

.l-header__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 720px) {
  .l-header__inner {
    padding-inline: 36px;
  }
}
@media screen and (min-width: 1200px) {
  .l-header__inner {
    padding-right: 0;
  }
}

.logo--left .logo__block.l-header__inner__block {
  padding-left: 0;
}

.l-header_menu__list {
  display: none;
}
@media screen and (min-width: 1200px) {
  .l-header_menu__list {
    margin-right: 20px;
    display: flex;
    gap: 20px;
  }
}

/* 子カテゴリ */
.l-header_menu__list__item__inner__child {
  display: block;
}
@media screen and (min-width: 1200px) {
  .l-header_menu__list__item__inner__child {
    display: none;
  }
}

.l-header__inner__block {
  align-items: center;
  height: 100%;
  gap: 20px;
}
@media screen and (min-width: 1200px) {
  .l-header__inner__block {
    gap: 0;
  }
}

.l-header__inner__block__item {
  width: auto;
  height: 100%;
  border-left: none;
}
@media screen and (min-width: 1200px) {
  .l-header__inner__block__item {
    width: 70px;
    height: 100%;
    border-left: 1px solid var(--main-color-black);
  }
}

.l-header__inner__block__item:not(:last-child) {
  margin-right: 0;
}

.l-header__inner .l-header__inner__block__item--search {
  margin-right: 20px;
}
@media screen and (min-width: 1200px) {
  .l-header__inner .l-header__inner__block__item--search {
    margin-right: 0;
  }
}

.l-header__inner__block__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.u-icon--search:before {
  content: "";
  background-image: url("./icons/search.svg");
}

.u-icon--cart:before {
  content: "";
  background-image: url("../assets/icons/cart.svg");
}
@media screen and (min-width: 720px) {
  .l-header__inner__block__item .count {
    top: 15px;
    left: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .l-header__inner__block__item .count {
    top: 10px;
    left: 40px;
  }
}

.u-icon--account:before {
  content: "";
  background-image: url("../assets/icons/account.svg");
}

.l-header__icon__text {
  display: none;
}
@media screen and (min-width: 1200px) {
  .l-header__icon__text {
    display: block;
    font-size: 10px;
  }
}

@media screen and (min-width: 1200px) {
  .l-header__inner__block__item--menu {
    display: none;
  }
}

.l-header__inner__block__item--wrapper {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-width: 318px;
}

@media screen and (max-width: 719px) {
  .p-header-action-link__inner {
    display: flex;
    gap: 14px;
  }
}

.p-header-action-link {
  display: grid;
  place-items: center;
  grid-template-columns: 2fr 1fr;
  height: 100%;
}
@media screen and (max-width: 719px) {
  .p-header-action-link {
    grid-template-columns: unset;
    min-width: 312px;
  }
}

.p-header-action-link--tel {
  padding: 4px 0;
  background-color: var(--main-color-black);
  color: #ffffff;
}
@media screen and (min-width: 720px) {
  .p-header-action-link--tel {
    padding: 15px 0;
  }
}

.p-header__tel__icon {
  max-width: 12px;
}

.p-header-action-link--trial {
  padding: 11.5px 0;
  background-color: var(--main-color-red);
  color: #ffffff;
  font-size: 14px;
}
@media screen and (min-width: 720px) {
  .p-header-action-link--trial {
    padding: 25px 0;
  }
}

.p-header-action-link__link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.p-header__tel__number {
  display: flex;
  align-items: center;
  font-size: 16px;
  gap: 5px;
}
@media screen and (min-width: 720px) {
  .p-header__tel__number {
    font-size: 16px;
  }
}

.p-header__tel__text {
  font-size: 11px;
}
@media screen and (min-width: 720px) {
  .p-header__tel__text {
    font-size: 11px;
  }
}

/* search menu */
.p-search_menu {
  top: 115px;
}
@media screen and (min-width: 720px) {
  .p-search_menu {
    top: 71px;
  }
}

.p-search_menu__container {
  height: unset;
  width: 100%;
}

.p-search_menu__container__inner {
  padding-bottom: 0;
}

.p-search_menu__container__inner__search {
  padding: 10px 20px;
  border: none;
}

.p-search_menu__container__inner__search__part {
  padding: 0;
  margin-top: 0;
}

.p-search_menu__container__inner__search__bar {
  position: relative;
  width: 90.86%;
}

.p-search_menu__container__inner__search__part__label {
  display: none;
}

.p-search_menu__container__inner__search__part__content {
  margin-top: 0;
}

.p-search_menu__container__inner__search__part--flex {
  margin: unset;
}

.p-search_menu .input_wrap input {
  background: #f0f0f0 !important;
  border: none;
  border-radius: 20px;
}

.p-search_menu__container__searchbtn {
  position: static;
  height: unset;
}

.p-search_menu__container__searchbtn
  .p-search_menu__container__searchbtn__button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  display: inline-block;
  width: unset;
  height: unset;
  background-color: unset;
}

.p-search_menu__container__close {
  top: 50%;
  transform: translateY(-50%);
}

/* global nav custom */
.c-gmenu__container {
  width: 100%;
}

.c-gmenu__container__inner__list {
  border-top: unset;
}

.c-gmenu__container__inner__list__item--login {
  margin-bottom: 30px;
  border-bottom: unset;
}

.c-gmenu__container__inner__list__item__child {
  padding: 0;
}

.c-gmenu__container__inner__list__item__child__item:not(:last-child) {
  margin-bottom: 12px;
}

.c-gmenu__container__inner__list__item__btn {
  margin-inline: auto;
  height: 50px;
  max-width: 350px;
}

.c-gmenu__container__inner__list__item__menu__item {
  border-top-width: 1px;
  border-top-style: solid;
}

.c-gmenu__container__inner__list__item__menu__item__inner {
  position: relative;
  padding-block: 30px;
  display: block;
}

.c-gmenu__container__inner__list__item__menu__item__inner .u-icon--plus,
.c-gmenu__container__inner__list__item__menu__item__inner .u-icon--minus {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.4s;
  font-size: 26px;
}

.js-accordion-item.is-open .u-icon--plus {
  opacity: 0;
  transform: translateY(-50%) scale(0);
}
.c-gmenu__container__inner__list__item__menu__item__inner .u-icon--plus:before {
  content: "\e911";
  color: var(--main-color);
}

.c-gmenu__container__inner__list__item__menu__item__inner .u-icon--minus {
  opacity: 0;
  transform: translateY(-50%) scale(0);
}
.js-accordion-item.is-open .u-icon--minus {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.c-gmenu__container__inner__list__item__menu__item__inner
  .u-icon--minus:before {
  content: "\e910";
  color: var(--main-color);
}

.c-gmenu__container__inner__list__item__menu__item__child {
  margin-left: 60px;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s ease-in-out;
  max-height: 0;
  padding-bottom: 0;
}
.js-accordion-item.is-open
  + .c-gmenu__container__inner__list__item__menu__item__child {
  max-height: 100vh;
  padding-bottom: 40px;
}

.c-gmenu__container__inner__list__item__menu__item__child__item {
  line-height: 1.2;
}

.c-gmenu__container__inner__list__item__menu__item__child__item:not(
    :first-child
  ) {
  margin-top: 12px;
}

/*--------------------------------
footer
--------------------------------*/

.l-footer {
  padding: 60px 20px 145px;
  position: relative;
}
@media screen and (min-width: 720px) {
  .l-footer {
    padding: 60px 36px 40px;
  }
}

.l-footer__info {
  order: 1;
}
@media screen and (min-width: 720px) {
  .l-footer__info {
    flex: 1 0 auto;
  }
}

.l-footer__info__store__logo {
  margin-bottom: 60px;
}
@media screen and (min-width: 720px) {
  .l-footer__info__store__logo {
    margin-bottom: 100px;
  }
}

.l-footer__info__store__sns {
  position: absolute;
  bottom: 60px;
  margin-bottom: 0;
  line-height: 1;
}
@media screen and (min-width: 720px) {
  .l-footer__info__store__sns {
    position: static;
    margin-bottom: 30px;
    line-height: 1;
  }
}

.l-footer__info__store__copyright {
  position: absolute;
  line-height: 1;
  bottom: 30px;
}

.l-footer__menu {
  order: 2;
}
@media screen and (max-width: 719px) {
  .l-footer__menu {
    display: flex;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 719px) {
  .c-footer_menu {
    padding: 0;
    width: 50%;
    border-bottom-style: none;
  }

  .c-footer_menu:not(:first-of-type):not(:nth-of-type(2)) {
    margin-top: 50px;
    margin-bottom: 0;
  }
}

.c-footer_menu__title {
  margin-bottom: 40px;
  font-size: 14px;
}
@media screen and (min-width: 720px) {
  .c-footer_menu__title {
    font-size: 15px;
  }
}

.c-footer_menu__list__item {
  line-height: 1;
}
.c-footer_menu__list__item:not(:last-child) {
  margin-bottom: 20px;
}

/*--------------------------------
バナーセクション
--------------------------------*/
/* デフォルトレイアウト バナーレイアウト1 */
.p-banner_section {
  gap: 43px;
}
@media screen and (min-width: 720px) {
  .p-banner_section {
    width: 100%;
    max-width: 1200px;
    padding-right: 36px;
    padding-left: 36px;
    gap: 57px;
  }
}

@media screen and (max-width: 719px) {
  .p-banner_section .p-banner {
    width: 89.75%;
    margin-inline: auto;
  }
}
.p-banner_section .p-banner__image {
  border-radius: 10px;
  overflow: hidden;
}

.p-banner_section__content {
  align-items: start;
  gap: 40px;
}
@media screen and (min-width: 720px) {
  .p-banner_section__content {
    gap: 28px;
  }
}

.p-banner__title {
  margin-top: 22px;
}

.p-banner__description {
  margin-top: 16px;
}
@media screen and (min-width: 720px) {
  .p-banner__description {
    margin-top: 18px;
  }
}

/*----------- カスタムレイアウト お客様の声 -----------*/

@media screen and (max-width: 719px) {
  .custom-section_banner-customer_review .p-customer_review__content {
    gap: 20px;
  }
}

.custom-section_banner-customer_review .p-customer_review__item {
  grid-template:
    "image content" auto
    "description description" auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.custom-section_banner-customer_review .p-customer_review__item__image {
  grid-area: image;
  max-width: 80px;
}

.custom-section_banner-customer_review .p-customer_review__item__image__img {
  border-radius: 100px;
}

.custom-section_banner-customer_review .p-customer_review__item__content {
  grid-area: content;
}

.custom-section_banner-customer_review .p-customer_review__item__stars {
  display: flex;
  align-items: center;
  margin: 8px 0;
  color: #facf15;
  letter-spacing: 0;
  line-height: 1;
}

.custom-section_banner-customer_review .star {
  font-size: 16px;
  line-height: 1;
}
@media screen and (min-width: 720px) {
  .custom-section_banner-customer_review .star {
    font-size: 18px;
  }
}

.custom-section_banner-customer_review .p-customer_review__item__description {
  grid-area: description;
  margin-top: 10px;
  letter-spacing: 0;
}
@media screen and (max-width: 719px) {
  .custom-section_banner-customer_review .p-customer_review__item__description {
    margin-top: 16px;
  }
}

/*----------- カスタムレイアウト 定期便 3つの特徴 -----------*/
.custom-section_banner-features .p-features__content {
  margin-top: 50px;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.custom-section_banner-features .p-features__item {
  max-width: 487px;
  position: relative;
}

.custom-section_banner-features .p-features__item__image-wrapper {
  display: none;
}

.custom-section_banner-features .p-features__item__image-wrapper.is-active {
  display: block;
}

.custom-section_banner-features .p-features__item__image {
  grid-area: image;
  border-radius: 4px;
}

.custom-section_banner-features .p-features__item__content {
  grid-area: content;
  border-bottom: 1px solid var(--border-color-gray);
  padding-block: 40px;
}

.custom-section_banner-features .p-features__item__content-wrapper {
  display: block;
}

.custom-section_banner-features .p-features__item__content:first-child {
  border-top: 1px solid var(--border-color-gray);
}

.custom-section_banner-features .p-features__item__title {
  display: flex;
  align-items: center;
  margin-top: 0;
}
.custom-section_banner-features .p-features__item__title {
  transition: color 0.3s ease;
}

.custom-section_banner-features
  .p-features__item__title::not(.is-active)
  .p-features__item__title__text,
.custom-section_banner-features
  .p-features__item__title::not(.is-active)
  .p-features__item__title__number {
  color: #a0a0a0 !important;
}

.custom-section_banner-features .p-features__item__title__number {
  margin-right: 30px;
  color: var(--main-color) !important;
  transition: color 0.3s ease;
}

.custom-section_banner-features .p-features__item__description {
  grid-area: description;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease;
  opacity: 0;
}

.custom-section_banner-features .p-features__item__description.is-active {
  max-height: 200px; /* 十分な高さを設定 */
  margin-top: 30px;
  opacity: 1;
}

.custom-section_banner-features .p-features__item__image-wrapper {
  opacity: 0;
  transition: opacity 0.5s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.custom-section_banner-features .p-features__item__image-wrapper.is-active {
  opacity: 1;
  position: relative;
}

/* ---------------------　告知バー　--------------- */
.custom-section_banner-announcement_bar {
  position: fixed;
  top: 71px;
  width: 100%;
  z-index: 100;
}

@media screen and (max-width: 719px) {
  .custom-section_banner-announcement_bar {
    top: 114px;
  }
}

.custom-section_banner-announcement_bar .p-announcement_bar {
  padding-block: 16px;
}

.custom-section_banner-announcement_bar .p-announcement_bar__text {
  text-align: center;
}

/*--------------------------------
ニュースセクション
--------------------------------*/
/* デフォルトレイアウト ニュースレイアウト1 */
.c-news_item:first-child {
  border-top: none;
}

.c-news_item__inner {
  flex-direction: column;
  padding: 20px 0;
}
@media screen and (min-width: 720px) {
  .c-news_item__inner {
    padding: 30px 0;
  }
}

.c-news_item__inner__header {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 720px) {
  .c-news_item__inner__header {
    gap: 12px;
  }
}

.c-news_item__inner__category {
  padding: 4px 12px;
  font-size: 10px;
  line-height: 1;
  border: 1px solid var(--main-color-black);
  border-radius: 4px;
}
@media screen and (min-width: 720px) {
  .c-news_item__inner__category {
    font-size: 12px;
  }
}

.c-news_item__inner__title {
  margin-top: 13px;
  padding-left: 0;
}
@media screen and (min-width: 720px) {
  .c-news_item__inner__title {
    margin-top: 20px;
  }
}

.p-news__inner__more {
  margin-top: 60px;
}
@media screen and (min-width: 720px) {
  .p-news__inner__more {
    margin-top: 50px;
  }
}

/* カスタムレイアウト スクロールレイアウト */
.custom-section_information .l-container__row {
  padding-right: 15px;
  padding-left: 15px;
}
@media screen and (min-width: 720px) {
  .custom-section_information .l-container__row {
    padding-right: 40px;
    padding-left: 40px;
  }
}

.custom-section_information .p-scroll {
  margin-right: auto;
  margin-left: auto;
  max-width: 1208px;
}

.custom-section_information .p-scroll__inner {
  margin-right: auto;
  margin-left: auto;
  padding: 60px 28px 80px;
  border-radius: 10px;
}
@media screen and (min-width: 720px) {
  .custom-section_information .p-scroll__inner {
    max-width: 1208px;
    padding: 80px 54px 100px;
  }
}
.custom-section_information .p-scroll__inner::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: rotate(90deg) translate(-50%, -50%);
  transform-origin: center center;
  z-index: -1;
}

.custom-section_information .p-scroll__inner__title__en {
  display: block;
}

.custom-section_information .p-scroll__inner__title__jp {
  margin-top: 8px;
}
@media screen and (min-width: 720px) {
  .custom-section_information .p-scroll__inner__title__jp {
    margin-top: 12px;
  }
}

.custom-section_information .p-scroll__inner__list {
  max-height: 314px;
  overflow-y: scroll;
  margin: 40px auto 0;

  /* Webkit系ブラウザ（Safari、Chrome等）用のスクロールバーカスタマイズ */
  scrollbar-width: thin; /* Firefox用 */
  scrollbar-color: #292929 #ffffff; /* Firefox用 */
}

/* Webkit系ブラウザ用のスクロールバーカスタマイズ */
.custom-section_information .p-scroll__inner__list::-webkit-scrollbar {
  width: 10px;
}

.custom-section_information .p-scroll__inner__list::-webkit-scrollbar-track {
  background: #ffffff;
  border-radius: 10px;
}

.custom-section_information .p-scroll__inner__list::-webkit-scrollbar-thumb {
  background: #292929;
  border-radius: 10px;
}

.custom-section_information
  .p-scroll__inner__list::-webkit-scrollbar-thumb:hover {
  background: #292929;
}

@media screen and (min-width: 720px) {
  .custom-section_information .p-scroll__inner__list {
    margin-top: 50px;
    max-width: 1002px;
  }
}

.custom-section_information .c-scroll_item {
  padding: 12px;
  background: #fff;
  border-radius: 10px;
}
@media screen and (min-width: 720px) {
  .custom-section_information .c-scroll_item {
    padding: 20px;
    text-align: center;
  }
}
.custom-section_information .c-scroll_item:not(:last-child) {
  margin-bottom: 12px;
}
@media screen and (min-width: 720px) {
  .custom-section_information .c-scroll_item:not(:last-child) {
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 720px) {
  .custom-section_information .c-scroll_item__inner__title {
    line-height: 2;
  }
}

/* カスタムレイアウト アコーディオン */
.custom-section_information .p-accordion__inner {
  max-width: 1002px;
  margin-inline: auto;
}

.custom-section_information .p-accordion__inner__title__en {
  display: block;
}

.custom-section_information .p-accordion__inner__list__category {
  margin-top: 50px;
}
@media screen and (max-width: 719px) {
  .custom-section_information .p-accordion__inner__list__category {
    margin-top: 40px;
  }
}

.custom-section_information .p-accordion__inner__list__content {
  margin-top: 30px;
}
@media screen and (max-width: 719px) {
  .custom-section_information .p-accordion__inner__list__content {
    margin-top: 20px;
  }
}

@media screen and (max-width: 719px) {
  .custom-section_information .p-faq__inner__list__item__question {
    padding: 20px 30px 20px 0;
  }

  .p-faq__inner__list__item__question .u-icon--plus,
  .p-faq__inner__list__item__question .u-icon--minus {
    right: 0;
  }
}

/* CSSでトランジションを定義 */
.custom-section_information .p-faq__inner__list__item__answer {
  overflow: hidden;
  display: block;
  transition: max-height 0.3s, padding 0.3s ease-in-out;
  max-height: 0;
  padding: 0px 44px 0 40px;
}

.custom-section_information
  .p-faq__inner__list__item__question.is-open
  + .p-faq__inner__list__item__answer {
  max-height: 100vh;
  padding: 0px 44px 20px 40px;
}

.custom-section_information .p-faq__inner__list__item__answer pre {
  display: none;
}
.custom-section_information
  .p-faq__inner__list__item__question.is-open
  + .p-faq__inner__list__item__answer
  pre {
  display: block;
}

/*--------------------------------
コンセプト
--------------------------------*/

.p-concept__medium {
  margin-bottom: 30px;
  grid-area: medium;
}

/* デフォルトレイアウト コンセプトレイアウト2 */
.p-concept--layout2 .p-concept__image {
  height: 35vw;
}

/* デフォルトレイアウト コンセプトレイアウト3 */
.default-section_concept .p-concept--layout3 {
  display: block;
  width: 78.5vw;
}
@media screen and (max-width: 719px) {
  .default-section_concept .p-concept--layout3 {
    width: 89.65vw;
    display: grid;
    grid-template: "title" auto "text" auto;
  }
}

.default-section_concept .p-concept--layout3 .p-concept__inner {
  display: block;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
}
@media screen and (min-width: 720px) {
  .default-section_concept .p-concept--layout3 .p-concept__inner {
    display: grid;
    grid-template-areas:
      "title text"
      "button button";
    max-width: calc(100vw - 138px * 2);
  }
}

.default-section_concept .p-concept--layout3 .p-concept__image {
  margin-bottom: 40px;
  margin-left: auto;
  width: 80%;
  border-radius: 10px;
}
@media screen and (min-width: 720px) {
  .default-section_concept .p-concept--layout3 .p-concept__image {
    margin-bottom: 0;
    width: 100%;
  }
}

.default-section_concept .p-concept--layout3 .p-concept__image img {
  border-radius: 10px;
}

.default-section_concept .p-concept--layout3 .p-concept__title {
  margin-bottom: 40px;
  padding: 0;
  font-family: "Yu Mincho Pr6N", serif;
}
@media screen and (min-width: 720px) {
  .default-section_concept .p-concept--layout3 .p-concept__title {
    margin-bottom: 100px;
  }
}

.default-section_concept .p-concept--layout3 .p-concept__text {
  margin-bottom: 60px;
  margin-top: 0;
  line-height: 2.625;
  text-decoration: underline dotted var(--border-color-gray);
  text-underline-offset: 12px;
}
@media screen and (min-width: 720px) {
  .default-section_concept .p-concept--layout3 .p-concept__text {
    margin-bottom: 80px;
    font-size: 16px !important;
  }
}

.default-section_concept .p-concept--layout3 .p-concept__button {
  grid-area: button;
  margin-left: auto;
  min-width: 300px;
}

@media screen and (max-width: 719px) {
  .default-section_concept .p-concept--layout3 .p-concept__button a {
    margin-right: auto;
    margin-left: auto;
  }
}

/*カスタムレイアウト1 コンセプトレイアウト4 */
.custom-section_concept_1 .p-concept--layout4 {
  grid-template: "image inner" auto / 50% 50%;
  width: 100vw;
}
@media screen and (max-width: 719px) {
  .custom-section_concept_1 .p-concept--layout4 {
    display: block;
  }
}

.custom-section_concept_1 .p-concept--layout4 .p-concept__inner {
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 720px) {
  .custom-section_concept_1 .p-concept--layout4 .p-concept__inner {
    padding: 63px 40px 40px;
  }
}

@media screen and (max-width: 719px) {
  .custom-section_concept_1 .p-concept--layout4 .p-concept__subtitle {
    text-align: center;
  }
}

.custom-section_concept_1 .p-concept--layout4 .p-concept__title {
  padding: 3px 0 30px;
}
@media screen and (max-width: 719px) {
  .custom-section_concept_1 .p-concept--layout4 .p-concept__title {
    padding: 0 0 40px;
    text-align: center;
  }
}

.custom-section_concept_1 .p-concept--layout4 .p-concept__text {
  margin-top: 0;
  padding-top: 0;
}

.custom-section_concept_1 .p-concept--layout4 .p-concept__button {
  margin-top: 60px;
}
@media screen and (min-width: 720px) {
  .custom-section_concept_1 .p-concept--layout4 .p-concept__button {
    margin-top: auto;
  }
}

.custom-section_concept_1 .p-concept--layout4 .u-btn--more {
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 720px) {
  .custom-section_concept_1 .p-concept--layout4 .u-btn--more {
    margin-right: unset;
  }
}

/* カスタムレイアウト2 コンセプトレイアウト3 */
.custom-section_concept_2 .p-concept--layout3 {
  grid-template: "inner image" auto / 50% 50%;
  width: 100%;
  max-width: calc(100vw - 36px * 2);
}
@media screen and (max-width: 719px) {
  .custom-section_concept_2 .p-concept--layout3 {
    grid-template: "title" auto "text" auto "image" auto / 100%;
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
  }
}

.custom-section_concept_2 .p-concept--layout3 .p-concept__image-wrapper {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 719px) {
  .custom-section_concept_2 .p-concept--layout3 .p-concept__image-wrapper {
    margin-top: 27px;
    gap: 14px;
  }
}

.custom-section_concept_2 .p-concept--layout3 .p-concept__inner {
  width: 100%;
  padding: 0;
}

.custom-section_concept_2 .p-concept--layout3 .p-concept__image__item {
  display: grid;
  place-content: center;
  place-items: center;
  background-color: #fff;
  border: 1px solid var(--main-color);
  border-radius: 10px;
}
@media screen and (max-width: 719px) {
  .custom-section_concept_2 .p-concept--layout3 .p-concept__image__item {
    min-height: 133px;
  }
}

.custom-section_concept_2
  .p-concept--layout3
  .p-concept__image__item__img-wrapper {
  max-width: 60px;
}

@media screen and (max-width: 719px) {
  .custom-section_concept_2
    .p-concept--layout3
    .p-concept__image__item__img-wrapper
    img {
    max-height: 40px;
    width: fit-content;
    max-width: 50px;
  }
}

.custom-section_concept_2 .p-concept--layout3 .p-concept__image__item__text {
  margin-top: 20px;
  color: var(--main-color) !important;
  text-align: center;
}
@media screen and (max-width: 719px) {
  .custom-section_concept_2 .p-concept--layout3 .p-concept__image__item__text {
    margin-top: 10px;
  }
}

@media screen and (max-width: 719px) {
  .custom-section_concept_2 .p-concept--layout3 .p-concept__title {
    padding: 0;
  }
}

.custom-section_concept_2 .p-concept--layout3 .p-concept__text {
  margin-top: 60px;
}
@media screen and (max-width: 719px) {
  .custom-section_concept_2 .p-concept--layout3 .p-concept__text {
    margin-top: 40px;
    padding-top: 0;
  }
}

/* カスタムレイアウト2 コンセプトレイアウト4 オールマイティライスで使用*/
.custom-section_concept_2 .p-concept__header__note {
  margin-top: 12px;
}
@media screen and (max-width: 719px) {
  .custom-section_concept_2 .p-concept__header__note {
    margin-top: 4px;
    font-size: 11px;
  }
}

.custom-section_concept_2 .p-concept--layout4 {
  margin-top: 50px;
  grid-template: "image inner" auto "button button" auto / 1fr 1fr;
  gap: 80px 28px;
  width: 100%;
  max-width: var(--width-inner-pc);
}
@media screen and (max-width: 719px) {
  .custom-section_concept_2 .p-concept--layout4 {
    display: block;
    margin-top: 40px;
    max-width: var(--width-inner-sp);
  }
}

.custom-section_concept_2 .p-concept--layout4 .p-concept__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 719px) {
  .custom-section_concept_2 .p-concept--layout4 .p-concept__title {
    padding: 40px 0;
  }
}

.custom-section_concept_2 .p-concept--layout4 .p-concept__image {
  aspect-ratio: 590 / 393;
  grid-area: image;
  position: relative;
  border-radius: 10px;
}

.custom-section_concept_2 .p-concept--layout4 .p-concept__image__label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: grid;
  place-items: center;
  width: 100px;
  height: 100px;
  background-color: #fff;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 50%;
}
@media screen and (max-width: 719px) {
  .custom-section_concept_2 .p-concept--layout4 .p-concept__image__label {
    width: 80px;
    height: 80px;
    font-size: 13px;
  }
}

@media screen and (max-width: 719px) {
  .custom-section_concept_2 .p-concept--layout4 .p-concept__text {
    padding-top: 0;
    font-size: 13px;
  }
}

.custom-section_concept_2 .p-concept--layout4 .p-concept__note {
  margin-top: 20px;
  font-size: 11px;
}
@media screen and (min-width: 720px) {
  .custom-section_concept_2 .p-concept--layout4 .p-concept__note {
    margin-top: 30px;
  }
}

.custom-section_concept_2 .p-concept--layout4 .p-concept__button {
  grid-area: button;
}
@media screen and (max-width: 719px) {
  .custom-section_concept_2 .p-concept--layout4 .p-concept__button {
    margin-top: 60px;
  }
}

.custom-section_concept_2 .p-concept--layout4 .p-concept__button a {
  margin-inline: auto;
}

/* --------------------------------
商品カテゴリーセクション
-------------------------------- */
/* カスタムレイアウト カテゴリーラインアップ */
@media screen and (max-width: 719px) {
  .custom-section_category_panel .p-category_panel__container--grid {
    padding-inline: 0;
  }
}

.custom-section_category_panel .p-category_panel__content {
  margin-top: 50px;
  display: grid;
  gap: 28px;
}
@media screen and (max-width: 719px) {
  .custom-section_category_panel .p-category_panel__content {
    margin-top: 40px;
    gap: 14px;
  }
}

.custom-section_category_panel
  .p-category_panel__container--grid
  .p-category_panel__block:hover {
  opacity: 1;
}

@media screen and (min-width: 720px) {
  .custom-section_category_panel .p-category_panel__content--pc-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .custom-section_category_panel .p-category_panel__content--pc-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .custom-section_category_panel .p-category_panel__content--pc-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .custom-section_category_panel .p-category_panel__content--pc-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 719px) {
  .custom-section_category_panel .p-category_panel__content--sp-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .custom-section_category_panel .p-category_panel__content--sp-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .custom-section_category_panel .p-category_panel__content--sp-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .custom-section_category_panel .p-category_panel__content--sp-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.custom-section_category_panel .p-category_panel__block {
  margin: unset;
  gap: 28px;
  padding: 30px;
  width: 100%;
  border: 1px solid var(--border-color-gray);
  border-radius: 10px;
}
@media screen and (max-width: 719px) {
  .custom-section_category_panel .p-category_panel__block {
    padding: 10px 10px 20px;
    gap: 12px;
  }
}

.custom-section_category_panel .p-category_panel__image {
  aspect-ratio: 324 / 216;
  border-radius: 10px;
}
.custom-section_category_panel .p-category_panel__image::before {
  padding-top: unset;
}

.custom-section_category_panel .p-category_panel__image img {
  object-fit: cover;
}

.p-category_panel__container--grid .p-category_panel__category {
  text-align: left;
  font-size: 13px !important;
}
@media screen and (min-width: 720px) {
  .custom-section_category_panel .p-category_panel__category {
    font-size: 18px !important;
  }
}

/* --------------------------------
商品セクション
-------------------------------- */
/* カスタムレイアウト メニューラインアップ */
@media screen and (min-width: 720px) {
  .custom-section_new_product .p-new_product {
    padding-inline: 36px;
  }
}

@media screen and (min-width: 720px) {
  .custom-section_new_product
    .p-new_product
    .medium-up--one-4:not(:nth-child(4n + 1)) {
    margin-left: 28px;
  }
}

@media screen and (min-width: 720px) {
  .custom-section_new_product .p-new_product .medium-up--one-4 {
    width: calc((100% - (28px * 3)) / 4);
  }
}
@media screen and (max-width: 719px) {
  .custom-section_new_product
    .p-new_product
    .medium-up--one-4:not(.forced-single-row):nth-child(n + 3) {
    margin-top: 40px;
  }
}

.custom-section_new_product .p-new_product__slider__track__list {
  margin-top: 50px;
}
@media screen and (max-width: 719px) {
  .custom-section_new_product .p-new_product__slider__track__list {
    margin-top: 40px;
  }
}

.custom-section_new_product .c-product_item {
  height: 100%;
}

.custom-section_new_product .c-product_item__inner__content {
  min-height: 140px;
}
@media screen and (max-width: 719px) {
  .custom-section_new_product .c-product_item__inner__content {
    margin-top: 12px;
    min-height: 153px;
  }
}

.custom-section_new_product .c-product_item__inner__price__wrapper {
  margin-top: auto;
  line-height: 1.231;
}

.custom-section_new_product .c-product_item__inner__price--description {
  margin-block: 12px;
}
@media screen and (max-width: 719px) {
  .custom-section_new_product .c-product_item__inner__price__wrapper {
    margin-top: 8px;
  }
}

.custom-section_new_product .c-product_item__actions {
  position: static;
  margin-top: auto;
  /* align-items: center; */
  gap: 12px;
}
@media screen and (max-width: 1050px) {
  .custom-section_new_product .c-product_item__actions {
    flex-direction: column;
    gap: 6px;
  }
}

@media screen and (max-width: 1050px) {
  .custom-section_new_product .c-order_quantity {
    width: 100%;
  }
}

.custom-section_new_product .c-product_item__form--cart {
  display: inline-block;
  width: 100%;
  max-width: 177px;
}
@media screen and (max-width: 1050px) {
  .custom-section_new_product .c-product_item__form--cart {
    max-width: 100%;
  }
}

.custom-section_new_product .c-product_item__button--cart {
  margin-right: 0;
  padding: 4.8px 8px;
  width: 100%;
  height: auto;
  border-radius: 4px;
  background-color: var(--main-color-black);
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
}
@media screen and (max-width: 719px) {
  .custom-section_new_product .c-product_item__button--cart {
    max-width: 100%;
  }
}

.custom-section_new_product .p-new_product__more {
  margin-top: 80px;
}
@media screen and (max-width: 719px) {
  .custom-section_new_product .p-new_product__more {
    margin-top: 60px;
  }
}

/* --------------------------------
カスタムHTML
-------------------------------- */
/* 追従ボタン */
.p-follow_button {
  position: fixed;
  bottom: 53px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 100%;
}

.p-follow_button__text {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 70px;
  width: 100%;
  min-width: 180px;
  max-width: 350px;
  padding: 14px 18px;
  border: 2px solid #fff;
  border-radius: 50px;
  font-size: 14px !important;
  line-height: 1.4;
  box-shadow: var(--box-shadow);
}
@media screen and (min-width: 720px) {
  .p-follow_button__text {
    max-width: fit-content;
    min-height: 80px;
    min-width: 600px;
    padding: 25.4px 65px;
    font-size: 18px !important;
  }
}

.p-follow_button__text_badge {
  position: absolute;
  top: -40px;
  left: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  font-weight: bold;
  font-size: 12px;
  border-radius: 50%;
  line-height: 1.3;
  box-shadow: var(--box-shadow);
}
@media screen and (min-width: 720px) {
  .p-follow_button__text_badge {
    top: -38px;
    left: -38px;
    padding: 18.7px 18.5px;
    font-size: 14px;
  }
}

.p-follow_button__text_badge::after {
  content: "";
  position: absolute;
  bottom: 2px;
  right: 5px;
  width: 18px;
  height: 17px;
  background-color: inherit;
  clip-path: polygon(46% 0, 0 34%, 100% 100%);
}

/* jsでのテキスト切り替え */
.p-follow_button__text .js-follow-button__label-text,
.p-follow_button__text .js-follow-button__button-text {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  position: absolute;
  inset: 0;
  margin: auto;
  text-align: center;
  width: fit-content;
  height: fit-content;
}
.p-follow_button__text .js-follow-button__label-text.is-active,
.p-follow_button__text .js-follow-button__button-text.is-active {
  opacity: 1;
}

/* --------------------------------
メニュー一覧ページ


-------------------------------- */
.l-container__row:has(.custom-sets-page) {
  margin-top: -60px;
}
.p-page_content:has(.custom-sets-page) {
  padding-inline: 36px;
}
@media screen and (max-width: 719px) {
  .p-page_content:has(.custom-sets-page) {
    padding-inline: 0;
  }
}
.p-page_content__inner:has(.custom-sets-page) {
  max-width: calc(1280px + 36px * 2);
  margin-inline: auto;
}
.p-page_content__inner:has(.custom-sets-page) a {
  text-decoration: none;
}

.custom-sets-page .main-image {
  object-fit: cover;
  margin-inline: calc(50% - 50vw);
  width: 100vw;
  height: 100%;
}

.custom-sets-page .p-list_header__inner {
  flex-direction: column;
}

.custom-sets-page .p-sets-navigation {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 24px;
}
@media screen and (max-width: 719px) {
  .custom-sets-page .p-sets-navigation {
    flex-direction: column;
    gap: 8px;
  }
}

.custom-sets-page .p-sets-navigation__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px 24px 20px 30px;
  justify-content: space-between;
  border-radius: 10px;
}
@media screen and (max-width: 719px) {
  .custom-sets-page .p-sets-navigation__btn {
    padding: 15px 20px;
  }
}

.custom-sets-page .p-sets-page__choice-set {
  margin-inline: calc(50% - 50vw);
  width: 100vw;
  background-color: var(--bg-color-gold);
}

.custom-sets-page .p-set_list {
  margin-top: 40px;
  /* padding-inline: unset; */
}
@media screen and (min-width: 720px) {
  .custom-sets-page .p-set_list {
    margin-top: 50px;
  }
}

.custom-sets-page .p-set_list_concept {
  display: block;
}
@media screen and (min-width: 720px) {
  .custom-sets-page .p-set_list_concept {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: calc(1280px - 36px * 2 - 103px * 2);
    margin-inline: auto;
  }
}

.custom-sets-page .p-set_list_concept__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.custom-sets-page .p-set_list_concept__image {
  overflow: hidden;
  border-radius: 10px;
}

.custom-sets-page .p-set_list_concept__title {
  padding: 40px 0 0;
}
@media screen and (min-width: 720px) {
  .custom-sets-page .p-set_list_concept__title {
    padding: 0 0 30px;
    font-size: 30px !important;
  }
}

@media screen and (min-width: 720px) {
  .custom-sets-page .p-set_list_concept__text {
    font-size: 16px !important;
  }
}

.custom-sets-page .p-set_list_concept__note {
  margin-top: 14px;
  font-weight: bold;
}

.custom-sets-page .p-set_list_wrapper {
  margin-top: 40px;
  margin-inline: auto;
  max-width: 1200px;
  width: 100%;
}
@media screen and (min-width: 720px) {
  .custom-sets-page .p-set_list_wrapper {
    margin-top: 60px;
  }
}

.custom-sets-page .p-set_list__list {
  margin-top: 16px;
  padding-bottom: unset;
  gap: 20px;
}

.custom-sets-page .p-set_list__list .c-set_item {
  overflow: hidden;
  margin-top: unset;
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}
@media screen and (min-width: 720px) {
  .custom-sets-page .p-set_list__list .c-set_item {
    width: calc((100% - 56px) / 3);
  }
}

@media screen and (min-width: 720px) {
  .custom-sets-page .p-set_list__list .c-set_item:not(:nth-child(4n)) {
    margin-right: unset;
  }
  .custom-sets-page .p-set_list__list .c-set_item:not(:nth-child(-n + 4)) {
    margin-top: unset;
  }
}

.custom-sets-page .p-set_list__list .c-set_item--1 .title,
.custom-sets-page .p-set_list__list .c-set_item--1 .c-set_item__button__link {
  background-color: #ffbf00;
}
.custom-sets-page .p-set_list__list .c-set_item--2 .title,
.custom-sets-page .p-set_list__list .c-set_item--2 .c-set_item__button__link {
  background-color: var(--main-color);
}
.custom-sets-page .p-set_list__list .c-set_item--3 .title,
.custom-sets-page .p-set_list__list .c-set_item--3 .c-set_item__button__link {
  background-color: #6b6b6b;
}

.custom-sets-page .p-set_list__list .c-set_item__inner {
  margin-top: auto;
  padding: 16px 16px 20px;
  background-color: #fff;
}

.custom-sets-page .c-set_item .title {
  padding: 9px 10px 12px;
  text-align: center;
}

.custom-sets-page .c-set_item .c-set_item__price--wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}
/* .custom-sets-page .c-set_item .c-set_item__price--wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 1px;
  height: 100%;
  background-color: var(--border-color-gray);
} */

.custom-sets-page .c-set_item .price-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.custom-sets-page .c-set_item .price-label {
  font-size: 13px;
}

.custom-sets-page .c-set_item .price {
  margin-top: 0;
  display: flex;
  flex-direction: column;
}

.custom-sets-page .c-set_item .price-text--large {
  font-size: 24px;
}

.custom-sets-page .c-set_item .c-set_item__button {
  margin-top: 16px;
  position: static;
}

.custom-sets-page .c-set_item .c-set_item__button__link {
  margin-inline: auto;
  width: 100%;
  max-width: 310px;
  height: 36px;
}

.custom-sets-page .p-popular_set__list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 14px;
}
@media screen and (min-width: 720px) {
  .custom-sets-page .p-popular_set__list {
    margin-top: 50px;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 28px;
  }
}

.custom-sets-page .c-popular_set_item__image {
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 281 / 211;
}

.custom-sets-page .c-popular_set_item__image__img {
  height: 100%;
  object-fit: cover;
}

.custom-sets-page .c-popular_set_item .title {
  margin-top: 20px;
}

.custom-sets-page .c-popular_set_item__inner {
  margin-top: 12px;
}

.custom-sets-page .c-popular_set_item__price--wrapper .price-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* --------------------------------
  メニュー一覧ページ

※7/31現在：ページ管理＞メニュー一覧にも一部記載が残っている
  -------------------------------- */
.l-container__row:has(.custom-sets-page) {
  margin-top: -60px;
}
.p-page_content:has(.custom-sets-page) {
  padding-inline: 36px;
}
@media screen and (max-width: 719px) {
  .p-page_content:has(.custom-sets-page) {
    padding-inline: 0;
  }
}
.p-page_content__inner:has(.custom-sets-page) {
  max-width: calc(1280px + 36px * 2);
  margin-inline: auto;
}
.p-page_content__inner:has(.custom-sets-page) a {
  text-decoration: none;
}

.custom-sets-page .main-image {
  object-fit: cover;
  margin-inline: calc(50% - 50vw);
  aspect-ratio: 39 / 24;
  width: 100vw;
  height: 100%;
}

@media screen and (min-width: 720px) {
  .custom-sets-page .main-image {
    /*
      計算式：100dvh - 70px(ヘッダーの高さ) - 285px(KV直下からページ内リンクまでの高さ)
      背景：このページに遷移した際に、ページ内リンクを表示させたいため
      */
    max-height: calc(100dvh - 70px - 285px);
    aspect-ratio: 128 / 45;
  }
}

.custom-sets-page .main-image img {
  height: 100%;
  object-fit: cover;
}

.custom-sets-page .p-list_header__inner {
  flex-direction: column;
}

.custom-sets-page .p-sets-navigation {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 24px;
}
@media screen and (max-width: 719px) {
  .custom-sets-page .p-sets-navigation {
    flex-direction: column;
    gap: 8px;
  }
}

.custom-sets-page .p-sets-navigation__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px 24px 20px 30px;
  justify-content: space-between;
  border-radius: 10px;
}
@media screen and (max-width: 719px) {
  .custom-sets-page .p-sets-navigation__btn {
    padding: 15px 20px;
  }
}

.custom-sets-page .p-sets-page__choice-set {
  margin-inline: calc(50% - 50vw);
  width: 100vw;
  background-color: var(--bg-color-gold);
}

.custom-sets-page .p-set_list {
  margin-top: 40px;
  /* padding-inline: unset; */
}
@media screen and (min-width: 720px) {
  .custom-sets-page .p-set_list {
    margin-top: 50px;
  }
}

.custom-sets-page .p-set_list_concept {
  display: block;
}
@media screen and (min-width: 720px) {
  .custom-sets-page .p-set_list_concept {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: calc(1280px - 36px * 2 - 103px * 2);
    margin-inline: auto;
  }
}

.custom-sets-page .p-set_list_concept__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.custom-sets-page .p-set_list_concept__image {
  border-radius: 10px;
}

.custom-sets-page .p-set_list_concept__title {
  padding: 40px 0 0;
}
@media screen and (min-width: 720px) {
  .custom-sets-page .p-set_list_concept__title {
    padding: 0 0 30px;
    font-size: 30px !important;
  }
}

@media screen and (min-width: 720px) {
  .custom-sets-page .p-set_list_concept__text {
    font-size: 16px !important;
  }
}

.custom-sets-page .p-set_list_concept__note {
  margin-top: 14px;
  font-weight: bold;
}

.custom-sets-page .p-set_list_wrapper {
  margin-top: 40px;
  margin-inline: auto;
  max-width: 1200px;
  width: 100%;
}
@media screen and (min-width: 720px) {
  .custom-sets-page .p-set_list_wrapper {
    margin-top: 60px;
  }
}

.custom-sets-page .p-set_list__list {
  margin-top: 16px;
  padding-bottom: unset;
  gap: 20px;
}

.custom-sets-page .p-set_list__list .c-set_item {
  overflow: hidden;
  margin-top: unset;
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}
@media screen and (min-width: 720px) {
  .custom-sets-page .p-set_list__list .c-set_item {
    width: calc((100% - 56px) / 3);
  }
}

@media screen and (min-width: 720px) {
  .custom-sets-page .p-set_list__list .c-set_item:not(:nth-child(4n)) {
    margin-right: unset;
  }
  .custom-sets-page .p-set_list__list .c-set_item:not(:nth-child(-n + 4)) {
    margin-top: unset;
  }
}

.custom-sets-page .p-set_list__list .c-set_item--1 .title,
.custom-sets-page .p-set_list__list .c-set_item--1 .c-set_item__button__link {
  background-color: #ffbf00;
}
.custom-sets-page .p-set_list__list .c-set_item--2 .title,
.custom-sets-page .p-set_list__list .c-set_item--2 .c-set_item__button__link {
  background-color: var(--main-color);
}
.custom-sets-page .p-set_list__list .c-set_item--3 .title,
.custom-sets-page .p-set_list__list .c-set_item--3 .c-set_item__button__link {
  background-color: #6b6b6b;
}

.custom-sets-page .p-set_list__list .c-set_item__inner {
  margin-top: auto;
  padding: 16px 16px 20px;
  background-color: #fff;
}

.custom-sets-page .c-set_item .title {
  padding: 9px 10px 12px;
  text-align: center;
}

.custom-sets-page .c-set_item .c-set_item__price--wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}
/* .custom-sets-page .c-set_item .c-set_item__price--wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 1px;
    height: 100%;
    background-color: var(--border-color-gray);
  } */

.custom-sets-page .c-set_item .price-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.custom-sets-page .c-set_item .price-label {
  font-size: 13px;
}

.custom-sets-page .c-set_item .price {
  margin-top: 0;
  display: flex;
  flex-direction: column;
}

.custom-sets-page .c-set_item .price-text--large {
  font-size: 24px;
}

.custom-sets-page .c-set_item .c-set_item__button {
  margin-top: 16px;
  position: static;
}

.custom-sets-page .c-set_item .c-set_item__button__link {
  margin-inline: auto;
  width: 100%;
  max-width: 310px;
  height: 36px;
}

.custom-sets-page .p-popular_set__list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 14px;
}
@media screen and (min-width: 720px) {
  .custom-sets-page .p-popular_set__list {
    margin-top: 50px;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 28px;
  }
}

.custom-sets-page .c-popular_set_item__image {
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 281 / 211;
}

.custom-sets-page .c-popular_set_item__image__img {
  height: 100%;
  object-fit: cover;
}

.custom-sets-page .c-popular_set_item .title {
  margin-top: 20px;
}

.custom-sets-page .c-popular_set_item__inner {
  margin-top: 12px;
}

.custom-sets-page .c-popular_set_item__price--wrapper .price-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* --------------------------------
選べるセットページ
-------------------------------- */
@media screen and (min-width: 720px) {
  .custom-set_selection .l-content__inner {
    padding-inline: 36px;
  }
}

.custom-set_selection .p-set_selection {
  margin-top: 40px;
  padding-inline: unset;
}

.custom-set_selection .p-set_selection__inner {
  gap: 28px;
}

@media screen and (min-width: 720px) {
  .custom-set_selection .p-set_selection__content {
    padding-right: 0;
  }
}

.custom-set_selection .p-set_selection__content__list {
  display: grid;
  grid-template-columns: repeat(3, calc(33.3% - 18.6px));
  gap: 50px 28px;
}
@media screen and (max-width: 719px) {
  .custom-set_selection .p-set_selection__content__list {
    grid-template-columns: repeat(2, calc(50% - 7px));
    gap: 40px 14px;
  }
}

.custom-set_selection .p-set_selection__content__list .c-product_item {
  width: 100%;
}

.custom-set_selection
  .p-set_selection__content__list
  .c-product_item:not(:nth-child(-n + 2)) {
  margin-top: unset;
}
.custom-set_selection
  .p-set_selection__content__list
  .c-product_item:nth-child(odd) {
  margin-right: unset;
}
.custom-set_selection
  .p-set_selection__content__list
  .c-product_item:not(:nth-child(3n)) {
  margin-right: unset;
}
.custom-set_selection
  .p-set_selection__content__list
  .c-product_item:not(:nth-child(-n + 3)) {
  margin-top: unset;
}

.custom-set_selection .c-product_item__form {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.custom-set_selection .c-product_item__inner__title {
  margin-top: 20px;
}
@media screen and (max-width: 719px) {
  .custom-set_selection .c-product_item__inner__title {
    margin-top: 12px;
  }
}

.custom-set_selection .c-product_item__inner__price--description {
  margin-top: auto;
  font-size: 11px !important;
}

.custom-set_selection .c-product_item__inner__control {
  margin-top: 12px;
  height: unset;
}
@media screen and (max-width: 719px) {
  .custom-set_selection .c-product_item__inner__control {
    margin-top: 8px;
  }
}

.custom-set_selection .c-product_item__inner__control > .btn-cut,
.custom-set_selection .c-product_item__inner__control > .btn-add {
  border-radius: 4px;
  height: 33px;
}

.custom-set_selection .p-selected_set_products__header {
  letter-spacing: 0;
}
@media screen and (min-width: 720px) {
  .custom-set_selection .p-selected_set_products__header {
    padding-inline: 0;
  }
}

.custom-set_selection .p-selected_set_products__review {
  z-index: 1;
  gap: unset;
}

.custom-set_selection .p-selected_set_products__text.--note {
  color: #000000;
}

.custom-set_selection .p-selected_set_products__text.--show-products {
  color: var(--main-color);
}

.custom-set_selection .p-selected_set_products__purchase .c-button {
  margin-inline: auto;
}

.custom-set_selection .c-order_quantity__input {
  border-radius: 4px;
}

/* --------------------------------
商品一覧ページ
-------------------------------- */
/* カスタムレイアウト */
.p-product_list--custom .p-list_header__inner {
  display: block;
}

.p-product_list--custom .p-product-list__container {
  display: grid;
  grid-template-columns: 23.4% 50% auto;
  grid-template-areas:
    "sidebar banner sort"
    "sidebar list list";
  gap: 28px;
}
@media screen and (max-width: 719px) {
  .p-product_list--custom .p-product-list__container {
    display: block;
  }
}

.p-product_list--custom .p-product_categories__list {
  grid-area: sidebar;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  max-width: 100%;
}
@media screen and (max-width: 719px) {
  .p-product_list--custom .p-product_categories__list {
    display: none;
    position: fixed;
    z-index: 101;
    background-color: #ffffff;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    top: 0;
    left: 0;
    padding-top: 30px;
    padding-inline: 30px;
  }
  .p-product_list--custom .p-product_categories__list.is-active {
    display: block;
  }
}

.p-product_list--custom .p-product_categories__heading {
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p-product_list--custom .p-product_categories__heading__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.p-product_list--custom .p-product_categories__heading__right {
}

.p-product_list--custom .p-product_categories__item {
  display: block;
  padding: 30px 0;
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  border-top: none;
  border-right: none;
  border-bottom: 1px solid var(--border-color-gray);
  border-left: none;
}
@media screen and (max-width: 719px) {
  .p-product_list--custom .p-product_categories__item {
    padding: 20px 0 12px;
  }
}

@media screen and (min-width: 720px) {
  .p-product_list--custom .p-product_categories__item:first-child {
    border-top: 1px solid var(--border-color-gray);
  }
}
.p-product_list--custom .p-product_categories__item::before {
  content: none;
}

.p-product_list--custom .p-product_categories__text {
  content: none;
}

.subscription-banner-wrapper {
  grid-area: banner;
}

.subscription-banner {
  background-color: var(--bg-color-gold);
  border-radius: 12px;
  padding: 24px;
  margin: 0 auto;
  max-width: 590px;
  border: 1px solid #e8e4e0;
}

.subscription-banner__content {
  text-align: center;
}

.subscription-banner__title {
  font-size: 1.5rem;
  color: var(--main-color);
  margin: 0 0 16px 0;
  letter-spacing: 0.5px;
}

.subscription-banner__divider {
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    #d4a574 0,
    #d4a574 4px,
    transparent 4px,
    transparent 8px
  );
  margin: 0 auto 20px;
  max-width: 80%;
}

.subscription-banner__details {
  margin-top: 16px;
}

.subscription-banner__text {
  font-size: 0.95rem;
  margin: 8px 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .subscription-banner {
    padding: 20px;
    margin: unset;
  }

  .subscription-banner__title {
    font-size: 1rem;
  }

  .subscription-banner__text {
    font-size: 0.9rem;
  }
}

.product-sort-wrapper {
  grid-area: sort;
  margin-top: auto;
  margin-left: auto;
}
@media screen and (max-width: 719px) {
  .p-product_list--custom .product-sort-wrapper--sp {
    position: fixed;
    z-index: 10;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: calc(100% - 20px);
    max-width: 370px;
  }
}

.p-product_list--custom .product-sort-wrapper--sp::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 1px;
  height: 24px;
  background-color: var(--border-color-gray);
}

.p-product_list--custom
  .c-list_tool__sort__wrap
  > .c-list_tool__sort__wrap__select {
  padding: 0 0 0 10px;
  border-radius: 30px;
}
@media screen and (max-width: 719px) {
  .p-product_list--custom
    .c-list_tool__sort__wrap
    > .c-list_tool__sort__wrap__select {
    background-color: var(--main-color-black);
    color: #ffffff;
    border-radius: unset;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    text-align: center;
    width: 100%;
    height: 50px;
  }
}

.p-product_list--custom
  .c-list_tool__sort__wrap
  > .c-list_tool__sort__wrap__select
  option {
  width: 100%;
  text-align: center;
  background-color: #fff;
  color: #000;
}

@media screen and (max-width: 719px) {
  .p-product_list--custom .c-list_tool__sort__wrap {
    width: 100%;
  }
}

.p-product_list--custom .c-list_tool__sort__wrap:after {
  content: none;
}
.p-product_list--custom .c-list_tool__sort__wrap > .sort-icon {
  position: absolute;
  inset: 0 auto 0 15px;
  margin: auto;
  height: 15px;
  width: 18px;
  padding: unset;
  border: unset;
}

.p-product_list--custom .p-product_list__list {
  grid-area: list;
}
@media screen and (max-width: 719px) {
  .p-product_list--custom .p-product_list__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media screen and (max-width: 719px) {
  .p-product_list--custom .btn-category-list--sp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--main-color-black);
    color: #ffffff;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    width: 100%;
  }
}
@media screen and (max-width: 719px) {
  .p-product_list--custom .category-icon--sp {
    width: 17px;
    height: 15px;
  }
}

.p-product_list--custom .medium-up--one-3 {
  width: calc((100% - 56px) / 3);
}
@media screen and (max-width: 719px) {
  .p-product_list--custom .medium-up--one-3 {
    width: 100%;
  }
}

.p-product_list--custom .medium-up--one-3:not(:nth-child(3n + 1)) {
  margin-left: 28px;
}
@media screen and (max-width: 719px) {
  .p-product_list--custom .medium-up--one-3:not(:nth-child(3n + 1)) {
    margin-left: 0;
  }
}

@media screen and (max-width: 719px) {
  .p-product_list--custom .medium-up--one-3:not(:first-child) {
    margin-top: 0;
  }
}

/* --------------------------------
商品詳細ページ
-------------------------------- */
.p-product_content__inner--custom .c-product_img__list {
  gap: 14px;
}

.p-product_content__inner--custom
  .c-product_img__slider--main
  .c-product_img__image {
  border-radius: 10px;
}

.p-product_content__inner--custom .c-product_img__slider--thumbnail {
  padding: 0;
}

.p-product_content__inner--custom
  .c-product_img__slider--thumbnail
  .c-product_img__item {
  margin-right: 0 !important;
  width: 10.157vw !important;
  height: 10.157vw !important;
}
@media screen and (max-width: 719px) {
  .p-product_content__inner--custom
    .c-product_img__slider--thumbnail
    .c-product_img__item {
    width: 19.75vw !important;
    height: 19.75vw !important;
  }
}

.p-product_content__inner--custom
  .c-product_img__slider--thumbnail
  .c-product_img__image {
  margin-block: 0;
  height: 100%;
  border-radius: 4px;
}

.p-product_content__inner--custom .splide__arrow {
  display: none;
}

@media screen and (max-width: 719px) {
  .p-product_content__inner--custom .p-product_content__inner__info {
    padding: 0;
  }
}

.p-product_content__inner--custom .c-product_info__title--pc {
  margin-top: 50px;
}
@media screen and (max-width: 719px) {
  .p-product_content__inner--custom .c-product_info__title--pc {
    margin-top: 20px;
  }
}

@media screen and (max-width: 719px) {
  .p-product_content__inner--custom .c-product_info__title--pc {
    display: none;
  }
}

@media screen and (min-width: 720px) {
  .p-product_content__inner--custom .c-product_info__title--sp {
    display: none;
  }
}
@media screen and (max-width: 719px) {
  .p-product_content__inner--custom .c-product_info__title--sp {
    display: block;
    margin-top: 20px;
  }
}

.p-product_content__inner--custom .c-product_info__price {
  display: flex;
  justify-content: space-between;
}

.p-product_content__inner--custom .c-product_info__price span {
  font-size: 16px !important;
}
@media screen and (max-width: 719px) {
  .p-product_content__inner--custom .c-product_info__price span {
    font-size: 13px !important;
  }
}

.p-product_content__inner--custom
  .c-product_info__price
  .u-theme--color-text
  > span {
  color: var(--main-theme-color) !important;
}

.p-product_content__inner--custom .c-product_info__price .list_price,
.p-product_content__inner--custom .c-product_info__price .sales_price {
  font-size: 16px !important;
  font-weight: bold;
}

.p-product_content__inner--custom .c-order_quantity {
  width: 100%;
  border-radius: 30px;
  min-width: 120px;
}
.p-product_content__inner--custom .c-order_quantity__input {
  border-radius: 8px;
}

.p-product_content__inner--custom .product-actions-container {
  gap: 28px;
  display: flex;
  min-width: 100%;
}
@media screen and (max-width: 719px) {
  .p-product_content__inner--custom .product-actions-container {
    gap: 8px;
  }
}

.p-product_content__inner--custom .c-product_info__form__quantity {
  margin-top: 30px;
}

.p-product_content__inner--custom .c-product_info__form__buttons {
  width: 100%;
}

.p-product_content__inner--custom .c-product_info__form__submit.fix-hover {
  margin-top: 30px;
  border-radius: 30px;
  max-width: 360px;
  height: 45px;
  background-color: var(--main-color-black);
}
.p-product_content__inner--custom
  .c-product_info__form__submit.u-theme--color-bg {
  background-color: var(--main-theme-color);
}

.p-product_content__inner--custom .c-product_info__description__tab {
  margin-top: 48px;
  display: flex;
}

.p-product_content__inner--custom .c-product_info__description__tab__item {
  width: 50%;
  padding: 12px;
  text-align: center;
  color: var(--main-color-gray);
  border-bottom: 3px solid var(--main-color-gray);
  cursor: pointer;
}
.p-product_content__inner--custom
  .c-product_info__description__tab__item.is-active {
  color: #000000;
  border-bottom-color: #000000;
}
.p-product_content__inner--custom .c-product_info__description__item {
  display: none;
}
.p-product_content__inner--custom .c-product_info__description__item.is-active {
  display: block;
}

.p-product_content__inner--custom
  .c-product_info__co_selling__tab_contents
  > #co-selling-recurring,
.p-product_content__inner--custom
  .c-product_info__co_selling__tab_contents
  > #co-selling-single {
  display: block !important;
}

.p-product_content__inner--custom
  .c-product_info__co_selling__tab_contents
  > .co-selling-recurring,
.p-product_content__inner--custom
  .c-product_info__co_selling__tab_contents
  > .co-selling-single {
  display: block;
}

.p-product_content__inner--custom .co-selling-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* --------------------------------
会社概要ページ

管理画面＞ページ管理＞会社概要(スラッグ：company)
/shop/pages/company
-------------------------------- */
/*
  ページテンプレートのクラス名

  shop>pages>show.html.liquid
 */
.p-page_content__inner:has(.page-company) {
  max-width: 1017px;
}

.page-company {
  width: 100%;
  background: rgba(255, 255, 255, 1);
}

.page-company .title-wrapper {
  text-align: center;
}
.page-company .page-title {
  color: rgba(0, 0, 0, 1);
  font-family: Noto Sans JP;
  font-weight: Medium;
  font-size: 30px;
  text-align: center;
}
@media screen and (max-width: 719px) {
  .page-company .page-title {
    font-size: 20px;
  }
}
.page-company .subtitle {
  color: rgba(184, 170, 105, 1);
  font-family: Jost;
  font-size: 14px;
  text-align: center;
}
@media screen and (max-width: 719px) {
  .page-company .subtitle {
    font-size: 12px;
  }
}
.page-company .content {
  margin-top: 40px;
}
.page-company .content-wrapper {
  display: flex;
  padding-block: 30px;
  width: 100%;
  border-bottom: 1px solid var(--border-color-gray);
}
.page-company .label {
  color: rgba(0, 0, 0, 1);
  font-family: Noto Sans JP;
  font-weight: Medium;
  font-size: 16px;
  flex-shrink: 0;
  width: 21.74%;
  text-align: left;
}
@media screen and (max-width: 719px) {
  .page-company .label {
    width: 31.115%;
    font-size: 13px;
  }
}
.page-company .value {
  color: rgba(0, 0, 0, 1);
  font-family: Noto Sans JP;
  font-weight: Regular;
  font-size: 16px;
  text-align: left;
}
@media screen and (max-width: 719px) {
  .page-company .value {
    font-size: 13px;
  }
}
.page-company .name {
  color: #fff;
}

/* --------------------------------
うちのやが大切にしている5つのこと

管理画面＞ページ管理＞うちのやが大切にしている8つのこと(スラッグ：eight-things-we-value)
shop/pages/eight-things-we-value
-------------------------------- */
/* メインコンテナ */

.p-page_content:has(.eight-things-we-value) {
  padding-inline: 20px;
}
@media screen and (min-width: 720px) {
  .p-page_content:has(.eight-things-we-value) {
    padding-inline: 36px;
  }
}

.p-page_content__inner:has(.eight-things-we-value) {
  max-width: 1017px;
}

.eight-things-we-value .title-wrapper {
  text-align: center;
}

.eight-things-we-value .subtitle {
  color: var(--main-color) !important;
  font-family: Jost;
}

/* テキストコンテンツ */
.eight-things-we-value .intro-text-wrapper {
  margin-top: 80px;
}

.eight-things-we-value .intro-text {
  margin-top: 0;
  color: rgba(0, 0, 0, 1);
  font-family: Yaku Han JP;
  font-size: 13px;
  text-align: left;
}
@media screen and (min-width: 720px) {
  .eight-things-we-value .intro-text {
    text-align: center;
    font-size: 16px;
  }
}

.eight-things-we-value .conclusion-text {
  color: rgba(0, 0, 0, 1);
  font-family: Yaku Han JP;
  font-weight: Regular;
  font-size: 13px;
  text-align: left;
}

.eight-things-we-value .value-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 14px;
}

@media screen and (min-width: 720px) {
  .eight-things-we-value .value-list {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 24px;
  }
}

.eight-things-we-value .value-item {
  display: flex;
  flex-direction: column;
  padding-block: 20px;
  border-bottom: 2px dotted var(--main-color);
}
@media screen and (min-width: 720px) {
  .eight-things-we-value .value-list {
    flex-direction: row;
    gap: 17px;
  }
}

@media screen and (min-width: 720px) {
  .eight-things-we-value .value-item:first-child,
  .eight-things-we-value .value-item:nth-child(2),
  .eight-things-we-value .value-item:nth-child(3) {
    border-top: 2px dotted var(--main-color);
  }
}

/* 価値観のタイトルとナンバー */
.eight-things-we-value .value-title {
  color: var(--main-color);
  font-family: Noto Sans JP;
  font-size: 13px;
  text-align: left;
}
@media screen and (min-width: 720px) {
  .eight-things-we-value .value-title {
    font-size: 20px;
  }
}

.eight-things-we-value .value-number {
  color: var(--main-color);
  font-family: Jost;
  font-size: 11px;
  text-align: left;
}
@media screen and (min-width: 720px) {
  .eight-things-we-value .value-number {
    font-size: 20px;
  }
}

/* セクション背景 */
.eight-things-we-value .section-background {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  padding: 20px 20px 60px;
}
@media screen and (min-width: 720px) {
  .eight-things-we-value .section-background {
    display: grid;
    grid-template-columns: 2.46fr 3.54fr;
    grid-template-rows: auto 3fr 2fr 6.5fr;
    grid-template-areas:
      "number number"
      "image title"
      "image description"
      "image list";
    column-gap: 50px;
    align-items: start;
    padding: 40px 50px 120px 36px;
  }
}

.eight-things-we-value .section-background-odd {
  background: rgba(255, 252, 242, 1);
}

.eight-things-we-value .section-background-even {
  background: rgba(255, 255, 255, 1);
}

/* セクションコンテンツ */
.eight-things-we-value .feature-list {
  margin-top: 30px;
  margin-left: 20px;
  color: rgba(0, 0, 0, 1);
  font-family: Noto Sans JP;
  font-size: 13px;
  text-align: left;
}
@media screen and (min-width: 720px) {
  .eight-things-we-value .feature-list {
    grid-area: list;
    margin-top: 0;
    max-width: 568px;
    font-size: 16px;
  }
}

.eight-things-we-value .feature-item {
  list-style: disc;
}

.eight-things-we-value .feature-description {
  margin-top: 25px;
  display: inline-block;
  color: rgba(0, 0, 0, 1);
  font-family: Noto Sans JP;
  font-size: 13px;
  text-align: left;
}
@media screen and (min-width: 720px) {
  .eight-things-we-value .feature-description {
    grid-area: description;
    margin-top: 0;
    max-width: 568px;
    font-size: 16px;
  }
}

.eight-things-we-value .section-title {
  display: inline-block;
  margin-bottom: 20px;
  padding-bottom: 6px;
  color: rgba(0, 0, 0, 1);
  font-family: Noto Sans JP;
  font-size: 16px;
  text-align: left;
}
@media screen and (min-width: 720px) {
  .eight-things-we-value .section-title {
    grid-area: title;
    margin-bottom: 0;
    width: fit-content;
    font-size: 30px;
  }
}

.eight-things-we-value .section-title-odd {
  border-bottom: 2px dotted var(--main-color);
}

.eight-things-we-value .section-title-even {
  border-bottom: 2px dotted var(--border-color-gray);
}

.eight-things-we-value .section-number {
  display: block;
  font-family: Jost;
  font-weight: Medium;
  font-size: 50px;
  text-align: right;
}
@media screen and (min-width: 720px) {
  .eight-things-we-value .section-number {
    /* grid-area: 1 / 2 / 2 / 3; */
    grid-area: number;
  }
}

.eight-things-we-value .section-number-odd {
  color: #e3d8a3;
}

.eight-things-we-value .section-number-even {
  color: rgba(222, 222, 222, 1);
}

@media screen and (min-width: 720px) {
  .eight-things-we-value .section-image {
    grid-area: image;
    width: 100%;
    height: 100%;
  }

  .eight-things-we-value .section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
  }
}

/* 画像コンテナ */
.eight-things-we-value .image-container {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  aspect-ratio: 39 / 20;
}

@media screen and (min-width: 720px) {
  .eight-things-we-value .image-container {
    aspect-ratio: 128 / 45;
  }
}

.eight-things-we-value .product-image {
  height: 100%;
}

/* 最終セクション */
.eight-things-we-value .final-title {
  color: rgba(0, 0, 0, 1);
  font-family: Noto Sans JP;
  font-weight: Medium;
  font-size: 24px;
  text-align: left;
}

.eight-things-we-value .cta-container {
  background: url("../images/v2658_1045.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  text-align: center;
}

.eight-things-we-value .cta-text-wrapper {
  margin-top: 40px;
}
@media screen and (min-width: 720px) {
  .eight-things-we-value .cta-text-wrapper {
    margin-top: 50px;
  }
}

.eight-things-we-value .cta-text {
  margin-top: unset;
}

.eight-things-we-value .cta-button-container {
  margin-top: 60px;
}
@media screen and (min-width: 720px) {
  .eight-things-we-value .cta-button-container {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    gap: 28px;
  }
}

.eight-things-we-value .cta-button {
  margin-inline: auto;
  font-family: Noto Sans JP;
  font-size: 14px;
}
@media screen and (min-width: 720px) {
  .eight-things-we-value .cta-button {
    margin-inline: unset;
  }
}

.eight-things-we-value .menu-button {
  margin-top: 20px;
  margin-inline: auto;
  text-decoration: unset;
}
@media screen and (min-width: 720px) {
  .eight-things-we-value .menu-button {
    margin-top: unset;
    margin-inline: unset;
  }
}

.eight-things-we-value .text-spacing {
  margin-top: 20px;
}
@media screen and (min-width: 720px) {
  .eight-things-we-value .text-spacing {
    margin-top: 30px;
  }
}

/* --------------------------------
マイページ
/shop/customer/base/show.html.liquid

-------------------------------- */
@media screen and (max-width: 719px) {
  .p-account--custom .p-account__inner {
    display: flex;
    flex-direction: column-reverse;
  }
}

.p-account--custom .p-account__inner__content__title__wrapper {
  text-align: center;
  display: block;
}

.p-account--custom .p-account__inner__content__title {
  margin-top: unset;
  display: block;
}

.p-account--custom .p-favorite__header {
  margin-top: 0;
}

.p-account--custom .p-mypage__heading {
  margin-bottom: 20px;
  display: flex;
  gap: 12px;
}

.p-account--custom .p-mypage__heading__title {
  font-size: 15px;
}

/*
セクションの共通パーツ
*/

.p-account--custom .p-mypage__block {
  margin-top: 20px;
}

.p-account--custom .p-mypage__block__item_layout {
  padding: 20px;
  border: 1px solid var(--border-color-gray);
  border-radius: 10px;
  background-color: #ffffff;
}

.p-account--custom .u-account_btn {
  width: 100%;
  height: 43px;
  border-radius: 8px;
  display: grid;
  place-items: center;
}

.p-account--custom .p-mypage__block__item_grid {
  align-items: flex-start;
  padding: 0;
  gap: 20px;
  border: unset;
}

.p-account--custom .p-mypage__block__item_label {
  display: inline-block;
  max-width: 100%;
  color: var(--main-color-gray-2) !important;
}

.p-account--custom .p-mypage__block__item_edit_link {
  margin-left: auto;
  color: var(--main-color);
  text-decoration: none;
  white-space: nowrap;
}

.p-account--custom .p-mypage__block__item__border_spacing:not(:first-child) {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color-gray);
}

/*
サイドメニュー

customer_sidebar.liquid
_customer_sidebar.json
*/
@media screen and (max-width: 719px) {
  .p-account--custom .p-account__inner__menu {
    margin-top: unset;
  }
}

@media screen and (max-width: 719px) {
  .c-account_menu__custom .c-account_menu {
    margin: unset;
    width: 100%;
  }
}

@media screen and (max-width: 719px) {
  .c-account_menu__custom .c-account_menu__list {
    display: block;
    padding: 60px 0 0;
  }
}

.c-account_menu__custom .c-account_menu__content.--main-heading {
  gap: 16px;
}

@media screen and (max-width: 719px) {
  .c-account_menu__custom .c-account_menu__content {
    padding: 20px 0;
  }
}

.c-account_menu__content.--separator {
  padding-block: 0;
}

/*
注文履歴

customer_top_purchase_history.liquid
customer_top_subs_order.liquid
*/

/*
  定期購入

customer_top_subs_order.liquid
_customer_top_subs_order.json
*/
.c-subs_order--custom .p-mypage__block__subscription__item__wrapper {
  margin-top: 20px;
  display: flex;
}

.c-subs_order--custom .p-mypage__block__subscription__item__key {
  min-width: 108px;
  color: var(--main-color-gray-2) !important;
}

.c-subs_order--custom .p-mypage__block__subscription__item__value {
  color: var(--main-color-black);
}

.c-subs_order--custom .p-mypage__block__subscription__item__date {
  margin-bottom: unset;
  font-size: 15px;
  font-weight: bold;
}

.c-subs_order--custom .p-mypage__block__subscription__item-box {
  margin-top: 20px;
  background: #fdfaf1;
  border-radius: 10px;
  padding: 16px 16px 8px 16px;
  font-size: 14px;
}

.c-subs_order--custom .p-mypage__block__subscription__item-box__key {
  margin-bottom: 9px;
}

.c-subs_order--custom .p-mypage__block__subscription__item-box__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-subs_order--custom .p-mypage__block__subscription__item-box__list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--border-color-gray);
  cursor: pointer;
  transition: background 0.2s;
}

.c-subs_order--custom
  .p-mypage__block__subscription__item-box__list-item:first-child {
  border-top: none;
}

.c-subs_order--custom
  .p-mypage__block__subscription__item-box__list-item__arrow {
  font-size: 18px;
  color: #aaa;
  margin-left: 8px;
}

/*
プラン・会員ランク

customer_top_rank_point.liquid
_customer_top_rank_point.json
 */

.c-membership_rank--custom .c-membership_rank__discount {
  font-size: 11px;
  color: var(--main-color-gray-2);
}

.c-membership_rank--custom .c-membership_rank__current {
  flex-direction: row;
  gap: 0;
}

.c-membership_rank--custom .c-membership_rank__text--star {
  color: #ffbf00;
}

/*
クーポン

customer_top_coupon.liquid
_customer_top_coupon.json
*/

.c-coupon--custom .c-coupon__point__wrapper {
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.c-coupon--custom .c-coupon__point {
  font-size: 15px;
  font-weight: bold;
}

.c-coupon--custom .c-coupon__point__expiration {
  color: var(--main-color-red);
  font-size: 11px;
}

/*
注文履歴
shop/customer/orders/index.html.liquid
*/
.p-account--custom .order-filter {
  margin-bottom: 24px;
}

.order-filter__row {
  margin-bottom: 20px;
}

.order-filter__row__title {
  margin-bottom: 12px;
  display: inline-block;
  font-size: 14px;
  white-space: nowrap;
}

.order-filter__select {
  display: flex;
  align-items: center;
  gap: 8px;
}

.order-filter__row__label {
  width: 40%;
}

.order-filter__select__input {
  width: 100%;
  padding: 12px;
  border-radius: 4px;
  border: 1px solid var(--border-color-gray);
  line-height: 1;
}

.order-filter__tilde {
  margin: 0 8px;
}

.order-list {
  display: flex;
  flex-direction: column;
}

.p-account--custom .order-card {
  box-sizing: border-box;
}

.order-card__status {
  font-size: 15px;
  margin-bottom: 8px;
}

.order-card__info {
  font-size: 14px;
  margin-bottom: 12px;
  color: #222;
  line-height: 1.7;
}

.order-card__info__row {
  margin-top: 12px;
}

.order-card__info__label {
  width: 82px;
}

.order-card__detail-btn {
  width: 100%;
  background: #c7b77a;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 0;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.2s;
}

.order-card__detail-btn:hover {
  opacity: 0.8;
}

.p-account--orders--custom .p-account__inner__content .c-pagination {
  margin-top: 0;
}

/*
会員情報

shop/customer/base/edit.html.liquid
*/

.mypage-container {
  max-width: 400px;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  color: #292929;
}
.mypage-card {
  background: #fff;
  border: 1px solid #c9c9c9;
  border-radius: 12px;
  padding: 18px 16px 18px 16px;
  margin-bottom: 20px;
  box-shadow: var(--box-shadow);
}
.mypage-card__title {
  margin-bottom: 20px;
}
.mypage-card__row {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.mypage-card__label {
  width: 120px;
  color: #888;
  font-size: 14px;
}
.mypage-card__value {
  flex: 1;
  font-size: 14px;
  word-break: break-all;
}
.mypage-card__edit {
  color: var(--main-color);
  font-size: 13px;
  margin-left: 8px;
  text-decoration: underline;
}
.mypage-card__mailsetting {
  margin-top: 12px;
  font-size: 13px;
}
.mypage-card__mailsetting__label {
  margin-top: 4px;
  position: relative;
  padding-left: 28px; /* チェックマーク分の余白 */
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 15px;
}

/* チェックマークのベース */
.mypage-card__mailsetting__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #ccc; /* デフォルトはグレー */
  border: 1.5px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* チェック済みの色 */
.mypage-card__mailsetting__label:has(input:checked)::before {
  background: var(--main-color);
  border-color: var(--main-color);
}

/* チェックマーク本体 */
.mypage-card__mailsetting__label::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 2px;
  height: 10px;
  width: 12px;
  background-color: #ffffff;
  clip-path: polygon(80% 0, 100% 0, 100% 100%, 50% 100%, 50% 80%, 80% 80%);
  transform: rotate(45deg);
}

.mypage-card__address,
.mypage-card__payment {
  font-size: 14px;
  position: relative;
  padding-left: 0;
}

.mypage-card__address__info {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-end;
}

.mypage-card__badge {
  display: inline-block;
  background: #ffffff;
  color: var(--main-color);
  font-size: 11px;
  border: 1px solid var(--main-color);
  border-radius: 6px;
  padding: 2px 8px;
  margin-right: 6px;
  vertical-align: middle;
}
.mypage-card__add-btn {
  margin-top: 20px;
  cursor: pointer;
}
.mypage-card__payment__info {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}
.mypage-card__payment__value {
  display: flex;
  align-items: center;
  gap: 30px;
}
.mypage-card__payment__value__card {
  font-size: 14px;
}

.mypage-card__payment__value__expiration {
  font-size: 13px;
  color: var(--main-color-gray-2);
}

/* 新しいフォントの定義 */
@font-face {
  font-family: "NewFont";
  src: url("./fonts/new-font.eot");
  src: url("./fonts/new-font.eot?#iefix") format("embedded-opentype"),
    url("./fonts/new-font.woff2") format("woff2"),
    url("./fonts/new-font.woff") format("woff"),
    url("./fonts/new-font.ttf") format("truetype"),
    url("./fonts/new-font.svg#NewFont") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "NewFont";
  src: url("./fonts/new-font-bold.eot");
  src: url("./fonts/new-font-bold.eot?#iefix") format("embedded-opentype"),
    url("./fonts/new-font-bold.woff2") format("woff2"),
    url("./fonts/new-font-bold.woff") format("woff"),
    url("./fonts/new-font-bold.ttf") format("truetype"),
    url("./fonts/new-font-bold.svg#NewFont") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* Yu Mincho Pr6Nフォントの定義 */
@font-face {
  font-family: "Yu Mincho Pr6N";
  src: url("./fonts/YuMinchoPr6N-Regular.woff2") format("woff2"),
    url("./fonts/YuMinchoPr6N-Regular.woff") format("woff"),
    url("./fonts/YuMinchoPr6N-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Yu Mincho Pr6N";
  src: url("./fonts/YuMinchoPr6N-Bold.woff2") format("woff2"),
    url("./fonts/YuMinchoPr6N-Bold.woff") format("woff"),
    url("./fonts/YuMinchoPr6N-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Yu Mincho Pr6N";
  src: url("./fonts/YuMinchoPr6N-Light.woff2") format("woff2"),
    url("./fonts/YuMinchoPr6N-Light.woff") format("woff"),
    url("./fonts/YuMinchoPr6N-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Yu Mincho Pr6N";
  src: url("./fonts/YuMinchoPr6N-Medium.woff2") format("woff2"),
    url("./fonts/YuMinchoPr6N-Medium.woff") format("woff"),
    url("./fonts/YuMinchoPr6N-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Noto Sans JPのフォントスタック */
[data-font-family="Noto-Sans-JP"] {
  font-family: "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Sans", "Yu Gothic",
    "Meiryo", sans-serif;
}

[data-font-family="Noto-Sans-JP-Bold"] {
  font-family: "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Sans", "Yu Gothic",
    "Meiryo", sans-serif;
  font-weight: bold;
}

/* Jostフォントのフォントスタック */
[data-font-family="Jost"] {
  font-family: "Jost", "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
}

[data-font-family="Jost-Bold"] {
  font-family: "Jost", sans-serif;
  font-weight: 700;
}

/* 配送頻度選択のスタイル */
.c-product_info__delivery_frequency {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  transition: border-color 0.2s ease;
}

.delivery-frequency-field:hover {
  border-bottom-color: #ccc;
}

.delivery-frequency-label {
  display: block;
}

.delivery-frequency-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  cursor: pointer;
  width: 100%;
  outline: none;
}

.delivery-frequency-select:focus {
  outline: none;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .delivery-frequency-container {
    padding: 16px;
  }

  .delivery-frequency-label {
    font-size: 13px;
  }
}

/* ECフォース用の追加スタイル */
.delivery-frequency-select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
