/* ===========================
   UTABATAKE Premium Redesign
   Lavender & Gold Edition
   =========================== */

/* --- リセット & ベース --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* 濃い温かみのある薄紫（モーヴ系）*/
  --lavender: #b87db8;
  --lavender-light: #d4a5d4;
  --lavender-pale: #ede5ed;
  /* より輝く濃いゴールド */
  --gold: #d4a400;
  --gold-light: #e6c200;
  --gold-pale: #fef4d4;
  --cream: #faf8f5;
  --off-white: #fcfaf7;
  --text-main: #3a3a3a;
  --text-sub: #6a6a6a;
  --text-light: #f5f2ed;
  --font-serif: 'Noto Serif JP', 'Cormorant Garamond', serif;
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-en: 'Cormorant Garamond', serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background: var(--cream);
  line-height: 1.9;
  font-size: 16px;
}

/* --- ナビゲーション --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(248, 248, 245, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200, 182, 226, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--lavender);
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--text-sub);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--lavender);
}

.nav-cta {
  background: var(--lavender) !important;
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  font-weight: 500 !important;
  transition: all 0.3s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
}

/* --- ヒーローセクション --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f0fb 0%, #faf5ed 50%, #fcfaf7 100%);
  overflow: hidden;
  padding-top: 64px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(200, 182, 226, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(212, 175, 143, 0.1) 0%, transparent 50%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(200, 182, 226, 0.04) 60px,
      rgba(200, 182, 226, 0.04) 61px
    );
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  text-align: left;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(200, 182, 226, 0.2);
}

.hero-en {
  font-family: var(--font-en);
  font-size: 0.95rem;
  letter-spacing: 0.35em;
  color: var(--lavender);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.hero-sub {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--text-sub);
  line-height: 2;
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}

/* --- ボタン --- */
.btn-primary {
  display: inline-block;
  background: var(--lavender);
  color: #fff;
  text-decoration: none;
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  font-weight: 500;
  border: 1px solid var(--lavender);
  transition: all 0.3s;
  font-family: var(--font-sans);
}

.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* --- セクション共通 --- */
.section {
  padding: 100px 2rem;
}

.section-light {
  background: #fff;
}

.section-cream {
  background: var(--cream);
}

.section-lavender {
  background: var(--lavender-pale);
}

.section-message {
  background: linear-gradient(135deg, var(--lavender-light) 0%, var(--gold-pale) 100%);
}

.section-contact {
  background: linear-gradient(135deg, var(--lavender-pale) 0%, var(--cream) 100%);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.container-narrow {
  max-width: 760px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 1.5rem;
  display: block;
}

.section-label.light {
  color: var(--lavender);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.section-lead {
  font-size: 1rem;
  color: var(--text-sub);
  line-height: 2;
  margin-bottom: 3.5rem;
  max-width: 700px;
}

/* --- 問題提起セクション --- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(200, 182, 226, 0.3);
  background: #fff;
  border-radius: 4px;
}

.pain-icon {
  color: var(--lavender);
  font-size: 0.7rem;
  margin-top: 0.4rem;
  flex-shrink: 0;
}

.pain-item p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-main);
}

.pain-message {
  text-align: center;
  padding: 3rem 2rem;
  background: #fff;
  border-top: 2px solid var(--lavender);
  border-bottom: 2px solid var(--lavender);
}

.pain-message p {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 2;
  color: var(--text-main);
}

.pain-message strong {
  color: var(--lavender);
}

/* --- メソッドセクション --- */
.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.method-card {
  background: #fff;
  border: 1px solid rgba(200, 182, 226, 0.25);
  padding: 2.5rem 2rem;
  transition: all 0.3s;
  border-radius: 4px;
}

.method-card:hover {
  border-color: var(--lavender);
  box-shadow: 0 10px 30px rgba(200, 182, 226, 0.15);
}

.method-number {
  font-family: var(--font-en);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(200, 182, 226, 0.3);
  line-height: 1;
  margin-bottom: 1rem;
}

.method-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.method-sub {
  font-size: 0.85rem;
  color: var(--lavender);
}

.method-card p {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.9;
}

/* --- プロフィールセクション --- */
.profile-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  align-items: start;
}

.profile-image-container {
  position: relative;
}

.profile-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(200, 182, 226, 0.25);
}

