/*
Theme Name: coral_hapstyle
Theme URI: https://clearmoon.stars.ne.jp/
Author: ClearMoon
Author URI: https://clearmoon.stars.ne.jp/
Description: Communication Bar向けの隠れ家的なテーマ。黒を基調とした金と赤をアクセントにした上品なデザインです。
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: coral_hapstyle
*/

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* iPhoneの自動テキストサイズ変更対策 */
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* iPhoneの自動テキストサイズ変更対策 */
html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* ページ全体のフェードインアニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(var(--color-gold-rgb), 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(var(--color-gold-rgb), 0.6);
    }
}

body {
    font-family: 'Times New Roman', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', serif;
    background: #0a0a0a url('images/wallpaper.jpg') center/cover no-repeat fixed;
    background-attachment: fixed;
    color: #ededed;
    line-height: 1.7;
    min-height: 100vh;
    position: relative;
    animation: fadeIn 1.5s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
    /* iPhoneの自動テキストサイズ変更対策 */
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a url('images/wallpaper.jpg') center/cover no-repeat;
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(var(--color-gold-rgb), 0.05) 50%,
        rgba(0, 0, 0, 0.85) 100%
    );
    z-index: -1;
    transition: background 0.5s ease;
}

/* コーラルグラデーションテーマ用の背景オーバーレイ */
body.theme-coral-gradient::after,
body.theme-coral-red-gradient::after,
body.theme-coral-sunset-gradient::after,
body.theme-coral-lilac-gradient::after,
body.theme-coral-deepsea-gradient::after {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(var(--color-gradient-start-rgb, var(--color-gold-rgb)), 0.08) 20%,
        rgba(var(--color-gradient-mid-rgb, var(--color-gold-rgb)), 0.08) 50%,
        rgba(var(--color-gradient-end-rgb, var(--color-red-rgb)), 0.08) 80%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

/* ふんわりした浮遊要素 */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--color-gold-rgb), 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.floating-element:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 6s;
}

.floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 40%;
    left: 80%;
    animation-delay: 4s;
    animation-duration: 7s;
}

.floating-element:nth-child(4) {
    width: 40px;
    height: 40px;
    top: 80%;
    left: 20%;
    animation-delay: 1s;
    animation-duration: 5s;
}

.floating-element:nth-child(5) {
    width: 120px;
    height: 120px;
    top: 10%;
    right: 30%;
    animation-delay: 3s;
    animation-duration: 9s;
}

/* キラキラ効果（強化版） */
.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
    animation: sparkle 3s ease-in-out infinite;
    box-shadow: 0 0 10px var(--color-gold), 0 0 20px var(--color-gold);
}

.sparkle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 2px;
    background: var(--color-red);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: sparkleInner 2s ease-in-out infinite;
}

.sparkle:nth-child(6) {
    top: 30%;
    left: 30%;
    animation-delay: 0s;
}

.sparkle:nth-child(7) {
    top: 70%;
    right: 40%;
    animation-delay: 1s;
}

.sparkle:nth-child(8) {
    top: 50%;
    left: 60%;
    animation-delay: 0.5s;
}

.sparkle:nth-child(9) {
    top: 15%;
    right: 20%;
    animation-delay: 1.5s;
}

.sparkle:nth-child(10) {
    top: 85%;
    left: 50%;
    animation-delay: 2s;
}

.sparkle:nth-child(11) {
    top: 40%;
    right: 10%;
    animation-delay: 0.8s;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    25% {
        opacity: 0.5;
        transform: scale(0.5) rotate(90deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
        box-shadow: 0 0 15px var(--color-gold), 0 0 30px var(--color-gold), 0 0 45px var(--color-gold);
    }
    75% {
        opacity: 0.5;
        transform: scale(0.5) rotate(270deg);
    }
}

@keyframes sparkleInner {
    0%, 100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(2);
    }
}

/* 追加のキラキラ効果（テーマに応じて色が変わる） */
.floating-element {
    filter: blur(1px);
}

.theme-coral-red .floating-element {
    background: radial-gradient(circle, rgba(247, 90, 43, 0.15) 0%, transparent 70%);
    box-shadow: 0 0 20px rgba(247, 90, 43, 0.2);
}

.theme-coral-gradient .floating-element,
.theme-coral-red-gradient .floating-element,
.theme-coral-sunset-gradient .floating-element,
.theme-coral-lilac-gradient .floating-element,
.theme-coral-deepsea-gradient .floating-element {
    background: radial-gradient(circle, rgba(var(--color-gradient-mid-rgb, var(--color-gold-rgb)), 0.2) 0%, transparent 70%);
    box-shadow: 0 0 25px rgba(var(--color-gradient-mid-rgb, var(--color-gold-rgb)), 0.3),
                0 0 50px rgba(var(--color-gradient-start-rgb, var(--color-red-rgb)), 0.2);
    animation: float 6s ease-in-out infinite, glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 25px rgba(var(--color-gradient-mid-rgb, var(--color-gold-rgb)), 0.3),
                    0 0 50px rgba(var(--color-gradient-start-rgb, var(--color-red-rgb)), 0.2);
    }
    50% {
        box-shadow: 0 0 35px rgba(var(--color-gradient-mid-rgb, var(--color-gold-rgb)), 0.5),
                    0 0 70px rgba(var(--color-gradient-start-rgb, var(--color-red-rgb)), 0.4);
    }
}

/* コーラルグラデーションテーマ用の強化されたキラキラ効果 */
.theme-coral-gradient .sparkle,
.theme-coral-red-gradient .sparkle,
.theme-coral-sunset-gradient .sparkle,
.theme-coral-lilac-gradient .sparkle,
.theme-coral-deepsea-gradient .sparkle {
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(var(--color-gradient-mid-rgb, var(--color-gold-rgb)), 1) 0%, rgba(var(--color-gradient-start-rgb, var(--color-red-rgb)), 1) 100%);
    box-shadow: 
        0 0 10px rgba(var(--color-gradient-mid-rgb, var(--color-gold-rgb)), 0.8),
        0 0 20px rgba(var(--color-gradient-mid-rgb, var(--color-gold-rgb)), 0.6),
        0 0 30px rgba(var(--color-gradient-start-rgb, var(--color-red-rgb)), 0.4),
        0 0 40px rgba(var(--color-gradient-start-rgb, var(--color-red-rgb)), 0.2);
    animation: sparkle 3s ease-in-out infinite, sparkleGlow 2s ease-in-out infinite;
}

.theme-coral-gradient .sparkle::before,
.theme-coral-red-gradient .sparkle::before,
.theme-coral-sunset-gradient .sparkle::before,
.theme-coral-lilac-gradient .sparkle::before,
.theme-coral-deepsea-gradient .sparkle::before {
    width: 3px;
    height: 3px;
    background: rgba(var(--color-gradient-end-rgb, var(--color-red-rgb)), 1);
    box-shadow: 0 0 8px rgba(var(--color-gradient-end-rgb, var(--color-red-rgb)), 0.8);
}

.theme-coral-gradient .sparkle::after,
.theme-coral-red-gradient .sparkle::after,
.theme-coral-sunset-gradient .sparkle::after,
.theme-coral-lilac-gradient .sparkle::after,
.theme-coral-deepsea-gradient .sparkle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 1px;
    background: rgba(var(--color-gradient-mid-rgb, var(--color-gold-rgb)), 1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: sparkleTwinkle 1.5s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(var(--color-gradient-mid-rgb, var(--color-gold-rgb)), 1);
}

@keyframes sparkleGlow {
    0%, 100% {
        filter: brightness(1);
        transform: scale(1);
    }
    50% {
        filter: brightness(1.5);
        transform: scale(1.3);
    }
}

@keyframes sparkleTwinkle {
    0%, 100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }
    25% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.5);
    }
    75% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* ヘッダーのボーダーもテーマに応じて変更（CSS変数で自動適用されるため削除） */

/* Splash Screen */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    opacity: 1;
    transition: opacity 1.5s ease-in-out;
}

.splash-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.splash-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    animation: splashOverlayFade 3s ease-in-out;
}

.splash-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.splash-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    opacity: 0;
    animation: splashLogoComplete 5s ease-in-out forwards;
    filter: drop-shadow(0 0 20px rgba(var(--color-gold-rgb), 0.3));
}

/* メインコンテンツの初期状態 */
.site-content {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.site-content.show {
    opacity: 1;
}

/* スプラッシュアニメーション */
@keyframes splashOverlayFade {
    0% {
        background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 1) 100%);
    }
    50% {
        background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.8) 100%);
    }
    100% {
        background: radial-gradient(circle at center, transparent 60%, rgba(0, 0, 0, 0.4) 100%);
    }
}

@keyframes splashLogoComplete {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(30px);
    }
    20% {
        opacity: 0.8;
        transform: scale(1.05) translateY(-5px);
    }
    40% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    60% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    100% {
        opacity: 0;
        transform: scale(1.1) translateY(-10px);
    }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .splash-logo {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .splash-logo {
        max-width: 200px;
    }
}

/* Font Face */
@font-face {
    font-family: 'beautiful font';
    src: url('font/beautiful font.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Color Variables */
:root {
    --color-gold: #d4af37;
    --color-red: #c41e3a;
    --color-black: #0a0a0a;
    --color-dark: #1a1a1a;
    --color-text: #ededed;
    --color-accent: #d4af37;
    /* 透明度付きの色 */
    --color-gold-rgb: 212, 175, 55;
    --color-red-rgb: 196, 30, 58;
}

/* テーマ別のカラー定義 */
.theme-default {
    --color-gold: #d4af37;
    --color-red: #c41e3a;
    --color-accent: #d4af37;
    --color-gold-rgb: 212, 175, 55;
    --color-red-rgb: 196, 30, 58;
}

.theme-coral-red {
    --color-gold: #F75A2B;
    --color-red: #F7A87B;
    --color-accent: #F75A2B;
    --color-gold-rgb: 247, 90, 43;
    --color-red-rgb: 247, 168, 123;
}

.theme-coral-gradient {
    --color-gold: #F75A2B;
    --color-red: #F7A87B;
    --color-accent: #F7B8A8;
    --color-gold-rgb: 247, 90, 43;
    --color-red-rgb: 247, 168, 123;
    --color-gradient-start: #F75A2B;
    --color-gradient-mid: #F7A87B;
    --color-gradient-end: #F7B8A8;
    --color-gradient-start-rgb: 247, 90, 43;
    --color-gradient-mid-rgb: 247, 168, 123;
    --color-gradient-end-rgb: 247, 184, 168;
}

.theme-coral-red-gradient {
    --color-gold: #F75A2B;
    --color-red: #F7A87B;
    --color-accent: #FFD1BC;
    --color-gold-rgb: 247, 90, 43;
    --color-red-rgb: 247, 168, 123;
    --color-gradient-start: #F75A2B;
    --color-gradient-mid: #FF8A65;
    --color-gradient-end: #FFD1BC;
    --color-gradient-start-rgb: 247, 90, 43;
    --color-gradient-mid-rgb: 255, 138, 101;
    --color-gradient-end-rgb: 255, 209, 188;
}

.theme-coral-sunset-gradient {
    --color-gold: #F75A2B;
    --color-red: #F7A87B;
    --color-accent: #FFD5B5;
    --color-gold-rgb: 247, 90, 43;
    --color-red-rgb: 247, 168, 123;
    --color-gradient-start: #FD746C;
    --color-gradient-mid: #FF9068;
    --color-gradient-end: #FFD5B5;
    --color-gradient-start-rgb: 253, 116, 108;
    --color-gradient-mid-rgb: 255, 144, 104;
    --color-gradient-end-rgb: 255, 213, 181;
}

.theme-coral-lilac-gradient {
    --color-gold: #F75A2B;
    --color-red: #F7A87B;
    --color-accent: #FFE6F7;
    --color-gold-rgb: 247, 90, 43;
    --color-red-rgb: 247, 168, 123;
    --color-gradient-start: #FF9A9E;
    --color-gradient-mid: #FBC2EB;
    --color-gradient-end: #FFE6F7;
    --color-gradient-start-rgb: 255, 154, 158;
    --color-gradient-mid-rgb: 251, 194, 235;
    --color-gradient-end-rgb: 255, 230, 247;
}

.theme-coral-deepsea-gradient {
    --color-gold: #F75A2B;
    --color-red: #F7A87B;
    --color-accent: #2C5364;
    --color-gold-rgb: 247, 90, 43;
    --color-red-rgb: 247, 168, 123;
    --color-gradient-start: #0F2027;
    --color-gradient-mid: #203A43;
    --color-gradient-end: #2C5364;
    --color-gradient-start-rgb: 15, 32, 39;
    --color-gradient-mid-rgb: 32, 58, 67;
    --color-gradient-end-rgb: 44, 83, 100;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.2rem, 3vw + 1rem, 3.2rem); }
h2 { font-size: clamp(1.9rem, 2.4vw + 1rem, 2.6rem); }
h3 { font-size: clamp(1.6rem, 1.8vw + 1rem, 2.1rem); }
h4 { font-size: clamp(1.4rem, 1.4vw + 0.9rem, 1.7rem); }
h5 { font-size: clamp(1.2rem, 1.1vw + 0.8rem, 1.4rem); }
h6 { font-size: clamp(1rem, 0.8vw + 0.7rem, 1.2rem); }

/* レスポンシブ見出しサイズ */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.3rem; }
    h5 { font-size: 1.1rem; }
    h6 { font-size: 1rem; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1.2rem; }
    h4 { font-size: 1.1rem; }
    h5 { font-size: 1rem; }
    h6 { font-size: 0.9rem; }
    
    /* 小さなスマホでもサイトタイトルを確実に表示 */
    .site-title {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: clamp(1.2rem, 1.2vw + 1rem, 1.6rem) !important;
        background: linear-gradient(90deg, var(--color-gold), var(--color-red)) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        white-space: nowrap;
    }
    
    .site-title a {
        color: inherit !important;
        background: inherit !important;
        -webkit-background-clip: inherit !important;
        -webkit-text-fill-color: inherit !important;
        background-clip: inherit !important;
        text-decoration: none !important;
        white-space: nowrap;
    }
    
    .site-title a:hover {
        color: inherit !important;
    }
    
    .site-description {
        display: none !important;
    }
}

@media (max-width: 400px) {
    .contact-value {
        font-size: 1.1rem;
        letter-spacing: 0.05em;
    }
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

a:hover {
    color: var(--color-red);
    transform: translateY(-1px);
}

a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-red));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover::after {
    width: 100%;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background-color: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(var(--color-gold-rgb), 0.3);
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-size: clamp(1.1rem, 0.9vw + 1rem, 1.5rem);
    background: linear-gradient(90deg, var(--color-gold), var(--color-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.site-title a {
    color: inherit;
    background: inherit;
    -webkit-background-clip: inherit;
    -webkit-text-fill-color: inherit;
    background-clip: inherit;
    text-decoration: none;
}

.site-title a:hover {
    color: inherit;
}

.site-description {
    font-size: 0.75rem;
    color: #888;
}
/* テーマ切り替えボタン */
.theme-switcher {
    position: relative;
    margin-right: 1rem;
}
.theme-switcher-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.theme-switcher-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.theme-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
    transition: filter 0.3s ease;
}

.theme-switcher-btn:hover .theme-icon {
    filter: drop-shadow(0 0 8px rgba(var(--color-gold-rgb), 0.6));
}

.theme-label {
    font-size: 0.85rem;
}

.theme-options {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.5rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10001;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.theme-options.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.theme-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    margin-bottom: 0.25rem;
}

.theme-option:last-child {
    margin-bottom: 0;
}

.theme-option:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-gold);
    transform: translateX(5px);
}

.theme-option.selected {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-gold);
    box-shadow: 0 0 12px rgba(var(--color-gold-rgb), 0.3);
}

