/* =========================================================
   recoove LP — style.css
   reset.css のあとに読み込む。
   デザイントークン・BP は 共通仕様書.md と揃える。
   ========================================================= */

:root {
  /* color */
  --color-text: #534035;    /* text：文字・丸枠・＋ボタン */
  --color-accent: #BEAB97;  /* accent：CTAボタン・SNSバー・ラベル */
  --color-main: #E9E0CC;    /* main：ハイライト帯・薄背景 */
  --color-base: #F8F6F2;    /* base：ページ/セクション背景ベージュ */
  --color-white: #FFFFFF;
  /* font（Google Fonts配信。Adobe Fonts名も後方互換でフォールバック保持） */
  --font-base: "Zen Kaku Gothic New", "zen-kaku-gothic-new", sans-serif;
  --font-style-base: 500;
  --font-en: "Nunito", "nunito", sans-serif;
  /* layout */
  --content-width: 1140px;
  /* effect */
  --shadow: 4px 4px 3px 2px rgba(0, 0, 0, 0.05);
}

/* =========================================
   ベース
   ========================================= */
body {
  font-family: var(--font-base);
  font-weight: var(--font-style-base);
  color: var(--color-text);
  background: var(--color-base);
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.l-inner {
  width: min(100% - 60px, var(--content-width));
  margin-inline: auto;
}

/* =========================================
   共通コンポーネント
   ========================================= */

/* セクション見出し（和文・中央） */
.c-heading {
  text-align: center;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
  color: var(--color-text);
  margin-bottom: 36px;
}

/* 共通ボタン（accent） */
.c-btn {
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 18px 36px;
  border-radius: 0;
  transition: opacity 0.3s ease;
}
.c-btn:hover {
  opacity: 0.85;
}
.c-btn__icon {
  flex-shrink: 0;
}
.c-btn--lg {
  width: 100%;
  padding: 2px 2px;
  font-size: 19px;
  color: #fff !important;
}

/* 追従CTA（フローティング）：SPは画面下部の固定バー、PCは下部中央寄り */
.l-floating-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: rgba(248, 246, 242, 0.92);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
  transform: translateY(110%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s;
  display: flex;
}
.l-floating-cta__inner {
  width: 70%;
  background-color: var(--color-accent);
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-floating-cta__inner--right {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-floating-cta__back--container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.l-floating-cta.is-shown {
  transform: none;
  opacity: 1;
  visibility: visible;
}
.l-floating-cta__btn {
  padding-inline: 0;
  margin-inline: auto;
}
@media (prefers-reduced-motion: reduce) {
  .l-floating-cta {
    transition: opacity 0.2s ease, visibility 0.2s;
  }
}

/* 画像プレースホルダ（素材差し替え用） */
.p-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8e3db;
  color: #ab9d8e;
  font-size: 13px;
  letter-spacing: 0.1em;
  aspect-ratio: 4 / 3;
}

/* =========================================
   S1. ファーストビュー
   ========================================= */
.l-hero {
  margin-bottom: 0;
  background: var(--color-base);
  display: flex;
  flex-direction: column-reverse;
}
.l-hero__body {
  padding: 0px 20px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.l-hero__logo {
  display: inline-block;
  margin-block: 25px;
  width: 140px;
}
.l-hero__title {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  letter-spacing: 0.08em;
  margin-bottom: 30px;
}
.pc-appear {
  display: none;
}
.l-hero__lead {
  font-size: 18px;
  text-align: center;
  line-height: 1.9;
  letter-spacing: 0.08em;
  margin-bottom: 30px;
}
.l-hero__bg {
  height: auto;
}
.l-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.l-hero__btn {
  width: 100%;
  color: var(--color-white) !important;
}

/* =========================================
   S2. 悩み喚起
   ========================================= */
.l-worry {
  margin-bottom: 0;
  padding: 56px 0 0;
}
.l-worry__card {
  background: var(--color-white);
  box-shadow: var(--shadow);
  padding: 36px 28px;
}
.l-worry__col--left {
  text-align: left;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--color-accent);
  position: relative;
}
.l-worry__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.06em;
  margin-bottom: 100px;
}
.l-worry__icon {
  width: 150px;
  display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translateY(-10px);
}
.l-worry__list {
  display: grid;
  gap: 16px;
}
.l-worry__item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 31px;
  padding-left: 56px;
  font-size: 17px;
  letter-spacing: 0.06em;
}
.l-worry__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 31px;
  background: url("https://mitsuhashi.itembox.cloud/item/new/page/recoove/check.png") left center / contain no-repeat;
}
/* カード下の下向き三角（次セクションへ誘導） */
.l-worry__arrow {
  display: block;
  width: 0;
  height: 0;
  margin: 0 auto;
  border-left: 24px solid transparent;
  border-right: 24px solid transparent;
  border-top: 22px solid var(--color-white);
  filter: drop-shadow(0 4px 2px rgba(0, 0, 0, 0.04));
}

