@charset "UTF-8";

/* ==========================================================================
   Variables & Design System
   ========================================================================== */
:root {
    --bg-dark: #110D0B;
    --bg-dark-card: #1C1512;
    --bg-dark-alt: #16100E;
    --bg-light: #F7F3EC;
    --bg-light-card: #FFFFFF;
    
    --primary-red: #8C2518;
    --primary-red-hover: #A62D1E;
    --accent-gold: #D5A153;
    --accent-gold-light: #E8C888;
    
    --text-dark: #2A211D;
    --text-dark-sub: #665B54;
    --text-light: #F5EFE6;
    --text-light-sub: #BAAFA1;
    
    --font-base: 'Noto Sans JP', sans-serif;
    --font-serif: 'Shippori Mincho', 'Noto Serif JP', serif;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Global Base (④ すべての丸くなっている角をとがらせる) */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-radius: 0 !important; /* すべての角丸を強制リセット（角をとがらせる） */
}

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

body {
    font-family: var(--font-base);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.8;
    letter-spacing: 0.04em;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    /* 右クリック・選択・コピー禁止 */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

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

ul, ol {
    list-style: none;
}

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

.pc-only {
    display: block;
}

.sp-only {
    display: none;
}

@media (max-width: 768px) {
    .pc-only {
        display: none !important;
    }
    .sp-only {
        display: block !important;
    }
    body, p, dd, .about-desc, .service-2col-text, .course-desc, .hors-text, .delivery-desc, .delivery-note, .message-body {
        font-size: 14px !important;
    }
}

/* ==========================================================================
   Header Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(17, 13, 11, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(213, 161, 83, 0.15);
    z-index: 1000;
    transition: var(--transition);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 800;
    color: var(--accent-gold);
    letter-spacing: 0.08em;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
}

.logo-text:hover {
    color: var(--accent-gold-light);
}

.nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.08em;
    position: relative;
    padding: 4px 0;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition);
}

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

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

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-tel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-red) 0%, #A82C1D 100%);
    color: #FFFFFF;
    padding: 10px 22px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(140, 37, 24, 0.4);
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
}

.header-tel-btn:hover {
    background: linear-gradient(135deg, var(--primary-red-hover) 0%, #C03423 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(140, 37, 24, 0.6);
}

.tel-num {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.05em;
    line-height: 1;
}

/* Hamburger Button */
.hamburger {
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: none !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    z-index: 1001;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
    }
}

.hamburger span {
    width: 26px;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition);
}

.hamburger.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(17, 13, 11, 0.98);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.mobile-nav.is-active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.mobile-nav a.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--text-light);
    letter-spacing: 0.1em;
}

.mobile-tel-btn {
    display: inline-block;
    margin-top: 15px;
    background: var(--primary-red);
    color: #FFF;
    padding: 14px 30px;
    text-align: center;
    font-family: var(--font-serif);
    font-weight: bold;
    font-size: 18px;
}

/* ==========================================================================
   ① First View (Hero Section)
   ========================================================================== */
.fv-section {
    position: relative;
    width: 100%;
    min-height: 620px;
    padding-top: 80px;
    background-color: var(--bg-dark);
    overflow: hidden;
}

/* 右側料理画像（添付画像赤枠エリア） */
.fv-bg-img-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.fv-bg-img.fv-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.fv-bg-img.fv-slide.active {
    opacity: 1;
}

.fv-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 13, 11, 0.05);
    z-index: 1;
}

.fv-inner {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: flex;
    min-height: calc(100vh - 80px);
    max-height: 840px;
    z-index: 2;
}

.fv-left-area {
    position: relative;
    width: 62%;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 60px 40px 60px 110px;
}

.fv-paper-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.fv-paper-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

.fv-content-inner {
    position: relative;
    z-index: 1;
    max-width: 580px;
    margin-left: 24px;
    color: #2A211D;
}

.fv-sub-tag {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-red);
    letter-spacing: 0.25em;
    margin-bottom: 12px;
}

