@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700;900&family=Quicksand:wght@500;600;700&display=swap');

/* ============================================
   ニコット訪問看護ステーション
   Design System (warm orange × cream)
   ============================================ */

:root {
  /* Brand */
  --orange: #F39B17;
  --orange-deep: #E07E00;
  --orange-soft: #FFB94A;
  --orange-tint: #FFE8C7;
  --orange-wash: #FFF5E3;

  --green: #7DC04D;
  --green-deep: #5AA030;
  --green-soft: #A6D87D;
  --green-tint: #E3F2D4;
  --green-wash: #F3F9EC;

  --pink: #F4A9C7;
  --pink-deep: #E07AA5;
  --pink-tint: #FBDCE8;
  --pink-wash: #FEF3F7;

  /* Neutrals */
  --cream: #FFF9F0;
  --cream-deep: #FBF1DF;
  --ink: #3A2F28;
  --ink-soft: #6B5D53;
  --ink-faint: #9A8D82;
  --line: #EFE6D8;
  --white: #FFFFFF;

  /* Layout */
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(243,155,23,0.08);
  --shadow: 0 10px 30px rgba(243,155,23,0.12);
  --shadow-lg: 0 20px 50px rgba(243,155,23,0.16);

  /* Type */
  --font-jp: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  --font-en: "Quicksand", "Zen Maru Gothic", sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-jp); color: var(--ink); line-height: 1.9; background: var(--cream); font-weight: 500; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* --- Utility --- */
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* === Header 2段構成 === */
.header { background: var(--white); position: sticky; top: 0; z-index: 100; box-shadow: 0 1px 0 var(--line); }
.header-top { border-bottom: 1px solid var(--line); }
.header-top-inner { display: flex; align-items: center; justify-content: space-between; height: 100px; }
.header-logo { display: flex; align-items: center; transition: transform .25s; }
.header-logo:hover { transform: scale(1.03); }
.header-logo-img { height: 80px; width: auto; }
.header-right { display: flex; align-items: center; gap: 20px; }
.header-tel { display: flex; align-items: baseline; gap: 8px; }
.header-tel-num { font-family: var(--font-en); font-size: 1.5rem; font-weight: 700; color: var(--orange-deep); letter-spacing: 0.02em; }
.header-tel-note { font-size: 0.7rem; color: var(--ink-faint); font-weight: 600; }

.header-nav-bar { background: var(--cream); border-bottom: 1px solid var(--line); }
.header-nav { display: flex; gap: 4px; align-items: center; justify-content: center; height: 48px; }
.header-nav a { font-size: 0.82rem; font-weight: 700; color: var(--ink); transition: all .2s; white-space: nowrap; padding: 8px 16px; border-radius: var(--radius-pill); }
.header-nav a:hover { background: var(--orange-wash); color: var(--orange-deep); }
.header-cta-btn { background: var(--orange) !important; color: var(--white) !important; padding: 8px 20px !important; font-weight: 700; box-shadow: 0 4px 14px rgba(243,155,23,0.35); }
.header-cta-btn:hover { background: var(--orange-deep) !important; color: var(--white) !important; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(243,155,23,0.45); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === Hero === */
.hero { position: relative; min-height: 520px; overflow: hidden; display: flex; align-items: center; background: linear-gradient(180deg, var(--orange-wash) 0%, var(--cream) 100%); padding: 80px 0; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,249,240,0.96) 0%, rgba(255,249,240,0.7) 60%, rgba(255,249,240,0.3) 100%); }
.hero::before { content: ''; position: absolute; top: 10%; right: -8%; width: 480px; height: 480px; background: radial-gradient(circle, rgba(244,169,199,0.35), transparent 70%); border-radius: 50%; filter: blur(40px); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -10%; left: -10%; width: 420px; height: 420px; background: radial-gradient(circle, rgba(125,192,77,0.3), transparent 70%); border-radius: 50%; filter: blur(40px); pointer-events: none; }
.hero-content { position: relative; z-index: 1; max-width: 620px; }
.hero-sub { display: inline-flex; align-items: center; gap: 10px; padding: 8px 18px; background: var(--white); border-radius: var(--radius-pill); font-size: 0.78rem; font-weight: 700; color: var(--orange-deep); box-shadow: var(--shadow-sm); margin-bottom: 18px; letter-spacing: 0.04em; }
.hero-sub::before { content: ''; width: 8px; height: 8px; background: var(--orange); border-radius: 50%; }
.hero-brand { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-top: 28px; margin-bottom: 32px; padding-top: 24px; border-top: 1px dashed var(--line); }
.hero-brand-en { font-family: var(--font-en); font-size: 2.2rem; font-weight: 700; font-style: italic; color: var(--orange-deep); letter-spacing: -0.01em; line-height: 1; }
.hero-brand-jp { font-family: var(--font-jp); font-size: 1.2rem; font-weight: 700; color: var(--ink); letter-spacing: 0.06em; }
.hero-content h1 { font-family: var(--font-jp); font-size: clamp(1.6rem, 3.5vw, 2.2rem); line-height: 1.55; margin-bottom: 24px; font-weight: 700; color: var(--ink); letter-spacing: 0.02em; }
.hero-content h1 strong { font-weight: 900; color: var(--orange); position: relative; display: inline-block; }
.hero-content h1 strong::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 8px; background: var(--orange-tint); border-radius: 4px; z-index: -1; }
.hero-content p { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 32px; line-height: 2; }
.hero-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-tel { display: inline-flex; flex-direction: column; align-items: center; gap: 2px; background: var(--orange); color: var(--white); padding: 14px 30px; border-radius: var(--radius-pill); font-family: var(--font-jp); font-size: 1rem; font-weight: 700; transition: all .25s; box-shadow: 0 8px 22px rgba(243,155,23,0.35); line-height: 1.3; }
.hero-tel:hover { background: var(--orange-deep); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(243,155,23,0.45); }
.hero-tel small { font-size: 0.7rem; font-weight: 600; opacity: 0.95; }
.hero-tel em { font-style: normal; font-family: var(--font-en); font-weight: 700; margin-left: 6px; }

