/* =============================================
   page-common.css
   全固定ページ共通スタイル
   ============================================= */

/* ─────────────────────────────
   CSS変数
───────────────────────────── */
:root {
  --navy:   #111827;
  --navy2:  #1f2937;
  --gold:   #c9a84c;
  --gold2:  #e8c96a;
  --white:  #ffffff;
  --bg:     #f9f7f4;
  --text:   #333333;
  --sub:    #666666;
  --border: #e5e0d8;
  --pink:   #e8527a;
  --max:    640px;
}

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

/* ─────────────────────────────
   共通レイアウト
───────────────────────────── */
.inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 56px 0;
}

.section + .section {
  border-top: 1px solid var(--border);
}

/* ─────────────────────────────
   共通見出し
───────────────────────────── */
.section-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Noto Serif JP', 'ヒラギノ明朝 ProN', serif;
  font-size: clamp(1.3rem, 4.5vw, 1.7rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: 24px;
}

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

.lead {
  font-size: .92rem;
  color: var(--sub);
  line-height: 2;
  margin-bottom: 32px;
}


/* ─────────────────────────────
   共通カードベース
───────────────────────────── */
.card-base {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  padding: 22px 20px;
}

/* ─────────────────────────────
   共通アクセントボックス（左ボーダー）
───────────────────────────── */
.accent-box {
  background: #fdf8f0;
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  font-size: .88rem;
  line-height: 2;
  color: var(--sub);
	
}

/* ─────────────────────────────
   ライセンスボックス
───────────────────────────── */
.license-box {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  color: var(--white);
}

.license-box p {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 6px;
}

.license-box strong {
  color: var(--gold2);
  font-size: 1rem;
  letter-spacing: .06em;
}

/* ─────────────────────────────
   ネイビー背景セクション
───────────────────────────── */
.section--dark {
  background: var(--navy);
  padding: 56px 0;
}

.section--dark .section-title {
  color: var(--white);
  text-align: center;
}

.section--dark .section-label {
  display: block;
  text-align: center;
}
/* =============================================
   固定ページ共通CTA（page.php埋め込み）
   ============================================= */
.page-cta {
  background: linear-gradient(135deg, #F472B6 0%, #C084FC 50%, #818CF8 100%);
  padding: 56px 0;
  text-align: center;
}
.page-cta__inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 16px;
}
.page-cta__label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: #fde68a;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.page-cta__title {
  font-size: clamp(1.3rem, 4.5vw, 1.7rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.45;
  margin-bottom: 16px;
}
.page-cta__title em {
  color: #fde68a;
  font-style: normal;
}
.page-cta__text {
  font-size: .88rem;
  color: rgba(255,255,255,.85);
  line-height: 2;
  margin-bottom: 28px;
}
.page-cta__btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.page-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 320px;
  padding: 15px 24px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .04em;
  cursor: pointer;
  box-sizing: border-box;
  transition: transform .2s ease;
}
.page-cta__btn:hover { transform: translateY(-2px); }
.page-cta__btn--line {
  display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 28px;
    width: 90%;
    background: #06C755;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 10px;
    text-decoration: none;
    letter-spacing: .04em;
    box-shadow: 0 4px 14px rgba(6, 199, 85, .30);
    transition: background .18s ease, transform .18s ease;
}
.page-cta__btn--line:hover { background: #05b34c; }
.page-cta__btn--tel {
 display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 28px;
    width: 90%;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, .6);
    text-decoration: none;
    letter-spacing: .06em;
    backdrop-filter: blur(4px);
    transition: background .18s ease, transform .18s ease;
}
.page-cta__btn--tel:hover { background: #f5f3ff; }

@media (max-width: 400px) {
  .page-cta__btn { max-width: 100%; }
}
/* ─────────────────────────────
   レスポンシブ
───────────────────────────── */
@media (max-width: 400px) {
  .cta-btn {
    max-width: 100%;
  }
}