/* =========================================
   S3. 原因
   ========================================= */
.l-cause {
  margin-bottom: 0;
  margin-top: 50px;
  padding: 56px 0;
  background: var(--color-white);
}
.l-cause__flow {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
}
.l-cause__step {
  padding-left: 40px;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
}
.l-cause__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; /* SP横並び時、長いラベルに幅を奪われ円が縮む（サイズ不均一）のを防ぐ */
  width: 100px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 2px solid var(--color-text);
  background: var(--color-white);
}
.l-cause__icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.l-cause__icon--lg {
  width: 70px;
  height: 70px;
}
.l-cause__label {
  text-align: left;
  margin-top: 16px;
  font-size: 18px;
  letter-spacing: 0.06em;
}
/* 縦並び：下向き三角 */
.l-cause__step:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: 165px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 18px solid var(--color-accent);
}
/* SP（〜767px）：ステップを grid 化し、ラベル列を minmax(0,1fr) で確実に
   コンテンツ幅内へ収める。円は150px固定（均一）、余白を詰めて長いラベル
   （例「靴内環境が悪化」）も画面内に収め、狭い端末では自然に折り返す */
@media (max-width: 767px) {
  .l-cause__step {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    column-gap: 24px;
    align-items: center;
    width: 100%; /* 全行を同じ幅にし、矢印(left:50%)を縦一直線に揃える */
    padding-left: 15%;
  }
  /* li同士の縦gap（.l-cause__flow の gap:40px）の中央へ下向き三角を配置。
     水平はli中央(50%)、垂直はgapの真ん中(下端+20px)に固定 */
  .l-cause__step:not(:last-child)::after {
    left: 50%;
    top: calc(100% + 20px);
    bottom: auto;
    transform: translate(-50%, -50%);
  }
}

/* =========================================
   S4. 解決策（靴内環境を整える）
   ========================================= */
.l-condition {
  margin-bottom: 0;
  padding: 56px 0;
  background: #e9e0cc5c;
}
.l-condition__inner {
  overflow: hidden;
  padding-block: 25px;
}
.l-condition__visual {
  position: relative;
  width: 100%;
  max-width: 905px;
  margin-inline: auto;
}
.l-condition__photo {
  aspect-ratio: auto;
  width: 100%;
  height: auto;
  background-color: transparent;
  object-fit: contain;
}
.l-condition__note {
  position: absolute;
  width: 100%;
  max-width: 520px;
}
.l-condition__note--top {
  top: -95px;
  left: -20px;
  transform: rotate(-6deg);
}
.l-condition__note--bottom {
  bottom: -95px;
  right: -20px;
  transform: rotate(-4.6deg);
  overflow: hidden;
}

/* =========================================
   S5. recooveとは
   ========================================= */
.l-about {
  margin-bottom: 0;
  padding: 56px 0;
  background: var(--color-base);
}
.l-about__heading {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 30px;
}
.l-about__text {
  font-family: var(--font-base);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.12em;
  margin-top: 50px;
  text-align: center;
}
/* スマホ用（〜767px）：現状サイズを維持 */
.l-about__visual {
  padding-inline: 30px;
  max-width: 360px;
  margin-inline: auto;
  margin-top: 30px;
}

/* タブレット用（768〜1199px）：スマホより大きく表示
   ※1200px以上はPCの横並びレイアウト（max-width:520px）に切り替わる */
