:root {
  --bg: #ffffff;
  --ink: #0f172a;
  --muted: rgba(15, 23, 42, .68);

  --green: #1f9d63;
  --green2: #16a34a;

  --orange: #f59e0b;
  --orange2: #fb923c;

  --line: rgba(15, 23, 42, .10);
  --card: #ffffff;

  --radius: 22px;
  --radius2: 16px;

  --shadow: 0 18px 45px rgba(15, 23, 42, .10);
  --shadow2: 0 18px 40px rgba(15, 23, 42, .12);
}

/* SVG Mask for Badges */
.svg-mask {
  width: 0;
  height: 0;
  position: absolute;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, -apple-system, Segoe UI, Roboto, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.75;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.noScroll {
  overflow: hidden;
}

.btnIcon {
  font-size: 16px;
  line-height: 1;
}

/* ===== Header ===== */
.siteHeader {
  position: relative;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.headerInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.brandLogo {
  height: 44px;
  width: auto;
}

.gnav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-weight: 900;
  color: rgba(15, 23, 42, .78);
  white-space: nowrap;
}

.gnav a {
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 999px;
  transition: background .18s ease, color .18s ease;
}

.gnav a:hover {
  background: rgba(245, 158, 11, .10);
  color: rgba(15, 23, 42, .92);
}

.headerCta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.headerTel {
  text-align: right;
}

.headerTelLabel {
  font-size: 11px;
  font-weight: 900;
  color: rgba(15, 23, 42, .55);
}

/* ✅ 右上電話番号：枠なし（色＋太字のみ） */
.headerTelNum {
  font-size: 20px;
  font-weight: 1000;
  text-decoration: none;
  color: var(--orange);
  letter-spacing: .02em;
}

.headerTelNum:hover {
  filter: brightness(.98);
}

.headerTelHours {
  font-size: 11px;
  font-weight: 800;
  color: rgba(15, 23, 42, .55);
}

.headerBtns {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btnPrimary,
.btnOutline,
.btnGhost {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .18s ease, filter .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.btnPrimary {
  background: linear-gradient(90deg, var(--orange), var(--orange2));
  color: #fff;
  box-shadow: 0 14px 28px rgba(245, 158, 11, .22);
}

.btnPrimary:hover {
  transform: translateY(-2px);
  filter: brightness(.98);
}

.btnOutline {
  background: #fff;
  color: var(--ink);
  border-color: rgba(245, 158, 11, .45);
}

.btnOutline:hover {
  transform: translateY(-2px);
  background: rgba(245, 158, 11, .06);
}

.btnSm {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  position: relative;
}

.hamburger span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: rgba(15, 23, 42, .75);
  border-radius: 999px;
}

.hamburger span:nth-child(1) {
  top: 14px;
}

.hamburger span:nth-child(2) {
  top: 21px;
}

.hamburger span:nth-child(3) {
  top: 28px;
}

.drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .35);
}

.drawerInner {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(360px, 86vw);
  background: #fff;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: -20px 0 60px rgba(0, 0, 0, .18);
}

.drawerInner a {
  text-decoration: none;
  font-weight: 900;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(15, 23, 42, .04);
}

.drawerCta {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawerTelNote {
  font-size: 12px;
  font-weight: 800;
  color: rgba(15, 23, 42, .70);
}

.drawerTelNote a {
  color: var(--orange);
  font-weight: 1000;
  text-decoration: none;
}

.siteHeader.drawerOpen .drawer {
  display: block;
}

/* ===== 固定ナビゲーション ===== */
.gnavFixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
}

.gnavFixed.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.gnavFixed .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.gnavFixed a {
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 900;
  color: rgba(15, 23, 42, .78);
  white-space: nowrap;
  transition: background .18s ease, color .18s ease;
  font-size: 14px;
}

.gnavFixed a:hover {
  background: rgba(245, 158, 11, .10);
  color: rgba(15, 23, 42, .92);
}

