/* ==========================================================================
   Design System & Base Styles (Noto Serif JP 統一)
   ========================================================================== */

:root {
    --bg-dark: #070c16;
    --navy-dark: #0b1426;
    --navy-medium: #111d35;
    --navy-light: #1c2e52;
    --gold-base: #d4af37;
    --gold-light: #f3e5ab;
    --gold-dark: #aa7c11;
    --gold-gradient: linear-gradient(135deg, #f3e5ab 0%, #d4af37 50%, #aa7c11 100%);
    --gold-glow: 0 0 15px rgba(212, 175, 55, 0.4);
    --text-white: #ffffff;
    --text-gray-light: #f1f5f9;
    --text-gray: #94a3b8;
    --text-dark: #1a202c;
    /* フォントをすべて Noto Serif JP に統一 */
    --font-serif: "Noto Serif JP", serif;
    --font-sans: "Noto Serif JP", serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-gold: 1px solid rgba(212, 175, 55, 0.3);
}

/* Reset & Common */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-sans);
    line-height: 1.8;
    letter-spacing: 0.05em;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

/* 画像・マップ共通リセット：枠線、シャドウ、角丸を削除して角を尖らせる */
img, iframe {
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

ul, ol {
    list-style: none;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold-base); }
.pc-only { display: block; }
.sp-only { display: none; }

@media (max-width: 768px) {
    .pc-only { display: none; }
    .sp-only { display: block; }
}

/* ==========================================================================
   本文のフォントサイズ統一 (PC: 16px / SP: 14px)
   ========================================================================== */
p, 
.recommend-list li, 
.staff-lead-text,
.staff-desc, 
.voice-content, 
.about-text, 
.service-card-text,
.menu-intro-text,
.menu-item-row,
.menu-item-note,
.drink-text,
.drink-note,
.recruit-text,
.access-table th, 
.access-table td {
    font-size: 16px !important;
    line-height: 1.8;
}

@media (max-width: 768px) {
    p, 
    .recommend-list li, 
    .staff-lead-text,
    .staff-desc, 
    .voice-content, 
    .about-text, 
    .service-card-text,
    .menu-intro-text,
    .menu-item-row,
    .menu-item-note,
    .drink-text,
    .drink-note,
    .recruit-text,
    .access-table th, 
    .access-table td {
        font-size: 14px !important;
        line-height: 1.7;
    }
}

.indent-1em {
    padding-left: 1em;
    text-indent: -1em;
}

/* ==========================================================================
   固定背景 (Safari対策)
   ========================================================================== */
.bg-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    background-image: url('../img/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
}

@media (max-width: 768px) {
    .bg-fixed {
        background-image: url('../img/SPbackground.png');
    }
}

/* ==========================================================================
   共通コンポーネント (Section Header & Button)
   ========================================================================== */
.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    color: var(--text-white);
    line-height: 1.5;
}

/* ボタン装飾 */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold {
    background: var(--gold-gradient);
    color: #000000;
    box-shadow: var(--gold-glow);
    border: none;
}

.btn-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(35deg);
    transition: none;
    z-index: 2;
}

.btn-shine:hover::after {
    left: 150%;
    transition: all 0.8s ease-in-out;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.btn-arrow {
    width: 20px;
    height: 20px;
    margin-left: 8px;
    transition: var(--transition-smooth);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* シンプルなゴールド枠アウトラインボタン */
.btn-outline-gold {
    background: transparent;
    border: 1px solid var(--gold-base);
    color: var(--gold-base);
    box-shadow: none;
    border-radius: 0;
    transition: var(--transition-smooth);
}

.btn-outline-gold:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-light);
    border-color: var(--gold-light);
    box-shadow: none;
    transform: translateY(-2px);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(7, 12, 22, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(7, 12, 22, 0.95);
    padding: 10px 0;
}

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

.header-logo a {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-nav ul {
    display: flex;
    gap: 24px;
}

.header-nav a {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    position: relative;
    padding: 8px 0;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-base);
    transition: var(--transition-smooth);
}

.header-nav a:hover {
    color: var(--gold-base);
}

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

/* ハンバーガーメニュー */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 110;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--gold-base);
    transition: var(--transition-smooth);
}

