@charset "UTF-8";

/* フォント定義 */
@font-face {
    font-family: 'Corporate-Mincho';
    src: url('../fonts/Corporate-Mincho-ver3.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.font-corporate {
    font-family: 'Corporate-Mincho', serif;
}

/* 変数定義 */
:root {
    --bg-dark: #3e1701;
    --text-gold: #d4af37;
    --text-white: #F2F2F2;
    --text-brown: #3D2A06;
    --font-main: 'Shippori Mincho', serif;
    --font-corporate: 'Corporate-Mincho', serif;
}

/* 共通設定 */
html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-main) !important;
    font-weight: 500 !important;
    line-height: 2.2;
    letter-spacing: 0.1em;
    -webkit-font-smoothing: antialiased;
    margin: 0;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s, color 0.3s;
}

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-feature-settings: "palt";
}

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

/* カスタムカーソル（PC専用） */
@media screen and (min-width: 1025px) {
    body, a, button, .accordion-bar, summary, .sp-menu-btn, .common-btn, .tel-link {
        cursor: none !important;
    }
    
    .custom-cursor {
        position: fixed;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: rgba(212, 175, 55, 1);
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
    }
    
    .custom-cursor-follower {
        position: fixed;
        width: 30px;
        height: 30px;
        border: 2px solid rgba(212, 175, 55, 0.8);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%, -50%);
    }
}

/* ヘッダー */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 40px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
}

.header .logo img {
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.header.is-on-paper .logo img {
    filter: brightness(0.3);
}

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

.logo {
    width: 200px;
    height: auto;
    margin-left: -100px;
    padding-top: 50px;
}

.header-pc {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-top: 30px;
    gap: 20px;
}

.nav-list {
    display: flex;
    gap: 30px;
    list-style: none;
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    margin: 0;
    padding: 0;
}

.nav-list a,
.header-tel {
    color: var(--text-white);
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
    transition: color 0.3s;
    cursor: pointer;
}

/* PC版グロナビのボックススタイル */
.header-pc .nav-list li a {
    display: inline-block;
    padding: 12px 20px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.header-pc .nav-list li a:hover {
    border-color: rgba(212, 175, 55, 1);
    background-color: rgba(212, 175, 55, 0.1);
}

.nav-list a:hover,
.header-tel:hover {
    color: var(--text-gold);
}

.header-tel {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
}

.header-sp { display: none; }

.header:has(.sp-menu-details[open]) .logo img {
    filter: brightness(100%) !important;
}

/* MV固定 */
.mv-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.mv-bg {
    width: 100%;
    height: 100%;
    position: relative;
}

.mv-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.2);
    z-index: 1;
}

/* 背景ズームアニメーション */
.mv-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: elegantZoom 10s ease-out forwards;
}

@keyframes elegantZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.mv-copy,.news-copy {
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
    z-index: 2;
    font-size: 2.5rem;
    color: var(--text-white);
    text-shadow: 0 0 10px rgba(0,0,0,0.8);
    writing-mode: vertical-rl;
    letter-spacing: 0.3em;
    line-height: 2.0;
    white-space: nowrap;
    transition: opacity 0.8s ease-out, transform 1.2s ease-out;
}

.mv-copy .line-1 {
    display: inline-block;
    padding-bottom: 3em;
}

.mv-copy .line-2 {
    display: inline-block;
    padding-top: 3em;
}

.news-copy .line-1 {
    display: inline-block;
    padding-bottom: 3em;
}

.news-copy .line-2 {
    display: inline-block;
    padding-top: 0.5em;
}

/* 1文字ずつのspan調整 */
.mv-copy .char,
.news-copy .char,
.menu-copy .char {
    display: inline-block;
}

.menu-copy {
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
    z-index: 2;
    font-size: 2.5rem;
    color: var(--text-white);
    text-shadow: 0 0 10px rgba(0,0,0,0.8);
    writing-mode: vertical-rl;
    letter-spacing: 0.3em;
    line-height: 2.0;
    white-space: nowrap;
}

.menu-copy .line-1 {
    display: inline-block;
    padding-bottom: 3em;
}

.menu-copy .line-2 {
    display: inline-block;
    padding-top: 3em;
}