/* === Section === */
.section { padding: 96px 0; position: relative; }
.section-alt { background: var(--cream-deep); }

.section-title { font-family: var(--font-jp); font-size: 1.5rem; font-weight: 700; margin-bottom: 32px; color: var(--ink); letter-spacing: 0.02em; }
.section-title::after { content: ''; display: block; width: 44px; height: 3px; background: var(--orange); margin-top: 12px; border-radius: 2px; }
.section-title.center { text-align: center; }
.section-title.center::after { margin-left: auto; margin-right: auto; }

/* === Recommend List === */
.recommend-list { max-width: 600px; margin: 0 auto; }
.recommend-list li { padding: 14px 0 14px 32px; position: relative; font-size: 0.95rem; border-bottom: 1px solid var(--line); }
.recommend-list li::before { content: ''; position: absolute; left: 6px; top: 22px; width: 10px; height: 10px; background: var(--orange); border-radius: 50%; }

/* === Info Row === */
.info-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

/* === News === */
.news-list { border-top: 1px solid var(--line); }
.news-item { display: flex; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 0.88rem; align-items: baseline; }
.news-date { flex-shrink: 0; color: var(--orange-deep); width: 100px; font-family: var(--font-en); font-weight: 700; font-size: 0.82rem; }

/* === Buttons === */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 30px; border-radius: var(--radius-pill); font-size: 0.9rem; font-weight: 700; text-align: center; transition: all .25s cubic-bezier(.2,.8,.2,1); border: none; cursor: pointer; font-family: var(--font-jp); }
.btn-primary { background: var(--orange); color: var(--white); box-shadow: 0 8px 22px rgba(243,155,23,0.35); }
.btn-primary:hover { background: var(--orange-deep); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(243,155,23,0.45); }
.btn-outline { background: var(--white); color: var(--ink); border: 2px solid var(--line); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange-deep); transform: translateY(-2px); }

/* === CTA Strip === */
.cta-strip { background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%); color: var(--white); padding: 56px 0; text-align: center; position: relative; }
.cta-strip::before { content: ''; position: absolute; top: -30%; right: -10%; width: 360px; height: 360px; background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 70%); border-radius: 50%; pointer-events: none; }
.cta-strip p { margin-bottom: 20px; font-size: 1rem; font-weight: 700; }
.cta-strip .btn { background: var(--white); color: var(--orange-deep); margin: 0 8px; }
.cta-strip .btn:hover { background: var(--cream); transform: translateY(-2px); }
.cta-strip .btn-ghost { border: 2px solid rgba(255,255,255,0.7); background: transparent; color: var(--white); }
.cta-strip .btn-ghost:hover { background: var(--white); color: var(--orange-deep); }

/* === Page Header === */
.page-header { background: linear-gradient(180deg, var(--orange-wash) 0%, var(--cream) 100%); padding: 64px 0; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; top: -50%; right: -10%; width: 360px; height: 360px; background: radial-gradient(circle, rgba(244,169,199,0.25), transparent 70%); border-radius: 50%; filter: blur(30px); pointer-events: none; }
.page-header h1 { font-family: var(--font-jp); font-size: 1.8rem; font-weight: 700; color: var(--ink); position: relative; }
.page-header p { font-size: 0.9rem; color: var(--ink-soft); margin-top: 10px; font-weight: 600; position: relative; }

/* === Service intro card === */
.intro-card { max-width: 800px; margin: 0 auto; background: var(--white); border-radius: var(--radius-lg); padding: 48px 56px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); position: relative; }
.intro-card::before { content: ''; position: absolute; top: -3px; left: 32px; right: 32px; height: 6px; background: linear-gradient(90deg, var(--orange), var(--green), var(--pink-deep)); border-radius: 3px; }
.intro-card.intro-with-photo { max-width: 1040px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0; overflow: hidden; }
.intro-card.intro-with-photo::before { left: 0; right: 0; }
.intro-photo { position: relative; min-height: 280px; }
.intro-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.intro-text { padding: 48px 48px; }
.intro-eyebrow { font-family: var(--font-en); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.18em; color: var(--orange-deep); text-transform: uppercase; margin-bottom: 14px; }
.intro-title { font-family: var(--font-jp); font-size: 1.5rem; font-weight: 700; color: var(--ink); margin-bottom: 18px; }
.intro-body { font-size: 0.95rem; color: var(--ink); line-height: 2; }

/* === Recommend cards (service.html) === */
.recommend-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 880px; margin: 0 auto; }
.recommend-card { background: var(--white); border-radius: var(--radius); padding: 24px 28px; border: 1px solid var(--line); display: flex; align-items: center; gap: 18px; transition: all .3s; box-shadow: var(--shadow-sm); }
.recommend-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--orange-tint); }
.recommend-num { font-family: var(--font-en); font-size: 1.4rem; font-weight: 700; font-style: italic; color: var(--orange); flex-shrink: 0; }
.recommend-card p { font-size: 0.95rem; font-weight: 600; color: var(--ink); line-height: 1.6; }
.recommend-note { text-align: center; font-size: 0.85rem; color: var(--ink-soft); margin-top: 28px; }

/* === Services head & cards (service.html) === */
.services-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.services-eyebrow { font-family: var(--font-en); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.18em; color: var(--orange-deep); text-transform: uppercase; margin-bottom: 14px; }
.services-lead { font-size: 0.92rem; color: var(--ink-soft); line-height: 2; margin-top: 14px; }
.service-num { font-family: var(--font-en); font-size: 1.05rem; font-weight: 700; font-style: italic; color: var(--orange-deep); display: block; margin-bottom: 6px; }
.service-card:nth-child(3n+2) .service-num { color: var(--green-deep); }
.service-card:nth-child(3n+3) .service-num { color: var(--pink-deep); }
.services-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }

