/* ==========================================================================
   リセット & 基本設定
   ========================================================================== */

/* アクセシビリティ用 - 視覚的に非表示だがスクリーンリーダーには読み上げられる */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', 'Yu Gothic', 'YuGothic', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    background-color: #1A1A1A;
    color: #F0F0F0;
    line-height: 1.8;
    font-weight: 400;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* ==========================================================================
   ローチE��ングアニメーション
   ========================================================================== */

.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #1A1A1A;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #B8860B;
    margin-bottom: 2rem;
    animation: fadeInOut 2s ease-in-out infinite;
    font-family: 'Nunito', 'Rounded Mplus 1c', -apple-system, BlinkMacSystemFont, sans-serif;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(184, 134, 11, 0.2);
    border-top-color: #B8860B;
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* スマホ用改行制御 */
.sp-br {
    display: none;
}

/* ==========================================================================
   ヘッダー
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(184, 134, 11, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #B8860B;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    font-family: 'Nunito', 'Rounded Mplus 1c', -apple-system, BlinkMacSystemFont, sans-serif;
}

.logo-subtitle {
    font-size: 0.5rem;
    letter-spacing: 0.15em;
    color: #F0F0F0;
    margin-top: 0.2rem;
    font-weight: 300;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: #B8860B;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    transition: right 0.3s ease;
    padding-top: 80px;
    border-left: 1px solid rgba(184, 134, 11, 0.2);
}

.nav.active {
    right: 0;
}

.nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-link {
    display: block;
    padding: 1.2rem 2rem;
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    border-bottom: 1px solid rgba(184, 134, 11, 0.1);
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: rgba(184, 134, 11, 0.1);
    padding-left: 2.5rem;
    color: #B8860B;
}

.nav-link:active {
    background-color: rgba(184, 134, 11, 0.2);
    color: #FFD700;
    transform: scale(0.98);
}

/* タチE��チE��イス用 */
@media (hover: none) {
    .nav-link:active {
        background-color: rgba(184, 134, 11, 0.2);
        color: #FFD700;
        transform: scale(0.98);
    }
}

/* ==========================================================================
   メインビジュアル
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000000;
    background-image: url('../images/hero-bg-mobile.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    padding: 100px 0 50px;
}

/* スマホ用縦長動画 */
.hero-video-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    display: block;
}

/* PC表示では動画を非表示 */
@media (min-width: 768px) {
    .hero-video-mobile {
        display: none;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

@keyframes moveGradient {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    animation: fadeInUp 1s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.hero-title-wrapper {
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: #B8860B;
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(184, 134, 11, 0.5);
}

.hero-subtitle {
    font-size: 4rem;
    font-weight: 200;
    letter-spacing: 0.15em;
    color: #F0F0F0;
    text-shadow: 0 0 30px rgba(184, 134, 11, 0.3);
    line-height: 1;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo img {
    max-width: 180px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(184, 134, 11, 0.3));
    animation: 
        logoFadeIn 3s ease-out 0.5s both, 
        logoFloat 4s ease-in-out 3.8s infinite,
        logoGlow 3s ease-in-out 3.8s infinite;
    will-change: transform, opacity, filter;
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
        filter: drop-shadow(0 0 0px rgba(184, 134, 11, 0));
    }
    20% {
        opacity: 0.2;
        transform: translateY(22px) scale(0.96);
        filter: drop-shadow(0 0 10px rgba(184, 134, 11, 0.2));
    }
    40% {
        opacity: 0.5;
        transform: translateY(12px) scale(0.98);
        filter: drop-shadow(0 0 20px rgba(184, 134, 11, 0.35));
    }
    60% {
        opacity: 0.75;
        transform: translateY(4px) scale(0.99);
        filter: drop-shadow(0 0 30px rgba(184, 134, 11, 0.4));
    }
    80% {
        opacity: 0.95;
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 0 35px rgba(184, 134, 11, 0.4));
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 0 30px rgba(184, 134, 11, 0.3));
    }
}

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

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(184, 134, 11, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 50px rgba(184, 134, 11, 0.6));
    }
}

.hero-description {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    line-height: 2;
    color: rgba(240, 240, 240, 0.9);
    margin-bottom: 2rem;
    font-family: 'Noto Serif JP', '游明朝', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'MS PMincho', serif;

    opacity: 0;
    animation: fadeInUp 3s ease-out 1s forwards;
}

/* スマホ用SVG（西新井大師） */
.hero-svg-sp {
    display: none;
}

@media (max-width: 768px) {
    .hero-description {
        display: none;
    }
    
    .hero-svg-sp {
        display: block;
        width: 280px;
        margin: 0 auto;
        margin-top: 20px;
        margin-left: calc(50% - 140px + 40px);
        overflow: hidden;
        transition: transform 0.1s ease-out, opacity 0.1s ease-out;
    }
    
    .hero-svg-sp img {
        width: 100%;
        height: auto;
        clip-path: inset(0 100% 0 0);
        animation: revealFromLeft 2s ease-out 1.5s forwards;
        filter: brightness(0) saturate(100%) invert(73%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%);
    }
    
    @keyframes revealFromLeft {
        0% {
            clip-path: inset(0 100% 0 0);
        }
        100% {
            clip-path: inset(0 0 0 0);
        }
    }
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #FC0FC0;
    text-transform: uppercase;
    margin-top: 2rem;
    text-shadow: 0 2px 10px rgba(252, 15, 192, 0.6), 0 0 20px rgba(252, 15, 192, 0.4);
}

.hero-scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, #FC0FC0 0%, rgba(252, 15, 192, 0.5) 70%, transparent 100%);
    animation: scrollLine 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(252, 15, 192, 0.5);
}

