/* ===========================
   アンデルセン薬局 — style.css
   =========================== */

/* ===== Custom Properties ===== */
:root {
  --cream: #fbf4e3;
  --cream-2: #f6ecd2;
  --parchment: #f0e1b7;
  --paper: #fffaee;
  --sage: #9bb088;
  --sage-deep: #6f8a5e;
  --sage-shadow: #4d6a3f;
  --rose: #e0a3a3;
  --rose-deep: #c87e7e;
  --rose-soft: #f4d3d3;
  --sky: #bcd9e6;
  --sky-deep: #7fa9bd;
  --gold: #bf9a46;
  --ink: #3e2f22;
  --ink-soft: #6b5640;
  --ink-faded: #a08b72;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }
body {
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 2.0;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
  word-break: auto-phrase;
}

h1, h2, h3, h4 {
  text-wrap: balance;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== Paper Grain Overlay ===== */
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 1;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(191,154,70,0.04), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(159,131,93,0.05), transparent 50%);
  mix-blend-mode: multiply;
}
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 2; opacity: .18;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.55  0 0 0 0 0.42  0 0 0 0 0.22  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.35'/></svg>");
}

/* ===== Animations ===== */
@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes drift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(30px); }
}
@keyframes twinkle {
  0%, 100% { opacity: .9; transform: scale(1); }
  50% { opacity: .55; transform: scale(.95); }
}
@keyframes flutter {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  25% { transform: translate(-15px, -10px) rotate(-3deg); }
  50% { transform: translate(8px, -18px) rotate(2deg); }
  75% { transform: translate(-5px, -6px) rotate(-1deg); }
}
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 44px;
  background: rgba(251,244,227,0.82);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(191,154,70,0.18);
  transition: box-shadow .3s;
}
.nav.scrolled {
  box-shadow: 0 4px 20px -4px rgba(77,60,30,.12);
}
.nav__logo {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600; font-size: 22px;
  color: var(--sage-shadow);
  letter-spacing: .08em;
  display: flex; align-items: baseline; gap: 10px;
  text-decoration: none;
}
.nav__logo:hover { color: var(--sage-deep); }
.nav__logo small {
  font-family: "Cormorant Garamond", serif;
  font-style: italic; font-weight: 400;
  font-size: 13px; color: var(--ink-faded); letter-spacing: .18em;
}
.nav__links { display: flex; gap: 36px; align-items: center; }
.nav__links a {
  font-family: "Shippori Mincho B1", serif;
  font-size: 14.5px; color: var(--ink-soft);
  letter-spacing: .12em; position: relative;
  transition: color .25s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 50%; bottom: -6px;
  width: 0; height: 1px; background: var(--rose-deep);
  transition: all .3s; transform: translateX(-50%);
}
.nav__links a:hover { color: var(--rose-deep); }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  background: var(--sage-deep); color: #fff !important;
  padding: 10px 22px; border-radius: 999px;
  font-size: 13px !important; letter-spacing: .1em;
  box-shadow: 0 4px 12px -4px rgba(111,138,94,.5);
}
.nav__cta::after { display: none !important; }
.nav__cta:hover { background: var(--rose-deep); }

/* Hamburger button */
.nav__hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  padding: 4px; z-index: 110;
}
.nav__hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--ink-soft); border-radius: 2px;
  transition: all .3s;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  display: none;
  position: fixed; inset: 0; z-index: 90;
  background: rgba(251,244,227,0.97);
  backdrop-filter: blur(12px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 36px;
  animation: slideDown .3s ease;
}
.nav__drawer.is-open { display: flex; }
.nav__drawer a {
  font-family: "Shippori Mincho B1", serif;
  font-size: 20px; color: var(--ink-soft);
  letter-spacing: .18em;
  transition: color .2s;
}
.nav__drawer a:hover { color: var(--rose-deep); }
.nav__drawer .nav__cta {
  font-size: 16px !important;
  padding: 14px 36px;
}

/* ===== Section Base ===== */
section { position: relative; z-index: 3; }
.container { max-width: 1180px; margin: 0 auto; padding: 20px 32px; }