@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--navy-dark);
        border-left: 1px solid rgba(212, 175, 55, 0.2);
        padding: 80px 40px;
        transition: var(--transition-smooth);
        z-index: 105;
    }

    .header-nav.active {
        right: 0;
    }

    .header-nav ul {
        flex-direction: column;
        gap: 30px;
    }

    .header-nav a {
        font-size: 1.1rem;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* ==========================================================================
   ① FV (ファーストビュー)
   ========================================================================== */
.fv-section {
    height: 100vh;
    min-height: 700px;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #000;
}

/* スライダー背景 */
.fv-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.fv-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fvFadeInOut 12s infinite;
}

.slide-1 {
    background-image: url('../img/FV2.jpg');
    animation-delay: 0s;
}

.slide-2 {
    background-image: url('../img/FV3.jpg');
    animation-delay: 6s;
}

@keyframes fvFadeInOut {
    0% { opacity: 0; transform: scale(1.05); }
    12% { opacity: 1; transform: scale(1.04); }
    50% { opacity: 1; transform: scale(1.02); }
    62% { opacity: 0; transform: scale(1.01); }
    100% { opacity: 0; transform: scale(1); }
}

/* グラデーションオーバーレイ */
.fv-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    z-index: 2;
}

/* コンテンツエリア */
.fv-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fv-text-box {
    margin-top: -80px;
}

.fv-title {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    line-height: 1.4;
    color: #fff;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.fv-subtitle {
    font-size: 2.15rem;
    color: var(--gold-light);
    letter-spacing: 0.15em;
    margin-bottom: 40px;
    font-weight: 500;
}

/* ロゴアイコンエリア */
.fv-logo-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.fv-logo-img {
    max-width: 100%;
    height: auto;
    width: 450px;
}
/* 特徴ボックス */
.fv-feature-boxes {
    position: absolute;
    bottom: 80px;
    left: 40px;
    display: flex;
    gap: 20px;
}

.fv-feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 25px;
    border: 1px solid var(--gold-light);
    border-radius: 40px;
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
}

.fv-feature-box .feature-icon {
    width: 24px;
    height: 24px;
    stroke: var(--gold-light);
    stroke-width: 1.5;
}

.fv-feature-box .feature-text {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-align: center;
}

/* レスポンシブ (SP) */
@media (max-width: 992px) {
    .fv-title { font-size: 3.5rem; }
    .fv-subtitle { font-size: 1.65rem; }
    .fv-logo-img { width: 350px; }
    .fv-feature-boxes { flex-direction: column; bottom: 80px; gap: 15px; }
}

@media (max-width: 768px) {
    .header-container { padding: 5px 16px; }
    .header-logo a { font-size: 1.4rem; }

    .fv-section {
        min-height: 100vh;
        padding-top: 80px;
    }
    .fv-content {
        padding: 20px 20px 40px;
        justify-content: flex-start;
    }
    .fv-text-box {
        margin-top: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    .fv-title { 
        font-size: 2.2rem; 
        margin-bottom: 10px; 
    }
    .fv-line {
        width: 180px;
        height: 1px;
        background: var(--gold-light);
        margin: 5px 0 15px;
    }
    .fv-subtitle { 
        font-size: 1.1rem; 
        margin-bottom: 30px; 
    }
    .fv-logo-box {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: auto;
        margin-bottom: 20px;
    }
    .fv-logo-img { 
        width: 250px; 
    }
    
    .fv-feature-boxes {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 0;
        flex-direction: column;
        align-items: center;
        flex-wrap: nowrap;
        gap: 12px;
        width: 100%;
    }
    
    .fv-feature-box {
        padding: 12px 20px;
        border-radius: 40px;
        gap: 15px;
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    .fv-feature-box:first-child {
        width: 100%;
        justify-content: center;
    }
    
    .fv-feature-box .feature-icon { width: 20px; height: 20px; }
    .fv-feature-box .feature-text { font-size: 0.85rem; }
    
    .fv-gradient-overlay {
        background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%);
    }
}

/* ==========================================================================
   FV Text Animation (Load Animation)
   ========================================================================== */
@keyframes fvTextReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(4px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.fv-title {
    animation: fvTextReveal 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
    opacity: 0;
}

.fv-line {
    animation: fvTextReveal 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) 0.3s forwards;
    opacity: 0;
}

.fv-subtitle {
    animation: fvTextReveal 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) 0.5s forwards;
    opacity: 0;
}

.fv-logo-img {
    animation: fvTextReveal 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) 0.8s forwards;
    opacity: 0;
}