@media (max-width: 980px) {

  .gnav,
  .headerCta {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .gnavFixed {
    display: none !important;
    opacity: 0 !important;
  }
}

/* =========================
   HERO v2
   ========================= */
.hero.hero--v2 {
  position: relative;
  isolation: isolate;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  padding: clamp(28px, 4vw, 44px) 0;
  min-height: clamp(520px, 62vh, 680px);
  overflow: hidden;
}

.hero.hero--v2 .hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 520px at 18% 18%,
      rgba(0, 0, 0, .18) 0%,
      rgba(0, 0, 0, .08) 28%,
      rgba(0, 0, 0, 0) 60%);
  pointer-events: none;
}

/* スマホ時のヒーロー背景画像とオーバーレイの調整 */
@media (max-width: 768px) {
  .hero.hero--v2 {
    background-position: center right;
    background-size: cover;
  }

  .hero.hero--v2 .hero__overlay {
    background:
      linear-gradient(to right,
        rgba(0, 0, 0, .35) 0%,
        rgba(0, 0, 0, .25) 30%,
        rgba(0, 0, 0, .15) 50%,
        rgba(0, 0, 0, .05) 70%,
        rgba(0, 0, 0, 0) 85%),
      radial-gradient(800px 400px at 15% 20%,
        rgba(0, 0, 0, .20) 0%,
        rgba(0, 0, 0, .10) 30%,
        rgba(0, 0, 0, 0) 60%);
  }

  /* スマホ時は背景画像の視認性を高めるため、テキストの影を強化 */
  .hero.hero--v2 .hero__headlineTag,
  .hero.hero--v2 .hero__headlineMain {
    text-shadow:
      0 16px 42px rgba(0, 0, 0, .60),
      0 8px 20px rgba(0, 0, 0, .50),
      0 4px 8px rgba(0, 0, 0, .40),
      0 0 3px rgba(0, 0, 0, .70);
  }
}

.hero.hero--v2 .hero__inner {
  position: relative;
  z-index: 1;
  min-height: clamp(520px, 62vh, 680px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

.hero.hero--v2 .hero__copy {
  max-width: 720px;
  position: relative;
}

.hero.hero--v2 .hero__headline {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.hero.hero--v2 .hero__headlineTag {
  display: block;
  color: #fff;
  font-weight: 900;
  font-size: clamp(28px, 3.8vw, 50px);
  letter-spacing: .01em;
  line-height: 1.4;
  text-shadow:
    0 12px 32px rgba(0, 0, 0, .45),
    0 6px 16px rgba(0, 0, 0, .35),
    0 2px 4px rgba(0, 0, 0, .25),
    0 0 2px rgba(0, 0, 0, .5);
  white-space: nowrap;
  position: relative;
}

/* 重要キーワードの色アクセント */
.hero.hero--v2 .hero__keyword {
  color: #ffb88c;
  text-shadow:
    0 12px 32px rgba(255, 184, 140, .35),
    0 6px 16px rgba(255, 184, 140, .25),
    0 2px 4px rgba(0, 0, 0, .25),
    0 0 2px rgba(0, 0, 0, .5);
  font-weight: 900;
}

@media (max-width: 980px) {
  .hero.hero--v2 .hero__headlineTag {
    white-space: normal;
  }
}

.hero.hero--v2 .hero__headlineMain {
  display: inline-block;
  margin-top: 16px;
  color: #fff;
  font-weight: 900;
  font-size: clamp(58px, 7vw, 96px);
  letter-spacing: .03em;
  line-height: 1.1;
  text-shadow:
    0 16px 42px rgba(0, 0, 0, .50),
    0 8px 20px rgba(0, 0, 0, .40),
    0 4px 8px rgba(0, 0, 0, .30),
    0 0 3px rgba(0, 0, 0, .60);
  position: relative;
}

.hero.hero--v2 .hero__badges {
  display: flex;
  gap: clamp(10px, 1.6vw, 16px);
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 8px;
}

.heroBadge {
  width: clamp(180px, 18vw, 220px);
  height: clamp(180px, 18vw, 220px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  z-index: 10;
  padding: 20px;
}

/* 厚紙風の円形背景（少しベージュがかった色、ざらざらした質感） */
.heroBadge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #faf8f5;
  background-image: 
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.4'/%3E%3C/svg%3E"),
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.03) 0%, transparent 50%);
  background-size: 60px 60px, 100% 100%, 100% 100%;
  border-radius: 50%;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.08),
    0 2px 6px rgba(0, 0, 0, 0.04),
    inset 0 1px 2px rgba(255, 255, 255, 0.5);
  z-index: 1;
}

