:root {
  --green-900: #17483f;
  --green-800: #275e54;
  --green-700: #3f7c70;
  --green-600: #4c8b7f;
  --green-100: #e6f2ef;
  --green-50: #f3faf8;
  --cream: #fff8ed;
  --orange: #ec8f2c;
  --orange-dark: #cf721b;
  --ink: #24312e;
  --muted: #677571;
  --line: rgba(44, 102, 92, .18);
  --shadow: 0 22px 55px rgba(28, 67, 59, .14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1160px;
  --font: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Yu Gothic Medium", Meiryo, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.78;
  background:
    radial-gradient(circle at 15% 8%, rgba(99, 171, 158, .23), transparent 32rem),
    radial-gradient(circle at 90% 22%, rgba(236, 143, 44, .12), transparent 34rem),
    #fff;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 4px solid rgba(236, 143, 44, .45); outline-offset: 3px; }

.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  padding: 10px 14px;
  background: #fff;
  color: var(--green-900);
  border-radius: 999px;
  z-index: 1000;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding-block: 8px;
}
.brand img { width: 210px; height: auto; filter: drop-shadow(0 7px 12px rgba(0,0,0,.08)); }
.header-nav { display: none; }
.header-badges {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.header-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  color: var(--green-800);
  background: var(--green-50);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  font-size: .86rem;
}

.section { padding-block: clamp(70px, 8vw, 120px); }
.section-large { padding-block: clamp(52px, 8vw, 110px) clamp(76px, 8vw, 120px); }
.section-head { max-width: 780px; margin: 0 auto 34px; text-align: center; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--green-700);
  font-size: .78rem;
  letter-spacing: .14em;
  font-weight: 900;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 18px;
  color: var(--green-900);
  font-size: clamp(3rem, 13vw, 6.6rem);
  line-height: .98;
  letter-spacing: .03em;
  font-weight: 900;
}
h2 {
  margin-bottom: 14px;
  color: var(--green-900);
  font-size: clamp(1.8rem, 7vw, 3rem);
  line-height: 1.22;
  letter-spacing: .03em;
}
h3 { color: var(--green-900); line-height: 1.36; }
p { color: var(--muted); }

.hero { position: relative; overflow: visible; padding-top: 0; padding-bottom: 56px; background: linear-gradient(180deg, #eff6f4 0%, #f7fbfa 72%, #fff 100%); }
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 64%;
  background: linear-gradient(135deg, rgba(230, 242, 239, .96), rgba(255, 248, 237, .7) 56%, rgba(255,255,255,0));
  z-index: -2;
}
.hero-wrap { position: relative; width: 100%; max-width: none; margin: 0; }
.hero-copy { max-width: 420px; position: relative; z-index: 2; }
.lead {
  color: var(--green-900);
  font-size: clamp(1.1rem, 4.5vw, 1.55rem);
  font-weight: 800;
  line-height: 1.55;
  margin-bottom: 22px;
}
.hero-points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}
.hero-points li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--green-800);
  font-weight: 800;
}
.hero-points li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  color: #fff;
  background: var(--green-700);
  border-radius: 50%;
}
.hero-cta, .footer-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 12px 24px rgba(39, 94, 84, .15);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(39, 94, 84, .22); }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); }
.btn-secondary { background: var(--green-800); color: #fff; }
.btn-outline { background: #fff; color: var(--green-800); border: 2px solid rgba(39,94,84,.2); }
.micro-note { margin-top: 14px; font-size: .92rem; }
.hero-visual { position: relative; }
.hero-stage {
  position: relative;
  min-height: 520px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  background: #e8f1ef;
}
.hero-photo {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}
.hero-dog {
  position: absolute;
  width: 120px;
  right: 18px;
  bottom: -10px;
  filter: drop-shadow(0 18px 20px rgba(28, 67, 59, .22));
  z-index: 3;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 34px max(24px, calc((100vw - var(--container)) / 2 + 24px)) 62px;
  background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.90) 24%, rgba(255,255,255,.74) 40%, rgba(255,255,255,.16) 62%, rgba(255,255,255,0) 84%);
  z-index: 2;
}
.hero-stage-full::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 112px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.12) 20%, rgba(255,255,255,.6) 58%, rgba(255,255,255,.82) 100%);
  z-index: 1;
}
.hero-cta { margin-top: 8px; }
.feature-grid, .safety-grid, .check-grid, .related-grid, .payment-grid { display: grid; gap: 20px; }
.feature-card, .safety-card, .service-card, .payment-card, .detail-box, .mail-form, .phone-card, .flow-list li {
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: none;
}
.feature-card { overflow: hidden; }
.feature-card img { width: 100%; aspect-ratio: 4 / 2.45; object-fit: cover; }
.card-body { padding: 24px; position: relative; }
.num {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  color: var(--green-800);
  border: 2px solid rgba(63,124,112,.28);
  border-radius: 50%;
  font-weight: 900;
}