.section-head { text-align: center; margin-bottom: 140px; position: relative; }
.section-head__en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic; font-size: 24px;
  color: var(--rose-deep); letter-spacing: .25em;
  margin-bottom: 0px;
  position: relative; z-index: 1;
}
.section-head__jp {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600; font-size: 38px;
  color: var(--ink); letter-spacing: .06em;
  position: relative; z-index: 1;
}
.section-head__deco {
  width: 800px;
  position: absolute;
  left: 50%; top: 130%;
  transform: translate(-50%, -50%);
  margin: 0;
  opacity: .4;
  pointer-events: none;
  z-index: 0;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 30px; border-radius: 999px;
  font-family: "Shippori Mincho B1", serif;
  font-size: 15px; letter-spacing: .1em;
  transition: all .3s; cursor: pointer; border: none;
}
.btn--primary {
  background: var(--sage-deep); color: #fff;
  box-shadow: 0 8px 20px -8px rgba(77,106,63,.55);
}
.btn--primary:hover { background: var(--sage-shadow); transform: translateY(-2px); }
.btn--ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--ink-faded);
}
.btn--ghost:hover { background: var(--paper); border-color: var(--sage-deep); color: var(--sage-deep); }
.btn .arrow { font-family: serif; font-size: 18px; line-height: 1; }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100vh;
  padding: 140px 6vw 80px;
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 40px;
  align-items: center;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(155,176,136,0.18), transparent 55%),
    linear-gradient(180deg, #eef3df 0%, #fbf4e3 45%, #fbf4e3 75%, #f0e6c8 100%);
  overflow: hidden;
}
.hero__bg-castle {
  position: absolute; top: 150px; left: 5%; width:550px; opacity: .32;
  filter: saturate(.7) blur(1px);
  animation: float 14s ease-in-out infinite;
  z-index: 0;
}
.hero__bg-cloud-1 {
  position: absolute; top: 120px; right: 5%; width: 280px; opacity: .85;
  animation: drift 20s ease-in-out infinite;
}
.hero__bg-cloud-2 {
  position: absolute; top: 200px; left: 27%; width: 200px; opacity: .7;
  animation: drift 20s ease-in-out infinite;
}
.hero__bg-stars {
  position: absolute; top: 60px; right: 38%; width: 260px; opacity: .75;
  animation: drift 24s ease-in-out infinite;
}
.hero__copy {
  position: relative; z-index: 3;
  padding-left: 30px;
  max-width: 650px;
}
.hero__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Cormorant Garamond", serif; font-style: italic;
  color: var(--rose-deep);
  font-size:24px; letter-spacing: .15em;
  margin-bottom: 10px;
}
.hero__kicker::before { content: ""; width: 36px; height: 1px; background: var(--rose-deep); }
.hero__title {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-size: clamp(30px, 4.6vw, 64px);
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: .04em;
  margin-bottom: 28px;
}
.hero__title .accent { color: var(--rose-deep); font-style: normal; }
.hero__title .sm { 
  font-size: .55em; 
  display: block; color: var(--sage-deep); 
  font-weight: 500; 
  margin-bottom: 8px; 
  letter-spacing: .18em; 
}
.hero__title .rb { 
  display: inline-block; 
  border-bottom: 6px solid rgba(224,163,163,.45); 
  padding: 4px; 
}
.hero__lead {
  font-size: 16px; color: var(--ink-soft);
  margin-bottom: 38px; line-height: 2.1;
  text-wrap: pretty;
  max-width: 500px;
}
.hero__btns { display: flex; gap: 16px; flex-wrap: wrap; max-width: 500px; }
.hero__art {
  position: relative; z-index: 2;
  display: flex; justify-content: center; align-items: flex-end;
  min-height: 600px;
}
.hero__pharmacy {
  max-width: 680px; max-height: 550px;
  filter: drop-shadow(0 18px 25px rgba(77,60,30,.18));
  position: relative; z-index: 3;
  opacity: 0.9;
}
.hero__tree {
  position: absolute; bottom: -20px; left: -170px; max-width: 550px; max-height: 550px;
  z-index: 2; opacity: 0.75;
  filter: drop-shadow(0 10px 15px rgba(77,60,30,.12));
}
.hero__butterflies {
  position: absolute; top: 50px; right: 130px; width: 240px; z-index: 4;
  animation: flutter 5s ease-in-out infinite;
}
.hero__wave {
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'><path d='M0,30 C40,55 80,55 120,30 C160,5 200,5 240,30 C280,55 320,55 360,30 C400,5 440,5 480,30 C520,55 560,55 600,30 C640,5 680,5 720,30 C760,55 800,55 840,30 C880,5 920,5 960,30 C1000,55 1040,55 1080,30 C1120,5 1160,5 1200,30 C1240,55 1280,55 1320,30 C1360,5 1400,5 1440,30 L1440,60 L0,60 Z' fill='%23fffaee'/></svg>") no-repeat center/100% 100%;
  z-index: 5;
}