/* 外側の薄い縁取り */
.heroBadge::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 2px solid var(--badge-border-color);
  border-radius: 50%;
  opacity: 0.4;
  z-index: 2;
  pointer-events: none;
}

/* 内側の濃い縁取り（外側の縁取りの内側に沿うように、フォントと同じ色） */
.heroBadge__innerBorder {
  position: absolute;
  inset: 6px;
  border: 2px solid var(--badge-text-color);
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}

.heroBadge:hover {
  transform: translateY(-5px);
}

.heroBadge:hover::before {
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.12),
    0 4px 10px rgba(0, 0, 0, 0.06);
}

.heroBadge__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}


.heroBadge__top {
  font-weight: 800;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.3;
  margin-bottom: 4px;
  letter-spacing: 0.03em;
  color: var(--badge-text-color);
  font-family: 'Zen Maru Gothic', sans-serif;
}

.heroBadge__num {
  font-weight: 900;
  line-height: 1;
  font-size: clamp(38px, 4.5vw, 48px);
  letter-spacing: -0.02em;
  margin: 6px 0;
  color: var(--badge-text-color);
}

.heroBadge__bottom {
  font-weight: 800;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.3;
  letter-spacing: 0.03em;
  color: var(--badge-text-color);
  font-family: 'Zen Maru Gothic', sans-serif;
}

/* ============================================
   Badge Color - 白い円に色付きボーダー
   優しめの色：オレンジ、ティール、控えめな藍色
   ============================================ */

/* オレンジバッジ */
.heroBadge--orange {
  --badge-border-color: #ffb88c;
  --badge-text-color: #ff8c5a;
  --badge-accent-color: #ff8c5a;
}

/* グリーンバッジ（ティール） */
.heroBadge--green {
  --badge-border-color: #7fb8b8;
  --badge-text-color: #5a9a9a;
  --badge-accent-color: #5a9a9a;
}

/* ブルーバッジ（控えめな藍色） */
.heroBadge--brown {
  --badge-border-color: #8fa3c4;
  --badge-text-color: #6b7fa0;
  --badge-accent-color: #6b7fa0;
}

@media (max-width: 980px) {
  .heroBadge {
    width: clamp(160px, 20vw, 180px);
    height: clamp(160px, 20vw, 180px);
  }
}

@media (max-width: 520px) {
  .heroBadge {
    width: 150px !important;
    height: 150px !important;
    padding: 16px;
  }

  .heroBadge__num {
    font-size: 36px;
  }

  .heroBadge__top,
  .heroBadge__bottom {
    font-size: 14px;
  }
}

/* ===== Marquee ===== */
.marqueeWrap {
  background: #fff;
  border-top: 1px solid rgba(15, 23, 42, .06);
  border-bottom: 1px solid rgba(15, 23, 42, .06);
}

.marquee {
  overflow: hidden;
  width: 100%;
}

.marqueeTrack {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.marqueeTrack img {
  width: 360px;
  height: 220px;
  object-fit: cover;
  flex: 0 0 auto;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 720px) {
  .marqueeTrack img {
    width: 260px;
    height: 170px;
  }
}

/* ===== Sections ===== */
.section {
  padding: 70px 0;
  background: #fff;
}

.sectionAlt {
  background: #fbfaf7;
}

.sectionAlt2 {
  background: #f7faf8;
}

.sectionHead {
  text-align: center;
  margin-bottom: 26px;
}

.sectionKicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 900;
  color: rgba(15, 23, 42, .62);
  letter-spacing: .06em;
  font-size: 12px;
  margin-bottom: 10px;
}

.sectionKicker--sub {
  display: block;
  margin-top: 4px;
  margin-bottom: 8px;
  font-size: 13px;
  color: rgba(15, 23, 42, .70);
  letter-spacing: .05em;
}

.sectionTitle {
  margin: 0 0 10px;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -.02em;
}

.sectionDesc {
  margin: 0;
  color: rgba(15, 23, 42, .60);
  font-weight: 800;
}

@media (max-width: 720px) {
  .section {
    padding: 56px 0;
  }

  .sectionTitle {
    font-size: 26px;
  }
}