.fv-catch-heading {
    font-family: var(--font-serif);
    font-size: 34px;
    font-weight: 800;
    color: #1C1512;
    line-height: 1.45;
    margin-bottom: 24px;
    letter-spacing: 0.06em;
}

.fv-catch-heading span {
    display: block;
}

.fv-sub-text {
    font-size: 15px;
    color: #4A3C35;
    line-height: 1.9;
    margin-bottom: 32px;
}

.fv-badges-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 16px;
    padding: 18px 0;
    margin-bottom: 36px;
    border-top: 1px solid rgba(230, 104, 0, 0.25);
    border-bottom: 1px solid rgba(230, 104, 0, 0.25);
}

.fv-badge-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFF8F0;
    padding: 8px 22px;
    border: 2px solid #E66800;
    box-shadow: 0 3px 10px rgba(230, 104, 0, 0.15);
    transition: var(--transition);
}

.fv-badge-item:hover {
    background: #FFEEDD;
    border-color: #F2791D;
    transform: translateY(-2px);
    box-shadow: 0 5px 14px rgba(230, 104, 0, 0.25);
}

.badge-text {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 800;
    color: #D95400;
    letter-spacing: 0.12em;
    line-height: 1;
}

.badge-note {
    display: block;
    font-size: 10px;
    font-weight: 500;
    color: var(--text-dark-sub);
    line-height: 1.2;
    margin-top: 2px;
}

.fv-cta-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.fv-btn-primary {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-red) 0%, #A82C1D 100%);
    color: #FFFFFF;
    padding: 12px 28px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 18px rgba(140, 37, 24, 0.4);
    transition: var(--transition);
}

.fv-btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-red-hover) 0%, #C03423 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(140, 37, 24, 0.6);
}

.fv-btn-primary .btn-main {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.fv-btn-primary .btn-sub {
    font-size: 11px;
    opacity: 0.9;
    letter-spacing: 0.04em;
}

.fv-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.88);
    color: #1C1512;
    border: 1px solid rgba(28, 21, 18, 0.3);
    padding: 16px 28px;
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.fv-btn-secondary:hover {
    background: #FFFFFF;
    border-color: var(--primary-red);
    color: var(--primary-red);
    transform: translateY(-2px);
}

.fv-right-area {
    display: none;
}