@keyframes scrollLine {
    0%, 100% {
        opacity: 0;
        transform: translateY(-20px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   レスポンシチE スマ�E (767px以丁E
   ========================================================================== */

@media (max-width: 767px) {
    .hero-scroll {
        display: none;
    }

    .hero-overlay {
        background: rgba(0, 0, 0, 0.3);
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    }

    .concept-slide-content {
        padding: 0 10px;
    }

    .sp-br {
        display: inline;
    }

    .information-header {
        padding: 0 1rem;
    }

    .information-title {
        font-size: 1.8rem;
        letter-spacing: 0.15em;
        padding: 0 1.5rem;
    }

    .gallery-header {
        padding: 0 1rem;
    }

    .gallery-title {
        font-size: 1.8rem;
        letter-spacing: 0.15em;
        padding: 0 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
        letter-spacing: 0.15em;
        padding: 0 1.5rem;
    }
}

/* ==========================================================================
   共通セクションスタイル
   ========================================================================== */

section {
    padding: 5rem 0;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: #B8860B;
    margin-bottom: 1rem;
    text-shadow: 
        0 0 10px rgba(184, 134, 11, 0.5),
        0 0 20px rgba(184, 134, 11, 0.3),
        0 0 30px rgba(184, 134, 11, 0.2);
    animation: titleGlow 3s ease-in-out infinite;
}

.section-title-line {
    width: 60px;
    height: 0.5px;
    background-color: #B8860B;
    margin: 0 auto;
}

/* ==========================================================================
   新着惁E��セクション
   ========================================================================== */

/* ヒーロー下の画像 */
.hero-bottom-image {
    position: relative;
    width: 100%;
    margin-top: -80px;
    z-index: 10;
    overflow: hidden;
    background-color: #000000;
}

.hero-bottom-image img {
    width: 100%;
    height: auto;
    display: block;
    clip-path: polygon(0 40%, 100% 0, 100% 60%, 0 100%);
}

.hero-bottom-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 1;
    pointer-events: none;
    clip-path: polygon(0 40%, 100% 0, 100% 60%, 0 100%);
}

@media (max-width: 768px) {
    .hero-bottom-image {
        margin-top: -60px;
    }
    
    .hero-bottom-image img,
    .hero-bottom-image::after {
        clip-path: polygon(0 40%, 100% 0, 100% 60%, 0 100%);
    }
}


.information {
    background-color: #000000;
    padding: 4.75rem 0 12rem 0;
    position: relative;
}

/* 装飾SVG */
.information-decoration {
    position: absolute;
    right: 0;
    top: calc(10% - 260px);
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    background-image: url('../images/Latest%20from.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    pointer-events: none;
    z-index: 100;
    filter: brightness(0) saturate(100%) invert(73%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%);
}

@media (max-width: 768px) {
    .information-decoration {
        width: 250px;
        height: 250px;
        right: 0;
        top: calc(5% - 115px);
        opacity: 1;
    }
}

.information-header {
    text-align: center;
    margin-bottom: 4rem;
}

.information-subtitle {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: rgba(240, 240, 240, 0.6);
    margin-bottom: 0.5rem;
}

.information-title {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: #B8860B;
    margin-bottom: 1.5rem;
    text-shadow: 
        0 0 10px rgba(184, 134, 11, 0.5),
        0 0 20px rgba(184, 134, 11, 0.3),
        0 0 30px rgba(184, 134, 11, 0.2);
    animation: titleGlow 3s ease-in-out infinite;
}

.information-title-line {
    width: 80px;
    height: 1px;
    background-color: #B8860B;
    margin: 0 auto;
}

.information-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-right: 3rem;
}

.information-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 3rem;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #000000);
    pointer-events: none;
    z-index: 1;
}

.information-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: 216px; /* 2投稿刁E�E高さ (108px ÁE2) */
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 1rem;
    -webkit-overflow-scrolling: touch; /* スマ�Eでのスムーズスクロール */
    scroll-behavior: smooth;
}

/* カスタムスクロールバ�E */
.information-list::-webkit-scrollbar {
    width: 4px;
}

.information-list::-webkit-scrollbar-track {
    background: rgba(184, 134, 11, 0.1);
    border-radius: 10px;
}

.information-list::-webkit-scrollbar-thumb {
    background: #B8860B;
    border-radius: 10px;
}

.information-list::-webkit-scrollbar-thumb:hover {
    background: #D4A000;
}

.information-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.8rem 2rem;
    border-bottom: 1px solid rgba(184, 134, 11, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.information-item:active {
    z-index: 100;
}

.information-item:hover {
    background: rgba(184, 134, 11, 0.05);
    padding-left: 2.5rem;
}

.information-date {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: #B8860B;
    white-space: nowrap;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease;
    display: inline-block;
}

.information-text {
    font-size: 0.95rem;
    color: #F0F0F0;
    line-height: 1.6;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    display: inline-block;
}

/* タチE�E時に斁E��が浮き上がめE*/
.information-item:active .information-date,
.information-item:active .information-text {
    transform: translateY(-20px) scale(1.2);
    text-shadow: 
        0 20px 40px rgba(184, 134, 11, 0.8),
        0 15px 30px rgba(184, 134, 11, 0.6),
        0 10px 20px rgba(184, 134, 11, 0.4),
        0 5px 10px rgba(0, 0, 0, 0.7);
    filter: brightness(1.3) drop-shadow(0 0 12px rgba(184, 134, 11, 0.6));
}

.information-item:active .information-date {
    color: #FFD700;
    font-weight: 600;
}

.information-item:active .information-text {
    color: #FFFFFF;
    font-weight: 600;
}

/* タチE��チE��イス用 */
@media (hover: none) {
    .information-item:active .information-date,
    .information-item:active .information-text {
        transform: translateY(-20px) scale(1.2);
        text-shadow: 
            0 20px 40px rgba(184, 134, 11, 0.8),
            0 15px 30px rgba(184, 134, 11, 0.6),
            0 10px 20px rgba(184, 134, 11, 0.4),
            0 5px 10px rgba(0, 0, 0, 0.7);
        filter: brightness(1.3) drop-shadow(0 0 12px rgba(184, 134, 11, 0.6));
    }

    .information-item:active .information-date {
        color: #FFD700;
        font-weight: 600;
    }

    .information-item:active .information-text {
        color: #FFFFFF;
        font-weight: 600;
    }
}

.information-scroll-indicator {
    position: absolute;
    right: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(184, 134, 11, 0.2);
}

.information-scroll-indicator::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: #B8860B;
    animation: scrollIndicator 3s ease-in-out infinite;
}

@keyframes scrollIndicator {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.8;
    }
    50% {
        transform: translateY(200%);
        opacity: 1;
    }
}

/* スマホ用 INFORMATIONレイアウト調整 */
@media (max-width: 768px) {
    .information-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1.2rem 1.5rem;
    }
    
    .information-date {
        font-size: 0.85rem;
    }
    
    .information-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(184, 134, 11, 0.5),
            0 0 20px rgba(184, 134, 11, 0.3),
            0 0 30px rgba(184, 134, 11, 0.2);
    }
    50% {
        text-shadow: 
            0 0 20px rgba(184, 134, 11, 0.8),
            0 0 30px rgba(184, 134, 11, 0.6),
            0 0 40px rgba(184, 134, 11, 0.4),
            0 0 50px rgba(184, 134, 11, 0.2);
    }
}