/* =========================
   Problems（A案）
   ========================= */
.problemBox {
  width: min(860px, 100%);
  margin: 0 auto 18px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, .10);
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
  padding: 18px 20px;
  position: relative;
}

.problemBox::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-right: 1px solid rgba(15, 23, 42, .10);
  border-bottom: 1px solid rgba(15, 23, 42, .10);
  transform: translateX(-50%) rotate(45deg);
}

.problemBox__main {
  margin: 0;
  text-align: center;
  font-weight: 900;
  color: rgba(15, 23, 42, .90);
  line-height: 1.7;
  font-size: 16px;
}

.problemBox__main .em {
  background: linear-gradient(180deg, rgba(245, 158, 11, .20), rgba(245, 158, 11, .20));
  padding: 0 .2em;
  border-radius: 8px;
}

.problemLead {
  margin: 14px 0 6px;
  text-align: center;
  font-weight: 900;
  color: rgba(15, 23, 42, .82);
}

.problemSubWrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
  width: min(920px, 100%);
}

.problemSub {
  margin: 0;
  text-align: center;
  font-weight: 800;
  color: rgba(15, 23, 42, .60);
  flex: 1;
}

.problemCharacter {
  flex-shrink: 0;
  width: clamp(90px, 12vw, 130px);
  height: auto;
  animation: float 3s ease-in-out infinite;
}

.problemCharacter img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 980px) {
  .problemSubWrap {
    flex-wrap: wrap;
    gap: 12px;
  }

  .problemSub {
    width: 100%;
  }

  .problemCharacter {
    width: clamp(80px, 15vw, 110px);
    margin: 0 auto;
  }
}

@media (max-width: 520px) {
  .problemBox {
    padding: 16px 14px;
  }

  .problemBox__main {
    font-size: 15px;
  }

  .problemSubWrap {
    gap: 10px;
  }

  .problemCharacter {
    width: 70px;
  }
}

/* =========================
   Reasons（添付2枚目：大きいカプセル＋丸写真が乗る）
   ========================= */
.whyWrap {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

/* =========================
   Reasons（4カード型）
   ========================= */
.whyCards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.whyCard--new {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .08);
  transition: transform .18s ease, box-shadow .18s ease;
  position: relative;
}

.whyCard__number {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 1000;
  color: #fff;
  z-index: 10;
  box-shadow:
    0 8px 24px rgba(238, 90, 111, .4),
    0 4px 12px rgba(0, 0, 0, .15),
    inset 0 2px 4px rgba(255, 255, 255, .3);
  border: 3px solid #fff;
  transform: rotate(-6deg);
  transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .3s ease;
  animation: numberPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.whyCard--new:nth-child(1) .whyCard__number {
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  animation-delay: 0.1s;
}

.whyCard--new:nth-child(2) .whyCard__number {
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  animation-delay: 0.2s;
}

.whyCard--new:nth-child(3) .whyCard__number {
  background: linear-gradient(135deg, #ffe66d, #ffa500);
  animation-delay: 0.3s;
}

.whyCard--new:nth-child(4) .whyCard__number {
  background: linear-gradient(135deg, #a8e6cf, #88d8a3);
  animation-delay: 0.4s;
}

@keyframes numberPop {
  0% {
    transform: rotate(-6deg) scale(0);
    opacity: 0;
  }

  50% {
    transform: rotate(-6deg) scale(1.15);
  }

  100% {
    transform: rotate(-6deg) scale(1);
    opacity: 1;
  }
}

.whyCard--new:hover .whyCard__number {
  transform: rotate(-4deg) scale(1.08);
  box-shadow:
    0 12px 32px rgba(238, 90, 111, .5),
    0 6px 16px rgba(0, 0, 0, .2),
    inset 0 2px 4px rgba(255, 255, 255, .3);
}

.whyCard--new:nth-child(2):hover .whyCard__number {
  box-shadow:
    0 12px 32px rgba(68, 160, 141, .5),
    0 6px 16px rgba(0, 0, 0, .2),
    inset 0 2px 4px rgba(255, 255, 255, .3);
}

.whyCard--new:nth-child(3):hover .whyCard__number {
  box-shadow:
    0 12px 32px rgba(255, 165, 0, .5),
    0 6px 16px rgba(0, 0, 0, .2),
    inset 0 2px 4px rgba(255, 255, 255, .3);
}

.whyCard--new:nth-child(4):hover .whyCard__number {
  box-shadow:
    0 12px 32px rgba(136, 216, 163, .5),
    0 6px 16px rgba(0, 0, 0, .2),
    inset 0 2px 4px rgba(255, 255, 255, .3);
}

.whyCard--new:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, .12);
}

.whyCard__image {
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: rgba(15, 23, 42, .03);
  position: relative;
}

.whyCard__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.whyCard__content {
  padding: 18px 16px;
}

.whyCard__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 1000;
  letter-spacing: -.01em;
  color: #0f172a;
}

