﻿:root {
  --ink: #2f3658;
  --muted: #68738a;
  --line: #dce2e5;
  --paper: #f8f3ec;
  --white: #ffffff;
  --red: #3d4098;
  --red-dark: #333783;
  --green: #5f7280;
  --green-soft: #f4f6f7;
  --gold: #b8975a;
  --shadow: 0 18px 42px rgba(61, 64, 152, 0.14);
  --soft: #f4f6f7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.85;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(248, 243, 236, 0.94);
  border-bottom: 1px solid rgba(220, 226, 229, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 112px;
}

.brand img {
  width: 88px;
  height: auto;
}

.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--white);
  background: var(--red);
  border-radius: 10px;
  font-weight: 800;
}

.hero {
  min-height: auto;
  padding: 0 0 54px;
  background: var(--paper);
}

.hero-visual {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(560px, 72vh, 760px);
  display: grid;
  align-items: center;
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 72px);
  background: var(--paper);
  border-bottom: 1px solid rgba(220, 226, 229, 0.9);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: transparent;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
  filter: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  text-shadow: 0 2px 18px rgba(255, 255, 255, 0.95), 0 1px 3px rgba(255, 255, 255, 0.85);
}

.hero-copy .eyebrow {
  color: #1f2f3a;
  font-size: 15px;
  font-weight: 900;
  text-shadow: 0 2px 14px rgba(255, 255, 255, 0.95), 0 1px 4px rgba(255, 255, 255, 0.9);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(30px, 4.1vw, 52px);
  line-height: 1.18;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.35;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.45;
  letter-spacing: 0;
}

.lead {
  max-width: 760px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: 18px;
}

.hero-copy .lead {
  color: #2f3658;
  font-weight: 700;
  text-shadow: 0 2px 16px rgba(255, 255, 255, 0.96), 0 1px 4px rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 34px;
}

.primary-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  color: var(--white);
  background: var(--red);
  border: 0;
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(61, 64, 152, 0.22);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.secondary-link {
  color: var(--red-dark);
  font-weight: 800;
  border-bottom: 2px solid var(--gold);
}

.hero-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}

.hero-notes div {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  backdrop-filter: blur(4px);
}

.hero-notes dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.hero-notes dd {
  margin: 0;
  font-weight: 800;
}

.section {
  padding: 88px clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 1120px;
  margin: 0 auto 34px;
}

.section-heading.centered {
  text-align: center;
}

.about-card,
.value-list,
.voice-grid,
.profile-grid,
.news-list,
.reason-list,
.price-list,
.flow-list,
.faq-list,
.worry-panel,
.second-panel,
.consultation-list,
.consultation-note,
.cta-section {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.about-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: center;
  overflow: hidden;
}

.about-card,
.profile-panel,
.value-card,
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.about-card > div {
  padding: clamp(26px, 4vw, 44px);
}

.about-card > img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: 62% 30%;
}

.about-card p:last-child {
  margin-bottom: 0;
}

.worries {
  background: var(--white);
}

.worry-panel,
.second-panel {
  padding: clamp(26px, 4vw, 44px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(61, 64, 152, 0.08);
}

.worry-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.worry-list li {
  padding: 14px 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.7;
}

.worry-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  background: var(--gold);
  border-radius: 2px;
  vertical-align: 0.1em;
}

.worry-panel > p {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  text-align: center;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.section-cta.left {
  justify-content: flex-start;
}

.diagnosis {
  background: var(--paper);
}

.diagnosis .section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 12px auto 0;
  color: var(--muted);
}

.diagnosis-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(760px, 100%);
  margin: 0 auto;
}

.diagnosis-list a {
  display: grid;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(61, 64, 152, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.diagnosis-list a:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(61, 64, 152, 0.12);
}

.diagnosis-list img {
  width: 100%;
  height: auto;
}

.diagnosis-list span {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: var(--red-dark);
  font-weight: 800;
}

.external-note {
  width: min(760px, 100%);
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.profile-panel {
  overflow: hidden;
}

.profile-panel img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center 18%;
}

.profile-panel img.advisor-speaking {
  object-position: 62% 30%;
}

.profile-panel div {
  padding: 26px;
}

.profile-title {
  margin-bottom: 10px;
  color: var(--gold);
  font-weight: 800;
}

.profile {
  background: #fff;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.counselor-card,
.salon-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(61, 64, 152, 0.08);
}

.counselor-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  align-items: stretch;
}

.counselor-card > img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.counselor-card > img {
  object-position: center 18%;
}

.counselor-card > div,
.salon-card > div {
  padding: 28px;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
}

.profile-tags span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  color: var(--red-dark);
  background: var(--green-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}

.salon-card {
  display: grid;
  align-content: center;
  width: min(920px, 100%);
  margin: 0 auto;
}

.counselor-card p:last-child,
.salon-card p:last-child {
  margin-bottom: 0;
}

.salon-card dl {
  display: grid;
  gap: 0;
  margin: 0 0 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.salon-card dl div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
}