.profile-credentials {
  background: var(--lavender-pale);
  border-left: 3px solid var(--lavender);
  padding: 1.5rem;
  border-radius: 4px;
}

.profile-credentials h4 {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--lavender);
  margin-bottom: 1rem;
}

.profile-credentials ul {
  list-style: none;
  padding: 0;
}

.profile-credentials li {
  font-size: 0.82rem;
  color: var(--text-sub);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(200, 182, 226, 0.2);
  line-height: 1.6;
}

.profile-credentials li:last-child {
  border-bottom: none;
}

.profile-text p {
  font-size: 0.97rem;
  color: var(--text-sub);
  line-height: 2;
  margin-bottom: 1.5rem;
}

.profile-quote {
  border-left: 3px solid var(--lavender);
  padding: 1.5rem 2rem;
  margin-top: 2rem;
  background: var(--lavender-pale);
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-main);
  line-height: 2;
  font-style: italic;
  border-radius: 4px;
}

/* --- お客様の声 --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #fff;
  border: 1px solid rgba(200, 182, 226, 0.2);
  padding: 2.5rem 2rem;
  position: relative;
  border-radius: 4px;
}

.testimonial-quote-mark {
  font-family: var(--font-en);
  font-size: 4rem;
  color: var(--lavender);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.testimonial-result {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--lavender);
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* --- ターゲットクライアント像 --- */
.ideal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.ideal-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(212, 165, 212, 0.2);
}

.ideal-item:last-child {
  border-bottom: none;
}

.ideal-icon {
  font-size: 1.5rem;
  color: var(--lavender);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.ideal-item h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-main);
  line-height: 1.8;
  letter-spacing: 0.02em;
}

/* --- 料金セクション --- */
.menu-main {
  background: #fff;
  border: 2px solid var(--lavender);
  padding: 3.5rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  border-radius: 8px;
}

.menu-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lavender);
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  padding: 0.4rem 1.5rem;
  font-family: var(--font-en);
  text-transform: uppercase;
}

.menu-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

.menu-duration {
  font-size: 0.85rem;
  color: var(--text-sub);
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
}

.menu-price-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.menu-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.menu-price-label {
  font-size: 0.75rem;
  color: var(--text-sub);
  letter-spacing: 0.1em;
}

.menu-price-amount {
  font-family: var(--font-en);
  font-size: 3rem;
  font-weight: 300;
  color: var(--lavender);
  letter-spacing: 0.05em;
}

.menu-price-divider {
  color: rgba(200, 182, 226, 0.3);
  font-size: 2rem;
}

.menu-includes {
  text-align: left;
  max-width: 500px;
  margin: 0 auto 2rem;
  background: var(--lavender-pale);
  padding: 1.5rem 2rem;
  border-left: 2px solid var(--lavender);
  border-radius: 4px;
}

.menu-includes-title {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--lavender);
  margin-bottom: 1rem;
}

.menu-includes ul {
  list-style: none;
  padding: 0;
}

.menu-includes li {
  font-size: 0.9rem;
  color: var(--text-sub);
  padding: 0.4rem 0;
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.6;
}

.menu-includes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--lavender);
}