/* ===== Welcome ===== */
.welcome {
  background: var(--paper);
  padding: 120px 0 160px;
  position: relative;
  overflow: hidden;
}
.welcome__cloud {
  position: absolute; bottom: 500px; left: 55%;
  width: 720px; max-width: none;
  transform: translateX(-58%);
  opacity: .42; z-index: 0; pointer-events: none;
  animation: gentleFloat 9s ease-in-out infinite;
}
.welcome__cloud-blue {
  position: absolute; bottom: 400px; left: 10%; width: 400px;
  opacity: .7; z-index: 0; pointer-events: none;
  animation: drift 22s ease-in-out infinite;
}
.welcome__sparkles {
  position: absolute; bottom: 200px; right: 18%; width: 200px;
  opacity: .6; z-index: 1; pointer-events: none;
}
.welcome__stars {
  position: absolute; bottom: 60px; left: 4%; width: 160px;
  opacity: .75; z-index: 1; pointer-events: none;
}
.welcome__butterflies {
  position: absolute; bottom: 200px; left: 6%; width: 170px;
  z-index: 2; pointer-events: none;
  animation: flutter 6s ease-in-out infinite;
}
.welcome__notes {
  position: absolute; bottom: 120px; left: 24%; width: 180px;
  z-index: 1; pointer-events: none;
  opacity: .75; transform: rotate(-6deg);
}
.welcome__flowers-bunch {
  position: absolute; bottom: -10px; left: 3%; width: 220px;
  z-index: 3; pointer-events: none;
}
.welcome__flowers-row {
  position: absolute; bottom: -100px; left: 50%;
  transform: translateX(-50%);
  width: min(600px, 70%);
  z-index: 1; pointer-events: none; opacity: .85;
}
.welcome .container { position: relative; z-index: 4; }
.welcome .section-head { position: relative; }
.welcome .section-head__deco {
  position: absolute;
  top: 130%; left: 50%;
  width: 800px; max-width: none;
  transform: translate(-50%, -50%);
  opacity: .4;
  z-index: 0; pointer-events: none;
  margin: 0;
}
.welcome .section-head__en,
.welcome .section-head__jp { position: relative; z-index: 1; }
.welcome__body {
  max-width: 780px; margin: 0 auto; text-align: center;
  font-family: "Shippori Mincho B1", serif;
  font-size: 17px; line-height: 2.4; color: var(--ink-soft);
  letter-spacing: .04em;
}
.welcome__quote {
  font-family: "Klee One", serif;
  font-size: 24px; color: var(--sage-deep);
  margin: 8px 0 32px; letter-spacing: .05em;
}
.welcome__sign {
  position: relative;  width: 600px; max-width: 100%; top: 40px; margin: 40px auto 50px;
}
.welcome__sign img { width: 100%; }
.welcome__sign-text {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: "Klee One", serif; font-weight: 600;
  font-size: 30px; color: var(--ink); letter-spacing: .08em;
  padding: 50px 70px 0;
  white-space: nowrap;
}