.whyCard__desc {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  color: rgba(15, 23, 42, .70);
  line-height: 1.7;
}

@media (max-width: 980px) {
  .whyCards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .whyCard__image {
    height: 180px;
  }

  .whyCard__number {
    width: 56px;
    height: 56px;
    font-size: 24px;
    top: -10px;
    left: -10px;
    border-width: 3px;
    border-radius: 14px;
  }
}

.whyRow {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 26px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, .08);
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items: center;
  overflow: hidden;
}

.whyRow--reverse {
  grid-template-columns: .85fr 1.15fr;
}

.whyRow--reverse .whyText {
  order: 2;
}

.whyRow--reverse .whyMedia {
  order: 1;
}

.whyText {
  min-width: 0;
  padding-right: 8px;
}

.whyNo {
  font-weight: 1000;
  font-size: 34px;
  line-height: 1;
  color: rgba(22, 163, 74, .78);
  margin-bottom: 10px;
}

.whyTitle {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 1000;
  letter-spacing: -.01em;
}

.whyDesc {
  margin: 0;
  font-weight: 900;
  color: rgba(15, 23, 42, .68);
  line-height: 1.9;
}

/* 右/左のメディア：でかい“カプセル背景”に丸写真が乗る */
.whyMedia {
  position: relative;
  min-height: 170px;
  display: grid;
  place-items: center;
}

/* カプセル本体（上下に余白を持たせる） */
.whyPill {
  position: absolute;
  left: 0;
  right: 0;
  top: 18px;
  bottom: 18px;
  border-radius: 999px;
  background: rgba(15, 23, 42, .05);
}

/* 色バリエーション */
.whyMedia--gray .whyPill {
  background: rgba(15, 23, 42, .05);
}

.whyMedia--green .whyPill {
  background: rgba(22, 163, 74, .12);
}

.whyMedia--beige .whyPill {
  background: rgba(245, 158, 11, .14);
}

/* 丸写真（カプセルの上に乗る） */
.whyImgCircle {
  position: relative;
  width: 156px;
  height: 156px;
  border-radius: 999px;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, .92);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .12);
  background: #fff;
}

.whyImgCircle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* responsive */
@media (max-width: 980px) {

  .whyRow,
  .whyRow--reverse {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .whyRow--reverse .whyText,
  .whyRow--reverse .whyMedia {
    order: initial;
  }

  .whyMedia {
    min-height: 150px;
  }

  .whyPill {
    top: 14px;
    bottom: 14px;
    border-radius: 22px;
    /* モバイルはカプセル→角丸帯にすると安定 */
  }

  .whyImgCircle {
    width: 140px;
    height: 140px;
    border-width: 9px;
  }

  .whyNo {
    font-size: 32px;
  }

  .whyTitle {
    font-size: 20px;
  }
}

@media (max-width: 520px) {
  .whyRow {
    padding: 16px 16px;
  }

  .whyPill {
    border-radius: 18px;
  }

  .whyImgCircle {
    width: 132px;
    height: 132px;
    border-width: 8px;
  }
}

/* ===== Product lineup ===== */
.lineupGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.productCard {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 18px 40px rgba(15, 23, 42, .10);
  transition: transform .18s ease, box-shadow .18s ease;
}

.productCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, .14);
}

.productImgWrap {
  position: relative;
}