.mv-copy.is-hidden,
.news-copy.is-hidden,
.menu-copy.is-hidden {
    opacity: 0;
    transform: translateY(-80%);
}

.scroll-content {
    position: relative;
    margin-top: 100vh;
    z-index: 10;
    background-color: transparent;
}

/* コピー：右 */
.menu-copy {
    position: absolute;
    top: 50%;
    right: 15%;
    transform: translateY(-50%);
    z-index: 2;
    font-size: 2.5rem;
    color: var(--text-white);
    text-shadow: 0 0 10px rgba(0,0,0,0.8);
    writing-mode: vertical-rl;
    letter-spacing: 0.3em;
    line-height: 2.0;
    white-space: nowrap;
    transition: opacity 0.8s ease-out, transform 1.2s ease-out;
}

.menu-copy .line-1 {
    display: inline-block;
    padding-bottom: 3em;
}

.menu-copy .line-2 {
    display: inline-block;
    padding-top: 3em;
}


/* セクション共通 */
section {
    width: 100%;
}

.wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 100%;
    margin: 0 auto 200px;
    padding: 0 15px;
}


.wrapper.reverse {
    flex-direction: row-reverse;
}

.text-area { 
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 60px;
    box-sizing: border-box;
}

.img-area { 
    flex: 0 0 50%;
    max-width: 50%;
}

.img-area img {
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* テクスチャ */
.paper-bg {
    position: relative;
    width: 100%;
    background-color: rgba(244, 236, 211, 0.7);
    padding: 250px 0;
    color: var(--text-brown);
    z-index: 10;
}

.paper-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/tx.webp');
    background-size: 100% auto; 
    background-position: center top;
    opacity: 0.5;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 1;
}

.paper-bg .wrapper,
.paper-bg .frame-h,
.paper-bg .frame-f,
.paper-bg .sec-ttl,
.paper-bg .lead {
    position: relative;
    z-index: 2;
}

.sec-01 .sec-ttl {
    display: block;
    margin: 0 auto 60px;
    font-size: 2.2rem;
    letter-spacing: 0.15em;
    line-height: 1;
    font-family: var(--font-corporate) !important;
}

.sec-01 .text-area {
    align-self: center;
}

.sec-01 .lead {
    text-align: center;
    text-align-last: center;
    font-size: 1.2rem;
    width: 100%;
    font-family: var(--font-main) !important; 
    line-height: 2.2;
}

@media (max-width: 768px) {
    .sec-01 .wrapper {
        flex-direction: column-reverse;
    }
}

/* Sec-02 */
.sec-02 {
    background-color: rgba(62, 23, 1, 0.9);
    margin-bottom: 0;
    padding: 250px 0;
    position: relative;
    z-index: 5;
}

.sec-02 .wrapper { margin-bottom: 200px; }

.sec-02 .wrapper:last-child { margin-bottom: 0; }

.sec-02 .sec-ttl { color: var(--text-white); }

.sec-02 .text-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sec-02 .lead {
    text-align: center;
    text-align-last: center;
    font-size: 1.2rem;
    margin-bottom: 0;
    font-family: 'Shippori Mincho', serif !important;
}