/* ===== Worries ===== */
.worries {
  background: linear-gradient(180deg, var(--paper) 0%, #f8efd9 100%);
  padding: 120px 0;
  position: relative;
}
.worries__bg-tree {
  position: absolute; bottom: -5px; right: 3%; width:300px; opacity: .85;
}
.worries__bg-pot {
  position: absolute; bottom: -5px; left: 3%; width: 300px; opacity: .85;
}
.worries__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
  max-width: 920px; margin: 0 auto; position: relative; z-index: 2;
  margin-top: 15%;
}
.worry-card {
  background: var(--paper);
  border: 1.5px solid rgba(191,154,70,.18);
  border-radius: 18px;
  padding: 32px 36px;
  display: flex; gap: 22px; align-items: flex-start;
  box-shadow: 0 8px 24px -16px rgba(77,60,30,.25);
  transition: transform .35s, box-shadow .35s;
}
.worry-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px -16px rgba(77,60,30,.35); }
.worry-card__bullet {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%;
  background: var(--rose-soft); color: var(--rose-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: "Cormorant Garamond", serif; font-style: italic;
  font-size: 22px; font-weight: 500;
}
.worry-card:nth-child(2) .worry-card__bullet { background: #e3ecd7; color: var(--sage-deep); }
.worry-card:nth-child(3) .worry-card__bullet { background: #dfeaf0; color: var(--sky-deep); }
.worry-card:nth-child(4) .worry-card__bullet { background: #f4e6c8; color: var(--gold); }
.worry-card__text {
  font-family: "Shippori Mincho B1", serif;
  font-size: 17px; color: var(--ink); line-height: 1.7;
  padding-top: 6px;
}
.worry-card__text small {
  display: block; font-family: "Zen Maru Gothic", sans-serif;
  font-size: 13px; color: var(--ink-faded); margin-top: 8px;
  letter-spacing: .08em;
}
.worries__note {
  text-align: center; margin-top: 48px;
  font-family: "Klee One", serif; font-size: 18px; color: var(--sage-deep);
  position: relative; z-index: 2;
}

/* ===== Features ===== */
.features {
  background: #fbf4e3;
  padding: 130px 0;
  position: relative; overflow: hidden;
}
.features__cloud { position: absolute; top: 60px; right: -50px; width: 280px; opacity: .7; }
.features__cloud-2 {
  position: absolute; top: 340px; left: -80px; width: 240px; opacity: .65;
  animation: drift 26s ease-in-out infinite reverse;
}
.features__cloud-3 {
  position: absolute; bottom: 80px; right: 8%; width: 300px; opacity: .55;
  animation: gentleFloat 8s ease-in-out infinite;
}
.features__cloud-pastel {
  position: absolute; bottom: 40px; left: 5%; width: 260px; opacity: .4;
  pointer-events: none;
}
.features .container { position: relative; z-index: 2; }
.features__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px;
  margin-top: 15%;
}
.feature { text-align: center; padding: 0 12px; position: relative; }
.feature__img {
  height: 200px; display: flex; align-items: flex-end; justify-content: center;
  margin-bottom: 24px;
}
.feature__img img {
  max-height: 200px; width: auto;
  filter: drop-shadow(0 8px 14px rgba(77,60,30,.15));
}
.feature__title {
  font-family: "Shippori Mincho B1", serif;
  font-size: 22px; color: var(--ink); font-weight: 600;
  margin-bottom: 12px; letter-spacing: .04em;
}
.feature__title .num {
  display: block;
  font-family: "Cormorant Garamond", serif; font-style: italic;
  font-size: 14px; color: var(--rose-deep);
  letter-spacing: .3em; margin-bottom: 4px; font-weight: 400;
}
.feature__body {
  font-size: 14.5px; color: var(--ink-soft); line-height: 2;
  text-align: center; padding: 0 6px;
}
.feature__tags {
  display: flex; gap: 6px; flex-wrap: wrap; justify-content: center;
  margin-top: 16px;
}
.feature__tag {
  font-size: 11.5px; background: var(--cream-2);
  color: var(--sage-deep);
  padding: 4px 12px; border-radius: 999px;
  letter-spacing: .06em;
  border: 1px solid rgba(155,176,136,.4);
}

/* ===== LINE Section ===== */
.line-sec {
  background:
    radial-gradient(ellipse at 30% 60%, rgba(188,217,230,.35), transparent 60%),
    linear-gradient(180deg, #e8f1ea 0%, #d8e7d2 100%);
  padding: 130px 0; position: relative; overflow: hidden;
}
.line-sec__cloud-1 { position: absolute; top: 30px; left: -60px; width: 300px; opacity: .75; }
.line-sec__cloud-2 { position: absolute; bottom: 60px; right: -60px; width: 280px; opacity: .6; }
.line-sec__sparkles {
  position: absolute; top: 50%; left: 50%; width: 400px; opacity: .5;
  transform: translateX(-50%) rotate(180deg);
}
.line-sec__inner {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px;
  align-items: center; position: relative; z-index: 2;
}
.line-sec__art { position: relative; display: flex; justify-content: center; }
.line-sec__duck {
  width: 340px;
  filter: drop-shadow(0 14px 20px rgba(77,60,30,.18));
  animation: gentleFloat 5s ease-in-out infinite;
}
.line-sec__stars { position: absolute; top: 28%; left: 32.5%; width: 120px; opacity: .9; }
.line-sec__copy { padding-right: 20px; }
.line-sec .section-head { text-align: left; margin-bottom: 32px; }
.line-sec .section-head__en { margin-bottom: 8px; }
.line-sec__lead {
  font-family: "Shippori Mincho B1", serif;
  font-size: 16px; color: var(--ink-soft); line-height: 2;
  margin-bottom: 28px;
}
.line-sec__list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 24px;
  margin-bottom: 36px;
}
.line-sec__list li {
  list-style: none; display: flex; align-items: center; gap: 10px;
  font-size: 14.5px; color: var(--ink);
}
.line-sec__list li::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--rose); flex: 0 0 auto;
}
.line-btn {
  background: #0e9488; color: #fff;
  padding: 18px 36px; font-size: 16px;
  box-shadow: 0 10px 22px -10px rgba(14,148,136,.5);
}
.line-btn:hover { background: #0b7a72; }
.line-btn .icon {
  width: 26px;
  height: 26px;
  display: block;
  flex-shrink: 0;
}

/* ===== Access ===== */
.access {
  background: var(--paper);
  padding: 130px 0; position: relative;
}
.access__leaves {
  position: absolute; top: 60px; left: 50%;
  transform: translateX(-50%); width: 240px; opacity: .7;
}
.access__grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px;
  align-items: stretch;
  margin-top: 15%;
}
.info-card {
  background: linear-gradient(180deg, var(--paper) 0%, #f8efd9 100%);
  border: 1.5px solid rgba(191,154,70,.25);
  border-radius: 22px;
  padding: 48px 44px;
  position: relative;
  top: 50px;
}
.info-card::before {
  content: ""; position: absolute; inset: 8px;
  border: 1px dashed rgba(191,154,70,.35);
  border-radius: 16px; pointer-events: none;
}
.info-card__title {
  font-family: "Shippori Mincho B1", serif;
  font-size: 24px; color: var(--ink); font-weight: 600;
  margin-bottom: 28px; display: flex; align-items: center; gap: 14px;
  letter-spacing: .05em;
}
.info-card__title::before { content: ""; width: 42px; height: 1px; background: var(--rose-deep); }
.info-row {
  display: grid; grid-template-columns: 110px 1fr;
  padding: 18px 4px; border-bottom: 1px dotted rgba(191,154,70,.3);
  align-items: baseline;
}
.info-row:last-child { border-bottom: none; }
.info-row dt {
  font-family: "Shippori Mincho B1", serif;
  font-size: 14px; color: var(--sage-deep); font-weight: 500;
  letter-spacing: .12em;
}
.info-row dd { font-size: 15px; color: var(--ink); line-height: 1.85; }
.info-row dd .big { font-size: 22px; font-family: "Cormorant Garamond", serif; letter-spacing: .06em; }
.hours-table { font-size: 13px; width: 100%; border-collapse: collapse; margin-top: 6px; }
.hours-table th, .hours-table td { padding: 5px 4px; text-align: center; font-weight: 400; }
.hours-table thead th {
  color: var(--ink-faded); font-size: 12px; letter-spacing: .08em;
  border-bottom: 1px solid rgba(191,154,70,.3);
}
.hours-table tbody th { text-align: left; color: var(--sage-deep); font-size: 13px; }
.hours-table .x { color: var(--rose-deep); }
.hours-table .half { color: var(--gold); }
.hours-note { font-size: 12px; color: var(--ink-faded); margin-top: 8px; line-height: 1.7; }
.map-card {
  background: #eaf0e3;
  border-radius: 22px;
  padding: 36px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; top: 50px;
  overflow: hidden;
  min-height: 380px;
}
.map-card iframe {
  width: 100%; height: 100%; border: none; border-radius: 14px;
  min-height: 300px;
  filter: saturate(.85) sepia(.08);
}
.map-card__caption {
  font-family: "Klee One", serif; font-size: 14px; color: var(--sage-deep);
  margin-top: 14px; text-align: center; letter-spacing: .08em;
}

/* ===== Footer ===== */
footer {
  background: #5e7a4e;
  color: #f4ebd2;
  padding: 80px 0 30px;
  position: relative;
}
footer::before {
  content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 70px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70' preserveAspectRatio='none'><path d='M0,35 C120,70 240,0 360,35 C480,70 600,0 720,35 C840,70 960,0 1080,35 C1200,70 1320,0 1440,35 L1440,0 L0,0 Z' fill='%23fffaee'/></svg>") no-repeat top center/100% 100%;
}
.footer__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px;
  margin-bottom: 50px; padding-top: 30px;
}
.footer__brand h3 {
  font-family: "Shippori Mincho B1", serif;
  font-size: 24px; letter-spacing: .1em; margin-bottom: 12px;
  color: #fff; font-weight: 600;
}
.footer__brand p { font-size: 13.5px; line-height: 1.9; opacity: .85; }
.footer__col h4 {
  font-family: "Cormorant Garamond", serif; font-style: italic;
  font-size: 14px; letter-spacing: .2em; opacity: .7;
  margin-bottom: 16px; font-weight: 500;
}
.footer__col ul { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 24px; }
.footer__col a { font-size: 14px; opacity: .85; letter-spacing: .05em; transition: opacity .2s; }
.footer__col a:hover { opacity: 1; color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(244,235,210,.2);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; opacity: .7; letter-spacing: .08em;
}
.footer__bottom .en { font-family: "Cormorant Garamond", serif; font-style: italic; letter-spacing: .15em; }


/* ==============================================
   RESPONSIVE — Tablet  (641px ~ 1200px)
   ============================================== */
@media (max-width: 1024px) {
  /* Nav — tablet hamburger */
  .nav { padding: 14px 22px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
}

@media (max-width: 1200px) {
  /* Nav */
  .nav { padding: 14px 22px; }

  /* Hero */
  .hero { grid-template-columns: 1fr; padding: 120px 6vw 60px; text-align: center; }
  .hero__wave { background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'><path d='M0,30 C60,55 120,55 180,30 C240,5 300,5 360,30 C420,55 480,55 540,30 C600,5 660,5 720,30 C780,55 840,55 900,30 C960,5 1020,5 1080,30 C1140,55 1200,55 1260,30 C1320,5 1380,5 1440,30 L1440,60 L0,60 Z' fill='%23fffaee'/></svg>") no-repeat center/100% 100%; }
  .hero__copy { padding-left: 0; margin: 0 auto; }
  .hero__kicker { justify-content: center; }
  .hero__btns { justify-content: center; }
  .hero__art { min-height: 480px; margin-top: 20px; }
  .hero__bg-castle { width: 220px; top: 60px; left: -40px; }
  .hero__tree { max-width: 400px; max-height: 400px; left: 10px; bottom: 0px; }
  .hero__butterflies { width: 180px; top: 50px; right: 120px; }
  .hero__bg-cloud-2 { width: 250px; left: 2%; top: 200px; }

  /* Section heads */
  .section-head__jp { font-size: 28px; }
  .section-head__deco { width: 550px; }

  /* Welcome */
  .welcome { padding: 90px 0 200px; }
  .welcome__cloud { width: 380px; bottom: 600px;}
  .welcome__cloud-blue { width: 280px; bottom: 500px;}
  .welcome__sparkles { width: 130px; right: 6%; bottom: 240px; }
  .welcome__butterflies { width: 110px; bottom: 240px; left: 3%; }
  .welcome__notes { width: 120px; bottom: 160px; left: 30%; }
  .welcome__flowers-bunch { width: 140px; }
  .welcome__stars { width: 100px; bottom: 140px; }
  .welcome__sign { width: 380px; }
  .welcome__sign-text { font-size: 20px; padding: 36px 56px 0; }
  .welcome .section-head__deco { width:550px; }

  /* Worries */
  .worries__grid { grid-template-columns: 1fr; max-width: 560px; top:10px;}
  .worries__bg-tree, .worries__bg-pot { width: 250px; }

  /* Features */
  .features__cloud-2 { top: 230px; left: 20px;}
  .features__cloud-3 { display: none; }
  .features__cloud-pastel { display: none; }
  .features__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }

  /* LINE */
  .line-sec__inner { grid-template-columns: 1fr; gap: 40px; }
  .line-sec .section-head { text-align: center; }
  .line-sec__list { grid-template-columns: repeat(2, 1fr); max-width: 460px; margin-left: auto; margin-right: auto; }
  .line-sec__copy { padding-right: 0; display: flex; flex-direction: column; align-items: center; text-align: center; }
  .line-sec__duck { width: 240px; }
  .line-sec__stars { width: 150px; top: 13%; left: 50%; }

  /* Access */
  .access__grid { grid-template-columns: 1fr; }
  .map-card { min-height: 320px; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}


/* ==============================================
   RESPONSIVE — Mobile  (〜 640px)
   ============================================== */
@media (max-width: 640px) {
  /* Nav — hamburger only */
  .nav { padding: 12px 20px; }
  .hero__wave { background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'><path d='M0,30 C120,55 240,55 360,30 C480,5 600,5 720,30 C840,55 960,55 1080,30 C1200,5 1320,5 1440,30 L1440,60 L0,60 Z' fill='%23fffaee'/></svg>") no-repeat center/100% 100%; }
  .nav__logo { font-size: 17px; }
  .nav__logo small { display: none; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  /* Container */
  .container { padding: 20px 20px; }

  /* Hero */
  .hero {
    padding: 110px 5vw 50px;
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
  }
  .hero__copy { padding-left: 0; max-width: 100%; }
  .hero__kicker { justify-content: center; font-size: 15px; }
  .hero__lead { font-size: 14.5px; margin-bottom: 28px; }
  .hero__btns { justify-content: center; flex-direction: column; align-items: center; gap: 12px; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
  .hero__art { min-height: 320px; margin-top: 10px; }
  .hero__pharmacy { width: min(400px, 100%); }
  .hero__tree { max-width: 300px; max-height: 300px; left: -20px; bottom: -10px; }
  .hero__butterflies { width: 120px; top: 20px; right: 20px; }
  .hero__bg-castle { width: 160px; top: 40px; left: -20px; }
  .hero__bg-cloud-1 { width: 180px; top: 80px; right: 2%; }
  .hero__bg-cloud-2 { width: 180px; left: 10px; top: 150px; }
  .hero__bg-stars { width: 140px; top: 50px; right: 30%; }

  /* Section heads */
  .section-head { margin-bottom: 110px; }
  .section-head__en { font-size: 15px; }
  .section-head__jp { font-size: 22px; }
  .section-head__deco { width: 400px; }

  /* Welcome */
  .welcome { padding: 70px 0 160px; }
  .welcome__cloud { width: 260px; bottom: 600px; }
  .welcome__cloud-blue { width: 200px; bottom: 500px; left: 3%}
  .welcome__sparkles { width: 90px; right: 4%; bottom: 200px; }
  .welcome__butterflies { width: 80px; bottom: 200px; left: 2%; }
  .welcome__notes { display: none; }
  .welcome__flowers-bunch { width: 100px; }
  .welcome__flowers-row { width: 100%; max-width: none; bottom: -80px; }
  .welcome__stars { width: 80px; bottom: 120px; }
  .welcome__sign { width: 100%; max-width: 320px; }
  .welcome__sign-text {
    font-size: 16px;
    padding: 28px 40px 0;
    white-space: normal;
    text-align: center;
    line-height: 1.5;
  }
  .welcome__body { font-size: 15px; line-height: 2.2; }
  .welcome__quote { font-size: 18px; }
  .welcome .section-head__deco { width:400px; }

  /* Worries */
  .worries { padding: 80px 0; }
  .worries__grid { grid-template-columns: 1fr; gap: 16px; max-width: 100%; top:0px;}
  .worry-card { padding: 22px 24px; gap: 16px; }
  .worry-card__text { font-size: 15px; }
  .worries__bg-tree, .worries__bg-pot { width: 150px; }
  .worries__note { font-size: 14px; }

  /* Features */
  .features__cloud { display: none; }
  .features__cloud-2 { display: none; }
  .features__cloud-3 { display: none; }
  .features__cloud-pastel { display: none; }
  .features { padding: 80px 0; }
  .features__grid { grid-template-columns: 1fr; gap: 48px; max-width: 400px; margin: 20px auto 0; margin-top: 15%;}
  .feature__img { height: 160px; }
  .feature__img img { max-height: 160px; }
  .feature__title { font-size: 18px; }
  .feature__body { font-size: 14px; text-align: center; }

  /* LINE */
  .line-sec { padding: 80px 0; }
  .line-sec__inner { gap: 30px; }
  .line-sec .section-head { text-align: center; }
  .line-sec__duck { width: 180px; }
  .line-sec__stars { width: 120px; }
  .line-sec__lead { font-size: 14.5px; }
  .line-sec__copy { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .line-sec__list { grid-template-columns: 1fr; gap: 8px; max-width: 260px; margin-left: auto; margin-right: auto; }
  .line-sec__btns { justify-content: center; width: 100%; }
  .line-btn { width: 100%; justify-content: center; padding: 16px 24px; font-size: 15px; }
  .line-sec__btns .btn--ghost { width: 100%; justify-content: center; }

  /* Access */
  .access { padding: 80px 0; }
  .access__grid { gap: 24px; }
  .info-card { padding: 32px 24px; }
  .info-row { grid-template-columns: 80px 1fr; padding: 14px 4px; }
  .info-row dt { font-size: 13px; }
  .hours-table th, .hours-table td { padding: 4px 2px; font-size: 11px; }
  .map-card { padding: 20px; min-height: 280px; }
  .map-card iframe { min-height: 220px; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .footer__col ul { align-items: center; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ===========================
   サブページ共通
   =========================== */

.page-hero {
  min-height: 360px;
  padding: 130px 6vw 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, #eef3df 0%, #fbf4e3 60%, #fbf4e3 100%);
  overflow: hidden;
  z-index: 3;
}
.page-hero__cloud1 {
  position: absolute;
  pointer-events: none;
  opacity: .5;
  width: 260px;
  top: 80px;
  right: 8%;
}
.page-hero__cloud2 {
  position: absolute;
  pointer-events: none;
  opacity: .5;
  width: 180px;
  top: 200px;
  left: 6%;
}
.page-hero__kicker {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 21px;
  color: var(--rose-deep);
  letter-spacing: .22em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.page-hero__kicker::before,
.page-hero__kicker::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--rose-deep);
}
.page-hero__title {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-size: clamp(26px, 4vw, 50px);
  color: var(--ink);
  letter-spacing: .06em;
  margin-bottom: 18px;
}

.page-hero__back {
  margin-top: 28px;
  font-family: "Shippori Mincho B1", serif;
  font-size: 13px;
  color: var(--ink-faded);
  letter-spacing: .12em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .25s;
}
.page-hero__back:hover { color: var(--sage-deep); }

.content-sec {
  padding-top: 20px ;
  padding-bottom: 100px;
  position: relative;
  z-index: 3;
}
.content-sec--alt { background: var(--paper); }
.content-sec--sage {
  background: linear-gradient(180deg, #eef3df 0%, #f5f0e4 100%);
}

/* ===========================
   在宅サービスページ
   =========================== */

.zaitaku-intro {
  max-width: 760px;
  margin: 0 auto ;
  text-align: center;
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 2.1;
}
.zaitaku-intro strong {
  color: var(--sage-deep);
  font-family: "Shippori Mincho B1", serif;
}


.conditions-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 0;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.conditions-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--paper);
  border: 1.5px solid rgba(191,154,70,.22);
  border-radius: 12px;
  padding: 18px 24px;
  font-family: "Shippori Mincho B1", serif;
  font-size: 16.5px;
  color: var(--ink);
  line-height: 1.75;
}
.conditions-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--sage-deep);
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.conditions-list__body {
  flex: 1;
  min-width: 0;
}
.conditions-list__note {
  color: var(--ink-faded);
  font-size: 15px;
  font-family: "Zen Maru Gothic", sans-serif;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin: 0 auto;
  max-width: 860px;
}
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--cream);
  border-left: 4px solid var(--sage-deep);
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
}
.service-item__icon {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--sage-deep);
  flex-shrink: 0;
  line-height: 1.2;
}
.service-item__body strong {
  display: block;
  font-family: "Shippori Mincho B1", serif;
  font-size: 16.5px;
  color: var(--ink);
  margin-bottom: 4px;
}
.service-item__body p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.step-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 20px;
  position: relative;
  top: -80px;
}
.step-item {
  text-align: center;
  padding: 32px 20px;
  position: relative;
  top: 80px;
}
.step-item:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -10px;
  top: 42px;
  font-size: 22px;
  color: var(--rose-deep);
  opacity: .7;
  z-index: 2;
}
.step-item__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--sage-deep);
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
  margin: 0 auto 16px;
}
.step-item__title {
  font-family: "Shippori Mincho B1", serif;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.step-item__body {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.faq-list {
  margin: 0 auto;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: var(--paper);
  border: 1.5px solid rgba(191,154,70,.2);
  border-radius: 12px;
  padding: 26px 32px;
}
.faq-q {
  font-family: "Shippori Mincho B1", serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}
.faq-q::before {
  content: "Q";
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--rose-deep);
  flex-shrink: 0;
  line-height: 1.1;
}
.faq-a {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.9;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}
.faq-a::before {
  content: "A";
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--sage-deep);
  flex-shrink: 0;
  line-height: 1.1;
}