.productImg {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius) var(--radius) 0 0;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 冷凍弁当画像のトリミング位置調整（デスクトップ） */
.productImg--bento {
  object-fit: cover; /* 構図を維持 */
  object-position: center 60%; /* 上側の弁当をメインで表示、ピントが合っている部分を使用 */
  height: 280px; /* 少し高さを増やしてお弁当全体が見えるように */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.productTag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(59, 130, 246, .92);
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  box-shadow: 0 14px 28px rgba(59, 130, 246, .22);
}

.productTagPurple {
  background: rgba(139, 92, 246, .92);
  box-shadow: 0 14px 28px rgba(139, 92, 246, .22);
}

.productBody {
  padding: 18px 18px 20px;
}

.productTitle {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.01em;
}

.productSub {
  font-weight: 900;
  color: rgba(22, 163, 74, .85);
  margin-bottom: 12px;
}

.checkList {
  margin: 0 0 16px;
  padding-left: 0;
  list-style: none;
  color: rgba(15, 23, 42, .70);
  font-weight: 800;
}

.checkList li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 7px 0;
}

.checkList li::before {
  content: "✓";
  color: var(--green2);
  font-weight: 900;
  margin-top: 1px;
}

.btnGhost {
  width: 100%;
  border: 2px solid rgba(245, 158, 11, .45);
  color: rgba(15, 23, 42, .92);
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px;
}

.productCard:hover .btnGhost {
  background: rgba(245, 158, 11, .08);
  border-color: rgba(245, 158, 11, .65);
}

.btnGhost:hover {
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .lineupGrid {
    grid-template-columns: 1fr;
  }

  .productImg {
    height: 220px;
  }
}

/* ===== Voice ===== */
.voiceSimple {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}

.voiceCopy {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: var(--radius);
  padding: 22px 22px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .10);
}

.voiceTitle {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 900;
}

.voicePoints {
  margin: 0 0 14px;
  padding-left: 1.2em;
  color: rgba(15, 23, 42, .70);
  font-weight: 800;
}

.voicePoints li {
  margin: 6px 0;
}

.voicePhotoWrap {
  display: flex;
  flex-direction: column;
}

.voicePhoto {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 18px 40px rgba(15, 23, 42, .10);
}

.voicePhoto img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.voiceInfo {
  margin-top: 16px;
  text-align: center;
}

.voiceInfo__company {
  font-weight: 900;
  font-size: 16px;
  color: rgba(15, 23, 42, .90);
  margin-bottom: 4px;
}

.voiceInfo__position {
  font-weight: 800;
  font-size: 13px;
  color: rgba(15, 23, 42, .65);
  margin-bottom: 2px;
}

.voiceInfo__name {
  font-weight: 800;
  font-size: 14px;
  color: rgba(15, 23, 42, .85);
}

@media (max-width: 980px) {
  .voiceSimple {
    grid-template-columns: 1fr;
  }

  .voicePhoto img {
    height: 260px;
  }
}

/* ===== 電話番号強調セクション ===== */
.phoneHighlight {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  margin: 28px auto 32px;
  width: min(920px, 100%);
  text-align: center;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
}

.phoneHighlight__label {
  margin: 0 0 16px;
  font-weight: 900;
  color: rgba(15, 23, 42, .85);
  font-size: 16px;
}

.phoneHighlight__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.phoneHighlight__number {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 1000;
  color: var(--orange);
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1.2;
  transition: transform .18s ease, filter .18s ease;
  display: inline-block;
}

.phoneHighlight__number:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.phoneHighlight__hours {
  font-size: 14px;
  font-weight: 800;
  color: rgba(15, 23, 42, .70);
  white-space: nowrap;
}

@media (max-width: 720px) {
  .phoneHighlight {
    padding: 24px 18px;
    margin: 24px auto 28px;
  }

  .phoneHighlight__label {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .phoneHighlight__inner {
    flex-direction: column;
    gap: 12px;
  }

  .phoneHighlight__number {
    font-size: 40px;
  }

  .phoneHighlight__hours {
    font-size: 13px;
  }
}

/* ===== Form ===== */
.formCard {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .10);
  width: min(920px, 100%);
  margin: 0 auto;
}

.formGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.formField label {
  display: block;
  font-weight: 900;
  margin-bottom: 8px;
}

.req {
  font-size: 11px;
  font-weight: 900;
  color: #ef4444;
  margin-left: 6px;
}