@media (min-width: 768px) and (max-width: 1199px) {
  .l-about__visual {
    max-width: 560px;
  }
}

/* スマホ・タブレット用（〜1199px）：見出し → ビジュアル → 本文 の順に並べ替え
   ※.l-about__body を display:contents で解除し、heading/text を inner の
     直接の子として扱わせて order で割り込ませる。1200px以上のPC横並びには影響しない */
@media (max-width: 1199px) {
  .l-about__inner {
    display: flex;
    flex-direction: column;
  }
  .l-about__body {
    display: contents;
  }
  .l-about__heading {
    order: 1;
  }
  .l-about__visual {
    order: 2;
  }
  .l-about__text {
    order: 3;
  }
}

/* =========================================
   S6. 商品特徴（ベージュ箱＋写真はみ出し／段違い）
   ========================================= */
.l-feature {
  margin-bottom: 0;
  padding: 56px 0;
  background: var(--color-white);
}
.l-feature__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}
.l-feature__title {
  margin-bottom: 72px;
}
.l-feature__item {
  width: 80%;
  max-width: 330px;
  background: var(--color-base);
  padding: 0 24px 32px;
}
/* SP（〜767px）：左右交互のジグザグ配置（奇数=左寄せ／偶数=右寄せ）。
   カード幅をコンテンツ幅より狭め、align-self で振り分けて段違いにする。
   ※PCの横並び段違い（align-items:stretch 前提）に波及しないようSP専用に閉じる */
@media (max-width: 767px) {
  .l-feature__item:nth-child(2n-1) {
    align-self: flex-start;
  }
  .l-feature__item:nth-child(2n) {
    align-self: flex-end;
  }
}
.l-feature__thumb {
  width: 86%;
  max-width: 330px;
  aspect-ratio: 374 / 250;
  margin: -40px auto 0;
  object-fit: cover;
}
.l-feature__body {
  text-align: center;
  padding-top: 16px;
}
.l-feature__label {
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.l-feature__desc {
  font-size: 16px;
  line-height: 1.7;
}

/* =========================================
   S7. 使い方
   ========================================= */
.l-step {
  margin-bottom: 0;
  padding: 56px 0;
  background: var(--color-base);
}
.l-step__head {
  text-align: center;
  margin-bottom: 40px;
}
.l-step__heading {
  margin-bottom: 20px;
}
.l-step__sub {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.06em;
}
.l-step__sub-mark {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.l-step__sub-mark::after {
  content: "";
  position: absolute;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  bottom: 2px;
  height: 10px;
  background: var(--color-main);
  opacity: 0.8;
  z-index: -1;
}
.l-step__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.l-step__item {
  position: relative;
  text-align: center;
}
.l-step__img {
  height: 160px;
  width: auto;
  margin: 0 auto 12px;
}
.l-step__desc {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

/* =========================================
   S8. 利用シーン（全幅7枚・横スクロール）
   ========================================= */
.l-scene {
  margin-bottom: 0px;
  padding: 56px 0 206px;
  background: var(--color-white);
  overflow: hidden; /* 自動スクロール時のはみ出しを隠す */
}
.l-scene__list {
  display: flex;
  overflow-x: auto;
  padding: 0 30px 10px;
  scroll-snap-type: x mandatory;
}
.l-scene__item {
  flex: 0 0 auto;
  width: 200px;
  margin-right: 20px; /* gap代替：複製時もシームレスにループさせるため */
  scroll-snap-align: start;
}

/* 利用シーン：シームレス自動スクロール（JSで .is-autoscroll を付与した時のみ有効） */
/* 速度はゆっくり（ユーザー指定）。SP 64s / PC 84s（PCブロックで上書き） */
.l-scene__list.is-autoscroll {
  width: max-content;
  margin: 0 auto; /* 画面に収まる場合は中央基準で配置 */
  padding: 0 0 10px;
  overflow-x: visible;
  scroll-snap-type: none;
  animation: l-scene-scroll 64s linear infinite;
  will-change: transform;
}
@keyframes l-scene-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } /* 複製した2セットの1セット分＝1周 */
}
@media (prefers-reduced-motion: reduce) {
  .l-scene__list.is-autoscroll {
    animation: none;
  }
}
.l-scene__img {
  width: 100%;
  aspect-ratio: 270 / 330;
  object-fit: cover;
  margin-bottom: 12px;
}
.l-scene__label {
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.04em;
}

/* =========================================
   S9. カート誘導（CTA）
   ========================================= */
.c-cta {
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  padding: 64px 0;
  overflow: hidden;
}
.c-cta__bg {
  position: absolute;
  background-image: url("https://mitsuhashi.itembox.cloud/item/new/page/recoove/cart_bg.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  inset: 0;
  aspect-ratio: auto;
  object-fit: cover;
}
.c-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}
.c-cta__card {
  width: 100%;
  max-width: 472px;
  background-color: #ffffff20;
  /* box-shadow: var(--shadow); */
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-cta__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  text-align: center;
}
.c-cta__spec--container {
  width: 184.33px;
}
.c-cta__spec {
  text-align: left;
  font-size: 16px;
  margin-bottom: 10px;
}
.c-cta__spec-label {
  margin-right: 12px;
}
.c-cta__price {
  margin-bottom: 12px;
  text-align: center;
}
.c-cta__price-num {
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 700;
}
.c-cta__price-tax {
  font-size: 14px;
}
/* 数量±UI：ユーザー指定により非表示のまま運用 */
.c-cta__order {
  display: none;
}
.c-cta__qty-label {
  font-size: 16px;
  margin-bottom: 0;
}
.c-cta__qty {
  display: flex;
  align-items: center;
}
.c-cta__qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  font-size: 18px;
  line-height: 1;
}
.c-cta__qty-btn--minus {
  background: #EEEEEE;
  color: var(--color-text);
  margin-right: 10px;
}
.c-cta__qty-btn--plus {
  background: var(--color-text);
  color: var(--color-white);
}
.c-cta__qty-num {
  margin-right: 10px;
  width: 97px;
  height: 44px;
  text-align: center;
  border: 1px solid #CCCCCC;
  background: var(--color-white);
}