/* ==========================================================================
   コンセプトセクション
   ========================================================================== */

.concept {
    position: relative;
    background: linear-gradient(180deg, #1A1A1A 0%, #242424 50%, #1A1A1A 100%);
    padding: 3rem 0 12rem 0;
}

/* CONCEPTセクション上の画像 */
.concept-top-image {
    position: relative;
    width: 100%;
    margin-top: 0;
    margin-bottom: 2rem;
    z-index: 10;
}

.concept-top-image img {
    width: 100%;
    height: auto;
    display: block;
    clip-path: polygon(0 40%, 100% 0, 100% 60%, 0 100%);
}

.concept-top-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 2;
    pointer-events: none;
    clip-path: polygon(0 40%, 100% 0, 100% 60%, 0 100%);
}

@media (max-width: 768px) {
    .concept-top-image {
        margin-top: -120px;
        margin-bottom: 1.5rem;
    }
    
    .concept-top-image img,
    .concept-top-image::before {
        clip-path: polygon(0 40%, 100% 0, 100% 60%, 0 100%);
    }
}

/* 装飾SVG - CONCEPT */
.concept-decoration {
    position: absolute;
    right: 0;
    top: 390px;
    width: 300px;
    height: 300px;
    background-image: url('../images/PHILOSOPHY.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    pointer-events: none;
    z-index: 15;
    filter: brightness(0) saturate(100%) invert(73%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%);
}

@media (max-width: 768px) {
    .concept-decoration {
        width: 250px;
        height: 250px;
        right: 0;
        top: -65px;
        opacity: 1;
    }
}

.concept-slider-container {
    position: relative;
    overflow: hidden;
}

.concept-slider-wrapper {
    display: flex;
    transition: transform 0.6s ease;
}

.concept-slide {
    min-width: 100%;
    padding: 1.5rem 1rem;
    position: relative;
}

.concept-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 0;
}

.concept-slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(26, 26, 26, 0.5) 0%,
        rgba(26, 26, 26, 0.7) 50%,
        rgba(26, 26, 26, 0.5) 100%
    );
}

.concept-slide-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.concept-lead {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: #B8860B;
    margin-bottom: 1rem;
}

.special-text {
    font-weight: 700;
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.special-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.8) 50%,
        transparent 100%
    );
    animation: shine 3s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.concept-text {
    font-size: 0.95rem;
    line-height: 2;
    color: rgba(240, 240, 240, 0.85);
}

.concept-text p {
    margin-bottom: 1.5rem;
}

/* スライド�Eの特徴表示 */
.concept-slide .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: #B8860B;
}

.concept-slide .feature-icon svg {
    width: 100%;
    height: 100%;
}

.concept-slide .feature-title {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: #B8860B;
    margin-bottom: 1rem;
}

.concept-slide .feature-description {
    font-size: 0.95rem;
    line-height: 2;
    color: rgba(240, 240, 240, 0.85);
}

.concept-slide .feature-description p {
    margin-bottom: 1.5rem;
}

/* ナビゲーションボタン */
/* CONCEPTナビゲーションボタン - GALLERYと同じスタイル */
.concept-nav {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 60px !important;
    height: 60px !important;
    background: transparent !important;
    border: none !important;
    color: #B8860B;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10 !important;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0 !important;
    margin: 0 !important;
}

.concept-nav:hover {
    transform: translateY(-50%) scale(1.1);
}

.concept-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.concept-nav img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
}

.concept-nav-prev {
    left: -20px !important;
    right: auto !important;
}

.concept-nav-next {
    right: -20px !important;
    left: auto !important;
}

.concept-nav-next {
    right: 1.5rem;
}

/* スマ�E表示�E�コンセプトナビゲーションボタンを小さぁE*/
@media (max-width: 767px) {
    .concept-nav {
        width: 45px;
        height: 45px;
        bottom: 0.5rem;
    }

    .concept-nav svg {
        width: 20px;
        height: 20px;
    }

    .concept-nav-prev {
        left: 0.5rem;
    }

    .concept-nav-next {
        right: 0.5rem;
    }
}

/* インジケーター */
.concept-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.concept-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(184, 134, 11, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.concept-indicator:hover {
    background: rgba(184, 134, 11, 0.6);
    transform: scale(1.2);
}

.concept-indicator.active {
    background: #B8860B;
    width: 40px;
    border-radius: 6px;
}

/* ==========================================================================
   シスチE��・料��セクション
   ========================================================================== */

.system {
    position: relative;
    background-color: #1A1A1A;
    padding: 3.75rem 0 5rem 0;
}

/* SYSTEMセクション上の画像 */
.system-top-image {
    position: relative;
    width: 100%;
    margin-top: 0;
    margin-bottom: 1rem;
    z-index: 10;
}

.system-top-image img {
    width: 100%;
    height: auto;
    display: block;
    clip-path: polygon(0 40%, 100% 0, 100% 60%, 0 100%);
}

.system-top-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 2;
    pointer-events: none;
    clip-path: polygon(0 40%, 100% 0, 100% 60%, 0 100%);
}

@media (max-width: 768px) {
    .system-top-image {
        margin-top: -120px;
        margin-bottom: 0.5rem;
    }
    
    .system-top-image img,
    .system-top-image::before {
        clip-path: polygon(0 40%, 100% 0, 100% 60%, 0 100%);
    }
}

/* 装飾SVG - SYSTEM */
.system-decoration {
    position: absolute;
    right: 0;
    top: 430px;
    width: 300px;
    height: 300px;
    background-image: url('../images/PRICE%26SYSTEM.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    pointer-events: none;
    z-index: 100;
    filter: brightness(0) saturate(100%) invert(73%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%);
}

@media (max-width: 768px) {
    .system-decoration {
        width: 250px;
        height: 250px;
        right: 0;
        top: -60px;
        opacity: 1;
    }
}

.system-content {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.price-card,
.hours-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #B8860B;
    border-radius: 0;
    padding: 2.5rem 2rem;
}

.price-title,
.hours-title {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: #B8860B;
    margin-bottom: 0;
    text-align: center;
    padding-bottom: 0;
    border-bottom: none;
}

.price-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.8);
    margin: 1.5rem 0;
}

