﻿/* ===== ADMIX - 共通スタイル ===== */

/* ===== 固定背景ロゴ（全ページ共通） ===== */
.bg-logo-fixed {
  position: fixed;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.bg-logo-fixed img {
  width: min(700px, 90vw);
  opacity: 0.05;
  filter: none;
}
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&family=Playfair+Display:wght@400;700&display=swap');

:root {
  /* ロゴグラデーション抽出カラー
     シアン #2dcfea  →  パープル #7b4fd4  →  マゼンタ #e83fbe  */
  --accent:        #a06adc;   /* メインアクセント（パープル中間） */
  --accent-light:  #c99bf5;   /* 見出し・ホバー文字（明るいラベンダー） */
  --accent-cyan:   #4dd8e8;   /* シアン寄り強調 */
  --accent-magenta:#e03db5;   /* マゼンタ寄り強調 */
  --accent-dim:    #5a3a8a;   /* ボーダー・区切り線用（暗めパープル） */

  /* 後方互換：既存の --gold 参照箇所をパープルに置換 */
  --gold:          #a06adc;
  --gold-light:    #c99bf5;
  --gold-dim:      #5a3a8a;

  --black: #000000;
  --dark:  #06050a;            /* 黒に極わずかパープル */
  --dark2: #0d0b14;            /* カード背景 */
  --dark3: #15101f;            /* より深い背景 */
  --white:      #eee8f8;       /* 純白→ラベンダーがかった明るい白 */
  --gray:       #7a6e96;       /* サブテキスト（ミディアムパープルグレー） */
  --gray-light: #b8aad4;       /* 本文（ソフトラベンダー） */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  color: var(--gray-light);      /* ベース文字色をサンドトーンに */
  font-family: 'Shippori Mincho', serif;
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}

/* ===== ナビゲーション ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(6,5,10,0.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(160,106,220,0.25);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 45px;
  filter: none;
  opacity: 0.85;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0;
}

.nav-menu li a {
  display: block;
  padding: 8px 18px;
  color: var(--gray-light);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  transition: color 0.3s;
  position: relative;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 18px;
  right: 18px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--gold);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
  transform: scaleX(1);
}

/* ハンバーガーメニュー */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

/* ===== ページヘッダー ===== */
.page-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  padding-top: 70px;
  text-align: center;
  background: linear-gradient(180deg, rgba(160,106,220,0.07) 0%, transparent 100%);
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.page-hero p {
  color: var(--gray);
  letter-spacing: 0.2em;
  font-size: 0.85rem;
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto;
}

/* ===== セクション共通 ===== */
section {
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--gold);
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  margin-bottom: 50px;
}

/* ===== カード ===== */
.card {
  background: var(--dark2);
  border: 1px solid rgba(160,106,220,0.18);
  border-radius: 2px;
  padding: 30px;
  transition: border-color 0.3s, transform 0.3s;
}

.card:hover {
  border-color: rgba(160,106,220,0.55);
  transform: translateY(-3px);
}

/* ===== ボタン ===== */
.btn {
  display: inline-block;
  padding: 12px 36px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  transition: all 0.3s;
  cursor: pointer;
  background: transparent;
  font-family: 'Shippori Mincho', serif;
}

.btn:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-solid {
  background: var(--gold);
  color: var(--black);
}

.btn-solid:hover {
  background: var(--gold-light);
}

/* ===== フッター ===== */
footer {
  background: var(--dark2);
  border-top: 1px solid rgba(160,106,220,0.18);
  padding: 50px 40px 30px;
  text-align: center;
}

.footer-logo {
  height: 50px;
  filter: none;
  opacity: 0.4;
  margin-bottom: 20px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  margin-bottom: 30px;
}

.footer-nav li a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  transition: color 0.3s;
}

.footer-nav li a:hover {
  color: var(--gold);
}

.footer-address {
  color: var(--gray);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  line-height: 1.8;
}

.footer-copy {
  color: var(--gray);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

/* ===== ゴールドライン装飾 ===== */
.gold-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 15px auto;
}

/* ===== ネオン発光 ===== */

/* divider（区切り線）*/
.divider {
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-magenta));
  box-shadow:
    0 0 6px rgba(77,216,232,0.7),
    0 0 18px rgba(224,61,181,0.4);
}

/* section-title */
.section-title {
  text-shadow:
    0 0 10px rgba(77,216,232,0.5),
    0 0 28px rgba(224,61,181,0.35);
}

/* page-hero h1 */
.page-hero h1 {
  text-shadow:
    0 0 12px rgba(77,216,232,0.45),
    0 0 32px rgba(224,61,181,0.3);
}

/* nav ボーダー */
nav {
  border-bottom-color: rgba(77,216,232,0.3);
  box-shadow: 0 1px 20px rgba(224,61,181,0.12);
}

/* nav アクティブ・ホバーのアンダーライン */
.nav-menu li a::after {
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-magenta));
  box-shadow: 0 0 6px rgba(77,216,232,0.7);
}

/* カード */
.card {
  border-color: rgba(77,216,232,0.15);
  box-shadow:
    0 0 0 1px rgba(224,61,181,0.05),
    inset 0 0 12px rgba(160,106,220,0.03);
}

.card:hover {
  border-color: rgba(77,216,232,0.45);
  box-shadow:
    0 0 12px rgba(77,216,232,0.2),
    0 0 30px rgba(224,61,181,0.12),
    inset 0 0 12px rgba(160,106,220,0.04);
}

/* フッター */
footer {
  border-top-color: rgba(77,216,232,0.2);
  box-shadow: 0 -1px 24px rgba(224,61,181,0.08);
}

/* ===== テーブル ===== */
table {
  width: 100%;
  border-collapse: collapse;
}

table th {
  color: var(--gold);
  font-weight: 500;
  padding: 12px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(160,106,220,0.22);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

table td {
  padding: 12px 20px;
  border-bottom: 1px solid rgba(160,106,220,0.10);
  font-size: 0.9rem;
  color: var(--gray-light);
}

table tr:last-child td {
  border-bottom: none;
}

/* ===== レスポンシブ ===== */
@media (max-width: 768px) {
  nav {
    padding: 0 20px;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(6,5,10,0.98);
    flex-direction: column;
    align-items: center;
    padding: 20px 0 30px;
    gap: 5px;
    transform: translateY(-150%);
    transition: transform 0.4s;
    border-bottom: 1px solid rgba(160,106,220,0.22);
  }

  .nav-menu.open {
    transform: translateY(0);
  }

  .nav-menu li a {
    font-size: 0.9rem;
    padding: 12px 24px;
  }

  section {
    padding: 60px 20px;
  }

  .page-hero {
    min-height: 30vh;
  }
}