/* 7/1 追加　各モールへの遷移ボタン */
.c-btn--container {
  padding: 10px 0px;
  width: 100%;
  border-top: 2px dotted var(--color-accent);
}
.c-btn__var {
  background-color: inherit !important;
  color: var(--color-text) !important;
  font-size: 18px;
  font-weight: bold;
}
.c-btn--mall {
  margin-top: 15px;
  width: 100%;
}
.c-ctn__other {
  margin-top: 10px;
  padding: 15px 10px;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  box-shadow: 2px 2px 4px;
}
.c-cta__mitsuhashi--container {
  border-radius: 5px;
  box-shadow: 2px 2px 4px;
}
.c-cta__mitsuhashi--container:hover {
  box-shadow: none;
  transition-duration: 0.3s;
}
.c-cta__mitsuhashi {
  background-color: var(--color-accent);
  color: var(--color-base);
  gap: 20px;
  box-shadow: none;
}
.c-cta__amazon {
  background-color: var(--color-text);
  padding: 5px 10px 0px;
}
.c-cta__tiktok {
  background-color: #EDD4B2;
  padding: 0 10px;
}
.c-ctn__other img {
  width: 100%;
  object-fit: contain;
}
.c-cta__amazon img {
  width: 80%;
}
.c-cta__tiktok img {
  width: 80%;
}
.c-ctn__other:hover {
  box-shadow: none;
  transition-duration: 0.3s;
}



/* =========================================
   S10. Check SNS
   ========================================= */
.l-sns {
  margin-bottom: 0;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 20px 0;
}
.l-sns__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.l-sns__title {
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0;
}
.l-sns__list {
  display: flex;
  gap: 20px;
}
.l-sns__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--color-white);
  transition: opacity 0.2s ease;
}
.l-sns__link:hover {
  opacity: 0.75;
}

/* =========================================
   S11. よくあるご質問
   ========================================= */