/* === Conditions section (service.html) === */
.conditions-wrap { max-width: 920px; margin: 0 auto; background: var(--white); border-radius: var(--radius-lg); padding: 56px 48px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.conditions-head { text-align: center; margin-bottom: 32px; }
.conditions-eyebrow { font-family: var(--font-en); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.18em; color: var(--green-deep); text-transform: uppercase; margin-bottom: 14px; }
.conditions-title { font-family: var(--font-jp); font-size: 1.5rem; font-weight: 700; color: var(--ink); margin-bottom: 14px; }
.conditions-lead { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.95; }
.conditions-note { margin-top: 24px; padding: 16px 22px; background: var(--orange-wash); border-left: 3px solid var(--orange); border-radius: var(--radius-sm); font-size: 0.85rem; color: var(--ink-soft); text-align: center; }

/* === Greeting (nicott.html) === */
.greeting-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; max-width: 1040px; margin: 0 auto; }
.greeting-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 3/4; }
.greeting-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.greeting-photo::after { content: ''; position: absolute; bottom: -20px; right: -20px; width: 110px; height: 110px; background: var(--orange); border-radius: 50%; opacity: 0.18; pointer-events: none; }
.greeting-text p { font-size: 0.95rem; color: var(--ink); line-height: 2.05; margin-bottom: 18px; }

/* === Naming card (nicott.html) === */
.naming-card { max-width: 760px; margin: 0 auto; background: linear-gradient(135deg, var(--orange-wash) 0%, var(--cream) 100%); border-radius: var(--radius-lg); padding: 48px 56px; text-align: center; border: 1px solid var(--orange-tint); box-shadow: var(--shadow-sm); }
.naming-eyebrow { font-family: var(--font-en); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.2em; color: var(--orange-deep); text-transform: uppercase; margin-bottom: 16px; }
.naming-title { font-family: var(--font-jp); font-size: 1.45rem; font-weight: 700; color: var(--ink); margin-bottom: 20px; }
.naming-card > p { font-size: 0.95rem; color: var(--ink-soft); line-height: 2.05; }

/* === Concept quote (nicott.html) === */
.concept-quote { max-width: 720px; margin: 0 auto; padding: 48px 32px; text-align: center; position: relative; }
.concept-quote::before { content: '"'; font-family: var(--font-en); position: absolute; top: -10px; left: 50%; transform: translateX(-50%); font-size: 5rem; color: var(--orange-tint); line-height: 1; font-style: italic; }
.concept-quote p { font-family: var(--font-jp); font-size: 1.25rem; font-weight: 700; color: var(--ink); line-height: 2; letter-spacing: 0.04em; }

/* === 3 Pillars (nicott.html) === */
.pillars-wrap { margin-top: 80px; padding: 100px 0 80px; position: relative; background: radial-gradient(ellipse 80% 50% at 50% 0%, var(--orange-wash), transparent 70%), var(--white); border-radius: 60px 60px 0 0; overflow: hidden; }
.pillars-wrap::before { content: "3"; position: absolute; top: -50px; right: 40px; font-family: var(--font-en); font-style: italic; font-size: clamp(180px, 28vw, 340px); line-height: 1; color: transparent; -webkit-text-stroke: 2px var(--orange-tint); pointer-events: none; font-weight: 400; }
.pillars-head { text-align: center; margin-bottom: 72px; position: relative; z-index: 1; }
.pillars-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-en); font-style: italic; font-size: 0.88rem; font-weight: 700; letter-spacing: 0.08em; color: var(--orange-deep); margin-bottom: 18px; }
.pillars-title { font-family: var(--font-jp); font-size: clamp(1.5rem, 3.4vw, 2.4rem); font-weight: 700; line-height: 1.55; letter-spacing: 0.01em; color: var(--ink); }
.pillars-title .big3 { font-family: var(--font-en); font-style: italic; font-weight: 700; color: var(--orange); font-size: 1.4em; display: inline-block; transform: translateY(0.08em) rotate(-6deg); margin: 0 0.05em; }

.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; z-index: 1; max-width: 1080px; margin: 0 auto; }
.pillar { --pc: var(--orange); --pc-wash: var(--orange-wash); background: var(--cream); border-radius: 28px; padding: 36px 28px 28px; position: relative; overflow: hidden; transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s; border: 1px solid var(--line); display: flex; flex-direction: column; }
.pillar-1 { --pc: var(--orange); --pc-wash: #FFE0B0; }
.pillar-2 { --pc: var(--green-deep); --pc-wash: var(--green-tint); transform: translateY(40px); }
.pillar-3 { --pc: var(--pink-deep); --pc-wash: var(--pink-tint); }

.pillar::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: var(--pc); }
.pillar::after { content: ""; position: absolute; bottom: -80px; right: -80px; width: 220px; height: 220px; background: var(--pc-wash); border-radius: 50%; opacity: 0.5; transition: transform .5s ease; z-index: 0; pointer-events: none; }
.pillar:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(169,95,0,0.15); }
.pillar-2:hover { transform: translateY(32px); }
.pillar:hover::after { transform: scale(1.2); }
.pillar > * { position: relative; z-index: 1; }

.pillar-meta { display: flex; align-items: center; margin-bottom: 22px; }
.pillar-no { font-family: var(--font-en); font-style: italic; font-size: 1.3rem; font-weight: 700; color: var(--pc); letter-spacing: -0.01em; }
.pillar-tag { font-size: 0.6rem; font-weight: 700; padding: 5px 12px; border-radius: var(--radius-pill); background: var(--pc); color: white; letter-spacing: 0.12em; text-transform: uppercase; font-family: var(--font-en); }

