
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-padding-top: 100px;
        }

        body {
            font-family: "Noto Serif JP", "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "游明朝体", "Yu Mincho Light", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "Times New Roman", "Times", serif;
            font-weight: 100;
            font-style: normal;
            overflow-x: hidden;
            background: #000;
        }

        .font-italic {
            font-style: italic;
        }

        @media screen and (min-width: 768px){
            .br-sp {display: none; }
        }


a {
    color: #66b3ff; /* 青系の落ち着いた色 */
    text-decoration: none;
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
    border-bottom: 1px solid rgba(102, 179, 255, 0.3); /* 控えめな下線 */
}

a:hover,
a:focus {
    color: #99ccff; /* 少し明るく上品に変化 */
    border-bottom-color: rgba(153, 204, 255, 0.6);
}

a:active {
    color: #cce6ff; /* アクティブ時さらに明るく */
    border-bottom-color: rgba(204, 230, 255, 0.8);
}


        /* ヘッダー */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 40px;
            z-index: 10000;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.6rem;
            font-weight: bold;
			font-style: italic;
			letter-spacing: 0.05em;
            color: #666;
        }
        .logo a {
            color: #666;
			text-decoration: none;
    border-bottom:none;
        }
        .logo span {
            font-size: 1.8rem;
        }
		.logo .logo-club {
			font-size: 1.3rem;
			letter-spacing: 0;
		}
		.logo .logo-yomi {
			font-size: 1.0rem;
			letter-spacing: 0;
		}
        /* デスクトップナビゲーション */
        .desktop-nav {
            display: flex;
            gap: 30px;
        }

        .desktop-nav a {
            text-decoration: none;
            color: #999;
            transition: color 0.3s;
            position: relative;
    border-bottom:none;
        }

        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #0066ff;
            transition: width 0.3s;
        }

        .desktop-nav a:hover::after {
            width: 100%;
        }

        /* ハンバーガーメニュー */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 10002;
            padding: 10px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #fff;
            transition: all 0.3s;
            border-radius: 1px;
        }

        /* ハンバーガーメニューがアクティブ時の変化 */
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

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

        /* モバイルメニュー - 上から下に出る */
        .mobile-menu {
            position: fixed;
            top: -100%;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            z-index: 10001;
            padding: 100px 40px 40px;
            transition: top 0.4s ease;
        }

        .mobile-menu.active {
            top: 0;
        }

        .mobile-menu a {
            display: block;
            padding: 20px 0;
            color: #fff;
            text-decoration: none;
            font-size: 1.4rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            text-align: center;
            transition: all 0.3s ease;
            letter-spacing: 0.1em;
        }

        .mobile-menu a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #0066ff;
        }

        .mobile-menu a:last-child {
            border-bottom: none;
        }



        /*--------------------------------------------------------------------------
        ゴールドパンくずリスト
        --------------------------------------------------------------------------*/
        .breadcrumb-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
        }

        /* メインのパンくずリスト */
        .breadcrumb {
            background: linear-gradient(135deg, 
                rgba(0, 0, 0, 0.9) 0%, 
                rgba(40, 30, 10, 0.85) 50%, 
                rgba(0, 0, 0, 0.9) 100%);
            border: 1px solid rgba(218, 165, 32, 0.2);
            border-radius: 8px;
            padding: 15px 25px;
            margin: 20px 0 40px;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            box-shadow: 
                0 4px 20px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(218, 165, 32, 0.1);
        }

        /* 背景装飾エフェクト */
        .breadcrumb::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(218, 165, 32, 0.08), 
                transparent);
            transition: left 0.8s ease;
            pointer-events: none;
        }

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

        /* パンくずナビゲーション */
        .breadcrumb-nav {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            position: relative;
            z-index: 2;
            list-style: none;
        }

        /* パンくずアイテム */
        .breadcrumb-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .breadcrumb-item a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 200;
            letter-spacing: 0.05em;
            padding: 8px 12px;
            border-radius: 4px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* ホバーエフェクト */
        .breadcrumb-item a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(218, 165, 32, 0.15), 
                transparent);
            transition: left 0.4s ease;
        }

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

        .breadcrumb-item a:hover {
            color: #DAA520;
            background: rgba(218, 165, 32, 0.05);
            transform: translateY(-1px);
            text-shadow: 0 0 8px rgba(218, 165, 32, 0.3);
        }

        /* 現在のページ（アクティブ状態） */
        .breadcrumb-item.active {
            color: #DAA520;
            font-weight: 300;
            letter-spacing: 0.1em;
            text-shadow: 0 0 10px rgba(218, 165, 32, 0.5);
            position: relative;
            padding: 8px 12px;
        }

        .breadcrumb-item.active::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 1px;
            background: linear-gradient(to right, 
                transparent, 
                rgba(218, 165, 32, 0.8), 
                transparent);
        }

        /* 区切り文字 */
        .breadcrumb-separator {
            color: #B8860B;
            font-size: 0.8rem;
            margin: 0 4px;
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .breadcrumb-item:hover + .breadcrumb-separator,
        .breadcrumb-separator:hover {
            color: #DAA520;
            opacity: 1;
            transform: scale(1.1);
        }

        /* ホームアイコン */
        .breadcrumb-home-icon {
            color: #B8860B;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .breadcrumb-item a:hover .breadcrumb-home-icon {
            color: #DAA520;
            transform: scale(1.1);
        }

        /*--------------------------------------------------------------------------
        レスポンシブ対応
        --------------------------------------------------------------------------*/
        @media (max-width: 768px) {
            .breadcrumb-container {
                padding: 0 15px;
            }

            .breadcrumb {
                padding: 12px 20px;
                margin: 15px 0 30px;
            }

            .breadcrumb-item a {
                font-size: 0.9rem;
                padding: 6px 10px;
            }

            .breadcrumb-item.active {
                padding: 6px 10px;
            }

            .breadcrumb-separator {
                margin: 0 2px;
                font-size: 0.75rem;
            }
        }

        @media (max-width: 480px) {
            .breadcrumb {
                padding: 10px 15px;
            }

            .breadcrumb-item a {
                font-size: 0.85rem;
                padding: 5px 8px;
            }

            .breadcrumb-item.active {
                padding: 5px 8px;
            }

            .breadcrumb-nav {
                gap: 4px;
            }

            .breadcrumb-separator {
                margin: 0 1px;
            }

            /* 小画面では改行を許可 */
            .breadcrumb-nav {
                flex-wrap: wrap;
                line-height: 1.6;
            }
        }

        /*--------------------------------------------------------------------------
        アニメーション
        --------------------------------------------------------------------------*/
        @keyframes breadcrumbFadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .breadcrumb {
            animation: breadcrumbFadeIn 0.6s ease-out;
        }

        /*--------------------------------------------------------------------------
        印刷用スタイル
        --------------------------------------------------------------------------*/
        @media print {
            .breadcrumb {
                background: none !important;
                border: 1px solid #ccc !important;
                color: #000 !important;
                box-shadow: none !important;
            }

            .breadcrumb-item a,
            .breadcrumb-item.active {
                color: #000 !important;
                text-shadow: none !important;
            }

            .breadcrumb-separator {
                color: #666 !important;
            }
        }





        /*--------------------------------------------------------------------------
        メインコンテンツ
        --------------------------------------------------------------------------*/


        
        .pub-white-section {
            margin: 60px 0;
            padding: 60px 0;
            background-image: linear-gradient(90deg, rgba(255, 255, 255, 255.7), rgba(255, 255, 255, 1));
            border-radius: 8px;
            color: #333;
            box-shadow: 2px 2px 50px rgba(0, 0, 0, 0.2);
        }
.pub-white-section h3 {
	color: #666;
	
}

.image-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* 画像間のスペース */
    flex-wrap: wrap; /* スマホで折り返しOK */
}

