/*
 * もぐランド トップページ・ヒーロー専用CSS v34（スマホ画像をCSS背景で確実に切替）
 * 対象: .mog-home-renewal 内のみ
 * header / footer / Bootstrap / 既存ページには干渉しない。
 */

.mog-home-renewal,
.mog-home-renewal *,
.mog-home-renewal *::before,
.mog-home-renewal *::after {
  box-sizing: border-box;
}

.mog-home-renewal {
  --mog-home-green: #08752f;
  --mog-home-green-dark: #055f27;
  --mog-home-orange: #f45112;
  --mog-home-gold: #9a6200;
  --mog-home-text: #111;
  --mog-home-border: #c9dfd0;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: var(--mog-home-text);
  background: #fff;
  font-family: inherit;
}

.mog-home-renewal img,
.mog-home-renewal svg {
  display: block;
  max-width: 100%;
}

.mog-home-hero__inner,
.mog-home-hero__content {
  display: contents;
}

.mog-home-hero__expert-seal {
  display: none;
}

/* ================================
   ヒーロー：PC
================================ */
.mog-home-hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  min-height: clamp(610px, 35vw, 690px);
  margin: 0;
  overflow: hidden;
  background: #fff;
}

.mog-home-hero__copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 48%;
  min-height: inherit;
  padding-top: clamp(112px, 7vw, 138px);
  padding-right: clamp(34px, 3.2vw, 62px);
  padding-bottom: 54px;
  padding-left: max(42px, calc((100vw - 1320px) / 2));
  background: #fff;
  text-align: left;
}

.mog-home-hero__title {
  margin: 0;
  padding: 0;
  color: var(--mog-home-text);
  font-size: clamp(45px, 3vw, 62px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.005em;
}

.mog-home-hero__title-line {
  display: block;
  white-space: nowrap;
}

.mog-home-hero__title-line + .mog-home-hero__title-line {
  margin-top: 0.14em;
}

.mog-home-hero__accent {
  font-weight: 900;
}

.mog-home-hero__accent--green {
  color: var(--mog-home-green);
}

.mog-home-hero__accent--orange {
  color: var(--mog-home-orange);
}

.mog-home-hero__accent--gold {
  color: var(--mog-home-gold);
}

.mog-home-hero__description {
  max-width: 650px;
  margin: 28px 0 0;
  padding: 0;
  color: #171717;
  font-size: clamp(16px, 1.05vw, 19px);
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: 0.01em;
}

.mog-home-hero__visual {
  position: absolute;
  z-index: 1;
  inset: 0 0 0 46%;
  width: auto;
  height: auto;
  overflow: hidden;
  background-color: #fff;
  background-image: url("../image/front/hero-visual-pc.webp");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
}

.mog-home-hero__visual picture {
  display: none !important;
}

.mog-home-hero__visual::before {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: -4px;
  width: clamp(280px, 19vw, 420px);
  content: "";
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #fff 0%,
    #fff 8%,
    rgba(255, 255, 255, 0.96) 22%,
    rgba(255, 255, 255, 0.72) 48%,
    rgba(255, 255, 255, 0.32) 72%,
    rgba(255, 255, 255, 0) 100%
  );
}