.theme-preview {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.theme-option:hover .theme-preview,
.theme-option.selected .theme-preview {
    border-color: var(--color-gold);
    box-shadow: 0 0 12px rgba(var(--color-gold-rgb), 0.5);
    transform: scale(1.1);
}

.theme-name {
    font-size: 0.9rem;
    font-weight: 500;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .theme-switcher {
        margin-right: 0.5rem;
    }
    
    .theme-switcher-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .theme-label {
        display: none;
    }
    
    .theme-options {
        right: 0;
        min-width: 180px;
    }
}

/* Navigation */
.main-navigation {
    position: relative;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.main-navigation a {
    padding: 0.5rem 0.6rem;
    color: #ccc;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1.3;
    white-space: nowrap;
    min-width: fit-content;
    font-size: 0.9rem;
}

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

.nav-label-ja {
    font-size: 0.6rem;
    color: #999;
    font-weight: 400;
    margin-top: 0.15rem;
    display: block;
    transition: color 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.main-navigation a:hover .nav-label-ja {
    color: rgba(var(--color-gold-rgb), 0.8);
}

/* ハンバーガーメニューボタン */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10000;
    position: relative;
}


.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--color-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
    display: block;
    margin: 1px 0;
}

/* ハンバーガーボタンアニメーション */
.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* デスクトップメニュー */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--color-white);
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    /* サイトタイトルを確実に表示 */
    .site-title {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 1.5rem !important;
        background: linear-gradient(90deg, var(--color-gold), var(--color-red)) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        white-space: nowrap;
    }
    
    .site-title a {
        color: inherit !important;
        background: inherit !important;
        -webkit-background-clip: inherit !important;
        -webkit-text-fill-color: inherit !important;
        background-clip: inherit !important;
        text-decoration: none !important;
    }
    
    .site-title a:hover {
        color: inherit !important;
    }
    
    .site-description {
        display: none !important;
    }
    
    /* デスクトップメニューを非表示 */
    .nav-menu {
        display: none;
    }
    
    /* ハンバーガーボタンを表示 */
    .hamburger-btn {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* ハンバーガーラインを確実に表示 */
    .hamburger-line {
        width: 100% !important;
        height: 3px !important;
        background: var(--color-gold) !important;
        border-radius: 2px !important;
        display: block !important;
        margin: 1px 0 !important;
    }
    
    /* モバイルメニューを表示 */
    .nav-menu {
        display: flex !important;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--color-dark);
        border-left: 2px solid var(--color-gold);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        z-index: 9999;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }
    
    /* メニューが開いている状態 */
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1rem;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(var(--color-gold-rgb), 0.2);
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a:hover {
        background: rgba(var(--color-gold-rgb), 0.1);
        border-radius: 5px;
    }
    
    .nav-menu .nav-label-ja {
        display: block;
        font-size: 0.75rem;
        margin-top: 0.25rem;
        color: #aaa;
        font-weight: normal;
        white-space: nowrap;
    }
    
    .nav-menu a:hover .nav-label-ja {
        color: var(--color-gold);
    }
    
    /* オーバーレイ */
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }
    
    .nav-menu.active::before {
        opacity: 1;
    }
    
    /* モバイルでのコンテンツマージン調整 */
    .site-content {
        margin-top: 110px;
    }
    
    /* ヘッダーのレイアウト調整 */
    .site-header .container {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .site-branding {
        flex: 1;
        min-width: 0;
    }
    
    .main-navigation {
        flex-shrink: 0;
    }
    
    /* タブレットサイズでのメニュー調整 */
    .main-navigation a {
        padding: 0.5rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .nav-label-ja {
        font-size: 0.55rem;
    }
    
}

/* 1024px以下のタブレットサイズでの調整 */
@media (max-width: 1024px) {
    .main-navigation ul {
        gap: 0.4rem;
    }
    
    .main-navigation a {
        padding: 0.5rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .nav-label-ja {
        font-size: 0.55rem;
        margin-top: 0.1rem;
    }
}

/* Content Area */
.site-content {
    padding: 2rem 0;
    margin-top: 120px; /* 固定ヘッダーの高さ分のマージン */
    animation: fadeInUp 1.2s ease-out 0.3s both;
}

/* アニメーション用のクラス */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out both;
}

.fade-in {
    animation: fadeIn 0.8s ease-out both;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out both;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out both;
}

.scale-in {
    animation: scaleIn 0.8s ease-out both;
}

.float {
    animation: float 3s ease-in-out infinite;
}

.glow {
    animation: glow 2s ease-in-out infinite;
}

/* 遅延アニメーション */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* スクロールアニメーション用のクラス */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.scroll-animate-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.scroll-animate-right.animate {
    opacity: 1;
    transform: translateX(0);
}
.scroll-animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease-out;
}

.scroll-animate-scale.animate {
    opacity: 1;
    transform: scale(1);
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(0, 0, 0, 0.98));
    border-top: 2px solid rgba(var(--color-gold-rgb), 0.3);
    padding: 4rem 0 2rem;
    margin-top: auto;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.5;
}

/* Footer Main Section */
.footer-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

.footer-column {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
}

.footer-about {
    min-width: 0;
    max-width: 100%;
}

.footer-title {
    color: var(--color-gold);
    font-size: 1.1rem;
    text-shadow: 0 2px 8px rgba(var(--color-gold-rgb), 0.3);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
    white-space: nowrap;
    word-break: keep-all;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 長い見出し「Communication Bar 珊瑚」のみ改行を許可 */
.footer-about .footer-title {
    white-space: normal;
    line-height: 1.5;
    font-size: 1rem;
    overflow: visible;
    text-overflow: clip;
    word-break: break-word;
    hyphens: auto;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
}

/* Footer About */
.footer-description {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
}

/* Footer Access */
.footer-access-info,
.footer-hours-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-text {
    color: #ededed;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.footer-note {
    color: #999;
    font-size: 0.85rem;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

/* Footer Contact */
.footer-phone {
    color: var(--color-gold);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.footer-contact-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(var(--color-gold-rgb), 0.2), rgba(var(--color-gold-rgb), 0.1));
    border: 1px solid rgba(var(--color-gold-rgb), 0.5);
    border-radius: 5px;
    color: var(--color-gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    width: fit-content;
}

.footer-contact-btn:hover {
    background: linear-gradient(135deg, rgba(var(--color-gold-rgb), 0.3), rgba(var(--color-gold-rgb), 0.2));
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--color-gold-rgb), 0.3);
}

/* Footer Links */
.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav-list li {
    margin: 0;
}

.footer-nav-list a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-nav-list a::before {
    content: '→';
    position: absolute;
    left: -1.2rem;
    opacity: 0;
    color: var(--color-gold);
    transition: all 0.3s ease;
}

.footer-nav-list a:hover {
    color: var(--color-gold);
    padding-left: 1.2rem;
}

.footer-nav-list a:hover::before {
    opacity: 1;
    left: 0;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(var(--color-gold-rgb), 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copyright {
    color: #888;
    font-size: 0.875rem;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    color: #888;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(var(--color-gold-rgb), 0.1);
    border: 1px solid rgba(var(--color-gold-rgb), 0.2);
}

.social-icon:hover {
    color: var(--color-gold);
    background: rgba(var(--color-gold-rgb), 0.2);
    border-color: var(--color-gold);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(var(--color-gold-rgb), 0.3);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .footer-about .footer-title {
        font-size: 0.95rem;
    }
}
@media (max-width: 768px) {
    .site-footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-column {
        min-width: 0;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 1rem;
        white-space: normal;
        line-height: 1.4;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-title {
        font-size: 0.95rem;
    }
    
    .footer-text,
    .footer-description {
        font-size: 0.9rem;
    }
    
    .footer-phone {
        font-size: 1rem;
    }
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(10, 10, 10, 0.95));
    border: 2px solid rgba(var(--color-gold-rgb), 0.3);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--color-gold-rgb), 0.6);
    box-shadow: 0 16px 48px rgba(var(--color-gold-rgb), 0.3);
}

.gallery-item.featured-gallery {
    border-color: var(--color-gold);
    box-shadow: 0 12px 40px rgba(var(--color-gold-rgb), 0.2), 0 0 0 1px rgba(var(--color-gold-rgb), 0.1) inset;
}

.gallery-item.featured-gallery::before {
    content: '✨ 注目';
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-red));
    color: #000;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.gallery-item-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-item-thumbnail {
    position: relative;
    width: 100%;
    height: 400px; /* 縦幅を固定 */
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item-thumbnail img {
    user-select: none;
    pointer-events: none;
}

.gallery-thumb {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain; /* 比率を保持して全体を表示 */
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-thumb {
    transform: scale(1.1);
}

.gallery-images-count {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 5;
    backdrop-filter: blur(10px);
}


.gallery-item-title {
    display: none; /* タイトルを非表示 */
}

.gallery-item-title h3 {
    color: var(--color-gold);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(var(--color-gold-rgb), 0.3);
}

.gallery-excerpt {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* 動画コンテンツ */
.gallery-video-item .video-content {
    padding: 1.5rem;
    position: relative;
}

.gallery-video-item .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
    border-radius: 10px;
    margin: 1.5rem;
}

.gallery-video-item:hover .gallery-overlay {
    opacity: 1;
}

.video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9のアスペクト比 */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    background: #000;
}

.video-embed iframe,
.video-embed embed,
.video-embed object {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 動画ファイルの直接表示 */
.video-embed.video-file video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: auto; /* 動画コントロールはクリック可能に */
}

.video-embed.video-thumbnail {
    pointer-events: none; /* サムネイル表示時はクリック不可 */
}

.video-embed.video-thumbnail iframe,
.video-embed.video-thumbnail embed,
.video-embed.video-thumbnail object {
    pointer-events: none;
}

.gallery-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: #999;
}

/* 拡大表示（ライトボックス） */
.gallery-lightbox {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 999999 !important;
    display: none;
    align-items: center;
    justify-content: center;
}

body.lightbox-open {
    overflow: hidden;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    cursor: pointer;
    z-index: 999998;
}

.lightbox-close {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    border: 2px solid rgba(212, 175, 55, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer !important;
    z-index: 1000001 !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    pointer-events: auto !important;
}

.lightbox-close:hover {
    background: rgba(212, 175, 55, 0.9);
    color: #000;
    border-color: var(--color-gold);
    transform: rotate(90deg) scale(1.1);
}

.lightbox-images {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000000;
}

.lightbox-image-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 120px;
    box-sizing: border-box;
    text-align: center;
}

.lightbox-image-item:first-child {
    display: flex;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    margin: 0 auto;
    display: block;
}

.lightbox-nav {
    position: fixed !important;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.5);
    gap: 2rem;
    z-index: 1000001 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    pointer-events: auto !important;
}

.lightbox-prev,
.lightbox-next {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.1));
    border: 2px solid rgba(212, 175, 55, 0.5);
    color: var(--color-gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    pointer-events: auto !important;
}
.lightbox-prev:hover,
.lightbox-next:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.5), rgba(212, 175, 55, 0.3));
    border-color: var(--color-gold);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.lightbox-counter {
    color: var(--color-gold);
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 80px;
    text-align: center;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .lightbox-image-item {
        padding: 60px 15px 100px;
    }
    
    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        top: 15px;
        right: 15px;
    }
    
    .lightbox-nav {
        padding: 0.8rem 1.5rem;
        gap: 1.5rem;
        bottom: 20px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .lightbox-counter {
        font-size: 1rem;
        min-width: 60px;
    }
}

.gallery-empty p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

/* Gallery Responsive */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-item-title h3 {
        font-size: 1.1rem;
    }
    
    .gallery-item-thumbnail {
        height: 300px; /* モバイルでは縦幅を小さく */
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-item.featured-gallery::before {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
        top: 10px;
        right: 10px;
    }
    
    .gallery-images-count {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--color-gold), var(--color-red));
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(var(--color-gold-rgb), 0.4);
}

.btn:hover::before {
    left: 100%;
}

.btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -1px; /* 境界線をぼやかすための調整 */
    animation: fadeInUp 1.5s ease-out 0.5s both;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, transparent, var(--color-black));
    z-index: 4;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: blur(0.5px); /* 微細なぼかし効果 */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(var(--color-gold-rgb), 0.08) 50%,
        rgba(0, 0, 0, 0.98) 100%
    );
    z-index: 2;
    transition: background 0.5s ease;
}

/* コーラルグラデーションテーマ用のヒーローオーバーレイ */
.theme-coral-gradient .hero-overlay,
.theme-coral-red-gradient .hero-overlay,
.theme-coral-sunset-gradient .hero-overlay,
.theme-coral-lilac-gradient .hero-overlay,
.theme-coral-deepsea-gradient .hero-overlay {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(var(--color-gradient-mid-rgb, var(--color-gold-rgb)), 0.12) 35%,
        rgba(var(--color-gradient-end-rgb, var(--color-red-rgb)), 0.12) 65%,
        rgba(0, 0, 0, 0.95) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
}

.hero-subtitle {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 400;
    margin-top: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 0 30px rgba(var(--color-gold-rgb), 0.5);
    letter-spacing: 0.05em;
    line-height: 1.8;
    animation: fadeInUp 1.5s ease-out 1s both;
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
}

.hero-title {
    font-family: 'beautiful font', 'Times New Roman', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', serif !important;
    font-size: 3.5rem;
    color: #fff;
    margin: 0;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    background: linear-gradient(45deg, #fff, var(--color-gold), #f4d03f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
    animation: fadeInUp 1.8s ease-out 1s both;
    position: relative;
}

/* Page Specific Styles */
.page-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(90deg, var(--color-gold), var(--color-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-title-ja {
    display: block;
    font-size: 1.2rem;
    margin-top: 0.5rem;
    color: #ccc;
    font-weight: 400;
}

/* Hero Section レスポンシブ対応 */
@media (max-width: 768px) {
    .hero-section {
        height: 50vh;
        min-height: 300px;
    }
    
    .hero-section::after {
        height: 15px; /* モバイルでは少し小さく */
    }
    
    .hero-image {
        filter: blur(0.3px); /* モバイルでは少し軽く */
    }
    
    .hero-title {
        font-family: 'beautiful font', 'Times New Roman', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', serif !important;
        font-size: 2.2rem;
        line-height: 1.3;
        padding: 0 1rem;
        /* モバイルでは上下アニメーションと黄色い枠を削除 */
        animation: fadeInUp 1.8s ease-out 1s both !important;
        position: static !important;
    }
    
    .hero-title::before {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 40vh;
        min-height: 250px;
    }
    
    .hero-section::after {
        height: 10px; /* 小さなスマホではさらに小さく */
    }
    
    .hero-image {
        filter: blur(0.2px); /* 小さなスマホではさらに軽く */
    }
    
    .hero-title {
        font-family: 'beautiful font', 'Times New Roman', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', serif !important;
        font-size: 1.8rem;
        line-height: 1.2;
        padding: 0 0.5rem;
        /* 小さなスマホでも上下アニメーションと黄色い枠を削除 */
        animation: fadeInUp 1.8s ease-out 1s both !important;
        position: static !important;
    }
    
    .hero-title::before {
        display: none !important;
    }
}

/* モバイル版でのページタイトル調整 */
@media (max-width: 768px) {
    .page-title {
        font-size: 1.5rem;
        line-height: 1.4;
        padding: 0 1rem;
    }
}

/* 小さなスマホでのページタイトル調整 */
@media (max-width: 480px) {
    .page-title {
        font-size: 1.2rem;
        line-height: 1.3;
        padding: 0 0.5rem;
    }
}

/* News Grid */
.news-grid {
    display: grid;
    gap: 2rem;
}

.news-item {
    background: var(--color-dark);
    padding: 2rem;
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    border-radius: 5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.news-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-red));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

.news-item:hover {
    border-color: var(--color-gold);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.2);
}

.news-item:hover::before {
    transform: scaleX(1);
}

.news-date {
    color: var(--color-gold);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

/* Gallery Grid */
/* Concept Section */
.concept-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 26, 26, 0.95) 100%);
    position: relative;
    overflow: hidden;
    margin: 4rem 0;
}

.concept-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="concept-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.8" fill="%23d4af37" opacity="0.08"/><circle cx="80" cy="80" r="0.8" fill="%23d4af37" opacity="0.08"/><circle cx="40" cy="60" r="0.5" fill="%23c41e3a" opacity="0.05"/><circle cx="60" cy="40" r="0.5" fill="%23c41e3a" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23concept-grain)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

.concept-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.concept-visual {
    position: relative;
}
.concept-image-container {
    position: relative;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(var(--color-gold-rgb), 0.2);
}

