@charset "UTF-8";
/* ================================================
   本氣で輝くサロン — style.css
   Dreamweaver 2020 対応
   フォルダ構成:
     salon_site/
       index.html
       form.html
       tokushoho.html
       privacy.html
       css/style.css
       js/main.js
       images/
   ================================================ */

/* ─── CSS カスタムプロパティ ─── */
:root {
  --gold:       #C9A84C;
  --gold-light: #E8D5A3;
  --gold-dark:  #8B6914;
  --deep:       #1A0F0A;
  --warm-dark:  #2C1810;
  --cream:      #FAF7F2;
  --parchment:  #F5EFE4;
  --rose:       #C9736A;
  --ink:        #2A1F1A;
  --body-text:  #3D2B22;
}

/* ─── リセット ─── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

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

/* ================================================
   HERO
   ================================================ */
.hero {
  min-height: 100vh;
  background: var(--deep);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 60%, rgba(201,168,76,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 30%, rgba(201,115,106,0.06) 0%, transparent 60%);
}

/* 背景写真オーバーレイ */
.hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0.18;
}

.hero-lines {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(201,168,76,0.5) 59px, rgba(201,168,76,0.5) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(201,168,76,0.5) 59px, rgba(201,168,76,0.5) 60px);
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.15);
  animation: pulse-ring 6s ease-in-out infinite;
}

.hero-circle:nth-child(3) { width: 500px; height: 500px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 0s; }
.hero-circle:nth-child(4) { width: 720px; height: 720px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 1.5s; }
.hero-circle:nth-child(5) { width: 940px; height: 940px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 3s; }

@keyframes pulse-ring {
  0%,100% { opacity: 0.4; transform: translate(-50%,-50%) scale(1); }
  50%      { opacity: 0.08; transform: translate(-50%,-50%) scale(1.04); }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 4rem 2rem;
  animation: fadeUp 1.2s ease both;
}

.hero-symbol {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  animation: fadeUp 1.2s ease both, slowSpin 20s linear infinite;
  filter: drop-shadow(0 0 12px rgba(201,168,76,0.4));
}

@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}


.hero-subtitle {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fadeUp 1.2s 0.2s ease both;
}

.hero-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
  animation: fadeUp 1.2s 0.4s ease both;
  text-shadow: 0 0 80px rgba(201,168,76,0.3);
}

.hero-title span {
  color: var(--gold);
  display: block;
}

.hero-tagline {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.2em;
  margin-bottom: 3rem;
  animation: fadeUp 1.2s 0.6s ease both;
}


.hero-cta {
  animation: fadeUp 1.2s 0.8s ease both;
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── ボタン共通 ─── */
.btn-gold {
  display: inline-block;
  padding: 1rem 2.8rem;
  background: var(--gold);
  color: var(--deep);
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  padding: 1rem 2.8rem;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-family: 'Noto Serif JP', serif;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  border: 1px solid rgba(201,168,76,0.45);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-large {
  padding: 1.25rem 3.5rem;
  font-size: 1.05rem;
}

/* ─── スクロールインジケーター ─── */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  animation: fadeUp 2s 1.5s ease both;
}

.scroll-indicator::after {
  content: '';
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%  { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100%{ transform: scaleY(0); transform-origin: bottom; }
}

/* ================================================
   SECTION 共通
   ================================================ */
section {
  padding: 6rem 1.5rem;
}

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

.section-label {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.72rem;
  letter-spacing: 0.38em;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: block;
}

.section-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--warm-dark);
  margin-bottom: 2rem;
}

.divider-gold {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 2rem 0;
}

.divider-gold.center {
  margin: 2rem auto;
}

.body-text {
  font-size: 1rem;
  line-height: 2.3;
  color: var(--body-text);
  margin-bottom: 1.5rem;
}

/* ================================================
   MESSAGE セクション
   ================================================ */
.message-section {
  background: var(--parchment);
  position: relative;
}

.message-section::before {
  content: '〜';
  position: absolute;
  top: 2rem;
  right: 3rem;
  font-size: 7rem;
  color: var(--gold-light);
  font-family: 'Shippori Mincho', serif;
  opacity: 0.25;
  line-height: 1;
  pointer-events: none;
}