.fv-feature-boxes .fv-feature-box {
    opacity: 0;
}

.fv-feature-boxes .fv-feature-box:nth-child(1) {
    animation: fvTextReveal 1s cubic-bezier(0.25, 0.8, 0.25, 1) 1.1s forwards;
}

.fv-feature-boxes .fv-feature-box:nth-child(2) {
    animation: fvTextReveal 1s cubic-bezier(0.25, 0.8, 0.25, 1) 1.3s forwards;
}

.fv-feature-boxes .fv-feature-box:nth-child(3) {
    animation: fvTextReveal 1s cubic-bezier(0.25, 0.8, 0.25, 1) 1.5s forwards;
}

/* ==========================================================================
   ② RECOMMENDセクション (余白拡大)
   ========================================================================== */
.recommend-section {
    padding: 160px 0;
}

.recommend-layout {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.recommend-img-box {
    width: 50%;
    flex-shrink: 0;
}

.recommend-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recommend-content-box {
    width: 50%;
    display: flex;
    align-items: center;
    background: transparent;
    padding: 80px 8%;
}

.recommend-content-inner {
    max-width: 550px;
    width: 100%;
}

.recommend-content-box .section-subtitle {
    font-size: 1.25rem !important;
    font-weight: 400 !important;
    line-height: 1.6;
    margin-bottom: 20px;
}

.recommend-list {
    margin: 24px 0;
}

.recommend-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 400;
}

.recommend-list .list-icon {
    color: var(--gold-base);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.recommend-lead {
    font-family: var(--font-serif);
    font-weight: 400 !important;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 24px;
    color: var(--gold-light);
}

@media (max-width: 992px) {
    .recommend-section {
        padding: 60px 0;
    }
    .recommend-layout {
        flex-direction: column;
    }
    .recommend-img-box, .recommend-content-box {
        width: 100%;
    }
    .recommend-img-box {
        height: 400px;
    }
    .recommend-content-box {
        padding: 60px 24px;
    }
}

@media (max-width: 576px) {
    .recommend-img-box {
        height: 300px;
    }
}

/* ==========================================================================
   ③ ABOUT (画像拡大、帯縦幅ひろげる、テキスト下移動)
   ========================================================================== */
.about-section {
    background: #0b1426; /* 透過しないネイビー */
    padding: 80px 0; /* 帯の縦幅をもう少しひろげる */
    position: relative;
    margin: 200px 0; /* セクション間の余白拡大 */
}

.about-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 440px;
}

.about-img-box {
    position: relative;
    margin-top: -150px; /* 画像拡大に伴う上下突き抜け調整 */
    margin-bottom: -150px;
    z-index: 2;
    width: 100%;
    max-width: 750px; /* 画像をさらに大きく */
}

.about-img-box img {
    width: 100%;
    height: auto;
}

/* テキストを左下にかぶせ、さらに少し下に移動 */
.about-content {
    position: absolute;
    left: 2%;
    bottom: -70px; /* 位置をもう少し下げる */
    width: 45%;
    max-width: 450px;
    background: transparent;
    border: none;
    padding: 0;
    text-align: left;
    z-index: 4;
}

.about-subtitle {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #ffffff;
    text-align: left;
}

.about-text {
    line-height: 1.9;
    color: #ffffff;
    text-align: left;
}

@media (max-width: 992px) {
    .about-section {
        padding: 40px 0;
        margin: 20px 0;
    }
    .about-container {
        flex-direction: column;
        min-height: auto;
    }
    .about-img-box {
        margin: 0;
        max-width: 100%;
    }
    .about-content {
        position: static;
        transform: none;
        width: 100%;
        max-width: 100%;
        padding: 30px 0 0 0;
    }
    .about-subtitle {
        font-size: 1.15rem;
        margin-bottom: 16px;
    }
}

/* ==========================================================================
   ④ SERVICE (カード背景削除・高低差ズレ拡大・セクション余白拡大)
   ========================================================================== */
.service-section {
    padding: 160px 0 280px 0;
}

/* 共通セクションタイトル (SERVICE/MESSAGE/STAFF/MENU/VOICE共通デザイン) */
.section-title-wrapper {
    position: relative;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.section-large-title {
    font-family: var(--font-serif);
    font-size: 7rem;
    color: rgba(255, 255, 255, 0.04);
    text-transform: lowercase;
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 0;
}

.section-sub-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-white);
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 500;
    letter-spacing: 0.15em;
    z-index: 2;
}