.pillar-mark { width: 96px; height: 96px; border-radius: 20px; overflow: hidden; margin-bottom: 22px; transition: transform .5s cubic-bezier(.2,.8,.2,1); box-shadow: 0 6px 20px rgba(169,95,0,0.18); border: 3px solid var(--pc-wash); }
.pillar-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pillar:hover .pillar-mark { transform: rotate(-3deg) scale(1.05); }

.pillar-title { font-family: var(--font-jp); font-size: 1.1rem; font-weight: 700; line-height: 1.55; letter-spacing: 0.01em; color: var(--ink); margin-bottom: 14px; }
.pillar-body { font-size: 0.85rem; line-height: 1.95; color: var(--ink-soft); margin-bottom: 22px; flex: 1; }
.pillar-footer { display: flex; gap: 6px; flex-wrap: wrap; padding-top: 18px; border-top: 1px dashed var(--line); }
.pillar-keyword { font-size: 0.7rem; font-weight: 700; color: var(--pc); padding: 5px 11px; border-radius: var(--radius-pill); background: var(--pc-wash); }

/* === Manager card (nicott.html) === */
.manager-card { max-width: 760px; margin: 0 auto; background: var(--white); border-radius: var(--radius-lg); padding: 36px 40px; display: grid; grid-template-columns: 130px 1fr; gap: 32px; align-items: center; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.manager-portrait img { width: 100%; height: auto; display: block; }
.manager-label { display: inline-block; font-family: var(--font-en); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; color: var(--orange-deep); margin-bottom: 12px; padding: 4px 14px; background: var(--orange-wash); border-radius: var(--radius-pill); text-transform: uppercase; }
.manager-msg { font-size: 0.92rem; color: var(--ink); line-height: 2; margin-bottom: 16px; }
.manager-name { font-size: 0.85rem; color: var(--ink-soft); }
.manager-name strong { color: var(--ink); font-weight: 700; margin-left: 4px; }

/* === Page Body (plain text pages like privacy) === */
.page-body { padding: 72px 0; }
.page-body .content { max-width: 760px; }
.page-body .content h2 { font-family: var(--font-jp); font-size: 1.05rem; font-weight: 700; margin-top: 40px; margin-bottom: 14px; color: var(--ink); padding-bottom: 6px; border-bottom: 1px solid var(--line); }
.page-body .content h2:first-child { margin-top: 0; }
.page-body .content p { margin-bottom: 16px; font-size: 0.9rem; color: var(--ink); line-height: 1.95; }
.page-body .content ul { padding-left: 1.5em; list-style: disc; margin-bottom: 16px; }
.page-body .content ul li { font-size: 0.9rem; margin-bottom: 6px; line-height: 1.85; color: var(--ink); }

/* === Service Cards === */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-card { background: var(--white); padding: 28px 26px; border-radius: var(--radius); border: 1px solid transparent; transition: all .35s cubic-bezier(.2,.8,.2,1); position: relative; overflow: hidden; box-shadow: var(--shadow-sm); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--orange-tint); }
.service-card:hover::before { transform: scaleX(1); }
.service-card h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
.service-card p { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.85; }
.service-card:nth-child(3n+2) { border-top-color: var(--green); }
.service-card:nth-child(3n+2)::before { background: var(--green); }
.service-card:nth-child(3n+3) { border-top-color: var(--pink-deep); }
.service-card:nth-child(3n+3)::before { background: var(--pink-deep); }

/* === Flow Hero === */
.flow-intro-section { padding-bottom: 40px; }
.flow-hero { position: relative; max-width: 1040px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 16/9; }
.flow-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.flow-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(58,47,40,0.55) 0%, rgba(58,47,40,0.15) 60%, transparent 100%); pointer-events: none; }
.flow-hero-overlay { position: absolute; left: 48px; top: 50%; transform: translateY(-50%); color: var(--white); z-index: 1; max-width: 50%; }
.flow-hero-eyebrow { font-family: var(--font-en); font-style: italic; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.12em; color: var(--orange-soft); margin-bottom: 14px; }
.flow-hero-text { font-family: var(--font-jp); font-size: clamp(1.3rem, 2.6vw, 1.9rem); font-weight: 700; line-height: 1.7; }

/* === Flow Steps === */
.flow-steps { max-width: 760px; margin: 0 auto; position: relative; }
.flow-steps::before { content: ''; position: absolute; left: 36px; top: 40px; bottom: 40px; width: 2px; background: linear-gradient(to bottom, var(--orange-tint), var(--green-tint), var(--pink-tint)); }
.flow-step { display: flex; gap: 28px; margin-bottom: 20px; background: var(--white); border-radius: var(--radius); padding: 30px 32px; box-shadow: var(--shadow-sm); transition: all .3s; align-items: flex-start; position: relative; border: 1px solid var(--line); }
.flow-step:hover { transform: translateX(8px); box-shadow: var(--shadow); }
.flow-num { flex-shrink: 0; width: 72px; height: 72px; background: var(--orange); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-en); font-style: italic; font-size: 1.4rem; font-weight: 700; box-shadow: 0 8px 20px rgba(243,155,23,0.35); letter-spacing: -0.01em; }
.flow-step:nth-child(2) .flow-num { background: var(--orange-soft); }
.flow-step:nth-child(3) .flow-num { background: var(--green); box-shadow: 0 8px 20px rgba(125,192,77,0.35); }
.flow-step:nth-child(4) .flow-num { background: var(--pink-deep); box-shadow: 0 8px 20px rgba(224,122,165,0.35); }
.flow-body h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
.flow-body p { font-size: 0.92rem; color: var(--ink-soft); line-height: 2; }
.flow-body p.flow-note { margin-top: 12px; padding: 12px 16px; background: var(--orange-wash); border-left: 3px solid var(--orange); border-radius: var(--radius-sm); font-size: 0.82rem; color: var(--ink); }
.flow-tag { display: inline-block; font-family: var(--font-en); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.16em; padding: 4px 12px; border-radius: var(--radius-pill); margin-bottom: 10px; }
.flow-tag-free { background: var(--green); color: var(--white); }