.quote-block {
  border-left: 2px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  background: rgba(201,168,76,0.04);
}

.quote-block p {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  line-height: 2.1;
  color: var(--warm-dark);
  font-weight: 400;
}

/* ================================================
   PHOTO BREAK セクション（体操写真）
   ================================================ */
.photo-break {
  padding: 0;
  position: relative;
  height: 480px;
  overflow: hidden;
}

.photo-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.photo-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,15,10,0.55) 0%,
    rgba(26,15,10,0.2) 40%,
    rgba(26,15,10,0.6) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-break-text {
  text-align: center;
  color: #fff;
  padding: 2rem;
}

.photo-break-text p {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.3rem, 3.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.7;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.photo-break-text span {
  color: var(--gold);
}

/* ================================================
   PAIN POINTS セクション
   ================================================ */
.pain-section {
  background: var(--deep);
  color: #fff;
}

.pain-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.pain-card {
  border: 1px solid rgba(201,168,76,0.2);
  padding: 2rem 1.75rem 1.75rem;
  position: relative;
  background: rgba(255,255,255,0.03);
  transition: border-color 0.3s;
}

.pain-card:hover {
  border-color: rgba(201,168,76,0.5);
}

.pain-card::before {
  content: '"';
  position: absolute;
  top: -0.4rem;
  left: 1.25rem;
  font-size: 3.5rem;
  color: var(--gold);
  font-family: 'Shippori Mincho', serif;
  line-height: 1;
  opacity: 0.55;
}

.pain-card p {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.8);
  margin-top: 1rem;
}

/* ================================================
   3 PILLARS セクション
   ================================================ */
.pillars-section {
  background: var(--cream);
}

.pillars-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3rem;
  background: var(--gold-light);
}

.pillar {
  background: var(--cream);
  padding: 2.8rem 1.75rem;
  text-align: center;
  transition: background 0.3s;
}

.pillar:hover {
  background: #fff;
}

.pillar-icon {
  width: 70px;
  margin: 0 auto 1.2rem;
  display: block;
}

.pillar-number {
  font-family: 'Shippori Mincho', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.pillar-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--warm-dark);
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}

.pillar-desc {
  font-size: 0.85rem;
  line-height: 1.95;
  color: #6B5A50;
}

/* ================================================
   VISION セクション
   ================================================ */
.vision-section {
  background: var(--warm-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.vision-section::after {
  content: '輝';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28rem;
  font-family: 'Shippori Mincho', serif;
  color: rgba(201,168,76,0.04);
  line-height: 1;
  pointer-events: none;
}

.vision-container {
  position: relative;
  z-index: 1;
}

.vision-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.vision-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(201,168,76,0.15);
  background: rgba(255,255,255,0.03);
  transition: border-color 0.3s, background 0.3s;
}

.vision-item:hover {
  border-color: rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.05);
}

.vision-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.6rem;
}

.vision-item p {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.9rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.82);
}

/* ================================================
   COURSES セクション
   ================================================ */
.courses-section {
  background: var(--parchment);
}

.courses-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.course-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.course-card {
  background: #fff;
  border: 1px solid var(--gold-light);
  padding: 2.5rem;
  position: relative;
  transition: box-shadow 0.3s;
}

.course-card:hover {
  box-shadow: 0 8px 40px rgba(201,168,76,0.18);
}

.course-badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: var(--gold);
  color: var(--deep);
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  margin-bottom: 1.4rem;
}

.course-card.special .course-badge {
  background: var(--deep);
  color: var(--gold);
}

.course-card-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--warm-dark);
  margin-bottom: 0.4rem;
}

.course-price {
  font-family: 'Shippori Mincho', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-dark);
  margin: 1.4rem 0 0.2rem;
}

.course-price span {
  font-size: 1rem;
  font-weight: 400;
  color: #999;
}