.mog-home-hero__benefits {
  position: absolute;
  z-index: 4;
  top: 22px;
  right: clamp(24px, 3vw, 58px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 16px);
  width: min(47vw, 790px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.mog-home-hero__benefit {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: clamp(72px, 5vw, 88px);
  padding: 12px 14px;
  border: 3px solid var(--mog-home-green-dark);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 5px 12px rgba(0, 67, 28, 0.14);
  color: #111;
  font-size: clamp(17px, 1.22vw, 23px);
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.mog-home-hero__benefit-icon {
  flex: 0 0 auto;
  width: clamp(30px, 2.5vw, 46px);
  height: clamp(30px, 2.5vw, 46px);
  margin-right: 9px;
  color: var(--mog-home-green-dark);
}

.mog-home-hero__benefit-icon svg {
  width: 100%;
  height: 100%;
}

.mog-home-hero__proof {
  display: none;
}

/* ================================
   ヒーロー直下の主要導線
   売る＝オレンジ／買う＝グリーン
================================ */
.mog-home-actions-wrap {
  width: 100%;
  border-top: 1px solid #edf1ee;
  background: #fff;
}

.mog-home-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(calc(100% - 48px), 1600px);
  margin: 0 auto;
  padding: 14px 0 28px;
}

.mog-home-action {
  display: flex !important;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  min-width: 0;
  min-height: 205px;
  padding: 18px 20px 14px;
  border: 1px solid #f1b496;
  border-radius: 14px;
  background: #fff;
  color: #111 !important;
  text-align: center;
  text-decoration: none !important;
  box-shadow: 0 2px 9px rgba(0, 75, 31, 0.055);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.mog-home-action:hover,
.mog-home-action:focus-visible {
  border-color: var(--mog-home-orange);
  color: #111 !important;
  text-decoration: none !important;
  transform: translateY(-2px);
  box-shadow: 0 7px 18px rgba(0, 75, 31, 0.13);
}

.mog-home-action__lead {
  display: block;
  min-height: 1.5em;
  margin: 0 0 8px;
  color: var(--mog-home-orange);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.mog-home-action__main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  color: var(--mog-home-orange);
}

.mog-home-action__icon {
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  margin-right: 18px;
}

.mog-home-action__icon svg {
  width: 100%;
  height: 100%;
}

.mog-home-action__title {
  color: var(--mog-home-orange);
  font-size: clamp(28px, 2.15vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.mog-home-action__description {
  display: block;
  margin: 8px 0 12px;
  color: #111;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

.mog-home-action__button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: auto;
  border-radius: 999px;
  background: linear-gradient(90deg, #ee4300, #ff690f);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
}

.mog-home-action__arrow {
  margin-left: 0.65em;
  font-size: 1.15em;
  line-height: 1;
}

.mog-home-action--shop {
  border-color: var(--mog-home-border);
}

.mog-home-action--shop:hover,
.mog-home-action--shop:focus-visible {
  border-color: var(--mog-home-green);
}

.mog-home-action--shop .mog-home-action__lead,
.mog-home-action--shop .mog-home-action__main,
.mog-home-action--shop .mog-home-action__title {
  color: var(--mog-home-green-dark);
}

.mog-home-action--shop .mog-home-action__button {
  background: linear-gradient(
    90deg,
    var(--mog-home-green-dark),
    #0aa03e
  );
}

/* 大画面 */
@media (min-width: 1600px) {
  .mog-home-hero__copy {
    padding-left: max(52px, calc((100vw - 1440px) / 2));
  }

  .mog-home-hero__visual {
    left: 45%;
  }

  .mog-home-hero__benefits {
    width: min(45vw, 820px);
  }
}

/* ================================
   タブレット／中間幅
================================ */
@media (max-width: 1180px) and (min-width: 769px) {
  .mog-home-hero {
    width: 100%;
    max-width: none;
    min-height: 560px;
    margin: 0;
  }

  .mog-home-hero__copy {
    width: 47%;
    min-height: inherit;
    padding: 88px 30px 46px clamp(30px, 4vw, 52px);
  }

  .mog-home-hero__title {
    font-size: clamp(32px, 3.5vw, 41px);
  }

  .mog-home-hero__description {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.75;
  }

  .mog-home-hero__visual {
    inset: 0 0 0 44%;
    background-position: right center;
    background-size: cover;
  }

  .mog-home-hero__visual::before {
    left: -4px;
    width: clamp(180px, 20vw, 280px);
    background: linear-gradient(
      90deg,
      #fff 0%,
      #fff 8%,
      rgba(255, 255, 255, 0.95) 24%,
      rgba(255, 255, 255, 0.66) 54%,
      rgba(255, 255, 255, 0) 100%
    );
  }

  .mog-home-hero__benefits {
    top: 16px;
    right: 16px;
    gap: 7px;
    width: calc(56% - 28px);
  }

  .mog-home-hero__benefit {
    min-height: 64px;
    padding: 8px 6px;
    border-width: 2px;
    border-radius: 13px;
    font-size: 14px;
  }

  .mog-home-hero__benefit-icon {
    width: 28px;
    height: 28px;
    margin-right: 5px;
  }

  .mog-home-action {
    padding-inline: 12px;
  }

  .mog-home-action__icon {
    width: 50px;
    height: 50px;
    margin-right: 10px;
  }

  .mog-home-action__lead,
  .mog-home-action__description,
  .mog-home-action__button {
    font-size: 14px;
  }
}


/* ================================
   ヒーロー／主要導線：PC確定レイアウト v2
================================ */
@media (min-width: 769px) {
  .mog-home-hero {
    position: relative;
    min-height: min(35vw, 760px);
    display: flex;
    align-items: center;
    padding: 56px 0;
    overflow: hidden;
    background-color: #f6f2ea;
    background-image: url("../image/front/hero-visual-pc.webp");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
  }

  /* max-width 1200px の実コンテンツ面＋左右24pxの安全ガター */
  .mog-home-hero__inner {
    display: block;
    width: 100%;
    max-width: 1248px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* PC白カード。1200px未満は同率で縮小する */
  .mog-home-hero__content {
    position: relative;
    left: min(0px, max(calc(750px - 37vw), -10.94vw));
    z-index: 3;
    display: flex;
    flex-direction: column;
    width: clamp(565px, 39.2vw, 700px);
    min-height: 0;
    padding: clamp(40px, 2.78vw, 50px);
    border-radius: clamp(12.8px, 1.6667vw, 20px);
    background: #fff;
    box-shadow: none;
  }

  .mog-home-hero__copy {
    position: static;
    z-index: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    min-height: 0;
    padding: 0;
    background: transparent;
    text-align: left;
  }

  .mog-home-hero__title {
    margin: calc(-0.16em + clamp(1.9px, 0.25vw, 3px)) 0 0;
    padding: 0;
    font-size: clamp(44px, 3.06vw, 54px);
    line-height: 1.32;
  }

  .mog-home-hero__title-line {
    white-space: nowrap;
  }

  .mog-home-hero__title-line + .mog-home-hero__title-line {
    margin-top: 0;
  }

  .mog-home-hero__description {
    max-width: 100%;
    margin: clamp(11.5px, 1.5vw, 18px) 0 0;
    padding: 0;
    font-size: clamp(20px, 1.39vw, 25px);
    line-height: 1.8;
  }

  .mog-home-hero__benefits {
    position: static;
    z-index: auto;
    display: flex;
    align-items: center;
    gap: clamp(11.5px, 1.5vw, 18px);
    width: 100%;
    margin: auto 0 0;
    padding: clamp(15.4px, 2vw, 24px) 0 0;
    list-style: none;
    white-space: nowrap;
  }

  .mog-home-hero__benefit {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #3f5147;
    font-size: clamp(18px, 1.25vw, 22px);
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
  }

  .mog-home-hero__benefit-icon {
    flex: 0 0 clamp(9.6px, 1.25vw, 15px);
    width: clamp(9.6px, 1.25vw, 15px);
    height: clamp(9.6px, 1.25vw, 15px);
    margin-right: 4px;
    color: #08752f;
  }

  .mog-home-hero__expert-seal {
    position: absolute;
    top: clamp(47px, 3.26vw, 58px);
    right: clamp(40px, 2.78vw, 50px);
    display: block;
    width: clamp(108px, 7.5vw, 133px);
    height: clamp(108px, 7.5vw, 133px);
    overflow: hidden;
    border: 2px solid #c9a24a;
    border-radius: 50%;
    background: #fdf6e3;
    color: #854f0b;
    line-height: 1.25;
    text-align: center;
  }

  .mog-home-hero__expert-seal-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 48%;
    transform: scaleX(-1);
  }

  .mog-home-hero__expert-seal-main {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    height: 31%;
    align-items: center;
    justify-content: center;
    padding: 1px 7px 0;
    background: rgba(253, 246, 227, 0.94);
    color: #854f0b;
    font-size: clamp(9px, 0.76vw, 12px);
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
  }

  .mog-home-hero__proof,
  .mog-home-hero__proof--seal {
    display: none;
  }

  /* PCでは写真をヒーロー帯全体の背景として使う */
  .mog-home-hero__visual {
    display: none;
  }

  .mog-home-actions-wrap {
    padding-right: 24px;
    padding-left: 24px;
  }

  .mog-home-actions {
    gap: 24px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  .mog-home-action__button {
    background: #f05a17;
  }

  .mog-home-action--shop .mog-home-action__button {
    background: #08752f;
  }
}

/* ================================
   スマートフォン：承認モック再現版 v28
   - キャッチコピーを最優先
   - 安心要素を3列で配置
   - 商品はスマホ専用コラージュ画像
   - 実績表示は小さく、導線は2列＋1列
================================ */
@media (max-width: 768px) {
  .mog-home-renewal {
    overflow: hidden;
    background: #fff;
  }

  .mog-home-hero {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 0;
    margin: 0;
    padding-top: 24px;
    padding-bottom: 18px;
    overflow: hidden;
    background: #f3f8f1;
  }

  .mog-home-hero::before {
    display: none;
  }

  /* キャッチコピー */
  .mog-home-hero__copy {
    position: relative;
    z-index: 3;
    display: block;
    order: 1;
    width: 100%;
    min-height: 0;
    padding: 0 16px;
    background: transparent;
  }

  .mog-home-hero__title {
    margin: 0;
    font-size: clamp(28px, 8.93vw, 36px);
    font-weight: 800;
    line-height: 1.34;
    letter-spacing: 0.01em;
    text-align: left;
  }

  .mog-home-hero__title-line {
    display: block;
    white-space: nowrap;
  }

  .mog-home-hero__title-line + .mog-home-hero__title-line {
    margin-top: 0.06em;
  }

  .mog-home-hero__description,
  .mog-home-hero__description-break {
    display: none;
  }

  /* 買取依頼100万件以上突破：画像バッジ */
  .mog-home-hero__proof--seal {
    position: absolute;
    z-index: 4;
    top: 1px;
    right: 13px;
    display: block;
    width: clamp(76px, 23.5vw, 96px);
    aspect-ratio: 1 / 1;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .mog-home-hero__proof--seal::before,
  .mog-home-hero__proof--seal::after {
    display: none;
    content: none;
  }

  .mog-home-hero__proof-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* 査定無料・即日対応・専門スタッフが丁寧に査定 */
  .mog-home-hero__benefits {
    position: relative;
    z-index: 4;
    top: auto;
    right: auto;
    order: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin: 12px auto 0;
    padding: 0 16px;
    list-style: none;
    white-space: nowrap;
  }

  .mog-home-hero__benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #3f5147;
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
  }

  .mog-home-hero__benefit-icon {
    flex: 0 0 auto;
    width: 13px;
    height: 13px;
    margin-right: 4px;
    color: var(--mog-home-green);
  }

  .mog-home-hero__benefit-icon svg {
    width: 100%;
    height: 100%;
  }

  /* 商品コラージュ */
  .mog-home-hero__visual {
    position: relative;
    z-index: 1;
    inset: auto;
    order: 3;
    width: calc(100% - 32px);
    height: auto;
    aspect-ratio: 979 / 548;
    margin: 14px auto 0;
    overflow: hidden;
    border-radius: 0;
    background-color: transparent;
    background-image: url("../image/front/hero-products-sp.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .mog-home-hero__visual::before {
    display: none;
  }

  /* 主要導線 */
  .mog-home-actions-wrap {
    border-top: 0;
    background: #fff;
  }

  .mog-home-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 14px 0 18px;
  }

  .mog-home-action {
    position: relative;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    min-height: 0;
    padding: 14px 8px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #f05a17 0%, #ff7819 100%);
    box-shadow: 0 5px 12px rgba(188, 60, 0, 0.18);
    color: #fff !important;
    text-align: center;
    text-decoration: none !important;
  }

  .mog-home-action:hover,
  .mog-home-action:focus-visible {
    border-color: transparent;
    color: #fff !important;
    text-decoration: none !important;
    transform: none;
    box-shadow: 0 5px 12px rgba(188, 60, 0, 0.18);
  }

  .mog-home-action__lead,
  .mog-home-action__description {
    display: none;
  }

  .mog-home-action__main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    color: #fff;
  }

  .mog-home-action__icon,
  .mog-home-action--shop .mog-home-action__icon {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #fff;
  }

  .mog-home-action__icon svg {
    width: 18px;
    height: 18px;
  }

  .mog-home-action__title,
  .mog-home-action--shop .mog-home-action__title {
    color: #fff;
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.4;
    white-space: nowrap;
  }

  .mog-home-action__button {
    display: contents;
    margin: 0;
    padding: 0;
    background: transparent;
    color: transparent;
    font-size: 0;
    line-height: 0;
    letter-spacing: 0;
  }

  .mog-home-action__arrow {
    flex: 0 0 auto;
    margin: 0;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
  }

  /* 店舗でお買い物 */
  .mog-home-action--shop {
    grid-column: 1 / -1;
    min-height: 0;
    padding: 13px 8px;
    border: 0;
    background: #08752f;
    box-shadow: 0 5px 12px rgba(0, 91, 35, 0.2);
  }

  .mog-home-action--shop:hover,
  .mog-home-action--shop:focus-visible {
    border-color: transparent;
    box-shadow: 0 5px 12px rgba(0, 91, 35, 0.2);
  }

  .mog-home-action--shop .mog-home-action__main {
    color: #fff;
  }

  .mog-home-action--shop .mog-home-action__button {
    background: transparent;
  }
}

@media (max-width: 359px) {
  .mog-home-hero__benefits {
    flex-wrap: wrap;
    row-gap: 6px;
  }
}

/* =========================================
   トップページ SP：ヒーロー直下仕分け・種目・事例
   実装指示書 v3
========================================= */
.mog-triage,
.mog-triage-anchor {
  display: none;
}

.mog-triage,
.mog-triage *,
.mog-triage *::before,
.mog-triage *::after,
.mog-case-accordions,
.mog-case-accordions *,
.mog-case-accordions *::before,
.mog-case-accordions *::after,
.mog-triage-category-grid,
.mog-triage-category-grid *,
.mog-triage-category-grid *::before,
.mog-triage-category-grid *::after,
.mog-triage-category-chips,
.mog-triage-category-chips *,
.mog-triage-category-chips *::before,
.mog-triage-category-chips *::after {
  box-sizing: border-box;
}

.mog-case-accordion__toggle {
  display: none;
}

.mog-case-accordion__panel {
  display: block;
}

body.home .purchase-area {
  display: none;
}

body.home section.ranking {
  display: none !important;
}

.mog-triage__boost.is-continuous .mog-triage__boost-scroll {
  overflow-x: hidden;
  overflow-x: clip;
  scroll-snap-type: none;
}

.mog-triage__boost.is-continuous .mog-triage__boost-track {
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

@media (max-width: 768px) {
  .mog-triage {
    --triage-green: #08752f;
    --triage-green-dark: #055f27;
    --triage-orange: #f45112;
    --triage-gold: #9a6200;
    --triage-gold-bg: #fdecc1;
    --triage-border: #c9dfd0;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0 0 18px;
    color: #222;
    background: #fff;
    font-family: inherit;
  }

  .mog-triage a {
    text-decoration: none;
  }

  .mog-triage__boost {
    width: 100%;
    padding: 9px 0 8px;
    overflow: hidden;
    border-top: 1px solid #f3c9c2;
    border-bottom: 1px solid #f3c9c2;
    background: linear-gradient(180deg, #fff6f4 0%, #ffefec 100%);
  }

  .mog-triage__boost-heading {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 16px;
  }

  .mog-triage__boost-label {
    flex: 0 0 auto;
    padding: 4px 8px;
    border-radius: 4px;
    background: #c0392b;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
  }

  .mog-triage__boost-copy {
    min-width: 0;
    color: #a03024;
    font-size: 10px;
    line-height: 1.4;
  }

  .mog-triage__boost-stage {
    position: relative;
    margin-top: 8px;
  }

  .mog-triage__boost-scroll {
    width: calc(100% - 32px);
    margin: 0 16px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .mog-triage__boost-scroll::-webkit-scrollbar {
    display: none;
  }

  .mog-triage__boost-track {
    display: flex;
    gap: 7px;
    width: max-content;
    padding: 3px 0 8px;
  }

  .mog-triage__boost-item {
    display: grid;
    flex: 0 0 106px;
    width: 106px;
    height: 106px;
    grid-template-rows: 55px 35px 14px;
    align-content: start;
    overflow: hidden;
    border: 1px solid #e0a49b;
    border-radius: 9px;
    background: #fff;
    color: #333;
    text-align: center;
    text-decoration: none !important;
    scroll-snap-align: start;
    box-shadow: 0 3px 8px rgba(109, 48, 40, 0.12);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
  }

  .mog-triage__boost-item:hover,
  .mog-triage__boost-item:focus-visible {
    border-color: #c0392b;
    background: #fffdfd;
    text-decoration: none !important;
    box-shadow: 0 7px 14px rgba(155, 55, 44, 0.20);
    transform: translateY(-2px);
    outline: none;
  }

  .mog-triage__boost-item:active {
    background: #fff3f1;
    box-shadow: 0 2px 5px rgba(155, 55, 44, 0.15);
    transform: translateY(1px);
  }

  .mog-triage__boost-item img {
    display: block;
    width: 84px;
    height: 52px;
    margin: 3px auto 0;
    object-fit: contain;
  }

  .mog-triage__boost-name,
  .mog-triage__boost-value {
    display: grid;
    place-items: center;
    text-decoration: none !important;
  }

  .mog-triage__boost-name {
    padding: 0 3px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
  }

  .mog-triage__boost-name.is-compact {
    font-size: 14px;
    line-height: 1.2;
  }

  .mog-triage__boost-value {
    color: #c0392b;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
  }

  .mog-triage__boost-arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    padding: 0;
    border: 1px solid #e0a49b;
    border-radius: 50%;
    background: #fff;
    color: #a03024;
    cursor: pointer;
    transform: translateY(-50%);
    appearance: none;
  }

  .mog-triage__boost-arrow--prev {
    left: 4px;
  }

  .mog-triage__boost-arrow--next {
    right: 4px;
  }

  .mog-triage__boost-arrow svg {
    display: block;
    width: 14px;
    height: 14px;
  }

  .mog-triage__boost-arrow path {
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
  }

  .mog-triage__boost-arrow:hover,
  .mog-triage__boost-arrow:focus-visible {
    border-color: #c0392b;
    box-shadow: 0 4px 10px rgba(155, 55, 44, 0.18);
    outline: none;
  }

  .mog-triage__boost-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    min-height: 18px;
    padding-top: 3px;
  }

  .mog-triage__boost-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f0cbc7;
  }

  .mog-triage__boost-dot.is-active {
    width: 8px;
    height: 8px;
    background: #c0392b;
  }

  .mog-triage__boost.is-fixed .mog-triage__boost-arrow,
  .mog-triage__boost.is-fixed .mog-triage__boost-dots {
    display: none;
  }

  .mog-triage__feature {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) 32px;
    gap: 10px;
    align-items: center;
    min-height: 132px;
    margin: 12px 16px 0;
    padding: 11px 12px;
    border: 1px solid #d9b25e;
    border-radius: 10px;
    background: linear-gradient(180deg, #fdf3d9 0%, var(--triage-gold-bg) 100%);
    color: #4a2f02;
    text-decoration: none !important;
    box-shadow: 0 3px 8px rgba(118, 79, 9, 0.12);
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
  }

  .mog-triage__feature,
  .mog-triage__feature * {
    text-decoration: none !important;
  }

  .mog-triage__feature:hover,
  .mog-triage__feature:focus-visible {
    text-decoration: none !important;
    box-shadow: 0 8px 18px rgba(118, 79, 9, 0.20);
    transform: translateY(-1px);
    outline: none;
  }

  .mog-triage__feature:active {
    box-shadow: 0 2px 6px rgba(118, 79, 9, 0.14);
    transform: translateY(1px);
  }

  .mog-triage__feature-image {
    display: block;
    width: 56px;
    height: 56px;
    border: 2px solid var(--triage-gold);
    border-radius: 50%;
    object-fit: cover;
  }

  .mog-triage__feature-body {
    display: block;
    min-width: 0;
  }

  .mog-triage__feature-badge {
    display: inline-flex;
    margin-bottom: 5px;
    padding: 4px 8px;
    border-radius: 5px;
    background: #9a6200;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    line-height: 1.3;
  }

  .mog-triage__feature-title,
  .mog-triage__feature-copy {
    display: block;
    text-decoration: none !important;
  }

  .mog-triage__feature-title {
    color: #4a2f02;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
  }

  .mog-triage__feature-copy {
    margin-top: 3px;
    color: #7a5410;
    font-size: 10px;
    line-height: 1.5;
  }

  .mog-triage__feature-arrow {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 50%;
    background: var(--triage-gold);
    color: #fff;
    transition: transform 180ms ease;
  }

  .mog-triage__feature-chevron {
    display: block;
    width: 14px;
    height: 14px;
    overflow: visible;
  }

  .mog-triage__feature-chevron path {
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
  }

  .mog-triage__feature:hover .mog-triage__feature-arrow,
  .mog-triage__feature:focus-visible .mog-triage__feature-arrow {
    transform: translateX(2px);
  }

  .mog-triage__heading {
    margin: 24px 16px 18px;
    padding: 0 8px;
    color: #222;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.45;
    text-align: center;
  }

  .mog-triage__heading::after {
    content: "";
    display: block;
    width: 38px;
    height: 3px;
    margin: 12px auto 0;
    border-radius: 999px;
    background: #f45112;
  }

  .mog-triage-accordion {
    margin: 0 16px 8px;
    overflow: hidden;
    border-radius: 9px;
  }

  .mog-triage-accordion__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
    width: 100%;
    min-height: 56px;
    margin: 0;
    padding: 10px 12px;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
    appearance: none;
  }

  .mog-triage-accordion__heading {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
  }

  .mog-triage-accordion__title,
  .mog-triage-accordion__summary {
    display: block;
  }

  .mog-triage-accordion__title {
    color: #222;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
  }

  .mog-triage-accordion__summary {
    margin-top: 3px;
    font-size: 10px;
    line-height: 1.45;
  }

  .mog-triage-accordion__chevron {
    display: flex;
    flex: 0 0 30px;
    align-items: center;
    justify-content: center;
    width: 30px;
    min-height: 30px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
  }

  .mog-triage-accordion__panel {
    display: block;
    padding: 0 12px 13px;
  }

  .mog-triage-accordion:not(.is-open) > .mog-triage-accordion__panel {
    display: none;
  }

  .mog-triage-accordion__text {
    margin: 0;
    font-size: 12px;
    line-height: 1.75;
  }

  .mog-triage-accordion__text + .mog-triage-accordion__text {
    margin-top: 7px;
  }

  .mog-triage-accordion--b {
    border: 1.5px solid var(--triage-orange);
    background: #fff;
  }

  .mog-triage-accordion--b .mog-triage-accordion__summary,
  .mog-triage-accordion--b .mog-triage-accordion__chevron {
    color: var(--triage-orange);
  }

  .mog-triage-accordion--b .mog-triage-accordion__panel {
    padding-top: 2px;
    border-top: 1px solid rgba(244, 81, 18, 0.2);
  }

  .mog-triage-accordion__line-button {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 11px 12px;
    border-radius: 8px;
    background: #168c36;
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
  }

  .mog-triage-accordion__note {
    margin: 4px 0 0;
    color: #555;
    font-size: 10px;
    line-height: 1.4;
    text-align: center;
  }

  .mog-triage-accordion__sub-link {
    margin: 9px 0 0;
    color: #666;
    font-size: 10px;
    line-height: 1.45;
    text-align: center;
  }

  .mog-triage-accordion__sub-link a {
    color: #185fa5;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .mog-triage-accordion--a {
    border: 1px solid #7cba93;
    background: #e8f4ec;
  }

  .mog-triage-accordion--a .mog-triage-accordion__toggle {
    min-height: 76px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .mog-triage-accordion--a .mog-triage-accordion__title {
    color: #054d20;
  }

  .mog-triage-accordion--a .mog-triage-accordion__summary,
  .mog-triage-accordion--a .mog-triage-accordion__chevron {
    color: var(--triage-green);
  }

  .mog-triage-accordion--a .mog-triage-accordion__panel,
  .mog-triage-accordion--a .mog-triage-accordion__text {
    color: #0a5c2b;
  }

  .mog-triage-accordion--a .mog-triage-accordion__panel {
    border-top: 1px solid rgba(8, 117, 47, 0.16);
  }

  .mog-triage-accordion__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
  }

  .mog-triage-accordion__chips li {
    padding: 4px 8px;
    border: 1px solid #7cba93;
    border-radius: 999px;
    background: #fff;
    color: #0a5c2b;
    font-size: 9px;
    line-height: 1.35;
  }

  .mog-triage-accordion__case-link {
    margin: 9px 0 0;
    font-size: 11px;
    line-height: 1.45;
  }

  .mog-triage-accordion__case-link a {
    color: #185fa5;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .mog-triage-accordion__phone-label {
    margin: 10px 0 0;
    color: #0a5c2b;
    font-size: 10px;
    line-height: 1.55;
    text-align: center;
  }

  .mog-triage-accordion__phone-button {
    display: block;
    width: 100%;
    margin-top: 6px;
    padding: 11px;
    border-radius: 8px;
    background: linear-gradient(180deg, #0b8a3d 0%, var(--triage-green) 100%);
    color: #fff !important;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.02em;
    text-align: center;
  }

  .mog-triage-accordion__hours {
    margin: 4px 0 0;
    color: var(--triage-green);
    font-size: 9px;
    line-height: 1.4;
    text-align: center;
  }

  .mog-triage-accordion__switch {
    margin: 9px 0 0;
    padding-top: 8px;
    border-top: 1px solid #9fd0af;
    color: #0a5c2b;
    font-size: 10px;
    line-height: 1.55;
    text-align: center;
  }

  .mog-triage-accordion__switch a {
    color: #0a5c2b;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .mog-triage__minor-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin: 9px 16px 0;
    font-size: 10px;
    line-height: 1.5;
  }

  .mog-triage__minor-links a {
    color: #555;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .mog-triage-anchor {
    display: block;
    height: 0;
    scroll-margin-top: 72px;
  }

  .top-text-area.visible-xs .mog-triage-category-grid,
  .top-text-area.visible-xs .mog-triage-category-chips {
    margin-right: 0;
    margin-left: 0;
    padding: 0;
    list-style: none;
  }

  .mog-triage-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 0;
  }

  .mog-triage-category-card {
    min-width: 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,.10);
    overflow: hidden;
  }

  .mog-triage-category-card a {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100%;
    min-height: 132px;
    padding: 8px 4px 8px;
    color: #222;
    text-align: center;
    text-decoration: none;
  }

  .mog-triage-category-card img {
    display: block;
    width: 100%;
    height: 78px;
    margin: 0 auto;
    object-fit: contain;
  }

  .mog-triage-category-card span {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    margin-top: 5px;
    padding-right: 16px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
  }

  .mog-triage-category-card a::after {
    content: "›";
    position: absolute;
    right: 6px;
    bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #08752f;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    padding-bottom: 1px;
  }

  .mog-triage-category-grid--pc-all {
    display: none;
  }

  .mog-triage-category-sp-current {
    display: block;
  }

  .mog-triage-category-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 10px !important;
  }

  .mog-triage-category-chips li {
    margin: 0;
    padding: 0;
  }

  .mog-triage-category-chips a {
    display: block;
    padding: 7px 12px;
    border: 1px solid #bbb;
    border-radius: 999px;
    background: #fff;
    color: #222;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(0,0,0,.08);
  }

  .mog-triage-category-chips a::after {
    content: "›";
    margin-left: 4px;
    color: #08752f;
    font-weight: 700;
  }

  .mog-triage-category-more,
  .mog-triage-category-shop {
    margin: 9px 0 0;
    font-size: 11px;
    line-height: 1.5;
  }

  .mog-triage-category-more a {
    color: #555;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .mog-triage-category-shop a {
    color: #185fa5;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .mog-case-accordions {
    margin: 12px 0;
  }

  .mog-case-accordion {
    margin: 0 0 7px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #fff;
    scroll-margin-top: 72px;
    overflow: hidden;
  }

  .mog-case-accordion__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    min-height: 46px;
    margin: 0;
    padding: 10px 12px;
    border: 0;
    background: #fff;
    color: #333;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
    cursor: pointer;
    appearance: none;
  }

  .mog-case-accordion__chevron {
    flex: 0 0 auto;
    color: #777;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
  }

  .mog-case-accordion__panel {
    display: block;
    padding: 0 10px 10px;
    border-top: 1px solid #e5e5e5;
  }

  .mog-case-accordion:not(.is-open) > .mog-case-accordion__panel {
    display: none;
  }

  .mog-case-accordion__panel > .support-area__heading {
    margin-top: 10px;
  }
}

@media (max-width: 359px) {
  .mog-triage__feature {
    gap: 8px;
    margin-right: 12px;
    margin-left: 12px;
    padding-right: 9px;
    padding-left: 9px;
  }

  .mog-triage__feature-image {
    flex-basis: 50px;
    width: 50px;
    height: 50px;
  }

  .mog-triage-accordion {
    margin-right: 12px;
    margin-left: 12px;
  }

  .mog-triage-accordion__phone-button {
    font-size: 18px;
  }

  .mog-triage-category-card a {
    min-height: 106px;
  }

  .mog-triage-category-card img {
    height: 56px;
  }

  .mog-triage-category-card span {
    font-size: 9px;
  }
}

/* =========================================================
 * Top page second correction batch
 * - initial accordion state
 * - heading refresh
 * - compact service-area chips
 * - neutral category-card tone
 * ======================================================= */

/* Top-page headings only: white surface, ink text, green accent bar. */
body.home .support-area__heading {
  margin-bottom: 12px;
  padding: 11px 10px !important;
  border: 0;
  border-top: 3px solid #08752f;
  border-bottom: 1px solid #c9dfd0;
  border-radius: 0;
  background: #f2f8f4 !important;
  background-image: none !important;
  box-shadow: none;
  color: #1a1a1a !important;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.45;
}

/* Top-page regional blocks only. Existing HTML, text and href values remain unchanged. */
body.home .col-md-offset-1.col-md-10 > .support-area > .row ul.cf {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.home .col-md-offset-1.col-md-10 > .support-area > .row ul.cf > li {
  display: inline-flex !important;
  float: none !important;
  align-items: center;
  width: auto !important;
  min-height: 0;
  margin: 0 !important;
  padding: 5px 9px !important;
  border: 1px solid #e5e5e5;
  border-radius: 999px;
  background: #fff;
  color: #555;
  font-size: 11px !important;
  line-height: 1.35;
}

body.home .col-md-offset-1.col-md-10 > .support-area > .row ul.cf > li > a {
  display: inline;
  color: #444;
  font-size: inherit;
  line-height: inherit;
  text-decoration: none;
}

body.home .col-md-offset-1.col-md-10 > .support-area > .row ul.cf .fa-caret-right {
  display: none !important;
}

body.home .col-md-offset-1.col-md-10 > .support-area > .row .paragraph {
  margin-top: 6px;
  margin-bottom: 0;
  color: #777;
  font-size: 11px !important;
  line-height: 1.65;
}

body.home .col-md-offset-1.col-md-10 > .support-area > .row p.paragraph + br {
  display: none;
}

body.home .col-md-offset-1.col-md-10 > .support-area > .row [class*="col-xs-"] {
  min-height: 0;
}

/* All nine photo cards and the text chips use one neutral tone. */
body.home .mog-triage-category-card,
body.home .mog-triage-category-chips a {
  background: #fff !important;
}

@media (max-width: 767px) {
  body.home .col-md-offset-1.col-md-10 > .support-area {
    margin-bottom: 16px !important;
  }

  body.home .col-md-offset-1.col-md-10 > .support-area > .row {
    margin-right: 0;
    margin-left: 0;
  }

  body.home .col-md-offset-1.col-md-10 > .support-area > .row > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
  }
}

/* =========================================================
 * Top page additional correction:
 * remove legacy green outer frames from renovated content
 * ======================================================= */

/* Category link collection: remove the legacy .contents--box green frame.
 * Keep vertical whitespace as the only section separator.
 */
body.home #mog-kaitori-categories + .top-text-area .contents--box {
  margin: 0 5px 5px;
  padding: 15px 0;
  border: 0 !important;
  border-color: transparent !important;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
}

/* Purchase and purchase-history accordions also inherited the same legacy frame.
 * Remove it only inside the renovated top-page accordion panels.
 */
body.home .mog-case-accordion__panel > .top-text-area > .contents--box {
  margin: 0;
  padding: 15px 0;
  border: 0 !important;
  border-color: transparent !important;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
}

/* PC版改修：トップページ旧ブロックの非表示（可逆） */
body.home p.mogcp {
  display: none !important;
}

body.home .method-purchase {
  display: none !important;
}

body.home .step-purchase {
  display: none !important;
}

body.home .col-md-offset-1.col-md-10 > .support-area > .row > .hidden-xs {
  display: none !important;
}

/* =========================================
   PC版改修 v28：交互背景モダン版（最終ラフ準拠）
   - 交互帯: triage(白)→種目(薄緑)→地域(白)→事例(薄緑)
   - 見出し: 中央タイポ＋下センター緑ライン(案1・英字なし)
   - カード/チップ: 枠線廃止・角丸・柔影
   - SPには一切影響しない(min-width:769px限定)
========================================= */
@media (min-width: 769px) {
  /* ---------- triage帯(白) ---------- */
  .mog-triage {
    display: block;
    width: min(1100px, calc(100% - 48px));
    margin: 0 auto;
    padding: 40px 0 64px;
    color: #222;
    background: #fff;
  }

  /* --- 買取強化帯 --- */
  .mog-triage__boost {
    padding: 20px 28px 14px;
    overflow: hidden;
    border: 1px solid #f0c8c3;
    border-radius: 16px;
    background: linear-gradient(180deg, #fff8f7 0%, #ffefec 100%);
  }

  .mog-triage__boost-heading {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .mog-triage__boost-label {
    display: inline-flex;
    min-width: 232px;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
    border-radius: 8px;
    background: #c2392f;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
  }

  .mog-triage__boost-copy {
    color: #a72f27;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
  }

  .mog-triage__boost-stage {
    position: relative;
    margin-top: 18px;
  }

  .mog-triage__boost-scroll {
    width: calc(100% - 56px);
    margin: 0 28px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .mog-triage__boost-scroll::-webkit-scrollbar {
    display: none;
  }

  .mog-triage__boost-track {
    display: flex;
    gap: 16px;
    width: max-content;
    padding: 6px 0 12px;
  }

  .mog-triage__boost-item {
    display: grid;
    flex: 0 0 205px;
    width: 205px;
    height: 205px;
    grid-template-rows: 122px 37px 34px;
    align-content: start;
    overflow: hidden;
    border: 1px solid #e8a19a;
    border-radius: 14px;
    background: #fff;
    color: #222;
    text-align: center;
    text-decoration: none !important;
    scroll-snap-align: start;
    box-shadow: 0 3px 8px rgba(109, 48, 40, 0.12);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
  }

  .mog-triage__boost-item:hover,
  .mog-triage__boost-item:focus-visible {
    border-color: #c2392f;
    background: #fffdfd;
    text-decoration: none !important;
    box-shadow: 0 9px 18px rgba(155, 55, 44, 0.23);
    transform: translateY(-4px);
    outline: none;
  }

  .mog-triage__boost-item:active {
    background: #fff3f1;
    box-shadow: 0 2px 5px rgba(155, 55, 44, 0.15);
    transform: translateY(1px);
  }

  .mog-triage__boost-item img {
    display: block;
    width: 177px;
    height: 108px;
    margin: 9px auto 0;
    object-fit: contain;
  }

  .mog-triage__boost-name,
  .mog-triage__boost-value {
    display: grid;
    place-items: center;
    text-decoration: none !important;
  }

  .mog-triage__boost-name {
    padding: 0 6px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
  }

  .mog-triage__boost-value {
    color: #c2392f;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
  }

  .mog-triage__boost-arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    padding: 0;
    border: 1px solid #e8a19a;
    border-radius: 50%;
    background: #fff;
    color: #a72f27;
    cursor: pointer;
    transform: translateY(-50%);
    transition: box-shadow 180ms ease, border-color 180ms ease;
    appearance: none;
  }

  .mog-triage__boost-arrow--prev {
    left: 0;
  }

  .mog-triage__boost-arrow--next {
    right: 0;
  }

  .mog-triage__boost-arrow svg {
    display: block;
    width: 18px;
    height: 18px;
  }

  .mog-triage__boost-arrow path {
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
  }

  .mog-triage__boost-arrow:hover,
  .mog-triage__boost-arrow:focus-visible {
    border-color: #c2392f;
    box-shadow: 0 5px 12px rgba(155, 55, 44, 0.18);
    outline: none;
  }

  .mog-triage__boost-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    min-height: 24px;
    padding-top: 5px;
  }

  .mog-triage__boost-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f2cfcb;
  }

  .mog-triage__boost-dot.is-active {
    width: 10px;
    height: 10px;
    background: #c2392f;
  }

  .mog-triage__boost.is-fixed .mog-triage__boost-arrow,
  .mog-triage__boost.is-fixed .mog-triage__boost-dots {
    display: none;
  }

  .mog-triage__boost.is-fixed .mog-triage__boost-scroll {
    overflow-x: hidden;
  }

  .mog-triage__boost.is-fixed .mog-triage__boost-track {
    width: 100%;
    justify-content: center;
  }

  .mog-triage__feature {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-top: 16px;
    padding: 20px 28px;
    border: 1px solid #eedc9a;
    border-radius: 16px;
    background: linear-gradient(135deg, #fdf3d8, #fdecc1);
    color: #222;
    text-decoration: none !important;
    box-shadow: 0 3px 14px rgba(154, 98, 0, 0.16);
    transition: transform 180ms ease, box-shadow 180ms ease;
  }

  .mog-triage__feature,
  .mog-triage__feature * {
    text-decoration: none !important;
  }

  .mog-triage__feature:hover,
  .mog-triage__feature:focus-visible {
    text-decoration: none !important;
    box-shadow: 0 10px 22px rgba(120, 80, 0, 0.24);
    transform: translateY(-2px);
    outline: none;
  }

  .mog-triage__feature:active {
    box-shadow: 0 2px 6px rgba(120, 80, 0, 0.16);
    transform: translateY(1px);
  }

  .mog-triage__feature-image {
    width: 250px;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(120, 80, 0, 0.2);
  }

  .mog-triage__feature-body {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
  }

  .mog-triage__feature-badge {
    display: inline-flex;
    width: fit-content;
    margin: 0 0 8px;
    padding: 4px 12px;
    border-radius: 6px;
    background: #9a6200;
    color: #fff;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: 1.4;
  }

  .mog-triage__feature-title {
    display: block;
    color: #4a3000;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.5;
    text-decoration: none !important;
  }

  .mog-triage__feature-copy {
    display: block;
    margin-top: 8px;
    color: #6b5636;
    font-size: 14px;
    line-height: 1.7;
    text-decoration: none !important;
  }

  .mog-triage__feature-arrow {
    display: grid;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    place-items: center;
    margin-left: auto;
    border-radius: 50%;
    background: #9a6200;
    color: #fff;
    box-shadow: 0 3px 8px rgba(120, 80, 0, 0.3);
    transition: transform 180ms ease;
  }

  .mog-triage__feature-chevron {
    display: block;
    width: 18px;
    height: 18px;
    overflow: visible;
  }

  .mog-triage__feature-chevron path {
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
  }

  .mog-triage__feature:hover .mog-triage__feature-arrow,
  .mog-triage__feature:focus-visible .mog-triage__feature-arrow {
    transform: translateX(3px);
  }

  /* --- 仕分け見出し(中央・緑ライン) --- */
  .mog-triage__heading {
    margin: 52px 0 20px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #1a1a1a;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.55;
    text-align: center;
  }

  .mog-triage__heading::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    margin: 12px auto 0;
    border-radius: 2px;
    background: #f45112;
  }

  /* --- B/A共通(常時展開) --- */
  .mog-triage-accordion {
    border: 0;
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
  }

  .mog-triage-accordion__toggle {
    display: block;
    width: 100%;
    margin: 0;
    padding: 26px 30px 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: default;
    pointer-events: none;
    appearance: none;
  }

  .mog-triage-accordion__chevron {
    display: none;
  }

  .mog-triage-accordion__title {
    display: block;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.5;
  }

  .mog-triage-accordion__summary {
    display: block;
    margin-top: 4px;
    color: #555;
    font-size: 13px;
  }

  .mog-triage-accordion__panel {
    display: block !important;
    padding: 12px 30px 26px;
  }

  .mog-triage-accordion__text {
    margin: 0 0 10px;
    font-size: 13.5px;
    line-height: 1.8;
  }

  .mog-triage-accordion__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 12px;
    padding: 0;
    list-style: none;
  }

  .mog-triage-accordion__chips li {
    padding: 5px 11px;
    border: 1px solid #c9dfd0;
    border-radius: 999px;
    background: #f4f9f5;
    color: #055f27;
    font-size: 12px;
    font-weight: 700;
  }

  .mog-triage-accordion__case-link {
    font-size: 13px;
  }

  .mog-triage-accordion__case-link a {
    color: #185fa5;
  }

  .mog-triage-accordion__phone-label {
    font-size: 13px;
    font-weight: 700;
  }

  .mog-triage-accordion__phone-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    background: #08752f;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(8, 117, 47, 0.3);
  }

  .mog-triage-accordion__hours {
    color: #555;
    font-size: 12px;
  }

  .mog-triage-accordion__switch {
    padding-top: 10px;
    border-top: 1px dashed #ccc;
    color: #555;
    font-size: 12.5px;
    line-height: 1.7;
  }

  .mog-triage-accordion__switch a,
  .mog-triage-accordion__sub-link a {
    color: #185fa5;
  }

  .mog-triage-accordion__line-button {
    border-radius: 999px;
    background: #06c755;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(6, 199, 85, 0.3);
  }

  .mog-triage-accordion__note {
    margin: 0;
    color: #555;
    font-size: 12px;
  }

  .mog-triage-accordion__sub-link {
    margin: 0;
    padding: 0;
    border-top: 0;
    color: #555;
    font-size: 12.5px;
  }

  /* --- A：全幅バンド(左本文・右電話CTA) --- */
  .mog-triage-accordion--a {
    margin: 0 0 16px;
    border: 2px solid #08752f;
    border-radius: 16px;
    box-shadow: 0 3px 14px rgba(0, 60, 25, 0.10);
  }

  .mog-triage-accordion--a .mog-triage-accordion__panel {
    display: grid !important;
    position: relative;
    grid-template-columns: 1fr 300px;
    column-gap: 30px;
  }

  .mog-triage-accordion--a .mog-triage-accordion__panel::before {
    content: "";
    position: absolute;
    top: 12px;
    bottom: 20px;
    right: 314px;
    width: 1px;
    background: #e3ede6;
  }

  .mog-triage-accordion--a .mog-triage-accordion__text,
  .mog-triage-accordion--a .mog-triage-accordion__chips,
  .mog-triage-accordion--a .mog-triage-accordion__case-link {
    grid-column: 1;
  }

  .mog-triage-accordion--a .mog-triage-accordion__phone-label {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    margin: 0;
    text-align: center;
  }

  .mog-triage-accordion--a .mog-triage-accordion__phone-button {
    grid-column: 2;
    grid-row: 2 / span 2;
    align-self: center;
    justify-self: center;
  }

  .mog-triage-accordion--a .mog-triage-accordion__hours {
    grid-column: 2;
    grid-row: 4;
    align-self: start;
    margin: 0;
    text-align: center;
  }

  .mog-triage-accordion--a .mog-triage-accordion__switch {
    grid-column: 1;
    margin-top: 12px;
  }

  /* --- B：コンパクト帯 --- */
  .mog-triage-accordion--b {
    display: flex;
    align-items: center;
    gap: 26px;
    padding: 18px 30px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  }

  .mog-triage-accordion--b .mog-triage-accordion__toggle {
    width: auto;
    flex: 0 0 auto;
    padding: 0;
  }

  .mog-triage-accordion--b .mog-triage-accordion__title {
    font-size: 16px;
    white-space: nowrap;
  }

  .mog-triage-accordion--b .mog-triage-accordion__summary {
    font-size: 12px;
    white-space: nowrap;
  }

  .mog-triage-accordion--b .mog-triage-accordion__panel {
    display: grid !important;
    flex: 1 1 auto;
    grid-template-columns: 1fr auto;
    column-gap: 26px;
    align-items: center;
    padding: 0;
  }

  .mog-triage-accordion--b .mog-triage-accordion__text {
    grid-column: 1;
    margin: 0;
  }

  .mog-triage-accordion--b .mog-triage-accordion__note {
    grid-column: 1;
    text-align: left;
  }

  .mog-triage-accordion--b .mog-triage-accordion__sub-link {
    grid-column: 1;
  }

  .mog-triage-accordion--b .mog-triage-accordion__line-button {
    grid-column: 2;
    grid-row: 1 / span 3;
    margin: 0;
    padding: 13px 36px;
  }

  /* --- 格下げリンク --- */
  .mog-triage__minor-links {
    margin-top: 16px;
    font-size: 13px;
  }

  .mog-triage__minor-links a {
    margin-right: 22px;
    color: #555;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  /* ---------- 見出し 案1(全セクション共通・PCのみ) ---------- */
  body.home .support-area__heading {
    margin: 0 0 34px;
    padding: 0 !important;
    border: 0;
    background: transparent !important;
    background-image: none !important;
    box-shadow: none;
    color: #1a1a1a !important;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.55;
    text-align: center;
  }

  body.home .support-area__heading::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    margin: 18px auto 0;
    border-radius: 2px;
    background: #08752f;
  }

  /* 2つ目以降の地域ブロック(神奈川・埼玉千葉)はサブ見出し */
  body.home .support-area ~ .support-area > .support-area__heading {
    margin-top: 56px;
    font-size: 22px;
  }

  body.home .support-area ~ .support-area > .support-area__heading::after {
    width: 36px;
    margin-top: 14px;
  }

  /* 事例パネル内の見出しは控えめに */
  body.home .mog-case-accordion__panel .support-area__heading {
    margin: 16px 0 18px;
    font-size: 18px;
  }

  body.home .mog-case-accordion__panel .support-area__heading::after {
    width: 28px;
    margin-top: 10px;
  }

  /* ---------- 種目帯(薄緑・全幅) ---------- */
  body.home #mog-kaitori-categories + .top-text-area {
    max-width: none;
    margin: 0;
    padding: 72px 0 76px;
    background: #f4f9f5;
  }

  body.home #mog-kaitori-categories + .top-text-area .contents--box {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: center;
  }

  body.home #mog-kaitori-categories + .top-text-area .contents--box > p:first-child {
    margin: 0 0 30px;
    color: #666;
    font-size: 14px;
    line-height: 1.8;
  }

  .mog-triage-category-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mog-triage-category-card {
    position: relative;
    min-width: 0;
    border: 0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 50, 20, 0.08);
    overflow: hidden;
  }

  .mog-triage-category-card a {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100%;
    min-height: 150px;
    padding: 14px 6px;
    color: #222;
    text-align: center;
    text-decoration: none;
  }

  .mog-triage-category-card img {
    display: block;
    width: 100%;
    height: 88px;
    margin: 0 auto;
    object-fit: contain;
  }

  .mog-triage-category-card span {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    padding-right: 16px;
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.35;
  }

  .mog-triage-category-card a::after {
    content: "›";
    position: absolute;
    right: 9px;
    bottom: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    padding-bottom: 1px;
    border-radius: 50%;
    background: #08752f;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
  }

  body.home #mog-kaitori-categories + .top-text-area .col-md-offset-1.col-md-10 {
    max-width: 1126px;
    padding-right: 0;
    padding-left: 0;
  }

  .mog-triage-category-grid--pc-all {
    grid-template-columns: repeat(5, 198px);
    justify-content: center;
    gap: 14px;
    width: 100%;
    padding-right: 40px;
    padding-left: 40px;
  }

  .mog-triage-category-grid--pc-all .mog-triage-category-card {
    width: 198px;
    height: 168px;
  }

  .mog-triage-category-grid--pc-all .mog-triage-category-card a {
    height: 168px;
    min-height: 168px;
    padding: 12px 8px;
  }

  .mog-triage-category-grid--pc-all .mog-triage-category-card img {
    height: 102px;
  }

  .mog-triage-category-grid--pc-all .mog-triage-category-card span {
    margin-top: 6px;
    font-size: 13px;
  }

  .mog-triage-category-sp-current {
    display: none;
  }

  .mog-triage-category-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
    max-width: 980px;
    margin: 20px auto 0;
    padding: 0;
    list-style: none;
  }

  .mog-triage-category-chips li {
    margin: 0;
    padding: 0;
  }

  .mog-triage-category-chips a {
    display: block;
    padding: 9px 15px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: #222;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.09);
  }

  .mog-triage-category-chips a::after {
    content: "›";
    margin-left: 5px;
    color: #08752f;
    font-weight: 700;
  }

  .mog-triage-category-more,
  .mog-triage-category-shop {
    margin: 20px 0 0;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
  }

  .mog-triage-category-more a {
    color: #555;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .mog-triage-category-shop a {
    color: #185fa5;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  /* ---------- 地域帯(白・全幅) ---------- */
  body.home .container:has(> .row > .col-md-offset-1.col-md-10 > .support-area) {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 72px 0 76px;
    background: #fff;
  }

  body.home .col-md-offset-1.col-md-10 > .support-area > .row .paragraph {
    max-width: 640px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  body.home .col-md-offset-1.col-md-10 > .support-area > .row ul.cf {
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
  }

  body.home .col-md-offset-1.col-md-10 > .support-area > .row ul.cf > li {
    border: 1px solid #e9e9e9;
    background: #fff;
  }

  /* ---------- 事例帯(薄緑・全幅) ---------- */
  body.home .container:has(.mog-case-accordions) {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 64px 0 72px;
    background: #f4f9f5;
  }

  .mog-case-accordions {
    margin: 0;
  }

  .mog-case-accordion {
    margin: 0 0 12px;
    border: 0;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    overflow: hidden;
  }

  .mog-case-accordion__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    min-height: 54px;
    margin: 0;
    padding: 17px 22px;
    border: 0;
    background: #fff;
    color: #333;
    font: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    text-align: left;
    cursor: pointer;
    appearance: none;
  }

  .mog-case-accordion__chevron {
    flex: 0 0 auto;
    color: #888;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
  }

  .mog-case-accordion__panel {
    display: block;
    padding: 0 18px 16px;
    border-top: 1px solid #eef2ef;
  }

  .mog-case-accordion:not(.is-open) > .mog-case-accordion__panel {
    display: none;
  }

  /* ---------- 下段セクションの列を中央1100pxに統一 ---------- */
  body.home .col-md-offset-1.col-md-10 {
    float: none;
    width: auto;
    max-width: 1100px;
    margin-right: auto;
    margin-left: auto;
  }
}

