/*============================================================================
  #font
==============================================================================*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');
/*============================================================================
  #ResetCSS
==============================================================================*/

/* 通常記載 */

.rte {
  line-height: 2;
}

.rte h1 {
  font-size: 28px;
  line-height: 1.5;
}

.rte h2 {
  font-size: 24px;
  line-height: 1.5;
  margin: 40px 0 24px 0;
  font-weight: 500;
}

.rte h3,
.rte h4,
.rte h5 {
  font-size: 16px;
  line-height: 1.5;
  margin: 40px 0 24px 0;
  font-weight: 500;
}

.rte img:not([style*=float]) {
  margin: 40px 0;
}

.rte hr {
  border-top: none;
  border-bottom: 1px solid rgb(var(--border-color));
  margin: 40px 0;
}

.rte iframe {
  max-width: 100%;
}

.rte ol,
.rte ul {
  margin: 24px 0;
}

[dir=ltr] .rte ol {
  margin-left: 20px;
}

[dir=ltr] .rte ul {
  list-style: none;
  margin-left: 20px;
}

[dir=ltr] .rte ul li {
  position: relative;
}

[dir=ltr] .rte ul li:before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background: #2F2725;
  border-radius: 50%;
  position: absolute;
  left: -20px;
  top: calc(50% - 2px);
}

.rte table th,
.rte table td {
  padding: 18px 0 18px 16px;
  vertical-align: top;
  border-bottom: none;
}

.rte table tr:first-child th,
.rte table tr:first-child td:not(.rte .c-product-rank table td) {
  padding-top: 0;
}

.rte table tr:last-child th,
.rte table tr:last-child td:not(.rte .c-product-rank table td) {
  padding-bottom: 0;
}

.rte .has-background {
  background-color: #f5f5f5;
  padding: 40px 50px;
  margin: 50px 0;
}

/* max-width記載 */

@media screen and (max-width: 699px) {
  /* メディアクエリを Prestige 標準（max-width: 699px）に統一（旧 740px） */

  .rte {
    font-size: 12px;
    line-height: 2;
  }

  .rte h1,
  .rte h2 {
    font-size: 18px;
  }

  .rte h3,
  .rte h4,
  .rte h5 {
    font-size: 15px;
  }

  .rte h2,
  .rte h3,
  .rte h4,
  .rte h5 {
    margin: 28px 0 15px;
  }

  .rte img:not([style*=float]) {
    margin: 20px 0;
  }

  .rte table th,
  .rte table td {
    font-size: 12px;
  }

  .rte .has-background {
    padding: 30px;
    margin: 40px 0;
  }

  input,
  textarea {
    font-size: 16px;
  }
}

/* ============ 本文関係============ */

/* 通常記載 */

.prose :where(:not(meta, span)+*) {
  margin-block-start: 24px;
}

.prose {
  line-height: 2;
  font-size: 14px;
}

.prose h1 {
  font-size: 24px;
  line-height: 1.7;
  font-weight: 700;
  text-transform: unset;
}

.prose h2 {
  font-size: 20px;
  line-height: 1.7;
  font-weight: 700;
  text-transform: unset;
}

.prose h3 {
  font-size: 18px;
  line-height: 1.7;
  font-weight: 700;
  text-transform: unset;
}

.prose h4,
.prose h5 {
  font-size: 16px;
  line-height: 1.7;
  text-transform: unset;
}

.prose a.link {
  margin-block-start: 0;
}

.prose hr {
  border-top: none;
  border-bottom: 1px solid rgb(var(--border-color));
}

.prose iframe {
  max-width: 100%;
}

[dir=ltr] .prose ul {
  list-style: none;
  margin-left: 14px;
}

[dir=ltr] .prose ul li {
  position: relative;
}

[dir=ltr] .prose ul li:before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  left: -16px;
  top: calc(50% - 2px);
}

[dir=ltr] .prose ol {
  margin-left: 16px;
}

.prose table tr:not(:last-child) {
  border-bottom: 1px solid rgb(var(--border-color));
}

.prose table tr:first-child th,
.prose table tr:first-child td {
  padding-top: 0;
  border: none;
}

:is(th, td):first-child {
  padding-left: 0;
}

.prose table th,
.prose table td {
  opacity: 1;
  font-size: 14px;
  border: none;
  line-height: 1.7;
}

/* min-width記載 */

@media screen and (min-width: 1000px) {
  .prose:not(.prose--tight) :where(:not(meta, span)+*) {
    margin-block-start: 24px;
  }
}

/* max-width記載 */

@media screen and (max-width: 699px) {
  .prose {
    font-size: 12px;
    line-height: 2;
  }

  .prose h1 {
    font-size: 20px;
  }

  .prose h2 {
    font-size: 18px;
  }

  .prose h3,
  .prose h4,
  .prose h5 {
    font-size: 18px;
  }

  .prose table th,
  .prose table td {
    opacity: 1;
    font-size: 11px;
  }
}

/*============================================================================
  #Variables
==============================================================================*/

/* 通常記載 */

:root {
  --heading-font-family: "helvetica-neue-lt-pro", sans-serif;
  --text-font-family: "Zen Kaku Gothic New", sans-serif;
  --noto-sans-jp-font-family: "Noto Sans JP", sans-serif;
}

.container--md {
  max-width: 1250px;
  padding-inline: 25px;
  margin-inline: auto;
  width: 100%;
}

/* max-width記載 */

@media screen and (max-width: 699px) {
  .container--md {
    padding-inline: 18px;
  }
}

/*============================================================================
  #MultiClass
==============================================================================*/

/* 通常記載 */

br.sp-only {
  display: none;
}

/* max-width記載 */

@media screen and (max-width: 699px) {
  /* br.sp-only 表示切替も Prestige 標準（max-width: 699px）に統一（旧 740px） */

  br.sp-only {
    display: inline-block;
  }
}

/*============================================================================
  #Component
==============================================================================*/
/* Section Header */
.section-header h1 {
  font-family: var(--heading-font-family);
  line-height: 1.5;
  font-weight: 300;
}

.section-header h2 {
  font-family: var(--heading-font-family);
  line-height: 1.5;
  font-weight: 300;
}

/* Product Card */
.c-product-card_media {
  border-radius: 20px;
  overflow: hidden;
}

.c-product-card_media .product-card__image {
  border-radius: 20px;
}

.c-product-card_title {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  color: #313337;
  text-transform: none;
}

@media screen and (min-width: 700px) {
  .product-list {
    --product-list-calculated-column-gap: 30px;
  }
}

@media screen and (max-width: 699px) {
  .product-list {
    --product-list-calculated-column-gap: 19px;
  }

  .c-product-card_title {
    font-size: 20px;
  }
}

.c-product-card_color_summary {
  font-size: 12px;
  font-family: var(--heading-font-family);
  font-weight: 400;
  line-height: 1.25;
  color: #313337;
  text-transform: none;
  margin-block-end: 10px;
  display: inline-block;
}

.c-product-card_prices .c-product-card_prices_price {
  font-size: 16px;
  font-weight: 300;
  font-family: var(--heading-font-family);
  color: #313337;
  text-transform: none;
  line-height: calc(21 / 16);
  display: inline-block;
}

.c-product-card_prices :is(sale-price, compare-at-price, unit-price) {
  font-weight: 300;
}

.c-product-card_rating {
  margin-block-start: 10px;
}

/*============================================================================
  #Section
==============================================================================*/
/* Collection Banner */
.shopify-section--collection-banner h1.c-collection-banner_title {
  font-size: 14px;
  font-family: var(--heading-font-family);
  font-weight: 300;
  line-height: 1.5;
}

/* Custom Breadcrumb（sections/custom-breadcrumb.liquid の .c-footer-breadcrumb をスコープ） */
.c-footer-breadcrumb {
  max-width: 1250px;
  padding-inline: 25px;
  margin-inline: auto;
}

@media screen and (max-width: 699px) {
  .c-footer-breadcrumb {
    padding-inline: 20px;
  }
}

.c-footer-breadcrumb .breadcrumb {
  display: block;
}

.c-footer-breadcrumb .breadcrumb__list {
  padding: 16px 0;
  margin-block-start: 0;
  margin-block-end: 0;
  gap: 0;
  margin-inline-start: 0;
  display: flex;
  align-items: center;
}

.c-footer-breadcrumb .breadcrumb__link {
  font-size: 13px;
  line-height: 12px;
  font-weight: 300;
  font-family: var(--heading-font-family);
  color: #000;
}

.c-footer-breadcrumb .breadcrumb__link:not([aria-current=page]):not(:hover) {
  opacity: 1;
}

.c-footer-breadcrumb .breadcrumb__link:not([aria-current=page]) {
  text-decoration: underline;
}

.c-footer-breadcrumb .breadcrumb__item {
  display: inline-flex;
  align-items: center;
  text-transform: none;
  line-height: 1;
}

.c-footer-breadcrumb a.breadcrumb__link:hover {
  opacity: .6;
}

.c-footer-breadcrumb .breadcrumb__item:first-child {
  text-transform: uppercase;
  font-weight: 300;
  font-family: var(--heading-font-family);
}

.c-footer-breadcrumb :where(ol, ul):not(.unstyled-list) li {
  padding-inline-start: 0;
}

.c-footer-breadcrumb .breadcrumb__item::marker {
  content: "";
  display: none;
}

.c-footer-breadcrumb :where(ol, ul):not(.unstyled-list) li {
  list-style-type: none;
  counter-reset: none;
}

.c-footer-breadcrumb .breadcrumb__item--empty {
  display: none;
}

.c-footer-breadcrumb .breadcrumb__item--empty+.breadcrumb__item:before {
  display: none;
}

.c-footer-breadcrumb .breadcrumb__item+.breadcrumb__item:before {
  content: "/";
  align-self: center;
  margin-inline: 11px;
  flex-shrink: 0;
  line-height: 1;
}

.c-footer-breadcrumb span.breadcrumb__link {
  color: #000;
  font-weight: 300;
  font-family: var(--heading-font-family);
}

@media screen and (max-width: 699px) {
  .c-footer-breadcrumb .breadcrumb__list {
    display: flex;
    overflow-x: scroll;
  }

  .c-footer-breadcrumb .breadcrumb__item {
    flex-shrink: 0;
  }

  .c-footer-breadcrumb .breadcrumb__link {
    font-size: 12px;
    line-height: 12px;
  }
}

/* 商品カード: 情報エリアを左寄せ（theme.css の .product-card__info の中央寄せを上書き） */
.c-product-card .product-card__info {
  text-align: start;
  justify-items: start;
}

.c-product-card .product-card__info :is(.price-list, .rating-badge, .jdgm-widget) {
  justify-content: start;
}

.c-product-card .c-product-card_jdgm-preview {
  text-align: start;
}

.c-product-card .c-product-card_jdgm-preview .jdgm-prev-badge__text {
  display: none;
}

.c-product-card .c-product-card_jdgm-preview .jdgm-star.jdgm--on:before,
.c-product-card .c-product-card_jdgm-preview .jdgm-star.jdgm--half:before {
  color: #FFC31C;
}

/* ============================================================================
   c-teaser-about: ティザー（About）セクション
   - sections/custom-teaser-about.liquid
   ============================================================================ */

/* 通常記載 */

/* レイアウト: モバイルは縦積み、PC（700px以上）は 2 カラム */

.c-teaser-about_inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

/* 左カラム: 商品画像 */

.c-teaser-about_media {
  display: block;
  width: 100%;
}

.c-teaser-about_media img,
.c-teaser-about_media svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

/* 右カラム: コンテンツ */

.c-teaser-about_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

/* Scroll down 表示: 2カラムの上、width 100% の中央寄せ */

.c-teaser-about_scroll {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 0 58px;
  color: rgb(var(--text-color) / 0.7);
  letter-spacing: 0.08em;
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  font-family: var(--heading-font-family);
  color: #313337;
  letter-spacing: 2em;
  text-transform: uppercase;
}

/* letter-spacing は最後の文字の右側にも余白が出るため、
   span に padding-left を同値ぶん入れて視覚的な中央寄せを補正 */

.c-teaser-about_scroll>span {
  padding-left: 2em;
}

/* アナウンスブロック: Scroll down の下、2カラムの上に配置（中央寄せ） */

.c-teaser-about_announce {
  width: 100%;
  margin: 0 auto 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
}

.c-teaser-about_container {
  position: relative;
  z-index: 1;
  margin-top: -80px;
  padding: 18px 20px 30px;
  border: 1px solid #F3F3F3;
  border-radius: 40px;
  background-color: rgb(var(--background) / 1);
  background: #fff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
  margin-inline: 18px;
}

/* 見出し（margin リセット） */

.c-teaser-about_heading {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  font-family: var(--text-font-family);
  color: #313337;
  line-height: 1.5;

}

/* 装飾アイコン列 */

.c-teaser-about_decorations {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 0;
  padding: 0;
}

.c-teaser-about_decoration-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-teaser-about_decoration-item img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
  opacity: 0.55;
}

/* 本文（PC / SP 出し分け） */

.c-teaser-about_body {
  margin: 0;
}

.c-teaser-about_body>*+* {
  margin-top: 1em;
}

.c-teaser-about_body p {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--text-font-family);
  color: #313337;
  line-height: calc(26/14);
}

/* 情報テーブル */

.c-teaser-about_info {
  width: 100%;
  margin: 0;
  padding: 30px 34px;
  background-color: #FAFBFC;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
}

.c-teaser-about_info-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 116px;
  padding: 20px 0;
}

.c-teaser-about_info-row:first-child {
  padding-top: 0;
  border-bottom: solid 1px #E6E6E6;
}

.c-teaser-about_info-row:last-child {
  padding-bottom: 0;
}

.c-teaser-about_info-label {
  margin: 0;
  font-weight: 500;
  text-align: start;
}

.c-teaser-about_info-value {
  margin: 0;
  text-align: start;
  color: #313337;
  font-weight: 400;
}

/* メール登録フォーム: 2カラムの下、width 100% で中央寄せ配置 */

.c-teaser-about_newsletter {
  width: 100%;
  margin-top: 44px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.c-teaser-about_newsletter-heading {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--text-font-family);
  color: #313337;
  line-height: 1.5;
}

/* フォームの最大幅: 2カラム下の全幅では入力欄が広がりすぎるため、適度に絞る */