/* ボタン */
.common-btn {
        position: relative;
        display: inline-block;
        width: 350px;
        margin-top: 50px;
        padding: 12px 60px;
        color: var(--text-gold);
        font-size: 1.1rem;
        letter-spacing: 0.2em;
        text-align: center;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 1px solid var(--text-gold);
        background-color: transparent;
        outline: none;
    }

    .common-btn::before {
        content: '';
        position: absolute;
        top: -6px;
        bottom: -6px;
        left: -6px;
        width: calc(100% + 12px);
        height: calc(100% + 12px);
        border-top: 1px solid var(--text-gold);
        border-bottom: 1px solid var(--text-gold);
        transform: scaleX(0);
        transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .common-btn::after {
        content: '';
        position: absolute;
        top: -6px;
        bottom: -6px;
        left: -6px;
        width: calc(100% + 12px);
        height: calc(100% + 12px);
        border-left: 1px solid var(--text-gold);
        border-right: 1px solid var(--text-gold);
        transform: scaleY(0);
        transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .common-btn:hover {
        color: var(--bg-dark);
        background-color: var(--text-gold);
    }
    
    .common-btn:hover::before {
        transform: scaleX(1);
    }
    .common-btn:hover::after {
        transform: scaleY(1);
    }


/* Sec-03 */
.sec-03 .wrapper.column-wrapper {
    display: block;
    text-align: center;
    max-width: 800px;
    margin-bottom: 0;
    margin-top: 0;
    position: relative;
}

.sec-03 .sec-ttl {
    font-size: 2.5rem;
    margin-bottom: 50px;
    letter-spacing: 0.2em;
    line-height: 1.2;
    color: inherit;
    position: relative;
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.sec-03 .sec-ttl::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: #3D2A06;
    transition: width 1.5s ease-out;
}

.sec-03 .sec-ttl.aos-animate::after {
    width: 100%;
}

/* INFORMATION & NOTES */
.shop-info li {
    border-bottom: 1px solid rgba(120, 90, 60, 0.4);
}

/* アコーディオン見出し（共通） */
.shop-info summary,
.notes-list summary {
    font-family: var(--font-corporate) !important;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    position: relative;
    display: block;
    padding: 18px 40px 18px 0;
    color: var(--text-brown);
    letter-spacing: 0.08em;
}
.shop-info summary::-webkit-details-marker {
    display: none;
}

/* アコ開閉 */
.shop-info summary::after,
.notes-list summary::after {
    content: "\f107";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.shop-info details[open] summary::after,
.notes-list details[open] summary::after {
    transform: translateY(-50%) rotate(180deg);
}

.shop-info details[open] summary::after {
    transform: translateY(-50%) rotate(180deg);
}

/* アコーディオン中身（共通） */
.shop-info p,
.notes-list p {
    font-family: var(--font-main) !important;
    font-size: 1.05rem;
    margin: 12px 0 20px;
    padding-right: 40px;
    color: var(--text-brown);
    line-height: 1.9;
}

ul.shop-info,
ul.notes-list {
    text-align: left;
    display: block;
    width: 100%;
    list-style: none;
    margin-bottom: 50px;
    padding: 0;
}

ul.shop-info li,
ul.notes-list li {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(120, 90, 60, 0.4);
}

.shop-tel {
    display: block;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    position: static;
    margin-top: 100px;
    text-align: right;
}

.tel-link {
    color: inherit;
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.tel-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: #d4af37;;
    transition: width 0.5s ease-out;
}

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

.tel-link:hover::after {
    width: 100%;
}

.frame-h, .frame-f {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    opacity: 0.8;
}

.frame-h { margin-bottom: 60px; }

.frame-f { margin-top: 60px; }




/* Menu Page Styles */

/* menuーmv */
.menu-mv {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}
.menu-mv .mv-bg {
    width: 100%;
    height: 100%;
}
.menu-mv .mv-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Sec-04: */
.sec-04 {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding-top: 250px;
    padding-bottom: 250px;
    overflow: visible;
}

.intro-block {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 180px;
}

.intro-block:last-child {
    margin-bottom: 0;
}

.intro-ttl {
    font-family: var(--font-corporate) !important;
    font-size: 2.5rem;
    letter-spacing: 0.2em;
    color: var(--text-gold);
    position: relative;
    display: table;
    margin-left: auto;
    line-height: 1.2;
    margin-right: auto;
    margin-bottom: 50px;
    padding-bottom: 15px;
}

.intro-ttl::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: var(--text-gold);
    transition: width 1.5s ease-out;
}

.intro-ttl:hover::after {
    width: 100%;
}

.intro-ttl.aos-animate::after {
    width: 100%;
}

.intro-content {
    position: relative;
    width: 100%;
}


/* スライダー */
.intro-slider-wrapper {
    width: 100%;
    margin-left: auto;
    margin-right: 0;
    position: relative;
    z-index: 1;
}

.intro-block.reverse .intro-slider-wrapper {
    margin-left: 0;
    margin-right: auto;
}

.intro-slider img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: bottom;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* スライダーフェード */
.intro-slider .swiper-slide {
    position: relative;
    overflow: hidden;
}

.intro-slider .swiper-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.8s ease-out;
}

.intro-slider .swiper-slide-active::before {
    transform: scaleX(1);
}


/* テキストボックス */
.intro-text-box {
    position: absolute;
    bottom: -150px; 
    left: -160px;
    width: 380px;
    height: 520px; 
    background-color: rgba(139, 105, 50, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 35px;
    box-sizing: border-box;
    z-index: 5;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Reverse時ボックス */
.intro-block.reverse .intro-text-box {
    left: auto;
    right: -160px;
}

/* テキストスタイル詳細 */
.intro-desc {
    font-family: var(--font-main);
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.intro-menu-list {
    margin-bottom: 30px;
    font-family: var(--font-main);
}

.intro-menu-list dt {
    font-family: var(--font-corporate);
    font-size: 1.2rem;
    font-weight: 500;
    padding-left: 15px;
    position: relative;
    display: block;
    margin-bottom: 8px;
    text-align: left;
    letter-spacing: 0.12em;
}

.intro-menu-list dt::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 1.1rem;
    background-color: var(--text-white);
}

.intro-menu-list dd {
    font-family: var(--font-main);
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 18px;
    margin-left: 0;
    text-align: left;
    opacity: 0.85;
}

.intro-note {
    font-family: var(--font-main);
    font-size: 0.8rem;
    line-height: 1.8;
    margin-top: 3px;
}



/* Sec-05: */
.sec-05 {
    position: relative;
    padding: 0 0 250px;
    background-color: transparent;
    overflow: clip;
}

.sec-05::before {
    display: none;
}


/* 背景写真 */
.sec05-bg {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    margin-bottom: -100vh;
    background-color: rgba(244, 236, 211, 0.8);
}

.sec05-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.1;
    display: block;
}

/* テクスチャオーバーレイ */
.sec-05::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/tx.webp');
    background-size: 400px auto;
    background-repeat: no-repeat;
    opacity: 0.6;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 1;
}

.sec05-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/tx.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.38;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 1;
}

