:root {
  --paper: #ffffff;
  --cream: #fff8ef;
  --cream-2: #ffefd8;
  --orange: #f28a16;
  --orange-deep: #a84f00;
  --green: #56866b;
  --ink: #39342f;
  --muted: #70675f;
  --line: #edddca;
  --dark: #2f3531;
  --max: 1080px;
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 3px solid var(--orange-deep); outline-offset: 4px; border-radius: 6px; }
.skip { position: absolute; left: -9999px; top: 0; }
.skip:focus { left: 12px; top: 12px; z-index: 999; background: #fff; padding: .65rem 1rem; }
.wrap { width: min(var(--max), calc(100% - 44px)); margin: 0 auto; }
.narrow { max-width: 800px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.header-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand { margin-right: auto; }
.brand img { width: 226px; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a { padding: .55rem .72rem; text-decoration: none; font-size: .88rem; font-weight: 700; border-radius: 999px; }
.nav a:hover { background: var(--cream); color: var(--orange-deep); }
.header-phone { text-decoration: none; text-align: right; line-height: 1.35; }
.header-phone span { display: block; font-size: 1.08rem; font-weight: 800; }
.header-phone span::before { content: "☎ "; color: var(--orange); }
.header-phone small { color: var(--muted); font-size: .7rem; }
.menu-button { display: none; border: 0; background: var(--orange); padding: .55rem .8rem; border-radius: 999px; font-weight: 800; cursor: pointer; }

.hero { background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); padding: 76px 0 88px; overflow: hidden; }
.hero-inner { width: min(1180px, calc(100% - 44px)); margin: 0 auto; display: grid; grid-template-columns: .92fr 1.08fr; gap: 54px; align-items: center; }
.eyebrow, .section-label { margin: 0 0 12px; color: var(--orange-deep); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
h1, h2, h3, .price-time, .profile-name { font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif; }
h1 { margin: 0 0 22px; font-size: clamp(2rem, 4.8vw, 3.5rem); line-height: 1.42; letter-spacing: .02em; }
h1 em { color: var(--orange-deep); font-style: normal; }
.hero-lead { margin: 0 0 24px; color: var(--muted); font-size: 1.02rem; max-width: 36em; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 30px; }
.chips span { background: #fff; color: var(--muted); border: 1.5px solid var(--line); border-radius: 999px; padding: .35rem .85rem; font-size: .78rem; font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: .7rem 1.45rem; border-radius: 999px; text-decoration: none; font-weight: 800; transition: transform .18s ease, filter .18s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--orange); color: #2c251d; }
.button.secondary { background: #fff; border: 2px solid var(--ink); }
.hero-visual { margin: 0; position: relative; }
.hero-visual img { width: 100%; min-height: 370px; object-fit: cover; border-radius: 46% 54% 18px 18px; box-shadow: 0 22px 50px rgba(74,58,41,.14); }
.hero-visual figcaption { position: absolute; right: 18px; bottom: 18px; background: rgba(255,255,255,.94); border: 1px solid var(--line); padding: .5rem .85rem; border-radius: 999px; font-size: .76rem; font-weight: 700; }

.section { padding: 88px 0; }
.section.soft { background: var(--cream); }
.section.dark { background: var(--dark); color: #fff; }
.section-heading { margin-bottom: 38px; }
h2 { margin: 0; font-size: clamp(1.65rem, 3vw, 2.35rem); line-height: 1.55; }
.intro { text-align: center; }
.intro p:last-child { margin: 24px auto 0; color: var(--muted); font-size: 1.02rem; }
.card-grid { display: grid; gap: 20px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.support-card { background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: 0 10px 28px rgba(137,94,43,.06); }
.support-card .number { display: inline-flex; width: 2.7rem; height: 2.7rem; align-items: center; justify-content: center; background: var(--cream-2); color: var(--orange-deep); border-radius: 50%; font-weight: 900; }
.support-card h3 { margin: 20px 0 12px; font-size: 1.22rem; line-height: 1.55; }
.support-card p { margin: 0; color: var(--muted); font-size: .92rem; }

.consultation-intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: start; margin-bottom: 40px; }
.consultation-intro > p { margin: 0; color: var(--muted); }
.service-split { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 0 0 34px; }
.service-split article { border: 1.5px solid var(--line); border-radius: 18px; padding: 24px 26px; background: #fff; }
.service-split h3 { margin: 8px 0 8px; font-size: 1.08rem; }
.service-split article > p:last-child { margin: 0; color: var(--muted); font-size: .88rem; }
.service-type { display: inline-block; margin: 0; padding: .15rem .7rem; border-radius: 999px; background: #e5f1e9; color: #315d43; font-size: .75rem; font-weight: 900; }
.service-type.paid { background: var(--cream-2); color: var(--orange-deep); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card { position: relative; background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); padding: 28px; text-align: center; }
.price-card.featured { border: 2px solid var(--orange); box-shadow: 0 16px 38px rgba(228,119,0,.12); }
.recommend { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); margin: 0; background: var(--orange); border-radius: 999px; padding: .25rem .85rem; font-size: .72rem; font-weight: 900; white-space: nowrap; }
.price-name { margin: 0; font-size: .88rem; color: var(--muted); font-weight: 800; }
.price-time { margin: .4rem 0 0; font-size: 2.2rem; font-weight: 900; line-height: 1.3; }
.price-time span { font-size: .9rem; margin-left: .15rem; }
.price { margin: .4rem 0 .8rem; }
.price strong { font-size: 1.65rem; color: var(--orange-deep); }
.price small { color: var(--muted); }
.price-card > p:last-child { color: var(--muted); font-size: .86rem; }
.rules { margin-top: 28px; padding: 30px 32px; background: var(--cream); border: 1.5px solid var(--line); border-radius: var(--radius); }
.rules h3 { margin: 0 0 10px; font-size: 1.08rem; }
.rules ul { margin: 0; padding-left: 1.25rem; }
.rules li { margin: .3rem 0; color: var(--muted); font-size: .9rem; }
.note { color: var(--muted); font-size: .8rem; }
.text-link { color: var(--orange-deep); font-weight: 800; }

.dark .section-label { color: #ffd39c; }
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.steps li { border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); padding: 24px; background: rgba(255,255,255,.05); }
.steps span { display: inline-flex; width: 2.5rem; height: 2.5rem; align-items: center; justify-content: center; border-radius: 50%; background: var(--orange); color: var(--ink); font-weight: 900; }
.steps h3 { margin: 16px 0 8px; font-size: 1.08rem; }
.steps p { margin: 0; color: #d6ddd8; font-size: .86rem; }

.profile-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; align-items: start; }
.profile-name { margin: 25px 0 2px; font-size: 2rem; font-weight: 900; }
.profile-role { margin: 0; color: var(--green); font-weight: 800; }
.profile-copy { border-left: 3px solid var(--orange); padding-left: 34px; }
.profile-copy p { margin: 0 0 1rem; color: var(--muted); }
.profile-photo { min-height: 220px; display: grid; place-items: center; margin-top: 24px; padding: 28px; color: var(--muted); background: var(--cream); border: 1.5px solid var(--line); border-radius: var(--radius); text-align: center; }
.profile-photo span { display: block; font-size: .82rem; }
.faq { background: #fff; border: 1.5px solid var(--line); border-radius: 16px; padding: 0 22px; margin-bottom: 12px; }
.faq summary { cursor: pointer; padding: 20px 36px 20px 0; font-weight: 800; position: relative; }
.faq summary::after { content: "+"; position: absolute; right: 0; color: var(--orange-deep); font-size: 1.5rem; }
.faq[open] summary::after { content: "−"; }
.faq p { margin: 0; padding: 0 0 20px; color: var(--muted); }

.company-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: start; }
.company-list { margin: 28px 0 0; border-top: 1px solid var(--line); }
.company-list div { display: grid; grid-template-columns: 8rem 1fr; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.company-list dt { font-weight: 800; }
.company-list dd { margin: 0; color: var(--muted); }
.company-list small { font-size: .8rem; }
.move-notice { margin: 22px 0 0; padding: 14px 16px; background: var(--cream); border-left: 4px solid var(--orange); color: var(--muted); font-size: .88rem; }
.access-card { background: var(--cream); border: 1.5px solid var(--line); border-radius: var(--radius); padding: 36px; }
.access-mark { margin: 0; color: var(--orange-deep); font-size: 2.8rem; line-height: 1; }
.access-card h3 { margin: 16px 0 8px; font-size: 1.35rem; }
.access-card p { color: var(--muted); }
.access-card .small { font-size: .82rem; }

.contact-band { background: var(--cream-2); padding: 72px 0; }
.contact-inner { display: grid; grid-template-columns: 1.12fr .88fr; gap: 50px; align-items: center; }
.contact-inner h2 { margin-bottom: 14px; }
.contact-inner p:last-child { color: var(--muted); font-size: .88rem; }
.contact-actions { display: flex; flex-direction: column; gap: 14px; align-items: stretch; }
.contact-phone { text-decoration: none; background: #fff; border: 1.5px solid var(--line); border-radius: 18px; padding: 15px 20px; text-align: center; font-size: 1.55rem; font-weight: 900; line-height: 1.35; }
.contact-phone::before { content: "☎ "; color: var(--orange); }
.contact-phone small { display: block; font-size: .72rem; color: var(--muted); font-weight: 600; }

.site-footer { background: #fff; border-top: 1px solid var(--line); padding: 50px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.footer-grid img { width: 220px; }
.footer-grid address { margin-top: 16px; font-style: normal; color: var(--muted); font-size: .85rem; }
.footer-grid nav { display: flex; justify-content: flex-end; gap: 20px; flex-wrap: wrap; align-content: start; }
.footer-grid nav a { text-decoration: none; font-size: .86rem; font-weight: 700; }
.copyright { width: min(var(--max), calc(100% - 44px)); margin: 34px auto 0; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: .75rem; }

.page-hero { padding: 66px 0 56px; background: linear-gradient(180deg, #fff, var(--cream)); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.7rem); margin-bottom: 10px; }
.page-hero p:last-child { color: var(--muted); }
.prose { max-width: 820px; overflow-wrap: anywhere; }
.prose h2 { margin: 2.2rem 0 .8rem; font-size: 1.3rem; }
.prose h3 { margin: 1.8rem 0 .6rem; font-size: 1.06rem; }
.prose p, .prose li { color: #514a44; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.prose th, .prose td { padding: 14px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.prose th { width: 12rem; background: var(--cream); }
.signature { margin-left: auto; max-width: 18rem; text-align: left; }
.info-box, .notice-box { margin: 2rem 0; padding: 22px 24px; background: var(--cream); border: 1.5px solid var(--line); border-radius: 16px; }
.info-box p, .notice-box p { margin: .35rem 0; }
.notice-box { border-color: #d58b34; }
.notice-box > strong { color: var(--orange-deep); }
.inline-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 2rem 0 1rem; }
.preparing { display: inline-block; padding: .6rem 1rem; background: var(--cream-2); border: 1px solid var(--line); border-radius: 999px; color: var(--orange-deep); font-weight: 800; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 22px; }
.form-field { display: grid; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label, .check-field { font-weight: 800; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: .8rem .9rem; color: var(--ink); background: #fff; border: 1.5px solid var(--line); border-radius: 10px; }
.form-field textarea { min-height: 150px; resize: vertical; }
.check-field { display: flex; gap: 10px; align-items: flex-start; margin: 20px 0; }
.check-field input { margin-top: .5rem; }
.honeypot { position: absolute; left: -9999px; }
.form-status { margin: 0 0 24px; padding: 16px 18px; border-radius: 12px; font-weight: 700; }
.form-status.success { background: #e5f1e9; color: #315d43; }
.form-status.error { background: #fff1ed; color: #8b2c18; }
.service-card-actions { margin-top: 20px; }
.error-page { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px 22px; text-align: center; background: var(--cream); }
.error-page img { width: 230px; margin-bottom: 48px; }
.error-page h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); }
.error-page .button { margin-top: 20px; }

.reveal { transition: opacity .65s ease, transform .65s ease; }
.js .reveal { opacity: 0; transform: translateY(14px); }
.reveal.in { opacity: 1; transform: none; }

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

@media (max-width: 960px) {
  .header-phone { display: none; }
  .menu-button { display: block; }
  .nav { display: none; position: fixed; top: 78px; left: 0; right: 0; padding: 12px 22px 22px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 16px 28px rgba(57,52,47,.1); }
  .nav.open { display: grid; }
  .nav a { border-bottom: 1px dashed var(--line); border-radius: 0; padding: .8rem .2rem; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 780px; }
  .consultation-intro, .profile-grid, .company-grid, .contact-inner { grid-template-columns: 1fr; gap: 34px; }
  .steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 68px 0; }
  .hero { padding: 54px 0 68px; }
  .hero-inner { width: min(100% - 36px, 1180px); gap: 38px; }
  .hero-visual img { min-height: 260px; border-radius: 26px; }
  .hero-visual figcaption { display: none; }
  .card-grid.three, .card-grid.two, .price-grid, .service-split { grid-template-columns: 1fr; }
  .price-card.featured { margin-top: 6px; }
  .profile-copy { border-left: 0; border-top: 3px solid var(--orange); padding: 24px 0 0; }
  .company-list div { grid-template-columns: 1fr; gap: 4px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid nav { justify-content: flex-start; }
  .prose table { display: block; max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .prose th { min-width: 8rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
}

@media (max-width: 520px) {
  .header-inner { width: calc(100% - 28px); min-height: 70px; }
  .brand img { width: 190px; }
  .nav { top: 70px; }
  .steps { grid-template-columns: 1fr; }
  .rules, .access-card { padding: 24px 22px; }
  .button { width: 100%; }
}