.l-faq {
  margin-bottom: 0px;
  padding: 120px 0 100px;
  background: var(--color-white);
}
.l-faq__list {
  max-width: var(--content-width);
  margin-inline: auto;
}
.l-faq__item {
  border-bottom: 1px solid #e3dccf;
}
.l-faq__item:first-child {
  border-top: 1px solid #e3dccf;
}
.l-faq__q {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  text-align: left;
  padding: 22px 8px;
  font-size: 18px;
  color: var(--color-text);
}
.l-faq__q-icon,
.l-faq__a-icon {
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-accent);
  flex-shrink: 0;
}
.l-faq__q-text {
  flex: 1;
}
/* 三角トグル（閉=下向き／開=上向き） */
.l-faq__toggle {
  width: 0;
  height: 0;
  flex-shrink: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 11px solid var(--color-accent);
  transition: transform 0.3s ease;
}
.l-faq__item.is-open .l-faq__toggle {
  transform: rotate(180deg);
}
/* 回答（高さアニメーション） */
.l-faq__a {
  display: flex;
  gap: 18px;
  padding: 0 8px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.l-faq__item.is-open .l-faq__a {
  max-height: 400px;
  padding: 0 8px 26px;
}
.l-faq__a-text {
  font-size: 16px;
  line-height: 1.8;
}

/* =========================================================
   recooveとは：横並び切替（1200px〜）
   タブレットで画像にテキストが押し潰されるのを避けるため、
   横並び化はPC完全形（content1140pxが取れる1200px以上）から適用する。
   ========================================================= */
@media (min-width: 1200px) {
  .l-about {
    padding: 90px 0;
  }
  .l-about__body {
    flex: 1;
  }
  .l-about__heading {
    font-size: 26px;
    text-align: left;
  }
  .l-about__text {
    font-size: 14px;
    text-align: left;
  }
  .l-about__visual {
    flex: 0 0 520px;
    max-width: 520px;
    margin: 0;
  }
  .l-about__inner {
    display: flex;
    align-items: center;
    gap: 80px;
  }
}

/* =========================================================
   PC（768px以上）— Figma実寸（1920キャンバス / content1140）
   ※ S1 ファーストビューは「タブレットでロゴ・テキストと画像が
     重なる」ため、PC化を 1025px 以上の別ブロックに分離している。
   ========================================================= */
@media (min-width: 768px) {
  .sp-appear { display: none; }
  .pc-appear { display: block; }
  .c-heading {
    font-size: 42px;
    margin-bottom: 56px;
  }

  /* 悩み */
  .l-worry {
    padding: 100px 0 0;
  }
  .l-worry__card {
    display: flex;
    align-items: center;
    padding: 50px 55px;
  }
  .l-worry__col {
    
  }
  .l-worry__col--left {
    width: 100%;
    height: auto;
    align-self: stretch;
    position: relative;
    text-align: left;
    border-right: 1px solid #ded5c6;
    border-bottom: 0px;
  }
  .l-worry__title {
    display: inline-block;
    font-size: 28px;
  }
  .l-worry__icon {
    display: block;
    width: 200px;
    position: absolute;
    bottom: 0;
    right: 140px;
    transform: translate(20px, 30px);
  }
  .l-worry__col--right {
    flex: 55% 0 0;
    padding-left: 64px;
    gap: 20px;
  }
  .l-worry__item {
    font-size: 20px;
    padding-left: 70px;
  }
  .l-worry__arrow {
    border-left-width: 28px;
    border-right-width: 28px;
    border-top-width: 26px;
  }

  /* 原因：横並び＋右向き三角 */
  .l-cause {
    padding: 80px 0;
  }
  .l-cause__flow {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
  }
  .l-cause__step {
    padding-left: 0px;
    gap: 20px;
    flex-direction: column;
  }
  .l-cause__circle {
    width: 160px;
    height: 160px;
  }
  .l-cause__icon {
    width: 80px;
    height: 80px;
  }
  .l-cause__icon--lg {
    width: 100px;
    height: 100px;
  }
  .l-cause__label {
    margin-top: 25px;
    font-size: 20px;
  }
  .l-cause__step:not(:last-child)::after {
    bottom: auto;
    top: 80px;
    left: auto;
    right: -91px;
    transform: translateY(-50%);
    border-left: 18px solid var(--color-accent);
    border-right: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
  }

  /* 解決策 */
  .l-condition {
    padding: 90px 0;
  }
  .l-condition__visual {
    margin-top: 80px;
  }
  .l-condition__note {
    max-width: none;
  }
  .l-condition__note--top {
    top: -220px;
    left: -120px;
    width: 100%;
  }
  .l-condition__note--bottom {
    bottom: -220px;
    right: -150px;
    width: 100%;
  }

  .l-about__heading {
    font-size: 42px;
  }
  .l-about__text {
    font-size: 25px;
  }

  /* 商品特徴：2列・写真はみ出し・右列を段違い */
  .l-feature {
    padding: 90px 0;
  }
  .l-feature__title {
    margin-bottom: 70px;
  }
  .l-feature__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px 120px;
  }
  .l-feature__item {
    width: 510px;
    max-width: none;
    padding: 0 30px 40px;
  }
  .l-feature__item:nth-child(2n-1),
  .l-feature__item:nth-child(2n) {
    transform: none; /* SPの左右ずらしはPCでは解除（2列段違いに切替） */
  }
  .l-feature__item:nth-child(2) {
    margin-top: 150px;
  }
  .l-feature__item:nth-child(3) {
    margin-top: -21px;
  }
  .l-feature__item:last-child {
    margin-top: 120px;
  }
  .l-feature__thumb {
    width: 374px;
    max-width: none;
    margin: -65px auto 0;
  }
  .l-feature__body {
    padding-top: 20px;
  }
  .l-feature__label {
    font-size: 30px;
  }
  .l-feature__desc {
    font-size: 18px;
  }

  /* 使い方：横並び＋三角矢印 */
  .l-step {
    padding: 90px 0;
  }
  .l-step__sub {
    font-size: 28px;
  }
  .l-step__sub-mark::after {
    height: 16px;
    bottom: 4px;
  }
  .l-step__list {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .l-step__img {
    height: 200px;
    margin: 0 auto 30px;
  }
  .l-step__item:nth-child(2) .l-step__img {
    transform: translateX(20px);
  }
  .l-step__desc {
    font-size: 20px;
  }
  .l-step__item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 95px;
    right: -108px;
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 18px solid var(--color-accent);
  }

  /* 利用シーン */
  .l-scene {
    padding: 90px 0;
  }
  .l-scene__list {
    padding-inline: clamp(24px, 4vw, 60px);
  }
  .l-scene__list.is-autoscroll {
    padding-inline: 0;
    animation-duration: 84s; /* PCはアイテムが大きい分、等速感のため長め（ゆっくり） */
  }
  .l-scene__item {
    width: 270px;
  }
  .l-scene__label {
    font-size: 18px;
  }

  /* CTA */
  .c-cta {
    padding: 90px 0;
  }
  .c-cta__title {
    font-size: 30px;
  }
  .c-cta__spec--container {
  width: 194.93px;
}
  .c-cta__card {
    background-color: #ffffff;
  }
  .c-cta__price-num {
    font-size: 44px;
  }
  .c-cta__mitsuhashi {
    font-size: 22px;
  }
.c-btn__var {
  background-color: inherit !important;
  color: var(--color-text) !important;
  font-size: 18px;
  font-weight: bold;
}
.c-btn--mall {
  margin-top: 20px;
  width: 100%;
}
.c-ctn__other {
  margin-top: 20px;
  padding: 15px 10px;
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  box-shadow: 2px 2px 4px;
}
.c-cta__mitsuhashi--container {
  border-radius: 5px;
  box-shadow: 2px 2px 4px;
}
.c-cta__mitsuhashi--container:hover {
  box-shadow: none;
  transition-duration: 0.3s;
}
.c-cta__mitsuhashi {
  background-color: var(--color-accent);
  color: var(--color-base);
  gap: 20px;
  box-shadow: none;
}
.c-cta__amazon {
  background-color: var(--color-text);
  padding: 5px 10px 0px;
}
.c-cta__tiktok {
  background-color: #EDD4B2;
  padding: 0 10px;
}
.c-ctn__other img {
  width: 100%;
  object-fit: contain;
}
.c-cta__amazon img {
  width: 80%;
}
.c-ctn__other:hover {
  box-shadow: none;
  transition-duration: 0.3s;
}



  /* SNS */
  .l-sns {
    padding: 25px 0;
  }
  .l-sns__inner {
    gap: 48px;
  }
  .l-sns__title {
    font-size: 28px;
  }
  .l-sns__list {
    gap: 28px;
  }

  /* FAQ */
  .l-faq {
    padding: 90px 0 200px;
  }
  .l-faq__q {
    gap: 24px;
    padding: 28px 12px;
    font-size: 20px;
  }
  .l-faq__q-icon,
  .l-faq__a-icon {
    font-size: 28px;
  }
  .l-faq__a {
    gap: 24px;
    padding-inline: 12px;
  }
  .l-faq__item.is-open .l-faq__a {
    padding: 0 12px 28px;
  }
  .l-faq__a-text {
    font-size: 17px;
  }

  /* 追従CTA：PCでは非表示 */
  .l-floating-cta {
    display: none;
  }
}