.sec-05 .wrapper,
.sec-05 .menu-accordion,
.sec-05 .sec-ttl {
    position: relative;
    z-index: 2;
}

/* 見出し（MENU） */
.sec-05 .sec-ttl {
    font-family: var(--font-corporate) !important;
    font-size: 2.5rem;
    letter-spacing: 0.2em;
    color: var(--text-brown);
    position: relative;
    display: table;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 150px;
    padding-top: 250px;
    padding-bottom: 15px;
    line-height: 1.2;
}

.sec-05 > .sec-ttl::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: var(--text-brown);
    transition: width 1.5s ease-out;
}

.sec-ttl:hover::after {
    width: 100%;
}

.sec-ttl.aos-animate::after {
    width: 100%;
}

.sec-content {
    position: relative;
    width: 100%;
}

.sec-05 .text-area .sec-ttl {
    display: block;
    margin: 0 auto 60px;
    font-size: 2.2rem;
    letter-spacing: 0.15em;
    line-height: 1;
    font-family: var(--font-corporate) !important;
    position: relative;
    color: #3D2A06;
}

.sec-05 .lead {
    text-align: center;
    text-align-last: center;
    font-size: 1.5rem;
    width: 100%;
    font-family: var(--font-main) !important; 
    line-height: 2.2;
    margin: 0;
    color: #3D2A06;
}

/* --- アコーディオン --- */
.menu-accordion {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 200px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
    box-sizing: border-box;
}

.menu-accordion:last-of-type {
    margin-bottom: 0;
}

.accordion-bar {
    background-color: #3e1701;
    color: #F2F2F2;
    padding: 5px 30px;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.3s;
    font-family: var(--font-corporate);
}

.accordion-bar:hover {
    opacity: 0.8;
}

.accordion-bar i {
    transition: transform 0.3s;
}

.accordion-bar.is-open i {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 50px;
    border-top: none;
}

.sec-05 .menu-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
}

.menu-items li {
    border-bottom: 2px dashed rgba(62, 23, 1, 0.3);
    padding: 12px 0;
    margin-bottom: 5px;
    font-size: 1.5rem;
    color: #3D2A06;
    display: flex;
    justify-content: space-between;
    font-family: var(--font-corporate);
}