.price-items {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.2rem;
    background: rgba(184, 134, 11, 0.03);
    border-radius: 4px;
    border-left: 2px solid #B8860B;
}

.price-item-single {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.2rem;
    border-left: none;
    border: 2px solid #B8860B;
}

.price-label {
    font-size: 0.95rem;
    color: #F0F0F0;
    letter-spacing: 0.05em;
}

.price-item-single .price-label {
    font-size: 1.1rem;
    font-weight: 400;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 300;
    color: #B8860B;
    letter-spacing: 0.05em;
}

.price-item-single .price-value {
    font-size: 2.5rem;
    font-weight: 400;
}

.price-value span {
    font-size: 0.8rem;
    color: rgba(240, 240, 240, 0.6);
}

.price-item-single .price-value span {
    font-size: 1.2rem;
    color: #B8860B;
}

.price-note {
    font-size: 0.8rem;
    color: rgba(240, 240, 240, 0.5);
    text-align: center;
    line-height: 1.6;
}

.hours-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0;
    margin-bottom: 2rem;
}

.hours-content-single {
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    gap: 1rem;
}

.hours-time-large {
    font-size: 2.5rem;
    color: #B8860B;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-align: center;
}

.hours-days {
    font-size: 1.1rem;
    color: #F0F0F0;
    letter-spacing: 0.08em;
    text-align: center;
    margin-bottom: 0.8rem;
}

.hours-time {
    font-size: 1.5rem;
    color: #F0F0F0;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-align: center;
}

.hours-note {
    font-size: 1rem;
    color: #F0F0F0;
    text-align: center;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    letter-spacing: 0.1em;
}

/* 新料��カードスタイル�E�クリチE��可能�E�E*/
.price-card-link {
    display: block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.price-card-link:hover {
    transform: translateY(-2px);
    border-color: #D4AF37;
    box-shadow: 0 4px 16px rgba(184, 134, 11, 0.4);
}

.price-item-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    text-align: center;
}

.price-plan-name {
    font-size: 1.3rem;
    font-weight: 400;
    color: #F0F0F0;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.85rem;
    color: rgba(240, 240, 240, 0.7);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.price-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    margin-bottom: 2rem;
}

.price-detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.price-label {
    font-size: 1rem;
    color: #F0F0F0;
    letter-spacing: 0.1em;
    font-weight: 400;
}

.price-value {
    font-size: 2rem;
    font-weight: 400;
    color: #F0F0F0;
    letter-spacing: 0.08em;
}

.price-more-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.price-more {
    display: inline-block;
    color: #F0F0F0;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    padding: 0.8rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 0;
    transition: all 0.3s ease;
}
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}



.price-card-link:hover .price-more {
    background-color: rgba(184, 134, 11, 0.1);
    border-color: #B8860B;
}

.hours-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
}

/* ==========================================================================
   ギャラリーセクション
   ========================================================================== */

.gallery {
    position: relative;
    background-color: #000000;
    padding: 4.75rem 0 12rem 0;
}

/* GALLERYセクション上の画像 */
.gallery-top-image {
    position: relative;
    width: 100%;
    margin-top: 0;
    margin-bottom: 2rem;
    z-index: 10;
}

.gallery-top-image img {
    width: 100%;
    height: auto;
    display: block;
    clip-path: polygon(0 40%, 100% 0, 100% 60%, 0 100%);
}

.gallery-top-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 2;
    pointer-events: none;
    clip-path: polygon(0 40%, 100% 0, 100% 60%, 0 100%);
}

@media (max-width: 768px) {
    .gallery-top-image {
        margin-top: -120px;
        margin-bottom: 1.5rem;
    }
    
    .gallery-top-image img,
    .gallery-top-image::before {
        clip-path: polygon(0 40%, 100% 0, 100% 60%, 0 100%);
    }
}

/* 装飾SVG - GALLERY */
.gallery-decoration {
    position: absolute;
    right: 0;
    top: 440px;
    width: 300px;
    height: 300px;
    background-image: url('../images/ATMOSPHERE.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    pointer-events: none;
    z-index: 100;
    filter: brightness(0) saturate(100%) invert(73%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%);
}

@media (max-width: 768px) {
    .gallery-decoration {
        width: 250px;
        height: 250px;
        right: 0;
        top: -40px;
        opacity: 1;
    }
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-subtitle {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: rgba(240, 240, 240, 0.6);
    margin-bottom: 0.5rem;
}

.gallery-title {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: #B8860B;
    margin-bottom: 1.5rem;
    text-shadow: 
        0 0 10px rgba(184, 134, 11, 0.5),
        0 0 20px rgba(184, 134, 11, 0.3),
        0 0 30px rgba(184, 134, 11, 0.2);
    animation: titleGlow 3s ease-in-out infinite;
}

.gallery-title-line {
    width: 80px;
    height: 1px;
    background-color: #B8860B;
    margin: 0 auto;
}

/* メインギャラリー */
.gallery-main {
    position: relative;
    margin-bottom: 2rem;
}

.gallery-main-container {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    border: 1px solid rgba(184, 134, 11, 0.3);
}

.gallery-main-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-main-item {
    min-width: 100%;
    aspect-ratio: 16 / 9;
}

.gallery-main-item.active {
    opacity: 1;
}

.gallery-main-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ナビゲーションボタン */
/* ギャラリーナビゲーションボタン - 画像の端に配置 */
.gallery-nav {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 60px !important;
    height: 60px !important;
    background: transparent !important;
    border: none !important;
    color: #B8860B;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10 !important;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0 !important;
    margin: 0 !important;
}

.gallery-nav:hover {
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.gallery-nav img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
}

.gallery-nav-prev {
    left: -20px !important;
    right: auto !important;
}

.gallery-nav-next {
    right: -20px !important;
    left: auto !important;
}

/* スマ�E表示�E�ギャラリーナビゲーションボタンを小さぁE*/
@media (max-width: 767px) {
    .gallery-nav {
        width: 50px !important;
        height: 50px !important;
    }

    .gallery-nav-prev {
        left: -15px !important;
    }

    .gallery-nav-next {
        right: -15px !important;
    }
}

/* サムネイル */
.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
    margin: 0 auto;
}

.gallery-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    border: 2px solid rgba(184, 134, 11, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 16 / 10;
}

.gallery-thumbnail:hover {
    border-color: rgba(184, 134, 11, 0.6);
    transform: translateY(-3px);
}

.gallery-thumbnail.active {
    border-color: #B8860B;
    box-shadow: 0 0 20px rgba(184, 134, 11, 0.4);
}

.gallery-thumbnail.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(184, 134, 11, 0.2);
    pointer-events: none;
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* プレースホルダー */
.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1) 0%, rgba(160, 82, 45, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(240, 240, 240, 0.5);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.gallery-placeholder-main {
    font-size: 1.1rem;
}

.gallery-placeholder-thumb {
    font-size: 0.75rem;
}

/* ==========================================================================
   アクセスセクション
   ========================================================================== */

/* ==========================================================================
   BANQUET�E�宴会！E   ========================================================================== */

.banquet {
    background-color: #1A1A1A;
    padding: 4.75rem 0 6rem 0;
}

.banquet-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.banquet-image {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.banquet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banquet-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(26, 26, 26, 0.2) 0%,
        rgba(26, 26, 26, 0.4) 100%
    );
}