/* ===========================
   必須掲載事項ページ
   =========================== */

.keisai-notice {
  background: var(--paper);
  border: 1.5px solid rgba(191,154,70,.3);
  border-radius: 14px;
  padding: 28px 36px;
  margin: 0 auto 56px;
  max-width: 760px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 2;
  text-align: left;
}
.keisai-notice p + p { margin-top: 10px; }

.keisai-block { margin: 0 auto 56px; max-width: 760px; }
.keisai-block__title {
  font-family: "Shippori Mincho B1", serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .06em;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--parchment);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.keisai-block__title::before {
  content: "";
  width: 5px;
  height: 20px;
  background: var(--sage-deep);
  border-radius: 3px;
  flex-shrink: 0;
}

.keisai-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15.5px;
}
.keisai-table th,
.keisai-table td {
  padding: 14px 18px;
  border: 1px solid var(--parchment);
  vertical-align: middle;
  line-height: 2.0;
  text-align: left;
}
.keisai-table thead th {
  background: var(--cream-2);
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  color: var(--ink-soft);
  text-align: left;
  letter-spacing: .05em;
}
.keisai-table tbody tr:hover { background: rgba(251,244,227,.6); }
.keisai-table .col-item {
  font-family: "Shippori Mincho B1", serif;
  color: var(--ink);
}
.keisai-table .col-status {
  text-align: center;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  min-width: 80px;
  font-size: 16px;
}
.keisai-table .col-note {
  font-size: 15px;
  color: var(--ink-soft);
}
.s-yes  { color: var(--sage-deep); }
.s-no   { color: var(--ink-faded); }
.s-part { color: var(--gold); }
.s-tbc  { color: var(--rose-deep); font-size: 12px; font-family: "Zen Maru Gothic", sans-serif; }