.menu-more {
    text-align: right;
    font-size: 1.5rem;
    margin-top: 20px;
    letter-spacing: 0.1em;
}





/* News Page Styles */
/* news-mv */
.news-mv {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

/* Sec-06: */
.sec-06 {
    background-color: var(--bg-dark);
    padding: 100px 0;
    color: var(--text-white);
}

.sec-06 .sec-ttl {
    font-size: 2.5rem;
    letter-spacing: 0.2em;
    color: var(--text-gold);
    position: relative;
    display: table;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    padding-bottom: 15px;
    line-height: 1.2;
    }
    
    .sec-06 .sec-ttl::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: var(--text-gold);
    transition: width 1.5s ease-out;
    }
    
    .sec-06 .sec-ttl:hover::after {
    width: 100%;
    }
    
    .sec-06 .sec-ttl.aos-animate::after {
    width: 100%;
    }
    
    .sec-06 .sec-ttl.intro-content {
    position: relative;
    width: 100%;
    }

.sec-06 .wrapper.reverse {
    flex-direction: row-reverse;
}

.sec-06 .cocktail-name {
    text-align: center;
    display: block;
    font-size: 2.2rem;
    color: var(--text-gold);
    margin-bottom: 30px;
}

.sec-06 .lead {
    text-align: center;
    text-align-last: center;
    font-size: 1.2rem;
    width: 100%;
    font-family: var(--font-main) !important; 
    line-height: 2.2;
    margin: 0;
    color: var(--text-white);
}



/* Sec-07 */
.sec-07 {
    position: relative;
    padding: 0 0 250px;
    background-color: transparent;
    overflow: clip;
}

/* 背景画像 */
.sec-07 .sec07-bg {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    margin-bottom: -100vh;
    background-color: rgba(244, 236, 211, 1.5);
}

.sec-07 .sec07-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.15;
    display: block;
}

.sec-07 .sec07-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/tx.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.2;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 1;
}

.sec-07 .wrapper,
.sec-07 .frame-h,
.sec-07 .frame-f,
.sec-07 .sec-ttl {
    position: relative;
    z-index: 2;
}

/* 見出し */
.sec-07 .sec-ttl {
    font-size: 2.5rem;
    margin-bottom: 60px;
    letter-spacing: 0.2em;
    line-height: 1.2;
    color: inherit;
    position: relative;
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.sec-07 .sec-ttl::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: #3D2A06;
    transition: width 1.5s ease-out;
}

.sec-07 .sec-ttl:hover::after,
.sec-07 .sec-ttl.aos-animate::after {
    width: 100%;
}

/* フレーム */
.sec-07 .frame-h {
    margin-top: 150px;
    margin-bottom: 60px;
}

.sec-07 .frame-f {
    margin-top: 150px;
}

.sec-07 .content-block {
    margin-bottom: 100px;
    text-align: center;
}

.sec-07 .wrapper.column-wrapper {
    display: block;
    max-width: 800px;
    margin: 0 auto 150px;
    position: relative;
    text-align: left;
}

/* 休業日リスト */
.holiday-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: left;
}

.holiday-list li {
    font-family: var(--font-corporate) !important;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 2.2;
    margin-bottom: 15px;
    color: var(--text-brown);
    border-bottom: 1px solid rgba(120, 90, 60, 0.4);
    padding-bottom: 10px;
}



/* フッター */
.footer {
    background-color: #3e1701;
    margin-top: -60px;
    padding: 140px 0 40px; 
    text-align: center;
    position: relative;
    z-index: 20;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 60px;
    font-size: 2rem;
    letter-spacing: 0.15rem;
}

.footer-nav a {
    color: var(--text-white);
    transition: color 0.3s;
}

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

.footer-logo img {
    width: 160px;
    margin-bottom: 40px;
}

.copyright {
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}


