/*
Theme Name: Athena Theme
Theme URI:
Author: Jinrai Co., Ltd.
Description: アシーナ株式会社 コーポレートサイト カスタムテーマ
Version: 1.1.0
Text Domain: athena
*/

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.9;
  color: var(--color-text);
  background-color: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── SVGアイコンのサイズ制御 ── */
svg { max-width: 100%; height: auto; }
.btn svg,
.link-arrow svg,
.card__icon svg,
.badge__icon svg,
.checklist__icon svg,
.accordion__trigger-icon svg,
.voice-section__quote-icon svg,
.voice-section__nav-btn svg,
.header__nav-link svg,
.mobile-menu-toggle svg,
.mobile-menu__close svg,
.footer__social svg,
.seminar-section__status svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}
.btn--lg svg { width: 20px; height: 20px; }
.mobile-menu-toggle svg { width: 24px; height: 24px; }
.mobile-menu__close svg { width: 20px; height: 20px; }
.voice-section__quote-icon svg { width: 32px; height: 32px; }
.card__icon svg { width: 24px; height: 24px; }

/* ── コンテナ ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

/* ── セクション ── */
.section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}
.section--cream { background-color: var(--color-cream); }
.section--white { background-color: var(--color-white); }
.section--dark  { background-color: var(--color-dark); color: var(--color-white); }

/* ── セクションラベル（英字 — ラグジュアリー装飾） ── */
.section__label {
  font-family: var(--font-accent);
  font-size: 13px;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section__label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--color-gold);
  flex-shrink: 0;
}
.text-center .section__label,
.section__label.text-center {
  justify-content: center;
}
.section--dark .section__label { color: var(--color-rosegold); }
.section--dark .section__label::before { background: var(--color-rosegold); }

/* ── セクション見出し（ピンクゴールド） ── */
.section__title {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: 500;
  background: linear-gradient(135deg, #B8956A 0%, #C9917B 40%, #D4A48A 60%, #B8956A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2.5rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
.section--dark .section__title {
  background: linear-gradient(135deg, #e8d0bc 0%, #f0ddd0 40%, #e8d0bc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) {
  .section__title { font-size: var(--fs-3xl); }
}

/* ── 見出し共通（ピンクゴールド） ── */
h1, h2, h3 {
  font-family: var(--font-heading);
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-dark);
}
h1 { font-size: var(--fs-3xl); font-weight: 600; }
h2 {
  font-size: var(--fs-2xl);
  font-weight: 500;
  background: linear-gradient(135deg, #B8956A 0%, #C9917B 40%, #D4A48A 60%, #B8956A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
h3 { font-size: var(--fs-xl); font-weight: 500; }
@media (min-width: 768px) {
  h1 { font-size: var(--fs-4xl); }
  h2 { font-size: var(--fs-3xl); }
}

/* ── テキストユーティリティ ── */
.text-muted  { color: var(--color-muted); }
.text-gold   { color: var(--color-gold); }
.text-berry  { color: var(--color-berry); }
.text-center { text-align: center; }

/* ── グリッド ── */
.grid { display: grid; gap: 2.5rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 768px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* ── ラグジュアリー装飾 ── */
.luxury-divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 2rem auto;
}

/* ── sr-only ── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ── モバイル固定CTA分の余白 ── */
@media (max-width: 767px) {
  body { padding-bottom: 60px; }
}