.safety { background: linear-gradient(180deg, var(--green-50), #fff); }
.safety-inner {
  padding: clamp(24px, 4vw, 44px);
  border-radius: 0;
  background:
    radial-gradient(circle at 8% 6%, rgba(236,143,44,.15), transparent 18rem),
    rgba(255,255,255,.65);
  border: 1px solid var(--line);
}
.safety-lead { display: grid; gap: 24px; align-items: center; margin-bottom: 28px; }
.safety-lead img { width: min(48vw, 220px); margin: 0 auto; }
.safety-card { padding: 24px; position: relative; overflow: hidden; }
.safety-card.strong { border: 2px solid rgba(63,124,112,.22); }
.safety-card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.safety-card p { margin-bottom: 0; }
.check-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  color: #fff;
  background: var(--green-700);
  border-radius: 50%;
  font-weight: 900;
}

.flow-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
  counter-reset: step;
}
.flow-list li { padding: 24px; }
.flow-list span, .badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  color: #fff;
  background: var(--green-700);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .04em;
}
.flow-images { display: grid; gap: 18px; }
.flow-images img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 16 / 9; object-fit: cover; }

.check-section { background: linear-gradient(180deg, #fff, var(--green-50)); }

.check-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 20px;
}
.check-grid article { min-width: 0; }

.check-grid article {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: none;
}
.check-grid img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.check-grid h3 { padding: 18px 20px 20px; margin: 0; font-size: 1.05rem; text-align: center; }

.detail-box {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  background: linear-gradient(135deg, #fff, var(--green-50));
}
.detail-box p { margin-bottom: 0; }

.related { background: #fff; }
.related-grid { grid-template-columns: 1fr; }
.service-card { padding: 20px; display: grid; gap: 14px; }
.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: linear-gradient(135deg, var(--green-50), #fff);
  border-radius: 18px;
}
.service-card.wide-image img { object-fit: cover; }
.service-card p { margin-bottom: 0; }
.service-card a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 10px 16px;
  color: #fff;
  background: var(--green-800);
  border-radius: 999px;
  font-weight: 900;
}

.order { background: linear-gradient(180deg, var(--green-50), #fff); }
.payment-card {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 26px);
  position: relative;
}
.payment-card .badge {
  min-height: 34px;
  padding: 5px 12px;
  font-size: .94rem;
}
.payment-brand-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(12px, 2vw, 18px);
  align-items: center;
}
.payment-icon-col,
.payment-text-col {
  min-width: 0;
}
.payment-icon-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-card img {
  width: min(100%, 180px);
  max-height: 125px;
  object-fit: contain;
  margin-inline: auto;
  padding: 6px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
}
.payment-text-col p {
  margin-bottom: 0;
  font-size: clamp(.82rem, 2.4vw, .92rem);
  line-height: 1.55;
}
.payment-card .btn {
  width: 100%;
  min-height: 46px;
  padding: 10px 16px;
}
.btn-payment-b { background: #6f9eae; color: #fff; }
.btn-payment-b:hover { background: #5c8c9d; }
.payment-a { background: linear-gradient(145deg, #fff, #fff7ec); }
.payment-b { background: linear-gradient(145deg, #fff, #eef6f8); }

.contact { background: linear-gradient(180deg, #fff, var(--green-50)); }
.contact-grid { display: grid; gap: 28px; align-items: start; }
.contact-copy { position: relative; }
.phone-card { padding: 24px; margin-top: 22px; }
.contact-dog { width: min(58vw, 240px); margin: 24px auto -12px; filter: drop-shadow(0 18px 18px rgba(28,67,59,.16)); }
.mail-form { padding: clamp(22px, 4vw, 34px); display: grid; gap: 18px; }
.form-row { display: grid; gap: 16px; }
label { display: grid; gap: 7px; color: var(--green-900); font-weight: 900; }
label span, .mail-form label > span:not(.privacy-check span) { color: var(--orange-dark); font-size: .78rem; }
input, select, textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(39,94,84,.25);
  border-radius: 14px;
  color: var(--ink);
  background: #fff;
}
textarea { resize: vertical; min-height: 160px; }
.hidden-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.privacy-check { display: flex; gap: 10px; align-items: flex-start; color: var(--ink); font-weight: 700; }
.privacy-check input { width: 20px; min-height: 20px; margin-top: .35em; flex: 0 0 20px; }
.privacy-check a { color: var(--green-800); text-decoration: underline; }
.submit-btn { width: 100%; border: 0; cursor: pointer; }
.form-notice { padding: 14px 16px; border-radius: 14px; font-weight: 800; }
.form-notice.success { color: #155c35; background: #e7f7ec; border: 1px solid #b8e7c8; }
.form-notice.error { color: #7e2d18; background: #fff0e8; border: 1px solid #f3c6ae; }
.form-notice p, .form-notice ul { margin: 0; }
.form-notice ul { padding-left: 1.2em; }

.site-footer {
  position: relative;
  padding-top: 54px;
  padding-bottom: calc(88px + env(safe-area-inset-bottom));
  color: #fff;
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 0%, rgba(255,255,255,.16), transparent 18rem), radial-gradient(circle at 90% 100%, rgba(236,143,44,.22), transparent 22rem);
}
.footer-main { position: relative; display: grid; gap: 18px; align-items: end; min-height: 220px; padding-left: 86px; }
.footer-dog {
  position: absolute;
  left: 8px;
  bottom: 22px;
  width: 72px;
  filter: drop-shadow(0 16px 16px rgba(0,0,0,.22));
  z-index: 1;
}
.footer-copy { position: relative; z-index: 2; padding-bottom: 18px; max-width: 760px; }
.footer-copy p { color: rgba(255,255,255,.9); }
.footer-title { color: #fff !important; font-size: clamp(1.8rem, 7vw, 3rem); font-weight: 900; margin-bottom: 6px; }
.footer-actions a, .footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 16px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  font-weight: 900;
}
.footer-links {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
  padding-block: 24px 18px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.footer-links a { min-height: 52px; font-size: .92rem; background: rgba(255,255,255,.10); }
.copyright { position: relative; z-index: 2; margin: 0; padding-bottom: 10px; color: rgba(255,255,255,.72); text-align: center; }

.mobile-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.92);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.mobile-sticky a {
  display: grid;
  place-items: center;
  min-height: 48px;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
}
.mobile-sticky a:first-child { background: var(--orange); }
.mobile-sticky a:last-child { background: var(--green-800); }


.hero .hero-copy { width: min(100%, 470px); }
.hero .hero-stage-full::after {
  height: 96px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.08) 18%, rgba(255,255,255,.48) 56%, rgba(255,255,255,.74) 100%);
}
@media (max-width: 759px) {
  .hero-stage { min-height: 540px; }
  .hero-photo { min-height: 540px; }
  .hero-overlay { align-items: flex-start; padding-top: 36px; }
  .hero-dog { width: 118px; right: 12px; bottom: -6px; }
}

@media (min-width: 760px) {
  .container { width: min(100% - 48px, var(--container)); }
  .header-inner { grid-template-columns: auto 1fr auto; min-height: 82px; }
  .header-nav { display: flex; justify-content: center; gap: 20px; font-weight: 900; color: var(--green-800); }
  .header-nav a { padding: 8px 4px; }
  .header-badges { grid-column: auto; justify-content: flex-end; max-width: 380px; }
  .brand img { width: 240px; }
  .hero-stage { min-height: 620px; }
  .hero-photo { min-height: 620px; }
  .hero-overlay { padding: 42px max(32px, calc((100vw - var(--container)) / 2 + 24px)) 64px; }
  .hero-copy { max-width: 430px; }
  .hero-dog { width: 142px; right: 28px; bottom: -8px; }
  .hero-points { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .safety-lead { grid-template-columns: 220px 1fr; }
  .safety-lead img { margin: 0; }
  .safety-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-list { grid-template-columns: repeat(2, 1fr); }
  .flow-images { grid-template-columns: 1fr 1fr; }
  .check-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .detail-box { grid-template-columns: 1fr auto; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .payment-grid { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .form-row.two { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: .85fr 1.15fr; }
  .footer-main { min-height: 250px; padding-left: 150px; }
  .footer-dog { left: 14px; bottom: 18px; width: 118px; }
  .footer-links { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .mobile-sticky { display: none; }
  .site-footer { padding-bottom: 36px; }
}

@media (min-width: 1080px) {
  .section { padding-block: 124px; }
  .section-large { padding-block: 100px 140px; }
  .hero-stage { min-height: 660px; }
  .hero-photo { min-height: 660px; }
  .hero-overlay { padding: 52px max(36px, calc((100vw - var(--container)) / 2 + 24px)) 72px; }
  .hero-copy { max-width: 470px; }
  .hero-dog { width: 168px; right: 34px; bottom: -10px; }
  .safety-grid { grid-template-columns: repeat(4, 1fr); }
  .flow-list { grid-template-columns: repeat(4, 1fr); }
  .related-grid { grid-template-columns: repeat(4, 1fr); }
  .service-card.wide-image img { aspect-ratio: 16 / 10; }
  .footer-main { min-height: 280px; padding-left: 170px; }
  .footer-dog { width: 128px; left: 18px; bottom: 16px; }
  .footer-links { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

.check-section .section-head { max-width: 880px; }

/* =========================================================
   2026-06-29 update: ヒーロー上部の余白を完全に詰める
   - section-large のメディアクエリ指定が hero の padding-top を上書きしていたため、
     hero 専用指定で最終上書きする。
   ========================================================= */
.hero.section-large {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.hero-wrap,
.hero-stage,
.hero-stage-full,
.hero-photo {
  margin-top: 0 !important;
}

@media (min-width: 760px) {
  .hero.section-large {
    padding-top: 0 !important;
  }
}

@media (min-width: 1080px) {
  .hero.section-large {
    padding-top: 0 !important;
  }
}

/* 2026-06-30 update: ヒーロー見出しのみフォントサイズを調整 */
.hero-copy h1 {
  font-size: clamp(2.75rem, 10vw, 5.2rem);
  line-height: 1.04;
}

@media (min-width: 1080px) {
  .hero-copy h1 {
    font-size: clamp(4rem, 5vw, 5.15rem);
  }
}

@media (max-width: 420px) {
  .payment-card {
    padding: 16px;
  }
  .payment-card .badge {
    min-height: 32px;
    padding: 5px 10px;
    font-size: .9rem;
  }
  .payment-brand-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
  }
  .payment-card img {
    width: min(100%, 149px);
    max-height: 103px;
  }
  .payment-text-col p {
    font-size: .78rem;
    line-height: 1.5;
  }
}

/* =========================================================
   2026-07-01 update: 商品紹介／料金プランセクション
   - 屋根調査エコノミー／ベーシックの2段構成
   - 1段ごとに画像と説明を2カラムで表示し、2段目は互い違いに配置
   ========================================================= */
.product-plans {
  background: linear-gradient(180deg, #fff, var(--green-50));
}

.product-plans .section-head p strong {
  color: var(--green-700);
  font-size: 1.08em;
}

.plan-list {
  display: grid;
  gap: clamp(28px, 5vw, 52px);
}

.plan-card {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(16px, 4vw, 40px);
  align-items: center;
}

.plan-card-reverse .plan-image {
  order: 2;
}

.plan-card-reverse .plan-body {
  order: 1;
}

.plan-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.plan-body {
  min-width: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.plan-body h3 {
  margin-bottom: 8px;
  color: var(--green-900);
  font-size: clamp(1.45rem, 4.6vw, 2.35rem);
  letter-spacing: .03em;
}

.plan-lead {
  margin-bottom: 16px;
  color: var(--ink);
  font-weight: 800;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 18px;
  color: var(--green-600);
  font-weight: 900;
}

.plan-price span {
  font-size: clamp(2.55rem, 9vw, 4.8rem);
  line-height: 1;
  letter-spacing: .02em;
}

.plan-features {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  color: var(--ink);
  list-style: none;
  font-weight: 700;
}

.plan-features li::before {
  content: "✓";
  margin-right: .35em;
  color: var(--green-800);
  font-weight: 900;
}

.plan-features li.is-unavailable::before {
  content: "×";
  color: var(--ink);
}

.plan-note {
  width: fit-content;
  margin: 34px auto 0;
  padding: 4px 10px;
  color: var(--muted);
  background: linear-gradient(180deg, transparent 58%, rgba(80, 170, 190, .22) 58%);
  text-align: center;
  font-weight: 700;
}

@media (max-width: 759px) {
  .plan-card {
    grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
    gap: 12px;
  }
  .plan-body {
    padding: 18px 16px;
  }
  .plan-body .eyebrow {
    font-size: .68rem;
    letter-spacing: .08em;
  }
  .plan-body h3 {
    font-size: clamp(1.25rem, 5.6vw, 1.8rem);
  }
  .plan-lead,
  .plan-features {
    font-size: .86rem;
    line-height: 1.55;
  }
  .plan-price span {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
  }
}

@media (max-width: 520px) {
  .plan-card {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 10px;
  }
  .plan-image img {
    border-radius: 16px;
  }
  .plan-body {
    padding: 14px 12px;
    border-radius: 16px;
  }
  .plan-body h3 {
    font-size: 1.14rem;
  }
  .plan-lead,
  .plan-features {
    font-size: .76rem;
  }
  .plan-price {
    margin-bottom: 12px;
  }
  .plan-price span {
    font-size: 2rem;
  }
  .plan-note {
    font-size: .82rem;
  }
}

/* 2026-07-01 update: 商品紹介テキスト部分は枠なし・背景なし。画像は上側を優先して表示。 */
.plan-image img {
  object-position: center top;
}

.plan-body {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

@media (max-width: 759px) {
  .plan-body {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
  }
}

@media (max-width: 520px) {
  .plan-body {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
  }
}