/* MESSAGE/STAFFセクションタイトルのコンテナ余白 */
.message-title-container {
    margin-bottom: 0;
    padding-bottom: 0;
}

.staff-title-container {
    margin-bottom: 0;
    padding-bottom: 0;
}

@media (max-width: 992px) {
    .section-large-title {
        font-size: 4rem;
    }
    .section-sub-title {
        font-size: 1.2rem;
    }
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
    transition: var(--transition-smooth);
    height: fit-content;
}

.service-card-1 {
    transform: translateY(0);
}
.service-card-2 {
    transform: translateY(80px);
}
.service-card-3 {
    transform: translateY(160px);
}

.service-img-box {
    width: 100%;
    overflow: visible;
}

.service-img-box img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.service-info {
    padding: 24px 0;
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 12px;
    line-height: 1.5;
}

.service-card-text {
    line-height: 1.7;
    color: var(--text-gray-light);
}

@media (max-width: 992px) {
    .service-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .service-section {
        padding: 60px 0;
    }
    .service-card-1, .service-card-2, .service-card-3 {
        transform: translateY(0);
        max-width: 500px;
        margin: 0 auto;
    }
    .service-info {
        padding: 16px 0;
    }
}

@media (max-width: 768px) {
    .service-card-title {
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   ⑤ menu (ネイビー背景、背景文字拡大、右側半分いっぱい画像化)
   ========================================================================== */
.menu-section {
    padding: 160px 0;
    background: #0b1426; /* ネイビー背景追加 */
}

/* 背景文字menu拡大と日本語位置下げ */
.menu-top-header {
    margin-bottom: 50px;
    position: relative;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-large-title {
    font-family: var(--font-serif);
    font-size: 8rem; /* さらに拡大 */
    color: rgba(255, 255, 255, 0.04);
    text-transform: lowercase;
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 0;
}

.menu-sub-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-white);
    position: absolute;
    top: 65%; /* 料金案内テキストを少し下へ下げる */
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 500;
    letter-spacing: 0.15em;
    z-index: 2;
}

.menu-intro-box {
    max-width: 800px;
    margin: 0 auto 60px auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 30px 40px;
    background: rgba(7, 12, 22, 0.4);
}

.menu-intro-lead {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.menu-intro-text {
    line-height: 1.8;
    color: var(--text-gray-light);
}

/* 下段: 左右50%ずつの全幅2カラムレイアウト */
.menu-full-layout {
    display: flex;
    width: 100%;
    align-items: stretch;
    margin-top: 60px;
}

.menu-full-text-box {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* 右寄せにして中央に寄せる */
    padding: 60px 8% 60px 24px;
}

.menu-full-text-inner {
    max-width: 500px;
    width: 100%;
    text-align: left;
}

.menu-full-img-box {
    width: 50%;
    flex-shrink: 0;
}

.menu-full-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 右半分いっぱいに表示 */
}

.menu-text-group {
    margin-bottom: 35px;
}

.menu-text-group:last-child {
    margin-bottom: 0;
}

.menu-group-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 6px;
}