.concept-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--color-gold-rgb), 0.05) 0%, rgba(var(--color-red-rgb), 0.05) 100%);
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(var(--color-gold-rgb), 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(var(--color-red-rgb), 0.15) 0%, transparent 60%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.concept-image-overlay {
    text-align: center;
    color: var(--color-gold);
    padding: 2rem;
}

.concept-quote {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.quote-mark {
    font-size: 4rem;
    color: var(--color-gold);
    opacity: 0.6;
    font-family: serif;
    line-height: 1;
}

.quote-text {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    line-height: 1.4;
    text-align: center;
}

.concept-text {
    padding-left: 2rem;
}

.concept-title {
    font-size: clamp(2.2rem, 3vw + 1rem, 3.2rem);
    color: var(--color-gold);
    margin-bottom: 2.5rem;
    font-weight: 200;
    letter-spacing: 0.15em;
    position: relative;
}

.concept-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-red), transparent);
}

.concept-description {
    line-height: 2.4;
    color: var(--color-text);
}

.concept-intro {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #e0e0e0;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 2.6;
}

.concept-details {
    font-size: 1.2rem;
    color: var(--color-gold);
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 2.8;
    position: relative;
    padding-left: 3rem;
}

.concept-details::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 80%;
    background: linear-gradient(to bottom, transparent, var(--color-gold), var(--color-red), transparent);
}

/* Concept Section Responsive */
@media (max-width: 768px) {
    .concept-section {
        padding: 4rem 0;
        margin: 2rem 0;
    }
    
    .concept-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .concept-text {
        padding-left: 0;
        text-align: center;
    }
    
    .concept-title {
        font-size: 3rem;
    }
    
    .concept-intro {
        font-size: 1.2rem;
    }
    
    .concept-details {
        font-size: 1.1rem;
        padding-left: 0;
    }
    
    .concept-details::before {
        display: none;
    }
    
    .concept-image-container {
        height: 350px;
    }
    
    .quote-text {
        font-size: 1.5rem;
    }
    
    .quote-mark {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .concept-title {
        font-size: 2.5rem;
    }
    
    .concept-intro {
        font-size: 1.1rem;
    }
    
    .concept-details {
        font-size: 1rem;
    }
    
    .concept-image-container {
        height: 300px;
    }
    
    .quote-text {
        font-size: 1.3rem;
    }
    
    .quote-mark {
        font-size: 2.5rem;
    }
}

/* Beginner Section - 初心者向けセクション */
.beginner-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(var(--color-gold-rgb), 0.2);
    border-bottom: 1px solid rgba(var(--color-gold-rgb), 0.2);
    transition: background 0.5s ease, border-color 0.5s ease;
}

/* コーラルグラデーションテーマ用のセクション背景 */
.theme-coral-gradient .beginner-section,
.theme-coral-red-gradient .beginner-section,
.theme-coral-sunset-gradient .beginner-section,
.theme-coral-lilac-gradient .beginner-section,
.theme-coral-deepsea-gradient .beginner-section {
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.95) 0%,
        rgba(var(--color-gradient-start-rgb, var(--color-gold-rgb)), 0.12) 25%,
        rgba(var(--color-gradient-mid-rgb, var(--color-gold-rgb)), 0.1) 50%,
        rgba(var(--color-gradient-end-rgb, var(--color-red-rgb)), 0.12) 75%,
        rgba(10, 10, 10, 0.95) 100%
    );
    border-top: 1px solid rgba(var(--color-gradient-start-rgb, var(--color-gold-rgb)), 0.4);
    border-bottom: 1px solid rgba(var(--color-gradient-end-rgb, var(--color-red-rgb)), 0.4);
}

.theme-coral-gradient .about-section,
.theme-coral-red-gradient .about-section,
.theme-coral-sunset-gradient .about-section,
.theme-coral-lilac-gradient .about-section,
.theme-coral-deepsea-gradient .about-section {
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(var(--color-gradient-mid-rgb, var(--color-gold-rgb)), 0.08) 40%,
        rgba(var(--color-gradient-end-rgb, var(--color-red-rgb)), 0.08) 70%,
        rgba(26, 26, 26, 0.95) 100%
    );
}
.theme-coral-gradient .price-category,
.theme-coral-red-gradient .price-category,
.theme-coral-sunset-gradient .price-category,
.theme-coral-lilac-gradient .price-category,
.theme-coral-deepsea-gradient .price-category {
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.95) 0%,
        rgba(var(--color-gradient-mid-rgb, var(--color-gold-rgb)), 0.12) 50%,
        rgba(10, 10, 10, 0.95) 100%
    );
    border: 2px solid rgba(var(--color-gradient-mid-rgb, var(--color-gold-rgb)), 0.4);
}

.theme-coral-gradient .price-category:hover,
.theme-coral-red-gradient .price-category:hover,
.theme-coral-sunset-gradient .price-category:hover,
.theme-coral-lilac-gradient .price-category:hover,
.theme-coral-deepsea-gradient .price-category:hover {
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.95) 0%,
        rgba(var(--color-gradient-mid-rgb, var(--color-gold-rgb)), 0.18) 50%,
        rgba(10, 10, 10, 0.95) 100%
    );
    border-color: rgba(var(--color-gradient-mid-rgb, var(--color-gold-rgb)), 0.6);
    box-shadow: 0 12px 40px rgba(var(--color-gradient-mid-rgb, var(--color-gold-rgb)), 0.4);
}

.theme-coral-gradient .access-card,
.theme-coral-red-gradient .access-card,
.theme-coral-sunset-gradient .access-card,
.theme-coral-lilac-gradient .access-card,
.theme-coral-deepsea-gradient .access-card {
    background: linear-gradient(
        145deg,
        rgba(26, 26, 26, 0.95) 0%,
        rgba(var(--color-gradient-mid-rgb, var(--color-gold-rgb)), 0.1) 50%,
        rgba(10, 10, 10, 0.95) 100%
    );
}

.theme-coral-gradient .info-card,
.theme-coral-red-gradient .info-card,
.theme-coral-sunset-gradient .info-card,
.theme-coral-lilac-gradient .info-card,
.theme-coral-deepsea-gradient .info-card {
    background: linear-gradient(
        145deg,
        rgba(var(--color-gradient-mid-rgb, var(--color-gold-rgb)), 0.14) 0%,
        rgba(var(--color-gradient-end-rgb, var(--color-red-rgb)), 0.1) 50%,
        rgba(var(--color-gradient-start-rgb, var(--color-gold-rgb)), 0.05) 100%
    );
    border: 2px solid rgba(var(--color-gradient-mid-rgb, var(--color-gold-rgb)), 0.3);
}

.theme-coral-gradient .info-card:hover,
.theme-coral-red-gradient .info-card:hover,
.theme-coral-sunset-gradient .info-card:hover,
.theme-coral-lilac-gradient .info-card:hover,
.theme-coral-deepsea-gradient .info-card:hover {
    background: linear-gradient(
        145deg,
        rgba(var(--color-gradient-mid-rgb, var(--color-gold-rgb)), 0.2) 0%,
        rgba(var(--color-gradient-end-rgb, var(--color-red-rgb)), 0.15) 55%,
        rgba(var(--color-gradient-start-rgb, var(--color-gold-rgb)), 0.1) 100%
    );
    border-color: rgba(var(--color-gold-rgb), 0.5);
    box-shadow: 0 10px 30px rgba(var(--color-gold-rgb), 0.3);
}

.beginner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d4af37" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23d4af37" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23d4af37" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23d4af37" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23d4af37" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.beginner-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.beginner-mark-icon {
    display: inline-block;
    font-size: 1.2em;
    margin-right: 0.75rem;
    vertical-align: middle;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

.beginner-subtitle {
    color: #ccc;
    font-size: 1.1rem;
    font-weight: 400;
    margin-top: 1rem;
    letter-spacing: 0.1em;
}

.beginner-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.beginner-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(var(--color-gold-rgb), 0.1), rgba(var(--color-gold-rgb), 0.05));
    border: 1px solid rgba(var(--color-gold-rgb), 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.beginner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.beginner-item:hover {
    border-color: rgba(var(--color-gold-rgb), 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(var(--color-gold-rgb), 0.2);
    background: linear-gradient(145deg, rgba(var(--color-gold-rgb), 0.15), rgba(var(--color-gold-rgb), 0.08));
}

.beginner-item:hover::before {
    opacity: 1;
}

.beginner-icon {
    font-size: 3rem;
    line-height: 1;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(var(--color-gold-rgb), 0.4));
    animation: float 3s ease-in-out infinite;
}

.beginner-item:nth-child(2) .beginner-icon {
    animation-delay: 0.5s;
}

.beginner-item:nth-child(3) .beginner-icon {
    animation-delay: 1s;
}

.beginner-item:nth-child(4) .beginner-icon {
    animation-delay: 1.5s;
}

.beginner-text {
    flex: 1;
}

.beginner-item-title {
    color: var(--color-gold);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin: 0 0 0.75rem 0;
    text-shadow: 0 2px 10px rgba(var(--color-gold-rgb), 0.3);
}

.beginner-item-description {
    color: #ededed;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .beginner-section {
        padding: 4rem 0;
    }
    
    .beginner-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .beginner-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .beginner-icon {
        font-size: 2.5rem;
        margin: 0 auto;
    }
    
    .beginner-item-title {
        font-size: 1.2rem;
    }
    
    .beginner-item-description {
        font-size: 0.95rem;
    }
    
    .beginner-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);
    position: relative;
    overflow: hidden;
    transition: background 0.5s ease;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d4af37" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23d4af37" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23d4af37" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23d4af37" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23d4af37" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text {
    padding-right: 2rem;
}

.about-title {
    font-size: clamp(2.2rem, 3vw + 1rem, 3.2rem);
    color: var(--color-gold);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    position: relative;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
}

.about-description {
    line-height: 2.2;
    color: var(--color-text);
}

.about-intro {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--color-gold);
    font-weight: 300;
    letter-spacing: 0.05em;
}

.about-details {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #d0d0d0;
    line-height: 2.4;
}

.about-conclusion {
    font-size: 1.1rem;
    color: var(--color-gold);
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.05em;
    position: relative;
    padding-left: 2rem;
}

.about-conclusion::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(to bottom, transparent, var(--color-gold), transparent);
}

.about-visual {
    position: relative;
}

.about-image-container {
    position: relative;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--color-gold-rgb), 0.1) 0%, rgba(var(--color-red-rgb), 0.1) 100%);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(var(--color-gold-rgb), 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(var(--color-red-rgb), 0.2) 0%, transparent 50%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-overlay {
    text-align: center;
    color: var(--color-gold);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

.about-image-text {
    position: relative;
    display: inline-block;
}

.about-image-text::before,
.about-image-text::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--color-gold);
    opacity: 0.6;
}

.about-image-text::before {
    left: -40px;
}

.about-image-text::after {
    right: -40px;
}

/* About Section Responsive */
@media (max-width: 768px) {
    .about-section {
        padding: 4rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        padding-right: 0;
        text-align: center;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-intro {
        font-size: 1.1rem;
    }
    
    .about-details,
    .about-conclusion {
        font-size: 1rem;
    }
    
    .about-image-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 2rem;
    }
    
    .about-intro {
        font-size: 1rem;
    }
    
    .about-details,
    .about-conclusion {
        font-size: 0.9rem;
        line-height: 2;
    }
    
    .about-image-container {
        height: 250px;
    }
}

/* Price Plans */
.price-plans-section {
    margin-top: 2rem;
}

.price-plans-heading {
    text-align: center;
    color: var(--color-gold);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 10px rgba(var(--color-gold-rgb), 0.3);
    position: relative;
    padding-bottom: 1rem;
}

.price-plans-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.price-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.plan {
    background: var(--color-dark);
    padding: 2rem;
    border: 2px solid rgba(var(--color-gold-rgb), 0.3);
    border-radius: 5px;
    text-align: center;
}

.plan.featured {
    border-color: var(--color-gold);
    transform: scale(1.05);
}

.plan h3 {
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.plan .time {
    font-size: 1.1rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-weight: bold;
    background: rgba(212, 175, 55, 0.1);
    padding: 0.5rem;
    border-radius: 3px;
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
}

.plan .price {
    font-size: 2rem;
    color: var(--color-red);
    margin-bottom: 1.5rem;
}

.plan ul {
    list-style: none;
    text-align: left;
}

.plan ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(var(--color-gold-rgb), 0.2);
}

/* Business Hours Section */
.business-hours-section {
    margin-top: 4rem;
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(10, 10, 10, 0.95));
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.section-heading {
    text-align: center;
    color: var(--color-gold);
    font-size: clamp(1.8rem, 2.3vw + 1rem, 2.5rem);
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(var(--color-gold-rgb), 0.3);
}

.section-heading-ja {
    font-size: clamp(1rem, 0.8vw + 0.7rem, 1.2rem);
    display: block;
    margin-top: 0.5rem;
    color: #ccc;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.hours-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}
.hours-item:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.hours-label {
    color: var(--color-gold);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.hours-label-ja {
    font-size: 1rem;
    display: block;
    margin-top: 0.3rem;
    color: #ccc;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.hours-time {
    color: #ededed;
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 1rem;
}

.hours-note {
    font-size: 0.9rem;
    color: #999;
    display: block;
    margin-top: 0.3rem;
}

.hours-time-weekend {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--color-gold);
}

/* Price Category Section */
.price-category-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.price-category {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(10, 10, 10, 0.95));
    border: 2px solid rgba(var(--color-gold-rgb), 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease, background 0.5s ease;
    position: relative;
    overflow: hidden;
}

.price-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.5;
}
.price-category:hover {
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
}

.price-category-title {
    color: var(--color-gold);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 2px 10px rgba(var(--color-gold-rgb), 0.3);
}

.price-category-title-ja {
    font-size: 1.1rem;
    display: block;
    margin-top: 0.5rem;
    color: #ccc;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.price-table {
    margin-bottom: 1.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(var(--color-gold-rgb), 0.2);
    transition: all 0.2s ease;
}

.price-row:hover {
    background: rgba(var(--color-gold-rgb), 0.05);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.price-row:last-child {
    border-bottom: none;
}

.price-label {
    color: #ededed;
    font-size: 1rem;
    line-height: 1.6;
    flex: 1;
}

.price-note {
    font-size: 0.85rem;
    color: #999;
    font-weight: 400;
    display: inline-block;
}

.price-value {
    color: var(--color-red);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: right;
    white-space: nowrap;
    margin-left: 1rem;
}

.price-unit {
    font-size: 1rem;
    margin-left: 0.2rem;
}

.price-category-note {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
}

.price-category-note p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.price-category-note ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.price-category-note ul li {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.8;
    position: relative;
    padding-left: 1rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.price-category-note ul li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: var(--color-gold);
}

.bbs-link-btn {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 5px;
    color: var(--color-gold);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
    white-space: nowrap;
}

.bbs-link-btn:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.2));
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    color: #fff;
}

.note-small {
    font-size: 0.85rem !important;
    color: #999 !important;
    margin-top: 0.5rem;
}

/* 女性用料金メニューの特典表示 */
.price-row-highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05)) !important;
    border: 2px solid rgba(212, 175, 55, 0.4) !important;
    border-radius: 8px !important;
    padding: 1rem !important;
    margin: 0.5rem 0 !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2) !important;
}

.price-row-highlight:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1)) !important;
    border-color: rgba(212, 175, 55, 0.6) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3) !important;
}

.price-label-highlight {
    color: var(--color-gold) !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    line-height: 1.8 !important;
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 0.75rem !important;
    width: 100% !important;
}

.highlight-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, var(--color-gold), rgba(212, 175, 55, 0.8));
    color: #000;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 12px;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
}

.bbs-link-btn-inline {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.15));
    border: 1px solid rgba(212, 175, 55, 0.6);
    border-radius: 5px;
    color: var(--color-gold);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-left: auto;
}

.bbs-link-btn-inline:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.35), rgba(212, 175, 55, 0.25));
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    color: #fff;
}

/* ドリンクセクション */
.drink-section {
    margin-top: 4rem;
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(10, 10, 10, 0.95));
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

/* ドリンクセクションのウェルカムバナー */
.drink-welcome-banner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.drink-welcome-banner:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.15));
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(212, 175, 55, 0.4);
}

.drink-welcome-icon {
    font-size: 3.5rem;
    line-height: 1;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(var(--color-gold-rgb), 0.5));
}

.drink-welcome-text {
    flex: 1;
}

.drink-welcome-title {
    color: var(--color-gold);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 0 0 0.75rem 0;
    text-shadow: 0 2px 10px rgba(var(--color-gold-rgb), 0.4);
}

