@charset "UTF-8";

/* =========================================
   基本設定：フォントと変数
   ========================================= */
:root {
    --bg-color: #121212;
    --text-color: #f0f0f0;
    --accent-color: #c9a063; /* STUNNERゴールド */
    --font-en: "Cinzel", serif;
    --font-jp: "Shippori Mincho", "Hiragino Mincho ProN", serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-jp);
    line-height: 1.8;
    letter-spacing: 0.05em;
    overflow-x: hidden; /* 横揺れ防止 */
}

h1, h2, h3, .logo, .nav a, .catch-copy, .btn, .section-title {
    font-family: var(--font-en);
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* =========================================
   オープニング（ローディング）
   ========================================= */
#loading {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: #000; z-index: 9999;
    display: flex; justify-content: center; align-items: center;
    transition: opacity 1s ease, visibility 1s ease;
}
#loading.loaded { opacity: 0; visibility: hidden; }
.loading-logo {
    font-size: 3rem; color: var(--accent-color); letter-spacing: 0.2em;
    animation: pulse 2s infinite;
}
@keyframes pulse { 0% { opacity: 0.5; } 50% { opacity: 1; } 100% { opacity: 0.5; } }

/* =========================================
   ヘッダー
   ========================================= */
.header {
    position: fixed; top: 0; width: 100%;
    background-color: rgba(0, 0, 0, 0.85); backdrop-filter: blur(10px);
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 30px; z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.logo { font-size: 1.5rem; font-weight: 700; color: #fff; letter-spacing: 0.1em; }
.nav ul { display: flex; gap: 20px; }
.nav a { font-size: 0.85rem; color: #ccc; font-weight: 600; }
.nav a:hover { color: var(--accent-color); }

/* =========================================
   共通レイアウト
   ========================================= */
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }
.section { padding: 100px 0; }
.section-title {
    font-size: 2.5rem; text-align: center; margin-bottom: 60px;
    color: var(--accent-color); letter-spacing: 0.1em;
}

/* ボタン */
.btn {
    display: inline-block; padding: 15px 40px;
    border: 1px solid var(--accent-color); color: var(--accent-color);
    letter-spacing: 0.1em; font-weight: bold; cursor: pointer;
}
.btn:hover { background-color: var(--accent-color); color: #000; }

.btn-primary { background: rgba(0,0,0,0.6); }

/* =========================================
   ヒーローセクション（動画背景）
   ========================================= */
.hero {
    height: 100vh; position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center; text-align: center;
}
.hero-video {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 100%; height: 100%; object-fit: cover; z-index: -2;
}
.hero::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5); z-index: -1;
}
.hero-content { position: relative; z-index: 1; }
.catch-copy { font-size: 1.2rem; margin-bottom: 15px; color: var(--accent-color); font-family: var(--font-jp); }
.hero h1 {
    font-size: 4.5rem; line-height: 1.1; margin-bottom: 30px;
    text-shadow: 0 0 30px rgba(0,0,0,0.8);
}
.sub-copy { margin-bottom: 40px; font-size: 1rem; opacity: 0.9; }

/* =========================================
   NEWS & LIST Styles
   ========================================= */
.news-list { max-width: 800px; margin: 0 auto; border-top: 1px solid #333; }
.news-item {
    display: flex; flex-wrap: wrap; align-items: baseline;
    padding: 25px 0; border-bottom: 1px solid #333;
}
.news-item dt { width: 120px; font-family: var(--font-en); color: #888; font-size: 0.9rem; }
.news-item dd { flex: 1; }
.badge {
    background: var(--accent-color); color: #000; font-size: 0.7rem;
    padding: 2px 8px; margin-right: 10px; font-weight: bold;
}

/* =========================================
   ABOUT (パララックス)
   ========================================= */
.about {
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/hero.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    padding: 140px 0;
}
.about-text { font-size: 1.1rem; line-height: 2.2; }

/* =========================================
   MENU Grid
   ========================================= */
.menu-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.menu-item { text-align: center; overflow: hidden; }
.menu-img {
    width: 100%; height: 250px; object-fit: cover;
    margin-bottom: 20px; filter: brightness(0.9);
    transition: transform 0.8s ease;
}
.menu-item:hover .menu-img { transform: scale(1.1); filter: brightness(1.1); }
.menu-item h3 { font-size: 1.3rem; margin-bottom: 10px; color: #fff; }
.menu-item p { font-size: 0.9rem; color: #aaa; }

/* =========================================
   ACCESS & INSTAGRAM
   ========================================= */
.access-wrapper { display: flex; flex-wrap: wrap; gap: 40px; justify-content: center; }
.access-text { flex: 1; min-width: 300px; }
.map-container { flex: 1; min-width: 300px; height: 350px; }
.map-container iframe { width: 100%; height: 100%; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background-color: #000; text-align: center; padding: 50px 0;
    font-size: 0.8rem; border-top: 1px solid #222;
}
.footer-nav { margin-bottom: 20px; }
.footer-nav a { color: #888; margin: 0 10px; }
.social-links a { margin: 0 15px; color: #fff; font-weight: bold; border-bottom: 1px solid transparent; }
.social-links a:hover { border-bottom: 1px solid var(--accent-color); color: var(--accent-color); }

/* =========================================
   追従予約ボタン
   ========================================= */
.floating-btn {
    position: fixed; bottom: 20px; right: 20px;
    background-color: var(--accent-color); color: #000;
    padding: 15px 30px; font-family: var(--font-en); font-weight: bold;
    border-radius: 50px; box-shadow: 0 4px 15px rgba(201, 160, 99, 0.4);
    z-index: 9000; transition: 0.3s;
}
.floating-btn:hover { transform: translateY(-5px); box-shadow: 0 6px 20px rgba(201, 160, 99, 0.6); }

/* =========================================
   アニメーション & スマホ対応
   ========================================= */
.fade-in { opacity: 0; transform: translateY(30px); transition: 1s; }
.fade-in.show { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
    .header { padding: 15px; }
    .hero h1 { font-size: 2.8rem; }
    .nav ul { gap: 10px; }
    .nav a { font-size: 0.7rem; }
    .floating-btn { width: 90%; left: 5%; right: 5%; text-align: center; bottom: 15px; }
}/* =========================================
   FAQ専用デザイン (追加)
   ========================================= */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid #333;
}
.faq-item {
    padding: 30px 0;
    border-bottom: 1px solid #333;
}
.faq-item dt {
    font-family: var(--font-jp); /* 質問は読みやすい日本語フォントで */
    font-weight: bold;
    font-size: 1.15rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    width: 100%; /* 横幅いっぱいに使う */
    line-height: 1.6;
}
.faq-item dt::before {
    content: "Q. ";
    font-family: var(--font-en);
}
.faq-item dd {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.8;
    padding-left: 0;
}
.faq-item dd::before {
    content: "A. ";
    font-family: var(--font-en);
    color: #888;
    font-weight: bold;
    margin-right: 5px;
}