.menu-group-subtitle {
    font-size: 0.95rem !important;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.menu-item-row {
    margin-bottom: 8px;
    color: var(--text-white);
}

.menu-item-note {
    font-size: 0.85rem !important;
    color: var(--text-gray);
    margin-top: 8px;
}

@media (max-width: 992px) {
    .menu-section {
        padding: 60px 0;
    }
    .menu-large-title {
        font-size: 4.5rem;
    }
    .menu-sub-title {
        font-size: 1.2rem;
    }
    .menu-intro-box {
        padding: 24px 20px;
        margin-bottom: 40px;
    }
    .menu-intro-lead {
        font-size: 1.2rem;
    }
    .menu-full-layout {
        flex-direction: column-reverse; /* スマホ時は縦並び、テーブル上が基本 */
    }
    .menu-full-text-box, .menu-full-img-box {
        width: 100%;
    }
    .menu-full-img-box {
        height: 400px;
    }
    .menu-full-text-box {
        padding: 40px 24px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .menu-full-img-box {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .menu-intro-text {
        text-align: left !important;
    }
}
/* ==========================================================================
   新料金システムビジュアル
   ========================================================================== */
.system-visual-container {
    max-width: 900px;
    margin: 0 auto 60px;
    color: var(--gold-light);
    font-family: var(--font-serif);
}

.system-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.system-title {
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin: 15px 0;
    position: relative;
    color: var(--gold-base);
}

.system-title-line {
    width: 60px;
    height: 1px;
    background: var(--gold-base);
    opacity: 0.5;
}

.system-title-decor {
    width: 80px;
    height: 15px;
    margin-top: 10px;
}

.system-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.system-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.system-seat .system-circle {
    width: 140px;
    height: 140px;
    border: 1px solid var(--gold-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.system-icon {
    width: 50px;
    height: 50px;
    stroke: var(--gold-light);
}

.system-block-title {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--gold-base);
}

.system-block-note {
    font-size: 0.85rem;
    color: var(--text-gray-light);
}

.system-box {
    border: 1px solid var(--gold-base);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 240px;
    justify-content: center;
    background: rgba(7, 12, 22, 0.4);
}

.system-box-title {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 25px;
    color: var(--gold-base);
}

.system-drink {
    flex: 1.5;
    max-width: 380px;
}

.drink-options {
    display: flex;
    align-items: center;
    width: 100%;
}

.drink-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.system-icon-small {
    width: 30px;
    height: 30px;
    stroke: var(--gold-light);
    margin-bottom: 15px;
}

.drink-time {
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--gold-base);
    line-height: 1;
    margin-bottom: 8px;
}

.drink-time span {
    font-size: 1.2rem;
}

.drink-label {
    font-size: 0.9rem;
    color: var(--text-gray-light);
}

.drink-divider {
    width: 1px;
    height: 70px;
    background: var(--gold-base);
    opacity: 0.5;
    margin: 0 15px;
}

.system-extend {
    flex: 1;
    max-width: 200px;
}

.extend-note {
    font-size: 0.8rem;
    color: var(--text-gray-light);
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.5;
}

.extend-icon-wrapper {
    position: relative;
    margin-bottom: 15px;
}

.extend-time {
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--gold-base);
    line-height: 1;
}

.extend-time span {
    font-size: 1.1rem;
}

.system-plus {
    font-size: 2.5rem;
    color: var(--gold-base);
    font-weight: 300;
    margin: 0 10px;
}

.system-summary {
    position: relative;
    margin-bottom: 30px;
}

.summary-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.summary-line {
    height: 1px;
    width: 60px;
    background: var(--gold-base);
    opacity: 0.5;
}

.summary-icon {
    width: 35px;
    height: 35px;
    margin: 0 15px;
}

.summary-box {
    border: 1px solid var(--gold-base);
    border-radius: 6px;
    padding: 20px;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    color: var(--text-white);
}

.system-footer-logo {
    font-size: 1.8rem;
    letter-spacing: 0.15em;
    color: var(--gold-base);
    opacity: 0.8;
}

@media (max-width: 992px) {
    .system-flow {
        flex-direction: column;
        gap: 20px;
    }
    .system-seat .system-circle {
        width: 100px;
        height: 100px;
    }
    .system-icon {
        width: 40px;
        height: 40px;
    }
    .system-box {
        width: 100%;
        max-width: 100%;
        height: auto;
        padding: 25px;
    }
    .system-plus {
        margin: 10px 0;
    }
    .summary-box {
        font-size: 1rem;
        padding: 15px;
    }
}

/* ==========================================================================
   ⑥ voice (添付画像デザイン再現)
   ========================================================================== */
.voice-section {
    padding: 160px 0;
}

/* タイトル重ね合わせ */
.voice-title-wrapper {
    position: relative;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.voice-large-title {
    font-family: var(--font-serif);
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.05);
    text-transform: lowercase;
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 0;
}

.voice-sub-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-white);
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 500;
    letter-spacing: 0.15em;
    z-index: 2;
}

/* 画面端にぴったりくっつく全幅クチコミカードリスト */
.voice-full-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 60px 0;
    width: 100%;
    overflow: hidden;
}

.voice-full-card {
    background: #ffffff;
    color: var(--text-dark);
    width: 95%; /* 白の部分を大きく */
    max-width: 1400px;
    transition: var(--transition-smooth);
}

/* 1枚目＆5枚目：左端接続、右泡めカット（上が狭く、下が広い） */
.voice-card-left {
    align-self: flex-start;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
}