.c-teaser-about_form {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ピル形の入力欄 + アイコン送信ボタン */

.c-teaser-about_field {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #fff;
  border: solid 1px #DBDBDB;
  border-radius: 999px;
  padding: 9px 4px 9px 24px;
  transition: box-shadow 0.2s ease;
}

.c-teaser-about_field:focus-within {
  box-shadow: 0 0 0 2px rgb(var(--text-color) / 0.25);
}

.c-teaser-about_input {
  flex: 1 1 auto;
  min-width: 0;
  height: 48px;
  border: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  padding: 0;
  outline: none;
}

.c-teaser-about_input::placeholder {
  color: #999999;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--text-font-family);
  line-height: 1.5;
}

.c-teaser-about_submit {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-inline-start: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.c-teaser-about_submit:hover,
.c-teaser-about_submit:focus-visible {
  background-color: rgb(var(--text-color) / 0.08);
}

.c-teaser-about_submit:focus-visible {
  outline: 2px solid rgb(var(--text-color) / 0.4);
  outline-offset: 2px;
}

/* min-width記載 */

@media screen and (min-width: 1000px) {
  .c-teaser-about_inner {
    grid-template-columns: 1fr 1.45fr;
    gap: 45px;
  }

  .c-teaser-about_announce {
    margin: 0 auto;
    gap: 18px;
  }
}

@media screen and (min-width: 700px) {
  .c-teaser-about_media {
    margin-block-start: -30px;
  }

  .c-teaser-about_scroll {
    margin: 0 0 92px;
  }

  .c-teaser-about_container {
    padding: 32px 83px 78px 56px;
    max-width: 1200px;
    margin-inline: auto;
  }

  /* PC 表示（700px 以上）: SP 用本文を非表示 */

  .c-teaser-about_body--mobile {
    display: none;
  }

  .c-teaser-about_newsletter {
    margin-top: 46px;
    margin-bottom: 26px;
  }

  .c-teaser-about_newsletter-heading--mobile {
    display: none;
  }

  /* PC でのコンテンツ余白調整 */

  .c-teaser-about_content {
    gap: 28px;
    align-items: flex-start;
    text-align: left;
  }
}

@media (min-width:700px) {
  .c-teaser-about_newsletter-heading {
    font-size: 16px;
  }
}

/* max-width記載 */

@media screen and (max-width: 999px) {
  .c-teaser-about_inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .c-teaser-about_announce {
    margin: 0 auto 12px;
    gap: 18px;
  }

  .c-teaser-about_info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 20px;
  }
}

@media screen and (max-width: 699px) {
  .c-teaser-about_container {
    margin-top: -50px;
    border-radius: 24px;
  }

  .c-teaser-about_inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .c-teaser-about_body p {
    text-align: left;
  }

  /* SP 表示（699px 以下）: PC 用本文を非表示 */

  .c-teaser-about_body--pc {
    display: none;
  }

  .c-teaser-about_info {
    padding: 26px 30px;
  }

  .c-teaser-about_info-row {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  .c-teaser-about_info-label {
    text-align: center;
  }

  .c-teaser-about_info-value {
    text-align: center;
  }

  /* ニュースレター見出しの PC / SP 出し分け */

  .c-teaser-about_newsletter-heading--pc {
    display: none;
  }

  .c-teaser-about_field {
    padding: 4px 4px 4px 24px;
  }

  .c-teaser-about_input::placeholder {
    font-size: 13px;
  }
}

@media (max-width:699px) {
  .c-teaser-about_scroll>span {
    padding-left: 1.6em
  }

  .c-teaser-about_scroll {
    font-size: 10px;
    letter-spacing: 1.6em;
  }
}

/* ============================================================================
   c-teaser-brand: ブランドティザーセクション
   - sections/custom-teaser-brand.liquid
   - 左にテキスト、右に重なる 2 枚画像（PNG 透過想定のため border-radius は付けない）
   ============================================================================ */

/* 通常記載 */

/* レイアウト: モバイルは縦積み、PC（700px以上）は 2 カラム
   - media 幅は min(600px, 52.175cqw) で算出する
   - フルサイズ時は 600px、それ以下では container 幅に応じて比例縮小する */

.c-teaser-brand_inner {
  --c-teaser-brand_gap: 42px;

  display: flex;
  flex-direction: column-reverse;
  gap: 42px;
  align-items: stretch;
  container-type: inline-size;
  container-name: teaser-brand-inner;
}

/* 左カラム: 本文 */

.c-teaser-brand_content {
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.c-teaser-brand_body {
  margin: 0;
}

.c-teaser-brand_body>*+* {
  margin-top: 1em;
}

.c-teaser-brand_content p.c-teaser-brand_title {
  font-size: 26px;
  font-weight: 400;
  font-family: var(--heading-font-family);
  color: #313337;
  line-height: 1.5;
}

/* 右カラム: 重なる 2 枚画像エリア
   - 親に aspect-ratio で領域を確保し、子要素 2 枚を絶対配置で重ねる
   - border-radius は付与しない（PNG 透過で書き出し済みのため） */

.c-teaser-brand_media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.05;
}

.c-teaser-brand_media-item {
  position: absolute;
  display: block;
}

.c-teaser-brand_media-item img,
.c-teaser-brand_media-item svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

/* 画像 1: 右上・奥側（後ろに表示） */

.c-teaser-brand_media-item--1 {
  top: 0;
  right: 0;
  width: 77.5%;
  z-index: 1;
}

/* 画像 2: 左下・手前側（前面に表示） */

.c-teaser-brand_media-item--2 {
  bottom: -200px;
  left: 0;
  width: 77.5%;
  z-index: 2;
}

/* タイトル / サブタイトル（本文の下に配置） */

.c-teaser-brand_titles {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.c-teaser-brand_title {
  margin: 0;
}

.c-teaser-brand_subtitle {
  margin: 0;
  color: #313337;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--text-font-family);
  line-height: 1.5;
}

/* min-width記載 */

@media screen and (min-width: 700px) {
  .c-teaser-brand_inner {
    --c-teaser-brand_gap: 64px;

    flex-direction: row;
    align-items: center;
    gap: var(--c-teaser-brand_gap);
  }

  .c-teaser-brand_content {
    flex: 1 1 0;
    min-width: 0;
    gap: 93px;
  }

  .c-teaser-brand_content p {
    font-size: 18px;
    line-height: calc(34 / 18);
    font-family: var(--text-font-family);
    color: #313337;
    font-weight: 500;
  }

  .c-teaser-brand_content p.c-teaser-brand_title {
    font-size: 38px;
    line-height: 1.5;
    font-family: var(--heading-font-family);
    font-weight: 400;
  }

  .c-teaser-brand_content p.c-teaser-brand_subtitle {
    font-size: 16px;
    line-height: 1.5;
    font-family: var(--text-font-family);
    font-weight: 500;
    color: #313337;
  }

  /* PC 表示（700px 以上）: SP 用本文を非表示 */

  .c-teaser-brand_body--mobile {
    display: none;
  }

  /* PC（700px 以上）でのサイズ・位置微調整
     - .c-teaser-brand_media は最大 600px
     - フルサイズ以下では 52.175cqw で横幅を比例縮小する
     - 画像 2 は下に -100px はみ出させて重なりを強調 */

  .c-teaser-brand_media {
    --c-teaser-brand_media-width: min(600px, 52.175cqw);

    flex: 0 0 var(--c-teaser-brand_media-width);
    min-width: 0;
    width: var(--c-teaser-brand_media-width);
    max-width: var(--c-teaser-brand_media-width);
  }

  .c-teaser-brand_media-item--1 {
    width: 63.5%;
  }

  .c-teaser-brand_media-item--2 {
    bottom: -100px;
    width: 63.5%;
  }

  .c-teaser-brand_subtitle {
    font-size: 16px;
  }

  .c-teaser-brand_titles {
    gap: 18px;
  }
}

/* max-width記載 */

@media screen and (max-width: 699px) {
  /* SP 表示（699px 以下）: PC 用本文を非表示 */

  .c-teaser-brand_body--pc {
    display: none;
  }

  .c-teaser-brand_body--mobile.prose p {
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
  }

  .c-teaser-brand_media {
    margin-block-end: 200px;
  }
}

/* ============================================================================
   c-teaser-items: ティザーアイテムセクション
   - sections/custom-teaser-items.liquid
   - 各カード = ブロック（画像 / タイトル / 英語説明 / 日本語説明）
   - PCは2カラム中央寄せ、SPはgapを指定可能（スマホの列数は常に1）
   - カード幅は 100cqw（コンテナ幅）/ 列数。スマホは常に1枚分幅
   - スマホ・縦積み（c-teaser-items--mobile-stack）: 横スクロールなし
   - スマホ・横スライド: 右側はコンテナを越えて次カードをチラ見え、横スクロールで閲覧
   - サムネイルに border-radius は付けない（PNG 想定）
   ============================================================================ */

/* 通常記載 */

/* セクション側 <style> で `#shopify-section-{{ section.id }}` に注入した
   --c-items-per-row / --c-card-gap を、この要素で再宣言してしまうと
   親の値が「同じ要素のプロパティ宣言」で上書きされて常に固定値になるため、
   ここではフォールバックを宣言せず、使用箇所で var(..., fallback) を指定する */

.c-teaser-items {
  /* track が `.bleed` で container 外まで広がるが、画面外への漏れは抑止する */
  overflow-x: clip;
}

/* セクション見出しエリア */

.c-teaser-items_header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.c-teaser-items_subheading {
  margin: 0;
}

.c-teaser-items_heading {
  margin: 0;
}

/* container query の基準
   - inner の幅 = .container の内側幅と一致するため、100cqw で「container 幅」を厳密に参照できる
   - PCは2分割、スマホは1枚分として --c-card-width を計算する */

.c-teaser-items_inner {
  container-type: inline-size;
  container-name: c-teaser-items-inner;
  --c-card-width: calc((100cqw - var(--c-card-gap, 16px) * (var(--c-items-per-row, 1) - 1)) / var(--c-items-per-row, 1));
}

/* カードトラック
   - ベースはスマホ横スライド用に viewport 右端まで広げる
   - PCは min-width: 700px で横スクロールを解除し、2カラム中央寄せにする
   - --c-bleed-side : 親 inner（= section の container 幅）から viewport 端までの片側距離
                     （右側 bleed の量に使う）
   - --c-md-distance: viewport 端から container--md 左端までの距離
                     （左側の padding / scroll-padding に使う）
   - 列幅は --c-card-width で固定 */

.c-teaser-items_track {
  --c-bleed-side: max(0px, (100vw - 100%) / 2);
  --c-md-distance: max(var(--container-gutter, 1.25rem), (100vw - var(--container-md-max-width, 71.875rem)) / 2);

  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--c-card-width);
  gap: var(--c-card-gap, 16px);

  margin-inline: calc(-1 * var(--c-bleed-side));
  padding-inline-start: var(--c-md-distance);
  padding-inline-end: var(--c-bleed-side);
  scroll-padding-inline-start: var(--c-md-distance);
  scroll-padding-inline-end: var(--c-bleed-side);

  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.c-teaser-items_track::-webkit-scrollbar {
  display: none;
}

/* カード本体
   - スマホ横スライド時は親 grid の grid-auto-columns で幅を決める
   - PCは min-width: 700px で flex-basis に var(--c-card-width) を指定する */

.c-teaser-items_card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

/* サムネイル: PNG 想定で border-radius を付けない */

.c-teaser-items_thumb {
  width: 100%;
  display: block;
}

.c-teaser-items_thumb img,
.c-teaser-items_thumb svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

/* テキストコンテンツ */

.c-teaser-items_content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* タイトル: 色はブロックごとの inline style で上書き */

.c-teaser-items_title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  font-family: var(--heading-font-family);
  line-height: 1.25;
}

/* 説明文（英語 / 日本語） */

.c-teaser-items_desc {
  margin: 0;
  line-height: 1.7;
}

.c-teaser-items_desc :where(p) {
  margin: 0;
}

.c-teaser-items_desc--en {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  font-family: var(--text-font-family);
  line-height: calc(20 / 14);
  color: #313337;
}

.c-teaser-items_desc--ja {
  font-size: 12px;
  color: #313337;
  font-weight: 500;
  line-height: calc(20 / 12);
  font-family: var(--text-font-family);
}

.c-teaser-items_desc--mobile {
  display: none;
}

.c-teaser-items_price {
  margin: 2px 0 0;
  color: #313337;
  font-family: var(--text-font-family);
  font-size: 15px;
  font-weight: 500;
  line-height: calc(22 / 15);
  letter-spacing: 0;
}

.c-teaser-items_price-tax {
  margin-inline-start: 2px;
  font-size: 0.8em;
  font-weight: 500;
}

/* min-width記載 */

@media screen and (min-width: 700px) {
  .c-teaser-items_header {
    gap: 12px;
    margin-bottom: 48px;
  }

  .c-teaser-items_track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: calc(var(--c-card-gap, 16px) + 32px);
    margin-inline: 0;
    padding-inline: 0;
    scroll-padding-inline: 0;
    overflow-x: visible;
    overscroll-behavior-x: auto;
    scroll-snap-type: none;
  }

  .c-teaser-items_card {
    flex: 0 1 var(--c-card-width);
    width: var(--c-card-width);
    gap: 20px;
    scroll-snap-align: none;
  }

  .c-teaser-items_content {
    gap: 12px;
  }

  .c-teaser-items_price {
    margin-top: 4px;
    font-size: 16px;
    line-height: calc(24 / 16);
  }
}

/* max-width記載 */

@media screen and (max-width: 699px) {
  /* スマホで「1列で縦に並べる」を選んだとき: 横スクロール・スナップ・bleed をやめて縦積み
     - sections/custom-teaser-items.liquid の c-teaser-items--mobile-stack（mobile_layout=stack）とセット */

  .c-teaser-items--mobile-stack .c-teaser-items_track {
    display: flex;
    flex-direction: column;
    gap: 34px;
    margin-inline: 0;
    padding-inline: 0;
    scroll-padding-inline: 0;
    overflow-x: visible;
    overscroll-behavior-x: auto;
    scroll-snap-type: none;
  }

  .c-teaser-items--mobile-stack .c-teaser-items_card {
    scroll-snap-align: none;
    width: 100%;
    max-width: 100%;
  }

  .c-teaser-items_desc--pc {
    display: none;
  }

  .c-teaser-items_desc--mobile {
    display: block;
  }
}

/* ============================================================================
   c-brand-items: ブランドアイテムセクション
   - sections/custom-brand-items.liquid
   - Custom Teaser Items をベースに、英語説明と価格を省略
   - PCは2カラム中央寄せ、SPは1カラム
   ============================================================================ */

.c-brand-items {
  overflow-x: clip;
}

.c-brand-items_inner {
  container-type: inline-size;
  container-name: c-brand-items-inner;
  --c-brand-items-card-width: calc((100cqw - var(--c-brand-items-column-gap, 24px) * (var(--c-brand-items-per-row, 1) - 1)) / var(--c-brand-items-per-row, 1));
}

.c-brand-items_track {
  display: flex;
  flex-direction: column;
  gap: var(--c-brand-items-row-gap, 34px);
}

.c-brand-items_card {
  min-width: 0;
}

.c-brand-items_thumb {
  display: block;
  width: 100%;
  margin-block-end: 16px;
}

.c-brand-items_thumb img,
.c-brand-items_thumb svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.c-brand-items_content {
  display: flex;
  flex-direction: column;
}

.c-brand-items_text {
  margin-block-end: 28px;
}

.c-brand-items_title {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 700;
  font-family: var(--heading-font-family);
  line-height: 1.25;
}

.c-brand-items_description {
  margin: 0;
  color: #313337;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: calc(20 / 12);
}

.c-brand-items_description :where(p) {
  margin: 0;
}

.c-brand-items_description--mobile {
  display: none;
}

.c-brand-items_button-wrap {
  display: flex;
  justify-content: var(--c-brand-items-button-align, flex-start);
}

.c-brand-items .c-brand-items_button.c-custom-slideshow__hero-button {
  width: fit-content;
  min-width: 230px;
  gap: 11px;
  border: 1px solid #313337;
  border-radius: 9999px;
  text-transform: uppercase;
}

@media screen and (min-width: 700px) {
  .c-brand-items_track {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: var(--c-brand-items-column-gap, 24px);
    row-gap: var(--c-brand-items-row-gap, 56px);
  }

  .c-brand-items_card {
    flex: 0 1 var(--c-brand-items-card-width);
    width: var(--c-brand-items-card-width);
  }

  .c-brand-items_text {
    margin-block-end: 26px;
  }
}

@media screen and (max-width: 699px) {
  .c-brand-items_description--pc {
    display: none;
  }

  .c-brand-items_description--mobile {
    display: block;
  }
}

/* ============================================================================
   c-teaser-footer: ティザー用フッターセクション
   - sections/custom-teaser-footer.liquid
   - 上部 2 カラム（左: 見出し + 4つの装飾アイコン / 右: SNS + メール登録フォーム）
   - 中央: 大きなブランドロゴ画像
   - 下部: コピーライト
   ============================================================================ */

/* 通常記載 */

/* セクション上部の角丸オプション */

.c-teaser-footer--rounded-top {
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  overflow: hidden;
}

/* 上部 2 カラム: モバイルは縦積み、PC（700px 以上）は 2 カラム */

.c-teaser-footer_top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: start;
}