.image-row img {
    width: 50%;
    max-width: 400px; /* 大きすぎないよう制限 */
    border-radius: 0px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-row img:hover {
    transform: scale(1.01);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}

/* スマホ用調整 */
@media screen and (max-width: 768px) {
    .image-row img {
        width: 80%;
    box-shadow:none;
    }
}



        .content {
            padding: 120px 40px 60px;
            background: #f5f5f5;
            min-height: 100vh;
            background-image: linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.5));
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .content-block {
            max-width: 900px;
            margin: 0 auto 120px;
            padding: 0 20px;
        }

        .content-block p {
            font-size: 1.1rem;
            line-height: 2.2;
            color: #ccc;
            margin-bottom: 30px;
            text-align: justify;
            font-weight: 100;
        }

        .content-block p.text-center {
            text-align: center;
        }

.content-block iframe {
	width: 100%;
	height: 500px;
	
}

        .content-image {
            margin: 40px 0 50px;
            text-align: center;
        }

        .content-image img {
            max-width: 100%;
            height: auto;
            border: 1px solid #666;
            border-radius: 4px;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .content-image img:hover {
            opacity: 1;
        }


/*-------------------------------------------------
コンテンツセクション共通
----------------------------------------------------*/
@media screen and (min-width: 768px){
.br-sp {display: none; }
}




h2 {
    font-size: 2.0rem;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    font-weight: 300;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}
h2 span {
    font-size: 2.8rem;
    font-weight: 100;
	font-style: italic;
    letter-spacing: 0.05em;
    line-height: 1.4;
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 1);
}

