/* ============================================
   alba — ストレスケアサロン
   配色・余白の基準はここで一括管理
============================================= */
:root {
  /* 生成り・淡いグリーン・ベージュ系 */
  --c-bg:        #faf8f3;  /* 生成り（ベース背景） */
  --c-bg-green:  #eef1e8;  /* 淡いグリーン（セクション背景） */
  --c-bg-beige:  #f3ede3;  /* ベージュ（セクション背景） */
  --c-green:     #8fa088;  /* くすみグリーン（アクセント） */
  --c-green-deep:#5d6f56;  /* 濃いめグリーン（ボタン・見出し文） */
  --c-text:      #4d483f;  /* 本文（黒すぎないブラウン系） */
  --c-text-soft: #7d7669;  /* 補足テキスト */
  --c-line:      #d9d2c4;  /* 罫線 */

  --font-mincho: "Shippori Mincho", serif;
  --font-gothic: "Zen Kaku Gothic New", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-gothic);
  font-weight: 400;
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 2.2;               /* 詩のようなゆったり行間 */
  letter-spacing: 0.06em;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ============================================
   ヘッダー
============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: rgba(250, 248, 243, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.site-logo {
  font-family: var(--font-mincho);
  font-size: 1.3rem;
  letter-spacing: 0.25em;
  color: var(--c-green-deep);
}

.header-line-btn {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--c-green-deep);
  text-decoration: none;
  border: 1px solid var(--c-green);
  border-radius: 999px;
  padding: 7px 18px;
  transition: background 0.3s, color 0.3s;
}

.header-line-btn:hover {
  background: var(--c-green-deep);
  color: #fff;
}

/* ============================================
   1. ヒーロー
============================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 100px 24px 80px;
}

/* 朝焼けの空（Instagram投稿より）。サロン本番写真が撮影でき次第、差し替え ※要確認
   文字の可読性と世界観のため、生成りの薄いベールを重ねている */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(175deg,
      rgba(250, 248, 243, 0.82) 0%,
      rgba(250, 248, 243, 0.55) 45%,
      rgba(250, 248, 243, 0.35) 75%,
      rgba(250, 248, 243, 0.55) 100%),
    url("../images/hero_main-visual.jpg") center bottom / cover no-repeat,
    linear-gradient(170deg, #f7f5ee 0%, #eef0e6 55%, #f2ecdf 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  /* 写真の上でも文字が沈まないよう、生成り色のにじみを重ねる */
  text-shadow:
    0 0 14px rgba(250, 248, 243, 0.95),
    0 0 4px rgba(250, 248, 243, 0.8);
}

.hero-opening {
  font-family: var(--font-mincho);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--c-green-deep);
  margin-bottom: 48px;
}

.hero-opening-sub {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: var(--c-text-soft);
  margin-top: 10px;
}

.hero-catch {
  font-family: var(--font-mincho);
  font-weight: 400;
  font-size: clamp(1.7rem, 7vw, 2.6rem);
  letter-spacing: 0.3em;
  line-height: 2.4;
  color: var(--c-text);
  margin-bottom: 40px;
}

.hero-catch span {
  display: block;
}

/* キャッチ3行を少しずつ横にずらして詩のように */
.hero-catch span:nth-child(2) { padding-left: 1.5em; }
.hero-catch span:nth-child(3) { padding-left: 3em; }

.hero-sub {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--c-text);
  margin-bottom: 56px;
}

.hero-message {
  font-family: var(--font-mincho);
  font-size: 0.92rem;
  letter-spacing: 0.22em;
  line-height: 2.6;
  color: var(--c-green-deep);
}

/* スクロールサイン */
.scroll-sign {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-sign span {
  display: block;
  width: 1px;
  height: 48px;
  background: var(--c-green);
  animation: scrollLine 2.4s ease-in-out infinite;
  transform-origin: top;
}

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

/* ============================================
   セクション共通
============================================= */
.section {
  padding: 96px 28px;
}

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

.section-en {
  font-family: var(--font-mincho);
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  color: var(--c-green);
  margin-bottom: 14px;
  text-transform: lowercase;
}

.section-title {
  font-family: var(--font-mincho);
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  line-height: 2;
  margin-bottom: 48px;
  color: var(--c-text);
}

/* ============================================
   2. こんな方へ
============================================= */
.empathy {
  background: var(--c-bg);
}

.empathy-list {
  list-style: none;
  text-align: left;
  max-width: 420px;
  margin: 0 auto 56px;
}

.empathy-list li {
  position: relative;
  padding: 18px 0 18px 30px;
  border-bottom: 1px solid var(--c-line);
  font-size: 0.95rem;
  line-height: 1.9;
}

.empathy-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-green);
  opacity: 0.6;
}

.empathy-message {
  font-family: var(--font-mincho);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  line-height: 2.6;
  color: var(--c-green-deep);
}

/* ============================================
   3. albaについて
============================================= */
.about {
  background: var(--c-bg-green);
}

/* 実写真 */
.photo-about {
  display: block;
  width: 100%;
  max-width: 460px;
  height: auto;
  margin: 0 auto 48px;
  border-radius: 6px;
  object-fit: cover;
}