/* Mobile Responsive FV */
@media (max-width: 992px) {
    .fv-bg-img-wrap {
        position: relative;
        width: 100%;
        height: 380px;
    }
    .fv-inner {
        flex-direction: column;
        max-height: none;
        min-height: auto;
    }
    .fv-left-area {
        width: 100%;
        padding: 40px 24px 50px 24px;
    }
    .fv-content-inner {
        margin-left: 0;
    }
    .fv-catch-heading {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    /* ① SP時FV: SPFVaaaの位置調整 & テキスト位置調整 & ボタン・サブテキスト非表示 */
    .fv-left-area {
        margin-top: -70px !important;
        padding-top: 20px !important;
    }
    .fv-paper-bg {
        top: -70px !important;
        height: calc(100% + 75px) !important;
    }
    .fv-content-inner {
        margin-top: 35px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .fv-sub-text {
        display: none !important;
    }
    .fv-cta-btns {
        display: none !important;
    }
    .fv-badges-wrap {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
    .fv-badge-item {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 8px 12px !important;
    }

    /* ② SP時ヘッダー: 電話ボタン削除・店舗名微細縮小 */
    .header-tel-btn {
        display: none !important;
    }
    .logo-text {
        font-size: 16px !important;
    }

    /* ④ SP時配達のご案内 型崩れ徹底解消 */
    .delivery-info-card {
        padding: 26px 16px !important;
    }
    .delivery-title {
        font-size: 19px !important;
        line-height: 1.4 !important;
    }
    .delivery-desc {
        font-size: 13.5px !important;
        line-height: 1.8 !important;
        margin-bottom: 20px !important;
    }
    .delivery-meta-list {
        padding: 16px 14px !important;
        gap: 14px !important;
    }
    .delivery-meta-item {
        grid-template-columns: 1fr !important;
        gap: 4px !important;
    }
    .delivery-meta-item dt {
        border-bottom: 1px dashed rgba(213, 161, 83, 0.3) !important;
        padding-bottom: 4px !important;
    }
}

@media (max-width: 600px) {
    .fv-right-area {
        height: 260px;
    }
    .fv-cta-btns {
        flex-direction: column;
        width: 100%;
    }
    .fv-btn-primary, .fv-btn-secondary {
        width: 100%;
    }
}

/* ==========================================================================
   ② About～Service～Menu 固定背景ラッパー (PCbackground.png / SPbackground.png)
   ========================================================================== */
.fixed-bg-wrapper,
.about-service-wrapper {
    position: relative;
    width: 100%;
    /* PC背景設定 (fixed) */
    background-image: url('../img/PCbackground.png');
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* モバイル（SP）用 サファリ対応＆レスポンシブ固定背景 */
@media (max-width: 768px) {
    .fixed-bg-wrapper,
    .about-service-wrapper {
        background-image: none !important;
        background-attachment: scroll !important;
    }
    
    /* モバイル Safariの background-attachment: fixed 不具合回避テクニック */
    .fixed-bg-wrapper::before,
    .about-service-wrapper::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-image: url('../img/SPbackground.png');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        z-index: -1;
        pointer-events: none;
        will-change: transform;
    }
}

/* ==========================================================================
   Section Header System
   ========================================================================== */
.sec-header {
    text-align: center;
    margin-bottom: 50px;
}

.sec-label {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-red);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.sec-label.gold {
    color: var(--accent-gold);
}

.sec-label.center-label {
    display: block;
    text-align: center;
}

.sec-title-main {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 16px;
}

.sec-title-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--accent-gold);
}

.sec-title-line {
    display: inline-block;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .sec-title-main {
        font-size: 22px;
    }
    .sec-title-line {
        display: inline-block;
        white-space: nowrap;
    }
}

/* ==========================================================================
   About Section (テキストカラーを暗い色に設定)
   ========================================================================== */
.about-section {
    background: transparent !important;
    color: #2C211D;
    padding: 110px 0;
    backdrop-filter: none !important;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content .sec-label {
    color: var(--primary-red);
}

.about-heading {
    font-family: var(--font-serif);
    font-size: 30px;
    font-weight: 700;
    color: #1C1512;
    margin-bottom: 30px;
    line-height: 1.5;
    position: relative;
    padding-bottom: 16px;
}

.about-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-red);
}

.about-desc {
    font-size: 16px;
    color: #332924;
    line-height: 2;
}

.about-desc p {
    margin-bottom: 16px;
}

.about-desc p:last-child {
    margin-bottom: 0;
}

.about-image {
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 4px solid #FFFFFF;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.04);
}

@media (max-width: 900px) {
    .about-section {
        padding: 70px 0;
    }
    .about-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .about-heading {
        font-size: 23px;
    }
}

/* ==========================================================================
   ② Service Section (テキストカラーを暗い色に設定)
   ========================================================================== */
.service-section {
    padding: 110px 0;
    background: transparent !important;
    backdrop-filter: none !important;
    color: #2C211D;
}

.service-section .sec-label {
    color: var(--primary-red);
}

.service-section .sec-title-main {
    color: #1C1512;
}

.service-section .sec-title-main::after {
    background-color: var(--primary-red);
}

.service-list-2col {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.service-item-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    transition: var(--transition);
}

.service-item-2col.reverse {
    grid-template-columns: 1fr 1fr;
}
.service-item-2col.reverse .service-2col-img {
    order: 2;
}
.service-item-2col.reverse .service-2col-content {
    order: 1;
}