/* v29: 地域ブロック内の旧グリッド列を全幅化（チップ・本文の中央ズレ修正） */
@media (min-width: 769px) {
  body.home .col-md-offset-1.col-md-10 > .support-area .row,
  body.home .col-md-offset-1.col-md-10 > .support-area .row [class*="col-"] {
    float: none;
    width: 100%;
    margin: 0;
    padding: 0;
  }
}

/* =========================================
   PC版改修 v31：地域帯 案3・低強調
   - 東京都は上段全幅
   - 神奈川県／埼玉県・千葉県は下段2カラム
   - 地域リンクは低強調
   - SPには一切影響しない(min-width:769px限定)
========================================= */
@media (min-width: 769px) {
  body.home .container:has(> .row > .col-md-offset-1.col-md-10 > .support-area) {
    padding: 54px 0 60px;
  }

  body.home .container:has(> .row > .col-md-offset-1.col-md-10 > .support-area)
    > .row
    > .col-md-offset-1.col-md-10 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 36px;
    row-gap: 38px;
  }

  body.home .container:has(> .row > .col-md-offset-1.col-md-10 > .support-area)
    > .row
    > .col-md-offset-1.col-md-10
    > .support-area {
    min-width: 0;
    margin: 0 !important;
  }

  body.home .container:has(> .row > .col-md-offset-1.col-md-10 > .support-area)
    > .row
    > .col-md-offset-1.col-md-10
    > .support-area:nth-of-type(1) {
    grid-column: 1 / -1;
    padding-bottom: 38px;
    border-bottom: 1px solid #edf0ee;
  }

  body.home .container:has(> .row > .col-md-offset-1.col-md-10 > .support-area)
    > .row
    > .col-md-offset-1.col-md-10
    > .support-area:nth-of-type(2) {
    grid-column: 1;
    padding-right: 18px;
  }

  body.home .container:has(> .row > .col-md-offset-1.col-md-10 > .support-area)
    > .row
    > .col-md-offset-1.col-md-10
    > .support-area:nth-of-type(3) {
    grid-column: 2;
    padding-left: 36px;
    border-left: 1px solid #edf0ee;
  }

  body.home .container:has(> .row > .col-md-offset-1.col-md-10 > .support-area)
    > .row
    > .col-md-offset-1.col-md-10
    > .support-area
    > .support-area__heading {
    margin: 0 0 22px;
    font-size: 19px;
    line-height: 1.55;
  }

  body.home .container:has(> .row > .col-md-offset-1.col-md-10 > .support-area)
    > .row
    > .col-md-offset-1.col-md-10
    > .support-area:nth-of-type(1)
    > .support-area__heading {
    font-size: 24px;
  }

  body.home .container:has(> .row > .col-md-offset-1.col-md-10 > .support-area)
    > .row
    > .col-md-offset-1.col-md-10
    > .support-area
    > .support-area__heading::after {
    width: 30px;
    height: 2px;
    margin-top: 12px;
  }

  body.home .container:has(> .row > .col-md-offset-1.col-md-10 > .support-area)
    > .row
    > .col-md-offset-1.col-md-10
    > .support-area:nth-of-type(n + 2)
    > .support-area__heading::after {
    width: 24px;
  }

  body.home .container:has(> .row > .col-md-offset-1.col-md-10 > .support-area)
    > .row
    > .col-md-offset-1.col-md-10
    > .support-area
    > .row
    p.paragraph:not(.b-text) {
    max-width: none;
    margin: 0 auto 18px;
    color: #5f6661;
    font-size: 14px !important;
    line-height: 1.7;
    text-align: center;
  }

  body.home .container:has(> .row > .col-md-offset-1.col-md-10 > .support-area)
    > .row
    > .col-md-offset-1.col-md-10
    > .support-area
    > .row
    ul.cf {
    gap: 7px 8px;
    max-width: 520px;
  }

  body.home .container:has(> .row > .col-md-offset-1.col-md-10 > .support-area)
    > .row
    > .col-md-offset-1.col-md-10
    > .support-area:nth-of-type(1)
    > .row
    ul.cf {
    max-width: 950px;
  }

  body.home .container:has(> .row > .col-md-offset-1.col-md-10 > .support-area)
    > .row
    > .col-md-offset-1.col-md-10
    > .support-area
    > .row
    ul.cf
    > li {
    padding: 5px 10px !important;
    border: 0;
    background: #f7f8f7;
    color: #626763;
    font-size: 14px !important;
    line-height: 1.5;
    box-shadow: none;
  }

  body.home .container:has(> .row > .col-md-offset-1.col-md-10 > .support-area)
    > .row
    > .col-md-offset-1.col-md-10
    > .support-area
    > .row
    ul.cf
    > li
    > a {
    color: inherit;
    text-decoration: none;
  }

  body.home .container:has(> .row > .col-md-offset-1.col-md-10 > .support-area)
    > .row
    > .col-md-offset-1.col-md-10
    > .support-area
    > .row
    ul.cf
    > li
    > a:hover {
    color: #444;
    text-decoration: none;
  }

  body.home .container:has(> .row > .col-md-offset-1.col-md-10 > .support-area)
    > .row
    > .col-md-offset-1.col-md-10
    > .support-area
    > .row
    .paragraph.b-text {
    max-width: 520px;
    margin: 22px auto 0;
    color: #5f6661;
    font-size: 14px !important;
    line-height: 1.8;
  }

  body.home .container:has(> .row > .col-md-offset-1.col-md-10 > .support-area)
    > .row
    > .col-md-offset-1.col-md-10
    > .support-area:nth-of-type(1)
    > .row
    .paragraph.b-text {
    max-width: 760px;
  }
}