.photo-portrait {
  display: block;
  width: 180px;
  height: 180px;
  margin: 0 auto 48px;
  border-radius: 50%;
  object-fit: cover;
}

/* 写真プレースホルダー共通 */
.ph-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 48px;
  background:
    radial-gradient(ellipse 70% 60% at 30% 30%, rgba(255, 255, 255, 0.5), transparent 65%),
    linear-gradient(150deg, #dde3d2 0%, #e9e3d3 60%, #f0ebdf 100%);
}

.ph-image--about {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
}

.ph-image--portrait {
  width: 180px;
  height: 180px;
  border-radius: 50%;
}

.ph-image-note {
  font-family: var(--font-mincho);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: rgba(109, 127, 102, 0.65);
}

.about-lead {
  font-family: var(--font-mincho);
  font-size: 1rem;
  letter-spacing: 0.15em;
  line-height: 2.6;
  color: var(--c-text);
  margin-bottom: 40px;
}

.about-text {
  font-size: 0.95rem;
  line-height: 2.5;
  margin-bottom: 36px;
}

.about-role {
  display: inline-block;
  margin-top: 8px;
  padding: 22px 36px;
  border-top: 1px solid var(--c-green);
  border-bottom: 1px solid var(--c-green);
}

.about-role p {
  font-family: var(--font-mincho);
  font-size: 0.92rem;
  letter-spacing: 0.22em;
  line-height: 2.2;
  color: var(--c-green-deep);
}

/* ============================================
   4. ストレスリーディング®ケアとは
============================================= */
.care {
  background: var(--c-bg);
}

.care-text {
  font-size: 0.95rem;
  line-height: 2.5;
  margin-bottom: 36px;
}

.care-note {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--c-text-soft);
  margin-top: 8px;
}

/* ============================================
   5. メニュー・料金
============================================= */
.menu {
  background: var(--c-bg-beige);
}

.menu-card {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  padding: 56px 28px;
}

.menu-preparing {
  font-family: var(--font-mincho);
  font-size: 1.05rem;
  letter-spacing: 0.25em;
  color: var(--c-green-deep);
  margin-bottom: 24px;
}

.menu-preparing-sub {
  font-size: 0.9rem;
  line-height: 2.4;
  color: var(--c-text-soft);
}

/* ============================================
   6. セラピスト
============================================= */
.therapist {
  background: var(--c-bg);
}

.therapist-name {
  font-family: var(--font-mincho);
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  color: var(--c-text);
  margin-bottom: 8px;
}

.therapist-name-kana {
  font-size: 0.85rem;
  color: var(--c-text-soft);
}

.therapist-title {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  color: var(--c-text-soft);
  margin-bottom: 40px;
}

.therapist-text {
  font-size: 0.95rem;
  line-height: 2.5;
}

/* ============================================
   7. アクセス
============================================= */
.access {
  background: var(--c-bg-green);
}

.access-list {
  max-width: 420px;
  margin: 0 auto;
  text-align: left;
}

.access-row {
  display: flex;
  gap: 20px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--c-line);
}

.access-row dt {
  flex-shrink: 0;
  width: 3.5em;
  font-size: 0.9rem;
  color: var(--c-green-deep);
  letter-spacing: 0.15em;
}

.access-row dd {
  font-size: 0.93rem;
  line-height: 2.1;
}

.access-note {
  display: block;
  font-size: 0.75rem;
  color: var(--c-text-soft);
  margin-top: 6px;
  line-height: 1.9;
}

/* ============================================
   8. 公式LINE・Instagram
============================================= */
.line {
  background: var(--c-bg-beige);
}

.line-text {
  font-size: 0.95rem;
  line-height: 2.5;
  margin-bottom: 48px;
}

.line-btn {
  display: block;
  max-width: 320px;
  margin: 0 auto;
  padding: 18px 24px;
  background: var(--c-green-deep);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  transition: opacity 0.3s;
}

.line-btn:hover {
  opacity: 0.85;
}

.line-btn-note {
  font-size: 0.7rem;
  color: var(--c-text-soft);
  margin-top: 14px;
  margin-bottom: 56px;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--c-green-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--c-green);
  padding-bottom: 4px;
}

.instagram-icon {
  width: 18px;
  height: 18px;
}

/* ============================================
   フッター
============================================= */
.site-footer {
  padding: 64px 24px 40px;
  text-align: center;
  background: var(--c-bg);
}

.footer-logo {
  font-family: var(--font-mincho);
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  color: var(--c-green-deep);
  margin-bottom: 12px;
}

.footer-copy {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--c-text-soft);
  margin-bottom: 20px;
}

.footer-credit {
  font-size: 0.68rem;
  color: var(--c-text-soft);
  opacity: 0.7;
}

/* ============================================
   フェードイン（JSで .is-visible を付与）
============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 動きを減らす設定のユーザーへの配慮 */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-in { opacity: 1; transform: none; transition: none; }
  .scroll-sign span { animation: none; }
}

/* ============================================
   タブレット以上
============================================= */
@media (min-width: 768px) {
  body {
    font-size: 16px;
  }

  .site-header {
    padding: 18px 40px;
  }

  .section {
    padding: 140px 40px;
  }

  .hero-catch {
    letter-spacing: 0.4em;
  }
}