.menu-note {
  font-size: 0.78rem;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.menu-sub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.menu-sub-card {
  background: #fff;
  border: 1px solid rgba(200, 182, 226, 0.2);
  padding: 2rem;
  border-radius: 4px;
  transition: all 0.3s;
}

.menu-sub-card:hover {
  border-color: var(--lavender);
  box-shadow: 0 10px 30px rgba(200, 182, 226, 0.1);
}

.menu-sub-card h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.menu-sub-duration {
  font-size: 0.78rem;
  color: var(--lavender);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.menu-sub-desc {
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.menu-sub-price {
  font-family: var(--font-en);
  font-size: 1.3rem;
  color: var(--lavender);
}

.menu-sub-price .sep {
  color: rgba(200, 182, 226, 0.3);
  margin: 0 0.5rem;
}

.menu-sub-group {
  font-size: 0.9rem;
  color: var(--text-sub);
}

/* --- メッセージセクション --- */
.message-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  text-align: center;
}

.message-title span {
  font-size: 0.75em;
  display: block;
  color: var(--text-sub);
  margin-top: 0.5rem;
}

.message-text {
  font-size: 1rem;
  color: var(--text-sub);
  line-height: 2;
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-message .section-label,
.section-message .btn-primary {
  display: block;
  text-align: center;
  margin: 0 auto;
}

.section-message .btn-primary {
  margin-top: 2.5rem;
  display: inline-block;
}

/* --- お申し込みセクション --- */
.contact-flow {
  margin-bottom: 3rem;
}

.contact-flow h3,
.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--lavender);
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(200, 182, 226, 0.3);
}

.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: #fff;
  border: 1px solid rgba(200, 182, 226, 0.2);
  padding: 1.5rem;
}

.flow-num {
  width: 36px;
  height: 36px;
  border: 1px solid var(--lavender);
  color: var(--lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 1rem;
  flex-shrink: 0;
  border-radius: 50%;
}

.flow-step p {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.8;
  padding-top: 0.3rem;
}

.flow-arrow {
  text-align: center;
  color: rgba(200, 182, 226, 0.3);
  font-size: 1.2rem;
  padding: 0.3rem 0;
}

.contact-info {
  margin-bottom: 2.5rem;
}

.contact-info ol {
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.contact-info li {
  font-size: 0.9rem;
  color: var(--text-sub);
  padding: 0.4rem 0;
  line-height: 1.7;
}

.btn-email {
  display: inline-block;
  border: 1px solid var(--lavender);
  color: var(--lavender);
  text-decoration: none;
  padding: 1rem 2rem;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  font-family: var(--font-sans);
  border-radius: 4px;
}

.btn-email:hover {
  background: var(--lavender);
  color: #fff;
}

.contact-policy {
  background: var(--lavender-pale);
  border: 1px solid rgba(200, 182, 226, 0.2);
  padding: 2rem;
  border-radius: 4px;
}

.contact-policy h4 {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--lavender);
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

.contact-policy h4:first-child {
  margin-top: 0;
}

.contact-policy p {
  font-size: 0.85rem;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

/* --- フッター --- */
.footer {
  background: #fff;
  padding: 3rem 2rem;
  border-top: 1px solid rgba(200, 182, 226, 0.2);
}

.footer-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-en);
  font-size: 1.5rem;
  letter-spacing: 0.3em;
  color: var(--lavender);
  margin-bottom: 0.5rem;
}

.footer-name {
  font-size: 0.85rem;
  color: var(--text-sub);
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.footer-sns {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-sns a {
  font-size: 0.8rem;
  color: var(--text-sub);
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

.footer-sns a:hover {
  color: var(--lavender);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.75rem;
  color: rgba(106, 106, 106, 0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--lavender);
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(106, 106, 106, 0.4);
  letter-spacing: 0.1em;
}

/* --- レスポンシブ --- */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-text {
    text-align: center;
  }

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

  .profile-image {
    max-width: 280px;
    margin: 0 auto;
  }

  .nav-links {
    display: none;
  }

  .menu-main {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 70px 1.2rem;
  }

  .hero-content {
    padding: 1.2rem;
  }

  .menu-price-wrap {
    flex-direction: column;
    gap: 1rem;
  }

  .menu-price-divider {
    display: none;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .method-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.8rem;
  }
}
