/* ============================================
   ZanarkandClub KAWASAKI v2 - Common Styles
   黒 × パープル × ゴールド
   全ページ共通スタイル
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:wght@300;400;500;600&family=Noto+Serif+JP:wght@300;400;500;600;700&display=swap');

:root {
    --bg-black: #0a0a0a;
    --bg-dark: #141014;
    --bg-card: #1a1218;
    --purple: #7a3aa6;
    --purple-light: #a259d9;
    --purple-deep: #4a1f6d;
    --purple-glow: rgba(162, 89, 217, 0.4);
    --gold: #d4af37;
    --gold-light: #f0d97a;
    --gold-dim: rgba(212, 175, 55, 0.3);
    --text-light: #e8e3ee;
    --text-dim: #b5acc1;
    --text-muted: #8a7d99;
    --border: rgba(212, 175, 55, 0.25);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    background-color: var(--bg-black);
    color: var(--text-light);
    font-family: 'Noto Serif JP', 'Cormorant Garamond', serif;
    font-weight: 300;
    line-height: 1.9;
    letter-spacing: 0.05em;
    overflow-x: hidden;
    padding-bottom: 0;
    /* 日本語の自然な改行制御 */
    word-break: auto-phrase;
    overflow-wrap: anywhere;
    line-break: strict;
}

/* 日本語の文末・記号での改行を避ける */
p, h1, h2, h3, h4, dd, dt, li, td, th, span {
    word-break: auto-phrase;
    overflow-wrap: anywhere;
    line-break: strict;
}

/* キャッチコピーやヒーロー見出し用の調整 */
.balance-text {
    text-wrap: balance;
}

/* 改行禁止クラス */
.nowrap {
    white-space: nowrap;
    display: inline-block;
}

a {
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold);
}

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

/* ============= ヘッダー（全ページ共通） ============= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--gold-dim);
    padding: 0.7em 1.5em;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header .logo-link {
    display: flex;
    align-items: center;
    gap: 0.8em;
}

.site-header .logo-img {
    width: 48px;
    height: 48px;
    border-radius: 4px;
}

.site-header .site-title {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 1.05em;
    letter-spacing: 0.18em;
    line-height: 1;
}

.site-header .site-title small {
    display: block;
    font-size: 0.7em;
    color: var(--text-dim);
    letter-spacing: 0.3em;
    margin-top: 0.3em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.8em;
}

.site-nav a {
    font-family: 'Cinzel', serif;
    color: var(--text-light);
    font-size: 0.9em;
    letter-spacing: 0.18em;
    position: relative;
    padding: 0.4em 0;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--gold);
}

.site-nav a.active::after,
.site-nav a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
}

.site-nav .header-tel {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 0.95em;
    letter-spacing: 0.05em;
    border: 1px solid var(--gold);
    padding: 0.4em 0.9em;
    border-radius: 2px;
}

.site-nav .header-tel:hover {
    background: var(--gold);
    color: var(--bg-black);
}

/* ハンバーガー */
.menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--gold);
    color: var(--gold);
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.2em;
}

@media (max-width: 900px) {
    .site-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(10, 10, 10, 0.98);
        padding: 1em 0;
        border-bottom: 1px solid var(--gold-dim);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    .site-nav.open {
        max-height: 500px;
    }
    .site-nav a {
        padding: 0.9em 1.5em;
        width: 100%;
        text-align: center;
    }
    .menu-toggle { display: block; }
    .site-header .site-title { font-size: 0.9em; }
    .site-header .logo-img { width: 40px; height: 40px; }
}

/* ============= ヒーローセクション（各ページ） ============= */
.page-hero {
    height: 80vh;
    min-height: 480px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 70px;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.85) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 2em;
    max-width: 800px;
}

.page-hero h1 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: clamp(2em, 5vw, 3.6em);
    letter-spacing: 0.3em;
    margin-bottom: 0.4em;
    text-shadow: 0 0 30px var(--purple-glow);
}