.salon-card dl div:first-child {
  border-top: 0;
}

.salon-card dt {
  color: var(--muted);
  font-weight: 800;
}

.salon-card dd {
  margin: 0;
}

.trust-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 46px);
  width: min(920px, 100%);
  margin: 24px auto 0;
  padding: 24px clamp(22px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(61, 64, 152, 0.08);
}

.trust-banner img {
  width: min(220px, 36vw);
  height: auto;
}

.trust-banner p {
  max-width: 520px;
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.7;
}

.news {
  background: var(--paper);
}

.news-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.news-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(61, 64, 152, 0.07);
}

.news-item summary {
  position: relative;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  align-items: center;
  padding: 20px 64px 20px 24px;
  cursor: pointer;
  list-style: none;
}

.news-item summary::-webkit-details-marker {
  display: none;
}

.news-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.news-item[open] summary::after {
  content: "-";
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 800;
}

.news-tag {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  color: var(--white);
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 8px;
  font-size: 13px;
  white-space: nowrap;
}

.news-title {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.6;
}

.news-content {
  display: grid;
  gap: 10px;
  padding: 0 64px 24px 266px;
}

.news-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.news-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.news-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: var(--red-dark);
  background: var(--white);
  border: 1px solid rgba(61, 64, 152, 0.22);
  border-radius: 8px;
  font-weight: 800;
}

.news-link:hover {
  border-bottom: 1px solid rgba(61, 64, 152, 0.35);
}

.news-loading {
  width: min(920px, 100%);
  margin: 0 auto;
  color: var(--muted);
  text-align: center;
}

.reason {
  background: #fff;
}

.reason-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.reason-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(61, 64, 152, 0.06);
}

.reason-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.reason-card div {
  padding: 24px;
}

.reason-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.reason-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.second-opinion {
  background: var(--soft);
}

.second-opinion .section-heading p:not(.eyebrow) {
  margin-top: 12px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
}

.second-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  background: var(--white);
  border-left: 4px solid var(--gold);
}

.second-panel img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center center;
  border-radius: 8px;
}

.second-panel p {
  color: var(--muted);
}

.consultation {
  background: var(--white);
}

.consultation-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.consultation-list article {
  padding: 28px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.consultation-list span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.consultation-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.consultation-note {
  margin-top: 22px;
  padding: 18px 22px;
  color: var(--muted);
  background: var(--green-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
}

.value {
  background: var(--white);
}

.value-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.value-card {
  min-height: 285px;
  padding: 28px;
}

.value-card.accent {
  border-top: 5px solid var(--gold);
}

.support-items {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.support-items li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.support-items li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
}

.number {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--gold);
  font-weight: 800;
}

.price {
  background: var(--paper);
}

.price .section-heading p:not(.eyebrow) {
  max-width: 900px;
  margin: 12px auto 0;
  color: var(--muted);
}

.price-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  position: relative;
  display: grid;
  align-content: start;
  padding: 36px 28px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(61, 64, 152, 0.08);
}

.price-card.featured {
  border: 2px solid rgba(184, 151, 90, 0.58);
  border-top: 5px solid var(--gold);
  box-shadow: 0 18px 42px rgba(61, 64, 152, 0.12);
}

.plan-recommend {
  position: absolute;
  top: -14px;
  left: 22px;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin: 0;
  padding: 0 14px;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(61, 64, 152, 0.12);
  font-size: 13px;
  font-weight: 800;
}

.price-card.featured .plan-recommend {
  color: var(--white);
  background: var(--red);
}