/* Loading */
.loading {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background-color: #3e1701; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading.is-hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

/* --- Whiskey  --- */
.whiskey-loader {
    position: relative;
    width: 100px;
    height: 100px;
}

/* 氷のアニメーション */
.whiskey-loader::before,
.whiskey-loader::after {
    content: '';
    position: absolute;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    width: 20px;
    height: 20px;
    top: 60px;
    left: 50px;
    will-change: transform;
    z-index: -1;
    animation: cube-float 2s linear infinite;
}

.whiskey-loader::after {
    top: 50px;
    left: 32px;
    transform: rotate(30deg);
    animation-name: cube-float--alt;
    animation-duration: 3s;
}

/* SVG本体の設定 */
.whiskey-loader svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* 氷のアニメーションキーフレーム */
@keyframes cube-float {
    0% {
        animation-timing-function: ease-in;
        transform: none;
    }
    25% {
        transform: rotate(-5deg) translate3d(-1px, 2px, 0);
    }
    50% {
        animation-timing-function: ease-in-out;
        transform: rotate(0deg) translate3d(-1px, 6px, 0);
    }
    80% {
        transform: rotate(5deg) translate3d(0, 2px, 0);
    }
    100% {
        animation-timing-function: ease-in;
        transform: none;
    }
}

@keyframes cube-float--alt {
    50% {
        animation-timing-function: ease;
        transform: rotate(20deg) translate3d(-2px, -4px, 0);
    }
}

/* テキスト */
.loading-text {
    font-family: var(--font-corporate);
    font-size: 1.8rem;
    letter-spacing: 0.3em;

    color: transparent;

    background-image:
        linear-gradient(
            120deg,
            transparent 0%,
            rgba(255,255,255,0.9) 48%,
            rgba(255,255,255,0.9) 52%,
            transparent 60%
        ),
        linear-gradient(
            90deg,
            #a8893f 0%,
            #d6c27a 50%,
            #a8893f 100%
        );

    background-size:
        200% 100%,   /* ハイライト用 */
        100% 100%;   /* ベース固定 */

    background-position:
        -100% center,
        center;

    -webkit-background-clip: text;
    background-clip: text;

    animation: goldHighlight 3.2s ease-in-out infinite;
}


@keyframes goldHighlight {
    0% {
        background-position:
            -100% center,
            center;
    }
    80% {
        background-position:
            200% center,
            center;
    }
    100% {
        background-position:
            200% center,
            center;
    }
}

@keyframes textFloat {
    0% {
        opacity: 0;
        transform: translateY(6px);
    }
    30% {
        opacity: 1;
        transform: translateY(0);
    }
    70% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-4px);
    }
}

@keyframes textBlink {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}