.service-2col-img {
    position: relative;
    overflow: hidden;
    border: none !important;
    box-shadow: none !important;
    aspect-ratio: 16 / 10;
}

.service-2col-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-item-2col:hover .service-2col-img img {
    transform: scale(1.04);
}

.service-badge-num {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 800;
    color: #FFFFFF;
    background: var(--primary-red);
    border: none !important;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.service-2col-content {
    display: flex;
    flex-direction: column;
}

.service-2col-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    color: #1C1512;
    margin-bottom: 20px;
    line-height: 1.5;
    position: relative;
    padding-bottom: 12px;
}

.service-2col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-red);
}

.service-2col-text {
    font-size: 16px;
    color: #332924;
    line-height: 1.9;
}

@media (max-width: 900px) {
    .service-item-2col,
    .service-item-2col.reverse {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .service-item-2col.reverse .service-2col-img {
        order: 0;
    }
    .service-item-2col.reverse .service-2col-content {
        order: 0;
    }
    .service-2col-title {
        font-size: 20px;
    }
}

/* ==========================================================================
   Menu Section (①画面フルバナー ＆ ②茶色半透明背景オーバーレイ)
   ========================================================================== */
.menu-section {
    padding: 0 0 110px 0;
    /* 茶色の半透明背景色を上にかぶせる */
    background-color: rgba(35, 23, 18, 0.85) !important;
    border-top: none;
    color: var(--text-light);
}

.menu-top-full-banner {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.menu-full-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.menu-container-inner {
    padding-top: 80px;
}

.menu-section .sec-title-main {
    color: var(--text-light);
}

.menu-section .sec-title-main::after {
    background-color: var(--accent-gold);
}

/* Recommended Course Card */
.recommended-course-card {
    position: relative;
    background: transparent;
    border: none;
    padding: 0;
    margin-bottom: 60px;
    box-shadow: none;
}

/* Recommended Course Gallery */
.course-gallery {
    display: flex;
    gap: 12px;
    margin-top: 0;
    margin-bottom: 28px;
    width: 100%;
}

.gallery-main {
    position: relative;
    flex: 1;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: none;
    background-color: #1a1410;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.gallery-caption {
    position: absolute;
    bottom: 16px;
    left: 20px;
    font-family: var(--font-serif);
    font-size: 16px;
    color: #FFFFFF;
    background: rgba(0, 0, 0, 0.7);
    padding: 6px 16px;
    border-left: 3px solid var(--accent-gold);
    backdrop-filter: blur(4px);
    pointer-events: none;
    letter-spacing: 0.05em;
}

.gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 130px;
    flex-shrink: 0;
}

.thumb-item {
    position: relative;
    aspect-ratio: 16 / 9;
    background: none;
    border: 2px solid transparent;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    outline: none;
    transition: all 0.25s ease;
    opacity: 0.55;
    filter: brightness(0.75);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.thumb-item.active {
    border-color: var(--accent-gold);
    opacity: 1;
    filter: brightness(1);
    box-shadow: 0 0 10px rgba(213, 161, 83, 0.4);
}

.thumb-item:hover:not(.active) {
    opacity: 0.85;
    filter: brightness(0.9);
}

.course-info-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.course-header-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-bottom: 4px;
}

.course-title {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 0;
    line-height: 1.4;
}

.course-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 8px;
    background: none;
    padding: 0;
    width: auto;
    border: none;
}

.price-label {
    font-size: 15px;
    color: var(--text-light-sub);
}

.price-val {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 800;
    color: #FFFFFF;
}

.course-desc {
    font-size: 15px;
    color: var(--text-light-sub);
    line-height: 1.9;
}

/* Recommended Item List Styles */
.recommended-item-list {
    margin-bottom: 14px;
    padding: 0;
    list-style: none;
}

.recommended-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed rgba(213, 161, 83, 0.3);
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.recommended-item .item-name {
    font-weight: 700;
    color: var(--text-light);
    font-size: 16px;
}