/* === Point Labels === */
.point-label { display: inline-block; background: var(--orange); color: var(--white); padding: 4px 16px; border-radius: var(--radius-pill); font-size: 0.72rem; font-weight: 700; margin-bottom: 8px; font-family: var(--font-en); letter-spacing: 0.05em; }

/* === Section Title Variants === */
.section-title-blue { font-size: 1.05rem; font-weight: 700; margin-bottom: 24px; padding: 10px 26px; background: var(--green-deep); color: var(--white); border-radius: var(--radius-pill); display: inline-block; box-shadow: 0 6px 16px rgba(90,160,48,0.25); }

/* === Condition Tags === */
.conditions-list { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 880px; margin: 0 auto; }
.condition-tag { background: var(--orange-wash); color: var(--orange-deep); padding: 10px 20px; border-radius: var(--radius-pill); font-size: 0.85rem; font-weight: 600; transition: all .25s; }
.condition-tag:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); }

/* === Info Table === */
.info-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.info-table th, .info-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.88rem; vertical-align: top; }
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: none; }
.info-table th { width: 130px; font-weight: 700; color: var(--ink-soft); white-space: nowrap; background: var(--cream); }
.info-table td { color: var(--ink); }

/* === About Grid === */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

/* === Map === */
.map-container { margin-top: 24px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.map-container iframe { width: 100%; height: 300px; border: 0; display: block; }

/* === Contact === */
.contact-box { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.contact-card { background: var(--white); border: 2px solid var(--line); border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: all .3s; }
.contact-card:hover { border-color: var(--orange); background: var(--orange-wash); transform: translateY(-4px); }
.contact-card h3 { font-size: 0.85rem; font-weight: 700; margin-bottom: 14px; color: var(--ink-soft); }
.contact-card .big { font-family: var(--font-en); font-size: 1.45rem; font-weight: 700; color: var(--orange-deep); letter-spacing: 0.02em; }
.contact-card .big a { color: var(--orange-deep); }
.contact-card .note { font-size: 0.78rem; color: var(--ink-faint); margin-top: 10px; line-height: 1.7; }

/* === Recruit === */
.recruit-notice { background: linear-gradient(135deg, var(--orange-wash) 0%, var(--cream) 100%); border: 2px dashed var(--orange-tint); border-radius: var(--radius-lg); padding: 48px 40px; text-align: center; box-shadow: var(--shadow-sm); }
.recruit-notice h2, .recruit-notice h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 14px; color: var(--ink); }
.recruit-notice p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.95; }

.job-card { background: var(--white); border: 2px solid var(--line); border-radius: var(--radius-lg); padding: 32px 36px; box-shadow: var(--shadow-sm); margin-bottom: 32px; }
.job-card-head { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; padding-bottom: 18px; margin-bottom: 22px; border-bottom: 2px solid var(--orange-tint); }
.job-card-badge { background: var(--orange); color: var(--white); padding: 6px 16px; border-radius: var(--radius-pill); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; }
.job-card-badge.part { background: var(--green-deep); }
.job-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--ink); margin: 0; }
.job-card .info-table { box-shadow: none; border: 1px solid var(--line); }
.job-card .info-table th { width: 160px; }
.job-card .info-table td .lead { font-weight: 700; color: var(--orange-deep); font-size: 0.95rem; display: block; margin-bottom: 4px; }
.job-card .info-table td .sub { color: var(--ink-soft); font-size: 0.82rem; line-height: 1.85; }
.job-card .info-table td ul { list-style: disc; margin: 4px 0 0 18px; padding: 0; color: var(--ink-soft); font-size: 0.82rem; }
.job-card .info-table td ul li { margin: 2px 0; }
.job-section-lead { text-align: center; max-width: 720px; margin: 0 auto 40px; color: var(--ink-soft); font-size: 0.95rem; line-height: 1.95; }

/* === Info Table 内 PDFリンク === */
.info-doc-link { display: inline-flex; align-items: center; gap: 10px; color: var(--orange-deep); font-weight: 600; padding: 6px 0; transition: color .2s; }
.info-doc-link:hover { color: var(--orange); text-decoration: underline; }
.info-doc-meta { font-family: var(--font-en); font-size: 0.66rem; font-weight: 700; color: var(--orange-deep); background: var(--orange-tint); padding: 3px 10px; border-radius: var(--radius-pill); letter-spacing: 0.06em; }

/* === CTA Banner === */
.cta-banner { background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%); color: var(--white); padding: 64px 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -50%; right: -5%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 70%); border-radius: 50%; pointer-events: none; }
.cta-banner::after { content: ''; position: absolute; bottom: -50%; left: -5%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(244,169,199,0.2), transparent 70%); border-radius: 50%; pointer-events: none; }
.cta-banner > * { position: relative; }
.cta-banner h2 { font-size: 1.5rem; margin-bottom: 14px; font-weight: 700; }
.cta-banner p { margin-bottom: 28px; opacity: 0.95; font-size: 0.95rem; }
.cta-banner .btn { background: var(--white); color: var(--orange-deep); }
.cta-banner .btn:hover { background: var(--cream); }

/* === Features Grid === */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: var(--white); border-radius: var(--radius); padding: 32px 28px; transition: all .35s cubic-bezier(.2,.8,.2,1); box-shadow: var(--shadow-sm); position: relative; overflow: hidden; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin: 12px 0 12px; color: var(--ink); }
.feature-card p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.95; }