.drink-welcome-message {
    color: #ededed;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .drink-welcome-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .drink-welcome-icon {
        font-size: 2.5rem;
    }
    
    .drink-welcome-title {
        font-size: 1.25rem;
    }
    
    .drink-welcome-message {
        font-size: 0.95rem;
    }
}

.drink-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.5;
}

.drink-content {
    max-width: 1000px;
    margin: 0 auto;
}

.drink-category {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
    border: 1px solid rgba(var(--color-gold-rgb), 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.drink-category:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.drink-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(var(--color-gold-rgb), 0.2);
}

.drink-category-icon {
    font-size: 2rem;
    line-height: 1;
}

.drink-category-title {
    color: var(--color-gold);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin: 0;
}

.drink-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.drink-list li {
    color: #ededed;
    font-size: 1rem;
    line-height: 1.8;
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
}

.drink-bullet {
    color: var(--color-gold);
    margin-right: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
}

.drink-description {
    color: #ededed;
    font-size: 1rem;
    line-height: 1.8;
}

.drink-description p {
    margin: 0;
}

.drink-note {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--color-gold);
    border-radius: 5px;
}

.drink-note p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* 分煙セクション */
.smoking-section {
    margin-top: 4rem;
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(10, 10, 10, 0.95));
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.smoking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.5;
}

.smoking-content {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.smoking-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
    border: 1px solid rgba(var(--color-gold-rgb), 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.smoking-item:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.smoking-icon {
    font-size: 2.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.smoking-text {
    flex: 1;
}

.smoking-title {
    color: var(--color-gold);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin: 0 0 0.75rem 0;
}

.smoking-text p {
    color: #ededed;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .price-category-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .price-category {
        padding: 2rem 1.5rem;
    }
    
    .price-value {
        font-size: 1.3rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .drink-section,
    .smoking-section {
        padding: 2rem 1.5rem;
    }
    
    .drink-category {
        padding: 1.5rem;
    }
    
    .smoking-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .smoking-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .smoking-icon {
        margin: 0 auto;
    }
}

/* Initial Fees Section */
.initial-fees {
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(10, 10, 10, 0.95));
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.1) inset;
    position: relative;
    overflow: hidden;
}

.initial-fees::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.5;
}

.initial-fees-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title {
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 10px rgba(var(--color-gold-rgb), 0.3);
}

.section-subtitle {
    color: #999;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.fee-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.fee-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.fee-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.fee-item:hover::before {
    left: 100%;
}

.fee-item:hover {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.fee-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(var(--color-gold-rgb), 0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.fee-item h3 {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.fee-price-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
}

.fee-price {
    font-size: 2.5rem;
    color: var(--color-red);
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(220, 20, 60, 0.3);
}

.fee-currency {
    font-size: 1.2rem;
    color: var(--color-red);
    font-weight: 500;
    opacity: 0.9;
}
.female-discount {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.15), rgba(255, 105, 180, 0.08));
    border: 2px solid rgba(255, 182, 193, 0.4);
    border-radius: 18px;
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(255, 182, 193, 0.15), 0 0 0 1px rgba(255, 182, 193, 0.1) inset;
}

.female-discount::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

.female-discount-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.discount-icon {
    font-size: 2rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.8; }
}

.female-discount h3 {
    color: #ff69b4;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(255, 105, 180, 0.3);
    letter-spacing: 0.05em;
}

.discount-badge {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.4);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 4px 12px rgba(255, 105, 180, 0.4); }
    50% { box-shadow: 0 4px 20px rgba(255, 105, 180, 0.6); }
}

.discount-description {
    color: #ddd;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}
.discount-description strong {
    color: #ff69b4;
    font-weight: 600;
    font-size: 1.1em;
}
.discount-conditions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.condition-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 182, 193, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.condition-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 182, 193, 0.5);
    transform: translateX(5px);
}

.condition-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(255, 182, 193, 0.4));
}

.condition-text {
    color: #ffb6c1;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.condition-link {
    color: #ffb6c1;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.condition-link:hover {
    color: #ff69b4;
    border-bottom-color: #ff69b4;
    text-shadow: 0 0 8px rgba(255, 105, 180, 0.5);
}

.discount-note {
    font-size: 0.85rem;
    color: #999;
    font-style: italic;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

/* Rules Section */
.rules-section {
    margin-top: 2rem;
    margin-bottom: 4rem;
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(10, 10, 10, 0.95));
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.1) inset;
    position: relative;
    overflow: hidden;
}

.rules-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.5;
}

.rules-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.rules-title {
    color: var(--color-gold);
    margin-bottom: 0.75rem;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 10px rgba(var(--color-gold-rgb), 0.3);
}

.rules-subtitle {
    color: #aaa;
    font-size: 1rem;
    letter-spacing: 0.03em;
    line-height: 1.6;
}

.rules-intro {
    text-align: center;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(var(--color-gold-rgb), 0.05);
    border-left: 3px solid var(--color-gold);
    border-radius: 8px;
}

.rules-intro p {
    color: #ddd;
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

.rules-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.rule-category {
    background: rgba(212, 175, 55, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.rule-category:hover {
    background: rgba(212, 175, 55, 0.06);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
}

.rule-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(var(--color-gold-rgb), 0.2);
}

.rule-category-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(var(--color-gold-rgb), 0.3));
}

.rule-category-title {
    color: var(--color-gold);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.03em;
}

.rule-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rule-list li {
    color: #ddd;
    line-height: 1.8;
    font-size: 0.95rem;
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.2s ease;
}

.rule-list li:last-child {
    border-bottom: none;
}

.rule-list li:hover {
    color: #fff;
    padding-left: 2rem;
}

.rule-bullet {
    color: var(--color-gold);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.rule-sub-item {
    display: block;
    margin-top: 0.5rem;
    padding-left: 1rem;
    color: #bbb;
    font-size: 0.9rem;
}

.rule-description {
    color: #ddd;
    line-height: 1.8;
    font-size: 0.95rem;
    padding: 1rem;
    background: rgba(var(--color-gold-rgb), 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--color-gold);
}

.rule-description p {
    margin: 0;
}

.rules-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.rules-closing {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

/* Rules Section - Responsive */
@media (max-width: 768px) {
    .rules-section {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }
    
    .rules-title {
        font-size: 1.6rem;
    }
    
    .rules-subtitle {
        font-size: 0.9rem;
    }
    
    .rules-intro {
        padding: 1.25rem;
    }
    
    .rules-intro p {
        font-size: 0.95rem;
    }
    
    .rules-content {
        gap: 2rem;
    }
    
    .rule-category {
        padding: 1.5rem;
    }
    
    .rule-category-header {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .rule-category-icon {
        font-size: 1.5rem;
    }
    
    .rule-category-title {
        font-size: 1.2rem;
    }
    
    .rule-list li {
        font-size: 0.9rem;
        padding: 0.625rem 0;
        padding-left: 1.25rem;
    }
    
    .rule-list li:hover {
        padding-left: 1.5rem;
    }
    
    .rule-sub-item {
        font-size: 0.85rem;
    }
    
    .rule-description {
        font-size: 0.9rem;
        padding: 0.875rem;
    }
    
    .rules-footer {
        padding-top: 1.5rem;
    }
    
    .rules-closing {
        font-size: 0.9rem;
    }
}

/* Contact Form */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.contact-item {
    text-align: center;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.9));
    padding: 2.5rem 2rem;
    border: 1px solid rgba(var(--color-gold-rgb), 0.2);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-red));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.contact-item:hover::before {
    transform: scaleX(1);
}

.contact-item h3 {
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
}

.contact-item p {
    color: var(--color-text);
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
}

/* Contact Form 7 Styles */
.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(10, 10, 10, 0.95));
    padding: 3rem;
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-red));
}

.contact-form-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
    animation: subtleGlow 8s ease-in-out infinite;
}

@keyframes subtleGlow {
    0%, 100% { opacity: 0.3; transform: rotate(0deg); }
    50% { opacity: 0.6; transform: rotate(180deg); }
}

.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.wpcf7-form p {
    margin: 0;
    position: relative;
}

.wpcf7-form label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--color-gold);
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
}

.wpcf7-form label .required {
    color: var(--color-red);
    margin-left: 0.25rem;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.2);
    color: var(--color-text);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(5px);
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(10, 10, 10, 0.9);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15), 0 5px 20px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.wpcf7-form input[type="text"]:hover,
.wpcf7-form input[type="email"]:hover,
.wpcf7-form input[type="tel"]:hover,
.wpcf7-form textarea:hover {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(10, 10, 10, 0.85);
}

.wpcf7-form textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}

/* フォーカス時のラベルアニメーション */
.wpcf7-form label:has(+ input:focus),
.wpcf7-form label:has(+ textarea:focus) {
    color: var(--color-gold);
    transform: translateY(-2px);
}

/* プレースホルダーのスタイル */
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
    color: rgba(237, 237, 237, 0.5);
    transition: all 0.3s ease;
}

.wpcf7-form input:focus::placeholder,
.wpcf7-form textarea:focus::placeholder {
    color: rgba(237, 237, 237, 0.3);
    transform: translateY(-2px);
}

.wpcf7-form input[type="submit"] {
    background: linear-gradient(135deg, var(--color-gold), var(--color-red));
    color: white;
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 15px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: center;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(var(--color-gold-rgb), 0.3);
}

.wpcf7-form input[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.wpcf7-form input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(var(--color-gold-rgb), 0.4);
    background: linear-gradient(135deg, var(--color-gold), var(--color-red));
    filter: brightness(1.1);
}

.wpcf7-form input[type="submit"]:hover::before {
    left: 100%;
}

.wpcf7-form input[type="submit"]:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(var(--color-gold-rgb), 0.3);
}

.wpcf7-response-output {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    animation: slideInUp 0.5s ease-out;
}
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wpcf7-mail-sent-ok {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(56, 142, 60, 0.1));
    border: 2px solid rgba(76, 175, 80, 0.4);
    color: #4caf50;
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.2);
}

.wpcf7-validation-errors {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.15), rgba(198, 40, 40, 0.1));
    border: 2px solid rgba(244, 67, 54, 0.4);
    color: #f44336;
    box-shadow: 0 5px 20px rgba(244, 67, 54, 0.2);
}

.wpcf7-not-valid {
    border-color: #f44336 !important;
    box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.15) !important;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.wpcf7-not-valid-tip {
    color: #f44336;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-weight: 500;
    display: block;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* フォーム全体のアニメーション */
.contact-form-wrapper {
    animation: formSlideIn 0.8s ease-out;
}

@keyframes formSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* フォーム要素の段階的アニメーション */
.wpcf7-form p {
    animation: formElementFadeIn 0.6s ease-out both;
}

.wpcf7-form p:nth-child(1) { animation-delay: 0.1s; }
.wpcf7-form p:nth-child(2) { animation-delay: 0.2s; }
.wpcf7-form p:nth-child(3) { animation-delay: 0.3s; }
.wpcf7-form p:nth-child(4) { animation-delay: 0.4s; }
.wpcf7-form p:nth-child(5) { animation-delay: 0.5s; }

@keyframes formElementFadeIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ローディング状態のアニメーション */
.wpcf7-form.submitting input[type="submit"] {
    position: relative;
    color: transparent;
}

.wpcf7-form.submitting input[type="submit"]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* フォーカス時の波紋効果 */
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form textarea:focus {
    position: relative;
}

.wpcf7-form input[type="text"]:focus::after,
.wpcf7-form input[type="email"]:focus::after,
.wpcf7-form input[type="tel"]:focus::after,
.wpcf7-form textarea:focus::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* レスポンシブデザイン - コンタクトフォーム */
@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
        padding: 0 0.5rem;
    }
    
    .contact-item {
        padding: 2rem 1.5rem;
        border-radius: 12px;
    }
    
    .contact-item h3 {
        font-size: 1.2rem;
    }
    
    .contact-item p {
        font-size: 1rem;
    }
    
    .contact-form-wrapper {
        max-width: 100%;
        margin: 0 1rem;
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
    
    .wpcf7-form {
        gap: 1.5rem;
    }
    
    .wpcf7-form label {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .wpcf7-form input[type="text"],
    .wpcf7-form input[type="email"],
    .wpcf7-form input[type="tel"],
    .wpcf7-form textarea {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
        border-radius: 10px;
    }
    
    .wpcf7-form textarea {
        min-height: 120px;
    }
    
    .wpcf7-form input[type="submit"] {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-width: 180px;
        border-radius: 12px;
    }
    
    .wpcf7-response-output {
        margin-top: 1.5rem;
        padding: 1.25rem 1.5rem;
        border-radius: 12px;
        font-size: 0.95rem;
    }
}
@media (max-width: 480px) {
    .contact-info {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
        padding: 0;
    }
    
    .contact-item {
        padding: 1.5rem 1rem;
        border-radius: 10px;
    }
    
    .contact-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .contact-item p {
        font-size: 0.95rem;
    }
    
    .contact-form-wrapper {
        margin: 0 0.5rem;
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }
    
    .wpcf7-form {
        gap: 1.25rem;
    }
    
    .wpcf7-form label {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }
    
    .wpcf7-form input[type="text"],
    .wpcf7-form input[type="email"],
    .wpcf7-form input[type="tel"],
    .wpcf7-form textarea {
        padding: 0.75rem 0.875rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    .wpcf7-form textarea {
        min-height: 100px;
    }
    
    .wpcf7-form input[type="submit"] {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        min-width: 160px;
        border-radius: 10px;
        letter-spacing: 0.3px;
    }
    
    .wpcf7-response-output {
        margin-top: 1.25rem;
        padding: 1rem 1.25rem;
        border-radius: 10px;
        font-size: 0.9rem;
    }
    
    .wpcf7-not-valid-tip {
        font-size: 0.8rem;
        margin-top: 0.4rem;
    }
}

/* タッチデバイス用の最適化 */
@media (hover: none) and (pointer: coarse) {
    .contact-item:hover {
        transform: none;
        border-color: rgba(212, 175, 55, 0.3);
        box-shadow: none;
    }
    
    .contact-item:hover::before {
        transform: scaleX(0);
    }
    
    .wpcf7-form input[type="text"]:hover,
    .wpcf7-form input[type="email"]:hover,
    .wpcf7-form input[type="tel"]:hover,
    .wpcf7-form textarea:hover {
        border-color: rgba(212, 175, 55, 0.2);
        background: rgba(10, 10, 10, 0.8);
        transform: none;
    }
    
    .wpcf7-form input[type="submit"]:hover {
        transform: none;
        box-shadow: 0 8px 25px rgba(var(--color-gold-rgb), 0.3);
    }
}

/* Register Form */
.register-form {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-gold);
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    background: var(--color-dark);
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    color: white;
    border-radius: 5px;
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-gold);
}

.member-benefits {
    max-width: 600px;
    margin: 0 auto;
    background: var(--color-dark);
    padding: 2rem;
    border-radius: 5px;
}

.member-benefits h3 {
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.member-benefits ul {
    list-style: none;
}

.member-benefits ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(var(--color-gold-rgb), 0.2);
}

.member-benefits ul li:before {
    content: "⭐";
    margin-right: 0.5rem;
}

/* Store Info */
.store-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-item {
    background: var(--color-dark);
    padding: 2rem;
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    border-radius: 5px;
    text-align: center;
}

.info-item h3 {
    color: var(--color-gold);
    margin-bottom: 1rem;
}

/* Access Section - おしゃれなデザイン */
.access-section {
    margin-top: 4rem;
    padding: 3rem 0;
}

.access-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.access-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.access-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(10, 10, 10, 0.95));
    border: 2px solid rgba(var(--color-gold-rgb), 0.3);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.5s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.access-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.6;
}

.access-card.featured {
    border-color: var(--color-gold);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2), 0 0 0 1px rgba(212, 175, 55, 0.1) inset;
}

.access-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 16px 48px rgba(212, 175, 55, 0.3);
}

.access-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(var(--color-gold-rgb), 0.3));
    animation: float 3s ease-in-out infinite;
}

.access-title {
    color: var(--color-gold);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(var(--color-gold-rgb), 0.3);
}

.access-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.access-main-info {
    color: #ededed;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    letter-spacing: 0.05em;
}

.access-note {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.8;
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(var(--color-gold-rgb), 0.2);
    font-style: italic;
}

.access-instruction {
    color: var(--color-gold);
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 8px rgba(var(--color-gold-rgb), 0.2);
}

