/*
 * ゆいのは介護と暮らしの相談所
 * ブランドカラーと読みやすさを優先した、ビルド不要の静的サイト用CSSです。
 */

:root {
  --green: #284234;
  --green-deep: #163b2d;
  --green-dark: #123428;
  --green-soft: #eaf0e7;
  --green-pale: #f0f4ed;
  --gold: #b89b5e;
  --gold-deep: #9b792f;
  --gold-pale: #eadfca;
  --cream: #faf8f3;
  --cream-deep: #f8f4e9;
  --white: #ffffff;
  --ink: #26312c;
  --muted: #68736d;
  --line: #d9d7ce;
  --line-green: #b7c4ba;
  --line-gold: #d7c496;
  --line-soft: rgba(40, 66, 52, 0.16);
  --shadow-sm: 0 8px 24px rgba(22, 59, 45, 0.08);
  --shadow-md: 0 18px 48px rgba(22, 59, 45, 0.12);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-height: 84px;
  --font-serif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --font-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  overflow-x: hidden;
}
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.82;
  letter-spacing: 0.02em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.22em; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
p { margin: 0 0 1.1em; }
ul, ol { margin-top: 0; }
address { font-style: normal; }

:focus-visible {
  outline: 3px solid #f0b940;
  outline-offset: 4px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--green-deep);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 0.18s ease;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}
.section { position: relative; padding: 96px 0; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}
h1, h2, h3 {
  margin: 0;
  color: var(--green-deep);
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.045em;
  line-height: 1.5;
}
h1 { font-size: clamp(2.35rem, 4.4vw, 4.25rem); line-height: 1.42; }
h2 { font-size: clamp(2rem, 3.3vw, 3.25rem); }
h3 { font-size: clamp(1.22rem, 1.8vw, 1.55rem); }
h1 span, h2 span { color: var(--gold-deep); }
.responsive-title { text-wrap: balance; }
.responsive-title .title-line { display: block; color: var(--green-deep); white-space: nowrap; }
.responsive-title .title-line .title-phrase { color: inherit; }
.responsive-title .title-phrase { display: inline-block; }
.responsive-title .title-accent,
.responsive-title .title-accent .title-phrase { color: var(--gold-deep); }
.hero-title { font-size: clamp(2.35rem, 3.2vw, 2.85rem); letter-spacing: 0.025em; }
.contact-title { font-size: clamp(2rem, 2.7vw, 2.7rem); letter-spacing: 0.03em; }
.lead-serif {
  color: var(--green-deep);
  font-family: var(--font-serif);
  font-size: clamp(1.24rem, 2vw, 1.65rem);
  font-weight: 600;
  line-height: 1.9;
}
.centered { text-align: center; }

/* Heading alignment system
   印象を伝える章見出しは中央、説明・問い合わせ・会社情報は左に統一。 */
.heading-align-center { text-align: center; }
.heading-align-center > p:last-child { margin-left: auto; margin-right: auto; }
.heading-align-left { text-align: left; }
.heading-align-left .eyebrow { justify-content: flex-start; }
.heading-align-left .heading-decoration { margin-left: 0; margin-right: auto; }

.centered .eyebrow { justify-content: center; }
.section-heading { max-width: 790px; margin: 0 auto 58px; }
.section-heading > p:last-child { max-width: 660px; margin: 18px auto 0; color: var(--muted); }
.heading-decoration {
  width: 220px;
  max-height: 42px;
  object-fit: contain;
  margin: 22px auto 0;
}

