/* =========================================
   中森ゆきこ 自己紹介ページ
   40〜60代の女性・ITが苦手な方向けに
   あたたかく、読みやすく、安心できるデザイン
========================================= */

:root {
  --bg: #fffaf4;
  --bg-soft: #fff1e6;
  --bg-card: #ffffff;
  --accent: #f2a6a0;       /* さんご色ピンク */
  --accent-dark: #e2857e;
  --accent-soft: #ffe3df;
  --accent2: #ffd39a;      /* あたたかい黄色 */
  --accent2-soft: #fff2dc;
  --text: #5a4a3f;         /* やわらかい茶色（黒より優しい） */
  --text-light: #8d7a6c;
  --white: #ffffff;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 10px 30px rgba(180, 130, 100, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 18px;
  line-height: 1.95;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

p {
  margin: 0 0 1em 0;
}

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

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

/* ---------- ヘッダー ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 244, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--accent-soft);
}

.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.logo {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--accent-dark);
}

.nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.nav a:hover,
.nav a:focus {
  background: var(--accent-soft);
}

/* ---------- ヒーロー ---------- */
.hero {
  position: relative;
  padding: 64px 24px 120px;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  text-align: center;
  overflow: hidden;
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-photo {
  width: 200px;
  height: 200px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--white);
  border: 6px solid var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-photo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.hero-eyebrow {
  font-size: 1.05rem;
  color: var(--accent-dark);
  font-weight: 700;
  margin-bottom: 8px;
}

.hero-title {
  font-size: 2.4rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.hero-nickname {
  font-size: 1.3rem;
  color: var(--text-light);
  font-weight: 500;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 90px;
}

.hero-wave path {
  fill: var(--white);
}

/* ---------- ボタン ---------- */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(226, 133, 126, 0.35);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--white);
  color: var(--accent-dark);
  border: 2px solid var(--accent-soft);
}

.btn-secondary:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.15rem;
}

/* ---------- 肩書きバッジ ---------- */
.badges {
  max-width: 1080px;
  margin: -70px auto 0;
  padding: 0 24px 40px;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.badge-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}

.badge-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 12px;
}

.badge-card p {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--text);
}

/* ---------- 共通セクション ---------- */
.section {
  padding: 90px 24px;
}

.section-inner {
  max-width: 780px;
  margin: 0 auto;
}

.section-eyebrow {
  text-align: center;
  color: var(--accent-dark);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 24px;
}

.section-desc {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 48px;
}

/* ---------- プロフィール ---------- */
.profile-section {
  background: var(--white);
}

.story-card {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
}

.highlight {
  color: var(--accent-dark);
}

/* ---------- 講座実績 ---------- */
.lesson-section {
  background: var(--bg);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lesson-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

.lesson-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 16px;
}

.lesson-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.lesson-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
}

/* ---------- 制作実績 ---------- */
.work-section {
  background: var(--white);
}

.work-list {
  list-style: none;
  margin: 0 0 48px;
  padding: 0;
  display: grid;
  gap: 16px;
}

.work-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-soft);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  font-weight: 500;
}

.work-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.quote-box {
  background: var(--accent2-soft);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}

.quote-box p {
  margin: 0 0 0.6em;
}

.quote-big {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-dark);
  line-height: 1.7;
  margin: 16px 0 !important;
}

/* ---------- 活動の目的 ---------- */
.mission-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}

.mission-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow);
}

.mission-highlight {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent-dark);
  margin-top: 24px !important;
  line-height: 1.9;
}

/* ---------- お問い合わせ ---------- */
.contact-section {
  background: var(--white);
  text-align: center;
}

.contact-buttons {
  margin-bottom: 16px;
}

.contact-note {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ---------- フッター ---------- */
.site-footer {
  background: var(--accent-soft);
  text-align: center;
  padding: 40px 24px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0 0 6px;
}

.footer-copy {
  font-size: 0.8rem;
}

/* ---------- レスポンシブ ---------- */
@media (max-width: 760px) {
  body {
    font-size: 17px;
  }

  .nav {
    justify-content: center;
    width: 100%;
  }

  .header-inner {
    justify-content: center;
    text-align: center;
  }

  .hero {
    padding: 48px 20px 100px;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .badges,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .badges {
    margin-top: -60px;
  }

  .section {
    padding: 64px 20px;
  }

  .story-card,
  .mission-card,
  .quote-box {
    padding: 30px 24px;
  }

  .quote-big {
    font-size: 1.25rem;
  }
}