.access-sub {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-card {
    background: linear-gradient(145deg, rgba(var(--color-gold-rgb), 0.08), rgba(var(--color-gold-rgb), 0.02));
    border: 2px solid rgba(var(--color-gold-rgb), 0.2);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease, background 0.5s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(var(--color-gold-rgb), 0.3));
}

.info-title {
    color: var(--color-gold);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.info-content {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

.info-content p {
    margin: 0.5rem 0;
}

.info-content p:first-child {
    margin-top: 0;
}

.info-content p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .access-section {
        margin-top: 3rem;
        padding: 2rem 0;
    }
    
    .access-main {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .access-card {
        padding: 2rem 1.5rem;
    }
    
    .access-icon {
        font-size: 2.5rem;
    }
    
    .access-title {
        font-size: 1.5rem;
    }
    
    .access-main-info {
        font-size: 1.2rem;
    }
    
    .access-sub {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-card {
        padding: 2rem 1.5rem;
    }
}

/* Social Icons */
.social-icons a {
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
}

/* FAQ Styles */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(10, 10, 10, 0.95));
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.faq-item.active {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}
.faq-question-btn {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question-btn:hover {
    background: rgba(var(--color-gold-rgb), 0.05);
}

.faq-question-text {
    color: var(--color-gold);
    font-size: 1.2rem;
    font-weight: 600;
    flex: 1;
    line-height: 1.5;
}

.faq-icon {
    color: var(--color-gold);
    font-size: 1.8rem;
    font-weight: bold;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    background: rgba(212, 175, 55, 0.2);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: #ccc;
    line-height: 1.8;
    margin: 0;
    padding-top: 1rem;
}

/* FAQ レスポンシブ対応 */
@media (max-width: 768px) {
    .faq-question-btn {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-question-text {
        font-size: 1rem;
    }
    
    .faq-icon {
        font-size: 1.5rem;
        width: 28px;
        height: 28px;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .faq-question-btn {
        padding: 1rem 1.2rem;
    }
    
    .faq-question-text {
        font-size: 0.95rem;
    }
    
    .faq-icon {
        font-size: 1.3rem;
        width: 26px;
        height: 26px;
    }
    
    .faq-answer {
        padding: 0 1.2rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.2rem 1rem 1.2rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
}

/* BBS Styles */
.bbs-comment-area {
    background: var(--color-dark);
    padding: 2rem;
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    border-radius: 5px;
    text-align: center;
}

/* 会員限定掲示板スタイル */
.bbs-container {
    max-width: 800px;
    margin: 0 auto;
}

.bbs-login-required {
    text-align: center;
    background: var(--color-dark);
    padding: 3rem 2rem;
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    border-radius: 5px;
    margin: 2rem 0;
}

.bbs-login-required h3 {
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.bbs-login-required p {
    margin-bottom: 2rem;
    color: #ccc;
}

.login-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.login-buttons .btn {
    min-width: 120px;
}

/* 掲示板フォーム */
.bbs-form-wrapper {
    background: rgba(26, 26, 26, 0.95);
    padding: 2rem;
    border: 2px solid rgba(var(--color-gold-rgb), 0.4);
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.bbs-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), #f4d03f, var(--color-gold));
    border-radius: 12px 12px 0 0;
}

.bbs-form-wrapper h3 {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.75rem;
}

.bbs-form-wrapper h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), #f4d03f);
    border-radius: 2px;
}

.bbs-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bbs-form .form-group {
    margin-bottom: 0;
}

.bbs-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-gold);
    font-weight: 600;
    font-size: 0.95rem;
}

.bbs-form input[type="text"],
.bbs-form textarea,
.bbs-form input[type="password"] {
    width: 100%;
    padding: 0.85rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1.5px solid rgba(var(--color-gold-rgb), 0.3);
    color: #fff;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.bbs-form input:focus,
.bbs-form textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 4px rgba(var(--color-gold-rgb), 0.2);
    background: rgba(0, 0, 0, 0.6);
}

.bbs-form textarea {
    min-height: 120px;
    resize: vertical;
}

.bbs-form .btn {
    align-self: flex-start;
    min-width: 140px;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--color-gold), #f4d03f);
    color: var(--color-black);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(var(--color-gold-rgb), 0.3);
    position: relative;
    overflow: hidden;
}

.bbs-form .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.bbs-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(var(--color-gold-rgb), 0.5);
}

.bbs-form .btn:hover::before {
    width: 300px;
    height: 300px;
}

.bbs-form .btn:active {
    transform: translateY(0);
}

/* 掲示板投稿一覧 */
.bbs-posts {
    background: rgba(26, 26, 26, 0.95);
    border: 2px solid rgba(var(--color-gold-rgb), 0.4);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    position: relative;
}

.bbs-posts::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), #f4d03f, var(--color-gold));
}

/* BBS投稿一覧のヘッダー */
.bbs-header-info {
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem 2rem;
    border-bottom: 2px solid rgba(var(--color-gold-rgb), 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
}

.bbs-header-info::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.bbs-header-left {
    display: flex;
    align-items: center;
    flex: 1;
}

.bbs-posts h3 {
    color: var(--color-gold);
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    text-align: left;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* BBSページの日付表示（ご来店予告の横に配置） */
.bbs-current-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(237, 237, 237, 0.8);
    font-weight: 400;
    margin-left: 0.5rem;
    padding: 0.3rem 0.8rem;
    background: rgba(var(--color-gold-rgb), 0.1);
    border-radius: 6px;
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
}

/* 日付セパレータ（枠の外） */
.bbs-posts h3 .date-separator {
    color: rgba(var(--color-gold-rgb), 0.5);
    margin: 0 0.5rem;
}

.bbs-current-date .date-text {
    color: var(--color-text);
    letter-spacing: 0.5px;
}

.bbs-current-date .weekday-text {
    color: var(--color-gold);
    font-weight: 500;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
}

/* 当日の投稿数表示 */
.bbs-today-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(var(--color-gold-rgb), 0.15), rgba(var(--color-gold-rgb), 0.25));
    border: 1.5px solid rgba(var(--color-gold-rgb), 0.4);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(var(--color-gold-rgb), 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(var(--color-gold-rgb), 0.5);
    }
}

.bbs-today-count:hover {
    background: linear-gradient(135deg, rgba(var(--color-gold-rgb), 0.25), rgba(var(--color-gold-rgb), 0.35));
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(var(--color-gold-rgb), 0.4);
}

.today-count-label {
    color: #ccc;
    font-size: 0.9rem;
}

.today-count-number {
    color: var(--color-gold);
    font-size: 1.4rem;
    font-weight: 700;
    min-width: 2rem;
    text-align: center;
    text-shadow: 0 0 10px rgba(var(--color-gold-rgb), 0.5);
}

.today-count-unit {
    color: var(--color-gold);
    font-size: 0.9rem;
}

/* 画面右下に固定表示（全ページ共通・常に表示） */
.bbs-today-count-fixed {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, rgba(var(--color-gold-rgb), 0.25), rgba(var(--color-gold-rgb), 0.35)) !important;
    border: 2px solid rgba(var(--color-gold-rgb), 0.6) !important;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulseGlowFixed 2s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), 0 0 20px rgba(var(--color-gold-rgb), 0.4) !important;
    z-index: 2147483647 !important;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: auto;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    max-width: none !important;
    min-width: 180px;
    isolation: isolate;
}

.bbs-today-count-fixed.loaded {
    opacity: 1;
    transform: translateY(0);
}

.bbs-today-count-fixed.scrolling {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.7), 0 0 35px rgba(var(--color-gold-rgb), 0.6);
    border-color: var(--color-gold);
}

@keyframes pulseGlowFixed {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 20px rgba(var(--color-gold-rgb), 0.3);
    }
    50% {
        box-shadow: 0 6px 30px rgba(0, 0, 0, 0.6), 0 0 30px rgba(var(--color-gold-rgb), 0.5);
    }
}

.bbs-today-count-fixed:hover {
    background: linear-gradient(135deg, rgba(var(--color-gold-rgb), 0.3), rgba(var(--color-gold-rgb), 0.4));
    border-color: var(--color-gold);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.6), 0 0 35px rgba(var(--color-gold-rgb), 0.6);
}

.bbs-today-count-fixed .today-count-label {
    color: #ccc;
    font-size: 0.9rem;
    white-space: nowrap;
}

.bbs-today-count-fixed .today-count-number {
    color: var(--color-gold);
    font-size: 1.8rem;
    font-weight: 700;
    min-width: 2rem;
    text-align: center;
    text-shadow: 0 0 15px rgba(var(--color-gold-rgb), 0.8);
}

.bbs-today-count-fixed .today-count-unit {
    color: var(--color-gold);
    font-size: 1rem;
    font-weight: 600;
}

.bbs-post {
    border-bottom: 1px solid rgba(var(--color-gold-rgb), 0.2);
    padding: 1.5rem 2rem;
    transition: background-color 0.3s ease;
}

.bbs-post:last-child {
    border-bottom: none;
}

.bbs-post:hover {
    background: rgba(var(--color-gold-rgb), 0.05);
}

.post-header {
    margin-bottom: 1rem;
}

.post-title {
    color: var(--color-gold);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    font-size: 0.875rem;
    color: #888;
}

.post-author {
    color: var(--color-red);
    font-weight: bold;
}

.post-date {
    color: #aaa;
}

.delete-post-btn {
    background: var(--color-red);
    color: white;
    border: none;
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.delete-post-btn:hover {
    background: #a01729;
    transform: translateY(-1px);
}

.post-content {
    color: #ccc;
    line-height: 1.6;
    white-space: pre-wrap;
}

/* 通常投稿の本文の余白を強制的に設定（より具体的なセレクタで上書き） */
div.bbs-post div.post-content {
    margin-top: 0.25rem !important;
    margin-bottom: 0 !important;
    padding-top: 0.25rem !important;
    padding-bottom: 0 !important;
}

div.bbs-post div.post-content p {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.no-posts {
    text-align: center;
    color: #888;
    padding: 2rem;
    font-style: italic;
}

.bbs-error {
    text-align: center;
    color: #f44336;
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid #f44336;
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
}

.debug-info {
    font-size: 0.875rem;
    color: #666;
    background: #f5f5f5;
    padding: 0.5rem;
    border-radius: 3px;
    margin-top: 0.5rem;
}

/* マイページスタイル */
.mypage-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.mypage-sidebar {
    background: var(--color-dark);
    padding: 2rem;
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    border-radius: 5px;
    height: fit-content;
}

.user-profile-card {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(var(--color-gold-rgb), 0.3);
}

.user-profile-card img {
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 2px solid var(--color-gold);
}

.user-profile-card h3 {
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.user-email {
    color: #ccc;
    font-size: 0.875rem;
}

.mypage-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mypage-nav li {
    margin-bottom: 0.5rem;
}
.mypage-nav .nav-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #ccc;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.mypage-nav .nav-link:hover,
.mypage-nav .nav-link.active {
    color: var(--color-gold);
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.mypage-content {
    background: var(--color-dark);
    padding: 2rem;
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    border-radius: 5px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h2 {
    color: var(--color-gold);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(var(--color-gold-rgb), 0.3);
}

.mypage-form {
    max-width: 500px;
}

.mypage-form .form-group {
    margin-bottom: 1.5rem;
}

.mypage-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-gold);
    font-weight: bold;
}

.mypage-form input[type="text"],
.mypage-form input[type="email"],
.mypage-form input[type="tel"],
.mypage-form input[type="password"],
.mypage-form input[type="file"] {
    width: 100%;
    padding: 0.75rem;
    background: var(--color-black);
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    color: white;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.mypage-form input:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.mypage-form .description {
    color: #888;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.avatar-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.current-avatar,
.avatar-upload {
    background: var(--color-black);
    padding: 1.5rem;
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    border-radius: 5px;
}

.current-avatar h3,
.avatar-upload h3 {
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.avatar-preview {
    text-align: center;
    margin-bottom: 1rem;
}

.bbs-avatar-preview {
    text-align: center;
    margin: 1rem 0;
}

/* 掲示板投稿の新しいレイアウト */
.post-author-info {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.post-author-info img {
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    flex-shrink: 0;
}

.author-details {
    flex: 1;
}

.author-details .post-title {
    margin: 0 0 0.5rem 0;
    color: var(--color-gold);
    font-size: 1.25rem;
}

.author-details .post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    font-size: 0.875rem;
    color: #888;
}

.author-details .post-author {
    color: var(--color-red);
    font-weight: bold;
}

/* ログインページスタイル */
.login-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 2rem;
}

.login-form-wrapper {
    background: var(--color-dark);
    padding: 2rem;
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    border-radius: 5px;
    max-width: 500px;
    width: 100%;
}

.login-form-wrapper h2 {
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 2rem;
}

.login-error {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid #f44336;
    color: #f44336;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.login-form-wrapper .form-group {
    margin-bottom: 1.5rem;
}

.login-form-wrapper label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-gold);
    font-weight: bold;
}

.login-form-wrapper input[type="text"],
.login-form-wrapper input[type="password"] {
    width: 100%;
    padding: 0.75rem;
    background: var(--color-black);
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    color: white;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.login-form-wrapper input:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* ラジオボタングループ */
.radio-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
    font-weight: normal;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.radio-label:hover {
    border-color: rgba(212, 175, 55, 0.6);
    background: rgba(212, 175, 55, 0.1);
}

.radio-label input[type="radio"] {
    width: auto;
    margin: 0;
    cursor: pointer;
}

.radio-label input[type="radio"]:checked + span {
    color: var(--color-gold);
    font-weight: 600;
}

.radio-label:has(input[type="radio"]:checked) {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.15);
}
.btn-login {
    width: 100%;
    background: linear-gradient(135deg, var(--color-gold), var(--color-red));
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
}

.login-links {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.login-links p {
    margin: 0.5rem 0;
    color: #ccc;
}

.login-links a {
    color: var(--color-gold);
    text-decoration: none;
}

.login-links a:hover {
    color: var(--color-red);
}

.login-info {
    background: var(--color-dark);
    padding: 2rem;
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    border-radius: 5px;
    height: fit-content;
}

.login-info h3 {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    text-align: center;
}

.login-info ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.login-info li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(var(--color-gold-rgb), 0.2);
    color: #ccc;
}

.login-info li:before {
    content: "⭐";
    margin-right: 0.5rem;
}

/* メインページスタイル */
.main-bbs-section {
    background: var(--color-dark);
    padding: 2rem;
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    border-radius: 5px;
    margin: 2rem 0;
}

.main-bbs-section h2 {
    color: var(--color-gold);
    font-size: clamp(1.6rem, 1.8vw + 1rem, 2.2rem);
    margin-bottom: 1.5rem;
    position: relative;
    display: block;
    text-align: center;
}

.main-bbs-section h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), #f4d03f);
    border-radius: 2px;
}

.main-content {
    background: var(--color-dark);
    padding: 2rem;
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    border-radius: 5px;
    margin: 2rem 0;
    animation: fadeInUp 1.2s ease-out 1.6s both;
}

.main-content h2 {
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 2rem;
}

.news-list {
    max-width: 800px;
    margin: 0 auto;
}

.news-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.news-item:hover {
    background: rgba(var(--color-gold-rgb), 0.05);
    padding-left: 1rem;
}

.news-date {
    color: var(--color-gold);
    font-weight: bold;
    font-size: 0.9rem;
    min-width: 100px;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.news-title {
    flex: 1;
}

.news-title a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

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

.no-news {
    text-align: center;
    color: #888;
    font-style: italic;
    padding: 2rem;
}

/* ニュース一覧ページスタイル */
.news-list-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.news-card {
    background: var(--color-dark);
    border: 1px solid rgba(var(--color-gold-rgb), 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-red));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.news-card:hover::before {
    opacity: 1;
}

.news-card-header {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.news-date-badge {
    background: var(--color-black);
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    border-radius: 8px;
    padding: 0.75rem;
    text-align: center;
    min-width: 80px;
    flex-shrink: 0;
}

.date-day {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-gold);
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 0.7rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

.date-year {
    display: block;
    font-size: 0.6rem;
    color: #888;
    margin-top: 0.25rem;
}

.news-meta {
    flex: 1;
    min-width: 0;
}

.news-title {
    margin: 0 0 0.75rem 0;
    font-size: 1.25rem;
    line-height: 1.4;
}

.news-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.news-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.news-category {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
}

.news-card-footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--color-gold);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-gold);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.read-more-btn svg {
    transition: transform 0.3s ease;
}

.read-more-btn:hover svg {
    transform: translateX(2px);
}

.no-news-message {
    text-align: center;
    padding: 4rem 2rem;
    color: #888;
}

.no-news-message p {
    font-size: 1.1rem;
    margin: 0;
}

.news-pagination {
    margin-top: 3rem;
    text-align: center;
}

.news-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.news-pagination .page-numbers li {
    margin: 0;
}

.news-pagination .page-numbers a,
.news-pagination .page-numbers span {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    margin: 0 0.25rem;
    background: var(--color-dark);
    color: #ccc;
    text-decoration: none;
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.news-pagination .page-numbers a:hover,
.news-pagination .page-numbers .current {
    background: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
}

.news-link {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.recruitment-section {
    margin: 8rem auto;
    padding: 0 1.5rem;
}

.recruitment-inner {
    max-width: 1080px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(26, 26, 26, 0.85));
    border-radius: 28px;
    border: 1px solid rgba(var(--color-gradient-mid-rgb, var(--color-gold-rgb)), 0.4);
    box-shadow: 0 24px 60px rgba(var(--color-gradient-start-rgb, var(--color-gold-rgb)), 0.25);
    padding: 3.5rem 4rem;
    position: relative;
    overflow: hidden;
}

.recruitment-inner::before,
.recruitment-inner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.recruitment-inner::before {
    width: 240px;
    height: 240px;
    background: rgba(var(--color-gradient-start-rgb, var(--color-gold-rgb)), 0.35);
    top: -60px;
    right: -40px;
}

.recruitment-inner::after {
    width: 280px;
    height: 280px;
    background: rgba(var(--color-gradient-mid-rgb, var(--color-gold-rgb)), 0.3);
    bottom: -80px;
    left: -60px;
}

.recruitment-header,
.recruitment-body,
.recruitment-footer {
    position: relative;
    z-index: 1;
}

.recruitment-header {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    margin-bottom: 2.5rem;
}

.recruitment-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 18px;
    background: radial-gradient(circle, rgba(var(--color-gradient-end-rgb, var(--color-red-rgb)), 0.35) 0%, rgba(var(--color-gradient-start-rgb, var(--color-gold-rgb)), 0.15) 100%);
    box-shadow: 0 12px 28px rgba(var(--color-gradient-end-rgb, var(--color-red-rgb)), 0.25);
}

.recruitment-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.recruitment-title-en {
    font-size: clamp(1.8rem, 2.6vw + 1rem, 2.75rem);
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-text);
}