.keisai-footnote {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--parchment);
  font-size: 12.5px;
  color: var(--ink-faded);
  line-height: 2;
}
.keisai-footnote p + p { margin-top: 6px; }

.keisai-text {
  font-size: 15px;
  color: var(--ink);
  line-height: 2;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.keisai-text + .keisai-text { margin-top: 12px; }

.keisai-list {
  padding-left: 1.8em;
  font-size: 15px;
  color: var(--ink);
  line-height: 2.2;
  list-style: disc;
  text-align: left;
}
.keisai-list li + li { margin-top: 4px; }

.keisai-update {
  margin: 32px auto 0;
  max-width: 760px;
  font-size: 12.5px;
  color: var(--ink-faded);
  text-align: right;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  letter-spacing: .08em;
}

/* ===========================
   サブページ レスポンシブ — Tablet (〜 768px)
   =========================== */
@media (max-width: 768px) {
  /* Page hero */
  .page-hero { padding: 110px 24px 56px; min-height: 300px; }
  .page-hero__kicker { font-size: 16px; }
  .page-hero__title { font-size: 26px; }
  .page-hero__cloud1 { width: 200px; top: 80px; right: 2%; }
  .page-hero__cloud2 { width: 160px; top: 200px; left: 2%; }

  /* --- 在宅医療 --- */
  .zaitaku-intro { font-size: 15px; }
  .conditions-list { max-width: 100%; }
  .service-list { grid-template-columns: 1fr; }
  .service-item__body strong { font-size: 15.5px; }
  .service-item__body p { font-size: 14.5px; }

  .step-flow { grid-template-columns: 1fr; gap: 24px; }
  .step-item:not(:last-child)::after {
    content: "↓";
    right: auto;
    left: 50%;
    top: auto;
    bottom: -20px;
    transform: translateX(-50%);
  }
  .step-item__title { font-size: 15.5px; }
  .step-item__body  { font-size: 14px; }

  .faq-item { padding: 20px; }
  .faq-q { font-size: 16px; }
  .faq-a { font-size: 15px; }

  /* --- 必須掲載事項 --- */
  .keisai-notice { padding: 20px 22px; }
  .keisai-block { margin-bottom: 40px; }
  .keisai-block__title { font-size: 17px; }
  .keisai-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .keisai-table th,
  .keisai-table td { padding: 10px 14px; font-size: 14.5px; }
  .keisai-table .col-status { min-width: 52px; font-size: 14px; }
}

/* ===========================
   サブページ レスポンシブ — Mobile (〜 640px)
   =========================== */
@media (max-width: 640px) {
  /* Page hero */
  .page-hero { padding: 100px 20px 48px; min-height: 260px; }
  .page-hero__kicker { font-size: 14px; }
  .page-hero__title { font-size: 22px; }
  .page-hero__cloud1 { width: 150px; top: 80px; right: 2%; }
  .page-hero__cloud2 { width: 160px; top: 150px; left: 2%; }

  /* --- 在宅医療 --- */
  .zaitaku-intro { font-size: 14.5px; }
  .zaitaku-intro p { font-size: 14.5px; }

  .conditions-list { gap: 12px; }
  .conditions-list li {
    font-size: 15px;
    padding: 14px 16px;
    gap: 12px;
  }
  .conditions-list li::before {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }
  .conditions-list__note { font-size: 13.5px; display: block; margin-top: 3px; }

  .service-list { gap: 14px; }
  .service-item { padding: 16px 18px; gap: 12px; }
  .service-item__icon { font-size: 15px; min-width: 32px; }
  .service-item__body strong { font-size: 15px; }
  .service-item__body p { font-size: 14px; }

  .step-flow { gap: 20px; }
  .step-item__num { width: 48px; height: 48px; font-size: 18px; margin: 0 auto 12px; }
  .step-item__title { font-size: 15px; }
  .step-item__body  { font-size: 13.5px; }

  .faq-list { gap: 12px; }
  .faq-item { padding: 16px; }
  .faq-q { font-size: 15px; }
  .faq-a { font-size: 14px; }

  /* --- 必須掲載事項 --- */
  .keisai-notice { padding: 16px 18px; font-size: 14.5px; }
  .keisai-block { margin-bottom: 32px; }
  .keisai-block__title { font-size: 15.5px; gap: 8px; }
  .keisai-block__title::before { width: 4px; height: 16px; }
  .keisai-update { font-size: 12px; }

  /* テーブルをカード型縦積みに（スマホ） */
  .keisai-table { overflow-x: visible; }
  .keisai-table thead { display: none; }
  .keisai-table tbody { display: block; }
  .keisai-table tr {
    display: block;
    border: 1px solid var(--parchment);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
  }
  .keisai-table td {
    display: block;
    width: 100% !important;
    border: none;
    border-bottom: 1px solid var(--parchment);
    padding: 8px 12px;
    font-size: 13.5px;
    line-height: 1.8;
  }
  .keisai-table tr > td:last-child { border-bottom: none; }
  .keisai-table td.col-item {
    background: var(--cream-2);
    font-size: 13px;
    color: var(--ink-soft);
    font-weight: 600;
    padding: 6px 12px;
  }
}
