/* ===== Font import ===== */
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;700&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

/* ===== Reset & base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.9;
  color: #2C2C2C;
  background: #FAF8F3;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.sp-only { display: none; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 243, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #E8E4DA;
}
.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid #3D5D4D;
  border-radius: 50%;
  color: #3D5D4D;
  font-family: 'Shippori Mincho', serif;
  font-size: 1.1rem;
  font-weight: 700;
}
.logo-text {
  font-family: 'Shippori Mincho', serif;
  font-size: 0.95rem;
  color: #2C2C2C;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.nav { display: flex; align-items: center; gap: 22px; font-size: 0.9rem; }
.nav a { transition: color .2s; }
.nav a:hover { color: #3D5D4D; }
.nav-cta {
  background: #3D5D4D;
  color: #FFFFFF !important;
  padding: 8px 18px;
  border-radius: 4px;
}
.nav-cta:hover { background: #2F4A3D; color: #FFFFFF; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #FFFFFF;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3D5D4D 0%, #2C4438 50%, #1F2F26 100%);
  background-image:
    url('./assets/hero-bg.jpg'),
    linear-gradient(135deg, #3D5D4D 0%, #2C4438 50%, #1F2F26 100%);
  background-size: cover, cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 47, 38, 0.7) 0%, rgba(44, 68, 56, 0.55) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  padding: 100px 32px;
  text-align: center;
}
.hero-eyebrow {
  font-size: 0.92rem;
  letter-spacing: 0.2em;
  margin-bottom: 28px;
  opacity: 0.92;
}
.hero-title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.65;
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}
.hero-sub {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 40px;
  opacity: 0.95;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 500;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  border-radius: 4px;
  transition: all .2s;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: #FAF8F3;
  color: #2C4438;
  border-color: #FAF8F3;
}
.btn-primary:hover {
  background: transparent;
  color: #FAF8F3;
  border-color: #FAF8F3;
}
.btn-ghost {
  background: transparent;
  color: #FAF8F3;
  border-color: #FAF8F3;
}
.btn-ghost:hover {
  background: #FAF8F3;
  color: #2C4438;
}
.hero-foot {
  font-size: 0.85rem;
  opacity: 0.8;
  letter-spacing: 0.05em;
}

/* ===== Section common ===== */
.section-label {
  font-size: 0.82rem;
  letter-spacing: 0.25em;
  color: #3D5D4D;
  text-align: center;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.section-title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  text-align: center;
  color: #2C2C2C;
  margin-bottom: 56px;
  letter-spacing: 0.04em;
  line-height: 1.55;
}

/* ===== Worries ===== */
.worries { padding: 100px 0; background: #FFFFFF; }
.worries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.worry {
  background: #FAF8F3;
  border-left: 3px solid #3D5D4D;
  padding: 28px 24px;
}
.worry-text {
  font-size: 0.98rem;
  line-height: 1.85;
  color: #2C2C2C;
}
.worries-message {
  text-align: center;
  font-size: 1.05rem;
  line-height: 2;
  color: #4A4A4A;
  font-family: 'Shippori Mincho', serif;
}

/* ===== Visual band (consultation scene) ===== */
.visual-band {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}
.visual-band-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #5B5040 0%, #3D3528 100%);
  background-image:
    url('./assets/consultation-scene.jpg'),
    linear-gradient(135deg, #5B5040 0%, #3D3528 100%);
  background-size: cover, cover;
  background-position: center;
  filter: brightness(0.85);
}
.visual-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 47, 38, 0.45) 0%, rgba(31, 47, 38, 0.65) 100%);
}
.visual-band-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 32px;
  max-width: 960px;
}
.visual-band-label {
  font-family: 'Shippori Mincho', serif;
  font-size: 0.88rem;
  letter-spacing: 0.25em;
  color: #C9B181;
  margin-bottom: 24px;
}
.visual-band-quote {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.3rem, 2.6vw, 1.95rem);
  color: #FAF8F3;
  letter-spacing: 0.08em;
  line-height: 1.7;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  margin-bottom: 28px;
}
.visual-band-note {
  font-size: 0.92rem;
  color: rgba(250, 248, 243, 0.92);
  line-height: 2;
  letter-spacing: 0.05em;
}