.recommended-item .item-price {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 16px;
}

.recommended-item .item-sub-price {
    font-size: 13px;
    font-weight: normal;
    color: var(--text-light-sub);
}

@media (max-width: 768px) {
    .recommended-course-card {
        padding: 0;
    }
    .course-gallery {
        flex-direction: column;
        gap: 8px;
    }
    .gallery-thumbs {
        flex-direction: row;
        width: 100%;
        height: auto;
        gap: 8px;
    }
    .thumb-item {
        flex: 1;
        height: auto;
        aspect-ratio: 16 / 9;
    }
    .gallery-caption {
        font-size: 13px;
        bottom: 10px;
        left: 10px;
        padding: 4px 10px;
    }
    .course-title {
        font-size: 22px;
    }
    .price-val {
        font-size: 26px;
    }
    .recommended-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

/* Category Image Cards & Collapsible Menu Panels */
.menu-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 30px;
    margin-bottom: 50px;
    align-items: start;
}

.menu-cat-item {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.menu-cat-card-btn {
    background: none;
    border: none;
    padding: 0;
    width: 100%;
    text-align: left;
    cursor: pointer;
    outline: none;
    display: block;
}

.menu-cat-card-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    height: 100%;
    overflow: hidden;
    /* 添付画像のような和風ピクチャーフレーム枠線 */
    border: 12px solid #E8E2D6;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.35s ease;
}

.menu-cat-card-btn:hover .menu-cat-card-frame,
.menu-cat-card-btn:focus-visible .menu-cat-card-frame {
    transform: translateY(-5px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.6);
}

.cat-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.menu-cat-card-btn:hover .cat-card-img {
    transform: scale(1.05);
}

.menu-cat-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    text-align: center;
}

.cat-card-title {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    letter-spacing: 0.1em;
    line-height: 1.35;
}

.cat-card-btn-text {
    font-family: var(--font-base);
    font-size: 13px;
    color: var(--accent-gold);
    background: rgba(17, 13, 11, 0.85);
    border: 1px solid var(--accent-gold);
    padding: 6px 16px;
    letter-spacing: 0.06em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.menu-cat-card-btn:hover .cat-card-btn-text {
    background: var(--accent-gold);
    color: #17100B;
}

.cat-card-btn-text .arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.menu-cat-card-btn.is-active .cat-card-btn-text .arrow {
    transform: rotate(180deg);
}

/* Collapsible Panel */
.menu-cat-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.45s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.35s ease, margin 0.3s ease;
    margin-top: 0;
}

.menu-cat-panel.is-open {
    max-height: 1000px;
    opacity: 1;
    margin-top: 16px;
}

.menu-cat-panel-inner {
    background: rgba(28, 21, 18, 0.95);
    border: 1px solid rgba(213, 161, 83, 0.3);
    padding: 24px 24px 28px 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.panel-cat-header {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-red);
}

@media (max-width: 768px) {
    .menu-categories-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .menu-cat-card-frame {
        border-width: 8px;
    }
    .cat-card-title {
        font-size: 22px;
    }
}

.menu-item-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.menu-item-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(213, 161, 83, 0.15);
}

.menu-item-list li.sub-item {
    font-size: 13px;
    color: var(--text-light-sub);
    padding-left: 12px;
    border-bottom: none;
    margin-top: -6px;
}

.item-name {
    color: var(--text-light);
}

.item-price {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--accent-gold-light);
}

.slash {
    color: rgba(213, 161, 83, 0.4);
    margin: 0 4px;
}

.onigiri-item {
    flex-direction: column;
    align-items: stretch !important;
    gap: 6px;
}

.onigiri-row {
    display: flex;
    justify-content: space-between;
}
.onigiri-row.sub {
    font-size: 13px;
    color: var(--text-light-sub);
    padding-left: 12px;
}