.formField input,
.formField textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, .12);
  padding: 12px 12px;
  font-size: 14px;
  outline: none;
  background: rgba(15, 23, 42, .02);
}

.formField input:focus,
.formField textarea:focus {
  border-color: rgba(245, 158, 11, .55);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, .14);
  background: #fff;
}

.formFieldFull {
  grid-column: 1 / -1;
}

.formActions {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.btnSend {
  border: none;
  cursor: pointer;
  border-radius: 14px;
  padding: 12px 18px;
  font-weight: 900;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  color: #fff;
  box-shadow: 0 16px 30px rgba(34, 197, 94, .20);
  transition: transform .18s ease, filter .18s ease;
}

.btnSend:hover {
  transform: translateY(-2px);
  filter: brightness(.98);
}

.formMessage {
  padding: 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-weight: 800;
}

.formMessage--success {
  background: #d1fae5;
  color: #065f46;
  border: 2px solid #10b981;
}

.formMessage--error {
  background: #fee2e2;
  color: #991b1b;
  border: 2px solid #ef4444;
}

.formMessage p {
  margin: 0 0 8px;
}

.formMessage p:last-child {
  margin-bottom: 0;
}

.formNote {
  font-size: 12px;
  font-weight: 900;
  color: rgba(15, 23, 42, .62);
}

/* ===== CTA band ===== */
.ctaBand {
  padding: 56px 0;
  background: linear-gradient(90deg, rgba(245, 158, 11, .12), rgba(22, 163, 74, .10));
}

.ctaBand__inner {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .10);
  padding: 34px 34px;
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 22px;
  align-items: center;
  border: 1px solid rgba(15, 23, 42, .08);
}

.ctaBand__title {
  margin: 0 0 10px;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -.02em;
  color: #0f172a;
}

.ctaBand__desc {
  margin: 0 0 18px;
  color: rgba(15, 23, 42, .72);
  font-weight: 800;
  line-height: 1.9;
}

.ctaBand__telLabel {
  display: block;
  font-size: 12px;
  color: rgba(15, 23, 42, .55);
  font-weight: 900;
  letter-spacing: .05em;
}

.ctaBand__telNum {
  display: inline-block;
  margin-top: 2px;
  font-size: 24px;
  font-weight: 900;
  color: #0f172a;
  text-decoration: none;
}

.ctaBand__telHours {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: rgba(15, 23, 42, .55);
  font-weight: 800;
}

.ctaBand__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

@media (max-width: 980px) {
  .ctaBand__inner {
    grid-template-columns: 1fr;
    padding: 26px 20px;
  }

  .ctaBand__title {
    font-size: 26px;
  }
}

/* ===== Footer ===== */
.siteFooter {
  background: #fff;
  border-top: 1px solid rgba(15, 23, 42, .08);
  padding: 26px 0;
}

.siteFooter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.siteFooter__left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.siteFooter__logo {
  height: 44px;
  width: auto;
}

.siteFooter__name {
  font-weight: 900;
  color: #0f172a;
  line-height: 1.2;
}

.siteFooter__addr {
  font-size: 12px;
  color: rgba(15, 23, 42, .60);
  font-weight: 800;
  margin-top: 4px;
}

.siteFooter__area {
  font-size: 13px;
  color: rgba(15, 23, 42, .70);
  margin-top: 8px;
  line-height: 1.6;
  font-weight: 700;
}

.siteFooter__right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.siteFooter__link {
  font-weight: 900;
  color: #0f172a;
  text-decoration: none;
  border-bottom: 2px solid rgba(15, 23, 42, .12);
  padding-bottom: 2px;
}

.siteFooter__link:hover {
  border-bottom-color: rgba(245, 158, 11, .55);
}

@media (max-width: 720px) {
  .siteFooter__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .siteFooter__right {
    align-items: flex-start;
    margin-top: 12px;
  }
}

/* ===== フローティング問い合わせボタン ===== */
.floatingBtn {
  position: fixed;
  top: 80px;
  right: 24px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 20px;
  background: linear-gradient(90deg, var(--orange), var(--orange2));
  color: #fff;
  border-radius: 50px;
  box-shadow: 0 14px 28px rgba(245, 158, 11, .22), 0 4px 12px rgba(0, 0, 0, .15);
  text-decoration: none;
  font-weight: 900;
  font-size: 15px;
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
  border: none;
  cursor: pointer;
}