/* ===== About ===== */
.about { padding: 100px 0; background: #FAF8F3; }
.about-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}
.about-photo {
  text-align: center;
  position: sticky;
  top: 100px;
}
.profile-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #E8E4DA;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 14px 32px rgba(31, 47, 38, 0.12);
}
.profile-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 0;
  background: linear-gradient(180deg, #E8E4DA 0%, #D5CFC0 100%);
  color: #8B8170;
}
.profile-placeholder-icon {
  font-family: 'Shippori Mincho', serif;
  font-size: 5rem;
  font-weight: 400;
  margin-bottom: 12px;
  opacity: 0.55;
}
.profile-placeholder-note {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  opacity: 0.7;
}
.profile-caption {
  margin-top: 16px;
  font-family: 'Shippori Mincho', serif;
  font-size: 1rem;
  color: #2C2C2C;
  letter-spacing: 0.1em;
}
.about-text { padding-top: 8px; }
.about-text .section-label { text-align: left; }
.about-text .section-title {
  text-align: left;
  margin-bottom: 36px;
}
.about-para {
  margin-bottom: 22px;
  font-size: 1rem;
  color: #3A3A3A;
}
.about-credentials,
.about-promise {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #E8E4DA;
}
.about-credentials h3,
.about-promise h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.15rem;
  color: #3D5D4D;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}
.about-credentials ul li {
  padding: 8px 0 8px 20px;
  position: relative;
  font-size: 0.95rem;
  border-bottom: 1px dotted #D5CFC0;
}
.about-credentials ul li:last-child { border-bottom: none; }
.about-credentials ul li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: #3D5D4D;
}
.about-promise ol {
  counter-reset: promise-counter;
}
.about-promise ol li {
  counter-increment: promise-counter;
  padding: 12px 0 12px 36px;
  position: relative;
  font-size: 0.96rem;
  line-height: 1.85;
}
.about-promise ol li::before {
  content: counter(promise-counter);
  position: absolute;
  left: 0;
  top: 12px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3D5D4D;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 700;
}

/* ===== Services ===== */
.services { padding: 100px 0; background: #FFFFFF; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 32px;
}
.service-card {
  background: #FAF8F3;
  border: 1px solid #E8E4DA;
  border-radius: 4px;
  padding: 36px 32px;
  position: relative;
}
.service-card-urgent {
  background: #FFFFFF;
  border: 2px solid #3D5D4D;
}
.service-num {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.3rem;
  color: #C9B181;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.service-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  padding: 3px 10px;
  background: #3D5D4D;
  color: #FFFFFF;
  margin-bottom: 14px;
  border-radius: 2px;
}
.service-card-urgent .service-tag {
  background: #8B3A28;
}
.service-name {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.35rem;
  color: #2C2C2C;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.service-price {
  font-weight: 700;
  color: #3D5D4D;
  margin-bottom: 18px;
  padding: 10px 14px;
  background: #FFFFFF;
  border-left: 3px solid #3D5D4D;
  font-size: 1.02rem;
}
.service-price small {
  display: block;
  font-weight: 400;
  font-size: 0.82rem;
  color: #66716D;
  margin-top: 4px;
}
.service-desc {
  font-size: 0.95rem;
  margin-bottom: 18px;
  color: #3A3A3A;
}
.service-list li {
  padding: 6px 0 6px 16px;
  position: relative;
  font-size: 0.9rem;
  color: #4A4A4A;
  border-bottom: 1px dotted #D5CFC0;
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #3D5D4D;
  font-weight: 700;
  font-size: 0.85rem;
}
.services-note {
  text-align: center;
  font-size: 0.85rem;
  color: #66716D;
  line-height: 1.85;
}