/* Hors d'oeuvre Box */
.hors-subtitle {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.hors-text {
    font-size: 14px;
    color: var(--text-light-sub);
    line-height: 1.85;
}

@media (max-width: 900px) {
    .menu-categories-grid {
        grid-template-columns: 1fr;
    }
}

/* More Menu Button Wrapper */
.more-menu-btn-wrap {
    text-align: center;
    margin-bottom: 70px;
}

.more-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #B5833A 100%);
    color: #110D0B;
    font-family: var(--font-serif);
    font-weight: 800;
    font-size: 17px;
    padding: 16px 40px;
    box-shadow: 0 6px 20px rgba(213, 161, 83, 0.3);
    border: 1px solid #FFF8E1;
}

.more-menu-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(213, 161, 83, 0.5);
    background: linear-gradient(135deg, #E8C888 0%, var(--accent-gold) 100%);
}

/* Delivery Information Area */
.delivery-info-card {
    background: linear-gradient(135deg, rgba(35, 23, 18, 0.95) 0%, rgba(18, 11, 8, 0.95) 100%);
    border: 1px solid rgba(213, 161, 83, 0.4);
    padding: 44px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.delivery-tag {
    display: inline-block;
    background: rgba(213, 161, 83, 0.15);
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    margin-bottom: 12px;
    letter-spacing: 0.1em;
}

.delivery-title {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 18px;
    line-height: 1.4;
}

.delivery-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 24px;
}

.delivery-meta-list {
    background: rgba(17, 13, 11, 0.7);
    border: 1px solid rgba(213, 161, 83, 0.2);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.delivery-meta-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 12px;
    font-size: 14px;
}

.delivery-meta-item dt {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--accent-gold);
}

.highlight-gold {
    color: var(--accent-gold);
    font-size: 16px;
}

.delivery-note {
    font-size: 13px;
    color: var(--text-light-sub);
    line-height: 1.7;
    padding-left: 1.2em;
    text-indent: -1.2em;
}

.delivery-img-wrap {
    overflow: hidden;
    border: 1px solid rgba(213, 161, 83, 0.3);
}

/* ==========================================================================
   Voice Section (お客様の声)
   ========================================================================== */
.voice-section {
    padding: 110px 0;
    background: transparent !important;
    backdrop-filter: none !important;
    color: var(--text-light);
}

.voice-section .sec-label {
    color: var(--primary-red);
}

.voice-section .sec-title-main {
    color: #1C1512;
}

.voice-section .sec-title-main::after {
    background-color: var(--primary-red);
}

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

.voice-card {
    position: relative;
    background: rgba(28, 21, 18, 0.92);
    border: 1px solid rgba(213, 161, 83, 0.3);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.voice-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

.voice-stars {
    font-size: 22px;
    color: var(--accent-gold);
    letter-spacing: 0.15em;
    line-height: 1;
}

.voice-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.85;
}

.voice-text p {
    margin-bottom: 8px;
}

.voice-text p:last-child {
    margin-bottom: 0;
}

/* More Voice Button Wrapper */
.more-voice-btn-wrap {
    text-align: center;
}

.more-voice-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #B5833A 100%);
    color: #110D0B;
    font-family: var(--font-serif);
    font-weight: 800;
    font-size: 17px;
    padding: 16px 40px;
    box-shadow: 0 6px 20px rgba(213, 161, 83, 0.3);
    border: 1px solid #FFF8E1;
    transition: var(--transition);
}

.more-voice-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(213, 161, 83, 0.5);
    background: linear-gradient(135deg, #E8C888 0%, var(--accent-gold) 100%);
}

@media (max-width: 900px) {
    .voice-section {
        padding: 70px 0;
    }
    .voice-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 36px;
    }
    .voice-card {
        padding: 28px 20px;
    }
}

/* ==========================================================================
   Message Section (固定背景: Messagebackground.jpeg / SPMessagebackground.jpeg)
   ========================================================================== */