/* h2の装飾ライン */
h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(to right, transparent, #888, transparent);
}

/* h2のサブ装飾 */
h2::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #888;
    border-radius: 50%;
}

/* サブタイトル（h3） */
h3 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 200;
    letter-spacing: 0.1em;
    line-height: 1.5;
    position: relative;
    font-style: normal;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

/* h3の上下装飾 */
h3::before,
h3::after {
    content: '◆';
    position: absolute;
    top: 80%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: #999;
    font-style: normal;
	opacity: 0.4;
}

h3::before {
    left: calc(50% - 180px);
}

h3::after {
    right: calc(50% - 180px);
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
        letter-spacing: 0.1em;
    }
    
    h2::after {
        width: 80px;
        bottom: -15px;
    }
    
    h3 {
        font-size: 1.8rem;
        margin-bottom: 30px;
        letter-spacing: 0.05em;
    }
    
    h3::before {
        left: calc(50% - 120px);
    }
    
    h3::after {
        right: calc(50% - 120px);
    }
}



@media screen and (max-width: 480px) {
            h2 {
                font-size: 1.6rem;
                letter-spacing: 0.05em;
            }

            h2 span {
                font-size: 2.0rem;
            }

            h2::after {
                width: 60px;
            }
            
            h3 {
                font-size: 1.4rem;
            }
            
            h3::before,
            h3::after {
                display: none;
            }

}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* 使用例クラス */
.section-title {
    margin-bottom: 30px;
}