.course-half-year {
  font-size: 0.82rem;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.course-items {
  list-style: none;
  margin-top: 1.4rem;
  border-top: 1px solid var(--gold-light);
  padding-top: 1.4rem;
}

.course-items li {
  font-size: 0.875rem;
  line-height: 1.75;
  color: #5A4035;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.course-items li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.55em;
}

/* ── スクエア決済バナー ── */
.square-banner {
  margin-top: 3rem;
  padding: 2rem;
  border: 1px solid rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.04);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.square-banner-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.square-banner h4 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--warm-dark);
  margin-bottom: 0.5rem;
}

.square-banner p {
  font-size: 0.85rem;
  line-height: 1.9;
  color: #6B5A50;
}

/* ================================================
   CALENDAR セクション
   ================================================ */
.calendar-section {
  background: var(--cream);
}

.calendar-wrap {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.calendar-img-wrap {
  flex: 0 0 auto;
}

.calendar-img-wrap img {
  width: 260px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.calendar-text {
  flex: 1;
  min-width: 240px;
}

.calendar-text h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--warm-dark);
  margin-bottom: 1rem;
}

.calendar-text p {
  font-size: 0.95rem;
  line-height: 2.1;
  color: var(--body-text);
}

/* ================================================
   SPECIAL OFFER セクション
   ================================================ */
.offer-section {
  background: var(--deep);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.offer-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.1) 0%, transparent 70%);
}

.offer-container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.offer-badge {
  display: inline-block;
  padding: 0.45rem 2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Noto Serif JP', serif;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  margin-bottom: 2rem;
}

.offer-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 1.5rem;
}

.offer-title em {
  color: var(--gold);
  font-style: normal;
  display: block;
}

.offer-body {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  line-height: 2.1;
  color: rgba(255,255,255,0.72);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.offer-body strong {
  color: rgba(255,255,255,0.92);
}

.offer-note {
  margin-top: 2.5rem;
  border: 1px solid rgba(201,168,76,0.2);
  padding: 1.5rem 2rem;
  display: inline-block;
  background: rgba(255,255,255,0.02);
  max-width: 560px;
  text-align: left;
}

.offer-note p {
  font-size: 0.83rem;
  line-height: 2;
  color: rgba(255,255,255,0.5);
}

/* ================================================
   FORM セクション（index.html に埋め込み）
   ================================================ */
.form-section {
  background: var(--parchment);
}

.form-wrap {
  max-width: 680px;
  margin: 3rem auto 0;
  background: #fff;
  border: 1px solid var(--gold-light);
  padding: 3rem 2.5rem;
}

.form-group {
  margin-bottom: 1.8rem;
}

.form-group label {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 0.88rem;
  color: var(--warm-dark);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.form-group label span.required {
  display: inline-block;
  font-size: 0.7rem;
  background: var(--rose);
  color: #fff;
  padding: 0.1rem 0.4rem;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--gold-light);
  background: var(--cream);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: #fff;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select-wrap {
  position: relative;
}

.form-select-wrap::after {
  content: '▼';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.65rem;
  color: var(--gold);
  pointer-events: none;
}

.form-radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.form-radio-group label {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0;
  cursor: pointer;
  font-size: 0.92rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(201,168,76,0.4);
  background: #fff;
  transition: border-color 0.2s ease, background 0.2s ease;
  color: var(--warm-dark);
}

.form-radio-group label:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.form-radio-group input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: #C9A84C;
  cursor: pointer;
  flex-shrink: 0;
}

/* 選択中：枠をゴールドに・背景を薄いゴールドに */
.form-radio-group label:has(input[type="radio"]:checked) {
  border-color: var(--gold);
  background: rgba(201,168,76,0.12);
  color: var(--warm-dark);
  font-weight: 600;
}

.form-note {
  font-size: 0.78rem;
  color: #999;
  line-height: 1.9;
  margin-top: 1.5rem;
  border-top: 1px solid var(--gold-light);
  padding-top: 1.25rem;
}

.form-note a {
  color: var(--gold-dark);
  text-decoration: underline;
}

.form-submit {
  margin-top: 2rem;
  text-align: center;
}

.btn-submit {
  display: inline-block;
  padding: 1.2rem 4rem;
  background: var(--gold);
  color: var(--deep);
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.15em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.btn-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ================================================
   FINAL CTA セクション
   ================================================ */
.final-cta {
  background: var(--parchment);
  text-align: center;
  padding: 8rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}

.final-cta-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--warm-dark);
  margin-bottom: 1rem;
  margin-top: 2rem;
  line-height: 1.55;
}