/* 2枚目：右端接続、左斜めカット */
.voice-card-right {
    align-self: flex-end;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.voice-card-inner {
    padding: 55px 8% 55px 16%; /* 左側カード：テキストを右に移動 */
}

.voice-card-right .voice-card-inner {
    padding: 55px 10% 55px 30%; /* m gmのテキストをさらに大きく右へ移動 */
}

.voice-author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.voice-author-name {
    font-weight: 700;
    color: #1a202c !important;
}

.voice-stars {
    color: #f1c40f;
    letter-spacing: 2px;
    font-size: 0.95rem;
}

.voice-content {
    line-height: 1.7;
    color: #4a5568;
}

.voice-btn-area {
    margin-top: 50px;
}

@media (max-width: 992px) {
    .voice-section {
        padding: 60px 0;
    }
    .voice-full-card {
        width: 100%;
        clip-path: none !important; /* スマホ時はクリップパス解除して通常のフラットカード */
    }
    .voice-card-inner, .voice-card-right .voice-card-inner {
        padding: 24px 20px;
    }
}

/* ==========================================================================
   ⑦ MESSAGE (ABOUTと同様、画像拡大、テキストは画像の右下に配置)
   ========================================================================== */
.message-section {
    background: #0b1426;
    padding: 80px 0;
    position: relative;
    margin: 300px 0 200px 0;
}

.message-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 440px;
}

.message-img-box {
    position: relative;
    margin-top: -150px;
    margin-bottom: -150px;
    z-index: 2;
    width: 100%;
    max-width: 750px;
}

.message-img-box img {
    width: 100%;
    height: auto;
}

/* テキストをネイビー帯と画像の上部（背景の余白）に配置 */
.message-title-overlay {
    position: absolute;
    top: -240px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 5;
    margin-bottom: 0;
}

.message-content {
    position: absolute;
    right: 2%; /* 左から右に変更し、右下に配置 */
    bottom: -70px;
    width: 45%;
    max-width: 450px;
    background: transparent;
    border: none;
    padding: 0;
    text-align: left;
    z-index: 4;
}

.message-lead-text {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #ffffff;
    text-align: left;
}

.message-text {
    line-height: 2;
    color: #ffffff;
    text-align: left;
}

@media (max-width: 992px) {
    .message-section {
        padding: 40px 0;
        margin: 60px 0 40px 0;
    }
    .message-title-overlay {
        top: -120px;
    }
    .message-container {
        flex-direction: column;
        min-height: auto;
    }
    .message-img-box {
        margin: 0;
        max-width: 100%;
    }
    .message-content {
        position: static;
        transform: none;
        width: 100%;
        max-width: 100%;
        padding: 30px 0 0 0;
    }
    .message-lead-text {
        font-size: 1.15rem;
        margin-bottom: 16px;
    }
}

/* ==========================================================================
   ⑧ Staff (背景薄ネイビー削除、左全幅画像化、見出しSTAFF削除、サブタイトル細字)
   ========================================================================== */
.staff-section {
    padding: 160px 0;
    background: transparent; /* 背景の薄いネイビー削除（透過） */
}

/* 左全幅画像/右テキストの2カラムレイアウト */
.staff-layout {
    display: flex;
    width: 100%;
    align-items: stretch;
}

.staff-img-box {
    width: 40%; /* 画像を少し小さく（50%→40%） */
    flex-shrink: 0;
}

.staff-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-content {
    width: 60%; /* 画像縮小に伴いテキスト側を広げる */
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
    padding: 80px 8%;
}

/* サブタイトルの太さを細く */
.staff-content .section-subtitle {
    font-weight: 400 !important;
}

.staff-lead-text {
    color: var(--text-gray-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.staff-text {
    font-size: 1.15rem;
    line-height: 2.2;
    color: #ffffff;
    letter-spacing: 0.08em;
}

.staff-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.staff-list li {
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding-bottom: 16px;
}

.staff-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.staff-profile-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.staff-role {
    font-size: 0.85rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold-light);
    padding: 2px 10px;
    border-radius: 0;
    font-weight: 500;
}

.staff-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
}

.staff-desc {
    color: var(--text-gray);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .staff-section {
        padding: 60px 0;
    }
    .staff-layout {
        flex-direction: column;
    }
    .staff-img-box, .staff-content {
        width: 100%;
    }
    .staff-img-box {
        height: 400px;
    }
    .staff-content {
        padding: 40px 24px;
    }
}