/* Buttons */
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 44px; padding: 10px 17px; font-size: 0.9rem; }
.button-large { min-height: 56px; padding: 15px 28px; }
.button-line {
  color: var(--white);
  background: #16833f;
  box-shadow: 0 10px 24px rgba(22, 131, 63, 0.22);
}
.button-line:hover { background: #116c34; box-shadow: 0 13px 30px rgba(22, 131, 63, 0.28); }
.button-phone { color: var(--green-deep); background: var(--white); border-color: var(--line-green); }
.button-phone:hover, .button-outline:hover { background: var(--green-pale); }
.button-outline { color: var(--green-deep); background: transparent; border-color: var(--green); }
.button-disabled, .button-disabled:hover {
  color: #777;
  background: #e5e5e2;
  border-color: #d1d1cd;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}
.text-link { color: var(--green-deep); font-weight: 700; text-decoration: none; }
.text-link:hover { text-decoration: underline; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(40, 66, 52, 0.08);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.18s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 25px rgba(22, 59, 45, 0.08); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 24px; }
.brand-link { display: inline-flex; flex: 0 0 auto; align-items: center; text-decoration: none; }
.header-logo { width: 245px; height: 64px; object-fit: contain; object-position: left center; }
.desktop-nav { display: flex; align-items: center; gap: clamp(14px, 1.6vw, 26px); margin-left: auto; }
.desktop-nav a { color: var(--green-deep); font-size: 0.88rem; font-weight: 600; text-decoration: none; white-space: nowrap; }
.desktop-nav a:hover { color: var(--gold-deep); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.menu-toggle, .menu-close {
  width: 48px;
  height: 48px;
  border: 0;
  color: var(--green-deep);
  background: transparent;
  cursor: pointer;
}
.menu-toggle { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.menu-toggle span { width: 25px; height: 2px; background: currentColor; border-radius: 10px; }
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(14, 37, 28, 0.5);
  opacity: 0;
  transition: opacity 0.18s ease;
}
.mobile-menu.is-open { opacity: 1; }
.mobile-menu-panel {
  width: min(88vw, 430px);
  height: 100%;
  margin-left: auto;
  padding: 20px 22px 30px;
  background: var(--cream);
  transform: translateX(100%);
  transition: transform 0.18s ease;
  overflow-y: auto;
}
.mobile-menu.is-open .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.mobile-menu-head img { width: 210px; height: 65px; object-fit: contain; object-position: left; }
.menu-close { font-size: 2.15rem; line-height: 1; }
.mobile-menu nav { display: grid; margin: 18px 0 26px; }
.mobile-menu nav a { min-height: 52px; display: flex; align-items: center; padding: 10px 4px; border-bottom: 1px solid var(--line); color: var(--green-deep); font-weight: 600; text-decoration: none; }
.mobile-menu-cta { display: grid; gap: 10px; }
.noscript-notice { padding: 12px 18px; margin-top: 10px; border: 1px solid var(--line-gold); background: #fff7e5; border-radius: 8px; font-size: 0.9rem; }

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  padding: 72px 0 96px;
  background:
    radial-gradient(circle at 85% 10%, rgba(184, 155, 94, 0.13), transparent 28%),
    linear-gradient(135deg, #fff 0%, var(--cream) 55%, var(--cream-deep) 100%);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(184, 155, 94, 0.28);
  border-radius: 50%;
}
.hero-decoration {
  position: absolute;
  top: 50px;
  left: -90px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(40, 66, 52, 0.09);
  border-radius: 50%;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.16fr) minmax(380px, 0.84fr); align-items: center; gap: clamp(36px, 4.5vw, 64px); }
.hero-copy { position: relative; z-index: 1; }
.hero-lead { max-width: 34em; margin: 30px 0 8px; color: var(--green-deep); font-family: var(--font-serif); font-size: clamp(1.08rem, 1.55vw, 1.3rem); font-weight: 600; line-height: 1.75; text-wrap: balance; }
.hero-text { color: #4e5a54; font-size: 1.03rem; }
.service-chips { display: flex; flex-wrap: wrap; gap: 9px; padding: 0; margin: 28px 0; list-style: none; }
.service-chips li { padding: 8px 16px; color: var(--green-deep); background: rgba(255,255,255,0.85); border: 1px solid var(--line-green); border-radius: 999px; font-size: 0.9rem; font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.hero-actions .text-link { margin-left: 3px; }
.assurance-list { display: flex; flex-wrap: wrap; gap: 8px 18px; padding: 22px 0 0; margin: 26px 0 0; border-top: 1px solid var(--line-soft); list-style: none; color: #536159; font-size: 0.9rem; }
.assurance-list li { position: relative; padding-left: 22px; }
.assurance-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.assurance-list strong { color: var(--gold-deep); }
.hero-visual { position: relative; z-index: 1; padding: 0 12px 54px 0; }
.hero-photo-frame { position: relative; max-width: 500px; margin-left: auto; padding: 12px; border: 1px solid rgba(184,155,94,0.55); border-radius: 48% 48% 28px 28px / 20% 20% 28px 28px; background: rgba(255,255,255,0.68); box-shadow: var(--shadow-md); }
.hero-photo-frame::before { content: ""; position: absolute; inset: -12px 22px 18px -18px; z-index: -1; border-radius: inherit; background: rgba(40, 66, 52, 0.08); }
.hero-photo-frame img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center; border-radius: 46% 46% 20px 20px / 18% 18% 20px 20px; }
.hero-note { position: absolute; right: -12px; bottom: 0; display: flex; align-items: center; gap: 12px; max-width: 355px; padding: 17px 20px; color: var(--green-deep); background: rgba(255,255,255,0.96); border: 1px solid var(--line-gold); border-radius: 18px; box-shadow: var(--shadow-sm); }
.hero-note img { flex: 0 0 54px; width: 54px; height: 60px; object-fit: contain; }
.hero-note p { margin: 0; font-size: 0.88rem; line-height: 1.7; }

/* Generic image panels */
.image-panel { position: relative; overflow: hidden; background: #e8ece7; box-shadow: var(--shadow-md); }
.image-panel::after { content: ""; position: absolute; inset: 12px; pointer-events: none; border: 1px solid rgba(255,255,255,0.65); border-radius: inherit; }
.image-panel img { width: 100%; height: 100%; object-fit: cover; }
.image-panel-portrait { min-height: 650px; border-radius: 200px 200px 24px 24px; }
.image-panel-landscape { min-height: 450px; border-radius: 30px; }
.split-layout { display: grid; grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1.18fr); gap: clamp(48px, 7vw, 90px); align-items: center; }

/* Worries */
.section-worries { background: var(--white); }
.check-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0 28px; padding: 0; margin: 34px 0; list-style: none; }
.check-grid li { position: relative; padding: 13px 8px 13px 34px; border-bottom: 1px dashed var(--line-gold); line-height: 1.65; }
.check-grid li::before { content: "✓"; position: absolute; left: 4px; top: 14px; display: grid; width: 22px; height: 22px; place-items: center; color: var(--white); background: var(--green); border-radius: 50%; font-size: 0.75rem; font-weight: 800; }
.gentle-message { padding: 25px 28px; border-left: 4px solid var(--gold); background: var(--cream-deep); border-radius: 0 14px 14px 0; }
.gentle-message p:last-child { margin-bottom: 0; }

/* Values */
.section-values { background: var(--cream-deep); }
.values-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(42px,6vw,78px); align-items: center; }
.values-copy p { max-width: 620px; }
.values-copy p:not(.lead-serif) { color: #4f5a54; }

/* Services */
.section-services { background: var(--white); }
.service-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.service-card { position: relative; min-height: 365px; padding: 38px 38px 34px; border: 1px solid var(--line-gold); border-radius: var(--radius-md); background: linear-gradient(145deg, #fff 0%, #fdfbf5 100%); overflow: hidden; }
.service-card::after { content: ""; position: absolute; right: -38px; bottom: -42px; width: 120px; height: 120px; border: 1px solid rgba(184,155,94,0.2); border-radius: 50%; }
.card-number { position: absolute; top: 20px; right: 24px; color: rgba(40,66,52,0.18); font-family: var(--font-serif); font-size: 3.1rem; font-weight: 700; line-height: 1; }
.service-icon { display: grid; width: 60px; height: 60px; place-items: center; margin-bottom: 20px; color: var(--green); background: var(--green-pale); border-radius: 50%; }
.service-icon svg { width: 34px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin-bottom: 14px; }
.service-card p { color: #52605a; }
.service-card p:last-child { margin-bottom: 0; }

/* Flow */
.section-flow { color: var(--white); background: var(--green-deep); overflow: hidden; }
.section-flow::before, .section-flow::after { content: ""; position: absolute; border: 1px solid rgba(184,155,94,0.22); border-radius: 50%; }
.section-flow::before { width: 360px; height: 360px; top: -190px; left: -100px; }
.section-flow::after { width: 460px; height: 460px; right: -240px; bottom: -260px; }
.light-heading, .light-heading h2, .light-heading .eyebrow { color: var(--white); }
.light-heading h2 span { color: #e4c988; }
.light-heading .eyebrow::before { background: #e4c988; }
.flow-list { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 16px; padding: 0; margin: 0; list-style: none; }
.flow-item { position: relative; min-width: 0; padding: 22px 16px 25px; text-align: center; border: 1px solid rgba(255,255,255,0.2); border-radius: 20px; background: rgba(255,255,255,0.06); }
.flow-item:not(:last-child)::after { content: "›"; position: absolute; right: -14px; top: 88px; z-index: 2; color: #d8b866; font-size: 2rem; line-height: 1; }
.flow-icon { width: 108px; height: 108px; margin: 0 auto 12px; padding: 7px; border-radius: 50%; background: #f3f0e6; }
.flow-icon img { width: 100%; height: 100%; object-fit: contain; }
.flow-number { display: grid; width: 28px; height: 28px; place-items: center; margin: -3px auto 10px; color: var(--white); background: var(--gold-deep); border-radius: 50%; font-weight: 700; }
.flow-item h3 { color: var(--white); font-size: 1.12rem; }
.flow-item p { margin: 10px 0 0; color: rgba(255,255,255,0.84); font-size: 0.96rem; line-height: 1.78; }
.free-support-note { position: relative; z-index: 1; max-width: 930px; margin: 42px auto 0; padding: 24px 30px; text-align: center; color: var(--green-deep); background: var(--cream-deep); border: 1px solid #d1b46b; border-radius: 16px; }
.free-support-note strong { color: var(--gold-deep); font-family: var(--font-serif); font-size: 1.2rem; }
.free-support-note p { margin: 8px 0 0; font-size: 0.88rem; }

/* Reasons */
.section-reasons { background: var(--cream); }
.reasons-layout { display: grid; grid-template-columns: minmax(0,1fr) minmax(360px,0.82fr); gap: clamp(40px,6vw,72px); align-items: start; }
.reason-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; padding: 0; margin: 0; list-style: none; }
.reason-list li { min-height: 104px; display: grid; grid-template-columns: 30px minmax(0,1fr); gap: 13px; align-items: start; padding: 20px 18px; background: var(--white); border: 1px solid var(--line-soft); border-radius: 14px; box-shadow: 0 6px 16px rgba(22,59,45,0.04); }
.reason-mark { display: grid; width: 27px; height: 27px; margin-top: 2px; place-items: center; color: var(--white); background: var(--green); border-radius: 50%; font-weight: 800; font-size: 0.8rem; line-height: 1; }
.reason-copy { display: grid; gap: 4px; min-width: 0; line-height: 1.55; text-wrap: pretty; }
.reason-copy strong { display: block; color: var(--green-deep); font-size: 1rem; font-weight: 700; }
.reason-copy > span { display: block; color: #5b665f; font-size: 0.9rem; }
.tour-card { position: sticky; top: calc(var(--header-height) + 25px); overflow: hidden; border-radius: 28px; background: var(--green-deep); box-shadow: var(--shadow-md); }
.tour-card img { width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover; object-position: center 28%; }
.tour-card-copy { padding: 28px 30px 30px; color: var(--white); }
.tour-card-copy .eyebrow { color: #ead49c; font-size: 0.76rem; }
.tour-card-copy h3 { color: var(--white); }
.tour-card-copy p:last-child { margin: 12px 0 0; color: rgba(255,255,255,0.78); }

/* About */
.section-about { background: var(--white); }
.section-about::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 36%; background: var(--cream-deep); }
.about-grid { position: relative; display: grid; grid-template-columns: 0.72fr 1.28fr; gap: clamp(58px,8vw,110px); align-items: center; }
.about-symbol { display: grid; min-height: 530px; place-items: center; }
.about-symbol img { width: min(100%, 400px); filter: drop-shadow(0 18px 28px rgba(22,59,45,0.12)); }
.about-copy > p { max-width: 700px; }
.name-story { margin-top: 34px; padding: 30px 32px; border: 1px solid var(--line-gold); border-radius: 20px; background: var(--cream-deep); }
.name-story h3 { margin-bottom: 16px; }
.name-story p { margin-bottom: 7px; }
.name-story p:last-child { margin-top: 14px; margin-bottom: 0; }
.name-story strong { color: var(--gold-deep); font-family: var(--font-serif); font-size: 1.12em; }

/* FAQ */
.section-faq { background: var(--cream-deep); }
.faq-container { max-width: 980px; }
.section-faq .heading-decoration { width: 58px; height: 75px; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { background: var(--white); border: 1px solid var(--line-soft); border-radius: 14px; overflow: hidden; }
.faq-list summary { position: relative; min-height: 70px; display: flex; align-items: center; padding: 18px 62px 18px 68px; color: var(--green-deep); font-weight: 700; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before { content: "Q"; position: absolute; left: 22px; display: grid; width: 32px; height: 32px; place-items: center; color: var(--white); background: var(--green); border-radius: 50%; font-family: var(--font-serif); }
.faq-list summary::after { content: "+"; position: absolute; right: 24px; color: var(--gold-deep); font-size: 1.7rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details[open] summary { border-bottom: 1px solid var(--line-soft); }
.faq-answer { position: relative; padding: 20px 28px 22px 68px; color: #4f5a54; }
.faq-answer::before { content: "A"; position: absolute; left: 25px; top: 19px; color: var(--gold-deep); font-family: var(--font-serif); font-size: 1.35rem; font-weight: 700; }
.faq-answer p { margin: 0; }

/* Contact */
.section-contact { background: var(--white); }
.contact-heading { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 65px; align-items: end; margin-bottom: 50px; }
.contact-intro { padding: 22px 0 4px 28px; border-left: 1px solid var(--line-gold); color: #56625c; text-wrap: pretty; }
.contact-intro p { margin-bottom: 0.65em; }
.contact-intro p:last-child { margin-bottom: 0; }
.contact-methods { display: grid; grid-template-columns: 1.14fr 0.93fr 0.93fr; gap: 18px; }
.contact-card { position: relative; min-width: 0; padding: 32px; border: 1px solid var(--line-soft); border-radius: 22px; background: var(--cream); }
.contact-card h3 { margin-bottom: 12px; }
.contact-card p { color: #56625c; }
.contact-card-line { color: var(--white); background: var(--green-deep); border-color: var(--green-deep); box-shadow: var(--shadow-md); }
.contact-card-line h3, .contact-card-line p { color: var(--white); }
.contact-label { position: absolute; top: -12px; right: 22px; padding: 5px 14px; color: var(--green-deep); background: #e8d196; border-radius: 999px; font-size: 0.78rem; font-weight: 700; }
.contact-id { margin-top: 22px; }
.contact-main-link { display: block; margin: 22px 0 6px; color: var(--green-deep); font-family: var(--font-serif); font-size: clamp(1.35rem,2.1vw,1.85rem); font-weight: 700; line-height: 1.4; overflow-wrap: anywhere; }
.contact-email { font-size: clamp(1.05rem,1.55vw,1.35rem); }
.form-panel { margin-top: 58px; padding: clamp(30px,5vw,58px); border: 1px solid var(--line-gold); border-radius: 28px; background: var(--cream-deep); }
.form-intro { max-width: 760px; margin-bottom: 32px; }
.form-intro h3 { font-size: 1.8rem; }
.form-intro p:last-child { color: #5f6964; }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px; }
.contact-form label, .contact-form legend { color: var(--green-deep); font-weight: 600; }
.contact-form label { display: grid; gap: 8px; }
.required { width: fit-content; padding: 2px 7px; margin-left: 6px; color: #8a2d23; background: #f8e5e1; border-radius: 4px; font-size: 0.72rem; vertical-align: middle; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; min-height: 50px; padding: 12px 14px; color: var(--ink); background: var(--white); border: 1px solid #bfc5c0; border-radius: 9px; }
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--green); outline: 3px solid rgba(40,66,52,0.14); }
.full-width { grid-column: 1 / -1; }
.contact-form fieldset { padding: 16px 18px 18px; border: 1px solid #bfc5c0; border-radius: 9px; background: rgba(255,255,255,0.45); }
.choice-row { display: flex; flex-wrap: wrap; gap: 12px 30px; margin-top: 6px; }
.choice-row label, .consent { display: flex; grid-template-columns: none; align-items: center; gap: 9px; font-weight: 500; }
.choice-row input, .consent input { width: 20px; min-height: 20px; margin: 0; }
.consent { padding: 6px 2px; }
.form-actions { margin-top: 28px; text-align: center; }
.form-actions p { margin: 12px 0 0; color: #6a716d; font-size: 0.88rem; }

/* Company */
.section-company { background: var(--cream-deep); overflow: hidden; }
.company-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(55px,8vw,105px); align-items: start; }
.company-heading { position: sticky; top: calc(var(--header-height) + 40px); }
.company-decoration { width: 260px; max-height: 150px; object-fit: contain; object-position: left center; margin: 28px 0 0 -18px; opacity: 0.9; }
.company-details { background: var(--white); border: 1px solid var(--line-soft); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-sm); }
.company-details dl { margin: 0; }
.company-details dl > div { display: grid; grid-template-columns: 155px minmax(0,1fr); border-bottom: 1px solid var(--line-soft); }
.company-details dl > div:last-child { border-bottom: 0; }
.company-details dt, .company-details dd { margin: 0; padding: 18px 22px; }
.company-details dt { color: var(--green-deep); background: var(--green-pale); font-weight: 700; }
.company-details dd { overflow-wrap: anywhere; }
.company-details a { color: var(--green-deep); }
.company-details ul { padding-left: 1.2em; margin: 0; }

/* Footer */
.site-footer { padding: 64px 0 0; color: rgba(255,255,255,0.88); background: #083c28; }
.footer-grid { display: grid; grid-template-columns: 1.25fr 0.75fr 0.75fr; gap: 60px; padding-bottom: 48px; }
.footer-brand img { width: 410px; max-width: 100%; margin: -14px 0 12px -24px; }
.footer-brand p { margin-bottom: 9px; font-weight: 700; }
.footer-brand address { font-size: 0.9rem; line-height: 1.8; }
.footer-contact h2 { color: var(--white); font-family: var(--font-serif); font-size: 1.18rem; }
.footer-contact p { margin: 9px 0; }
.footer-contact a, .footer-nav a, .footer-bottom a { color: inherit; text-decoration: none; }
.footer-contact a:hover, .footer-nav a:hover, .footer-bottom a:hover { color: #f0d99b; text-decoration: underline; }
.footer-nav { display: grid; gap: 8px; align-content: start; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 20px; padding-bottom: 25px; border-top: 1px solid rgba(255,255,255,0.2); font-size: 0.84rem; }
.footer-bottom p { margin: 0; }
.compact-footer { padding-top: 0; }
.compact-footer .footer-bottom { border-top: 0; }

/* Mobile fixed CTA */
.mobile-fixed-cta { display: none; }

/* Privacy page */
.privacy-page { background: var(--cream); }
.privacy-main { padding-bottom: 80px; }
.privacy-hero { padding: 85px 0 62px; color: var(--white); background: var(--green-deep); }
.privacy-hero .eyebrow, .privacy-hero h1 { color: var(--white); }
.privacy-hero .eyebrow::before { background: #d9bd79; }
.privacy-hero h1 { font-size: clamp(2.2rem,4vw,3.6rem); }
.privacy-hero p:last-child { max-width: 760px; margin-top: 20px; color: rgba(255,255,255,0.82); }
.privacy-content { max-width: 900px; padding-top: 62px; }
.privacy-content section { padding: 0 0 32px; margin-bottom: 32px; border-bottom: 1px solid var(--line); }
.privacy-content h2 { margin-bottom: 14px; font-size: 1.55rem; }
.privacy-content ul { padding-left: 1.4em; }
.privacy-contact { padding: 22px 26px; background: var(--white); border: 1px solid var(--line-gold); border-radius: 14px; }
.policy-date { text-align: right; color: var(--muted); }

@media (max-width: 1099px) {
  :root { --header-height: 74px; }
  .desktop-nav, .desktop-only { display: none !important; }
  .menu-toggle { display: flex; }
  .header-actions { margin-left: auto; }
  .header-logo { width: 220px; height: 58px; }
  .hero { min-height: auto; padding-top: 58px; }
  .hero-grid { grid-template-columns: 1fr 0.82fr; gap: 38px; }
  .hero-actions .text-link { flex-basis: 100%; margin-top: 4px; }
  .flow-list { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .flow-item:not(:last-child)::after { display: none; }
  .flow-item:nth-child(4) { grid-column: 1 / 2; margin-left: 50%; }
  .flow-item:nth-child(5) { grid-column: 2 / 3; margin-left: 50%; }
  .contact-methods { grid-template-columns: 1fr 1fr; }
  .contact-card-line { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1.1fr 0.9fr; }
  .footer-nav { grid-column: 1 / -1; grid-template-columns: repeat(4,minmax(0,1fr)); border-top: 1px solid rgba(255,255,255,0.18); padding-top: 24px; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .section { padding: 74px 0; }
  .hero-grid, .split-layout, .values-grid, .reasons-layout, .about-grid, .company-grid, .contact-heading { grid-template-columns: 1fr; }
  .hero-copy { max-width: 680px; }
  .hero-visual { max-width: 560px; margin: 8px auto 0; padding-right: 0; }
  .hero-photo-frame { margin: 0 auto; }
  .hero-note { right: 0; }
  .split-layout .image-panel { order: 2; }
  .image-panel-portrait { min-height: 520px; max-width: 500px; margin: 0 auto; }
  .check-grid { grid-template-columns: 1fr; }
  .values-copy { order: 1; }
  .values-grid .image-panel { order: 2; }
  .service-card-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .flow-list { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .flow-item:nth-child(4), .flow-item:nth-child(5) { grid-column: auto; margin-left: 0; }
  .flow-item:last-child { grid-column: 1 / -1; width: calc(50% - 8px); justify-self: center; }
  .tour-card { position: relative; top: auto; max-width: 520px; margin: 0 auto; }
  .section-about::before { width: 100%; height: 360px; bottom: auto; }
  .about-symbol { min-height: 300px; }
  .about-symbol img { width: 290px; }
  .contact-heading { gap: 20px; }
  .contact-intro { padding-left: 0; border-left: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .full-width { grid-column: auto; }
  .company-heading { position: relative; top: auto; }
  .company-decoration { max-height: 100px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-nav { grid-column: auto; grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 700px) {
  .reason-list { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  :root { --header-height: 68px; }
  body { font-size: 16px; line-height: 1.78; padding-bottom: 66px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 60px 0; }
  .section-heading { margin-bottom: 38px; }
  .header-logo { width: 190px; height: 54px; }
  .header-inner { gap: 8px; }
  .hero { padding: 46px 0 72px; }
  h1 { font-size: clamp(2rem,10.5vw,3rem); }
  .hero-title { font-size: clamp(1.82rem, 7.7vw, 2.15rem); line-height: 1.48; letter-spacing: 0.018em; }
  .contact-title { font-size: clamp(1.72rem, 7.1vw, 2.05rem); line-height: 1.55; }
  .responsive-title .title-line { white-space: normal; }
  h2 { font-size: clamp(1.75rem,8vw,2.45rem); }
  .hero-lead { margin-top: 24px; }
  .hero-text br { display: none; }
  .service-chips { gap: 7px; }
  .service-chips li { padding: 7px 12px; font-size: 0.82rem; }
  .hero-actions { display: grid; }
  .hero-actions .button, .hero-actions .text-link { width: 100%; }
  .hero-actions .text-link { min-height: 44px; display: flex; align-items: center; justify-content: center; }
  .assurance-list { display: grid; gap: 8px; }
  .hero-visual { padding-bottom: 80px; }
  .hero-photo-frame { padding: 8px; border-radius: 40% 40% 22px 22px / 14% 14% 22px 22px; }
  .hero-photo-frame img { border-radius: 39% 39% 16px 16px / 13% 13% 16px 16px; }
  .hero-note { right: 4px; left: 4px; bottom: 0; max-width: none; }
  .image-panel-portrait { min-height: 440px; border-radius: 150px 150px 18px 18px; }
  .image-panel-landscape { min-height: 310px; }
  .check-grid li { padding-right: 0; }
  .gentle-message { padding: 21px 20px; }
  .service-card { padding: 32px 24px 28px; }
  .flow-list { grid-template-columns: 1fr; }
  .flow-item:last-child { grid-column: auto; width: 100%; }
  .flow-item { text-align: left; display: grid; grid-template-columns: 84px 38px 1fr; grid-template-rows: auto auto; gap: 4px 12px; align-items: center; padding: 18px; }
  .flow-icon { grid-row: 1 / 3; width: 82px; height: 82px; margin: 0; }
  .flow-number { margin: 0; }
  .flow-item h3 { align-self: center; }
  .flow-item p { grid-column: 2 / 4; margin-top: 7px; padding-left: 2px; }
  .free-support-note { padding: 22px 18px; }
  .reason-list { grid-template-columns: 1fr; gap: 10px; }
  .reason-list li { min-height: 0; grid-template-columns: 28px minmax(0,1fr); gap: 11px; padding: 16px 16px; }
  .reason-mark { width: 25px; height: 25px; }
  .reason-copy { gap: 2px; }
  .reason-copy strong { font-size: 0.98rem; }
  .reason-copy > span { font-size: 0.9rem; }
  .about-symbol { min-height: 260px; }
  .name-story { padding: 24px 20px; }
  .faq-list summary { padding: 17px 54px 17px 57px; }
  .faq-list summary::before { left: 15px; }
  .faq-list summary::after { right: 17px; }
  .faq-answer { padding: 18px 18px 20px 57px; }
  .faq-answer::before { left: 18px; }
  .contact-methods { grid-template-columns: 1fr; }
  .contact-card-line { grid-column: auto; }
  .contact-card { padding: 27px 22px; }
  .form-panel { padding: 28px 20px; }
  .choice-row { display: grid; gap: 12px; }
  .company-details dl > div { grid-template-columns: 1fr; }
  .company-details dt { padding-bottom: 8px; }
  .company-details dd { padding-top: 8px; }
  .footer-brand img { width: 330px; margin-left: -18px; }
  .footer-nav { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .mobile-fixed-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 990; display: grid; grid-template-columns: 0.9fr 1.1fr; min-height: 66px; padding-bottom: env(safe-area-inset-bottom); box-shadow: 0 -7px 24px rgba(22,59,45,0.18); }
  .mobile-fixed-cta a { display: flex; min-height: 66px; align-items: center; justify-content: center; padding: 10px; color: var(--white); font-weight: 700; text-decoration: none; }
  .fixed-phone { background: var(--green); }
  .fixed-line { background: #16833f; }
  .privacy-main { padding-bottom: 30px; }
  .privacy-hero { padding: 60px 0 45px; }
  .privacy-content { padding-top: 42px; }
  .privacy-content h2 { font-size: 1.35rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Mobile Japanese typesetting refinement: desktop appearance remains unchanged. */
.title-mobile { display: none; }

@media (max-width: 600px) {
  /* Keep Japanese phrases readable instead of allowing awkward single-character wraps. */
  main p,
  main li,
  main dd,
  main summary,
  main h3 {
    line-break: strict;
    word-break: auto-phrase;
    overflow-wrap: normal;
    text-wrap: pretty;
  }

  .title-desktop { display: none !important; }
  .title-mobile { display: block; }
  .title-mobile > span { color: var(--gold-deep); }

  .hero-title {
    font-size: clamp(1.68rem, 7vw, 1.92rem);
    line-height: 1.62;
    letter-spacing: 0.012em;
    text-wrap: nowrap;
  }

  .contact-title,
  .mobile-composed-title {
    font-size: clamp(1.58rem, 6.35vw, 1.82rem);
    line-height: 1.68;
    letter-spacing: 0.018em;
    text-wrap: balance;
  }

  .mobile-composed-title .title-mobile,
  .contact-title .title-mobile {
    width: 100%;
  }

  /* 悩み見出しはスマホ縦画面でも意味のまとまりを2行で保つ。 */
  #worries-title {
    font-size: clamp(1.34rem, 5.9vw, 1.72rem);
    letter-spacing: 0.006em;
  }

  #worries-title .worries-mobile-line {
    display: block;
    white-space: nowrap;
  }

  #worries-title .worries-mobile-line-first {
    color: var(--green-deep);
  }

  .hero-lead,
  .lead-serif {
    line-break: strict;
    word-break: auto-phrase;
    text-wrap: pretty;
  }

  .hero-lead { font-size: 1.04rem; line-height: 1.9; }
  .hero-text { font-size: 0.98rem; line-height: 1.9; }

  .service-card h3,
  .flow-item h3,
  .tour-card h3,
  .contact-card h3,
  .name-story h3 {
    font-size: 1.18rem;
    line-height: 1.58;
    letter-spacing: 0.025em;
  }

  .service-card p,
  .flow-item p,
  .reason-copy > span,
  .contact-card p,
  .name-story p,
  .company-details dd,
  .faq-list summary,
  .faq-answer {
    line-height: 1.85;
  }

  /* Slightly more usable text width without changing the desktop composition. */
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section-heading { max-width: 100%; }

  /* Prevent the fixed CTA from visually covering the final line of cards/forms. */
  .section-contact,
  .section-company,
  .site-footer { scroll-margin-bottom: 86px; }
}

@media (max-width: 767px) {
  /* スマホ縦画面でも見出しの役割を揃える */
  .heading-align-center,
  .heading-align-center .eyebrow,
  .heading-align-center h1,
  .heading-align-center h2,
  .heading-align-center h3 { text-align: center; }

  .heading-align-left,
  .heading-align-left .eyebrow,
  .heading-align-left h1,
  .heading-align-left h2,
  .heading-align-left h3 { text-align: left; }
}

/* v7: コピーの意味を優先し、スマホ縦画面では自然な2行・3行を使い分ける */
@media (max-width: 600px) {
  #values-title,
  #services-title,
  #flow-title,
  #reasons-title,
  #faq-title {
    /* 375〜430pxでは約22〜25px。狭い端末では自動的に縮小する。 */
    font-size: clamp(1.16rem, 5.8vw, 1.58rem);
    line-height: 1.66;
    letter-spacing: 0.006em;
    text-wrap: nowrap;
  }

  .mobile-title-line {
    display: block;
    width: 100%;
    white-space: nowrap;
  }

  .mobile-title-line.mobile-title-main {
    color: inherit !important;
  }

  .mobile-title-line.mobile-title-accent {
    color: var(--gold-deep) !important;
  }

  .light-heading .mobile-title-line.mobile-title-main {
    color: var(--white) !important;
  }

  .light-heading .mobile-title-line.mobile-title-accent {
    color: #e4c988 !important;
  }
}

/* v8: スマホ縦画面の相談写真を、元画像の4:3比率のまま最後まで表示する。
   PC・タブレットのレイアウトには影響させない。 */
@media (max-width: 600px) {
  .values-grid .image-panel-landscape {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .values-grid .image-panel-landscape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

/* v9: PCの「お悩み」写真枠を実寸の高さで確定し、
   min-heightだけでは埋まらなかった下部の背景色を解消する。
   スマホ縦画面のレイアウトには影響させない。 */
@media (min-width: 821px) {
  .section-worries .image-panel-portrait {
    height: 650px;
    min-height: 650px;
  }

  .section-worries .image-panel-portrait img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

/* V10 contact icons */
.contact-icon {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
  display: inline-block;
  color: currentColor;
  vertical-align: -0.2em;
}
.icon-line { width: 1.32em; height: 1.32em; }
.button .contact-icon { width: 1.18em; height: 1.18em; }
.button-line .icon-line { color: #fff; }
.button-phone .icon-phone,
.button-outline .icon-phone { color: var(--green-deep); }
.contact-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-card-title .contact-icon {
  width: 1.35em;
  height: 1.35em;
}
.contact-card-line .contact-card-title .contact-icon { color: #fff; }
.contact-card:not(.contact-card-line) .contact-card-title .contact-icon { color: var(--green-deep); }
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-contact .contact-icon { width: 1.05em; height: 1.05em; }
.mobile-fixed-cta a { gap: 8px; }
.mobile-fixed-cta .contact-icon { width: 1.18em; height: 1.18em; }

@media (max-width: 760px) {
  .mobile-fixed-cta a { gap: 7px; padding-inline: 8px; }
  .mobile-fixed-cta .contact-icon { width: 1.1em; height: 1.1em; }
  .mobile-fixed-cta span { white-space: nowrap; }
}