.recruitment-title-ja {
    font-size: clamp(1.05rem, 1vw + 0.7rem, 1.3rem);
    letter-spacing: 0.2em;
    color: rgba(var(--color-gradient-mid-rgb, var(--color-gold-rgb)), 0.9);
}

.recruitment-body {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 3rem;
}

.recruitment-message {
    font-size: clamp(1rem, 0.8vw + 0.85rem, 1.15rem);
    line-height: 2.1;
    color: #f2f2f2;
    letter-spacing: 0.05em;
}

.recruitment-highlight {
    background: linear-gradient(145deg, rgba(var(--color-gradient-mid-rgb, var(--color-gold-rgb)), 0.12), rgba(var(--color-gradient-end-rgb, var(--color-red-rgb)), 0.1));
    border: 1px solid rgba(var(--color-gradient-mid-rgb, var(--color-gold-rgb)), 0.4);
    border-radius: 18px;
    padding: 1.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 14px 36px rgba(var(--color-gradient-end-rgb, var(--color-red-rgb)), 0.2);
}

.highlight-icon {
    font-size: 2.2rem;
}

.highlight-label {
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.35rem;
}

.highlight-value {
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--color-text);
}

.recruitment-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.recruitment-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 14px;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(var(--color-gradient-mid-rgb, var(--color-gold-rgb)), 0.3);
    box-shadow: inset 0 0 25px rgba(var(--color-gradient-mid-rgb, var(--color-gold-rgb)), 0.12);
}

.contact-label {
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.65);
}
.contact-value {
    font-size: clamp(1.1rem, 0.8vw + 1rem, 1.4rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--color-text);
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .recruitment-inner {
        padding: 3rem 2.5rem;
    }
    
    .recruitment-body {
        grid-template-columns: 1fr;
    }
    
    .recruitment-highlight {
        justify-content: center;
    }
}
@media (max-width: 640px) {
    .recruitment-section {
        margin: 6rem auto;
        padding: 0 1rem;
    }
    
    .recruitment-inner {
        padding: 2.5rem 1.75rem;
    }
    
    .recruitment-header {
        flex-direction: column;
        text-align: center;
    }
    
    .recruitment-title-en {
        font-size: clamp(1.8rem, 2.6vw + 1rem, 2.75rem);
        font-weight: 300;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--color-text);
    }
    
    .recruitment-title-ja {
        font-size: clamp(1.05rem, 1vw + 0.7rem, 1.3rem);
        letter-spacing: 0.2em;
        color: rgba(var(--color-gradient-mid-rgb, var(--color-gold-rgb)), 0.9);
    }
    
    .recruitment-footer {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .recruitment-contact {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .recruitment-button {
        justify-content: center;
        width: 100%;
    }
}

.main-bbs-section h2 {
    color: var(--color-gold);
    font-size: clamp(1.6rem, 1.8vw + 1rem, 2.2rem);
    margin-bottom: 1.5rem;
    position: relative;
    display: block;
    text-align: center;
}

.main-bbs-section h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), #f4d03f);
    border-radius: 2px;
}

.recent-bbs-posts {
    margin-bottom: 2rem;
}

.recent-post-item {
    background: var(--color-black);
    padding: 1.5rem;
    border: 1px solid rgba(var(--color-gold-rgb), 0.2);
    border-radius: 5px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.recent-post-item:hover {
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

.recent-post-item .post-author-info {
    margin-bottom: 1rem;
}

.recent-post-item .post-author-info img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
}

.recent-post-item h4 {
    margin: 0 0 0.5rem 0;
    color: var(--color-gold);
}

.recent-post-item h4 a {
    color: inherit;
    text-decoration: none;
}

.recent-post-item h4 a:hover {
    color: var(--color-red);
}

.recent-post-item .post-meta {
    font-size: 0.875rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.recent-post-item .post-excerpt {
    color: #ccc;
    line-height: 1.6;
}

.bbs-link {
    text-align: center;
}

.main-content {
    margin-top: 2rem;
}

.main-content h2 {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* メンバー数カード */
.member-count-section {
    background: var(--color-dark);
    padding: 2rem;
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    border-radius: 5px;
    margin: 2rem 0;
}

.member-count-section h2 {
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 2rem;
}

.member-count-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.member-card {
    background: var(--color-black);
    padding: 2rem;
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.member-card.male {
    border-color: #4CAF50;
}

.member-card.female {
    border-color: #E91E63;
}

.member-card.total {
    border-color: var(--color-gold);
}

.member-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.member-count {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.member-label {
    color: #ccc;
    font-size: 1.1rem;
}

/* 在店状況ボタン */
.store-status-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.store-status-section h3 {
    color: var(--color-gold);
    margin-bottom: 1rem;
    text-align: center;
}

.status-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.status-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--color-black);
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    color: #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.status-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--color-gold);
}

.status-btn.active {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.status-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.status-icon {
    font-size: 1.2rem;
}

.status-text {
    font-weight: bold;
}

.status-message {
    text-align: center;
    color: #ccc;
    font-size: 0.875rem;
}

.status-message p {
    margin: 0;
}

/* リアルタイム店舗状況 */
.realtime-store-status {
    background: var(--color-dark);
    padding: 2rem;
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    border-radius: 5px;
    margin: 2rem 0;
}

.realtime-store-status h2 {
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.total-members-display {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--color-black);
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    border-radius: 5px;
}

.total-members-label {
    color: #ccc;
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

.total-members-count {
    color: var(--color-gold);
    font-size: 1.5rem;
    font-weight: bold;
}

.status-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.status-card {
    background: var(--color-black);
    padding: 2rem;
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
}

.status-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.status-card.at-store {
    border-color: #4CAF50;
}

.status-card.going-today {
    border-color: #FF9800;
}

.status-card h3 {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.count-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(var(--color-gold-rgb), 0.2);
}

.count {
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-gold);
}
.label {
    color: #ccc;
    font-size: 1rem;
}

.total-count {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-gold);
    font-weight: bold;
    font-size: 1.1rem;
}

.last-updated {
    text-align: center;
    color: #888;
    font-size: 0.875rem;
    font-style: italic;
}

/* 成功・エラーメッセージ */
.success-message {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid #4caf50;
    color: #4caf50;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: bold;
    display: none;
}

.error-message {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid #f44336;
    color: #f44336;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: bold;
    display: none;
}

/* モーダルスタイル */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--color-dark);
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(var(--color-gold-rgb), 0.3);
}

.modal-header h2 {
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.modal-header p {
    color: #ccc;
    margin: 0;
}

.modal-body {
    padding: 2rem;
}

.status-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.status-option-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--color-black);
    border: 2px solid rgba(var(--color-gold-rgb), 0.3);
    color: #ccc;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.status-option-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

.status-option-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.status-option-btn .status-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.status-option-btn .status-text {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--color-gold);
}

.status-option-btn .status-desc {
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.25rem;
}

.modal-footer {
    padding: 1rem 2rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.modal-note {
    color: #888;
    font-size: 0.875rem;
    margin: 0;
}

/* チェックインページスタイル */
.checkin-container {
    max-width: 600px;
    margin: 2rem auto;
    text-align: center;
}

.checkin-info {
    background: var(--color-dark);
    padding: 2rem;
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    border-radius: 5px;
    margin-bottom: 2rem;
}

.checkin-info h2 {
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.checkin-info p {
    color: #ccc;
    margin: 0;
}

.checkin-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.checkin-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem;
    background: var(--color-dark);
    border: 2px solid rgba(var(--color-gold-rgb), 0.3);
    color: #ccc;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.checkin-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.checkin-btn.primary {
    border-color: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
}

.checkin-btn.primary:hover {
    border-color: #45a049;
    background: rgba(76, 175, 80, 0.2);
}

.checkin-btn.secondary {
    border-color: #FF9800;
    background: rgba(255, 152, 0, 0.1);
}

.checkin-btn.secondary:hover {
    border-color: #f57c00;
    background: rgba(255, 152, 0, 0.2);
}

.checkin-btn.tertiary {
    border-color: #9E9E9E;
    background: rgba(158, 158, 158, 0.1);
}

.checkin-btn.tertiary:hover {
    border-color: #757575;
    background: rgba(158, 158, 158, 0.2);
}

.checkin-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.checkin-icon {
    font-size: 3rem;
}

.checkin-text {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--color-gold);
}

.checkin-desc {
    font-size: 1rem;
    color: #888;
}

.checkin-note {
    color: #888;
    font-size: 0.875rem;
}

.checkin-note p {
    margin: 0.5rem 0;
}

.mypage-link {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: bold;
}

.mypage-link:hover {
    color: var(--color-red);
}

.checkin-success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid #4caf50;
    color: #4caf50;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: bold;
    display: none;
}

/* 記事詳細ページスタイル */
.entry-header {
    margin-bottom: 2rem;
}

.entry-title {
    color: var(--color-gold);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.entry-meta {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.meta-inline {
    margin-top: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.meta-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-label-inline {
    color: var(--color-gold);
    font-size: 0.8rem;
    font-weight: bold;
    white-space: nowrap;
}

.meta-content-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.meta-content-inline a {
    display: inline-block;
    background: var(--color-dark);
    color: #ccc;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.75rem;
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.meta-content-inline a:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

.post-thumbnail {
    margin-bottom: 2rem;
    text-align: center;
}

.post-thumbnail img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.entry-content {
    color: #ccc;
    line-height: 1.8;
    font-size: 1.1rem;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: var(--color-gold);
    margin: 2rem 0 1rem 0;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.entry-content li {
    margin-bottom: 0.5rem;
}
.entry-content blockquote {
    border-left: 4px solid var(--color-gold);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #aaa;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 1rem 0;
}

.entry-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}


/* ログアウトボタン */
.logout-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
}
.btn-logout {
    background: var(--color-red);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.btn-logout:hover {
    background: #a01729;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.5);
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
    .login-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .member-count-cards {
        grid-template-columns: 1fr;
    }
    
    .status-cards {
        grid-template-columns: 1fr;
    }
    
    .status-buttons {
        gap: 0.5rem;
    }
    
    .status-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .checkin-container {
        margin: 1rem;
    }
    
    .checkin-btn {
        padding: 1.5rem;
    }
    
    .checkin-icon {
        font-size: 2rem;
    }
    
    .checkin-text {
        font-size: 1.1rem;
    }
    
    .total-members-display {
        padding: 0.75rem;
    }
    
    .total-members-count {
        font-size: 1.25rem;
    }
    
    .mypage-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .news-list {
        max-width: 100%;
        margin: 0;
    }
    
    .news-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }
    
    .news-date {
        margin-bottom: 0.5rem;
        margin-right: 0;
        min-width: auto;
    }
    
    .news-title {
        width: 100%;
    }
    
    .news-card-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .news-date-badge {
        align-self: flex-start;
        min-width: 70px;
    }
    
    .news-card {
        padding: 1rem;
    }
    
    .news-title {
        font-size: 1.1rem;
    }
    
    .read-more-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .news-link {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }
    
    .mypage-sidebar {
        order: 2;
    }
    
    .entry-title {
        font-size: 2rem;
    }
    
    .post-meta-container {
        padding: 1rem;
    }
    
    .meta-content {
        gap: 0.25rem;
    }
    
    .meta-content a {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .meta-inline {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .meta-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .meta-content-inline a {
        padding: 0.15rem 0.4rem;
        font-size: 0.7rem;
    }
    
    .mypage-content {
        order: 1;
    }
    
    /* ニュースカードのモバイル対応 */
    
    .news-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        max-width: 100%;
    }
    
    .news-card-mini {
        padding: 1.25rem;
    }
    
    .news-date-mini {
        padding: 0.5rem 1rem;
    }
    
    .date-full-mini {
        font-size: 0.9rem;
    }
    
    .news-title-mini {
        font-size: 0.95rem;
        line-height: 1.3;
    }
    
    .read-more-mini {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
}

/* BBSセクションのスタイル - 他のセクションに合わせたデザイン */
.main-bbs-section {
    background: var(--color-dark);
    border-radius: 16px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1.2s ease-out 1.2s both;
}

.main-bbs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), #f4d03f, var(--color-gold));
}

.main-bbs-section h2 {
    color: var(--color-gold);
    font-size: clamp(1.6rem, 1.8vw + 1rem, 2.2rem);
    margin-bottom: 1.5rem;
    position: relative;
    display: block;
    text-align: center;
}

.main-bbs-section h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), #f4d03f);
    border-radius: 2px;
}

/* トップページの日付表示 */
.main-bbs-date {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: rgba(237, 237, 237, 0.8);
    font-weight: 400;
    padding: 0.4rem 1rem;
    background: rgba(var(--color-gold-rgb), 0.1);
    border-radius: 8px;
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.main-bbs-date .date-text {
    color: var(--color-text);
    letter-spacing: 0.5px;
}

.main-bbs-date .weekday-text {
    color: var(--color-gold);
    font-weight: 500;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.recent-bbs-posts {
    margin-bottom: 1.5rem;
}

.recent-post-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: left;
}

.recent-post-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), #f4d03f);
    border-radius: 12px 12px 0 0;
}

.recent-post-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--color-gold-rgb), 0.3);
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.08);
}


.post-author-info {
    margin-bottom: 0.75rem;
    text-align: left;
    width: 100%;
}

.post-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #666;
    text-align: left;
    align-items: flex-start;
    width: 100%;
}

.author-with-avatar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: left;
    width: 100%;
}

.author-with-avatar img {
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    object-fit: cover;
}

.post-author {
    font-weight: 500;
    color: var(--color-gold);
    text-align: left;
    flex: 1;
}

.post-date {
    color: #888;
    text-align: left;
    width: 100%;
    display: block;
}

.post-excerpt {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    text-align: left;
    width: 100%;
}

.bbs-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.bbs-buttons .btn {
    padding: 0.75rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    min-width: 140px;
    justify-content: center;
}