.final-cta-sub {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  color: #6B5A50;
  line-height: 2.1;
  max-width: 540px;
  margin: 0 auto 3rem;
}

/* ================================================
   SITE FOOTER
   ================================================ */
.site-footer {
  background: var(--deep);
  padding: 3rem 1.5rem 2rem;
  text-align: center;
}

.footer-logo {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

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

.footer-nav a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--gold);
}

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

/* ================================================
   PAGE HEADER（特商法・プライバシー用）
   ================================================ */
.page-header {
  background: var(--deep);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 50% 60%, rgba(201,168,76,0.07) 0%, transparent 70%);
}

.page-header-inner {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.15em;
}

/* ── 特商法・プライバシー 本文 ── */
.legal-section {
  background: var(--parchment);
  padding: 5rem 1.5rem 6rem;
}

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

.legal-container h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--warm-dark);
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin: 2.5rem 0 1rem;
}

.legal-container p,
.legal-container li {
  font-size: 0.9rem;
  line-height: 2.1;
  color: var(--body-text);
}

.legal-container ul {
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}

.legal-container table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.875rem;
}

.legal-container table th,
.legal-container table td {
  border: 1px solid var(--gold-light);
  padding: 0.8rem 1rem;
  text-align: left;
  line-height: 1.8;
  color: var(--body-text);
  vertical-align: top;
}

.legal-container table th {
  background: rgba(201,168,76,0.08);
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  white-space: nowrap;
  width: 30%;
}

/* ================================================
   スクロールアニメーション
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   アニメーション keyframe 共通
   ================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ================================================
   レスポンシブ
   ================================================ */
@media (max-width: 768px) {
  section {
    padding: 4rem 1.25rem;
  }

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

  .hero-circle:nth-child(4),
  .hero-circle:nth-child(5) {
    display: none;
  }

  .course-cards {
    grid-template-columns: 1fr;
  }

  .calendar-wrap {
    flex-direction: column;
  }

  .calendar-img-wrap img {
    width: 100%;
    max-width: 300px;
  }

  .form-wrap {
    padding: 2rem 1.25rem;
  }

  .legal-container table th {
    width: 40%;
  }

  .photo-break {
    height: 320px;
  }
}

/* ================================================
   SITE NAV（ハンバーガー対応グローバルナビ）
   ================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  background: rgba(26,15,10,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.site-nav-logo {
  font-family: 'Shippori Mincho', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

/* デスクトップ：横並びメニュー */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu a {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.nav-menu a:hover {
  color: var(--gold);
}

.nav-menu .nav-cta-link {
  padding: 0.45rem 1.4rem;
  background: var(--gold);
  color: var(--deep);
  font-weight: 700;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: background 0.2s;
}

.nav-menu .nav-cta-link:hover {
  background: var(--gold-light);
  color: var(--deep);
}

/* ハンバーガーボタン（スマホのみ表示） */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}

.nav-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* バーガーopen時のアニメーション */
.nav-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ヒーローセクションをナビ分下げる */
.hero {
  padding-top: 60px;
}

/* ================================================
   レスポンシブ：スマホナビ
   ================================================ */