/* 左カラム */

.c-teaser-footer_top-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.c-teaser-footer_heading {
  margin: 0;
  font-size: 38px;
  font-family: var(--heading-font-family);
  line-height: 1.5;
}

.c-teaser-footer_subheading {
  margin: 0;
  font-family: var(--text-font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin-block-start: 18px;
  margin-block-end: 39px;
}

/* 装飾アイコン列: 4 つ横並び（背景色・区切り線なし） */

.c-teaser-footer_icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  width: fit-content;
  margin: 8px 0 0;
  padding: 0;
}

.c-teaser-footer_icon-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-teaser-footer_icon-item img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* 右カラム */

.c-teaser-footer_top-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* SNS アイコン: PC は右寄せ、モバイルは左寄せで自然に配置 */

.c-teaser-footer_social {
  display: flex;
  justify-content: center;
  margin-block-start: 60px;
}

.c-teaser-footer_social svg {
  width: 26px;
  height: 26px;
}

/* メール登録フォームエリア */

.c-teaser-footer_newsletter {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
}

.c-teaser-footer_newsletter-heading {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

/* 下線タイプの入力欄 + 末尾のアイコンボタン（参考画像のレイアウト） */

.c-teaser-footer_form {
  width: 100%;
}

.c-teaser-footer_field {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgb(var(--text-color) / 0.4);
  transition: border-color 0.2s ease;
}

.c-teaser-footer_field:focus-within {
  border-bottom-color: rgb(var(--text-color) / 0.9);
}

.c-teaser-footer_input {
  flex: 1 1 auto;
  min-width: 0;
  height: 36px;
  border: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  padding: 0;
  outline: none;
}

.c-teaser-footer_input::placeholder {
  color: #CECECE;
  font-weight: 500;
  font-size: 12px;
}

.c-teaser-footer_submit {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.c-teaser-footer_submit:hover,
.c-teaser-footer_submit:focus-visible {
  opacity: 0.7;
}

.c-teaser-footer_submit:focus-visible {
  outline: 2px solid rgb(var(--text-color) / 0.4);
  outline-offset: 2px;
  border-radius: 4px;
}

/* 中央: 大きなブランドロゴ画像 */

.c-teaser-footer_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 80px;
}

.c-teaser-footer_logo-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* 下部: コピーライト */

.c-teaser-footer_copyright {
  margin: 100px 0 0;
  text-align: left;
  font-size: 14px;
  font-family: var(--heading-font-family);
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
}

.c-teaser-footer_social .social-media--list .social-media__item {
  opacity: 1;
}

.c-teaser-footer_social .social-media--list .social-media__item:hover {
  opacity: 0.7;
}

.c-teaser-footer_back-to-top {
  display: none;
}

/* min-width記載 */

@media screen and (min-width: 700px) {
  .c-teaser-footer--rounded-top {
    border-top-left-radius: 48px;
    border-top-right-radius: 48px;
  }

  .c-teaser-footer_top {
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: start;
  }

  .c-teaser-footer_icons {
    gap: 18px;
    margin-top: 40px;
  }

  .c-teaser-footer_icon-item img {
    width: 32px;
    height: 32px;
  }

  .c-teaser-footer_top-right {
    gap: 40px;
    margin-block-start: 32px;
  }

  .c-teaser-footer_social {
    justify-content: flex-end;
    margin-block-start: 0;
  }

  .c-teaser-footer_logo {
    margin-top: 108px;
  }

  .c-teaser-footer_copyright {
    margin-top: 108px;
    text-align: center;
  }
}

/* max-width記載 */

@media (max-width:699px) {
  .c-teaser-footer_back-to-top {
    display: flex;
    justify-content: center;
    margin-block-end: 32px;
  }

  .c-teaser-footer_heading {
    font-size: 26px;
    line-height: 1.5;
  }

  .c-teaser-footer_subheading {
    font-size: 15px;
    margin-block-start: 12px;
    margin-block-end: 32px;

  }

  .c-teaser-footer_logo {
    padding-inline: 18px;
  }

  .c-teaser-footer_copyright {
    margin: 60px 0 0;
  }

  .c-teaser-footer_input::placeholder {
    font-size: 11px;
  }
}

/* ============================================================================
   c-products-buttons: 商品詳細ボタン（sections/custom-products-buttons.liquid）
   ============================================================================ */
.shopify-section--custom-products-buttons .c-button__primary {
  border-radius: 9999px;
  min-width: 230px;
  border: 1px solid #313337;
  color: #313337;
  font-family: var(--text-font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  padding: 9.5px 12px;
  transition: all 0.2s ease;
}

.shopify-section--custom-products-buttons .c-button__primary:hover {
  color: #fff;
  background: #313337;
}

/* ============================================================================
   c-footer: メインフッター（sections/footer.liquid）
   - custom-teaser-footer に近いコンテナ幅・角丸・ロゴ・横並びメニュー
   ============================================================================ */

.shopify-section--footer {
  position: relative;
  isolation: isolate;
}

.shopify-section--footer::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 0;
  height: var(--c-footer-top-radius-mobile, 32px);
  background: var(--c-footer-top-radius-backdrop-color, transparent);
  pointer-events: none;
}

.shopify-section--footer .c-footer {
  position: relative;
  z-index: 1;
}

.shopify-section--footer .c-footer--rounded-top {
  border-top-left-radius: var(--c-footer-top-radius-mobile, 32px);
  border-top-right-radius: var(--c-footer-top-radius-mobile, 32px);
  overflow: hidden;
}

.shopify-section--footer .c-footer_top-link {
  display: none;
}

.shopify-section--footer .c-footer_top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: start;
}

.shopify-section--footer .c-footer_top-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.shopify-section--footer .c-footer_heading {
  margin: 0;
  font-size: 38px;
  font-family: var(--heading-font-family);
  line-height: 1.5;
}

.shopify-section--footer .c-footer_subheading {
  margin: 18px 0 39px;
  font-family: var(--text-font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.shopify-section--footer .c-footer_icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  width: fit-content;
  margin: 8px 0 0;
  padding: 0;
}

.shopify-section--footer .c-footer_icon-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.shopify-section--footer .c-footer_icon-item img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.shopify-section--footer .c-footer_top-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.shopify-section--footer .c-footer_social svg {
  width: 26px;
  height: 26px;
}

.shopify-section--footer .c-footer_newsletter {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
}

.shopify-section--footer .c-footer_newsletter-heading {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.shopify-section--footer .c-footer_form {
  width: 100%;
}

.shopify-section--footer .c-footer_field {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgb(var(--text-color) / 0.4);
  transition: border-color 0.2s ease;
}

.shopify-section--footer .c-footer_field:focus-within {
  border-bottom-color: rgb(var(--text-color) / 0.9);
}

.shopify-section--footer .c-footer_input {
  flex: 1 1 auto;
  min-width: 0;
  height: 36px;
  border: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  padding: 0;
  outline: none;
}

.shopify-section--footer .c-footer_input::placeholder {
  color: #CECECE;
  font-weight: 500;
  font-size: 12px;
}

.shopify-section--footer .c-footer_submit {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.shopify-section--footer .c-footer_submit:hover,
.shopify-section--footer .c-footer_submit:focus-visible {
  opacity: 0.7;
}

.shopify-section--footer .c-footer_submit:focus-visible {
  outline: 2px solid rgb(var(--text-color) / 0.4);
  outline-offset: 2px;
  border-radius: 4px;
}

.shopify-section--footer .c-footer_nav-area {
  display: grid;
}

.shopify-section--footer .c-footer_nav-upper {
  display: grid;
  gap: 0;
}

.shopify-section--footer .c-footer_middle-nav_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 20px 44px;
  margin: 0;
  padding: 0;
  padding-block-end: 44px;
  border-bottom: 1px solid #5B5B5B;
}

.shopify-section--footer .c-footer_middle-nav_list li {
  display: inline-flex;
}

.shopify-section--footer .c-footer_middle-nav_list a {
  color: #fff;
}

.shopify-section--footer .c-footer_middle-nav--mobile {
  display: none;
}

.shopify-section--footer .c-footer_mobile-menu_list,
.shopify-section--footer .c-footer_mobile-submenu_list {
  margin: 0;
  padding: 0;
}

.shopify-section--footer .c-footer_mobile-menu_list {
  display: grid;
  justify-items: start;
  gap: 20px;
}

.shopify-section--footer .c-footer_mobile-menu_details {
  display: grid;
}

.shopify-section--footer .c-footer_mobile-menu_summary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  cursor: pointer;
  list-style: none;
}

.shopify-section--footer .c-footer_mobile-menu_summary::-webkit-details-marker {
  display: none;
}

.shopify-section--footer .c-footer_mobile-menu_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.shopify-section--footer .c-footer_mobile-menu_details[open] .c-footer_mobile-menu_icon {
  transform: rotate(180deg);
}

.shopify-section--footer .c-footer_mobile-submenu_list {
  display: grid;
  justify-items: start;
  gap: 12px;
  padding-block-start: 14px;
  padding-inline-start: 16px;
}

.shopify-section--footer .c-footer_mobile-submenu_list .header__dropdown-link-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.shopify-section--footer .c-footer_mobile-submenu_list .header__dropdown-link-text {
  min-width: 0;
}

.shopify-section--footer .c-footer_mobile-submenu_list .header__dropdown-product-color {
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--header-dropdown-product-color);
}

.shopify-section--footer .c-footer_mobile-submenu_list--nested {
  gap: 10px;
  padding-block-start: 10px;
}

.shopify-section--footer .c-footer_mobile-menu_link {
  display: inline-flex;
}

.shopify-section--footer .c-footer_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.shopify-section--footer .c-footer_logo-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.shopify-section--footer .c-footer_policies {
  padding-block-start: 0;
  margin-block-start: 18px;
  margin-block-end: 0;
}

.shopify-section--footer .c-footer_policies_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem 1rem;
  margin: 0;
  padding: 0;
}

.shopify-section--footer .c-footer_policies_list li {
  display: inline-flex;
}

.shopify-section--footer .c-footer_social {
  display: flex;
  justify-content: center;
}

.shopify-section--footer .c-footer_newsletter--mobile,
.shopify-section--footer .c-footer_social--mobile {
  display: none;
}

.shopify-section--footer .c-footer_social .social-media--list .social-media__item {
  opacity: 1;
}

.shopify-section--footer .c-footer_social .social-media--list .social-media__item:hover {
  opacity: 0.7;
}

.shopify-section--footer .c-footer_copyright {
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  leading-trim: none;
  line-height: 22px;
  letter-spacing: 0;
}

.shopify-section--footer .footer__aside {
  justify-content: center;
  text-align: center;
}

.shopify-section--footer .footer__aside,
.shopify-section--footer .footer__aside * {
  text-transform: none;
}

@media screen and (min-width: 700px) {
  .shopify-section--footer::before {
    height: var(--c-footer-top-radius-desktop, 48px);
  }

  .shopify-section--footer .c-footer--rounded-top {
    border-top-left-radius: var(--c-footer-top-radius-desktop, 48px);
    border-top-right-radius: var(--c-footer-top-radius-desktop, 48px);
  }

  .shopify-section--footer .c-footer_top {
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: start;
  }

  .shopify-section--footer .c-footer_icons {
    gap: 18px;
    margin-top: 40px;
  }

  .shopify-section--footer .c-footer_icon-item img {
    width: 32px;
    height: 32px;
  }

  .shopify-section--footer .c-footer_top-right {
    gap: 40px;
    margin-block-start: 32px;
  }

  .shopify-section--footer .c-footer_policies_list {
    gap: 16px 30px;
  }

  .shopify-section--footer .c-footer_social {
    justify-content: flex-end;
  }
}