.section-subtitle {
    margin-bottom: 0px;
    opacity: 0.9;
}




        .content-block {
            max-width: 900px;
            margin: 0 auto 20px;
            padding: 0 20px;
        }


        .content-block p {
            font-size: 1.0rem;
            line-height: 2.2;
            color: #ccc;
            margin-bottom: 30px;
            text-align: justify;
            font-weight: 100;
        }
       .content-block p.text-center {
			text-align: center;
		}


        .content-image {
            margin: 40px 0 50px;
            text-align: center;
        }

        .content-image img {
            max-width: 100%;
            height: auto;
            border: 1px solid #666;
            border-radius: 4px;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .content-image img:hover {
            opacity: 1;
        }

        /* ボタンスタイル */
        .simple-button {
            display: inline-block;
            margin: 50px 0 0;
            padding: 15px 40px;
            background: transparent;
            color: #fff;
            border: 1px solid #666;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 100;
            letter-spacing: 0.1em;
            transition: all 0.3s ease;
            text-align: center;
        }

        .simple-button:hover {
            background: #fff;
            color: #000;
            border-color: #fff;
        }

        .button-container {
            text-align: center;
            margin-top: 40px;
        }

        @media screen and (max-width: 768px) {
            .simple-button {
                padding: 12px 30px;
                font-size: 1.0rem;
            }
        }





        /* ABOUT セクション */
        .about-section {
    padding: 60px 0;
    background: #111; 
    color: #fff;
        }

        .equation {
            font-size: 1.8rem;
            font-weight: 300;
            text-align: center;
            color: #fff;
            margin: 50px 0;
            padding: 30px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid #fff;
            letter-spacing: 0.2em;
        }

        /* 理念セクション用CSS */
        .philosophy-title {
            font-size: 1.6rem;
            color: #fff;
            margin: 60px 0 40px;
            text-align: center;
            font-weight: 200;
            letter-spacing: 0.2em;
            position: relative;
        }

        .philosophy-title::before,
        .philosophy-title::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 60px;
            height: 1px;
            background: #666;
        }

        .philosophy-title::before {
            left: calc(50% - 120px);
        }

        .philosophy-title::after {
            right: calc(50% - 120px);
        }

        .philosophy-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            margin: 50px 0;
        }

        .philosophy-item {
            padding: 30px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid #333;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

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

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

        .philosophy-item:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: #555;
            transform: translateY(-5px);
        }

        .philosophy-item h3 {
            font-size: 1.4rem;
            color: #fff;
            margin-bottom: 15px;
            font-weight: 300;
            letter-spacing: 0.1em;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .philosophy-item h3::before {
            content: '';
            width: 4px;
            height: 20px;
            background: linear-gradient(to bottom, #666, #999);
            border-radius: 2px;
        }

        .philosophy-item p {
            font-size: 1.0rem;
            line-height: 1.8;
            color: #bbb;
            margin: 0;
            font-weight: 100;
            letter-spacing: 0.05em;
        }

        .philosophy-english {
            font-size: 0.9rem;
            color: #888;
            font-style: italic;
            margin-bottom: 8px;
            letter-spacing: 0.1em;
        }

        /* SERVICE セクション */
        .service-section {
    padding: 60px 0;
    background: #111; 
    color: #fff;
        }

        /* サービス一覧 */
        .services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            margin: 50px 0;
        }

        .service-item {
            padding: 30px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid #333;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

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

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

        .service-item:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: #555;
            transform: translateY(-5px);
        }

        .service-item h4 {
            font-size: 1.3rem;
            color: #fff;
            margin-bottom: 15px;
            font-weight: 300;
            letter-spacing: 0.1em;
            display: flex;
            align-items: center;
            gap: 15px;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
        }

        .service-item h4::before {
            content: '';
            width: 3px;
            height: 18px;
            background: linear-gradient(to bottom, #666, #999);
            border-radius: 2px;
        }

        .service-item p {
            font-size: 1.0rem;
            line-height: 1.8;
            color: #bbb;
            margin: 0;
            font-weight: 100;
            letter-spacing: 0.05em;
        }

        /* キャストセクション */
        .cast-section {
            margin-top: 60px;
            padding: 40px 30px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid #444;
            border-radius: 8px;
            position: relative;
        }

        .cast-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(to right, transparent, #666, transparent);
        }

        .cast-title {
            font-size: 1.5rem;
            color: #fff;
            margin-bottom: 20px;
            text-align: center;
            font-weight: 200;
            letter-spacing: 0.15em;
            position: relative;
            text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
        }

        .cast-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 1px;
            background: linear-gradient(to right, transparent, #888, transparent);
        }

        .cast-description {
            font-size: 1.0rem;
            line-height: 2.0;
            color: #ccc;
            text-align: center;
            font-weight: 100;
            letter-spacing: 0.05em;
            margin: 0;
        }

        /* メニューセクション */
        .menu-section {
    padding: 60px 0;
    background: #111; 
    color: #fff;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            margin: 50px 0;
        }

        .menu-category {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid #333;
            border-radius: 8px;
            padding: 30px;
            transition: all 0.3s ease;
        }

        .menu-category:hover {
            background: rgba(255, 255, 255, 0.05);
            transform: translateY(-3px);
        }

        .menu-category-title {
            font-size: 1.5rem;
            color: #fff;
            margin-bottom: 25px;
            font-weight: 300;
            letter-spacing: 0.1em;
            text-align: center;
            position: relative;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
        }

        .menu-category-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 1px;
            background: linear-gradient(to right, transparent, #888, transparent);
        }

        .menu-items {
            display: grid;
            gap: 15px;
        }

        .menu-item {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .menu-item:last-child {
            border-bottom: none;
        }

        .menu-item-name {
            font-size: 1.0rem;
            color: #ccc;
            font-weight: 200;
            letter-spacing: 0.05em;
            line-height: 1.4;
        }

        .menu-item-price {
            font-size: 0.9rem;
            color: #999;
            font-weight: 100;
            letter-spacing: 0.05em;
            white-space: nowrap;
            margin-left: 20px;
        }

        /* アクセスセクション */
        .access-section {
    padding: 60px 0;
    background: #111; 
    color: #fff;
        }

        .access-info {
            display: grid;
            gap: 25px;
            margin: 40px 0;
        }

        .access-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid #333;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .access-item:hover {
            background: rgba(255, 255, 255, 0.05);
            transform: translateY(-2px);
        }

        .access-label {
            font-size: 1.1rem;
            color: #fff;
            font-weight: 300;
            letter-spacing: 0.1em;
            min-width: 100px;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
        }

        .access-detail {
            font-size: 1.0rem;
            color: #ccc;
            font-weight: 100;
            letter-spacing: 0.05em;
            line-height: 1.6;
        }

 

        /* システムセクション */
.system-section {
    padding: 60px 0;
    background: #111; 
    color: #fff;
}


.system-info,
.price-info {
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.hours-item,
.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.hours-label,
.price-label {
    font-weight: bold;
            font-size: 1.1rem;
}

.hours-detail,
.price-detail {
            font-size: 1.1rem;
    text-align: right;
}

.text-center {
    text-align: center;
            font-size: 1.1rem;
    color: #ccc;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .hours-item,
    .price-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .hours-detail,
    .price-detail {
        text-align: left;
        margin-top: 4px;
    }
}

/* 求人ページ専用CSS */
.recruitment-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%) !important;
    color: #333 !important;
}

.recruitment-section h2 {
    color: #333 !important;
    text-shadow: none !important;
}

.recruitment-section h2 span {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.recruitment-section h3 {
    color: #555 !important;
    text-shadow: none !important;
}

.recruitment-section .content-block p {
    color: #555 !important;
}

.recruitment-highlight {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.15), rgba(255, 215, 0, 0.1));
    border: 2px solid rgba(218, 165, 32, 0.4);
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.15);
}