/* =========================================================
   S1 ファーストビューのPC化（1200px以上）
   タブレット帯（〜1199px）ではSP縦レイアウトを維持し、
   画像とロゴ・テキストの重なりを防ぐ。
   （PC完全形＝content1140pxが取れる1200px以上で発動）
   ========================================================= */
@media (min-width: 1200px) {
  /* FV：右に画像全幅ブリード、左にテキスト列 */
  .l-hero__title .pc-indent { 
    padding-left: 2em;
   }
  .l-hero {
    position: relative;
    height: 40vh;
    min-height: 740px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
  }
  .l-hero__bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
  }
  .l-hero__bg picture {
    display: block;
    width: 100%;
    height: 100%;
  }
  .l-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom; /* 縦長モニターでも商品（画像下部）が見切れないよう下端基準でトリミング */
  }
  .l-hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--color-base) 6%, rgba(248, 246, 242, 0) 42%);
  }
  .l-hero__body {
    display: inline-block;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1920px;
    margin-right: auto;
    padding-left: 10%;
  }
  .l-hero__body > * {
    max-width: 360px;
  }
  .l-hero__logo {
    margin-bottom: 32px;
  }
  .l-hero__logo img {
    width: 209px;
  }
  .l-hero__title {
    font-size: 42px;
    line-height: 2;
    margin-bottom: 30px;
    text-align: left;
  }
  .l-hero__lead {
    font-size: 26px;
    text-align: left;
    line-height: 1.55;
    margin-bottom: 32px;
  }
  .l-worry__icon {
    display: block;
    width: 200px;
    position: absolute;
    bottom: 0;
    right: 80px;
    transform: translate(20px, 30px);
  }
  .c-cta__bg {
    background-position: center bottom;
  }
}