@media screen and (max-width: 699px) {
  .shopify-section--footer .c-footer .container--lg {
    margin-inline: 18px;
  }

  .shopify-section--footer .c-footer_top-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-inline: auto;
  }

  .shopify-section--footer .c-footer_top-link svg {
    display: block;
  }

  .shopify-section--footer .c-footer_middle-nav--desktop {
    display: none;
  }

  .shopify-section--footer .c-footer_middle-nav--mobile {
    display: block;
  }

  .shopify-section--footer .c-footer_top-right {
    display: none;
  }

  .shopify-section--footer .c-footer_logo {
    margin-block-start: 81px;
    margin-block-end: 61px;
    margin-inline: auto;
    max-width: 299px;
  }

  .shopify-section--footer .c-footer_mobile-menu_list,
  .shopify-section--footer .c-footer_mobile-menu_list a,
  .shopify-section--footer .c-footer_mobile-menu_summary {
    color: #fff;
  }

  .shopify-section--footer .c-footer_policies {
    position: relative;
    width: 100%;
    margin-block-start: 41px;
    padding-block-start: 31px;
    color: #A3A3A3;
  }

  .shopify-section--footer .c-footer_policies::before {
    content: "";
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 50%;
    width: 100vw;
    border-block-start: 1px solid #5B5B5B;
    transform: translateX(-50%);
  }

  .shopify-section--footer .c-footer_policies_list {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 0;
  }

  .shopify-section--footer .c-footer_policies_list li {
    display: flex;
  }

  .shopify-section--footer .c-footer_policies a {
    display: inline-flex;
    padding-block: 9px;
    color: #A3A3A3;
  }

  .shopify-section--footer .c-footer_newsletter--mobile {
    display: flex;
    max-width: none;
    margin-inline: 0;
    margin-block-start: 48px;
  }

  .shopify-section--footer .c-footer_social--mobile {
    display: flex;
    width: 100%;
  }

  .shopify-section--footer .footer__aside {
    justify-content: start;
    justify-items: start;
    text-align: left;
  }

  .shopify-section--footer .c-footer_heading {
    font-size: 26px;
    line-height: 1.5;
  }

  .shopify-section--footer .c-footer_subheading {
    font-size: 15px;
    margin-block-start: 12px;
    margin-block-end: 32px;
  }

  .shopify-section--footer .c-footer_input::placeholder {
    font-size: 11px;
  }
}

/* section - Contact */
/* 通常記載 */

.shopify-section--contact .select {
  box-shadow: none;
}

.shopify-section--contact .input::placeholder,
.shopify-section--contact .textarea::placeholder {
  font-size: 12px;
}

/* ネイティブselectは閉じた表示に option の font-size が効かないため、空値時は custom.js が .c-contact_select_placeholder を付与 */

.shopify-section--contact .select.c-contact_select_placeholder {
  font-size: 12px;
}

/* max-width記載 */