.page-hero .subtitle {
    color: var(--text-light);
    font-size: clamp(0.9em, 2vw, 1.1em);
    letter-spacing: 0.4em;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

@media (max-width: 736px) {
    .page-hero {
        background-attachment: scroll;
        height: 60vh;
        min-height: 380px;
    }
}

/* ============= セクション共通 ============= */
.section {
    padding: 5em 1.5em;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3em;
}

.section-header h2 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 2.2em;
    letter-spacing: 0.25em;
    margin-bottom: 0.4em;
    text-shadow: 0 0 20px var(--purple-glow);
}

.section-header .section-sub {
    color: var(--text-dim);
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05em;
    letter-spacing: 0.25em;
}

.section-header .section-sub::before,
.section-header .section-sub::after {
    content: '— ';
    color: var(--gold);
}
.section-header .section-sub::after { content: ' —'; }

@media (max-width: 736px) {
    .section { padding: 3em 1em; }
    .section-header h2 { font-size: 1.7em; }
}

/* ============= ボタン共通 ============= */
.btn {
    display: inline-block;
    padding: 0.9em 2em;
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
    font-family: 'Noto Serif JP', serif;
    font-size: 0.95em;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
}

.btn:hover {
    background: var(--gold);
    color: var(--bg-black);
    box-shadow: 0 0 24px var(--gold-dim);
}

.btn-primary {
    background: var(--purple);
    color: #fff;
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold);
    color: var(--bg-black);
}

.btn-line {
    background: #06c755;
    border-color: #06c755;
    color: #fff;
}

.btn-line:hover {
    background: #04a142;
    border-color: var(--gold);
    color: #fff;
}

.btn-tel {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-black);
}

.btn-tel:hover {
    background: var(--gold-light);
}

.btn-large {
    padding: 1.1em 3em;
    font-size: 1.05em;
}

.btn-group {
    display: flex;
    gap: 1em;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2em;
}

/* ============= フッター（全ページ共通） ============= */
.site-footer {
    background: var(--bg-black);
    border-top: 1px solid var(--gold-dim);
    padding: 4em 1.5em 2em;
    margin-top: 4em;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 3em;
    margin-bottom: 3em;
}

.footer-block h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 1.1em;
    letter-spacing: 0.2em;
    margin-bottom: 1em;
    border-bottom: 1px solid var(--gold-dim);
    padding-bottom: 0.6em;
}

.footer-block p,
.footer-block li {
    color: var(--text-dim);
    font-size: 0.92em;
    line-height: 1.9;
    list-style: none;
}

.footer-block ul li a {
    color: var(--text-dim);
    transition: color 0.3s;
}

.footer-block ul li a:hover { color: var(--gold); }

.footer-sns {
    display: flex;
    gap: 1em;
    margin-top: 1em;
}

.footer-sns a {
    width: 44px;
    height: 44px;
    border: 1px solid var(--gold-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2em;
    transition: all 0.3s;
}

.footer-sns a:hover {
    background: var(--gold);
    color: var(--bg-black);
    transform: translateY(-3px);
}

.footer-sns a.line:hover { background: #06c755; color: #fff; }
.footer-sns a.ig:hover { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.footer-sns a.tt:hover { background: #000; color: #fff; }

.footer-copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85em;
    letter-spacing: 0.15em;
    border-top: 1px solid var(--gold-dim);
    padding-top: 1.5em;
    margin-top: 2em;
}

@media (max-width: 736px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2em;
    }
    .site-footer { padding: 3em 1em 1em; }
}

/* ============= スマホ用固定CTAバー ============= */
.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    display: none;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--gold);
    padding: 0.5em;
    gap: 0.5em;
}

.mobile-cta a {
    flex: 1;
    text-align: center;
    padding: 0.9em 0.5em;
    color: #fff;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.2em;
    font-size: 0.9em;
    border-radius: 4px;
    text-decoration: none;
    border: 1px solid var(--gold);
}

.mobile-cta a.tel {
    background: var(--gold);
    color: var(--bg-black);
}

.mobile-cta a.line {
    background: #06c755;
    border-color: #06c755;
}

@media (max-width: 736px) {
    .mobile-cta { display: flex; }
    body { padding-bottom: 65px; }
}

/* ============= フェードイン演出 ============= */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============= 装飾 ============= */
.divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 2em auto;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
}