.floatingBtn:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
  box-shadow: 0 18px 36px rgba(245, 158, 11, .28), 0 6px 16px rgba(0, 0, 0, .18);
}

.floatingBtn:active {
  transform: translateY(-1px);
}

.floatingBtn__icon {
  font-size: 18px;
  line-height: 1;
}

.floatingBtn__text {
  white-space: nowrap;
}

/* モバイル対応 */
@media (max-width: 720px) {
  .floatingBtn {
    top: 70px;
    right: 16px;
    padding: 14px 18px;
    font-size: 14px;
    border-radius: 45px;
  }

  .floatingBtn__icon {
    font-size: 16px;
  }
}

/* 小さな画面ではアイコンのみ表示 */
@media (max-width: 480px) {
  .floatingBtn {
    top: 70px;
    right: 16px;
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;
    box-shadow: 0 12px 24px rgba(245, 158, 11, .25), 0 4px 10px rgba(0, 0, 0, .15);
  }

  .floatingBtn__text {
    display: none;
  }

  .floatingBtn__icon {
    font-size: 20px;
  }
}

/* ===== FAQ Section ===== */
.faqList {
  max-width: 800px;
  margin: 0 auto;
}

.faqItem {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, .05);
}

.faqQuestion {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 900;
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1.5;
}

.faqAnswer {
  font-size: clamp(15px, 1.6vw, 16px);
  color: rgba(15, 23, 42, .75);
  line-height: 1.8;
}

.faqAnswer p {
  margin: 0;
}

/* ===== スマホ最適化（768px以下） ===== */
@media (max-width: 768px) {
  /* フォントサイズの最小値を確保 */
  body {
    font-size: clamp(14px, 4vw, 16px);
  }

  /* 全ての画像にmax-width: 100%とheight: autoを適用 */
  img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
  }

  /* クリック要素を最小44px以上に */
  .btnPrimary,
  .btnOutline,
  .btnGhost,
  .btnSend {
    min-height: 44px;
    min-width: 44px;
    padding: 12px 20px;
    font-size: clamp(15px, 4vw, 16px);
  }

  .btnSm {
    min-height: 44px;
    min-width: 44px;
    padding: 10px 16px;
  }

  /* 電話番号リンク */
  a[href^="tel:"] {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    font-size: clamp(16px, 4.5vw, 20px);
  }

  .phoneHighlight__number {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
  }

  /* フローティングボタン */
  .floatingBtn {
    min-width: 56px;
    min-height: 56px;
  }

  /* 横並びレイアウトを縦一列に */
  .whyCards {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .lineupGrid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  /* 商品画像の最適化 */
  .productImg {
    height: 240px;
    object-fit: cover;
    object-position: center;
    width: 100%;
    max-width: 100%;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* 冷凍弁当画像のトリミング位置調整（おかずの彩りが見えるように） */
  .productImg--bento {
    object-fit: cover; /* 構図を維持 */
    object-position: center 60%; /* 上側の弁当をメインで表示、ピントが合っている部分を使用 */
    height: 260px; /* スマホでもお弁当全体が見える高さ */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .productImgWrap {
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  /* フォーム要素もタップしやすく */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
    min-height: 44px;
    font-size: 16px; /* iOSでズームを防ぐ */
    padding: 12px 16px;
  }

  textarea {
    min-height: 120px;
  }

  /* FAQセクション */
  .faqItem {
    padding: 20px;
    margin-bottom: 12px;
  }

  .faqQuestion {
    font-size: clamp(18px, 5vw, 20px);
    margin-bottom: 10px;
  }

  .faqAnswer {
    font-size: clamp(14px, 4vw, 15px);
  }

  /* セクションタイトル */
  .sectionTitle {
    font-size: clamp(24px, 6vw, 32px) !important;
  }

  /* フッターのエリア情報 */
  .siteFooter__area {
    margin-top: 12px;
    font-size: clamp(13px, 3.5vw, 14px);
    color: rgba(255, 255, 255, .8);
    line-height: 1.6;
  }
}