/* =========================
   base.css（全ページ共通）
========================= */

/* =========================
   変数（レイアウトの基準）
========================= */
:root {
  --section-gap: 120px;
  /* セクションとセクションの間 */
  --section-pad-y: 80px;
  /* セクション外周（上下） */
  --section-pad-x: 250px;
  /* セクション外周（左右） */
  --inner-pad: 80px;
  /* コンテンツ箱内側 */
  --inner-radius: 16px;
  /* 箱の角丸 */
  --link-color: #c05070;
  /* ブランドピンク */
  --link-hover: #e83060;
  /* ホバー時濃いピンク */
  --link-hover-soft: #f07090;
  --brand: #c05070;
  --brand2: #e83060;
  --muted: #888;
}

/* hidden 属性リセット（display指定がある要素でも確実に非表示にする） */
[hidden] { display: none !important; }

/* =========================
   全体ベース
========================= */
body {
  margin: 0;
  color: #333;
  /* ページ全体の固定グラデーション（ヒーローとコンテンツが同一背景を共有） */
  background: linear-gradient(150deg,
    #f9c8d4 0%,
    #f5adc0 30%,
    #f090b2 60%,
    #ea7fa8 100%);
  background-attachment: fixed;
}

/* =========================
   セクション外枠
========================= */
.section {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: var(--section-pad-y) var(--section-pad-x);
  box-sizing: border-box;
}

/* セクション間の間隔（リズム） */
.section+.section {
  margin-top: var(--section-gap);
}

/* 最初と最後の端処理（好みでON） */
main>.section:first-child {
  margin-top: 0;
}

main>.section:last-child {
  margin-bottom: var(--section-gap);
}

/* =========================
   固定背景ラッパー
========================= */
.fixedbg-wrapper {
  position: relative;
  background-image: var(--fixedbg-image, none);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

/* 薄い黒幕 */
.fixedbg-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
  z-index: 0;
}

/* 中の section は前面へ */
.fixedbg-wrapper>.section {
  position: relative;
  z-index: 1;
}

.section__inner--glass {
  background: linear-gradient(135deg,
      rgba(10, 5, 6, 0.78) 0%,
      rgba(42, 11, 21, 0.72) 40%,
      rgba(63, 18, 26, 0.72) 70%,
      rgba(10, 5, 6, 0.78) 100%);
  backdrop-filter: blur(6px);
}

/* セクションカード（白・ピンク背景に浮かぶ） */
.section__inner--card {
  background: #fff;
  border-radius: 20px;
  box-shadow:
    0 16px 56px rgba(160, 40, 80, 0.22),
    0 4px 12px rgba(160, 40, 80, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

/* =========================
   セクション内コンテンツ（標準箱）
========================= */
.section__inner {
  position: relative;
  width: 100%;
  padding: var(--inner-pad);
  box-sizing: border-box;
  border-radius: var(--inner-radius);
}

/* =========================
   セクションタイトル（ベース）
========================= */

.section-title {
  position: relative;
  top: auto;
  left: auto;
  margin: 0 0 36px;
  padding: 0;
  color: #c05070;
  font-size: 42px;
  font-family: 'Cinzel', 'Noto Serif JP', serif;
  letter-spacing: 0.1em;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

/* =========================
   タイトル下の飾り線（星）
========================= */

.section-title::after {
  content: "✦  ✧  ✦";
  display: block;
  font-size: 13px;
  letter-spacing: 0.6em;
  color: rgba(192, 80, 112, 0.5);
  margin-top: 4px;
}

/* =========================
   本文テキスト（ベース）
========================= */

body {
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

/* 段落 */
p {
  margin: 0 0 1.6em 0;
  color: #444;
}

/* 強調 */
strong {
  font-weight: 700;
  color: #333;
  margin: 0 4px;
}

/* 小さめ補足テキスト */
.text-small {
  font-size: 14px;
  opacity: 0.85;
}

/* セクション内で読みやすく */
.section__inner p:last-child {
  margin-bottom: 0;
}

/* =========================
   リンク（共通ベース）
========================= */

a {
  color: var(--link-color);
  text-decoration: none;
  transition:
    color 0.25s ease,
    text-shadow 0.25s ease;
}

a:hover {
  color: var(--link-hover);
  text-shadow: 0 0 8px rgba(232, 48, 96, 0.25);
}

/* テキストリンク用 */
.link-text {
  position: relative;
}

/* 下線（通常は見えない） */
.link-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;

  width: 100%;
  height: 1px;
  background: linear-gradient(to right,
      transparent,
      var(--link-hover),
      transparent);

  opacity: 0;
  transition: opacity 0.25s ease;
}

.link-text:hover::after {
  opacity: 1;
}

/* =========================
   クリックできる箱（カード・ボタン）
========================= */

.link-box {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.link-box:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 32px rgba(255, 90, 122, 0.25);
}

/* =========================
   ホバー抑え気味
========================= */
.link-soft:hover {
  color: var(--link-hover-soft);
  text-shadow: none;
}

/* =========================
   デコレーションテキスト
========================= */

.all-text {
  display: block;
  width: 100%;
  font-size: 13px;
  text-align: center;
  margin-top: 35px;
  color: #c05070;
  letter-spacing: 0.06em;
}

.minititle-text {
  display: block;
  width: 100%;
  font-size: 22px;
  text-align: center;
  margin-top: 15px;
  color: #555;
}

.conjure-box {
  text-align: center;
}

.conjure-text {
  display: inline-block;
  width: auto;
  font-size: 13px;
  margin-top: 5px;
  color: #c05070;
  background: rgba(192, 80, 112, 0.08);
  border: 1px solid rgba(192, 80, 112, 0.25);
  padding: 8px 40px;
  border-radius: 10px;
}

.conjure-text:hover {
  text-shadow: none;
  transform: translateY(-4px);
  box-shadow:
    0 12px 32px rgba(19, 2, 5, 0.25);
}

/* =========================
   conjure お問い合わせCTA
========================= */

.conjure-contact-cta {
  margin-top: 60px;
  padding: 32px 24px;
  text-align: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.conjure-contact-text {
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: #eaeaea;
  line-height: 1.7;
}

.conjure-contact-button {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
  background: rgba(146, 146, 146, 0.541);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.conjure-contact-button:hover {
  color: #fff;
  text-shadow: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(46, 46, 46, 0.295);
  opacity: 0.95;
}