/* sp版 */
@media (max-width: 768px) {
    .mv-fixed {
        height: 100vh;
        height: 100dvh; 
    }

    .scroll-content {
        margin-top: 100vh;
        margin-top: 100dvh;
    }
    
    /* 共通レイアウト調整 */
    .wrapper, 
    .wrapper.reverse,
    .sec-01 .wrapper, 
    .sec-01 .wrapper.reverse,
    .sec-02 .wrapper, 
    .sec-02 .wrapper.reverse,
    .sec-05 .wrapper,
    .sec-05 .wrapper.reverse {
        flex-direction: column !important;
        gap: 30px;
        margin-bottom: 60px;
        padding: 0 20px;
    }

    .img-area {
        order: -1;
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .text-area {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        padding: 0;
        order: 0;
    }

    .lead {
        font-size: 0.9rem !important;
        text-align: center !important;
        line-height: 2.0;
    }

    /* ローディング調整 */
        .whiskey-loader {
            width: 80px;
            height: 80px;
        }

        .whiskey-loader::before,
        .whiskey-loader::after {
            width: 16px;
            height: 16px;
            top: 40px;
            left: 42px;
        }

        .whiskey-loader::after {
            top: 46px;
            left: 28px;
        }

    .loading-text {
        font-size: 1.2rem;
        letter-spacing: 0.2em;
    }

    /* --- ヘッダー・ハンバーガーメニュー --- */
    .header {
        padding: 15px 20px;
    }

    .logo {
        width: 100px;
        margin-left: 0;
        position: relative;
        z-index: 2000;
    }

    .header-pc {
        display: none;
    }

    .header-sp {
        display: block;
    }

    .sp-menu-details {
        position: static;
    }

    .sp-menu-btn {
        display: block;
        width: 30px;
        height: 24px;
        position: relative;
        cursor: pointer;
        list-style: none;
        margin-top: 5px;
        z-index: 2000;
    }

    .sp-menu-btn::-webkit-details-marker {
        display: none;
    }

    .bar {
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: var(--text-white);
        transition: all 0.3s;
        left: 0;
    }

    .bar:nth-child(1) { top: 0; }
    .bar:nth-child(2) { top: 50%; transform: translateY(-50%); }
    .bar:nth-child(3) { bottom: 0; }

    .header.is-on-paper .bar {
        background-color: var(--text-brown);
    }

    .sp-menu-details[open] .bar:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
        background-color: var(--text-white);
    }

    .sp-menu-details[open] .bar:nth-child(2) {
        opacity: 0;
    }

    .sp-menu-details[open] .bar:nth-child(3) {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
        background-color: var(--text-white);
    }

    .sp-menu-content {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--bg-dark);
        z-index: 1500;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }
    
    /* ぼかしオーバーレイ */
    .sp-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(5px);
        z-index: 1400;
        pointer-events: auto;
    }

    .sp-nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
    }

    .sp-nav-list li {
        margin-bottom: 30px;
    }

    .sp-nav-list a {
        color: var(--text-white);
        text-decoration: none;
        display: block;
        font-size: 1.4rem;
        letter-spacing: 0.2em;
        transition: color 0.3s;
    }

    .sp-nav-list a:hover {
        color: var(--text-gold);
    }

    /* --- メインビジュアル --- */
   /* MV/Menu/News コピー SP共通設定 */
    .menu-mv,
    .news-mv {
        height: 70vh;
        min-height: 70vh;
    }

    .mv-copy,
    .menu-copy,
    .news-copy {
        font-size: 1.5rem;
        line-height: 1.6;
        letter-spacing: 0.3em;
        
        top: 50%;
        left: 50%;
        right: auto !important;
        bottom: auto;
        transform: translate(-50%, -50%);
    }

    .mv-copy .line-1,
    .menu-copy .line-1,
    .news-copy .line-1 {
        padding-bottom: 1.5em;
    }
    .mv-copy .line-2,
    .menu-copy .line-2,
    .news-copy .line-2 {
        padding-top: 1.5em;
    }

    .mv-copy.is-hidden,
    .menu-copy.is-hidden,
    .news-copy.is-hidden {
        opacity: 0;
        transform: translate(-50%, -80%); 
    }

    .paper-bg {
        padding-bottom: 60px;
    }

    .sec-01 .sec-ttl,
    .sec-05 .sec-ttl,
    .sec-05 .text-area .sec-ttl {
        font-size: 1.6rem;
        padding-top: 30px;
        margin-bottom: 30px;
        line-height: 1.4;
    }

    .sec-05 > .sec-ttl {
        padding-top: 60px;
    }

    /* Sec-01 */
    .sec-01 {
        padding: 80px 0;
    }

    /* Sec-02 */
    .sec-02 {
        padding: 70px 0;
    }

    /* ボタン */
    .common-btn {
        width: 260px;
        padding: 12px 0;
        margin-top: 30px;
        font-size: 1rem;
    }

    /* Sec-03 */
    .sec-03 {
        padding: 80px 0;
    }

    .frame-h { margin-bottom: 30px; }
    .frame-f { margin-top: 30px; }
    .sec-03 .sec-ttl {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    ul.shop-info {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .shop-info p {
        font-size: 0.7rem; 
        padding-right: 0;
    }

    .shop-tel {
        margin-top: 0;
        margin-bottom: 30px;
        font-size: 1.2rem;
        text-align: center;
    }

/* Sec-03 & Sec-07 アコーディオン共通 */
    .shop-info summary,
    .notes-list summary {
        font-size: 1.1rem;
    }

    .shop-info p,
    .notes-list p {
        font-size: 0.9rem;
    }

    /* Sec-04 */
    .sec-04 { 
        padding: 60px 0 100px;
    }

    .intro-ttl {
        font-size: 1.6rem;
    }
    .intro-block { 
        margin-bottom: 80px; 
    }
    .intro-slider-wrapper {
        width: 100%; 
        margin: 80px auto; 
    }
    .intro-block.reverse .intro-slider-wrapper {
        margin: 80px auto; 
    }

    .intro-text-box {
        position: static;
        width: 100%;
        margin-top: 25px;
        z-index: 10;
        padding: 30px 20px;
    }

    .intro-block.reverse .intro-text-box {
        margin-top: 25px;
    }

    /* Sec-05: */
    .sec-05 {
        padding: 0 0 60px !important; 
    }

    .menu-accordion {
        margin-bottom: 60px;
    }
    .accordion-content {
        padding: 30px 20px;
    }
    .accordion-bar {
        padding: 10px 20px;
        font-size: 1.2rem;
    }
    .sec-05 .menu-items {
        grid-template-columns: 1fr;
        column-gap: 0;
    }
    .sec-05 .menu-items li {
        font-size: 0.95rem;
    }
    .menu-more {
        font-size: 0.85rem;
    }

    /* Sec-06: */
    .sec-06 {
        padding: 80px 0 0; 
    }

    .sec-06 .img-area img {
        width: 85%;
        margin: 0 auto;
    }

    /* 見出し調整 */
    .sec-06 .sec-ttl {
        font-size: 1.6rem;
        margin-bottom: 40px;
        line-height: 1.3;
    }

    .sec-06 .cocktail-name {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .sec-06 .wrapper,
    .sec-06 .wrapper.reverse {
        gap: 20px;
        margin-bottom: 80px;
    }

    .sec-06 .wrapper:last-child,
    .sec-06 .wrapper.reverse:last-child {
        margin-bottom: 0;
        padding-bottom: 80px;
    }

    /* Sec-07 */
    .notes-list summary {
        font-size: 1.0rem;
        padding: 15px 30px 15px 0;
    }

    .sec-07 .sec-ttl {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .sec-07 .wrapper.column-wrapper {
        margin-bottom: 80px;
    }

    .sec-07 .frame-h {
        margin-top: 60px;
        margin-bottom: 60px;
    }
    
    .sec-07 .frame-f {
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .notes-list p {
        font-size: 0.85rem;
        margin: 10px 0 15px;
        line-height: 1.8;
    }

    .holiday-list li {
        font-size: 0.85rem;
    }

    /* フッター */
    .footer {
        padding-top: 80px;
        margin-top: -30px;
    }

    .footer-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
        font-size: 1.3rem;
        margin-bottom: 50px;
    }

    .footer-logo img {
        width: 100px;
    }
}

/* Swiper トランジション調整 */
.intro-slider .swiper-wrapper {
    transition-timing-function: linear !important;
}

.intro-slider .swiper-slide {
    transition-timing-function: linear !important;
}

/* ========================================
   白背景用ボタンスタイル
   ======================================== */

/* 白背景用ボタン - .common-btn と同じデザインで色だけ変更 */
.btn-white-bg {
    position: relative;
    display: inline-block;
    width: 350px;
    margin-top: 50px;
    padding: 12px 60px;
    color: #6b4423; /* 濃い茶色(白背景用) */
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #6b4423; /* 濃い茶色(白背景用) */
    background-color: transparent;
    outline: none;
}

.btn-white-bg::before {
    content: '';
    position: absolute;
    top: -6px;
    bottom: -6px;
    left: -6px;
    width: calc(100% + 12px);
    height: calc(100% + 12px);
    border-top: 1px solid #6b4423; /* 濃い茶色(白背景用) */
    border-bottom: 1px solid #6b4423; /* 濃い茶色(白背景用) */
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-white-bg::after {
    content: '';
    position: absolute;
    top: -6px;
    bottom: -6px;
    left: -6px;
    width: calc(100% + 12px);
    height: calc(100% + 12px);
    border-left: 1px solid #6b4423; /* 濃い茶色(白背景用) */
    border-right: 1px solid #6b4423; /* 濃い茶色(白背景用) */
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-white-bg:hover {
    color: #fff; /* 白文字 */
    background-color: #6b4423; /* 濃い茶色背景(白背景用) */
}

.btn-white-bg:hover::before {
    transform: scaleX(1);
}

.btn-white-bg:hover::after {
    transform: scaleY(1);
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .btn-white-bg {
        width: 100%;
        max-width: 280px;
        padding: 10px 40px;
        font-size: 1rem;
    }
}