@media (max-width: 576px) {
    .staff-img-box {
        height: 300px;
    }
}

/* ==========================================================================
   ⑨ 求人セクション (準備中)
   ========================================================================== */
.recruit-section {
    padding: 140px 0;
}

.recruit-container {
    max-width: 900px; /* 少し広げる */
    margin: 0 auto;
    background: rgba(17, 29, 53, 0.7);
    border: 1px dashed rgba(212, 175, 55, 0.4);
    border-radius: 0;
    padding: 60px 50px;
    backdrop-filter: blur(4px);
}

.recruit-title {
    font-size: 1.8rem;
    color: var(--gold-light);
    margin-bottom: 24px;
    font-weight: 700;
}

.recruit-text {
    color: var(--text-gray-light);
    line-height: 1.8;
}

/* RECRUIT Table */
.recruit-table-wrapper {
    margin: 40px 0;
}

.recruit-table {
    width: 100%;
    border-collapse: collapse;
}

.recruit-table th, .recruit-table td {
    padding: 20px 15px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-white);
    line-height: 1.8;
}

.recruit-table tr:last-child th,
.recruit-table tr:last-child td {
    border-bottom: none;
}

.recruit-table th {
    width: 30%;
    text-align: left;
    color: var(--gold-light);
    font-weight: 500;
    vertical-align: top;
    background: rgba(212, 175, 55, 0.05);
}

.recruit-btn-area {
    margin-top: 50px;
}

@media (max-width: 768px) {
    .recruit-section {
        padding: 60px 0;
    }
    .recruit-container {
        padding: 40px 20px;
    }
    
    .recruit-title {
        font-size: 1.4rem;
    }
    
    .recruit-text {
        text-align: left !important;
    }
    
    .recruit-table th, .recruit-table td {
        display: block;
        width: 100%;
    }
    
    .recruit-table th {
        border-bottom: none;
        padding-bottom: 8px;
    }
    
    .recruit-table td {
        padding-top: 0;
        padding-bottom: 24px;
    }
    
    .recruit-table tr:last-child td {
        padding-bottom: 0;
    }
}

/* ==========================================================================
   ⑩ ACCESS (背景ネイビー、黒枠削除、薄ネイビー＋ゴールド細線で上品に)
   ========================================================================== */
.access-section {
    padding: 160px 0;
    background: #0b1426; /* 背景ネイビーに変更 */
    color: #ffffff;
}

.access-section .section-title {
    color: var(--gold-base);
    text-shadow: none;
}

.access-layout {
    display: flex;
    align-items: stretch;
    gap: 40px;
    margin-top: 20px; /* ACCESSタイトル削除に伴い上余白を縮小 */
    margin-bottom: 60px;
}

.access-info-box {
    flex: 1;
    background: rgba(17, 29, 53, 0.4); /* 薄い半透明ネイビー */
    border: var(--border-gold); /* ゴールドの細い境界線 */
    padding: 40px;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.access-table {
    width: 100%;
    border-collapse: collapse;
}

.access-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* 黒太枠削除、上品な薄い白線 */
}

.access-table tr:last-child {
    border-bottom: none;
}

.access-table th {
    text-align: left;
    width: 120px;
    padding: 18px 0;
    color: var(--gold-light); /* ラベルはゴールド */
    font-weight: 500;
    vertical-align: top;
    border-right: none; /* 縦の境界線も削除しスッキリ */
}

.access-table td {
    padding: 18px 0 18px 20px;
    color: #ffffff;
    line-height: 1.7;
}

.tel-link {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-light);
}

.tel-link:hover {
    color: var(--gold-base);
    text-decoration: underline;
}

.access-map-box {
    flex: 1.2;
    min-height: 350px;
    border-radius: 0;
    border: var(--border-gold); /* マップもゴールドの細枠 */
    box-shadow: none;
    overflow: hidden;
}

.access-map-box iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* インスタグラムエリア */
.instagram-area {
    margin-top: 50px;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 0;
}

.instagram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.instagram-icon {
    width: 30px;
    height: 30px;
}