.bbs-buttons .btn-primary {
    background: linear-gradient(135deg, var(--color-gold), #f4d03f);
    color: var(--color-black);
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.bbs-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #f4d03f, var(--color-gold));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.bbs-buttons .btn-outline {
    background: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
}

.bbs-buttons .btn-outline:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.no-posts {
    text-align: left;
    color: #ccc;
    font-style: italic;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px dashed rgba(212, 175, 55, 0.3);
}

.bbs-error {
    text-align: left;
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 107, 0.3);
    margin: 1rem 0;
}

.debug-info {
    font-size: 0.8rem;
    color: #999;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 4px;
    margin-top: 0.5rem;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .main-bbs-section {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .main-bbs-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .post-header {
        text-align: left;
        width: 100%;
    }
    
    .post-author-info {
        text-align: left;
        width: 100%;
    }
    
    .author-with-avatar img {
        width: 20px;
        height: 20px;
    }
    
    .post-meta {
        align-items: flex-start;
        text-align: left;
        width: 100%;
    }
    
    .bbs-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .bbs-buttons .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
        min-width: 120px;
    }
}

/* BBS注意書きセクション */
.bbs-notice-section {
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid var(--color-gold);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.bbs-notice-section h2 {
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    position: relative;
}

.bbs-notice-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), #f4d03f);
    border-radius: 2px;
}

.notice-content {
    display: grid;
    gap: 1.5rem;
}

.notice-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(var(--color-gold-rgb), 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.notice-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.notice-item h3 {
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.notice-item h3::before {
    content: '⚠️';
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.notice-item p {
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

.notice-item ul {
    color: #ccc;
    line-height: 1.6;
    margin: 0;
    padding-left: 1.5rem;
}

.notice-item li {
    margin-bottom: 0.5rem;
    position: relative;
}

.notice-item li::marker {
    color: var(--color-gold);
}

/* 利用規約同意ボタン */
.bbs-agreement-section {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(var(--color-gold-rgb), 0.3);
}

.bbs-agreement-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--color-gold), #f4d03f);
    color: var(--color-black);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(var(--color-gold-rgb), 0.4);
    position: relative;
    overflow: hidden;
    min-width: 280px;
    justify-content: center;
}

.bbs-agreement-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.bbs-agreement-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(var(--color-gold-rgb), 0.6);
}

.bbs-agreement-btn:hover::before {
    width: 400px;
    height: 400px;
}

.bbs-agreement-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.bbs-agreement-btn .btn-text {
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

.bbs-agreement-btn .btn-icon {
    position: relative;
    z-index: 1;
    font-size: 1.3rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.bbs-agreement-btn:hover .btn-icon {
    transform: scale(1.2) rotate(5deg);
}

.bbs-agreement-btn.agreed {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    cursor: default;
}

.bbs-agreement-btn.agreed .btn-icon {
    display: none;
}

.bbs-agreement-btn.agreed .btn-text::after {
    content: ' ✓';
    margin-left: 0.5rem;
}

.bbs-agreement-btn:disabled {
    opacity: 0.8;
    cursor: not-allowed;
}

.bbs-agreement-btn:disabled:hover {
    transform: none;
    box-shadow: 0 6px 20px rgba(var(--color-gold-rgb), 0.4);
}

/* 投稿フォームコンテナ */
.bbs-form-container {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* モバイル対応 */
@media (max-width: 768px) {
    .bbs-notice-section {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .bbs-notice-section h2 {
        font-size: 1.5rem;
    }
    
    .notice-item {
        padding: 1.25rem;
    }
    
    .notice-item h3 {
        font-size: 1.1rem;
    }
    
    .bbs-agreement-section {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .bbs-agreement-btn {
        min-width: 100%;
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

/* BBSページのスタイル - TOPページと同じレイアウト */
.bbs-posts {
    background: var(--color-dark);
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    border-radius: 5px;
    padding: 2rem;
    margin: 2rem 0;
}

.bbs-posts h3 {
    background: rgba(0, 0, 0, 0.4);
    color: var(--color-gold);
    text-align: center;
    margin: 0;
    padding: 1.5rem 2rem;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    border-bottom: 2px solid rgba(var(--color-gold-rgb), 0.3);
}

.bbs-posts h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.bbs-post {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: left;
}

.bbs-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), #f4d03f);
    border-radius: 12px 12px 0 0;
}

.bbs-post:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--color-gold-rgb), 0.3);
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.08);
}

.bbs-post .post-author-info {
    margin-bottom: 0.75rem;
    text-align: left;
    width: 100%;
}

.bbs-post .post-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #666;
    text-align: left;
    align-items: flex-start;
    width: 100%;
}

.bbs-post .author-with-avatar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: left;
    width: 100%;
}

.bbs-post .author-with-avatar img {
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    object-fit: cover;
}

.bbs-post .post-author {
    font-weight: 500;
    color: var(--color-gold);
    text-align: left;
    flex: 1;
}

.bbs-post .post-meta-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 1rem;
    margin-top: 0.75rem;
    margin-bottom: 0 !important;
    padding-top: 0.75rem;
    padding-bottom: 0 !important;
    border-top: 1px solid rgba(var(--color-gold-rgb), 0.15);
}

.bbs-post .post-date {
    color: #888;
    text-align: left;
    flex: 1;
    font-size: 0.8rem;
}

.bbs-post .post-content,
div.bbs-post div.post-content {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.9rem;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0.25rem !important;
    padding-bottom: 0 !important;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    text-align: left;
    width: 100%;
}

/* 通常投稿の本文内のpタグの余白を調整 */
.bbs-post .post-content p {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.bbs-post .post-content p:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.bbs-post .post-content p:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* 管理者投稿のスタイル - 赤い枠 */
.admin-post {
    border: 3px solid #e74c3c !important;
    background: rgba(231, 76, 60, 0.08) !important;
    position: relative;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.2) !important;
}

.admin-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #c0392b, #e74c3c);
    border-radius: 12px 12px 0 0;
    animation: adminPulse 2s ease-in-out infinite;
}

@keyframes adminPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.admin-post:hover {
    border-color: #c0392b !important;
    background: rgba(231, 76, 60, 0.12) !important;
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.4) !important;
    transform: translateY(-3px);
}

.admin-author {
    color: #e74c3c !important;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(231, 76, 60, 0.6);
}

.admin-badge {
    display: inline-block;
    margin-left: 0.5rem;
    font-size: 1.2em;
    animation: adminGlow 2s ease-in-out infinite alternate;
}

@keyframes adminGlow {
    0% {
        text-shadow: 0 0 5px rgba(255, 107, 107, 0.5);
        transform: scale(1);
    }
    100% {
        text-shadow: 0 0 15px rgba(255, 107, 107, 0.8);
        transform: scale(1.1);
    }
}

/* TOPページの管理者投稿 */
.main-bbs-section .admin-post {
    border: 3px solid #e74c3c !important;
    background: rgba(231, 76, 60, 0.08) !important;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.2) !important;
}

.main-bbs-section .admin-post::before {
    background: linear-gradient(90deg, #e74c3c, #c0392b, #e74c3c);
    height: 4px;
    animation: adminPulse 2s ease-in-out infinite;
}
.main-bbs-section .admin-post:hover {
    border-color: #c0392b !important;
    background: rgba(231, 76, 60, 0.12) !important;
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.4) !important;
}