.plan-label {
  width: fit-content;
  margin-bottom: 12px;
  padding: 4px 10px;
  color: var(--white);
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.plan-subtitle {
  margin: -4px 0 14px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.6;
}

.plan-lead {
  color: var(--muted);
}

.plan-fit {
  margin-bottom: 18px;
  padding: 14px;
  color: var(--muted);
  background: var(--green-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.7;
}

.price-card dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.price-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.price-card dt {
  color: var(--muted);
  font-weight: 700;
}

.price-card dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.plan-note {
  margin: 14px 0 0;
  padding: 10px 12px;
  color: var(--muted);
  background: rgba(255, 248, 245, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 11px;
  line-height: 1.75;
}

.trial-note {
  width: min(1120px, 100%);
  margin: 14px auto 0;
  padding: 14px 16px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.8;
}

.premium-note {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  width: min(1120px, 100%);
  margin: 18px auto 0;
  padding: 24px 28px;
  color: var(--ink);
  background: #fff;
  border: 2px solid rgba(184, 151, 90, 0.42);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(61, 64, 152, 0.08);
}

.premium-note img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center center;
  border-radius: 8px;
}

.premium-note span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 10px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.premium-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.premium-note p,
.price-note {
  margin-bottom: 0;
}

.price-note {
  width: min(1120px, 100%);
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.flow {
  background: var(--white);
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  list-style: none;
}

.flow-list li {
  position: relative;
  min-height: 250px;
  padding: 30px 26px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.flow-list span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-weight: 800;
}

.flow-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.faq {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(61, 64, 152, 0.07);
}

.faq-list summary {
  position: relative;
  padding: 20px 56px 20px 24px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.voices {
  background: linear-gradient(180deg, var(--paper), var(--soft));
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: min(1120px, 100%);
  margin: 22px auto 0;
}

.source-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: var(--red-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.subpage {
  background: var(--paper);
}

.policy {
  padding-top: clamp(48px, 7vw, 84px);
}

.policy .section-heading h1 {
  margin-bottom: 0;
  font-size: clamp(34px, 4.8vw, 54px);
  line-height: 1.2;
}

.policy-body {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.policy-body h2 {
  margin: 34px 0 10px;
  font-size: 22px;
}

.policy-body h2:first-of-type {
  margin-top: 26px;
}

.policy-body p,
.policy-body li {
  color: var(--muted);
}

.policy-body ul {
  margin: 0 0 18px;
  padding-left: 1.2em;
}

.policy-body address {
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-style: normal;
  line-height: 1.8;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 88px clamp(20px, 5vw, 72px);
}

.cta-copy,
.contact-form {
  width: min(100%, 920px);
  margin-inline: auto;
}

.cta-copy p {
  color: var(--muted);
}

.consultation-banner {
  display: block;
  width: min(360px, 100%);
  margin: 22px 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(61, 64, 152, 0.08);
}

.consultation-banner img {
  width: 100%;
  height: auto;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-methods span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: var(--red-dark);
  background: var(--green-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.outline-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: var(--red-dark);
  background: var(--white);
  border: 1px solid var(--red);
  border-radius: 10px;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow);
}

.form-heading {
  display: grid;
  gap: 6px;
}

.form-heading h3,
.form-heading p {
  margin: 0;
}

.form-heading h3 {
  font-size: 1.25rem;
}

.form-heading p,
.form-note {
  color: var(--muted);
  line-height: 1.8;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(184, 151, 90, 0.22);
  border-color: var(--gold);
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.7;
}

.privacy-check input {
  width: auto;
  margin-top: 7px;
}

.privacy-check a {
  color: var(--red-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hidden-field {
  display: none;
}

.form-button {
  width: 100%;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--red-dark);
}

.footer p {
  margin: 0;
  font-weight: 800;
}

.footer address {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  font-size: 13px;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
}

.footer small {
  color: rgba(255, 255, 255, 0.7);
}

.page-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  color: var(--white);
  background: var(--red);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(61, 64, 152, 0.22);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.page-top span {
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
}

.page-top small {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.page-top:hover {
  transform: translateY(-3px);
  background: var(--red-dark);
  box-shadow: 0 20px 40px rgba(61, 64, 152, 0.28);
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero,
  .about-card,
  .value-list,
  .voice-grid,
  .profile-grid,
  .counselor-card,
  .news-list,
  .reason-list,
  .price-list,
  .flow-list,
  .worry-list,
  .diagnosis-list,
  .consultation-list,
  .second-panel,
  .premium-note,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 620px;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero-bg-image {
    opacity: 1;
  }

  .about-card > img {
    min-height: 280px;
  }

  .cta-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .plan-fit {
    min-height: auto;
  }

  .second-panel img,
  .premium-note img {
    height: 240px;
  }

  .counselor-card > img {
    min-height: 320px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 18px;
  }

  .brand {
    min-width: 82px;
  }

  .brand img {
    width: 70px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 14px;
    font-size: 14px;
  }

  .hero {
    padding: 0 0 48px;
  }

  .hero-visual {
    min-height: 660px;
    padding: 56px 18px;
  }

  .hero-bg-image {
    object-position: center center;
    opacity: 1;
  }

  h1 {
    font-size: 30px;
  }

  .lead {
    font-size: 16px;
  }

  .primary-button {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
    text-align: center;
  }

  .hero-actions,
  .section-cta {
    width: 100%;
  }

  .outline-button {
    width: 100%;
  }

  .secondary-link {
    margin: 0 auto;
  }

  .hero-notes {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 18px;
  }

  .worry-panel,
  .second-panel,
  .consultation-list article,
  .premium-note {
    padding: 22px;
  }

  .profile-panel img {
    height: 280px;
  }

  .counselor-card > img {
    height: 260px;
  }

  .salon-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .trust-banner {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .trust-banner img {
    width: 190px;
  }

  .trust-banner p {
    font-size: 17px;
  }

  .news-item summary {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-right: 54px;
  }

  .news-meta {
    flex-wrap: wrap;
  }

  .news-content {
    padding: 0 54px 22px 24px;
  }

  .value-card {
    min-height: auto;
  }

  .cta-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .footer {
    display: block;
  }

  .footer-links {
    justify-items: start;
    margin-top: 18px;
  }

  .page-top {
    right: 14px;
    bottom: 14px;
    width: 58px;
    height: 58px;
  }

  .page-top span {
    font-size: 20px;
  }

  .page-top small {
    font-size: 9px;
  }
}