/* =========================================
   v40：状況別3カード＋問い合わせモーダル
========================================= */
body.mog-triage-modal-open {
  overflow: hidden;
}

.mog-triage-cards,
.mog-triage-cards *,
.mog-triage-cards *::before,
.mog-triage-cards *::after,
.mog-triage-modal,
.mog-triage-modal *,
.mog-triage-modal *::before,
.mog-triage-modal *::after {
  box-sizing: border-box;
}

.mog-triage-cards {
  display: grid;
  gap: 18px;
}

.mog-triage-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #c9dfd0;
  border-top: 3px solid #08752f;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 5px 14px rgba(0, 71, 32, 0.10);
}

.mog-triage-card__header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 22px;
  border-bottom: 1px solid #d7e5dc;
  text-align: center;
}

.mog-triage-card__title {
  margin: 0;
  padding: 0;
  color: #161616;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.mog-triage-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 22px;
}

.mog-triage-card__text {
  margin: 0;
  color: #161616;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.mog-triage-card__text + .mog-triage-card__text {
  margin-top: 8px;
}

.mog-triage-card__button {
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  margin: auto 0 0;
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  background: #08752f;
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
  appearance: none;
}

.mog-triage-card__button:hover,
.mog-triage-card__button:focus-visible {
  background: #055f27;
  outline: none;
}