@media screen and (max-width: 699px) {

  .shopify-section--contact .input::placeholder,
  .shopify-section--contact .textarea::placeholder {
    font-size: 11px;
  }

  /* iOS Safari 等: select の font-size が 16px 未満だとフォーカス時に画面が拡大される（viewport 固定ではなくコントロール側で対策） */
  .shopify-section--contact .select,
  .shopify-section--contact .select.c-contact_select_placeholder {
    font-size: 16px;
  }

  .shopify-section--contact .select.c-contact_select_placeholder {
    color: transparent;
    border-color: rgb(var(--border-color));
  }

  .shopify-section--contact .select.c-contact_select_placeholder:focus-visible {
    border-color: rgb(var(--input-text-color, var(--text-color)));
  }

  .shopify-section--contact .c-contact_select_placeholder_control::after {
    content: attr(data-c-contact-select-placeholder);
    position: absolute;
    z-index: 1;
    inset-block-start: 50%;
    inset-inline-start: var(--input-padding-inline);
    inset-inline-end: calc(var(--input-padding-inline) * 2 + 10px);
    transform: translateY(-50%);
    color: rgb(var(--input-text-color, var(--text-color)) / .6);
    font-size: 11px;
    line-height: 1;
    overflow: hidden;
    pointer-events: none;
    text-align: start;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/* section - FAQ */
.faq__category {
  background: #f0f0f0;
  padding: 8px 12px;
  border-radius: 4px;
  font-weight: 500;
  font-family: var(--text-font-family);
  color: #313337;
  line-height: 1.5;
}

.accordion__toggle .animated-plus {
  min-width: 16px;
}

@media (min-width:700px) {
  .accordion__content p {
    font-size: 13px;
  }
}

/* section - Custom Styling Slider */
/* Swiper は overflow:hidden のため bottom をマイナスにするとページネーションがクリップされる。セクションの padding-bottom で確保した下の余白内に配置する */
.c-styling-slider_swiper .swiper-pagination {
  bottom: 10px;
}

.shopify-section--custom-styling-slider .c-styling-slider_heading {
  font-size: 14px;
  font-family: var(--heading-font-family);
  font-weight: 300;
  line-height: 1.5;
  text-transform: none;
  color: #313337;
}

/* section - Custom Slideshow */
.shopify-section--custom-slideshow {
  background: #000;
}

.c-custom-slideshow {
  --c-custom-slideshow-concept-progress: 0;

  position: relative;
  min-height: var(--c-custom-slideshow-background-height);
  color: rgb(var(--text-color));
  background: rgb(var(--background));
  isolation: isolate;
}

.c-custom-slideshow__background {
  position: sticky;
  top: 0;
  z-index: 0;
  height: var(--c-custom-slideshow-background-height);
  overflow: hidden;
  background: rgb(var(--background));
}

.c-custom-slideshow__media,
.c-custom-slideshow__media picture,
.c-custom-slideshow__media-item,
.c-custom-slideshow__media video-media,
.c-custom-slideshow__media iframe,
.c-custom-slideshow__media video,
.c-custom-slideshow__media img,
.c-custom-slideshow__placeholder {
  width: 100%;
  height: 100%;
}

.c-custom-slideshow__media {
  position: absolute;
  inset: 0;
}

.c-custom-slideshow__media picture {
  display: block;
}

.c-custom-slideshow__media-item {
  display: block;
}

.c-custom-slideshow__media-item--mobile {
  display: none;
}

.c-custom-slideshow__media iframe,
.c-custom-slideshow__media video,
.c-custom-slideshow__media img,
.c-custom-slideshow__placeholder {
  display: block;
  object-fit: cover;
  object-position: center;
}

.c-custom-slideshow__base-overlay,
.c-custom-slideshow__concept-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.c-custom-slideshow__base-overlay {
  z-index: 1;
  background: rgb(0 0 0 / var(--c-custom-slideshow-bg-overlay-opacity));
}

.c-custom-slideshow__concept-overlay {
  z-index: 2;
  background: rgb(0 0 0 / calc(var(--c-custom-slideshow-concept-overlay-max-opacity) * var(--c-custom-slideshow-concept-progress)));
  -webkit-backdrop-filter: blur(calc(var(--c-custom-slideshow-concept-blur-max) * var(--c-custom-slideshow-concept-progress)));
  backdrop-filter: blur(calc(var(--c-custom-slideshow-concept-blur-max) * var(--c-custom-slideshow-concept-progress)));
  transition:
    background-color 0.18s linear,
    -webkit-backdrop-filter 0.18s linear,
    backdrop-filter 0.18s linear;
  will-change: background, backdrop-filter;
}

.c-custom-slideshow__panels {
  position: relative;
  z-index: 1;
  margin-top: calc(-1 * var(--c-custom-slideshow-background-height));
}

.c-custom-slideshow__panel {
  position: relative;
  display: grid;
  min-height: var(--c-custom-slideshow-fill-height);
  padding-inline: var(--container-gutter);
}

.c-custom-slideshow__hero {
  min-height: var(--c-custom-slideshow-hero-min-height);
}

.c-custom-slideshow__hero-buttons {
  position: absolute;
  inset-block-end: 40px;
  inset-inline-start: 50%;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: max-content;
  max-width: calc(100% - (var(--container-gutter) * 2));
  transform: translateX(-50%);
}

.c-custom-slideshow__hero-buttons>.c-custom-slideshow__hero-button {
  appearance: none;
  background-image: none;
  background-color: #fff;
  box-shadow: none;
  min-width: 230px;
}

.c-custom-slideshow__hero-button,
.c-custom-slideshow__slider-button,
.c-custom-slideshow__concept-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 11px 18px;
  border: 1px solid #fff;
  border-radius: 9999px;
  background: #fff;
  color: #313337;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: none;
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.c-custom-slideshow__hero-button::before,
.c-custom-slideshow__hero-button::after {
  content: none;
}

.c-custom-slideshow__hero-button svg,
.c-custom-slideshow__slider-button svg,
.c-custom-slideshow__concept-button svg {
  flex: 0 0 auto;
}

.c-custom-slideshow__hero-button:hover,
.c-custom-slideshow__slider-button:hover,
.c-custom-slideshow__concept-button:hover {
  background: #313337;
  border-color: #313337;
  color: #fff;
}

.c-custom-slideshow__slider-panel {
  min-height: var(--c-custom-slideshow-slider-min-height);
  overflow-x: hidden;
  padding-inline: 0;
  align-items: center;
}

.c-custom-slideshow__slider-inner {
  display: block;
  width: 100%;
  padding-block: clamp(56px, 9vw, 128px);
}

.c-custom-slideshow__slider-heading-wrap {
  padding-block-end: clamp(24px, 4vw, 56px);
  color: currentColor;
}

.c-custom-slideshow__slider-heading {
  font-size: 14px;
  font-family: var(--heading-font-family);
  font-weight: 300;
  line-height: 1.5;
  text-transform: none;
  color: currentColor;
}

.c-custom-slideshow__styling-slider {
  width: 100%;
  margin-inline: auto;
  overflow: hidden;
  padding-block: calc(16px * var(--c-custom-slideshow-vw-scale));
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.c-custom-slideshow__styling-slider.is-dragging {
  cursor: grabbing;
}

.c-custom-slideshow__styling-track {
  display: flex;
  align-items: stretch;
  gap: var(--c-custom-slideshow-slider-gap-mobile);
  will-change: transform;
}

.c-custom-slideshow__styling-slide {
  flex: 0 0 var(--c-custom-slideshow-slider-slide-width-mobile);
  width: var(--c-custom-slideshow-slider-slide-width-mobile);
  height: auto;
  box-sizing: border-box;
  container-type: inline-size;
  container-name: c-custom-slideshow-slide;
}

.c-custom-slideshow__styling-slide[data-c-custom-slideshow-loop-clone="true"] {
  pointer-events: none;
}

.c-custom-slideshow__styling-slide-inner {
  height: auto;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: var(--c-custom-slideshow-slider-slide-radius);
  background: var(--c-custom-slideshow-slider-image-bg);
}

.c-custom-slideshow__styling-media {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  flex-shrink: 0;
  aspect-ratio: var(--c-custom-slideshow-slider-aspect-mobile-w) / var(--c-custom-slideshow-slider-aspect-mobile-h);
  max-height: none;
}

.c-custom-slideshow__styling-media img,
.c-custom-slideshow__styling-media .placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
}

.c-custom-slideshow__styling-copy {
  flex-shrink: 0;
  padding: calc(16px * var(--c-custom-slideshow-vw-scale));
  color: currentColor;
}

.c-custom-slideshow__slider-cta {
  margin-block-start: calc(28px * var(--c-custom-slideshow-vw-scale));
  padding-inline: calc(1.25rem * var(--c-custom-slideshow-vw-scale));
}

.c-custom-slideshow__slider-button {
  min-width: calc(230px * var(--c-custom-slideshow-vw-scale));
}

.c-custom-slideshow__empty-state {
  padding-block: 48px;
  color: currentColor;
}

.c-custom-slideshow__concept {
  min-height: var(--c-custom-slideshow-concept-min-height);
  align-items: center;
  color: var(--c-custom-slideshow-concept-text-color);
}

.c-custom-slideshow__concept-inner {
  width: 100%;
  display: grid;
  gap: clamp(40px, 7vw, 96px);
  padding-block: clamp(72px, 12vw, 160px);
}

.c-custom-slideshow__concept-block {
  position: relative;
  width: 100%;
  color: currentColor;
  opacity: calc(0.12 + (0.88 * var(--c-custom-slideshow-concept-progress)));
  filter: blur(calc(10px * (1 - var(--c-custom-slideshow-concept-progress))));
  transition:
    opacity 0.18s linear,
    filter 0.18s linear;
  will-change: opacity, filter;
}

.c-custom-slideshow__concept-subheading,
.c-custom-slideshow__concept-empty-heading {
  margin: 0;
  color: currentColor;
  font-family: var(--heading-font-family);
  font-weight: var(--heading-font-weight);
  font-style: var(--heading-font-style);
  letter-spacing: var(--heading-letter-spacing);
  line-height: 1.7;
  text-transform: var(--heading-text-transform);
}

.c-custom-slideshow__concept-subheading {
  font-size: var(--text-h6);
}

.c-custom-slideshow__concept-empty-heading {
  font-size: var(--text-h5);
}

.c-custom-slideshow__concept-heading {
  margin: 0;
  color: currentColor;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
  overflow-wrap: anywhere;
}

.c-custom-slideshow__concept-subheading+.c-custom-slideshow__concept-heading {
  margin-block-start: 24px;
}

.c-custom-slideshow__concept-heading+.c-custom-slideshow__concept-description {
  margin-block-start: 9px;
}

.c-custom-slideshow__concept-description {
  color: currentColor;
}

.c-custom-slideshow__concept-description-text,
.c-custom-slideshow__concept-detail-heading,
.c-custom-slideshow__concept-detail-text {
  margin-block-start: 0;
}

.c-custom-slideshow__concept-description-text {
  font-size: 18px;
  line-height: 2;
}

.c-custom-slideshow__concept-description :where(p) {
  margin: 0;
}

.c-custom-slideshow__concept-description :where(p+p) {
  margin-block-start: 24px;
}

.c-custom-slideshow__concept-description-text--mobile,
.c-custom-slideshow__concept-detail-heading--mobile,
.c-custom-slideshow__concept-detail-text--mobile {
  display: none;
}

.c-custom-slideshow__concept-detail {
  margin-block-start: 48px;
  margin-block-end: 36px;
}

.c-custom-slideshow__concept-detail-heading {
  margin: 0;
  margin-block-end: 20px;
  color: #fff;
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
}

.c-custom-slideshow__concept-detail-heading :where(p) {
  margin: 0;
  line-height: inherit;
}

.c-custom-slideshow__concept-detail-title-image {
  display: block;
  width: 100%;
  max-width: 326px;
  height: auto;
  margin-inline: auto;
}

.c-custom-slideshow__concept-detail-heading--desktop .c-custom-slideshow__concept-detail-title-image {
  max-width: 460px;
}

.c-custom-slideshow__concept-detail-text {
  margin: 0;
  color: currentColor;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: calc(22 / 18);
  letter-spacing: 0;
  text-align: center;
}

.c-custom-slideshow__concept-detail+.c-custom-slideshow__concept-detail-image {
  display: block;
  width: 100%;
  max-width: 490px;
  height: auto;
  margin-inline: auto;
  margin-block-end: 100px;
}

.c-custom-slideshow__concept-block+.c-custom-slideshow__concept-block {
  border-block-start: 1px solid rgb(255 255 255 / 0.22);
  padding-block-start: clamp(40px, 7vw, 96px);
}

@supports (container-type: inline-size) {
  .c-custom-slideshow__styling-media {
    aspect-ratio: unset;
    max-height: none;
    height: calc(100cqw * var(--c-custom-slideshow-slider-aspect-mobile-h) / var(--c-custom-slideshow-slider-aspect-mobile-w));
  }
}

@media screen and (min-width: 700px) {
  .c-custom-slideshow__hero-buttons {
    inset-block-end: 80px;
  }

  .c-custom-slideshow__styling-slider {
    width: 100%;
    margin-inline: 0;
  }

  .c-custom-slideshow__styling-track {
    gap: var(--c-custom-slideshow-slider-gap-desktop);
  }

  .c-custom-slideshow__styling-slide {
    flex-basis: calc((100% - var(--c-custom-slideshow-slider-gap-desktop) * var(--c-custom-slideshow-slider-gap-units-desktop)) / var(--c-custom-slideshow-slider-denom-desktop));
    width: calc((100% - var(--c-custom-slideshow-slider-gap-desktop) * var(--c-custom-slideshow-slider-gap-units-desktop)) / var(--c-custom-slideshow-slider-denom-desktop));
  }

  .c-custom-slideshow__styling-media {
    aspect-ratio: var(--c-custom-slideshow-slider-aspect-desktop-w) / var(--c-custom-slideshow-slider-aspect-desktop-h);
    max-height: var(--c-custom-slideshow-slider-max-height-desktop);
  }

  @supports (container-type: inline-size) {
    .c-custom-slideshow__styling-media {
      height: min(calc(100cqw * var(--c-custom-slideshow-slider-aspect-desktop-h) / var(--c-custom-slideshow-slider-aspect-desktop-w)),
          var(--c-custom-slideshow-slider-max-height-desktop));
    }
  }
}

@media screen and (min-width: 1000px) {
  .c-custom-slideshow__concept-heading {
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 0;
  }
}

@media screen and (max-width: 999px) {
  .c-custom-slideshow__concept>.container--md {
    padding-inline: 0;
  }

  .c-custom-slideshow__concept-heading {
    position: static;
    inset: auto;
    text-align: left;
  }

  .c-custom-slideshow__concept-heading+.c-custom-slideshow__concept-description {
    margin-block-start: 24px;
  }

  .c-custom-slideshow__concept-description :where(p+p) {
    margin-block-start: 80px;
  }

  .c-custom-slideshow__concept-description-text--desktop,
  .c-custom-slideshow__concept-detail-heading--desktop,
  .c-custom-slideshow__concept-detail-text--desktop {
    display: none;
  }

  .c-custom-slideshow__concept-description-text--mobile,
  .c-custom-slideshow__concept-detail-heading--mobile,
  .c-custom-slideshow__concept-detail-text--mobile {
    display: block;
  }

  .c-custom-slideshow__concept-detail-text--mobile {
    font-size: 12.76px;
  }

  .c-custom-slideshow__concept-detail {
    display: flex;
    flex-direction: column;
    margin-block-start: 80px;
    margin-block-end: 80px;
  }

  .c-custom-slideshow__concept-detail-heading {
    font-size: 38px;
    line-height: calc(42 / 38);
  }
}

@media screen and (max-width: 699px) {
  .c-custom-slideshow__hero-buttons {
    inset-block-end: 0;
    margin-block-end: 64px;
  }

  .c-custom-slideshow__concept-detail {
    display: flex;
    flex-direction: column;
    margin-block-start: 40px;
    margin-block-end: 40px;
  }

  .c-custom-slideshow__concept-detail-heading {
    line-height: calc(42 / 38);
    max-width: 250px;
    text-align: center;
    margin-inline: auto;
  }

  .c-custom-slideshow__media-item--desktop {
    display: none;
  }

  .c-custom-slideshow__media-item--mobile {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  .c-custom-slideshow__concept-overlay {
    transition: none;
  }

  .c-custom-slideshow__concept-block {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

/*============================================================================
  #Blogs
==============================================================================*/

/* ブログカード抜粋: 3行を超える場合は末尾を三点リーダーで省略（PC・SP共通） */

.blog-post-card__excerpt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;
}

.blog-post-card__category {
  background: #313337;
  color: #fff;
  border-radius: 9999px;
  font-family: var(--text-font-family);
  font-size: 10px;
  display: inline-block;
  padding: 2px 12px;
  transition: opacity 0.2s ease;
}

.blog-post-card__category:hover {
  background: #313337;
  color: #fff;
  opacity: 0.8;
}

.blog-post-card__info {
  gap: 8px;
}

/*============================================================================
  #Article（記事ページ）
==============================================================================*/

/* 記事 Sticky ツールバー（.article__toolbar）を画面上部ではなく画面下部に固定 */

.article__toolbar {
  inset-block-start: auto;
  inset-block-end: 0;
  padding-block-end: calc(1rem + env(safe-area-inset-bottom, 0px));
  transform: translateY(100%);
  transition: transform 0.2s, visibility 0.2s;
  z-index: 10;
}

.article__toolbar.is-visible {
  transform: translateY(0);
}

/*============================================================================
  #Product
==============================================================================*/
/* Product Info */
.c-product-info_product-icon {
  width: 38px;
  height: 38px;
}

.c-product-info_product-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.c-product-info__title {
  font-size: 32px;
  font-family: var(--heading-font-family);
  color: #313337;
  font-weight: 400;
  line-height: 1.5;
  text-transform: none;
}

.c-product-info__color-count {
  margin-block-start: 4px;
  color: #313337;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.shopify-section--main-product .product-info .c-product-info__block-item--description {
  margin-block-start: 28px;
  margin-block-end: 18px;
}

.shopify-section--main-product .product-info .c-product-info__block-item--description p {
  font-weight: 500;
  font-family: var(--text-font-family);
  font-size: 12px;
  line-height: calc(20 / 12);
  color: #313337;
  text-transform: none;
}

.shopify-section--main-product .product-info .c-product-info__block-item--price {
  margin-block-start: 24px;
  margin-block-end: 30px;
}

.shopify-section--main-product .product-info .c-product-info__block-item--variant-picker .variant-picker__option-info {
  font-family: var(--noto-sans-jp-font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: calc(17 / 14);
  color: #313337;
  text-transform: none;
  margin-block-end: 10px;
}

.shopify-section--main-product .product-info .c-product-info__block-item--variant-picker .thumbnail-swatch {
  --swatch-size: 84px;
  width: 84px;
  height: 84px;
  border-radius: 14px;
}

@media screen and (min-width: 700px) {
  .shopify-section--main-product .product-info .c-product-info__block-item--variant-picker .thumbnail-swatch {
    --swatch-size: 94px;
    width: 94px;
    height: 94px;
  }
}

.shopify-section--main-product .product-info .c-product-info__block-item--variant-picker .variant-picker__option--gift-wrapping {
  margin-block-start: 8px;
}

.shopify-section--main-product .product-info .c-product-info__block-item--variant-picker .variant-picker__option--gift-wrapping .block-swatch,
.shopify-section--main-product .product-info .c-product-info__block-item--variant-picker .variant-picker__option--gift-wrapping :checked+.block-swatch,
.shopify-section--main-product .product-info .c-product-info__block-item--variant-picker .variant-picker__option--gift-wrapping .block-swatch.is-selected {
  border-radius: 10px;
  font-family: var(--noto-sans-jp-font-family);
  font-weight: 400;
}

.shopify-section--main-product .product-info .c-product-info__block-item--variant-picker .variant-picker__option--gift-wrapping .block-swatch.is-disabled:before {
  border-radius: inherit;
}

/* バリエーション（ラッピング等）直下の注意文 */
.c-variant-picker_wrapping-notice {
  margin: 0;
  padding: 0;
  color: #313337;
}

.c-variant-picker_wrapping-notice-title {
  margin: 0 0 13px;
  font-family: var(--text-font-family);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  color: #313337;
  letter-spacing: 0;
  text-transform: none;
}

.c-variant-picker_wrapping-notice-body {
  margin: 0;
}

.c-variant-picker_wrapping-notice-body p {
  margin: 0;
  font-family: var(--text-font-family);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #313337;
}

.c-product-info__block-item--quantity-selector-label {
  font-family: var(--noto-sans-jp-font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: calc(17 / 14);
  color: #313337;
  text-transform: none;
  margin-block-end: 8px;
}

.c-free-shipping-bar_okinawa-note {
  display: inline-block;
  margin-block-start: 6px;
  padding: 6px;
  border-radius: 4px;
  background-color: #fafbfc;
}

.shopify-section--main-product .product-info .c-product-info__block-item--quantity-selector {
  margin-block-start: 30px;
}

/* Buy Buttons */
.buy-buttons__add-to-cart {
  border-color: currentColor;
  transition: none;
}

.product-info__block-item .buy-buttons__add-to-cart {
  border-radius: 9999px;
}

/* 売り切れ・選択不可（snippets/buy-buttons.liquid の .c-buy-buttons_add-to-cart--sold-out）— 見た目を固定 */
.buy-buttons__add-to-cart.c-buy-buttons_add-to-cart--sold-out {
  border-color: #313337 !important;
  background-color: #313337 !important;
  background-image: none !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  transition: none !important;
  --button-background: 49 51 55;
  --button-text-color: 255 255 255;
  --button-outline-color: 49 51 55;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
}

@media screen and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .features--button-transition .buy-buttons__add-to-cart.c-buy-buttons_add-to-cart--sold-out:hover {
    border-color: #313337 !important;
    background-color: #313337 !important;
    background-image: none !important;
    color: #fff !important;
  }
}

/* カートに追加ボタンだけ、テーマ標準のhover背景アニメーションを無効化 */
.features--button-transition .buy-buttons__add-to-cart:not([disabled]) {
  transition: none;
}

@media screen and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .features--button-transition .buy-buttons__add-to-cart:not([disabled]):hover {
    border-color: currentColor;
    background-position: var(--initial-background-position);
    background-size: 101% 101%, 0 101%;
  }

  .features--button-transition .buy-buttons__add-to-cart:not(.button--outline):not([disabled]):hover {
    color: rgb(var(--button-text-color));
  }

  .features--button-transition .buy-buttons__add-to-cart.button--outline:not([disabled]):hover {
    color: rgb(var(--button-background, var(--text-color)));
  }
}

/* 商品情報ブロック内の動的チェックアウト（アンブランド）を ATC と同様ピル型に */
.product-info__block-item .shopify-payment-button__button.shopify-payment-button__button--unbranded {
  /* theme.css の border-radius が !important のため追随 */
  border-radius: 9999px !important;
}

.product-sticky-bar .buy-buttons .button {
  border-radius: 9999px;
}

.product-sticky-bar span.h5 {
  text-transform: none;
  font-family: var(--heading-font-family);
}

.quantity-selector {
  border-radius: 9999px;
  border: 1px solid #DBDBDB;
}

/* Sticky Add to Cart Bar */
/* Prestige 標準では 700px 以上のみヘッダー下に固定されているため、すべて画面下端に統一する */
@media screen and (min-width: 700px) {
  .product-sticky-bar {
    inset-block-start: auto;
    inset-block-end: 0;
    border-block-end-width: 0;
    border-block-start-width: 1px;
    border-block-start-style: solid;
    border-block-start-color: rgb(var(--border-color));
    padding-block-start: 1.125rem;
    padding-block-end: calc(1.125rem + env(safe-area-inset-bottom, 0px));
  }
}

/* Price List */
.price-list sale-price {
  font-weight: 300;
}

.c-prodcut-info__price,
.c-product-info__price {
  font-size: 20px;
  font-weight: 300;
  font-family: var(--heading-font-family);
  color: #313337;
  line-height: 1;
  text-transform: none;
}

.c-price--list__tax-text {
  display: inline-block;
  margin-inline-start: .35em;
  font-size: 10px;
  font-family: var(--noto-sans-jp-font-family);
  color: #313337;
  font-weight: 300;
  line-height: 1;
}

/*============================================================================
  #Product — Custom アコーディオン（acordion ブロック）
==============================================================================*/

/* アコーディオン系（acordion / accordion-spec / theme accordion）が連続するとき、間隔を合計 8px にする
   （.product-info__block-list は各ブロックに margin-block-start と margin-block-end の両方が付くため、片方を 0 にして二重を解消） */
.product-info__block-list>.product-info__block-item:is([data-block-type="acordion"], [data-block-type="accordion-spec"], [data-block-type="accordion"]):has(+ .product-info__block-item:is([data-block-type="acordion"], [data-block-type="accordion-spec"], [data-block-type="accordion"])) {
  margin-block-end: 0;
}

.product-info__block-list>.product-info__block-item:is([data-block-type="acordion"], [data-block-type="accordion-spec"], [data-block-type="accordion"])+.product-info__block-item:is([data-block-type="acordion"], [data-block-type="accordion-spec"], [data-block-type="accordion"]) {
  margin-block-start: 8px;
}

/* .product-form__custom-acordion の上余白は「アコーディオン系が連続するときの先頭」だけ（2枚目以降は block-list 側の 8px 相当で足る） */
.product-form__custom-acordion {
  margin-block-start: 0;
}

.product-info__block-list>.product-info__block-item:is([data-block-type="acordion"], [data-block-type="accordion-spec"]):not( :is([data-block-type="acordion"], [data-block-type="accordion-spec"], [data-block-type="accordion"]) + .product-info__block-item) .product-form__custom-acordion {
  margin-block-start: 32px;
}

/* ============ 商品フォーム・アコーディオン（acordion / Spec は見た目共通） ============ */

/* 商品フォーム内のカスタムアコーディオン（acordion ブロック・Spec）は同一のパネル見た目 */
.product-form__custom-acordion>.c-acordion {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.product-form__custom-acordion>.c-acordion>.c-acordion__toggle {
  border-inline: none;
  border-color: #eee;
  /* 見出し直下の全幅ボーダーは付けない（開閉どちらも border-block-end は無し） */
  border-block-end: none;
  border-block-start: 1px solid #eee;
  font-family: var(--text-font-family);
  font-weight: 700;
  font-size: 14px;
  color: #313337;
  padding: 18px 28px;
  text-transform: none;
}

.product-form__custom-acordion>.c-acordion>.c-acordion__toggle:first-child {
  border-block-start: none;
}

/* アコーディオン同士の縦方向の間隔（同一枠内で見出し同士の区切り） */
.product-form__custom-acordion>.c-acordion>.c-acordion__toggle~.c-acordion__toggle {
  margin-block-start: 8px;
}

/* アイコン: 閉＝＋SVG、開＝横棒SVG（デザイン指定 11×11 / #313337）※ right:auto は inset-inline-end を打ち消すため付けない */
.product-form__custom-acordion>.c-acordion>.c-acordion__toggle::before {
  content: '';
  transition: none;
  display: block;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2211%22%20height%3D%2211%22%20viewBox%3D%220%200%2011%2011%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M5%200.5C5%200.223858%205.22386%200%205.5%200V0C5.77614%200%206%200.223858%206%200.5V10.5C6%2010.7761%205.77614%2011%205.5%2011V11C5.22386%2011%205%2010.7761%205%2010.5V0.5Z%22%20fill%3D%22%23313337%22%2F%3E%3Cpath%20d%3D%22M0.5%206C0.223858%206%202.66948e-09%205.77614%205.96244e-09%205.5V5.5C9.25541e-09%205.22386%200.223858%205%200.5%205L10.5%205C10.7761%205%2011%205.22386%2011%205.5V5.5C11%205.77614%2010.7761%206%2010.5%206L0.5%206Z%22%20fill%3D%22%23313337%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px;
}

.product-form__custom-acordion>.c-acordion>.c-acordion__toggle.is-active::before {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2211%22%20height%3D%2211%22%20viewBox%3D%220%200%2011%2011%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M0.5%206C0.223858%206%202.66948e-09%205.77614%205.96244e-09%205.5V5.5C9.25541e-09%205.22386%200.223858%205%200.5%205L10.5%205C10.7761%205%2011%205.22386%2011%205.5V5.5C11%205.77614%2010.7761%206%2010.5%206L0.5%206Z%22%20fill%3D%22%23313337%22%2F%3E%3C%2Fsvg%3E");
  transform: translateY(-50%);
}

.product-form__custom-acordion>.c-acordion>.c-acordion__toggle::after {
  content: none;
}

/* パネル開閉: [hidden] は custom.js が除去。max-height/opacity で制御。サイズ表あり/なしで挙動を揃えるためトランジションは付けない */
.product-form__custom-acordion>.c-acordion>.c-acordion__content {
  --c-acordion-panel-max-h: 4400px;
  display: block;
  box-sizing: border-box;
  height: auto;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  margin-block-start: 0;
  margin-block-end: 0;
  overflow: hidden;
  line-height: 1.625;
  font-size: 14px;
  font-family: var(--text-font-family);
  transition: none;
}

.product-form__custom-acordion>.c-acordion>.c-acordion__content.is-open {
  max-height: var(--c-acordion-panel-max-h);
  opacity: 1;
  pointer-events: auto;
  overflow: visible;
}

.c-product-spec_body.c-acordion__content {
  padding: 0;
  font-family: var(--text-font-family);
}

/*
 * 折りたたみ時も横パディングは維持（閉じるときにテーブル幅がガクッと変わらないようにする）
 */
.product-form__custom-acordion>.c-acordion>.c-acordion__content:not(.c-product-spec_body):not(.is-open) {
  padding-block: 0;
  padding-inline: 1rem;
}

.product-form__custom-acordion>.c-acordion>.c-acordion__content:not(.c-product-spec_body).is-open {
  padding-block-start: 0;
  padding-block-end: 18px;
  padding-inline: 1rem;
}

.c-product-spec_list {
  margin: 0;
  padding: 0 28px;
}

/* dt/dd を1セットごとに分割（一覧の罫線は行ラッパーに集約） */
.c-product-spec_row {
  display: grid;
  grid-template-columns: minmax(7.5rem, 0.9fr) minmax(0, 1.1fr);
  column-gap: 1rem;
  border-block-end: 1px solid #eee;
}

.c-product-spec_row:first-child {
  border-block-start: 1px solid #eee;
}

.c-product-spec_term {
  grid-column: 1;
  margin: 0;
  padding: 12px 0;
  font-size: 14px;
  line-height: 1.625;
  color: #313337;
  opacity: 0.82;
  font-weight: 400;
}

.c-product-spec_def {
  grid-column: 2;
  margin: 0;
  font-size: 14px;
  line-height: 1.625;
  color: #313337;
}

.c-product-spec_def>*:first-child {
  margin-block-start: 0;
}

.c-product-spec_manual {
  margin: 0;
  padding: 14px 28px 32px;
  font-size: 14px;
  line-height: 1.625;
  color: #313337;
}

.c-product-spec_manual-suffix {
  color: #313337;
}

.c-product-spec_manual-link.link {
  color: #18BEE8;
}

@media screen and (max-width: 699px) {
  .c-product-spec_list {
    padding: 0 20px;
  }

  .c-product-spec_row {
    grid-template-columns: 1fr;
  }

  .c-product-spec_term {
    grid-column: 1;
    padding-inline: 0;
    padding-block-start: 16px;
    padding-block-end: 0;
    font-size: 11px;
    font-weight: 400;
  }

  .c-product-spec_def {
    grid-column: 1;
    font-family: var(--noto-sans-jp-font-family);
    font-size: 14px;
    font-weight: 500;
  }

  .c-product-spec_manual {
    padding: 14px 20px 32px;
  }

  /* 上記と同詳細度の dd パディング（SP） */
  .c-product-spec_body.c-acordion__content dd.c-product-spec_def {
    padding-inline: 0;
    padding-block-start: 10px;
    padding-block-end: 18px;
  }
}

/* ============ Acordion ============ */
.c-acordion {
  border-bottom: 1px solid rgba(var(--text-color));
}

.c-acordion__toggle {
  cursor: pointer;
  line-height: 1.5;
  padding: 18px 40px 18px 0;
  font-family: var(--heading-font-family);
  font-weight: 400;
  font-size: 14px;
  color: #191616;
  position: relative;
  text-transform: uppercase;
  appearance: none;
  -webkit-appearance: none;
  display: block;
  width: 100%;
  margin: 0;
  background: none;
  border-width: 1px 0 0;
  border-style: solid;
  border-color: rgba(var(--text-color));
  text-align: inherit;
}

.c-acordion__toggle:focus-visible {
  outline: 2px solid currentcolor;
  outline-offset: 2px;
}

.c-acordion--large .c-acordion__toggle {
  padding: 18px 40px 18px 0;
}

.c-acordion__toggle:before {
  content: "";
  width: 13px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='8' viewBox='0 0 13 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.8477 0.847656L6.84766 6.84766L6.42383 7.27246L6 6.84766L0 0.847656L0.847656 0L6.42383 5.57617L12 0L12.8477 0.847656Z' fill='%23191616'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  right: 6px;
  top: 50%;
  transition: 0.4s;
  transform: translateY(-50%) rotate(0deg);
}

.c-acordion__toggle.is-active:before {
  transform: translateY(-50%) rotate(180deg);
}

.c-acordion__content {
  line-height: 0;
  height: 0;
  opacity: 0;
  padding-left: 0;
  font-size: 14px;
  font-family: var(--text-font-family);
  font-weight: 400;
  line-height: 1.825;
  color: #191616;
  overflow: hidden;
}

.c-acordion__content p strong {
  font-weight: 700;
  display: block;
  margin-block-end: 8px;
}

.c-acordion__content table.c-acordion__table {
  --table-spacing: 12px;
}

.c-acordion__table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
  font-family: var(--text-font-family);
  color: #191616;
}

.c-acordion__table th,
.c-acordion__table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(var(--text-color), 0.2);
  vertical-align: top;
}

.c-acordion__content .c-acordion__table td {
  font-size: 12px;
}

.c-acordion__content .c-acordion__table th {
  font-weight: 600;
  background-color: rgba(var(--text-color), 0.1);
  font-family: var(--text-font-family);
  font-size: 11px;
  letter-spacing: 0.5px;
  padding: 8px 12px;
}

.c-acordion__content .c-acordion__table th:first-child {
  padding-inline-start: 12px;
}

.c-acordion__content .c-acordion__table td:first-child {
  padding-inline-start: 12px;
}

.c-acordion__content .c-acordion__table:has(tr:nth-child(2)) td:first-child {
  padding-block-end: 12px;
}

.c-acordion__content .c-acordion__table th:last-child {
  padding-inline-end: 12px;
}

.c-acordion__content .c-acordion__table td:last-child {
  padding-inline-end: 12px;
}

.c-acordion__table tr:last-child td {
  border-bottom: none;
}

/* 商品フォーム内サイズ表: 最終行に下線 ＋ 表下に余白 */
.product-form__custom-acordion .c-acordion__table--size tbody tr:last-child th,
.product-form__custom-acordion .c-acordion__table--size tbody tr:last-child td {
  border-bottom: 1px solid rgba(var(--text-color), 0.2);
  padding-block-end: 12px;
}

.product-form__custom-acordion .c-acordion__content .table-wrapper:has(.c-acordion__table--size) {
  margin-block-end: 12px;
}

/* 商品フォーム内アコーディオンのテーブル: 13px・Noto Sans JP・#313337（サイズ表の TH のみウェイト 500） */
.product-form__custom-acordion .c-acordion__table th,
.product-form__custom-acordion .c-acordion__table td,
.product-form__custom-acordion .c-acordion__table--size th,
.product-form__custom-acordion .c-acordion__table--size td,
.product-form__custom-acordion table.js-product-size-chart-table th,
.product-form__custom-acordion table.js-product-size-chart-table td {
  font-size: 13px;
  font-weight: 400;
  font-family: var(--noto-sans-jp-font-family);
  color: #313337;
}

/* サイズガイド表の見出し行（TH）のみウェイトを上げる */
.product-form__custom-acordion .c-acordion__table--size th,
.product-form__custom-acordion table.js-product-size-chart-table th {
  font-weight: 500;
}

.product-form__custom-acordion .c-acordion__table :is(th, td) :is(a, .link) {
  color: rgb(var(--text-color));
  text-decoration: underline;
}

/*============================================================================
  #Product — オプション説明ブロック（option_notice）
==============================================================================*/
.c-product-option-notice {
  width: 100%;
  box-sizing: border-box;
  background: #fafbfc;
  border-radius: 6px;
  /* 指定: 上30px・横30px（下は画像下が詰まらないよう最小限） */
  padding-block-start: 30px;
  padding-inline: 30px;
  padding-block-end: 24px;
}

.c-product-option-notice_title {
  margin: 0 0 13px;
  font-family: var(--text-font-family);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #313337;
}

.c-product-option-notice_body {
  margin: 0;
}

.c-product-option-notice_body p {
  margin: 0 0 0.75em;
  font-family: var(--text-font-family);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #313337;
}

.c-product-option-notice_body p:last-child {
  margin-bottom: 0;
}

.c-product-option-notice_note {
  margin-block-start: 7px;
}

.c-product-option-notice_note p {
  margin: 0;
  font-family: var(--text-font-family);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.5;
  color: #313337;
}

.c-product-option-notice_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-block-start: 13px;
}

.c-product-option-notice>.c-product-option-notice_grid:first-child {
  margin-block-start: 0;
}

.c-product-option-notice_cell {
  width: 100%;
  max-width: 112px;
  aspect-ratio: 1;
}

.c-product-option-notice_img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

@media screen and (max-width: 699px) {
  .shopify-section--main-product .product-info .c-product-info__block-item--variant-picker .variant-picker__option--gift-wrapping {
    margin-block-start: 6px;
  }

  .c-variant-picker_wrapping-notice-body p {
    font-size: 11px;
  }

  .c-product-option-notice {
    padding-block: 28px;
    padding-inline: 20px;
  }
}

.c-acordion__table tr:nth-child(even) td {
  background-color: #fff;
}

.c-acordion__table tr:nth-child(odd) td {
  background-color: #fff;
}

.c-acordion__content>div.c-acordion__detail {
  margin-block-start: 12px;
}

.c-acordion__content>div.c-acordion__detail dt {
  font-weight: 500;
  font-family: var(--text-font-family);
  font-size: 13px;
}

.rte .c-acordion__table table {
  margin: 0;
  padding: 0;
  border-collapse: collapse;
  width: 100%;
}

.rte .c-acordion__table table th,
.rte .c-acordion__table table td {
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  text-align: inherit;
  vertical-align: inherit;
}

.c-acordion__content.is-open {
  line-height: normal;
  height: auto;
  opacity: 1;
  margin-bottom: 25px;
  overflow: visible;
}

.c-acordion__content.is-open a {
  pointer-events: auto;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.c-acrodion__list>div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0;
}

.c-acrodion__list>div:not(:first-child) {
  border-top: 1px solid rgba(var(--text-color), 0.2);
}

.c-acrodion__list dt {
  font-weight: 600;
  background-color: rgba(var(--text-color), 0.1);
  font-family: var(--text-font-family);
  font-size: 11px;
  letter-spacing: 0.5px;
  padding: 8px 12px;
}

.c-acrodion__list dd {
  font-weight: 400;
  font-family: var(--text-font-family);
  font-size: 11px;
  padding: 8px 12px 8px 16px;
  margin-left: 0;
}

.c-acordion__content dd {
  margin-left: 0;
  font-weight: 400;
  font-family: var(--text-font-family);
  font-size: 14px;
  padding: 8px 12px 8px 16px;
  margin-inline-start: 0;
}

/* アコーディオン汎用 .c-acordion__content dd が Spec メタリストの dd に上書きしないよう詳細度高く指定する（罫線に対して中だけインデントして見える） */
.c-product-spec_body.c-acordion__content dd.c-product-spec_def {
  padding-block: 12px;
  padding-inline: 0;
}

@media screen and (max-width: 699px) {
  .c-product-spec_body.c-acordion__content dd.c-product-spec_def {
    padding-inline: 0;
    padding-block-start: 10px;
    padding-block-end: 18px;
    font-weight: 500;
  }
}

.c-acordion__content p {
  font-weight: 400;
  font-family: var(--text-font-family);
  font-size: 14px;
}

@media screen and (max-width: 699px) {
  .c-acordion__table {
    font-size: 13px;
  }

  .c-acordion__table th,
  .c-acordion__table td {
    padding: 8px 12px;
  }

  .c-acordion__content .c-acordion__table td {
    font-size: 11px;
    background-color: #ffffff;
  }

  .c-acordion__content .c-acordion__table th {
    font-size: 9px;
    padding: 8px 12px;
  }

  .c-acordion__content .c-acordion__table th:first-child {
    padding-inline-start: 12px;
  }

  .c-acordion__content .c-acordion__table td:first-child {
    padding-inline-start: 12px;
  }

  /* 商品フォーム内のサイズ表など: SP でも 13px 固定 */
  .product-form__custom-acordion .c-acordion__content .c-acordion__table td,
  .product-form__custom-acordion .c-acordion__content .c-acordion__table th,
  .product-form__custom-acordion .c-acordion__table--size th,
  .product-form__custom-acordion .c-acordion__table--size td,
  .product-form__custom-acordion table.js-product-size-chart-table th,
  .product-form__custom-acordion table.js-product-size-chart-table td {
    font-size: 13px;
    font-weight: 400;
    font-family: var(--noto-sans-jp-font-family);
    color: #313337;
  }

  .product-form__custom-acordion .c-acordion__table--size th,
  .product-form__custom-acordion table.js-product-size-chart-table th {
    font-weight: 500;
  }

  .c-acordion__content .c-acordion__table th:last-child {
    padding-inline-end: 12px;
  }

  .c-acordion__content .c-acordion__table td:last-child {
    padding-inline-end: 12px;
  }

  /* JS が生成する「単一 table.c-acordion__table--size」にも効くよう、内側 table と併記 */
  .c-acordion__table--size {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: calc(100vw - var(--container-gutter) * 2);
  }

  .c-acordion__table--size table,
  .c-acordion__table--size {
    min-width: 600px;
    width: auto;
    table-layout: fixed;
  }

  .c-acordion__table--size th,
  .c-acordion__table--size td {
    white-space: nowrap;
    min-width: 80px;
    width: auto;
  }

  .c-acordion__content:has(.c-acordion__table--size) .table-wrapper {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }

  .c-acordion__toggle {
    font-size: 13px;
    padding: 20px 30px 20px 0;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  .c-acordion__content,
  .c-acordion__content p {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  .c-acordion__toggle:before {
    width: 13px;
    height: 8px;
    right: 8px;
  }

  .product-form__custom-acordion>.c-acordion>.c-acordion__toggle {
    padding: 18px 20px;
    font-size: 14px;
  }

  .product-form__custom-acordion>.c-acordion>.c-acordion__toggle::before {
    width: 11px;
    height: 11px;
    background-size: 11px 11px;
    top: 50%;
    right: 10px;
  }

  .c-acordion--large .c-acordion__toggle {
    padding: 18px 30px 18px 0;
  }

  .simplebar-track.simplebar-vertical {
    width: 1px;
    height: 1px;
  }

  .simplebar-scrollbar {
    background: #434343;
    height: 2px;
    border-radius: 999px;
  }

  .c-acordion__content dd {
    font-size: 13px;
  }

  .c-acordion__content p {
    font-size: 13px;
  }
}

/*============================================================================
  section - Custom Multi Column（商品フィーチャー／メタオブジェクト）
==============================================================================*/

/* カード内（画像〜本文など）グリッドの行間 theme 既定 2rem → 1rem（overlap時はテーマ側 gap:0 が優先） */
.shopify-section--custom-multi-column .multi-column__item.c-multi-column__item {
  gap: 1rem;
}

.shopify-section--custom-multi-column .multi-column__media > img {
  border-radius: 12px;
}

/* 見出し直後 rich_text／.prose 隣接子の24px は使わず 12px。内側先頭ブロックは親で間隔確保済みなので余計な上マージンを無効化 */
.shopify-section--custom-multi-column .prose>.metafield-rich_text_field {
  margin-block-start: 12px;
}

.shopify-section--custom-multi-column .metafield-rich_text_field> :first-child {
  margin-block-start: 0;
}

@media screen and (min-width: 700px) {
  .metafield-rich_text_field p {
    font-size: 13px;
    font-weight: 500;
  }
}

@media screen and (max-width: 699px) {
  .shopify-section--custom-multi-column multi-column.c-custom-multi-column_root {
    row-gap: 38px;
  }

  .shopify-section--custom-multi-column .prose .c-multi-column__title {
    font-size: 16px;
  }

  .metafield-rich_text_field p {
    font-size: 13px;
    font-weight: 500;
  }
}

@media screen and (min-width: 700px) {
  .shopify-section--custom-multi-column multi-column.c-custom-multi-column_root.c-custom-multi-column--pc-grid {
    row-gap: 56px;
  }
}

/* （PC で「グリッド」選択時）column-gap は section 内 Liquid で --multi-column-gap: 60px と列幅算出を統一済み */

/*============================================================================
  #Collection
==============================================================================*/

/*============================================================================
  #Sidebar
==============================================================================*/
.cart-drawer__items a.h6,
.cart-drawer__items p.smallcaps {
  text-transform: none;
}

/*============================================================================
  #Header
==============================================================================*/
.header__dropdown-menu {
  border-radius: 12px;
  box-shadow: 0 2px 4px rgb(0 0 0 / 8%);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  inset-block-start: calc(100% - 17px);
  padding-block: 14px;
}

.header__primary-nav-item>dropdown-menu-disclosure>.header__menu-disclosure>.header__dropdown-menu {
  margin-left: -30px;
}

.header__primary-nav-item .header__primary-nav-link--has-dropdown::before {
  display: none;
}

.header__dropdown-menu :is(a, summary) {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.header__dropdown-menu::before {
  border-radius: 12px 12px 0 0;
}

[aria-expanded="true"]>.header__dropdown-menu::before {
  display: none;
}

.header__dropdown-menu .header__dropdown-link {
  display: flex;
  align-items: center;
}

.header__dropdown-menu a[href="/collections/all"] {
  margin-block-start: 18px;
}

.header__dropdown-menu .header__dropdown-link--summary {
  justify-content: space-between;
  gap: 16px;
}

.header__dropdown-menu .header__dropdown-link-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.header__dropdown-menu .header__dropdown-link-text {
  min-width: 0;
}

.header__dropdown-menu .header__dropdown-link-label:not(:has(.header__dropdown-product-color)) .header__dropdown-link-text {
  background: linear-gradient(to right, currentColor, currentColor) 0 min(100%, 1.35em) / 100% 1px no-repeat;
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  transition: background-size .3s ease-in-out;
}

@supports (height: 1lh) {
  .header__dropdown-menu .header__dropdown-link-label:not(:has(.header__dropdown-product-color)) .header__dropdown-link-text {
    background: linear-gradient(to right, currentColor, currentColor) 0 min(100%, 1.2lh) / 100% 1px no-repeat;
  }
}

@media screen and (pointer: fine) {
  .header__dropdown-menu .header__dropdown-link:hover .header__dropdown-link-label:not(:has(.header__dropdown-product-color)) .header__dropdown-link-text {
    background-size: 0 1px;
  }
}

.header__dropdown-menu .header__dropdown-product-color {
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--header-dropdown-product-color);
}

.c-header__mobile-menu-link button {
  display: grid;
  place-items: center;
}

.c-header__mobile-menu-icon {
  grid-area: 1 / 1;
  transition: opacity .2s ease, transform .2s ease;
}

.c-header__mobile-menu-icon--close {
  opacity: 0;
  transform: rotate(-90deg) scale(.8);
}

.c-header__mobile-menu-link button[aria-expanded="true"] .c-header__mobile-menu-icon--menu {
  opacity: 0;
  transform: rotate(90deg) scale(.8);
}

.c-header__mobile-menu-link button[aria-expanded="true"] .c-header__mobile-menu-icon--close {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.shopify-section--header .header {
  border-bottom: 1px solid #F4F4F4;
}

.product-gallery__carousel-shell {
  position: relative;
  width: 100%;
}

.product-gallery__arrow {
  position: absolute;
  inset-block-start: 50%;
  z-index: 2;
  display: block;
  color: #000;
  transform: translateY(-50%);
}

.product-gallery__arrow--prev {
  inset-inline-start: 18px;
}

.product-gallery__arrow--next {
  inset-inline-end: 18px;
}

.product-gallery__arrow-button {
  appearance: none;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.product-gallery__arrow-button svg {
  display: block;
  width: 9px;
  height: 16px;
}

.product-gallery__arrow-button[disabled] {
  opacity: .3;
  cursor: default;
  pointer-events: none;
}

.product-gallery {
  --product-gallery-gap: 10px;
  --product-gallery-thumbnail-list-gap: 8px;
  --product-gallery-thumbnail-size: 76px;
}

.product-gallery__thumbnail {
  width: 76px;
  height: 76px;
  border-radius: 12px;
  overflow: hidden;
}

.product-gallery__thumbnail > img {
  border-radius: 11px;
}

.product-gallery__thumbnail-scroller {
  padding-inline: 18px;
}

@media screen and (min-width: 700px) {
  .product-gallery__arrow--prev {
    inset-inline-start: 30px;
  }

  .product-gallery__arrow--next {
    inset-inline-end: 30px;
  }

  .product-gallery {
    --product-gallery-gap: 14px;
    --product-gallery-thumbnail-list-gap: 10px;
    --product-gallery-thumbnail-size: 100px;
  }

  .product-gallery__thumbnail {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
  }

  .product-gallery__thumbnail-scroller {
    padding-inline: 0;
  }
}

@media screen and (max-width: 767px) {
  .shopify-section--main-product {
    overflow-x: hidden;
  }

  .product-gallery__arrow--next {
    inset-inline-end: -18px;
  }

  .product-gallery__arrow--prev {
    inset-inline-start: -18px;
  }
}

@media screen and (max-width: 999px) {
  .shopify-section--announcement-bar {
    position: relative;
    z-index: 4;
  }

  .shopify-section--header .header {
    column-gap: 1.25rem;
  }

  .shopify-section--header .header__primary-nav,
  .shopify-section--header .header__search-link {
    display: none;
  }

  .shopify-section--header .header__secondary-nav {
    gap: 26px;
    justify-content: flex-end;
    justify-self: end;
  }

  .shopify-section--header .header__account-link {
    order: 1;
  }

  .shopify-section--header .header__cart-link {
    order: 2;
  }

  .shopify-section--header .c-header__mobile-menu-link {
    order: 3;
  }

  .header-sidebar {
    --drawer-max-width: 100vw;
    z-index: 3;
  }

  .header-sidebar::part(content) {
    width: 100vw;
    max-width: 100vw;
    overflow-y: auto;
  }

  .header-sidebar::part(header) {
    display: none;
  }

  .header-sidebar__main-panel {
    margin-block-start: var(--c-header-sidebar-offset, calc(var(--announcement-bar-height, 0px) + var(--header-height, 0px)));
  }

  .header-sidebar__scroller {
    height: 100vh;
    padding: 0 18px;
    border-top: 1px solid #F4F4F4;
    overflow-y: visible;
  }

  .header-sidebar__main-panel>.header-sidebar__scroller>.header-sidebar__linklist,
  .header-sidebar__collapsible-panel {
    display: none !important;
  }

  .c-header-sidebar-search {
    display: grid;
    gap: 14px;
  }

  .c-header-sidebar__search-label {
    margin-block-start: 0;
    padding-block-start: 28px;
    padding-block-end: 5px;
  }

  .c-header-sidebar-search__label {
    color: #313337;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
  }

  .c-header-sidebar-search__field {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding-inline: 20px 18px;
    border: 1px solid #dbdbdb;
    border-radius: 999px;
    background: #fff;
  }

  .c-header-sidebar-search__button {
    flex: 0 0 auto;
    color: #313337;
  }

  .c-header-sidebar-search__input {
    flex: 1 1 auto;
    min-width: 0;
    border: 0;
    background: transparent;
    color: #313337;
    font: inherit;
    outline: 0;
  }

  .c-header-sidebar-menu {
    margin-block-start: 22px;
  }

  .c-header-sidebar-menu summary {
    list-style: none;
  }

  .c-header-sidebar-menu summary::-webkit-details-marker {
    display: none;
  }

  .c-header-sidebar-menu__summary,
  .c-header-sidebar-menu__link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    padding-block: 11px;
    color: #313337;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    text-decoration: none;
  }

  .c-header-sidebar-menu__nested-summary,
  .c-header-sidebar-menu__nested-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    color: #313337;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;
  }

  .c-header-sidebar-menu__panel {
    padding-block: 8px 14px;
  }

  .c-header-sidebar-menu__nested {
    display: grid;
    margin-inline-start: 20px;
    row-gap: 16px;
  }

  .c-header-sidebar-menu__nested--third {
    padding-block-start: 16px;
    padding-inline-start: 18px;
  }

  .c-header-sidebar-menu__arrow {
    flex: 0 0 auto;
    transition: transform .2s ease;
  }

  .c-header-sidebar-menu__details[open]>summary .c-header-sidebar-menu__arrow {
    transform: rotate(180deg);
  }

  .c-header-sidebar-menu .header__dropdown-link-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
  }

  .c-header-sidebar-menu .header__dropdown-product-color {
    flex: 0 0 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--header-dropdown-product-color);
  }

  .c-header-sidebar-menu .header__dropdown-link-label:not(:has(.header__dropdown-product-color)) .header__dropdown-link-text {
    background: linear-gradient(to right, currentColor, currentColor) 0 min(100%, 1.35em) / 100% 1px no-repeat;
    text-decoration: none;
  }

  .c-header-sidebar-menu__summary>.header__dropdown-link-label:not(:has(.header__dropdown-product-color)) .header__dropdown-link-text,
  .c-header-sidebar-menu__link>.header__dropdown-link-label:not(:has(.header__dropdown-product-color)) .header__dropdown-link-text {
    background: none;
  }

  .c-header-sidebar-menu__nested-item:has(.header__dropdown-product-color)+.c-header-sidebar-menu__nested-item:not(:has(.header__dropdown-product-color)) {
    margin-block-start: 14px;
  }

  .c-header-sidebar-menu__details>.c-header-sidebar-menu__panel>.c-header-sidebar-menu__nested>.c-header-sidebar-menu__nested-item:last-child {
    margin-block-end: 15px;
  }

  .c-header-sidebar-policies {
    width: 100vw;
    margin-block-start: 31px;
    margin-inline-start: -18px;
    margin-inline-end: -18px;
    padding: 18px 18px 0;
    border-block-start: 1px solid #f3f4f5;
  }

  .c-header-sidebar-policies__list {
    display: grid;
    row-gap: 18px;
  }

  .c-header-sidebar-policies__link {
    color: #A3A3A3;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;
  }

  .c-header-sidebar-footer {
    display: grid;
    justify-items: stretch;
    margin-block-start: 60px;
    margin-block-end: 0;
    padding-block-end: 16px;
  }

  .c-header-sidebar-footer__logo {
    display: block;
    width: 100%;
    margin-block-end: 40px;
  }

  .c-header-sidebar-footer__logo-image {
    width: 100%;
    height: auto;
  }

  .c-header-sidebar-footer__social {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-block-end: 100px;
    color: #313337;
  }

  .c-header-sidebar-footer__social .social-media {
    justify-content: center;
  }

  .c-header-sidebar-footer__social .social-media--list .social-media__item {
    opacity: 1;
  }

  .c-header-sidebar-footer__social :is(a, svg) {
    width: 26px;
    height: 26px;
    color: #313337;
  }

  .c-header-sidebar-footer__copyright {
    margin: 0;
    color: #313337;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
  }
}

@supports (height: 100dvh) {
  @media screen and (max-width: 999px) {
    .header-sidebar__scroller {
      height: 100dvh;
    }
  }
}

/*============================================================================
  #Footer
==============================================================================*/

/* ============================================================================
   Custom Lineup: template--21372830449905__custom_lineup_q3iAH3
   ============================================================================ */
#shopify-section-template--21372830449905__custom_lineup_q3iAH3 .c-lineup_product-head.c-lineup_product-head {
  align-items: flex-end;
}

#shopify-section-template--21372830449905__custom_lineup_q3iAH3 .c-lineup_title.c-lineup_title {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1;
}