/* ===== Flow ===== */
.flow { padding: 100px 0; background: #FAF8F3; }
.flow-steps {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.flow-steps::before {
  content: '';
  position: absolute;
  left: 26px;
  top: 30px;
  bottom: 30px;
  width: 1px;
  background: #C9B181;
}
.flow-step {
  display: flex;
  gap: 28px;
  padding: 22px 0;
  position: relative;
}
.flow-num {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #3D5D4D;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Shippori Mincho', serif;
  font-size: 1.4rem;
  font-weight: 500;
  box-shadow: 0 6px 12px rgba(31, 47, 38, 0.15);
}
.flow-body {
  padding-top: 6px;
}
.flow-body h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.2rem;
  color: #2C2C2C;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.flow-body p {
  font-size: 0.96rem;
  color: #3A3A3A;
}
.flow-body strong {
  color: #3D5D4D;
  font-weight: 700;
}

/* ===== Voice ===== */
.voice {
  padding: 100px 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
    url('./assets/voice-bg.jpg') center/cover,
    #FFFFFF;
}
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.voice-card {
  background: #FAF8F3;
  padding: 32px 28px;
  border-radius: 4px;
  position: relative;
}
.voice-card::before {
  content: '"';
  position: absolute;
  top: 4px;
  left: 16px;
  font-family: 'Shippori Mincho', serif;
  font-size: 3.5rem;
  color: #C9B181;
  line-height: 1;
  opacity: 0.6;
}
.voice-quote {
  font-size: 0.95rem;
  line-height: 1.95;
  color: #2C2C2C;
  margin-bottom: 18px;
  padding-top: 16px;
}
.voice-meta {
  font-size: 0.82rem;
  color: #66716D;
  border-top: 1px solid #E8E4DA;
  padding-top: 14px;
  letter-spacing: 0.04em;
}

/* ===== FAQ ===== */
.faq { padding: 100px 0; background: #FAF8F3; }
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  background: #FFFFFF;
  border: 1px solid #E8E4DA;
  border-radius: 4px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] {
  border-color: #3D5D4D;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: #FAF8F3; }
.faq-q {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.05rem;
  color: #2C2C2C;
  flex: 1;
  letter-spacing: 0.03em;
  line-height: 1.6;
}
.faq-q::before {
  content: 'Q.';
  display: inline-block;
  margin-right: 12px;
  color: #3D5D4D;
  font-weight: 700;
  font-size: 1.1rem;
}
.faq-arrow {
  flex-shrink: 0;
  color: #3D5D4D;
  font-size: 1.6rem;
  font-weight: 300;
  transition: transform .25s;
  line-height: 1;
}
.faq-item[open] .faq-arrow {
  transform: rotate(45deg);
}
.faq-a {
  padding: 0 24px 22px 24px;
}
.faq-a p {
  color: #4A4A4A;
  font-size: 0.95rem;
  line-height: 1.95;
  padding-top: 18px;
  border-top: 1px dashed #E8E4DA;
  position: relative;
  padding-left: 28px;
}
.faq-a p::before {
  content: 'A.';
  position: absolute;
  left: 0;
  top: 18px;
  color: #C9B181;
  font-weight: 700;
  font-size: 1.05rem;
}
.faq-a p strong {
  color: #3D5D4D;
  font-weight: 700;
}

/* ===== Contact ===== */
.contact { padding: 100px 0; background: #3D5D4D; color: #FAF8F3; }
.contact .section-label { color: #C9B181; }
.contact .section-title { color: #FFFFFF; }
.contact-lead {
  text-align: center;
  margin-bottom: 48px;
  opacity: 0.95;
  line-height: 2;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.contact-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  padding: 32px 22px;
  text-align: center;
  transition: background .2s, transform .2s;
}
.contact-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}
.contact-icon {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.contact-label {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  opacity: 0.85;
  margin-bottom: 8px;
}
.contact-value {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.contact-note {
  font-size: 0.8rem;
  opacity: 0.75;
}
.contact-promise {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.85;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.contact-promise p {
  margin: 4px 0;
}

/* ===== Footer ===== */
.site-footer {
  background: #1F2F26;
  color: #C9B181;
  padding: 40px 0;
  font-size: 0.85rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.1rem;
  color: #FAF8F3;
  margin-bottom: 6px;
  letter-spacing: 0.08em;
}
.footer-tag {
  opacity: 0.85;
  margin-bottom: 4px;
}
.footer-addr { opacity: 0.7; font-size: 0.82rem; }
.footer-copy { opacity: 0.65; font-size: 0.78rem; }

/* ===== Floating call (mobile) ===== */
.floating-call {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 100;
  background: #3D5D4D;
  color: #FFFFFF;
  padding: 16px 24px;
  border-radius: 4px;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 24px rgba(31, 47, 38, 0.35);
}

/* ===== Responsive ===== */
@media (max-width: 820px) {
  .sp-only { display: inline; }
  .nav { display: none; }
  .hero { min-height: 70vh; }
  .hero-inner { padding: 80px 24px; }
  .worries-grid,
  .service-grid,
  .voice-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-photo {
    position: static;
    max-width: 260px;
    margin: 0 auto;
  }
  .about-text .section-title,
  .about-text .section-label {
    text-align: center;
  }
  .floating-call { display: block; }
  body { padding-bottom: 80px; }
  .hero-cta .btn { width: 100%; max-width: 320px; text-align: center; }
}
@media (max-width: 480px) {
  .header-inner { padding: 12px 16px; }
  .logo-text { font-size: 0.88rem; }
  .container { padding: 0 20px; }
  .worries-grid { grid-template-columns: 1fr; }
  .voice-card { padding: 28px 22px; }
  .service-card { padding: 28px 22px; }
}