.message-section {
    padding: 110px 0;
    position: relative;
    width: 100%;
    /* PC背景設定 (fixed) */
    background-image: url('../img/Messagebackground.jpeg');
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border: none;
}

.message-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.message-inner {
    background: rgba(17, 13, 11, 0.45);
    border: none;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}

.message-heading {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-gold);
    margin-top: 12px;
    margin-bottom: 36px;
    letter-spacing: 0.1em;
    line-height: 1.4;
}

.message-body {
    font-size: 17px;
    color: var(--text-light);
    line-height: 2.2;
}

.message-body p {
    margin-bottom: 16px;
}

.message-highlight {
    font-family: var(--font-serif);
    font-size: 19px;
    font-weight: 700;
    color: var(--text-light);
    margin-top: 28px;
    letter-spacing: 0.08em;
}

@media (max-width: 768px) {
    .message-section {
        padding: 70px 0 !important;
        position: relative !important;
        overflow: hidden !important;
        background-image: url('../img/SPMessagebackground.jpeg') !important;
        background-attachment: scroll !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        background-size: cover !important;
    }

    /* 他セクションへ露出する全画面擬似要素を削除 */
    .message-section::before {
        display: none !important;
    }

    .message-inner {
        text-align: left !important;
        padding: 40px 20px !important;
    }
    .message-heading {
        text-align: left !important;
        font-size: 22px !important;
        margin-bottom: 24px !important;
    }
    .message-body {
        text-align: left !important;
        font-size: 15px !important;
        line-height: 1.9 !important;
    }
    .message-body p {
        text-align: left !important;
    }
    .message-highlight {
        text-align: left !important;
        font-size: 17px !important;
    }
}

/* ==========================================================================
   Access Section
   ========================================================================== */
.access-section {
    background-color: var(--bg-dark);
    padding: 110px 0;
}

.access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.access-info-card {
    background-color: var(--bg-dark-card);
    border: 1px solid rgba(213, 161, 83, 0.25);
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.store-name {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 28px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-red);
}

.access-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
}

.access-item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 16px;
    font-size: 15px;
}

.access-item dt {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--accent-gold-light);
}

.access-item dd {
    color: var(--text-light);
    line-height: 1.7;
}

.tel-link {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 18px;
    color: #FFFFFF;
}

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

.access-external-link {
    color: var(--accent-gold);
    text-decoration: underline;
    font-size: 14px;
    word-break: break-all;
    transition: var(--transition);
}

.access-external-link:hover {
    color: var(--accent-gold-light);
}

.access-sns-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.sns-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 700;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(213, 161, 83, 0.4);
    transition: var(--transition);
    text-decoration: none;
}

.sns-badge.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
    color: #FFFFFF;
}

.sns-badge.facebook:hover {
    background: #1877f2;
    border-color: transparent;
    color: #FFFFFF;
}

.access-store-img {
    margin-top: auto;
    overflow: hidden;
    border: 1px solid rgba(213, 161, 83, 0.3);
}