/* === Emergency Box (legacy, kept for service.html) === */
.emergency-box { background: linear-gradient(135deg, var(--orange-wash) 0%, var(--cream) 100%); border: 1px solid var(--orange-tint); border-radius: var(--radius-lg); padding: 32px 36px; display: flex; align-items: center; gap: 28px; max-width: 920px; margin: 0 auto; box-shadow: var(--shadow-sm); }
.emergency-badge { flex-shrink: 0; background: var(--orange); color: var(--white); padding: 14px 22px; border-radius: var(--radius-pill); font-family: var(--font-en); font-weight: 700; font-size: 1.05rem; line-height: 1.3; text-align: center; box-shadow: 0 8px 22px rgba(243,155,23,0.35); }
.emergency-box h3 { font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.emergency-box p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.95; }

/* === Character Deco (transparent illustrations) === */
.char-deco { position: absolute; pointer-events: none; z-index: 2; }
.char-deco img { width: 100%; height: auto; display: block; filter: drop-shadow(0 6px 18px rgba(169,95,0,0.12)); }
.char-deco.float { animation: floatShape 6s ease-in-out infinite; }
.section, .emergency-section { position: relative; }

/* === Emergency Section (home, photo + big typo) === */
.emergency-section { padding: 120px 0; }
.emergency-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; max-width: 1040px; margin: 0 auto; }
.emergency-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3.4; }
.emergency-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.emergency-photo::after { content: ''; position: absolute; bottom: -16px; right: -16px; width: 110px; height: 110px; background: var(--orange); border-radius: 50%; opacity: 0.18; pointer-events: none; }
.emergency-text { padding: 8px 0; }
.emergency-eyebrow { font-family: var(--font-en); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.2em; color: var(--orange-deep); text-transform: uppercase; margin-bottom: 24px; display: inline-flex; align-items: center; gap: 12px; }
.emergency-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--orange); }
.emergency-headline { font-family: var(--font-jp); font-size: 1.4rem; font-weight: 700; color: var(--ink); margin-bottom: 14px; letter-spacing: 0.02em; line-height: 1.65; }
.emergency-lead { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.95; }

/* === Footer === */
.footer { background: var(--ink); color: rgba(255,255,255,0.85); padding: 64px 0 24px; }
.footer-inner { display: grid; grid-template-columns: 1.3fr 0.8fr; gap: 48px; margin-bottom: 40px; }
.footer h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 18px; font-weight: 700; }
.footer p { font-size: 0.82rem; line-height: 2; opacity: 0.85; }
.footer p a { color: var(--orange-soft) !important; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { font-size: 0.85rem; color: rgba(255,255,255,0.7); transition: color 0.2s; font-weight: 600; }
.footer-nav a:hover { color: var(--orange-soft); }
.footer-copy { text-align: center; font-size: 0.75rem; color: rgba(255,255,255,0.5); border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; font-family: var(--font-en); }

/* === Scroll Reveal === */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

/* === Hero Visual Collage === */
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-visual { position: relative; height: 520px; }
.hero-card { position: absolute; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.95); font-size: 0.78rem; font-weight: 600; text-align: center; padding: 24px; background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.08) 0 12px, transparent 12px 24px); }
.hero-card span { display: block; line-height: 1.6; }
.hero-card.has-photo { background-image: none; padding: 0; }
.hero-card.has-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-main { top: 20px; left: 20px; width: 320px; height: 420px; background-color: var(--orange); background-image: linear-gradient(135deg, var(--pink), var(--orange)); border-radius: 200px 200px 32px 32px; z-index: 2; transform: rotate(-3deg); transition: transform .4s; }
.hero-photo-main:hover { transform: rotate(-2deg) scale(1.02); }
.hero-photo-sub1 { top: 40px; right: 0; width: 170px; height: 170px; background-image: linear-gradient(135deg, var(--green-soft), var(--green-deep)); border-radius: 40% 50% 45% 55% / 50% 45% 55% 40%; z-index: 3; transform: rotate(5deg); }
.hero-photo-sub2 { bottom: 0; right: 30px; width: 210px; height: 150px; background-image: linear-gradient(135deg, var(--orange-soft), var(--orange-deep)); border-radius: 28px; z-index: 3; transform: rotate(4deg); }
.hero-sticker { position: absolute; top: -8px; right: 60px; z-index: 4; width: 110px; height: 110px; display: flex; align-items: center; justify-content: center; animation: rotate 18s linear infinite; }
.hero-sticker svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-sticker-center { position: relative; z-index: 1; width: 46px; height: 46px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.1rem; }
.hero-ticket { position: absolute; bottom: -28px; left: 0; z-index: 4; background: var(--ink); color: var(--white); padding: 14px 20px; border-radius: 12px; transform: rotate(-4deg); box-shadow: var(--shadow); font-size: 0.78rem; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.hero-ticket-dot { width: 10px; height: 10px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 3px rgba(125,192,77,0.3); animation: pulse 2s ease-in-out infinite; }

/* Hero shapes */
.hero-shape { position: absolute; pointer-events: none; z-index: 0; }
.hero-shape-1 { top: 12%; right: 6%; width: 70px; height: 70px; background: var(--pink); border-radius: 50%; opacity: 0.5; animation: floatShape 7s ease-in-out infinite; }
.hero-shape-2 { top: 60%; left: 4%; width: 56px; height: 56px; background: var(--green); border-radius: 50%; opacity: 0.45; animation: floatShape 9s ease-in-out infinite reverse; }
.hero-shape-3 { bottom: 18%; left: 50%; width: 38px; height: 38px; background: var(--orange); border-radius: 12px; transform: rotate(15deg); opacity: 0.55; animation: floatShape 8s ease-in-out infinite; animation-delay: 1s; }

/* Hero stats */
.hero-stats { display: flex; gap: 36px; padding-top: 28px; margin-top: 32px; border-top: 1px dashed var(--line); }
.hero-stat-num { font-family: var(--font-en); font-size: 1.8rem; font-weight: 700; color: var(--orange-deep); line-height: 1; letter-spacing: 0.02em; }
.hero-stat-label { font-size: 0.68rem; color: var(--ink-faint); margin-top: 6px; letter-spacing: 0.12em; font-weight: 700; font-family: var(--font-en); }

/* === Marquee === */
.marquee { background: var(--cream-deep); color: var(--ink); padding: 16px 0; overflow: hidden; position: relative; z-index: 2; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.marquee-track { display: flex; gap: 36px; animation: marquee 50s linear infinite; white-space: nowrap; width: max-content; }
.marquee-item { display: inline-flex; align-items: center; gap: 36px; font-size: 1rem; font-weight: 700; letter-spacing: 0.04em; color: var(--ink-soft); }
.marquee-item .accent { color: var(--orange-deep); }
.marquee-dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }

/* === Area Map (animated) === */
.area-map-wrap { position: relative; max-width: 520px; margin: 0 auto; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); background: var(--white); }
.area-map-wrap img { width: 100%; height: auto; display: block; }
.area-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.area-rings { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.area-rings > div { position: absolute; border: 2px dashed var(--orange); opacity: 0.7; border-radius: 50%; animation: expandRing 4s ease-out infinite; }
.area-rings > div:nth-child(1) { width: 80px; height: 80px; animation-delay: 0s; }
.area-rings > div:nth-child(2) { width: 140px; height: 140px; animation-delay: .6s; }
.area-rings > div:nth-child(3) { width: 220px; height: 220px; animation-delay: 1.2s; }
.area-pin { position: relative; z-index: 2; width: 48px; height: 48px; background: var(--orange); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); box-shadow: 0 12px 24px rgba(243,155,23,0.45); display: flex; align-items: center; justify-content: center; animation: bob 3s ease-in-out infinite; }
.area-pin-inner { width: 18px; height: 18px; background: var(--white); border-radius: 50%; transform: rotate(45deg); }