.mog-triage-modal {
  position: fixed;
  z-index: 10020;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.56);
}

.mog-triage-modal.is-open {
  display: flex;
}

.mog-triage-modal__dialog {
  position: relative;
  width: min(680px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 32px;
  border-radius: 16px;
  background: #fff;
  color: #161616;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
  overscroll-behavior: contain;
}

.mog-triage-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid #c9dfd0;
  border-radius: 50%;
  background: #fff;
  color: #161616;
  cursor: pointer;
  appearance: none;
}

.mog-triage-modal__close:hover,
.mog-triage-modal__close:focus-visible {
  border-color: #08752f;
  outline: none;
}

.mog-triage-modal__close-icon {
  display: block;
  width: 24px;
  height: 24px;
}

.mog-triage-modal__title {
  margin: 0;
  padding: 0 52px 0 0;
  color: #161616;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

.mog-triage-modal__lead,
.mog-triage-modal__switch,
.mog-triage-modal__hours {
  color: #161616;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.mog-triage-modal__lead {
  margin: 10px 0 0;
}

.mog-triage-modal__recommendation {
  margin: 22px 0 0;
  padding: 14px 16px;
  border-left: 4px solid #08752f;
  background: #eef7f1;
  color: #161616;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
}

.mog-triage-modal__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.mog-triage-modal__action {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none !important;
}

.mog-triage-modal__action:hover,
.mog-triage-modal__action:focus-visible {
  color: #fff !important;
  text-decoration: none !important;
  outline: none;
}

.mog-triage-modal__action--line {
  background: #06c755;
}

.mog-triage-modal__action--mail {
  background: #e96f17;
}

.mog-triage-modal__action--phone {
  width: 100%;
  margin-top: 14px;
  padding-top: 11px;
  padding-bottom: 11px;
  border: 1px solid #f5b78f;
  background: #fff1e8;
  color: #c94f16 !important;
  box-shadow: 0 3px 10px rgba(201, 79, 22, 0.12);
  font-size: 22px;
}

.mog-triage-modal__action--phone:hover,
.mog-triage-modal__action--phone:focus-visible {
  border-color: #ef9d6b;
  background: #ffe9dc;
  color: #b94712 !important;
}

.mog-triage-modal__action--phone-primary {
  margin-top: 22px;
}

.mog-triage-modal__icon {
  display: block;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.mog-triage-modal__divider {
  height: 1px;
  margin: 24px 0 0;
  background: #d7e5dc;
}

.mog-triage-modal__switch {
  margin: 18px 0 0;
  text-align: center;
}

.mog-triage-modal__hours {
  margin: 10px 0 0;
  text-align: center;
}

.mog-triage-modal__secondary {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #d7e5dc;
}

.mog-triage-modal__secondary .mog-triage-modal__recommendation {
  margin-top: 0;
}

.mog-triage-modal__escape {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #d7e5dc;
}

.mog-triage-modal__escape a {
  padding: 0 18px;
  color: #08752f;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mog-triage-modal__escape a + a {
  border-left: 1px solid #a9b8ae;
}

@media (min-width: 769px) {
  .mog-triage-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mog-triage-card {
    min-height: 330px;
  }

  .mog-triage-card__header {
    min-height: 118px;
  }

  .mog-triage-card__body {
    min-height: 209px;
  }
}

@media (max-width: 768px) {
  .mog-triage-cards {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    margin: 0 16px;
  }

  .mog-triage-card__header {
    min-height: 0;
    padding: 18px 16px;
  }

  .mog-triage-card__title {
    font-size: 18px;
  }

  .mog-triage-card__body {
    min-height: 0;
    padding: 18px 16px;
  }

  .mog-triage-card__button {
    margin-top: 18px;
  }

  .mog-triage-modal {
    align-items: flex-end;
    padding: 12px;
  }

  .mog-triage-modal__dialog {
    width: 100%;
    max-height: calc(100vh - 24px);
    max-height: calc(100dvh - 24px);
    padding: 28px 18px 24px;
    border-radius: 16px;
  }

  .mog-triage-modal__close {
    top: 12px;
    right: 12px;
  }

  .mog-triage-modal__title {
    padding-right: 48px;
    font-size: 20px;
  }

  .mog-triage-modal__lead,
  .mog-triage-modal__switch,
  .mog-triage-modal__hours,
  .mog-triage-modal__action,
  .mog-triage-modal__escape a {
    font-size: 16px;
  }

  .mog-triage-modal__recommendation {
    font-size: 17px;
  }

  .mog-triage-modal__action--phone {
    font-size: 20px;
  }

  .mog-triage-modal__actions {
    gap: 8px;
  }

  .mog-triage-modal__action {
    padding-right: 12px;
    padding-left: 12px;
  }

  .mog-triage-modal__escape a {
    padding-right: 12px;
    padding-left: 12px;
  }
}

/* =========================================================
 * v45: 状況別3カード・購入買取事例・下部主要導線再掲
 * ======================================================= */
body.home .mog-triage-cards {
  align-items: stretch;
  gap: 18px;
}

body.home .mog-triage-card {
  display: flex;
  min-width: 0;
  min-height: 610px;
  flex-direction: column;
  border: 1px solid #f5a27b;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(83, 45, 28, 0.08);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

body.home .mog-triage-card__visual {
  display: flex;
  min-height: 150px;
  align-items: center;
  justify-content: center;
  padding: 20px 20px 4px;
}

body.home .mog-triage-card__icon-disc {
  display: grid;
  width: 126px;
  height: 126px;
  place-items: center;
  border-radius: 50%;
  background: #fff0e9;
  color: #f45112;
}

body.home .mog-triage-card__illustration {
  display: block;
  width: 106px;
  height: 72px;
}

body.home .mog-triage-card__header {
  min-height: 112px;
  padding: 6px 22px 16px;
  border: 0;
  background: transparent;
}

body.home .mog-triage-card__title {
  margin: 0;
  color: #161616;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

body.home .mog-triage-card__title::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: #f45112;
}

body.home .mog-triage-card__body {
  display: flex;
  min-height: 0;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 0 22px 22px;
}

body.home .mog-triage-card__copy {
  flex: 1 1 auto;
  padding: 16px 0 20px;
}

body.home .mog-triage-card__bullet-list {
  margin: 0;
  padding: 14px 16px;
  border-radius: 10px;
  background: #fff8f4;
  list-style: none;
}

body.home .mog-triage-card__bullet-list li {
  position: relative;
  padding-left: 17px;
  color: #161616;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.72;
}

body.home .mog-triage-card__bullet-list li + li {
  margin-top: 5px;
}

body.home .mog-triage-card__bullet-list li::before {
  content: "";
  position: absolute;
  top: 0.76em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f45112;
}

body.home .mog-triage-card__closing {
  margin: 17px 0 0;
  color: #161616;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.72;
}

body.home .mog-triage__other-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
  padding: 18px 20px;
  border-radius: 14px;
  background: #fff8f4;
}

body.home .mog-triage__other-link {
  display: inline-flex;
  width: 100%;
  max-width: 460px;
  min-width: 260px;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 30px;
  border: 2px solid #f45112;
  border-radius: 999px;
  background: #fff;
  color: #f45112;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
}

body.home .mog-triage__other-link-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

body.home .mog-triage-card__button {
  display: inline-flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  background: #f45112;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.4;
  box-shadow: none;
  transition: background-color 0.22s ease, transform 0.22s ease;
}

body.home .mog-triage-card__button-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

@media (hover: hover) and (pointer: fine) {
  body.home .mog-triage-card:hover {
    transform: translateY(-6px);
    border-color: #f45112;
    box-shadow: 0 13px 28px rgba(124, 52, 20, 0.16);
  }

  body.home .mog-triage-card:hover .mog-triage-card__button {
    background: #dc3c06;
  }
}

body.home .mog-triage-card:focus-within {
  transform: translateY(-6px);
  border-color: #f45112;
  box-shadow: 0 13px 28px rgba(124, 52, 20, 0.16);
}

body.home .mog-case-list {
  display: grid;
  gap: 18px;
}

body.home .mog-case-card {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  grid-template-areas:
    "avatar main"
    "avatar benefit";
  column-gap: 18px;
  row-gap: 14px;
  padding: 22px 24px;
  border: 1px solid #dde9e0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 3px 12px rgba(32, 77, 47, 0.07);
}

body.home .mog-case-card__avatar {
  display: flex;
  grid-area: avatar;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
}

body.home .mog-case-card__avatar img {
  display: block;
  width: 72px;
  height: 90px;
  object-fit: contain;
}

body.home .mog-case-card__main {
  grid-area: main;
  min-width: 0;
}

body.home .mog-case-card__person {
  margin: 0 0 6px;
  color: #161616;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
}

body.home .mog-case-card__text,
body.home .mog-case-card__benefit-text {
  margin: 0;
  color: #2d2d2d;
  font-size: 14px;
  line-height: 1.8;
}

body.home .mog-case-card__benefit {
  grid-area: benefit;
  min-width: 0;
  padding: 13px 15px 14px;
  border: 1px solid #cfe3d5;
  border-radius: 10px;
  background: #f2f8f3;
}

body.home .mog-case-card__benefit-title {
  margin: 0 0 7px;
  color: #08752f;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

body.home .mog-home-actions-wrap--footer-repeat {
  margin: 0;
  padding: 24px 0 22px;
  background: #fff;
}

@media (max-width: 768px) {
  body.home .mog-triage-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body.home .mog-triage-card {
    min-height: 0;
    border-radius: 13px;
  }

  body.home .mog-triage-card__visual {
    min-height: 112px;
    padding: 16px 16px 4px;
  }

  body.home .mog-triage-card__icon-disc {
    width: 98px;
    height: 98px;
  }

  body.home .mog-triage-card__illustration {
    width: 86px;
    height: 60px;
  }

  body.home .mog-triage-card__header {
    min-height: 0;
    padding: 5px 18px 13px;
  }

  body.home .mog-triage-card__title {
    font-size: 19px;
    line-height: 1.48;
  }

  body.home .mog-triage-card__title::after {
    margin-top: 11px;
  }

  body.home .mog-triage-card__body {
    padding: 0 16px 16px;
  }

  body.home .mog-triage-card__copy {
    padding: 13px 0 16px;
  }

  body.home .mog-triage-card__bullet-list li,
  body.home .mog-triage-card__closing {
    font-size: 15px;
  }

  body.home .mog-triage__other-wrap {
    margin: 22px 16px 0;
    padding: 12px;
    border-radius: 12px;
    background: #fff8f4;
  }

  body.home .mog-triage__other-link {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding-right: 20px;
    padding-left: 20px;
  }

  body.home .mog-triage-card__button {
    min-height: 48px;
    gap: 9px;
    font-size: 16px;
  }

  body.home .mog-triage-card__button-icon {
    width: 21px;
    height: 21px;
    flex-basis: 21px;
  }

  body.home .mog-case-list {
    gap: 12px;
  }

  body.home .mog-case-card {
    grid-template-columns: 62px minmax(0, 1fr);
    grid-template-areas:
      "avatar main"
      "benefit benefit";
    column-gap: 12px;
    row-gap: 12px;
    padding: 16px 14px;
    border-radius: 12px;
  }

  body.home .mog-case-card__avatar img {
    width: 58px;
    height: 73px;
  }

  body.home .mog-case-card__person {
    margin-bottom: 4px;
    font-size: 14px;
  }

  body.home .mog-case-card__text,
  body.home .mog-case-card__benefit-text,
  body.home .mog-case-card__benefit-title {
    font-size: 14px;
  }

  body.home .mog-case-card__text,
  body.home .mog-case-card__benefit-text {
    line-height: 1.75;
  }

  body.home .mog-home-actions-wrap--footer-repeat {
    padding: 14px 14px 16px;
  }
}



/* =========================================================
 * v45: PC下部再掲3導線を上部3導線と同一配色へ固定
 * ======================================================= */
@media (min-width: 769px) {
  body.home .mog-home-actions-wrap--footer-repeat .mog-home-action:not(.mog-home-action--shop) {
    border-color: #f1b496;
    color: #111 !important;
  }

  body.home .mog-home-actions-wrap--footer-repeat .mog-home-action:not(.mog-home-action--shop) .mog-home-action__lead,
  body.home .mog-home-actions-wrap--footer-repeat .mog-home-action:not(.mog-home-action--shop) .mog-home-action__main,
  body.home .mog-home-actions-wrap--footer-repeat .mog-home-action:not(.mog-home-action--shop) .mog-home-action__icon,
  body.home .mog-home-actions-wrap--footer-repeat .mog-home-action:not(.mog-home-action--shop) .mog-home-action__title {
    color: #f45112;
  }

  body.home .mog-home-actions-wrap--footer-repeat .mog-home-action--shop {
    border-color: #c9dfd0;
  }

  body.home .mog-home-actions-wrap--footer-repeat .mog-home-action--shop .mog-home-action__lead,
  body.home .mog-home-actions-wrap--footer-repeat .mog-home-action--shop .mog-home-action__main,
  body.home .mog-home-actions-wrap--footer-repeat .mog-home-action--shop .mog-home-action__icon,
  body.home .mog-home-actions-wrap--footer-repeat .mog-home-action--shop .mog-home-action__title {
    color: #055f27;
  }
}