/* =========================================================
   TB調整帯（768〜1199px）
   content1140pxが取れない中間帯の破綻を、content幅に収まる
   値へ補正する。既存の 768 / 1200 ブロックより後置きのため、
   同詳細度のカスケードで後勝ち上書きされる（!important不要）。
   ========================================================= */
@media (min-width: 768px) and (max-width: 1199px) {
  /* 見出し：SP23→PC42の段差を中間で滑らかに繋ぐ */
  .c-heading {
    font-size: clamp(28px, 4.2vw, 42px);
    margin-bottom: 44px;
  }

  /* S2 悩み：カードを絶対幅化し、靴イラストのはみ出し量を各幅で一定に
     （指示書 S4方針「カードの縦横を絶対値に」を満たす） */
  .l-worry__card {
    width: 680px;
    max-width: 100%;
    margin-inline: auto;
    padding: 40px 44px;
  }
  .l-worry__title {
    font-size: 24px;
  }
  .l-worry__item {
    font-size: 18px;
    padding-left: 64px;
  }
  .l-worry__icon {
    width: 150px;
    transform: translate(120px, 0);
  }

  /* S3 原因：横並び維持＋円・アイコン・矢印を縮小（円116×4でcontent708pxに収容）
     PCの height:160px を確実に打ち消すため height も明示 */
  .l-cause__circle {
    width: 116px;
    height: 116px;
  }
  .l-cause__icon {
    width: 58px;
    height: 58px;
  }
  .l-cause__icon--lg {
    width: 74px;
    height: 74px;
  }
  .l-cause__label {
    margin-top: 18px;
    font-size: 17px;
  }
  /* TB：各ステップを等幅(flex:1)にして円間gapを均等化。
     これにより列境界(left:100%)＝隣り合う円のちょうど中間になる */
  .l-cause__step {
    flex: 1;
  }
  /* 右向き三角を円間gapの中央（列境界・円の縦中心）に固定 */
  .l-cause__step:not(:last-child)::after {
    left: 100%;
    right: auto;
    top: 58px; /* 円(116px)の縦中心 */
    transform: translate(-50%, -50%);
    border-left-width: 12px;
    border-top-width: 9px;
    border-bottom-width: 9px;
  }

  /* S4 解決策：手書きメモのオフセットを中間値へ縮小（過剰はみ出し防止） */
  .l-condition__visual {
    margin-top: 56px;
  }
  .l-condition__note {
    max-width: 420px;
  }
  .l-condition__note--top {
    top: -120px;
    left: -40px;
    width: 78%;
  }
  .l-condition__note--bottom {
    bottom: -120px;
    right: -40px;
    width: 78%;
  }

  /* S6 商品特徴：TB帯も左右交互のジグザグ配置＋li間マージン。
     PC用の段違い（margin-top / translateX）を同詳細度で打ち消してから再構成 */
  .l-feature__list {
    gap: 100px;
    margin-top: 100px;
  }
  .l-feature__item {
    width: 64%;
    max-width: 460px;
    padding: 0 28px 36px;
  }
  /* PCの段違い margin-top を打ち消し */
  .l-feature__item:nth-child(2),
  .l-feature__item:nth-child(3),
  .l-feature__item:last-child {
    margin-top: 0;
  }
  /* ジグザグ：奇数=左寄せ／偶数=右寄せ */
  .l-feature__item:nth-child(2n-1) {
    align-self: flex-start;
    transform: none;
  }
  .l-feature__item:nth-child(2n) {
    align-self: flex-end;
    transform: none;
  }
  .l-feature__thumb {
    width: 80%;
    max-width: 360px;
    margin: -52px auto 0;
  }

  /* S7 使い方：横3並び維持＋矢印縮小・PCの画像ずらし解除 */
  .l-step__img {
    height: 150px;
    margin: 0 auto 20px;
  }
  .l-step__item:nth-child(2) .l-step__img {
    transform: none;
  }
  .l-step__desc {
    font-size: 18px;
  }
  .l-step__item:not(:last-child)::after {
    right: -34px;
    top: 72px;
  }
}