.recruitment-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.1), transparent);
    transition: left 0.8s ease;
}

.recruitment-highlight:hover::before {
    left: 100%;
}

.recruitment-highlight h3 {
    color: #B8860B;
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-shadow: none;
    font-weight: 500;
}

.recruitment-highlight .price {
    font-size: 2.2rem;
    font-weight: bold;
    color: #DAA520;
    margin: 10px 0;
    text-shadow: none;
}

.recruitment-highlight .campaign {
    font-size: 1.4rem;
    color: #B8860B;
    font-weight: bold;
    margin-top: 15px;
}

.recruitment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 50px 0;
}

.recruitment-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.recruitment-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.05), transparent);
    transition: left 0.6s ease;
}

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

.recruitment-item:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f1f3f4 100%);
    border-color: #DAA520;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.15);
}

.recruitment-item h4 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 15px;
    text-shadow: none;
}

.recruitment-item h4::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(to bottom, #DAA520, #FFD700);
    border-radius: 2px;
}

.recruitment-list {
    list-style: none;
    padding: 0;
}

.recruitment-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.recruitment-list li::before {
    content: '✓';
    color: #DAA520;
    font-weight: bold;
    font-size: 1.1rem;
}

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

.contact-section {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.2), rgba(255, 215, 0, 0.15));
    border: 2px solid rgba(218, 165, 32, 0.5);
    border-radius: 15px;
    padding: 40px;
    margin: 50px 0;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.2);
}

.contact-section h4 {
    color: #B8860B;
    font-size: 1.6rem;
    margin-bottom: 20px;
    text-shadow: none;
    font-weight: 500;
}

.contact-info {
    font-size: 1.2rem;
    color: #333;
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
}

.contact-info i {
    color: #DAA520;
    font-size: 1.3rem;
}

.contact-button {
    display: inline-block;
    margin: 20px 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #DAA520, #FFD700);
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
}

.contact-button:hover {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.5);
    color: #000;
    border-bottom: none;
}

.recruitment-message {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.recruitment-message::before {
    display: none;
}

.recruitment-message p {
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
    color: #555 !important;
    margin: 0 !important;
    font-style: normal !important;
    text-align: center;
    font-weight: 400;
}

/* レスポンシブ対応 */
@media screen and (min-width: 768px) {
    .recruitment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .recruitment-highlight {
        padding: 20px;
    }
    
    .recruitment-highlight h3 {
        font-size: 1.5rem;
    }
    
    .recruitment-highlight .price {
        font-size: 1.8rem;
    }
    
    .recruitment-highlight .campaign {
        font-size: 1.2rem;
    }
    
    .recruitment-item {
        padding: 25px 20px;
    }
    
    .contact-section {
        padding: 30px 20px;
    }
    
    .contact-button {
        display: block;
        margin: 15px 0;
        padding: 12px 25px;
    }
    
    .recruitment-message {
        padding: 20px;
    }
    
    .recruitment-message p {
        margin-left: 20px;
        font-size: 1.0rem;
    }
}

@media (max-width: 480px) {
    .recruitment-highlight .price {
        font-size: 1.6rem;
    }
    
    .contact-info {
        font-size: 1.1rem;
        flex-direction: column;
        gap: 5px;
    }
}

.recruitment-highlight p {
    color: #555 !important;
    margin: 10px 0;
}

/* キラキラエフェクト */
.sparkle-container {
    position: relative;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #DAA520;
    border-radius: 50%;
    pointer-events: none;
    animation: sparkleAnimation 2s linear infinite;
}

.sparkle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    animation: sparkleGlow 2s ease-in-out infinite;
}