.banquet-info {
    padding: 0;
}

.banquet-title {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #B8860B;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.banquet-description {
    margin-bottom: 3rem;
}

.banquet-description p {
    font-size: 1rem;
    line-height: 1.9;
    color: #F0F0F0;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.banquet-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 0.75rem;
}

.banquet-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.banquet-feature-item:hover {
    background: rgba(184, 134, 11, 0.05);
    border-color: rgba(184, 134, 11, 0.4);
    transform: translateX(5px);
}

.banquet-feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 134, 11, 0.1);
    border-radius: 50%;
    color: #B8860B;
}

.banquet-feature-icon svg {
    width: 24px;
    height: 24px;
}

.banquet-feature-text h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #B8860B;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.banquet-feature-text p {
    font-size: 0.95rem;
    color: #C0C0C0;
    line-height: 1.6;
    letter-spacing: 0.05em;
}

.banquet-contact {
    text-align: center;
    padding: 2rem;
    background: rgba(184, 134, 11, 0.05);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 8px;
}

.banquet-contact-text {
    font-size: 1rem;
    color: #F0F0F0;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.banquet-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 100%);
    color: #1A1A1A;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.banquet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
}

.banquet-btn svg {
    width: 20px;
    height: 20px;
}

/* タブレチE��表示 */
@media (max-width: 1023px) {
    .banquet-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .banquet-image {
        height: 400px;
    }
}