#shopify-section-template--21372830449905__custom_lineup_q3iAH3 .c-lineup_icon.c-lineup_icon {
  width: clamp(43px, 5.6666667vw, 68px);
  height: clamp(43px, 5.6666667vw, 68px);
}

#shopify-section-template--21372830449905__custom_lineup_q3iAH3 .c-lineup_color.c-lineup_color {
  color: #313337;
  font-size: 16px;
  font-weight: 300;
  opacity: 1;
}

@media screen and (min-width: 700px) {
  #shopify-section-template--21372830449905__custom_lineup_q3iAH3 .c-lineup_title.c-lineup_title {
    font-size: clamp(44px, 6.1666667vw, 74px);
  }
}

@media screen and (max-width: 699px) {
  #shopify-section-template--21372830449905__custom_lineup_q3iAH3 .c-lineup_title.c-lineup_title {
    font-size: 44px;
  }

  #shopify-section-template--21372830449905__custom_lineup_q3iAH3 .c-lineup_icon.c-lineup_icon {
    width: 43px;
    height: 43px;
  }

  #shopify-section-template--21372830449905__custom_lineup_q3iAH3 .c-lineup_color.c-lineup_color {
    font-size: 12px;
  }
}

@media screen and (max-width: 990px) {
  #shopify-section-template--21372830449905__custom_lineup_q3iAH3 .c-lineup_button.c-lineup_button {
    justify-self: center;
    margin-inline: auto;
  }
}