.access-map-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.map-iframe-container {
    width: 100%;
    height: 100%;
    min-height: 360px;
    overflow: hidden;
    border: 1px solid rgba(213, 161, 83, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.cta-card {
    background: linear-gradient(135deg, #2D1A14 0%, #1C120E 100%);
    border: 1px solid var(--primary-red);
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cta-sub {
    font-size: 13px;
    color: var(--text-light-sub);
    margin-bottom: 4px;
}

.cta-tel {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 800;
    color: var(--accent-gold);
}

.cta-button {
    background-color: var(--primary-red);
    color: #FFFFFF;
    font-family: var(--font-serif);
    font-weight: bold;
    font-size: 15px;
    padding: 14px 24px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(140, 37, 24, 0.4);
}

.cta-button:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(140, 37, 24, 0.6);
}

@media (max-width: 900px) {
    .access-grid {
        grid-template-columns: 1fr;
    }
    .access-info-card {
        padding: 28px 20px;
    }
    .cta-card {
        flex-direction: column;
        text-align: center;
    }
    .cta-button {
        width: 100%;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: #0A0706;
    border-top: 1px solid rgba(213, 161, 83, 0.15);
    padding: 50px 0 30px;
    text-align: center;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo img {
    height: 38px;
    width: auto;
}

.footer-address {
    font-size: 13px;
    color: var(--text-light-sub);
}

.copyright {
    font-size: 12px;
    color: rgba(186, 175, 161, 0.6);
    margin-top: 10px;
}

/* Page Top Button */
.page-top-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 54px;
    height: 54px;
    background: rgba(17, 13, 11, 0.92);
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    z-index: 990;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    text-decoration: none;
}

.page-top-btn.is-show {
    opacity: 1;
    visibility: visible;
}

.page-top-btn:hover {
    background: var(--accent-gold);
    color: #110D0B;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(213, 161, 83, 0.4);
}

.page-top-btn .arrow {
    font-size: 12px;
    line-height: 1;
    margin-bottom: 2px;
}

.page-top-btn .text {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1;
}

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

/* ==========================================================================
   Full Screen Menu Modal Overlay (③ お品書き全画面モーダル)
   ========================================================================== */
.menu-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(10, 7, 5, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.35s ease;
    padding: 24px;
}

.menu-modal-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.menu-modal-dialog {
    position: relative;
    width: 100%;
    max-width: 680px;
    max-height: 85vh;
    background: #1C1512;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);
    overflow-y: auto;
    padding: 44px 36px 36px 36px;
    transform: scale(0.95);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.menu-modal-overlay.is-active .menu-modal-dialog {
    transform: scale(1);
}

/* ✕ 閉じるボタン */
.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 18px;
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    width: 40px;
    height: 40px;
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    z-index: 10;
}

.modal-close-btn:hover {
    background: var(--accent-gold);
    color: #110D0B;
    transform: scale(1.1);
}

.modal-cat-header {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-red);
    text-align: center;
}

/* ==========================================================================
   All Menu Button (④ メニュー一覧ボタン)
   ========================================================================== */
.all-menu-btn-wrap {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 50px;
}

.all-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #B5833A 100%);
    color: #110D0B;
    font-family: var(--font-serif);
    font-weight: 800;
    font-size: 18px;
    padding: 18px 48px;
    border: 1px solid #FFF8E1;
    box-shadow: 0 8px 24px rgba(213, 161, 83, 0.35);
    text-decoration: none;
    letter-spacing: 0.08em;
    transition: var(--transition);
}

.all-menu-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(213, 161, 83, 0.55);
    background: linear-gradient(135deg, #E8C888 0%, var(--accent-gold) 100%);
}

@media (max-width: 768px) {
    .menu-modal-dialog {
        padding: 36px 20px 24px 20px;
        max-height: 90vh;
    }
    .all-menu-btn {
        width: 100%;
        font-size: 16px;
        padding: 16px 24px;
    }
    .page-top-btn {
        bottom: 75px !important;
        right: 16px !important;
        width: 44px !important;
        height: 44px !important;
    }
    footer {
        padding-bottom: 70px !important;
    }
}

/* ==========================================================================
   SP Fixed Bottom Tel Bar (SP画面下部常駐電話CTAバー)
   ========================================================================== */
.fixed-sp-tel-bar {
    display: none;
}

@media (max-width: 768px) {
    .fixed-sp-tel-bar {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        background: linear-gradient(135deg, #B52A1C 0%, #80180D 100%);
        border-top: 2px solid var(--accent-gold);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.7);
        padding: 10px 16px;
    }

    .sp-tel-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        color: #FFFFFF;
        font-family: var(--font-serif);
        font-weight: 700;
        font-size: 16px;
        letter-spacing: 0.05em;
        text-decoration: none;
    }

    .sp-tel-icon {
        fill: var(--accent-gold);
        flex-shrink: 0;
    }

    .sp-tel-text {
        color: #FFFFFF;
    }
}