.main-bbs-section .admin-author {
    color: #e74c3c !important;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(231, 76, 60, 0.6);
}
/* モバイル対応 */
@media (max-width: 768px) {
    .bbs-posts {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .bbs-header-info {
        flex-direction: column;
        align-items: stretch;
        padding: 1.25rem 1.5rem;
    }
    
    .bbs-header-left {
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }
    
    .bbs-posts h3 {
        text-align: center;
        justify-content: center;
        margin-bottom: 0.5rem;
        font-size: 1.4rem;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    /* モバイル時の日付セパレータを非表示 */
    .bbs-posts h3 .date-separator {
        display: none;
    }
    
    .bbs-current-date {
        justify-content: center;
        font-size: 0.75rem;
        margin-left: 0;
        margin-top: 0;
        width: auto;
        padding: 0.25rem 0.6rem;
        background: rgba(var(--color-gold-rgb), 0.1);
        border-radius: 6px;
        border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    }
    
    .bbs-current-date .date-text {
        font-size: 0.75rem;
    }
    
    .bbs-current-date .weekday-text {
        font-size: 0.7rem;
    }
    
    .bbs-today-count {
        justify-content: center;
        width: 100%;
    }
    
    .main-bbs-date {
        font-size: 0.9rem;
        gap: 0.4rem;
        padding: 0.3rem 0.8rem;
        width: 100%;
    }
    
    .main-bbs-date .weekday-text {
        padding: 0;
        font-size: 0.9rem;
    }
    
    .bbs-post {
        padding: 1.25rem;
    }
    
    .bbs-post .author-with-avatar img {
        width: 20px;
        height: 20px;
    }
    
    /* スマホデザイン：投稿者名の横にボタンを配置 */
    .bbs-post .post-meta {
        position: relative;
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        gap: 0.5rem 0.4rem;
        align-items: center;
    }
    
    .bbs-post .author-with-avatar {
        grid-column: 1;
        grid-row: 1;
        display: flex;
        align-items: center;
        gap: 0.4rem;
        min-width: 0;
        width: 100%;
        overflow: visible;
    }
    
    .bbs-post .author-with-avatar .post-author {
        flex: 1 1 auto;
        min-width: 0;
        white-space: normal;
        word-wrap: break-word;
        overflow: visible;
        text-overflow: clip;
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    /* アバターアイコンのサイズ調整 */
    .bbs-post .author-with-avatar img {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }
    
    /* 投稿者名の横にボタンを配置 */
    .bbs-post .post-meta-bottom {
        grid-column: 1 / -1;
        grid-row: 2;
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
        margin: 0;
        margin-bottom: 0 !important;
        padding-top: 0.5rem;
        padding-bottom: 0 !important;
        border-top: 1px solid rgba(var(--color-gold-rgb), 0.15);
        width: 100%;
    }
    
    /* 投稿者名の横にボタンを表示（右側に配置） */
    .bbs-post .post-actions {
        grid-column: 2;
        grid-row: 1;
        display: flex;
        flex-direction: row;
        gap: 0.25rem;
        margin: 0;
        margin-left: auto;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-end;
        flex-shrink: 0;
        padding-top: 0;
    }
    
    .bbs-post .post-actions .edit-post-toggle,
    .bbs-post .post-actions .delete-post-btn,
    .bbs-post .post-actions .admin-edit-link {
        padding: 0.3rem 0.4rem !important;
        font-size: 0.65rem !important;
        min-height: 26px !important;
        white-space: nowrap;
        flex: 0 0 auto;
        border-width: 1.5px !important;
        line-height: 1.1 !important;
        font-weight: 600 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        vertical-align: middle !important;
    }
    
    .bbs-post .post-meta-bottom .post-date {
        font-size: 0.8rem;
        order: 1;
        line-height: 1.4;
    }
    
    /* スマホデザイン：編集ボタンも修正・削除と同じサイズ */
    .bbs-post .post-meta-bottom .admin-edit-link {
        width: auto !important;
        max-width: 100%;
        order: 2;
        padding: 0.3rem 0.4rem !important;
        font-size: 0.65rem !important;
        min-height: 26px !important;
        margin-top: 0;
        line-height: 1.1 !important;
        font-weight: 600 !important;
        border-width: 1.5px !important;
        text-align: center;
        white-space: nowrap;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        vertical-align: middle !important;
    }
    
    /* 通常投稿の本文の余白を減らす（より具体的なセレクタで上書き） */
    .bbs-post .post-content,
    div.bbs-post div.post-content {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding-top: 0.25rem !important;
        padding-bottom: 0 !important;
    }
    
    /* 通常投稿の本文内のpタグの余白を調整 */
    .bbs-post .post-content p,
    div.bbs-post div.post-content p {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    
    /* 返信の本文の余白（確認用） */
    .bbs-reply .reply-content {
        margin-top: 0.5rem !important;
        margin-bottom: 0 !important;
        padding-top: 0.5rem !important;
        padding-bottom: 0 !important;
    }
    
    /* 返信の本文内のpタグの余白を調整 */
    .bbs-reply .reply-content p {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .admin-badge {
        font-size: 1em;
    }
    
    .today-count-label {
        font-size: 0.85rem;
    }
    
    .today-count-number {
        font-size: 1.2rem;
    }
    
    .bbs-today-count-fixed {
        bottom: 15px;
        right: 15px;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .bbs-today-count-fixed .today-count-label {
        font-size: 0.8rem;
    }
    
    .bbs-today-count-fixed .today-count-number {
        font-size: 1.5rem;
    }
    
    .bbs-today-count-fixed .today-count-unit {
        font-size: 0.9rem;
    }
}

/* フッターSNSアイコンのスタイル */
.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--color-gold);
    background: rgba(var(--color-gold-rgb), 0.1);
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--color-black);
    background: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* コンテンツエリアのオーバーレイ効果 */
.site-content {
    position: relative;
    z-index: 2;
}

.container {
    position: relative;
    z-index: 2;
}

/* セクションの背景を半透明に */
.main-bbs-section,
.bbs-posts,
.realtime-store-status,
.main-content {
    background: rgba(26, 26, 26, 0.85) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--color-gold-rgb), 0.2);
}

/* カード要素の背景を調整 */
.recent-post-item,
.bbs-post,
.news-card-mini {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(5px);
}
/* ============================================
   BBS返信機能のスタイル
   ============================================ */

/* 返信セクション */
.bbs-reply-section {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(var(--color-gold-rgb), 0.2);
}

/* 返信ボタン */
.reply-post-toggle {
    background: linear-gradient(135deg, rgba(var(--color-gold-rgb), 0.15), rgba(var(--color-gold-rgb), 0.25));
    color: var(--color-gold);
    border: 1.5px solid rgba(var(--color-gold-rgb), 0.5);
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.reply-post-toggle::before {
    content: '💬';
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.reply-post-toggle:hover {
    background: linear-gradient(135deg, rgba(var(--color-gold-rgb), 0.3), rgba(var(--color-gold-rgb), 0.4));
    border-color: var(--color-gold);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(var(--color-gold-rgb), 0.4);
}

.reply-post-toggle:hover::before {
    transform: scale(1.2) rotate(5deg);
}

.reply-post-toggle:active {
    transform: translateY(0);
}

/* 返信フォームコンテナ */
.bbs-reply-form-container {
    margin-top: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(var(--color-gold-rgb), 0.25);
    border-radius: 10px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 返信フォーム */
.bbs-reply-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bbs-reply-form .form-group {
    margin-bottom: 0;
}

.bbs-reply-form label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--color-gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.bbs-reply-form input[type="text"],
.bbs-reply-form textarea,
.bbs-reply-form input[type="password"] {
    width: 100%;
    padding: 0.7rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    color: #fff;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.bbs-reply-form input:focus,
.bbs-reply-form textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(var(--color-gold-rgb), 0.2);
    background: rgba(0, 0, 0, 0.5);
}

.bbs-reply-form textarea {
    min-height: 100px;
    resize: vertical;
}

.bbs-reply-form .form-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.bbs-reply-form .btn {
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.bbs-reply-form .btn[type="submit"] {
    background: linear-gradient(135deg, var(--color-gold), #f4d03f);
    color: var(--color-black);
    box-shadow: 0 3px 10px rgba(var(--color-gold-rgb), 0.3);
}

.bbs-reply-form .btn[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(var(--color-gold-rgb), 0.5);
}

.bbs-reply-form .cancel-reply-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #ccc;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bbs-reply-form .cancel-reply-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

/* 返信一覧 */
.bbs-replies {
    margin-top: 1rem;
    margin-left: 2rem;
    padding-left: 1.5rem;
    border-left: 3px solid rgba(var(--color-gold-rgb), 0.3);
    position: relative;
}

.bbs-replies::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(var(--color-gold-rgb), 0.2) 10%,
        rgba(var(--color-gold-rgb), 0.5) 50%,
        rgba(var(--color-gold-rgb), 0.2) 90%,
        transparent 100%);
}

/* 返信アイテム */
.bbs-reply {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(var(--color-gold-rgb), 0.2);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
}

.bbs-reply::before {
    content: '↳';
    position: absolute;
    left: -1.25rem;
    top: 1rem;
    color: rgba(var(--color-gold-rgb), 0.5);
    font-size: 1.2rem;
    font-weight: bold;
}

.bbs-reply:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(var(--color-gold-rgb), 0.4);
    transform: translateX(5px);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

.bbs-reply:last-child {
    margin-bottom: 0;
}

/* 返信の投稿者情報 */
.bbs-reply .reply-author-info {
    margin-bottom: 0.5rem;
}

.bbs-reply .reply-meta {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.8rem;
}

.bbs-reply .author-with-avatar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bbs-reply .author-with-avatar img,
.bbs-reply .author-with-avatar span[style*="inline-block"] {
    width: 20px !important;
    height: 20px !important;
    border-radius: 50%;
    border: 1.5px solid rgba(var(--color-gold-rgb), 0.4);
    flex-shrink: 0;
}

.bbs-reply .reply-author {
    font-weight: 600;
    color: var(--color-gold);
    font-size: 0.85rem;
}

.bbs-reply .reply-date {
    color: #888;
    font-size: 0.75rem;
}

.bbs-reply .reply-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

/* 返信のコンテンツ */
.bbs-reply .reply-content {
    color: #ddd;
    line-height: 1.6;
    font-size: 0.85rem;
    margin-top: 0.5rem !important;
    margin-bottom: 0 !important;
    padding-top: 0.5rem !important;
    padding-bottom: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* 返信の本文内のpタグの余白を調整 */
.bbs-reply .reply-content p {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.bbs-reply .reply-content p:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.bbs-reply .reply-content p:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* 投稿アクション（修正・削除ボタン） */
.post-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.edit-post-toggle,
.delete-post-btn,
.btn-small,
.admin-edit-link {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1.5px solid;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    white-space: nowrap;
}


.edit-post-toggle {
    color: var(--color-gold);
    border-color: rgba(var(--color-gold-rgb), 0.4);
}

.edit-post-toggle:hover {
    background: rgba(var(--color-gold-rgb), 0.15);
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(var(--color-gold-rgb), 0.3);
}

.delete-post-btn {
    color: #ff6b6b;
    border-color: rgba(255, 107, 107, 0.4);
}

.delete-post-btn:hover {
    background: rgba(255, 107, 107, 0.15);
    border-color: #ff6b6b;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(255, 107, 107, 0.3);
}

.reply-actions .edit-post-toggle,
.reply-actions .delete-post-btn {
    padding: 0.3rem 0.7rem;
    font-size: 0.75rem;
}

/* 管理者編集リンクの色とボーダー色（サイズは修正・削除と同じ） */
.admin-edit-link {
    color: #4ecdc4 !important;
    text-decoration: none !important;
    border-color: rgba(78, 205, 196, 0.4) !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.85rem !important;
    min-height: 36px !important;
    border-width: 1.5px !important;
    line-height: 1.2 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: middle !important;
}

.admin-edit-link:hover {
    background: rgba(78, 205, 196, 0.15);
    border-color: #4ecdc4;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(78, 205, 196, 0.3);
}

/* 編集フォームコンテナ */
.bbs-edit-form-container {
    margin-top: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(var(--color-gold-rgb), 0.25);
    border-radius: 10px;
    animation: slideDown 0.3s ease-out;
}

/* 編集フォーム */
.bbs-edit-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bbs-edit-form .form-group {
    margin-bottom: 0;
}

.bbs-edit-form label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--color-gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.bbs-edit-form input[type="text"],
.bbs-edit-form textarea,
.bbs-edit-form input[type="password"] {
    width: 100%;
    padding: 0.7rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    color: #fff;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.bbs-edit-form input:focus,
.bbs-edit-form textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(var(--color-gold-rgb), 0.2);
    background: rgba(0, 0, 0, 0.5);
}

.bbs-edit-form textarea {
    min-height: 100px;
    resize: vertical;
}

.bbs-edit-form .form-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.bbs-edit-form .btn {
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.bbs-edit-form .btn[type="submit"] {
    background: linear-gradient(135deg, var(--color-gold), #f4d03f);
    color: var(--color-black);
    box-shadow: 0 3px 10px rgba(var(--color-gold-rgb), 0.3);
}

.bbs-edit-form .btn[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(var(--color-gold-rgb), 0.5);
}

.bbs-edit-form .cancel-edit-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #ccc;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bbs-edit-form .cancel-edit-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

/* 投稿アクションの注意書き */
.post-action-note {
    color: #999;
    font-size: 0.75rem;
    font-style: italic;
    margin-top: 0.5rem;
}

/* 必須・任意マーク */
.required {
    color: #ff6b6b;
}

.optional {
    color: #888;
    font-weight: normal;
}

/* フォーム説明文 */
.description {
    font-size: 0.75rem;
    color: #999;
    margin-top: 0.25rem;
    font-style: italic;
}

/* モバイル対応 - 返信機能 */
@media (max-width: 768px) {
    .bbs-replies {
        margin-left: 1rem;
        padding-left: 1rem;
    }
    
    .bbs-reply::before {
        left: -0.75rem;
        font-size: 1rem;
    }
    
    .bbs-reply {
        padding: 0.75rem;
    }
    
    .reply-post-toggle {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    .bbs-reply-form-container,
    .bbs-edit-form-container {
        padding: 1rem;
    }
    
    /* 通常投稿のボタンは上記の.bbs-post .post-actionsで定義済み */
    /* このセクションは他の場所で使われる.post-actions用（必要に応じて使用） */
    
    /* 返信も通常の投稿と同じレイアウトに */
    .bbs-reply .reply-meta {
        position: relative;
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto;
        gap: 0.5rem 0.4rem;
        align-items: center;
        width: 100%;
    }
    
    .bbs-reply .author-with-avatar {
        grid-column: 1;
        grid-row: 1;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        min-width: 0;
        flex-wrap: wrap;
        flex: 1;
        width: 100%;
        overflow: visible;
    }
    
    .bbs-reply .reply-author {
        flex: 1 1 auto;
        min-width: 0;
        white-space: normal;
        word-wrap: break-word;
        overflow: visible;
        text-overflow: clip;
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* 返信のアバターアイコンのサイズ調整 */
    .bbs-reply .author-with-avatar img,
    .bbs-reply .author-with-avatar span[style*="inline-block"] {
        width: 18px !important;
        height: 18px !important;
        flex-shrink: 0;
    }
    
    .bbs-reply .reply-date {
        font-size: 0.7rem;
        margin-left: 0.4rem;
        flex-shrink: 0;
    }
    
    .bbs-reply .reply-actions {
        grid-column: 2;
        grid-row: 1;
        flex-direction: row;
        gap: 0.3rem;
        margin: 0;
        flex-wrap: nowrap;
        align-items: flex-start;
        display: flex;
        flex-shrink: 0;
        padding-top: 0.1rem;
    }
    
    .bbs-reply .reply-actions .edit-post-toggle,
    .bbs-reply .reply-actions .delete-post-btn {
        padding: 0.35rem 0.5rem;
        font-size: 0.7rem;
        min-height: 28px;
        flex: 0 0 auto;
        white-space: nowrap;
        border-width: 1.5px;
        line-height: 1.2;
    }
}

/* モバイル対応 */
@media (max-width: 768px) {
    body {
        background-attachment: scroll;
    }
    
    body::before {
        background-attachment: scroll;
    }
    
    body::after {
        background: rgba(0, 0, 0, 0.85); /* モバイルではさらに濃く */
    }
    
    .social-icons {
        gap: 0.75rem;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
    }
    
    .social-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* TOPページニュースセクション - おしゃれデザイン */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-header h2 {
    color: var(--color-gold);
    font-size: clamp(1.4rem, 1.6vw + 1rem, 1.9rem);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.decoration-dot {
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.news-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .news-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .news-cards-grid {
        grid-template-columns: 1fr;
    }
}

.news-card-mini {
    background: var(--color-black);
    border: 1px solid rgba(var(--color-gold-rgb), 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card-mini::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-red));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-card-mini:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

.news-card-mini:hover::before {
    opacity: 1;
}

.news-card-mini {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.news-date-mini {
    background: linear-gradient(135deg, var(--color-gold), #f4d03f);
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1.25rem;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
}

.news-date-mini::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    border-radius: 8px;
    pointer-events: none;
}

.date-full-mini {
    display: block;
    font-size: 1rem;
    font-weight: bold;
    color: var(--color-black);
    line-height: 1;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    letter-spacing: 0.5px;
}

.news-content-mini {
    flex: 1;
    min-width: 0;
    text-align: center;
}

.news-title-mini {
    margin: 0 0 0.75rem 0;
    font-size: 1.1rem;
    line-height: 1.4;
}

/* 小さなスマホでの記事タイトルサイズ */
@media (max-width: 480px) {
    .news-title-mini {
        font-size: 0.85rem;
        line-height: 1.2;
    }
}

/* イベントカードセクション - 無限スクロール */
.event-cards-section {
    padding: 4rem 0;
    background: var(--color-black);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1.2s ease-out 0.8s both;
}

.event-cards-section .section-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--color-gold);
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--color-gold) 0%, #f4d03f 50%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.event-cards-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    border-radius: 2px;
}

.event-cards-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
}

.event-cards-wrapper {
    display: flex;
    align-items: center;
    height: 400px;
    overflow: hidden;
    position: relative;
}

/* 無限スクロール用のスライドブロック（重複削除） */

/* ホバー時にアニメーションを一時停止（個別制御） */
.event-cards-wrapper:hover .event-cards-slide {
    animation-play-state: paused;
}

/* ホバー時の重なり防止 */
.event-cards-wrapper:hover .event-card {
    position: relative;
    z-index: 1;
}

.event-cards-wrapper:hover .event-card:hover {
    z-index: 20;
}

/* アニメーション停止時の位置固定 */
.event-cards-wrapper:hover .event-cards-slide {
    position: relative;
}

/* カード間の適切な間隔を確保 */
.event-cards-slide {
    display: flex;
    gap: 1.5rem;
    animation: infinite-scroll 30s infinite linear;
    flex-shrink: 0;
    will-change: transform;
}

/* 最後のカードの右マージンを追加して間隔を統一 */
.event-card-last {
    margin-right: 1.5rem;
}

/* スライド間の間隔を調整 */
.event-cards-slide + .event-cards-slide {
    margin-left: 1.5rem;
}

/* 無限スクロールアニメーション */
@keyframes infinite-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.event-card {
    flex: 0 0 280px;
    background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 4px 15px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    transform: translateY(0);
    opacity: 1;
    margin-right: 0;
    z-index: 1;
    border: 1px solid rgba(var(--color-gold-rgb), 0.2);
}

.event-card:hover {
    transform: translateY(-20px) scale(1.08);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 15px 35px rgba(212, 175, 55, 0.4),
        0 5px 20px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 10;
    border-color: rgba(212, 175, 55, 0.5);
}

.event-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.event-card-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.event-card:hover .event-card-image {
    transform: scale(1.1);
    filter: brightness(1.1) saturate(1.2);
}

.event-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 30%,
        rgba(0, 0, 0, 0.6) 70%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    opacity: 0;
    transition: all 0.4s ease;
}

.event-card:hover .event-card-overlay {
    opacity: 1;
}

.event-card-date {
    background: linear-gradient(135deg, var(--color-gold) 0%, #f4d03f 100%);
    color: var(--color-black);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: bold;
    align-self: flex-start;
    box-shadow: 
        0 4px 12px rgba(212, 175, 55, 0.4),
        0 2px 6px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.event-card-category {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 20, 0.9) 100%);
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.8rem;
    align-self: flex-end;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.event-card-content {
    padding: 1.5rem;
    background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
}

.event-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.event-card-excerpt {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.event-card.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background: var(--color-dark);
    color: var(--color-light-gray);
    font-size: 1.2rem;
}

.event-card-placeholder {
    text-align: center;
}

/* ホバー時の追加効果 */
.event-card:hover .event-card-title {
    color: var(--color-gold);
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

.event-card:hover .event-card-excerpt {
    color: #e0e0e0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* イベントカード レスポンシブ対応 */
@media (max-width: 768px) {
    .event-cards-section {
        padding: 3rem 0;
    }
    
    .event-cards-section .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .event-cards-wrapper {
        height: 350px;
    }
    
    .event-card {
        flex: 0 0 240px;
    }
    
    .event-card-image-container {
        height: 160px;
    }
    
    .event-card-content {
        padding: 1rem;
    }
    
    .event-card-title {
        font-size: 1rem;
    }
    
    .event-card-excerpt {
        font-size: 0.8rem;
    }
    
    .event-cards-slide {
        animation-duration: 25s;
    }
}

@media (max-width: 480px) {
    .event-cards-section {
        padding: 2rem 0;
    }
    
    .event-cards-section .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .event-cards-wrapper {
        height: 300px;
    }
    
    .event-card {
        flex: 0 0 200px;
    }
    
    .event-card-image-container {
        height: 140px;
    }
    
    .event-card-content {
        padding: 0.8rem;
    }
    
    .event-card-title {
        font-size: 0.9rem;
    }
    
    .event-card-excerpt {
        font-size: 0.75rem;
    }
    
    .event-cards-slide {
        animation-duration: 20s;
    }
}

.news-title-mini a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-title-mini a:hover {
    color: var(--color-gold);
}

.news-meta-mini {
    margin-top: auto;
}

.news-category-mini {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.7rem;
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    display: inline-block;
    font-weight: 500;
}

/* カテゴリー別の色分け */
.news-category-news {
    background: rgba(33, 150, 243, 0.1) !important;
    color: #2196F3 !important;
    border-color: rgba(33, 150, 243, 0.3) !important;
}

.news-category-campaign {
    background: rgba(76, 175, 80, 0.1) !important;
    color: #4CAF50 !important;
    border-color: rgba(76, 175, 80, 0.3) !important;
}

.news-category-coupon {
    background: rgba(255, 152, 0, 0.1) !important;
    color: #FF9800 !important;
    border-color: rgba(255, 152, 0, 0.3) !important;
}

.news-card-mini-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
}

.read-more-mini {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--color-gold);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-gold);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more-mini:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.read-more-mini svg {
    transition: transform 0.3s ease;
}

.read-more-mini:hover svg {
    transform: translateX(2px);
}

.no-news-message {
    text-align: center;
    padding: 4rem 2rem;
    color: #888;
    grid-column: 1 / -1;
}

.no-news-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.no-news-message p {
    font-size: 1.1rem;
    margin: 0;
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--color-gold);
    text-decoration: none;
    padding: 0.75rem 2rem;
    border: 2px solid var(--color-gold);
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-outline:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.btn-outline:hover::before {
    left: 100%;
}

.btn-outline svg {
    transition: transform 0.3s ease;
}

.btn-outline:hover svg {
    transform: translateX(3px);
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
    .avatar-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .bbs-container {
        padding: 0 1rem;
    }
    
    .bbs-form-wrapper,
    .bbs-posts {
        margin: 0 -1rem;
        border-radius: 0;
    }
    
    .bbs-post {
        padding: 1rem;
    }
    
    .post-author-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .author-details .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .login-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .login-buttons .btn {
        width: 100%;
        max-width: 200px;
    }
}

/* フッター内のh3タグのサイズ統一 */
.site-footer h3 {
    font-size: 1.8rem !important;
}

/* レスポンシブ対応：フッター内のh3タグ */
@media (max-width: 768px) {
    .site-footer h3 {
        font-size: 1.5rem !important;
    }
}
/* Responsive */
@media (max-width: 768px) {
    .main-navigation ul {
        flex-direction: column;
    }
    
    .price-plans {
        grid-template-columns: 1fr;
    }
    
    .plan.featured {
        transform: none;
    }
}

/* ============================================
   パンくずリスト
   ============================================ */
.breadcrumb {
    background: rgba(10, 10, 10, 0.8);
    padding: 0.75rem 0;
    margin-top: 73px; /* ヘッダーの高さ分 */
    border-bottom: 1px solid rgba(var(--color-gold-rgb), 0.2);
    backdrop-filter: blur(10px);
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: #aaa;
}

.breadcrumb-item:not(:last-child)::after {
    content: '>';
    margin: 0 0.5rem;
    color: rgba(var(--color-gold-rgb), 0.6);
}

.breadcrumb-item a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.breadcrumb-item:last-child {
    color: var(--color-gold);
    font-weight: 500;
}

@media (max-width: 768px) {
    .breadcrumb {
        padding: 0.5rem 0;
        font-size: 0.75rem;
    }
    
    .breadcrumb-item:not(:last-child)::after {
        margin: 0 0.25rem;
    }
}