/* === Floating CTA === */
.float-cta { position: fixed; bottom: 80px; right: 20px; z-index: 90; background: var(--ink); color: var(--white); padding: 8px 8px 8px 22px; border-radius: var(--radius-pill); font-weight: 700; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 12px; box-shadow: 0 14px 32px rgba(0,0,0,0.25); opacity: 0; transform: translateY(20px); transition: all .4s cubic-bezier(.2,.8,.2,1); pointer-events: none; }
.float-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.float-cta:hover { background: var(--orange); }
.float-cta-arrow { width: 32px; height: 32px; border-radius: 50%; background: var(--orange); display: inline-flex; align-items: center; justify-content: center; transition: background .3s; color: var(--white); font-weight: 700; }
.float-cta:hover .float-cta-arrow { background: var(--ink); color: var(--orange); }

/* === Header scrolled state === */
.header.scrolled { box-shadow: 0 4px 20px rgba(169,95,0,0.08); }
.header.scrolled .header-top { background: rgba(255,253,249,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }

/* === Keyframes === */
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 3px rgba(125,192,77,0.3); } 50% { box-shadow: 0 0 0 8px rgba(125,192,77,0.1); } }
@keyframes floatShape { 0%, 100% { transform: translate(0, 0) rotate(0); } 50% { transform: translate(10px, -15px) rotate(10deg); } }
@keyframes bob { 0%, 100% { transform: rotate(-45deg) translateY(0); } 50% { transform: rotate(-45deg) translateY(-8px); } }
@keyframes expandRing { 0% { opacity: 0.8; transform: scale(0.7); } 100% { opacity: 0; transform: scale(1.2); } }
@keyframes marquee { to { transform: translateX(-50%); } }

/* === Phone Fixed === */
.phone-fixed { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--orange); z-index: 99; box-shadow: 0 -4px 16px rgba(243,155,23,0.35); }
.phone-fixed a { display: block; color: var(--white); text-align: center; padding: 14px; font-size: 1rem; font-weight: 700; font-family: var(--font-en); letter-spacing: 0.02em; }