@media (max-width: 768px) {
  .nav-burger {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(26,15,10,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0 1.5rem;
    border-bottom: 1px solid rgba(201,168,76,0.2);
    animation: menuSlideDown 0.25s ease both;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 1rem 2rem;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(201,168,76,0.08);
    color: rgba(255,255,255,0.82);
  }

  .nav-menu a:last-child {
    border-bottom: none;
  }

  .nav-menu .nav-cta-link {
    margin: 1rem 2rem 0;
    text-align: center;
    clip-path: none;
    border-radius: 2px;
    padding: 0.85rem 1.4rem;
  }

  @keyframes menuSlideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

/* ── ナビ シンボルマークロゴ ── */
.site-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo-img {
  width: 32px;
  height: 32px;
  display: block;
  filter: drop-shadow(0 0 6px rgba(201,169,110,0.5));
  flex-shrink: 0;
}

.site-nav-logo span {
  font-family: 'Shippori Mincho', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

/* ヒーローロゴのサイズ調整（SVMに最適化） */

/* ── フッターロゴ ── */
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.footer-logo-img {
  width: 28px;
  height: 28px;
  opacity: 0.85;
  filter: drop-shadow(0 0 4px rgba(201,169,110,0.4));
}

/* ================================================
   PILLARS ESSENCE（本質的な健康を形づくる必要な3要素）v2
   ================================================ */
.pillars-essence {
  max-width: 860px;
  margin: 3rem auto 0;
  padding: 2.5rem 2rem;
  background: var(--warm-dark);
  border: 1px solid rgba(201,168,76,0.3);
  position: relative;
  overflow: hidden;
}

.pillars-essence::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
}

.pillars-essence-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  margin-bottom: 1.8rem;
  padding-left: 1rem;
}

.pillars-essence-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2rem;
  padding-left: 1rem;
}

.pillars-essence-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.pillars-essence-num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Shippori Mincho', serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
}

.pillars-essence-text {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.04em;
}

.pillars-essence-caption {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.88rem;
  line-height: 1.95;
  color: rgba(255,255,255,0.55);
  padding: 1.1rem 1.2rem;
  border-top: 1px solid rgba(201,168,76,0.18);
  margin-left: 1rem;
}

@media (max-width: 640px) {
  .pillars-essence {
    padding: 1.8rem 1.2rem;
  }
  .pillars-essence-title {
    padding-left: 0.7rem;
  }
  .pillars-essence-list {
    padding-left: 0.7rem;
  }
  .pillars-essence-caption {
    margin-left: 0.7rem;
  }
}

/* ================================================
   VISION BODY CONCEPT（PPTXスライド：目指すお身体の状態）v2
   ================================================ */
.vision-body-concept {
  margin-top: 2.5rem;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(201,168,76,0.25);
  background: rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}

.vision-body-concept::before {
  content: '流';
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Shippori Mincho', serif;
  font-size: 14rem;
  color: rgba(201,168,76,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.vision-body-label {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.vision-body-heading {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.8rem;
  letter-spacing: 0.05em;
}

.vision-body-keyword {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.2rem 1.8rem;
  background: linear-gradient(90deg, rgba(201,168,76,0.18) 0%, rgba(201,168,76,0.05) 100%);
  border-left: 3px solid var(--gold);
}

.vision-body-keyword-text {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.08em;
}

.vision-body-definition {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(201,168,76,0.2);
}

.vision-body-definition p {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  line-height: 2.1;
  color: rgba(255,255,255,0.7);
}

.vision-body-definition strong {
  color: var(--gold-light);
  font-weight: 500;
}

@media (max-width: 640px) {
  .vision-body-concept {
    padding: 1.8rem 1.2rem;
  }
  .vision-body-keyword {
    padding: 1rem 1.2rem;
  }
}

/* ================================================
   THANKS PAGE（thanks.html）
   ================================================ */
.thanks-section {
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem;
  background: var(--warm-dark);
}

.thanks-inner {
  max-width: 640px;
  width: 100%;
  text-align: center;
}

.thanks-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  animation: thanks-pulse 2.5s ease-in-out infinite;
}

@keyframes thanks-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.35); }
  50%       { box-shadow: 0 0 0 14px rgba(201,168,76,0); }
}

.thanks-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thanks-label {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.thanks-heading {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.thanks-divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto;
}

.thanks-message {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 2.2;
  color: rgba(255,255,255,0.7);
  margin-bottom: 3rem;
}

.thanks-message strong {
  color: var(--gold-light);
  font-weight: 500;
}

.thanks-note {
  font-size: 0.82rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.42);
  margin-bottom: 3.5rem;
  padding: 1.2rem 1.5rem;
  border: 1px solid rgba(201,168,76,0.15);
  background: rgba(201,168,76,0.04);
}