.sparkle:nth-child(odd) {
    background: #FFD700;
    animation-delay: -0.5s;
}

.sparkle:nth-child(3n) {
    background: #FFA500;
    animation-delay: -1s;
}

.sparkle:nth-child(4n) {
    animation-delay: -1.5s;
}

@keyframes sparkleAnimation {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0);
    }
    10% {
        opacity: 1;
        transform: translateY(80px) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(-80px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(0);
    }
}

@keyframes sparkleGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}.recruitment-item p {
    color: #555 !important;
    font-size: 1.0rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ショコラ誘導バナー専用CSS - 縦並び修正版 */
.chocolat-banner {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 50%, #ff9a9e 100%);
    border: 2px solid rgba(255, 107, 157, 0.5);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chocolat-banner::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.8s ease;
}

.chocolat-banner:hover::before {
    left: 100%;
}

.chocolat-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.4);
}

.chocolat-banner-title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.1em;
    width: 100%;
}

.chocolat-banner-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.0rem;
    margin-bottom: 20px;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.chocolat-banner-link {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
    width: 100%;
}

.chocolat-banner-image {
    width: 100%;
    max-width: 300px;
    height: auto;
	padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: block;
    margin: 0 auto;
}

.chocolat-banner-link:hover .chocolat-banner-image {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.chocolat-banner-button {
    display: inline-block;
    margin-top: 0;
    padding: 12px 25px;
    background: linear-gradient(135deg, #fff, #f8f9fa);
    color: #c44569;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.0rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.chocolat-banner-button:hover {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: #c44569;
    text-decoration: none;
}

.chocolat-banner-icon {
    font-size: 1.1rem;
    margin-right: 8px;
}

/* キラキラエフェクト */
.chocolat-sparkle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    animation: chocolatSparkleAnimation 3s linear infinite;
    opacity: 0.8;
}

.chocolat-sparkle:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.chocolat-sparkle:nth-child(2) {
    top: 60%;
    left: 85%;
    animation-delay: -1s;
}

.chocolat-sparkle:nth-child(3) {
    top: 80%;
    left: 25%;
    animation-delay: -2s;
}

.chocolat-sparkle:nth-child(4) {
    top: 30%;
    left: 75%;
    animation-delay: -0.5s;
}

.chocolat-sparkle:nth-child(5) {
    top: 70%;
    left: 55%;
    animation-delay: -1.5s;
}

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

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .chocolat-banner {
        padding: 20px 15px;
        margin: 20px 0;
    }
    
    .chocolat-banner-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .chocolat-banner-subtitle {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .chocolat-banner-image {
        max-width: 250px;
    }
    
    .chocolat-banner-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .chocolat-banner-link {
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .chocolat-banner-title {
        font-size: 1.1rem;
    }
    
    .chocolat-banner-subtitle {
        font-size: 0.85rem;
    }
    
    .chocolat-banner-image {
        max-width: 200px;
    }
}
/* ショコラバナーリンクの下線を完全に削除 */
.chocolat-banner-link {
    display: block;
    text-decoration: none !important;
    border-bottom: none !important;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
    width: 100%;
}

/* ホバー時も下線を表示しない */
.chocolat-banner-link:hover {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* 訪問済みリンクも下線なし */
.chocolat-banner-link:visited {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* フォーカス時も下線なし */
.chocolat-banner-link:focus {
    text-decoration: none !important;
    border-bottom: none !important;
    outline: none;
}

/* アクティブ時も下線なし */
.chocolat-banner-link:active {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* 画像自体にも下線が付かないよう念のため */
.chocolat-banner-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: block;
    margin: 0 auto;
    text-decoration: none !important;
    border-bottom: none !important;
}

/* 他のCSSの影響を受けないよう、より具体的なセレクタでも指定 */
.chocolat-banner .chocolat-banner-link {
    text-decoration: none !important;
    border-bottom: none !important;
}

.chocolat-banner .chocolat-banner-link:hover {
    text-decoration: none !important;
    border-bottom: none !important;
}

.chocolat-banner .chocolat-banner-link:visited {
    text-decoration: none !important;
    border-bottom: none !important;
}

.chocolat-banner .chocolat-banner-link:focus {
    text-decoration: none !important;
    border-bottom: none !important;
}

.chocolat-banner .chocolat-banner-link:active {
    text-decoration: none !important;
    border-bottom: none !important;
}

        /*--------------------------------------------------------------------------
        フッター
        --------------------------------------------------------------------------*/
        footer {
            margin: 0;
            padding: 0;
            color: #fff;
            background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
            position: relative;
            overflow: hidden;
        }

        /* フッター装飾背景 */
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
            pointer-events: none;
        }

        /* メインフッターコンテンツ */
        .footer-main {
            padding: 60px 20px 40px;
            position: relative;
            z-index: 2;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }

        /* フッターロゴ・店舗情報セクション */
        .footer-brand {
            text-align: center;
        }

        .footer-logo {
            font-size: 2.5rem;
            font-weight: bold;
            font-style: italic;
            letter-spacing: 0.1em;
            color: #fff;
            margin-bottom: 15px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }

        .footer-logo .logo-club {
            font-size: 2.0rem;
            letter-spacing: 0.05em;
        }

        .footer-logo .logo-yomi {
            font-size: 1.2rem;
            color: #ccc;
            font-weight: 300;
            letter-spacing: 0.1em;
            display: block;
            margin-top: 8px;
        }

        .footer-tagline {
            font-size: 1.1rem;
            color: #999;
            font-weight: 200;
            letter-spacing: 0.15em;
            margin-bottom: 30px;
            font-style: italic;
        }

        /* 店舗情報グリッド */
        .footer-info-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            margin-top: 40px;
        }

        .footer-info-section {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

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

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

        .footer-info-section:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

        .footer-info-title {
            font-size: 1.2rem;
            color: #fff;
            font-weight: 300;
            letter-spacing: 0.1em;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
        }

        .footer-info-title i {
            font-size: 1.0rem;
            color: #666;
            width: 20px;
            text-align: center;
        }

        .footer-info-detail {
            font-size: 1.0rem;
            color: #ccc;
            font-weight: 100;
            letter-spacing: 0.05em;
            line-height: 1.6;
        }

        /* SNS・リンクセクション */
        .footer-social {
            text-align: center;
            margin-top: 40px;
        }

        .footer-social-title {
            font-size: 1.1rem;
            color: #fff;
            font-weight: 300;
            letter-spacing: 0.1em;
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #ccc;
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.3);
            color: #fff;
            transform: translateY(-3px);
        }

        /* フッターボトム */
        .footer-bottom {
            background: rgba(0, 0, 0, 0.5);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 25px 20px 60px 20px;
            position: relative;
            z-index: 2;
        }

        .footer-bottom-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .footer-copyright {
            font-size: 0.85rem;
            color: #666;
            font-weight: 100;
            letter-spacing: 0.05em;
        }

        .footer-copyright a {
            color: #999;
            text-decoration: none;
            transition: color 0.3s ease;
    border-bottom:none;
        }

        .footer-copyright a:hover {
            color: #fff;
        }




/* 電話 */
.phone-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-image: radial-gradient(circle, rgba(0, 20, 97, 1), rgba(0, 114, 175, 1) 90%);
    color: #fff;
    text-align: center;
    z-index: 999;
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
}

.phone-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.phone-link i {
    font-size: 1.2rem;
}

@media (min-width: 1025px) {
    .phone-link {
        pointer-events: none;
        cursor: default;
    }
}


        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #333 0%, #000 100%);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.4s ease;
            z-index: 9999;
            box-shadow: 
                0 4px 20px rgba(0, 0, 0, 0.3),
                0 0 0 0 rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-to-top:hover {
            background: linear-gradient(135deg, #444 0%, #111 100%);
            transform: translateY(-5px);
            box-shadow: 
                0 8px 30px rgba(0, 0, 0, 0.4),
                0 0 0 8px rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .scroll-to-top:active {
            transform: translateY(-2px);
        }

        /* アイコンアニメーション */
        .scroll-to-top i {
            transition: transform 0.3s ease;
        }

        .scroll-to-top:hover i {
            transform: translateY(-2px);
        }

        /* パルスエフェクト */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            }
        }

        .scroll-to-top.pulse {
            animation: pulse 2s infinite;
        }

        /* レスポンシブ対応 */
        @media (min-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
            }

            .footer-info-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .footer-bottom-container {
                flex-wrap: nowrap;
            }
        }

        @media (min-width: 1024px) {
            .footer-info-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .footer-main {
                padding: 40px 15px 30px;
            }

            .footer-logo {
                font-size: 2.0rem;
            }

            .footer-logo .logo-club {
                font-size: 1.6rem;
            }

            .footer-logo .logo-yomi {
                font-size: 1.0rem;
            }

            .footer-tagline {
                font-size: 1.0rem;
            }

            .footer-info-section {
                padding: 20px;
            }

            .social-links {
                gap: 15px;
            }

            .social-link {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }

            .footer-bottom {
                padding: 20px 15px　80px 15px;
            }

            .footer-bottom-container {
                flex-direction: column;
                text-align: center;
                gap: 12px;
            }

            .scroll-to-top {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
                font-size: 1.0rem;
            }
        }

        @media (max-width: 480px) {
            .footer-main {
                padding: 30px 10px 20px;
            }

            .footer-logo {
                font-size: 1.8rem;
            }

            .footer-info-section {
                padding: 18px 15px;
            }

            .footer-info-title {
                font-size: 1.1rem;
            }

            .footer-info-detail {
                font-size: 0.95rem;
            }

            .social-link {
                width: 40px;
                height: 40px;
                font-size: 1.0rem;
            }

            .scroll-to-top {
                width: 45px;
                height: 45px;
                font-size: 0.9rem;
                bottom: 15px;
                right: 15px;
            }
        }




        /*--------------------------------------------------------------------------
       ナビ
        --------------------------------------------------------------------------*/


        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .desktop-nav {
                display: none !important;
            }

            .hamburger {
                display: flex !important;
            }

            .mobile-menu {
                padding: 120px 20px 40px;
            }
            
            .mobile-menu a {
                font-size: 1.2rem;
                padding: 18px 0;
            }

            header {
                padding: 15px 20px;
            }

            .content {
                padding: 100px 15px 40px;
            }

            h2 {
                font-size: 2.2rem;
                margin-bottom: 40px;
                letter-spacing: 0.1em;
            }
            
            h2::after {
                width: 80px;
                bottom: -15px;
            }
            
            h3 {
                font-size: 1.8rem;
                margin-bottom: 30px;
                letter-spacing: 0.05em;
            }
            
            h3::before {
                left: calc(50% - 120px);
            }
            
            h3::after {
                right: calc(50% - 120px);
            }

            .about-section,
            .service-section,
            .menu-section,
            .access-section {
                margin: 20px 0;
                padding: 40px 0;
            }

            .philosophy-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .menu-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-container {
                padding: 12px 15px;
            }
            
            .footer-container .site-name {
                height: 60px;
            }
        }

        @media (max-width: 480px) {
            .hamburger {
                display: flex !important;
                padding: 8px;
            }
            
            .hamburger span {
                width: 22px;
                height: 3px;
            }
            
            .mobile-menu {
                padding: 100px 15px 30px;
            }
            
            .mobile-menu a {
                font-size: 1.1rem;
                padding: 15px 0;
            }

            h2 {
                font-size: 1.6rem;
                letter-spacing: 0.05em;
            }

            h2 span {
                font-size: 2.0rem;
            }

            h2::after {
                width: 60px;
            }
            
            h3 {
                font-size: 1.4rem;
            }
            
            h3::before,
            h3::after {
                display: none;
            }

            .philosophy-item,
            .service-item,
            .menu-category {
                padding: 25px 20px;
            }

            .service-item h4 {
                font-size: 1.1rem;
                gap: 10px;
            }

            .service-item p,
            .cast-description {
                font-size: 0.95rem;
            }

     
        }

        /* タブレット・デスクトップ用：2列表示 */
        @media screen and (min-width: 768px) {
            .philosophy-grid {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }

            .services-grid {
                grid-template-columns: 1fr 1fr;
                gap: 25px;
            }

            .menu-grid {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
        }