/* === Responsive === */
@media (max-width: 960px) {
  .features-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .header-top-inner { height: 76px; }
  .header-logo-img { height: 60px; }
  .header-tel { display: none; }
  /* nav-bar の見た目を消すが display:none は使わず、子の fixed nav を生かす */
  .header-nav-bar { background: transparent; border: 0; padding: 0; }
  .header-nav-bar .container { padding: 0; max-width: none; }
  .header-nav { display: none; position: fixed; top: 76px; left: 0; right: 0; background: var(--cream); flex-direction: column; padding: 24px; gap: 8px; height: auto; max-height: calc(100vh - 76px); overflow-y: auto; box-shadow: 0 8px 20px rgba(0,0,0,0.08); z-index: 99; }
  .header-nav.active { display: flex; }
  .header-nav a { padding: 14px 18px; border-radius: var(--radius-sm); width: 100%; text-align: center; }
  .hamburger { display: flex; }
  .hero { min-height: auto; padding: 56px 0; }
  .hero-content h1 { font-size: 1.4rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { height: 420px; max-width: 420px; margin: 0 auto; }
  .hero-photo-main { width: 260px; height: 340px; }
  .hero-photo-sub1 { width: 140px; height: 140px; }
  .hero-photo-sub2 { width: 170px; height: 130px; }
  .hero-stats { gap: 24px; }
  .hero-stat-num { font-size: 1.4rem; }
  .marquee-item { font-size: 0.95rem; gap: 28px; }
  .marquee-track { gap: 28px; }
  .info-row { grid-template-columns: 1fr; gap: 32px; }
  .contact-box { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  /* モバイルではフローティングCTAだけにして二重表示を避ける */
  .phone-fixed { display: none; }
  body { padding-bottom: 0; }
  .section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .emergency-box { flex-direction: column; text-align: center; gap: 16px; padding: 28px 24px; }
  .emergency-section { padding: 72px 0; }
  .emergency-grid { grid-template-columns: 1fr; gap: 36px; }
  .emergency-photo { aspect-ratio: 4/3; }
  .char-deco { display: none; }
  .emergency-photo .char-deco { display: block; width: 90px !important; bottom: -20px !important; right: -10px !important; }
  .greeting-grid { grid-template-columns: 1fr; gap: 36px; }
  .greeting-photo { aspect-ratio: 4/3; max-width: 420px; margin: 0 auto; }
  .naming-card { padding: 36px 24px; }
  .manager-card { grid-template-columns: 1fr; gap: 16px; padding: 28px 24px; text-align: center; }
  .manager-portrait { max-width: 110px; margin: 0 auto; }
  .recommend-cards { grid-template-columns: 1fr; }
  .intro-card { padding: 32px 24px; }
  .intro-card.intro-with-photo { grid-template-columns: 1fr; padding: 0; }
  .intro-photo { min-height: 240px; aspect-ratio: 4/3; }
  .intro-text { padding: 28px 24px 32px; }
  .conditions-wrap { padding: 36px 24px; }
  .pillars-wrap { border-radius: 40px 40px 0 0; padding: 64px 0 56px; margin-top: 48px; }
  .pillars-grid { grid-template-columns: 1fr; max-width: 480px; gap: 20px; }
  .pillar-2 { transform: none; }
  .pillar-2:hover { transform: translateY(-8px); }
  .pillars-head { margin-bottom: 48px; }
  .flow-steps::before { left: 28px; }
  .flow-step { padding: 22px 22px; gap: 16px; }
  .flow-num { width: 56px; height: 56px; font-size: 1.15rem; }
  .flow-hero { aspect-ratio: 4/3; }
  .flow-hero-overlay { left: 24px; right: 24px; max-width: none; }

  /* === Mobile fine-tuning === */
  .container { padding: 0 18px; }
  .header-logo-img { height: 48px; }
  .header-top-inner { height: 64px; }
  .header-nav { top: 64px; }
  .page-header { padding: 40px 0; }
  .page-header h1 { font-size: 1.4rem; }
  .page-header p { font-size: 0.82rem; }
  .section-title { font-size: 1.2rem; margin-bottom: 24px; }
  .hero-content h1 { line-height: 1.5; }
  .hero-content h1 strong { font-size: 1.7rem; }
  .hero-brand-en { font-size: 1.7rem; }
  .hero-brand-jp { font-size: 1rem; }
  .hero-tel { font-size: 1rem; padding: 14px 24px; }
  .hero-visual { height: auto; max-width: 340px; aspect-ratio: 1/1.05; }
  .hero-photo-main { width: 60%; height: 75%; top: 8%; left: 4%; }
  .hero-photo-sub1 { width: 36%; height: 32%; top: 12%; right: 0; }
  .hero-photo-sub2 { width: 46%; height: 28%; bottom: 4%; right: 6%; }
  .hero-sticker { width: 80px; height: 80px; right: 30px; top: 0; }
  .hero-sticker-center { width: 36px; height: 36px; font-size: 0.95rem; }
  .info-table th, .info-table td { padding: 10px 12px; font-size: 0.82rem; }
  .info-table th { width: 100px; }
  .conditions-list { gap: 6px; }
  .condition-tag { padding: 7px 14px; font-size: 0.78rem; }
  .pillar { padding: 28px 22px 22px; }
  .pillar-mark { width: 80px; height: 80px; }
  .pillar-title { font-size: 1.05rem; }
  .pillars-wrap::before { font-size: 160px; right: 8px; top: -30px; }
  .recommend-card { padding: 18px 20px; gap: 14px; }
  .recommend-num { font-size: 1.2rem; }
  .feature-card { padding: 24px 22px; }
  .emergency-headline { font-size: 1.2rem; }
  .cta-strip { padding: 40px 0 48px; }
  .cta-strip .btn { display: block; max-width: 280px; margin: 8px auto; }
  .cta-banner h2 { font-size: 1.25rem; }
  .footer { padding: 48px 0 88px; }
  .float-cta { font-size: 0.82rem; padding: 6px 6px 6px 18px; right: 14px; bottom: 16px; }
  .float-cta-arrow { width: 30px; height: 30px; }
  /* お知らせ一覧: 狭幅では日付と本文を縦並び */
  .news-item { flex-direction: column; gap: 4px; padding: 12px 0; }
  .news-date { width: auto; font-size: 0.78rem; }
  .marquee { padding: 12px 0; }
  .marquee-item { font-size: 0.85rem; gap: 22px; }
  .marquee-track { gap: 22px; animation-duration: 22s; }
  /* モバイルではヒーローのステッカーは非表示（位置が微妙になりがち） */
  .hero-sticker { display: none; }
  .greeting-text p { font-size: 0.88rem; line-height: 1.95; }
  .pillar-keyword { font-size: 0.65rem; padding: 4px 9px; }
  .map-container iframe { height: 240px; }
  .job-card { padding: 24px 18px; margin-bottom: 24px; }
  .job-card-head { gap: 10px; padding-bottom: 14px; margin-bottom: 16px; }
  .job-card h3 { font-size: 1rem; }
  .job-card .info-table th { width: 96px; }
  .info-doc-link { font-size: 0.82rem; gap: 8px; }
  .info-doc-meta { font-size: 0.6rem; padding: 2px 8px; }
}

@media (max-width: 380px) {
  .container { padding: 0 14px; }
  .hero-content h1 { font-size: 1.2rem; }
  .hero-content h1 strong { font-size: 1.45rem; }
  .hero-tel { font-size: 0.95rem; padding: 12px 20px; }
  .hero-tel small { font-size: 0.62rem; }
  .info-table th { width: 88px; }
}
}