/*============================================================================
  #Video
==============================================================================*/

.shopify-section--video .c-video__bordered-section {
  border-block-start: 1px solid #F1F1F1;
}

.shopify-section--video .c-video__container--full {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: 0;
}

@media screen and (max-width: 699px) {
  .shopify-section--video .c-video__container--mobile-full {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding-inline: 0;
  }
}

/*============================================================================
  #Animation
==============================================================================*/

/* ============================================================================
   c-custom-brand-kv: ブランドKVセクション
   - sections/custom-brand-kv.liquid
   ============================================================================ */

.c-custom-brand-kv {
  --c-custom-brand-kv-sticky-offset: var(--sticky-area-height, 0px);
  --c-custom-brand-kv-fill-height: max(0px, calc(100vh - var(--c-custom-brand-kv-sticky-offset)));

  position: relative;
  min-height: var(--c-custom-brand-kv-fill-height);
  background: var(--c-custom-brand-kv-background, #F8F5EF);
  color: #313337;
}

.shopify-section--custom-brand-kv:first-child .c-custom-brand-kv {
  --c-custom-brand-kv-sticky-offset: calc(var(--announcement-bar-height, 0px) + var(--header-height, 0px));
}

.shopify-section--custom-brand-kv:first-child .c-custom-brand-kv[allow-transparent-header] {
  --c-custom-brand-kv-sticky-offset: var(--announcement-bar-height, 0px);
}

@supports (height: 100svh) {
  .c-custom-brand-kv {
    --c-custom-brand-kv-fill-height: max(0px, calc(100svh - var(--c-custom-brand-kv-sticky-offset)));
  }
}

.c-custom-brand-kv__logo-panel {
  min-height: var(--c-custom-brand-kv-fill-height);
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-custom-brand-kv__logo-frame {
  box-sizing: border-box;
  width: min(100%, calc(var(--c-custom-brand-kv-logo-max-width-mobile, 260px) + (var(--c-custom-brand-kv-logo-padding-mobile, 20px) * 2)));
  padding-inline: var(--c-custom-brand-kv-logo-padding-mobile, 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  filter: blur(12px);
  transition:
    opacity var(--c-custom-brand-kv-reveal-duration, 1.2s) var(--c-custom-brand-kv-reveal-ease, cubic-bezier(0.22, 1, 0.36, 1)),
    filter var(--c-custom-brand-kv-reveal-duration, 1.2s) var(--c-custom-brand-kv-reveal-ease, cubic-bezier(0.22, 1, 0.36, 1));
  transition-delay: var(--c-custom-brand-kv-reveal-delay, 0s);
  will-change: opacity, filter;
}

.c-custom-brand-kv.c-custom-brand-kv--logo-visible .c-custom-brand-kv__logo-frame {
  opacity: 1;
  filter: blur(0);
}

.c-custom-brand-kv__logo-image,
.c-custom-brand-kv__logo-placeholder {
  display: block;
  width: 100%;
  max-width: var(--c-custom-brand-kv-logo-max-width-mobile, 260px);
  height: auto;
}

.c-custom-brand-kv__text {
  box-sizing: border-box;
  width: 100%;
  margin-inline: auto;
  padding: 0 24px 72px;
  text-align: center;
  color: #313337;
}

.c-custom-brand-kv__text--desktop {
  display: none;
}

.c-custom-brand-kv__text--mobile {
  display: block;
}

.c-custom-brand-kv__text--desktop .c-custom-brand-kv__heading {
  text-align: var(--c-custom-brand-kv-heading-align-desktop, center);
}

.c-custom-brand-kv__text--desktop .c-custom-brand-kv__richtext {
  text-align: var(--c-custom-brand-kv-text-align-desktop, center);
}

.c-custom-brand-kv__text--mobile .c-custom-brand-kv__heading {
  text-align: var(--c-custom-brand-kv-heading-align-mobile, center);
}

.c-custom-brand-kv__text--mobile .c-custom-brand-kv__richtext {
  text-align: var(--c-custom-brand-kv-text-align-mobile, center);
}

.c-custom-brand-kv__heading {
  margin: 0 0 40px;
  color: #313337;
  font-family: var(--text-font-family);
  font-size: 20px;
  font-weight: 500;
  line-height: calc(42 / 20);
  letter-spacing: 0;
  text-transform: none;
}

.c-custom-brand-kv__text--mobile .c-animate_blur-in {
  --c-animate-blur-in-duration: 1.2s;
  --c-animate-blur-in-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Custom Rich Text: ブラーインの時間・イージングを Brand KV と揃える */
.c-custom-rich-text .c-animate_blur-in {
  --c-animate-blur-in-duration: 1.2s;
  --c-animate-blur-in-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.c-custom-brand-kv__heading :where(p, ul, ol, blockquote) {
  margin-block: 0;
}

.c-custom-brand-kv__heading > * + * {
  margin-block-start: 0.5em;
}

.c-custom-brand-kv__richtext {
  color: #313337;
  font-family: var(--text-font-family);
  font-size: 13px;
  font-weight: 500;
  line-height: calc(30 / 13);
  letter-spacing: 0;
}

.c-custom-brand-kv__richtext :where(p) {
  margin: 0;
}

.c-custom-brand-kv__richtext > * + * {
  margin-block-start: 1em;
}

@media screen and (min-width: 700px) {
  .c-custom-brand-kv {
    --c-custom-brand-kv-reveal-duration: 1.2s;
    --c-custom-brand-kv-reveal-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --c-custom-brand-kv-reveal-delay-heading: 0.35s;
    --c-custom-brand-kv-reveal-delay-richtext: 0.7s;
  }

  .c-custom-brand-kv__text--desktop .c-custom-brand-kv__heading,
  .c-custom-brand-kv__text--desktop .c-custom-brand-kv__richtext {
    opacity: 0;
    filter: blur(12px);
    transition:
      opacity var(--c-custom-brand-kv-reveal-duration) var(--c-custom-brand-kv-reveal-ease),
      filter var(--c-custom-brand-kv-reveal-duration) var(--c-custom-brand-kv-reveal-ease);
    will-change: opacity, filter;
  }

  .c-custom-brand-kv__text--desktop .c-custom-brand-kv__heading {
    transition-delay: var(--c-custom-brand-kv-reveal-delay-heading);
  }

  .c-custom-brand-kv__text--desktop .c-custom-brand-kv__richtext {
    transition-delay: var(--c-custom-brand-kv-reveal-delay-richtext);
  }

  .c-custom-brand-kv.c-custom-brand-kv--logo-visible .c-custom-brand-kv__text--desktop .c-custom-brand-kv__heading,
  .c-custom-brand-kv.c-custom-brand-kv--logo-visible .c-custom-brand-kv__text--desktop .c-custom-brand-kv__richtext {
    opacity: 1;
    filter: blur(0);
  }

  .c-custom-brand-kv__logo-panel {
    position: absolute;
    inset: 0;
  }

  .c-custom-brand-kv__logo-frame {
    width: min(100%, calc(var(--c-custom-brand-kv-logo-max-width-desktop, 360px) + (var(--c-custom-brand-kv-logo-padding-desktop, 24px) * 2)));
    padding-inline: var(--c-custom-brand-kv-logo-padding-desktop, 24px);
    transform: translateY(-120px);
  }

  .c-custom-brand-kv__logo-image,
  .c-custom-brand-kv__logo-placeholder {
    max-width: var(--c-custom-brand-kv-logo-max-width-desktop, 360px);
  }

  .c-custom-brand-kv__text {
    position: absolute;
    inset-block-end: 10px;
    inset-inline-start: 50%;
    width: min(calc(100% - 48px), 960px);
    padding: 0;
    transform: translateX(-50%);
  }

  .c-custom-brand-kv__text--desktop {
    display: block;
  }

  .c-custom-brand-kv__text--mobile {
    display: none;
  }

  .c-custom-brand-kv__heading {
    margin-block-end: 28px;
    font-size: 20px;
    line-height: calc(34 / 20);
  }

  .c-custom-brand-kv__richtext {
    font-size: 14px;
    line-height: calc(30 / 14);
  }
}

@media (prefers-reduced-motion: reduce) {
  .c-custom-brand-kv__logo-frame,
  .c-custom-brand-kv__text--desktop .c-custom-brand-kv__heading,
  .c-custom-brand-kv__text--desktop .c-custom-brand-kv__richtext {
    opacity: 1;
    filter: none;
    transition: none;
  }
}

/* ============================================================================
   スクロールリビールアニメーション（custom.js: Intersection Observer）
   - .c-animate_blur-in … 要素全体をその場でブラーイン
   - .c-animate_blur-in-chars … 1文字ずつブラーイン（子テキストをJSが分割）
   - .c-animate_fade-blur … 要素全体のフェード＋ブラー解除（表示時に .c-animate_is-in-view）
     発火条件は custom.js 側（C_ANIMATE_IO_FADE_BLUR）でパターン1より厳しめ
   - Video（.shopify-section--video）配下の .c-custom-multi-column_root > .c-multi-column__item、
     または Video の直後セクションが Custom Multi Column のときの同カードへ .c-animate_fade-blur を自動付与
   ============================================================================ */

@keyframes c-animate_blur-in-chars_keyframes {
  from {
    filter: blur(12px);
    opacity: 0;
    transform: scale(1.1);
  }

  to {
    filter: blur(0);
    opacity: 1;
    transform: scale(1);
  }
}

/* ビューポート外は非表示（発火後に表示＋1文字アニメ／アクセシビリティは prefers-reduced-motion で解除） */
.c-animate_blur-in-chars:not([data-c-animate-blur-in-done]) {
  opacity: 0;
}

.c-animate_blur-in-chars[data-c-animate-blur-in-done='true'] {
  opacity: 1;
}

.c-animate_blur-in-chars_char {
  display: inline-block;
  white-space: pre;
}

.c-animate_blur-in {
  --c-animate-blur-in-duration: 0.8s;
  --c-animate-blur-in-ease: cubic-bezier(0.22, 1, 0.36, 1);

  opacity: 0;
  filter: blur(12px);
  transition:
    opacity var(--c-animate-blur-in-duration) var(--c-animate-blur-in-ease),
    filter var(--c-animate-blur-in-duration) var(--c-animate-blur-in-ease);
}

.c-animate_blur-in.c-animate_is-in-view {
  opacity: 1;
  filter: blur(0);
}

.c-animate_fade-blur {
  --c-animate-fade-blur-duration: 1.25s;
  --c-animate-fade-blur-ease: cubic-bezier(0.22, 1, 0.36, 1);

  opacity: 0;
  filter: blur(12px);
  transition:
    opacity var(--c-animate-fade-blur-duration) var(--c-animate-fade-blur-ease),
    filter var(--c-animate-fade-blur-duration) var(--c-animate-fade-blur-ease);
}

.c-animate_fade-blur.c-animate_is-in-view {
  opacity: 1;
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .c-animate_blur-in-chars:not([data-c-animate-blur-in-done]) {
    opacity: 1;
  }

  .c-animate_blur-in-chars_char {
    animation: none !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    animation-delay: 0s !important;
  }

  .c-animate_blur-in {
    opacity: 1;
    filter: none;
    transition: none;
  }

  .c-animate_blur-in.c-animate_is-in-view {
    filter: none;
  }

  .c-animate_fade-blur {
    opacity: 1;
    filter: none;
    transition: none;
  }

  .c-animate_fade-blur.c-animate_is-in-view {
    filter: none;
  }
}

/*============================================================================
  #APP
==============================================================================*/
/* Judge.me */
.c-product-info__block-item--app .jdgm-prev-badge__text {
  display: none;
}

.c-product-info__block-item--app .jdgm-star.jdgm--on:before {
  color: #FFC31C;
}

.jm-button--primary {
  min-width: 230px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

@media screen and (max-width: 699px) {
  .jm-text {
    font-size: 14px;
    font-weight: 500;
  }
}