.thanks-btn {
  display: inline-block;
  padding: 0.95rem 2.8rem;
  font-family: 'Noto Serif JP', serif;
  font-size: 0.88rem;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  border: 1px solid var(--gold);
  background: transparent;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.thanks-btn:hover {
  background: rgba(201,168,76,0.12);
  color: #fff;
}

/* ================================================
   form.html 専用スタイル
   ================================================ */

/* ページヘッダー（form.html） */
.page-header--form {
  margin-top: 60px;
}
.page-header-label {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.page-header-sub {
  margin-top: 0.5rem;
}

/* 本文センター揃え */
.body-text--center {
  text-align: center;
}

/* 住所入力（縦並び間隔） */
.address-input {
  margin-bottom: 0.5rem;
}

/* 姓名・ふりがな 横並び */
.form-name-row {
  display: flex;
  gap: 0.5rem;
}
.form-name-row input {
  flex: 1;
  min-width: 0;
}

/* 電話番号 3分割 */
.form-tel-row {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.form-tel-row input {
  flex: 1;
  min-width: 0;
  max-width: 90px;
}
.tel-hyphen {
  color: var(--gold);
  font-weight: bold;
  flex-shrink: 0;
}

/* 生年月日 */
.form-birthday-row {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-wrap: wrap;
}
.form-birthday-row input[name="BirthdayY"] { width: 5rem; flex: none; }
.form-birthday-row input[name="BirthdayM"],
.form-birthday-row input[name="BirthdayD"] { width: 3.5rem; flex: none; }
.bday-unit {
  font-size: 0.9rem;
  color: #888;
  flex-shrink: 0;
  margin-right: 0.25rem;
}

/* 性別ピル */
.form-radio-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.radio-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border: 1px solid #ccc;
  border-radius: 50px;
  background: #faf8f5;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  font-weight: 600;
  color: #555;
  user-select: none;
}
.radio-pill input[type="radio"] { accent-color: var(--gold); }
.radio-pill:has(input:checked) {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* 住所・入力ヒント */
.form-hint {
  display: block;
  font-size: 0.78rem;
  margin-top: 0.25rem;
}
.form-hint--error {
  color: #c00;
}

/* インラインエラー */
.form-field-error {
  font-size: 0.8rem;
  color: #c00;
  margin-top: 0.25rem;
}

/* 同意チェックボックス */
.f-agree-wrap {
  margin-bottom: 0.75rem;
}
.agree-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.88rem;
  line-height: 1.5;
}
.agree-label input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--gold);
  flex-shrink: 0;
}

/* 送信エラーボックス */
.form-error-box {
  background: #fff0f0;
  border: 1px solid #f5a0a0;
  color: #c00;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

/* バリデーション エラー状態 */
input.is-invalid,
select.is-invalid {
  border-color: #c00 !important;
  background: #fff8f8;
}

/* form.html レスポンシブ */
@media (max-width: 480px) {
  .form-name-row {
    flex-direction: column;
  }
  .form-birthday-row input[name="BirthdayY"] { width: 4.5rem; }
}

/* ===== Square審査対応：定期課金ノーティスブロック ===== */
.f-recurring-notice {
  display: flex;
  gap: 1rem;
  background: #fffbf0;
  border: 2px solid var(--gold, #b8960c);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0 1rem;
}
.f-recurring-notice__icon { font-size: 1.6rem; flex-shrink: 0; line-height: 1; padding-top: 0.1rem; }
.f-recurring-notice__body { flex: 1; }
.f-recurring-notice__title { font-size: 0.95rem; font-weight: 700; color: #7a5800; margin-bottom: 0.6rem; }
.f-recurring-notice__list { margin: 0 0 0.75rem 1.1rem; padding: 0; font-size: 0.85rem; line-height: 1.7; color: #4a3800; }
.f-recurring-notice__list li { margin-bottom: 0.2rem; }
.f-recurring-notice__ref { font-size: 0.82rem; color: #7a5800; margin: 0; }
.f-recurring-notice__ref a { color: #7a5800; text-decoration: underline; }
.f-agree-wrap--highlight {
  background: #fff8e6;
  border: 1.5px solid var(--gold, #b8960c);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 600px) {
  .f-recurring-notice { flex-direction: column; gap: 0.5rem; padding: 1rem; }
}