@media (max-width: 992px) {
    .access-section {
        padding: 60px 0;
    }
    .access-layout {
        flex-direction: column;
    }
    .access-info-box, .access-map-box {
        width: 100%;
    }
    .access-map-box {
        height: 300px;
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .access-info-box {
        padding: 30px 20px;
    }
    .access-table th {
        width: 90px;
        padding: 12px 0;
    }
    .access-table td {
        padding: 12px 0 12px 10px;
    }
    .tel-link {
        font-size: 1.15rem;
    }
}

/* Footer */
.footer {
    background: #040810;
    padding: 40px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 30px;
}

.footer-nav a {
    font-size: 0.9rem;
    color: var(--text-white);
    letter-spacing: 0.05em;
    font-family: var(--font-serif);
    transition: var(--transition-smooth);
}

.footer-nav a:hover {
    color: var(--gold-base);
}

@media (max-width: 768px) {
    .footer-nav {
        gap: 12px 20px;
        margin-bottom: 24px;
    }
    .footer-nav a {
        font-size: 0.85rem;
    }
}

.copyright {
    font-size: 0.8rem;
    color: var(--text-gray);
    letter-spacing: 0.1em;
}

/* ==========================================================================
   スクロールアニメーション (Reveal Animation)
   ========================================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Staggered Animations & Restoring Diagonal Layout */
.service-card-1.scroll-reveal { transition-delay: 0s; }
.service-card-2.scroll-reveal { transition-delay: 0.2s; }
.service-card-3.scroll-reveal { transition-delay: 0.4s; }

@media (min-width: 993px) {
    .service-card-2.scroll-reveal { transform: translateY(110px); }
    .service-card-2.scroll-reveal.active { transform: translateY(80px); }
    
    .service-card-3.scroll-reveal { transform: translateY(190px); }
    .service-card-3.scroll-reveal.active { transform: translateY(160px); }
}

.voice-full-list .voice-full-card:nth-child(1).scroll-reveal { transition-delay: 0s; }
.voice-full-list .voice-full-card:nth-child(2).scroll-reveal { transition-delay: 0.2s; }
.voice-full-list .voice-full-card:nth-child(3).scroll-reveal { transition-delay: 0.4s; }

/* ==========================================================================
   TOPに戻るボタン (Scroll to Top)
   ========================================================================== */
.to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--navy-dark); /* ゴールドからネイビーに変更 */
    border: 1px solid rgba(212, 175, 55, 0.5); /* ゴールドの細枠を追加 */
    color: var(--gold-light); /* アイコン色はゴールド */
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 99;
}

.to-top-btn svg {
    width: 24px;
    height: 24px;
    transition: var(--transition-smooth);
}

.to-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.to-top-btn:hover {
    transform: translateY(-3px);
    background: var(--navy-medium);
    border-color: var(--gold-base);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.to-top-btn:hover svg {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .to-top-btn {
        bottom: 70px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

/* ==========================================================================
   SP用 固定フッター
   ========================================================================== */
.sp-fixed-footer {
    display: none;
}

@media (max-width: 768px) {
    .sp-fixed-footer {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 100;
        transform: translateY(100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .sp-fixed-footer.visible {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    body {
        padding-bottom: 50px;
    }
    
    .sp-fixed-footer .footer-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 15px 0;
        font-size: 0.95rem;
        font-weight: bold;
        color: #fff;
        text-decoration: none;
    }
    
    .sp-fixed-footer .tel-btn {
        background: #0b1426;
        border-top: 1px solid var(--gold-base);
        border-right: 1px solid rgba(212, 175, 55, 0.3);
        color: var(--gold-base);
    }
    
    .sp-fixed-footer .insta-btn {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    }
    
    .sp-fixed-footer svg {
        width: 20px;
        height: 20px;
    }
}

/* ==========================================================================
   FV Recruit Badge
   ========================================================================== */
.fv-recruit-badge {
    position: absolute;
    bottom: 40px;
    right: 100px;
    z-index: 10;
    background: var(--gold-gradient);
    color: #000;
    padding: 12px 30px;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
    transition: var(--transition-smooth);
    animation: floatBadge 3s ease-in-out infinite;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.fv-recruit-badge::after {
    content: '▶';
    font-size: 0.8rem;
    margin-left: 8px;
}

.fv-recruit-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.7);
    color: #000;
}

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

@media (max-width: 992px) {
    .fv-recruit-badge {
        bottom: 30px;
        right: 80px;
        padding: 10px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .fv-recruit-badge {
        bottom: 30px;
        right: 40px;
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}