/* =========================================================
   S9 カート誘導：SP / TB（〜1199px）はカンプ準拠で縦積み
   （写真=上 / カード=下）。PC（1200〜）は写真背景＋右カードの
   オーバーレイ（base + 768ブロック）のまま据え置く。
   ========================================================= */
@media (max-width: 1199px) {
  .pc-appear { display: none; }
  .c-cta {
    padding: 0 0 56px; /* 写真は上端フラット、下に余白 */
  }
  .c-cta__bg {
    position: relative; /* 絶対配置の背景 → 通常フローの写真ブロックへ */
    inset: auto;
    width: 100%;
    height: clamp(220px, 46vw, 440px); /* 横長写真の高さを幅に応じて可変 */
    aspect-ratio: auto;
    background-position: center;
    background-size: cover;
  }
  .c-cta__card {
    background-color: #ffffff20;
  }
  .c-cta__inner {
    display: block; /* 右寄せ flex → ブロックへ */
  }
  .c-cta__card {
    margin-inline: auto; /* カードを中央配置 */
  }
}

/* =========================================================
   スクロール連動フェードイン
   JSが対象要素に .js-fadein を付与し、画面内に入ると
   .is-visible を付与する。JS無効時は通常表示のまま。
   ファーストビュー（S1）は対象外。
   ========================================================= */
@media (prefers-reduced-motion: no-preference) {
  .js-fadein {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
  }
  .js-fadein.is-visible {
    opacity: 1;
    transform: none;
  }
}