/* スマ�E表示 */
@media (max-width: 767px) {
    .banquet {
        padding: 3rem 0 4rem 0;
        position: relative;
    }

    .banquet::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../images/banquet-bg.jpg');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        opacity: 0.15;
        z-index: 0;
    }

    .banquet .container {
        position: relative;
        z-index: 1;
    }

    .banquet-content {
        gap: 2rem;
    }

    .banquet-image {
        height: 300px;
    }

    .banquet-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .banquet-description p {
        font-size: 0.95rem;
        line-height: 1.8;
        margin-bottom: 1.2rem;
    }

    .banquet-features {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .banquet-feature-item {
        padding: 1rem;
    }

    .banquet-feature-icon {
        width: 40px;
        height: 40px;
    }

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

    .banquet-feature-text h4 {
        font-size: 1rem;
    }

    .banquet-feature-text p {
        font-size: 0.9rem;
    }

    .banquet-contact {
        padding: 1.5rem;
    }

    .banquet-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

/* ==========================================================================
   ACCESS�E�アクセス�E�E   ========================================================================== */

.access {
    background-color: #1A1A1A;
    padding: 4.75rem 0 6rem 0;
}

.access-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.access-info {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 8px;
    padding: 2.5rem 2rem;
}

.access-name {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #B8860B;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
    font-family: 'Nunito', 'Rounded Mplus 1c', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

.access-item {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.access-label {
    font-size: 0.85rem;
    color: #B8860B;
    letter-spacing: 0.1em;
    font-weight: 400;
}

.access-value {
    font-size: 1rem;
    color: #F0F0F0;
    line-height: 1.8;
}

.access-map {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 8px;
    overflow: hidden;
    min-height: 300px;
    height: 400px;
}

.access-map iframe {
    display: block;
    border-radius: 8px;
    filter: grayscale(100%) contrast(1.1) brightness(0.9);
    -webkit-filter: grayscale(100%) contrast(1.1) brightness(0.9);
    transition: filter 0.3s ease;
}

.access-map iframe:hover {
    filter: grayscale(0%) contrast(1) brightness(1);
    -webkit-filter: grayscale(0%) contrast(1) brightness(1);
}

/* ==========================================================================
   お問ぁE��わせセクション
   ========================================================================== */

.contact {
    background: linear-gradient(180deg, #1A1A1A 0%, #242424 100%);
    padding: 4.75rem 0 6rem 0;
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-text {
    font-size: 1.1rem;
    line-height: 2;
    color: rgba(240, 240, 240, 0.85);
    margin-bottom: 2.5rem;
}

/* 電話エリア */
.contact-phone-area {
    margin-bottom: 3rem;
}

.contact-phone-number {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: #B8860B;
    margin-top: 1.5rem;
    font-family: 'Arial', sans-serif;
}

/* 区刁E��緁E*/
.contact-divider {
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, transparent, #B8860B, transparent);
    margin: 3rem auto;
}

/* ソーシャルエリア */
.contact-social {
    margin-top: 3rem;
}

.contact-social-text {
    font-size: 1rem;
    color: rgba(240, 240, 240, 0.85);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

/* ボタン */
.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.contact-btn svg {
    width: 24px;
    height: 24px;
}

.contact-btn-phone {
    background-color: rgba(184, 134, 11, 0.1);
    border: 2px solid #B8860B;
    color: #B8860B;
}

.contact-btn-phone:hover {
    background-color: #B8860B;
    color: #1A1A1A;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.3);
}

.contact-btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border: 2px solid transparent;
    color: #FFFFFF;
    position: relative;
}

.contact-btn-instagram::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(188, 24, 136, 0.4);
}

.contact-btn-instagram:hover::before {
    opacity: 1;
}

/* ==========================================================================
   ページヘッダー（recruit.html用）
   ========================================================================== */

.page-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 50%, #1A1A1A 100%);
    padding: 120px 0 80px;
    margin-top: 0;
}

.page-hero-content {
    text-align: center;
    z-index: 2;
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: #B8860B;
    margin-bottom: 1rem;
    text-shadow: 
        0 0 10px rgba(184, 134, 11, 0.5),
        0 0 20px rgba(184, 134, 11, 0.3);
}

.page-hero-subtitle {
    font-size: 1rem;
    color: rgba(240, 240, 240, 0.7);
    letter-spacing: 0.1em;
}

@media (max-width: 767px) {
    .page-hero {
        min-height: 30vh;
        padding: 100px 0 60px;
    }
    
    .page-hero-title {
        font-size: 2rem;
    }
    
    .page-hero-subtitle {
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   求人セクション
   ========================================================================== */

.recruit-page {
    background: linear-gradient(180deg, #242424 0%, #1A1A1A 100%);
    padding: 4rem 0 4rem 0;
}

.recruit {
    background: linear-gradient(180deg, #242424 0%, #1A1A1A 100%);
    padding: 3rem 0 3rem 0;
}

.recruit-content {
    max-width: 800px;
    margin: 0 auto;
}

.recruit-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(240, 240, 240, 0.85);
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.recruit-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 8px;
    padding: 1.5rem 1rem;
    margin-bottom: 1.5rem;
}

.recruit-title {
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #B8860B;
    margin-bottom: 1rem;
    text-align: center;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
}

.recruit-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recruit-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(184, 134, 11, 0.03);
    border-radius: 4px;
    border-left: 3px solid #B8860B;
}

.recruit-job-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #B8860B;
    letter-spacing: 0.05em;
}

.recruit-details {
    font-size: 0.95rem;
    color: rgba(240, 240, 240, 0.8);
    line-height: 1.8;
}

.recruit-info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 8px;
    padding: 1.5rem 1rem;
    margin-bottom: 2rem;
}

.recruit-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #B8860B;
    margin-bottom: 1rem;
    text-align: center;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
}

.recruit-info-items {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.recruit-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    border: 1px solid rgba(184, 134, 11, 0.1);
}

.recruit-info-label {
    font-size: 0.9rem;
    color: #B8860B;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.recruit-info-value {
    font-size: 1rem;
    color: #F0F0F0;
    letter-spacing: 0.05em;
}

.recruit-contact {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.recruit-contact-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(240, 240, 240, 0.85);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.recruit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    background-color: rgba(184, 134, 11, 0.1);
    border: 2px solid #B8860B;
    color: #B8860B;
    transition: all 0.3s ease;
}

.recruit-btn svg {
    width: 24px;
    height: 24px;
}

.recruit-btn:hover {
    background-color: #B8860B;
    color: #1A1A1A;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.3);
}

.recruit-phone-number {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: #B8860B;
    margin-top: 1rem;
    font-family: 'Arial', sans-serif;
}

/* ==========================================================================
   料��詳細ペ�Eジ
   ========================================================================== */

.pricing-detail {
    background-color: #000000;
    padding: 8rem 0 5rem 0;
    min-height: 100vh;
}

.menu-header {
    text-align: center;
    margin-bottom: 3rem;
}

.menu-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #D4AF37;
    letter-spacing: 0.15em;
    font-style: italic;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.pricing-content {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.pricing-intro {
    text-align: center;
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.pricing-main-title {
    font-size: 1.6rem;
    font-weight: 300;
    color: #F0F0F0;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.pricing-subtitle {
    font-size: 0.95rem;
    color: rgba(240, 240, 240, 0.7);
    letter-spacing: 0.08em;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 8px;
    padding: 2rem 1.5rem;
}

.pricing-card-main {
    border: 2px solid #B8860B;
    background: rgba(184, 134, 11, 0.05);
}

.pricing-card-title {
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #B8860B;
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
}

.pricing-plan {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pricing-plan-header {
    text-align: center;
}

.pricing-plan-name {
    font-size: 1.4rem;
    font-weight: 500;
    color: #F0F0F0;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.pricing-plan-note {
    font-size: 0.9rem;
    color: rgba(240, 240, 240, 0.6);
    letter-spacing: 0.05em;
}

.pricing-plan-prices {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    background: rgba(184, 134, 11, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(184, 134, 11, 0.3);
    min-width: 180px;
}


.pricing-price-value {
    font-size: 2rem;
    font-weight: 400;
    color: #B8860B;
    letter-spacing: 0.05em;
}

.pricing-price-unit {
    font-size: 1rem;
    color: rgba(240, 240, 240, 0.6);
}

.pricing-options,
.pricing-food-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-option-item,
.pricing-food-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(184, 134, 11, 0.03);
    border-radius: 4px;
    border-left: 2px solid #B8860B;
}

.pricing-option-name,
.pricing-food-name {
    font-size: 1rem;
    color: #F0F0F0;
    letter-spacing: 0.05em;
}

.pricing-option-price,
.pricing-food-price {
    font-size: 1.2rem;
    font-weight: 300;
    color: #B8860B;
    letter-spacing: 0.05em;
}

.pricing-notes {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    margin-top: 1rem;
}

.pricing-notes-title {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #B8860B;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing-notes-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.pricing-notes-list li {
    position: relative;
    padding-left: 1.5rem;
    color: rgba(240, 240, 240, 0.8);
    font-size: 0.95rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
}

.pricing-notes-list li::before {
    content: '※';
    position: absolute;
    left: 0;
    color: #B8860B;
}

/* 新しいメニュースタイル */
.pricing-plan-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.pricing-plan-card:hover {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.15);
    transform: translateY(-4px);
}

.plan-badge {
    font-size: 2rem;
    font-weight: 300;
    color: #D4AF37;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 0.2em;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.plan-content {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.plan-prices {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    flex-wrap: wrap;
}

.plan-price {
    font-size: 1.3rem;
    font-weight: 300;
    color: #D4AF37;
    letter-spacing: 0.08em;
}

.plan-drinks {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    text-align: center;
}

.plan-drinks p {
    font-size: 0.95rem;
    color: rgba(240, 240, 240, 0.85);
    letter-spacing: 0.05em;
    line-height: 1.8;
}

.pricing-extra-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
}

.extra-item-name {
    font-size: 1.1rem;
    color: #F0F0F0;
    letter-spacing: 0.08em;
}

.extra-item-price {
    font-size: 1.3rem;
    color: #D4AF37;
    font-weight: 300;
    letter-spacing: 0.08em;
}

.pricing-extension {
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.extension-note {
    font-size: 0.9rem;
    color: rgba(240, 240, 240, 0.7);
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
}

.extension-price {
    font-size: 1.2rem;
    color: #D4AF37;
    font-weight: 300;
    letter-spacing: 0.08em;
}

.pricing-notes-simple {
    padding: 2rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.pricing-notes-simple ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.pricing-notes-simple li {
    position: relative;
    padding-left: 1.5rem;
    color: rgba(240, 240, 240, 0.7);
    font-size: 0.9rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
}

.pricing-notes-simple li::before {
    content: '※';
    position: absolute;
    left: 0;
    color: #D4AF37;
}

.pricing-contact {
    background: rgba(184, 134, 11, 0.05);
    border: 2px solid #B8860B;
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    margin-top: 1rem;
}

.pricing-contact-text {
    font-size: 1rem;
    color: #F0F0F0;
    letter-spacing: 0.05em;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.pricing-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: #B8860B;
    color: #1A1A1A;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pricing-btn:hover {
    background: #D4A929;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(184, 134, 11, 0.3);
}

.pricing-btn svg {
    width: 20px;
    height: 20px;
}

.pricing-back {
    text-align: center;
    margin-top: 2rem;
}

.pricing-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 2rem;
    background: transparent;
    color: #B8860B;
    border: 1px solid #B8860B;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pricing-back-btn:hover {
    background: rgba(184, 134, 11, 0.1);
    border-color: #D4A929;
    color: #D4A929;
    transform: translateY(-2px);
}

.pricing-back-btn svg {
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   フッター
   ========================================================================== */

.footer {
    background-color: #0F0F0F;
    border-top: 1px solid rgba(184, 134, 11, 0.2);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(184, 134, 11, 0.1);
}

.footer-logo h3 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #B8860B;
    margin-bottom: 0.5rem;
    font-family: 'Nunito', 'Rounded Mplus 1c', -apple-system, BlinkMacSystemFont, sans-serif;
}

.footer-logo p {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: rgba(240, 240, 240, 0.6);
    text-transform: uppercase;
}

.footer-info {
    font-size: 0.9rem;
    color: rgba(240, 240, 240, 0.7);
    line-height: 1.8;
}

.footer-address {
    margin-bottom: 0.5rem;
}

/* スマ�E表示�E�郵便番号と住所めE行に */
@media (max-width: 767px) {
    .footer-address-break {
        display: block;
        content: "";
        margin-top: 0.3rem;
    }
}

/* PC表示�E�E行で表示 */
@media (min-width: 768px) {
    .footer-address-break {
        display: none;
    }
    
    .footer-postal::after {
        content: " ";
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(240, 240, 240, 0.5);
    letter-spacing: 0.05em;
}

/* ==========================================================================
   レスポンシチE タブレチE�� (768px以丁E
   ========================================================================== */

@media (min-width: 768px) {
    .hero {
        background-image: url('../images/hero-bg.jpg');
        background-attachment: fixed;
    }

    .hero-title {
        font-size: 1.1rem;
    }

    .hero-subtitle {
        font-size: 5rem;
    }

    .hero-logo img {
        max-width: 240px;
    }

    .information-list {
        max-height: 256px; /* 2投稿刁E�E高さ (128px ÁE2) */
    }

    .information-item {
        gap: 3rem;
        padding: 2rem 2.5rem;
    }

    .information-date {
        font-size: 1.1rem;
    }

    .information-text {
        font-size: 1rem;
    }

    .concept-slide {
        padding: 2.5rem 2rem;
    }

    .concept-lead {
        font-size: 1.8rem;
    }

    .concept-text {
        font-size: 1rem;
    }

    .concept-slide .feature-icon {
        width: 100px;
        height: 100px;
    }

    .concept-slide .feature-title {
        font-size: 1.8rem;
    }

    .concept-slide .feature-description {
        font-size: 1rem;
    }

    .concept-nav {
        width: 60px;
        height: 60px;
    }

    .concept-nav-prev {
        left: 1rem;
    }

    .concept-nav-next {
        right: 1rem;
    }

    .gallery-thumbnails {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .gallery-nav {
        width: 60px;
        height: 60px;
    }

    .gallery-nav-prev {
        left: 2rem;
    }

    .gallery-nav-next {
        right: 2rem;
    }

    .system-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .access-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .access-map {
        height: 450px;
    }

    .contact-phone-number {
        font-size: 1.5rem;
    }

    .contact-social-text {
        font-size: 1.1rem;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ==========================================================================
   レスポンシチE PC (1024px以丁E
   ========================================================================== */

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }

    .nav {
        position: static;
        width: auto;
        height: auto;
        background: none;
        padding-top: 0;
        border: none;
    }

    .nav-list {
        flex-direction: row;
        gap: 2rem;
        padding-left: 2rem;
    }

    .nav-link {
        padding: 0.5rem 0;
        border-bottom: 2px solid transparent;
        font-size: 0.85rem;
    }

    .nav-link:hover {
        background: none;
        padding-left: 0;
        border-bottom-color: #B8860B;
    }

    .hero-title {
        font-size: 1.2rem;
    }

    .hero-subtitle {
        font-size: 6rem;
    }

    .hero-logo img {
        max-width: 400px;
    }

    .hero-title-wrapper {
        margin-bottom: 2.5rem;
    }

    .hero-description {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    line-height: 2;
    color: rgba(240, 240, 240, 0.9);
    margin-bottom: 2rem;
    margin-top: -70px;
    font-family: 'Noto Serif JP', '游明朝', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'MS PMincho', serif;

    opacity: 0;
    animation: fadeInUp 3s ease-out 1s forwards;
}

    .information {
    background-color: #000000;
    padding: 4.75rem 0 12rem 0;
    position: relative;
}

    .information-title {
        font-size: 2.5rem;
    }

    .information-list {
        max-height: 280px; /* 2投稿刁E�E高さ (140px ÁE2) */
    }

    .information-item {
        padding: 2.2rem 3rem;
    }

    .concept {
    position: relative;
    background: linear-gradient(180deg, #1A1A1A 0%, #242424 50%, #1A1A1A 100%);
    padding: 3rem 0 12rem 0;
}

    .concept-slide {
        padding: 3rem 3rem;
    }

    .concept-lead {
        font-size: 2rem;
    }

    .concept-slide .feature-title {
        font-size: 2rem;
    }

    .concept-slide .feature-description {
        font-size: 1rem;
    }

    .concept-nav-prev {
        left: 2rem;
    }

    .concept-nav-next {
        right: 2rem;
    }

    .gallery {
    position: relative;
    background-color: #000000;
    padding: 4.75rem 0 12rem 0;
}

    .gallery-title {
        font-size: 2.5rem;
    }

    .gallery-thumbnails {
        max-width: 900px;
    }

    .system {
        padding: 5.75rem 0 7rem 0;
    }

    .system-content {
        max-width: 900px;
    }

    .price-title,
    .hours-title {
        font-size: 1.3rem;
    }

    .price-item {
        padding: 1.1rem 1.5rem;
    }

    .hours-item {
        padding: 1rem 1.5rem;
    }

    .access-map {
        height: 500px;
    }

    .contact {
        padding: 6.75rem 0 8rem 0;
    }

    .contact-text {
        font-size: 1.2rem;
    }

    .contact-phone-number {
        font-size: 1.6rem;
    }

    .contact-social-text {
        font-size: 1.15rem;
    }

    .contact-btn {
        padding: 1.8rem 3.5rem;
        font-size: 1.1rem;
    }

    .recruit {
        padding: 6.75rem 0 8rem 0;
    }

    .recruit-content {
        max-width: 900px;
    }

    .recruit-lead {
        font-size: 1.3rem;
    }

    .recruit-card,
    .recruit-info-card {
        padding: 2.5rem 2rem;
    }

    .recruit-info-items {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .recruit-info-item {
        padding: 1.5rem;
    }

    .recruit-btn {
        padding: 1.8rem 3.5rem;
        font-size: 1.1rem;
    }

    .recruit-phone-number {
        font-size: 1.6rem;
    }

    /* 料��詳細ペ�Eジ */
    .pricing-detail {
        padding: 10rem 0 7rem 0;
    }

    .menu-title {
        font-size: 4.5rem;
    }

    .pricing-content {
        max-width: 900px;
    }

    .pricing-intro {
        padding: 2.5rem 2rem;
    }

    .pricing-main-title {
        font-size: 2rem;
    }

    .pricing-subtitle {
        font-size: 1.1rem;
    }

    .pricing-plan-card {
        padding: 3rem 2.5rem;
    }

    .plan-badge {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .plan-prices {
        gap: 3rem;
        padding-bottom: 2rem;
    }

    .plan-price {
        font-size: 1.5rem;
    }

    .plan-drinks p {
        font-size: 1.05rem;
    }

    .pricing-extra-item {
        padding: 2rem 2.5rem;
    }

    .extra-item-name {
        font-size: 1.25rem;
    }

    .extra-item-price {
        font-size: 1.5rem;
    }

    .pricing-extension {
        padding: 2rem 2.5rem;
    }

    .extension-note {
        font-size: 1rem;
    }

    .extension-price {
        font-size: 1.4rem;
    }

    .pricing-notes-simple {
        padding: 2.5rem 2rem;
    }

    .pricing-notes-simple li {
        font-size: 1rem;
    }

    .pricing-card {
        padding: 2.5rem 2rem;
    }

    .pricing-card-title {
        font-size: 1.5rem;
    }

    .pricing-plan-name {
        font-size: 1.6rem;
    }

    .pricing-plan-prices {
        gap: 3rem;
    }

    .pricing-price-item {
        min-width: 200px;
        padding: 2rem 2.5rem;
    }

    .pricing-price-value {
        font-size: 2.5rem;
    }

    .pricing-option-item,
    .pricing-food-item {
        padding: 1.2rem 2rem;
    }

    .pricing-option-name,
    .pricing-food-name {
        font-size: 1.1rem;
    }

    .pricing-option-price,
    .pricing-food-price {
        font-size: 1.4rem;
    }

    .pricing-notes {
        padding: 2.5rem 2rem;
    }

    .pricing-notes-title {
        font-size: 1.4rem;
    }

    .pricing-notes-list li {
        font-size: 1rem;
    }

    .pricing-contact {
        padding: 2.5rem 2rem;
    }

    .pricing-contact-text {
        font-size: 1.1rem;
    }

    .pricing-btn {
        padding: 1.2rem 2.5rem;
        font-size: 1.2rem;
    }

    .pricing-back-btn {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }

    section {
        padding: 7rem 0;
    }

    .section-title {
        font-size: 2.5rem;
    }
}


/* ==========================================================================
   カスタムシェイプディバイダー
   ========================================================================== */

.custom-shape-divider-bottom-1768831497 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1768831497 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 171px;
    transform: rotateY(180deg);
    fill: #000000 !important;
}

.custom-shape-divider-bottom-1768831497 .shape-fill {
    fill: #000000 !important;
}

.custom-shape-divider-bottom-1768831497 path {
    fill: #000000 !important;
}

.custom-shape-divider-bottom-1768831498 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1768831498 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 171px;
    transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1768831498 .shape-fill {
    fill: #1A1A1A;
}

.custom-shape-divider-bottom-1768831499 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1768831499 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 171px;
    transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1768831499 .shape-fill {
    fill: #000000;
}

.custom-shape-divider-bottom-1768831500 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1768831500 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 171px;
    transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1768831500 .shape-fill {
    fill: #1A1A1A;
}

/* スマホ表示:SYSTEMセクションのカードスライドインアニメーション */
@media (max-width: 767px) {
    .price-card,
    .price-card-link,
    .hours-card {
        opacity: 0 !important;
        transform: translateX(-100px) !important;
        transition: opacity 0.8s ease-out, transform 0.8s ease-out !important;
    }

    .price-card.slide-in,
    .price-card-link.slide-in,
    .hours-card.slide-in {
        opacity: 1 !important;
        transform: translateX(0) !important;
    }

    .hours-card.slide-in {
        transition-delay: 0.3s !important;
    }
}
}

/* シェイプディバイダー内の点線アニメーション */
.shape-line-animated {
    stroke-width: 4 !important;
    stroke-dasharray: 1, 15 !important;
    stroke-linecap: round !important;
    animation: dash-flow-right 3s linear infinite !important;
}

.shape-line-1 {
    stroke: #FFD700 !important;
}

.shape-line-2 {
    stroke: #FF1493 !important;
}

.shape-line-3 {
    stroke: #00FF00 !important;
}

@keyframes dash-flow-right {
    from {
        stroke-dashoffset: 0;
    }
    to {
        stroke-dashoffset: -1200;
    }
}














