@charset "UTF-8";

:root {
    /* --- カラーパレットの変更 --- */
    --bg-base: #EFECE4;       /* 変更：温かみのあるヴィンテージサンドベージュ */
    --accent-gold: #B08D57;   /* 変更：深みのあるアンティークゴールド */
    --text-main: #3B322C;     /* 変更：黒に近い、深いセピアブラウン */
    --text-sub: #8C7E72;      /* 変更：モカブラウン（ウォームグレー） */
    
    --font-mincho: 'Shippori Mincho', serif;
    --font-en: 'Playfair Display', serif;
}
html {
    scroll-behavior: smooth; /* スルスルと動くアニメーション */
    scroll-padding-top: 50px; /* 全てのアンカーリンクに共通の余白を設定 */
}

* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    background-color: var(--bg-base);
    color: var(--text-main);
    line-height: 2;
    overflow-x: hidden;
}

/* 背景ノイズテクスチャ（不透明度を少し上げて質感を強調） */
.bg-texture {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
}

.font-mincho { font-family: var(--font-mincho); }
.en-italic { font-family: var(--font-en); font-style: italic; color: var(--accent-gold); }

/* Header */
header {
    padding: 20px 30px; /* 余白を調整 */
    position: fixed;    /* 画面上部に固定 */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    background: rgba(239, 236, 228, 0.9); /* 背景色を透過させて馴染ませる */
    transition: background 0.3s; /* 背景が消えるときのアニメーション */
}
.is-open header {
    background: var(--bg-base);
    border-bottom: none;
}
.header-inner {
    display: flex;
    justify-content: space-between; /* ロゴ左、ボタン右 */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.header-logo { text-align: left; } /* ロゴを左揃えに */

/* --- ハンバーガーボタンのデザイン --- */
.nav-trigger {
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
    z-index: 1200;
}

.nav-trigger .bar {
    width: 28px;
    height: 1px;
    background-color: var(--text-main);
    position: absolute;
    left: 6px;
    transition: all 0.4s cubic-bezier(0.45, 0, 0.55, 1);
}

.nav-trigger .bar:nth-child(1) { top: 16px; }
.nav-trigger .bar:nth-child(2) { top: 24px; }

/* ✕アニメーション */
.is-open .nav-trigger .bar:nth-child(1) { 
  top: 20px;
  transform: rotate(45deg); 
  background-color: var(--accent-gold); 
}
.is-open .nav-trigger .bar:nth-child(2) { 
  top: 20px;
  transform: rotate(-45deg); 
  background-color: var(--accent-gold); 
}

/* --- フルスクリーンメニュー本体 --- */
.full-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh; /* 動的ビューポート（iPhoneのバー対策） */
    z-index: 1050;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    padding: 20px; /* 外側の余白（額縁の余白） */
    display: flex;
    background-color: var(--bg-base);
    box-sizing: border-box;
    /* 親要素のスクロールは禁止し、内側の枠だけを動かす */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex-direction: column;
    align-items: center;
}

.menu-inner {
    width: 100%;
    border: 1px solid var(--accent-gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    
    
    margin: auto 0;
    padding: 100px 0 calc(60px + env(safe-area-inset-bottom));
    
}

.full-menu::before {
    display: none;
}

/* メニューが開いた時 */
.is-open .full-menu {
    visibility: visible;
    opacity: 1;
}

.menu-list {
    list-style: none;
    padding: 0;
    text-align: center;
}

.menu-list li {
    margin: 20px 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    opacity: 0;
}

.is-open .menu-list li {
    transform: translateY(0);
    opacity: 1;
}

.menu-list a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 1.2rem;
    letter-spacing: 0.35em;
    display: block;
    transition: color 0.3s;
}
.menu-list a:hover {
    color: var(--accent-gold);
}

.menu-list a span {
    display: block;
    font-size: 0.6rem;
    color: var(--text-sub);
    margin-top: 8px;
    letter-spacing: 0.2em;
    opacity: 0.7;
}

.menu-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-base);
    z-index: -1;
}
.brand-logo { font-size: 0.9rem; letter-spacing: 0.5em; font-weight: 700; margin: 0; }
.sub-logo { font-size: 0.6rem; letter-spacing: 0.3em; color: var(--text-sub); margin-top: 5px; }

@supports (padding: env(safe-area-inset-bottom)) {
    .full-menu {
        /* 外側のパディングもセーフエリアを考慮 */
        padding-bottom: calc(20px + env(safe-area-inset-bottom));
    }
}

/* Hero */
/* --- Hero Section (写真一枚スタイル) --- */
.hero {
    position: relative;
    width: 100%;
    height: 100dvh; /* スマホで見た時に程よい高さ */
    overflow: hidden;
    margin-top: 0; /* 固定ヘッダー分の余白 */
}
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 左から右へ、または全体に薄く黒を乗せる */
    background: linear-gradient(
        to right, 
        rgba(0, 0, 0, 0.4) 0%,   /* 文字がある左側は少し濃いめ */
        rgba(0, 0, 0, 0.2) 50%,  /* 中央は薄く */
        rgba(0, 0, 0, 0.1) 100%  /* 右側はほぼ透明に */
    );
    z-index: 1;
}


/* 写真のコンテナ */
.hero-image-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

/* 写真にフィルターをかけて「大人ハワイ」の空気感を出す */
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* セピアをかけつつ、文字が読みやすいように少し暗くする */
    filter: /*sepia(30%)*/ brightness(85%) contrast(105%);
    transform: scale(1.1); /* 少しだけ拡大してリッチに見せる */
}

/* 写真の上に載せるテキスト */
.hero-text {
    position: absolute;
    bottom: 15%;
    left: 30px;
    z-index: 5;
    color: var(--bg-base); 
    text-shadow: 0 2px 10px rgba(59, 50, 44, 0.8);
    max-width: 85%; 
    z-index: 2;
}
.hero-title, .hero-desc {
    /* 影というより「ぼんやりとした暗がり」を背負わせる */
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.3), 
                 0 0 5px rgba(0, 0, 0, 0.1);
}

/* 各パーツも即座に表示 */
.hero-title, .hero-desc, .en-italic {
    opacity: 1 !important;
    transform: none !important;
}

/* 見出しのスタイル */
.hero-title {
    font-size: 1.2rem;
    line-height: 1.8;
    letter-spacing: 0.1em;
    margin: 15px 0 25px;
}

/* 説明文のスタイル */
.hero-desc {
    font-size: 0.85rem;
    line-height: 2;
    letter-spacing: 0.15em;
    opacity: 0.9; /* 少しだけ透けさせて馴染ませる */
}

/* --- Heroの英字アクセント（Revealアニメーション専用設定） --- */
/* --- Time for Yourself. ブロック・リビール（決定版） --- */
.hero-text .en-italic {
    position: relative;
    display: inline-block;
    font-family: var(--font-en);
    font-style: italic;
    
    /* 1. 最初は文字の色を「透明」にしておく（道連れを防ぐ） */
    color: transparent;
    font-size: 1.2rem;
    margin-bottom: 10px;
    
    /* 2. 0.6秒後（帯が文字を隠した瞬間）に、文字の色をゴールドに変える */
    animation: revealTextColor 0s forwards 0.6s !important;
}

/* 3. 金色の帯（カーテン）の設定 */
.hero-text .en-italic::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0; /* 最初は幅ゼロ */
    background-color: #D4B886;
    z-index: 2;
    
    /* 4. 帯が「伸びて→移動して→消える」アニメーション */
    /* 0.1秒待ってから、1.2秒かけて実行 */
    animation: revealBlock 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.1s forwards !important;
}

/* --- アニメーションの定義 --- */

/* 帯の動き：左から伸びて、右へ抜ける */
@keyframes revealBlock {
    0% {
        width: 0;
        left: 0;
    }
    50% {
        width: 100%;
        left: 0;
    }
    100% {
        width: 0;
        left: 100%;
    }
}

/* 文字の色を透明からゴールドに変える */
@keyframes revealTextColor {
    to {
        color: #D4B886;
    }
}


/*  セクション共通  */
/* --- 共通パーツ：セクションタイトルラベル --- */
.section-label {
    font-size: 0.85rem;        /* かなり小さく */
    letter-spacing: 0.4em;    /* 字間を広く */
    color: var(--text-sub);   /* 薄いブラウン */
    text-transform: uppercase; /* 強制的に大文字 */
    text-align: center;       /* 中央寄せ */
    margin-bottom: 5px !important;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px; /* 文字とドットの距離 */
}
.section-label::before,
.section-label::after {
    content: "";
    height: 5px; /* ドットの高さに合わせる */
    display: block;
    flex: 0 1 60px; /* 線の長さを最大60pxに制限 */
}

/* 左側の装飾：[直線] + [・] */
.section-label::before {
    background: 
        radial-gradient(circle at right, var(--text-sub) 2px, transparent 2px) no-repeat right center / 10px 100%, /* 点 */
        linear-gradient(to right, transparent, var(--text-sub)) no-repeat left center / calc(100% - 15px) 1px;   /* 線 */
}

/* 右側の装飾：[・] + [直線] */
.section-label::after {
    background: 
        radial-gradient(circle at left, var(--text-sub) 2px, transparent 2px) no-repeat left center / 10px 100%,  /* 点 */
        linear-gradient(to left, transparent, var(--text-sub)) no-repeat right center / calc(100% - 15px) 1px;  /* 線 */
}

/* 補助的なカタカナ表記 */
.section-subtitle {
    text-align: center;
    font-size: 0.7rem; /* かなり小さめに */
    color: var(--text-sub);
    letter-spacing: 0.2em;
    opacity: 0.7; /* 少し透かして背景に馴染ませる */
    margin-top: 0;         /* 上の余白を消す */
    margin-bottom: 60px;
}

/* --- Menu Section 専用の余白調整 --- */
.menu-section {
    padding: 100px 0;
    background-color: var(--bg-base);
}

.menu-section .section-label {
    margin-bottom: 60px; /* タブとの間隔 */
}



/* --- Philosophy 全体のレイアウト調整 --- */
.philosophy {
    padding: 100px 0;
    background-color: var(--bg-base);
    text-align: center;
}

/* 2. 中の写真（パララックス効果） */
.philosophy-window {
    width: 100%;
    height: 60vh;      /* 窓の高さ */
    margin: 50px 0;
    overflow: hidden;  /* 窓からはみ出た写真は隠す */
    position: relative;
}
.philosophy-inner {
    width: 100%;
    position: relative;
}

.window-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%; /* 窓より高くして、動く余白を作る */
    z-index: 1;
}

.window-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(30%) brightness(50%) contrast(100%);
}

/* 縦書き：白色 */
.vertical-text {
    writing-mode: vertical-rl;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60vh;
    transform: translate(-50%, -50%);
    font-family: var(--font-mincho);
    font-size: 1.2rem;
    letter-spacing: 0.5em;
    color: #FFFFFF;
    line-height: 2.5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    z-index: 10;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    pointer-events: none;
}

.philosophy-body {
    padding: 0 30px;
    font-size: 0.8rem;
    color: var(--text-sub);
    line-height: 2.5;
    text-align: center;
}

.yohaku-highlight {
    color: var(--accent-gold);
    font-weight: 600;
}

.philosophy-body {
    font-size: 0.8rem;
    color: var(--text-sub);
    line-height: 2.5;
    letter-spacing: 0.15em;
    text-align: center;
}




/* Marquee Gallery */
.gallery {
    padding: 60px 0;
    background-color: #b1a88c;
    overflow: hidden;
}

/* マーキーの外枠 */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    display: flex;
    margin-bottom: 0;
    white-space: nowrap; /* 改行を絶対に許さない */
    background-color: var(--bg-base);
}

/* --- 1列目：上のボーダー --- */
.marquee-wrapper:nth-of-type(1) {
    border-top: 2px solid var(--bg-base); /* 上に白い細線 */
}

/* --- 2列目：下のボーダー --- */
.marquee-wrapper:nth-of-type(2) {
    border-bottom: 2px solid var(--bg-base); /* 下に白い細線 */
}

/* 流れるトラック */
.marquee-track {
    display: flex;
    gap: 0; /* 写真同士をピッタリくっつける */

    width: max-content; /* 中身の幅を正確に計算させる */
    flex-wrap: nowrap;
    will-change: transform;
}

/* 写真のサイズを一律に */
.marquee-track img {
    width: 200px;   /* 横幅を一律に */
    height: 140px;  /* 高さを一律に */
    object-fit: cover;
    flex-shrink: 0; /* 縮まないように固定 */
    display: block;     /* 下に数ピクセルの隙間が出るのを防ぐ */
    margin: 0;
    padding: 0;
    transition: transform 0.5s ease;
}

/* アニメーションの設定 */
.track-left {
    /* 左に流れる（通常） */
    animation: scroll-left 30s linear infinite;
}

.track-right {
    /* 右に流れる */
    animation: scroll-right 30s linear infinite;
}

/* スピード調整：20sを15sにするとさらに早くなります */

@keyframes scroll-left {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); } /* 半分まで行ったらリセット */
}

@keyframes scroll-right {
    0% { transform: translate3d(-50%, 0, 0); }
    100% { transform: translate3d(0, 0, 0); }
}


/* --- Menu Section --- */
.menu-section {
    padding: 80px 0;
    background-color: var(--bg-base); /* Philosophyと同じ背景色 */
    color: #ffffff;
}
/*.menu-section .section-subtitle {
    margin-bottom: 60px; /* タブとの間の余白 */
/*}*/

/* タブボタン */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.tab-btn {
    background: none;
    border: none;
    font-family: var(--font-en);
    font-size: 0.9rem;
    color: var(--text-sub);
    cursor: pointer;
    letter-spacing: 0.2em;
    padding-bottom: 5px;
    border-bottom: 1px solid transparent;
    transition: all 0.4s;
}

.tab-btn.active {
    color: var(--accent-gold); /* ゴールドをアクセントに */
    border-bottom: 1px solid var(--accent-gold);
}

/* --- 2x3 グリッド：スマホでも固定 --- */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 常に横2列 */
    gap: 40px 15px; /* 縦の余白を多めに */
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

.menu-item {
    display: flex;
    flex-direction: column;
    background: #ffffff;      /* カードの背景色 */
    padding: 9px;            /* カード内の余白 */
    border: 1px solid rgba(184, 150, 87, 0.1); /* 極薄いゴールドの枠線 */
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);   /* 目立たない程度の影 */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.menu-item-img {
    width: 100%;
    aspect-ratio: 16 / 10; /* 正方形で統一 */
    overflow: hidden;
    margin-bottom: 10px;
}

.menu-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(10%); /* 雰囲気を合わせる */
    transition: transform 0.6s ease;
}

.menu-item:hover .menu-item-img img {
    transform: scale(1.05);
}

.menu-info {
    text-align: left;
}

.menu-info .price {
    display: block;
    font-family: var(--font-en);
    font-size: 0.85rem;
    color: var(--accent-gold);
    margin-bottom: 4px;
}

.menu-info h3 {
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 5px;
    letter-spacing: 0.02em;
}

.menu-info p {
    font-size: 0.7rem;
    color: var(--text-sub);
    line-height: 1.3;
    margin-top: 5px;
    display: block;
}

/* 表示切り替え */
.menu-content { display: none; }
.menu-content.active { display: block; animation: menuFade 0.6s forwards; }

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

/* スマホでの微調整（1列にせず、文字サイズを調整して2列を守る） */
@media (max-width: 480px) {
    .menu-grid { 
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 35px 12px; 
    }
    .menu-info h3 { 
      font-size: 0.85rem; 
      line-height: 1.3;
    }
    .menu-info .price {
        font-size: 0.8rem;
    }
    .menu-info p { 
      font-size: 0.65rem; 
      line-height: 1.4;
      display: block; 
    } 
    .menu-tabs { 
      gap: 15px; 
    }
}

/* --- Menu Footer Area --- */
.menu-footer {
    margin-top: 80px; /* メニューグリッドとの間のゆったりとした余白 */
    text-align: center;
}

/* 枠線のみの洗練されたボタン */
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 45px;
    border: 1px solid var(--accent-gold); /* ゴールドの細い枠線 */
    color: var(--text-main);
    text-decoration: none;
    font-family: var(--font-en);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    transition: all 0.4s ease;
    background-color: transparent; /* デスクトップは透明 */

    position: relative;
    overflow: hidden;
}
/* PC版のホバー演出 */
@media (min-width: 769px) {
    .btn-outline:hover {
        color: #FFFFFF;
        background-color: var(--accent-gold);
        box-shadow: 0 10px 20px rgba(184, 150, 87, 0.2);
    }
}

/* ホバー時の演出：背景が薄くゴールドに染まる */
.btn-outline:hover {
    color: #FFFFFF;
    background-color: var(--accent-gold);
    box-shadow: 0 10px 20px rgba(184, 150, 87, 0.2);
}

.btn-icon {
    display: flex;
    align-items: center;
    opacity: 0.7;
}

.icon-sm {
    width: 16px;
    height: 16px;
}

/* ボタン下の注釈 */
.menu-note {
    margin-top: 20px;
    font-size: 0.65rem;
    color: var(--text-sub);
    letter-spacing: 0.05em;
    opacity: 0.8;
}

/* スマホでのボタン調整 */
@media (max-width: 768px) {
    .btn-outline {
        background-color: var(--accent-gold); /* 最初からゴールド */
        color: #FFFFFF;                       /* 文字は白 */
        width: 85%;                           /* 押しやすく幅を広げる */
        justify-content: center;
        padding: 16px 20px;
        box-shadow: 0 5px 15px rgba(184, 150, 87, 0.2); /* 軽い影で立体感を */
        border: none;
    }

    .btn-icon {
        opacity: 1; /* アイコンもしっかり見せる */
    }

    /* タッチした瞬間に少しだけ暗くして「押した感」を出す */
    .btn-outline:active {
        transform: scale(0.98);
        filter: brightness(0.9);
    }
}


/* --- News Section --- */
.news-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.news-container {
    max-width: 900px; /* Menuグリッドと幅を合わせると統一感が出ます */
    margin: 60px auto 0;
    padding: 0 20px;
}

.news-list {
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
}

.news-item {
    border-bottom: 1px solid #f0f0f0; /* 非常に薄い線 */
    transition: background-color 0.3s ease;
}

.news-item:hover {
    background-color: #fafafa; /* ホバー時にわずかに色を変える */
}

.news-item a {
    display: flex;
    align-items: center;
    padding: 25px 15px;
    text-decoration: none;
    color: var(--text-main);
    gap: 40px;
}

/* 日付とカテゴリの塊 */
.news-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 180px; /* 位置を揃える */
}

.news-date {
    font-family: var(--font-en);
    font-size: 0.85rem;
    color: var(--text-sub);
}

.news-category {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    text-transform: uppercase;
}

.news-title {
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
    transition: transform 0.3s ease;
}

/* ホバー時の動き：全体が少し浮き、タイトルの色がゴールドに */
.news-item:hover {
    background-color: rgba(184, 150, 87, 0.03);
}

.news-item:hover .news-title {
    color: var(--accent-gold);
    transform: translateX(5px);
}

/* --- スマホ対応：日付とタイトルを縦並びにする --- */
@media (max-width: 768px) {
    .news-item a {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 20px 10px;
    }
    
    .news-meta {
        min-width: auto;
    }

    .news-title {
        font-size: 0.9rem;
    }
}

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


/* --- Instagram Section --- */
.instagram-section {
    padding: 100px 0;
    background-color: var(--bg-base);
    text-align: center;
}

.instagram-intro {
    margin-bottom: 40px;
    font-size: 0.9rem;
    color: var(--text-main);
    letter-spacing: 0.1em;
}

.instagram-intro {
    margin-bottom: 60px; /* 窓との間に少し余白を広げる */
}

.instagram-intro p {
    font-size: 0.9rem;       /* 少し小さく */
    color: var(--text-sub);  /* 柔らかいブラウン */
    letter-spacing: 0.2em;   /* 他のセクションと合わせた広い字間 */
    line-height: 2;          /* 行間をゆったり */
    font-weight: 400;
}

/* パララックス窓 */
.instagram-window {
    position: relative;
    width: 100%;
    height: 65vh;
    margin: 0;
    clip-path: inset(0); 
    display: flex;
    align-items: center;
    justify-content: center;
}
#instaBg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* 重なり順：後ろ */
}

/* 背景写真：黒いフィルター（明るさを50%に落とす） */
#instaBg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(45%); /* 少し暗めにしてアイコンを際立たせる */
}
.insta-link {
    position: relative; /* z-indexを有効にするため */
    z-index: 10;        /* 重なり順：前 */
    text-decoration: none;
}

/* 中央のロゴエリア */
.insta-logo-wrapper {
  position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: #FFFFFF; /* 子要素のSVGのfill="currentColor"に効きます */
}

/* 案1：波紋（パルス）アニメーション */
.pulse-ring {
    position: absolute;
    top: 40px; /* アイコンの中心位置 */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    z-index: -1;
    animation: insta-pulsing 3s ease-out infinite;
}

/* 2つ目のリングで時間差をつけて、より有機的な動きに */
.pulse-ring.delay {
    animation-delay: 1.5s;
}

@keyframes insta-pulsing {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(2.2); opacity: 0; }
}

/* 案3：アイコン本体の制御 */
.insta-svg {
    width: 80px;
    height: 80px;
    color: #FFFFFF; /* 基本は白 */
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.insta-id {
    font-family: var(--font-en);
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    transition: color 0.4s ease;
}

/* ホバー演出：ロゴだけフワッと大きく */
.insta-link {
    text-decoration: none;
}

.insta-link:hover .insta-svg,
.insta-link:active .insta-svg {
    transform: scale(1.1);
}

.insta-link:hover .insta-id,
.insta-link:active .insta-id {
    color: var(--accent-gold);
}



/* --- Access Section --- */
.access-section {
    /* 下のパディングを 0 から 100px に変更して余白を作る */
    padding: 100px 0 100px; 
    background-color: var(--bg-base);
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

/* --- Access Details --- */
.access-details {
    margin: 40px auto 80px;
    color: var(--text-main);
    text-align: center;
}

.access-info-inner {
    display: inline-block; /* 中身の幅に合わせて中央に配置 */
    text-align: left;      /* 中の行は左寄せ */
    margin-top: 20px;
}

.info-row {
    margin-bottom: 12px;
    display: flex;         /* 横並びにする */
    align-items: baseline; /* 文字の底辺を揃える */
}

/* 住所 */
.address {
    font-size: 1rem;
    letter-spacing: 0.15em;
    margin-bottom: 30px;
    font-weight: 400;
}

/* ラベル共通（TEL, OPEN, CLOSEDなど） */
.access-details .label {
    width: 80px;
    font-family: var(--font-en);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--accent-gold); /* ゴールドをアクセントに */
    flex-shrink: 0;
}

/* 右側の内容 */
.access-details .value {
    font-size: 0.95rem;
    letter-spacing: 0.1em;
}

/* 数値・英字用 */
.number, .time {
    font-family: var(--font-en);
}

.time small {
    font-size: 0.7rem;
    margin-left: 8px;
    opacity: 0.8;
}

.day {
    font-size: 0.9rem;
}

/* --- Map (横幅いっぱい) --- */
.map-container {
    width: 100%;
    height: 450px;
    filter: grayscale(30%) contrast(90%); /* サイトのトーンに馴染ませる */
}

@media (max-width: 768px) {
    .map-container {
        height: 350px; /* スマホでは高さを少し抑える */
    }
}



/* --- Recruit Section (構造変更版) --- */
.recruit-section {
    /* Accessセクションから続く通常の背景 */
    background-color: var(--bg-base);
    padding-top: 100px; /* 上の余白 */
    /* 下の余白は窓自体が持つので不要 */
}

/* 新しい「写真の窓」エリア */
.recruit-window {
    position: relative;
    width: 100%;
    height: 60vh; /* 窓の高さ */
    min-height: 450px;
    margin-top: 60px; /* タイトルとの距離 */
    overflow: hidden;
    /* ここに固定背景の魔法をかけます */
    clip-path: inset(0); 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff; /* このエリア内は白文字 */
}

/* 固定背景画像（設定は前回と同じ） */
.recruit-bg {
    position: fixed; /* 画面に対して固定 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.recruit-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(40%); /* 暗くして白文字を強調 */
}

/* 前面のコンテンツ */
.recruit-content {
    position: relative;
    z-index: 10;
    padding: 0 30px;
    max-width: 800px;
}

/* メッセージのスタイル（前回と同じ） */
.recruit-message {
    font-size: 0.9rem;
    line-height: 1.2;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.sub-message {
    font-size: 0.95rem;
    margin-top: 20px;
    opacity: 0.85;
}

/* 白いボタンのスタイル（前回と同じ） */
.btn-white {
    border-color: #ffffff;
    color: #ffffff;
}

.btn-white:hover {
    background-color: #ffffff;
    color: var(--text-main);
}
.btn-white .btn-icon { color: #ffffff; }
.btn-white:hover .btn-icon { color: var(--text-main); }

/* スマホ用調整 */
@media (max-width: 768px) {
    .recruit-window {
        height: 50vh;
        min-height: 400px;
    }
    .recruit-message {
        font-size: 1.1rem;
    }
}



/* --- Footer --- */
.footer {
    background-color: #221a15; /* 深いチャコールブラウン */
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column; /* スマホでは縦並び */
    gap: 50px;
}

/* 店舗情報エリア */
.footer-brand {
    text-align: center;
}

.footer-logo {
    color: #ffffff;
    font-size: 1.3rem;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    
}

.footer-address {
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-sns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-sns a {
    color: #ffffff;
    transition: opacity 0.3s;
}

.footer-sns a:hover {
    opacity: 0.6;
}

/* ナビゲーションエリア */
.footer-nav {
    display: flex;
    justify-content: center;
}

.nav-title {
    font-family: var(--font-en);
    font-size: 0.8rem;
    color: var(--accent-gold);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr; /* スマホでも2列でコンパクトに */
    gap: 15px 40px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    font-family: var(--font-en);
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #ffffff;
}

/* コピーライト */
.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    opacity: 0.5;
}

/* PC用レイアウト */
@media (min-width: 768px) {
    .footer-container {
        flex-direction: row; /* 横並び */
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-brand {
        text-align: left;
    }

    .footer-sns {
        justify-content: flex-start;
    }

    .nav-title {
        text-align: left;
    }

    .footer-nav ul {
        grid-template-columns: 1fr 1fr; /* 2列維持、または必要なら1列に */
    }
}

/* Floating Buttons */
.floating-actions {
    position: fixed; bottom: 20px; right: 20px; display: flex; flex-direction: column; gap: 10px; z-index: 99;
}
.float-btn {
    width: 50px; height: 50px; background: var(--accent-gold); color: var(--bg-base); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(59, 50, 44, 0.4); transition: transform 0.2s;
}
.float-btn:active { transform: scale(0.95); }




@media (min-width: 1024px) {
    /* --- 1. Header (PC) --- */
    header {
        padding: 30px 60px; /* PCでは少し広めに */
    }
    .brand-logo {
        font-size: 1.1rem; /* ロゴを少し強調 */
    }

    /* --- 2. Hero Section (PC) --- */
    .hero {
        height: 100vh; /* PCではより没入感を出すために高く */
        margin-top: 0; /* PCではヘッダーの下に潜り込ませてOK */
    }
    .hero-text {
        left: 10%; /* 端から少し離して優雅に */
        top: 50%;
    }
    .hero-title {
        font-size: 2.4rem; /* PCならではの大胆なサイズ */
        line-height: 1.6;
        letter-spacing: 0.15em;
        margin: 20px 0 30px;
    }
    .hero-desc {
        font-size: 1.1rem;
        letter-spacing: 0.2em;
        max-width: 600px; /* 横に広がりすぎないように制限 */
    }
    .hero-text .en-italic {
        font-size: 1.6rem;
    }
    .hero-img {
        object-position: center; /* または 50% 40% などで調整可能 */
    }

    /* 共通 */
    /* --- セクションタイトル：ラベル（英語） --- */
    .section-label {
        font-size: 1.1rem;      /* 0.85remからアップ */
        letter-spacing: 0.5em; /* 字間をさらに広げて優雅に */
        gap: 25px;             /* 文字と装飾ラインの距離を調整 */
        margin-bottom: 10px !important;
    }

    .section-label::before,
    .section-label::after {
        flex: 0 1 80px;        /* 装飾ラインを少し長くして、文字の大きさとバランスを取る */
    }

    /* --- セクションタイトル：サブタイトル（日本語） --- */
    .section-subtitle {
        font-size: 0.9rem;     /* 0.7remからアップ */
        letter-spacing: 0.3em;
        margin-bottom: 80px;   /* 下のコンテンツとの距離をしっかり取る */
    }

    /* --- 3. Philosophy Section (PC) --- */
    .philosophy {
        padding: 150px 0;
        overflow: hidden; /* はみ出しをカットして安全を確保 */
    }

    .philosophy-inner {
        display: flex;
        align-items: center; /* 画像とテキスト群の上下中央を揃える */
        justify-content: flex-start; /* 左端から開始 */
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;
    }

    /* 左側の画像：画面の40%を占有 */
    .philosophy-window {
        flex: 0 0 40vw;
        height: 80vh;
        margin: 0 !important;
    }
    .window-bg img {
        /* スマホ版の sepia(30%) brightness(50%) をリセット */
        filter: brightness(100%) contrast(105%) saturate(110%) blur(1px);  
        /* 105%〜110%くらいにすると、未加工より「パキッ」と鮮やかに見えます */
        
        transition: filter 0.5s ease; /* 画面幅を変えた時に滑らかに変化させる場合 */
    }

    /* 右側のテキストグループ：ここが配置の要 */
    .philosophy-text-group {
        flex: 1;
        display: flex;
        flex-direction: row;
        align-items: center; /* 縦書きと横書きの上下中央を揃える */
        
        /* 画像(40vw) + 余白(10vw) = 50vw。
           これで縦書きの開始位置が「画面のど真ん中」になります */
        padding-left: 10vw; 
        padding-right: 40px;
        gap: 60px; /* 縦書きと横書きの距離 */
    }

    /* 縦書き：スマホの 100% 設定をここで解除する */
    .vertical-text {
        position: static !important;
        transform: none !important;
        writing-mode: vertical-rl;
        
        /* 【重要】スマホ版のサイズ指定を解除して、文字の分だけの幅にする */
        width: auto !important;
        height: auto !important;
        display: block !important; /* flexからblockに戻して安定させる */
        
        color: var(--text-main);
        font-size: 1.8rem;
        letter-spacing: 0.6em;
        line-height: 2;
        flex-shrink: 0; /* 画像に押されても潰れないように固定 */
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* 横書き：本文 */
    .philosophy-body {
        text-align: left !important;
        max-width: 420px;
        min-width: 300px; /* 縦長になりすぎないようにガード */
        line-height: 2.8;
        font-size: 1rem;
        color: var(--text-sub);
        margin: 0 !important;
        padding: 0 !important; /* スマホ版の左右パディングをリセット */
        flex-shrink: 1; /* 画面が狭くなったら柔軟に対応 */
        opacity: 1 !important;
        visibility: visible !important;
    }

    .gallery {
        padding: 100px 0;
    }

    .marquee-track img {
        width: 250px;  /* PCでは元の大きさに戻す */
        height: 180px;
    }

    .menu-section {
        padding: 150px 0;
    }

    /* 2列から 4列 に組み替え：一覧性を高める */
    .menu-grid {
        grid-template-columns: repeat(4, 1fr); 
        gap: 50px 25px; /* PCではアイテム間の余白を広げ、ゆとりを持たせる */
        max-width: 1200px;
        padding: 0 40px;
    }

    .menu-item {
        padding: 12px; /* 少しだけカードをリッチに */
    }

    .menu-info h3 {
        font-size: 1.1rem; /* 文字を少し大きく */
        margin-bottom: 8px;
    }

    .menu-info p {
        font-size: 0.8rem; /* 説明文も読みやすく調整 */
        line-height: 1.6;
    }

    /* タブボタンの間隔を広げる */
    .menu-tabs {
        gap: 60px;
        margin-bottom: 80px;
    }

    .tab-btn {
        font-size: 1.1rem;
    }

    /* --- 2. News Section (PC) --- */
    .news-section {
        padding: 150px 0;
    }

    .news-container {
        max-width: 1000px; /* PCでの読みやすさを考慮した幅 */
    }

    .news-item a {
        padding: 35px 20px; /* PCでは1行をゆったりと */
        gap: 60px; /* 日付・カテゴリとタイトルの距離を離す */
    }

    .news-meta {
        min-width: 220px; /* 日付とカテゴリの位置をビシッと揃える */
    }

    .news-date {
        font-size: 1rem;
    }

    .news-title {
        font-size: 1.1rem; /* ニュースタイトルを強調 */
    }

    .instagram-section {
        padding: 150px 0;
    }
    .instagram-intro p {
        font-size: 1.1rem; /* 文字を少し大きくして読みやすく */
    }
    .instagram-window {
        height: 75vh; /* 窓をより大きくして、没入感を高める */
    }
    .insta-svg {
        width: 100px; /* アイコンをPCサイズにスケールアップ */
        height: 100px;
    }
    .insta-id {
        font-size: 1.4rem;
    }

    /* --- Access Section (PC) --- */
    .access-section {
        padding: 150px 0 100px; /* 下にゆとりを持たせる */
    }

    /* 住所・詳細情報のエリア：幅を絞って中央寄せ */
    .access-details {
        max-width: 700px; /* テキストが読みやすい幅に制限 */
        margin: 60px auto 80px; /* 左右をautoにして中央固定 */
    }

    .address {
        font-size: 1.4rem;
        margin-bottom: 50px;
        line-height: 1.6;
    }

    .access-info-inner {
        margin-top: 40px;
        /* 行間のゆとりを維持 */
    }

    /* 地図のエリア：画面の端まで広げず、程よいサイズで中央に置く */
    .map-container {
        width: 90%;      /* 画面幅の90%までに抑える */
        max-width: 1000px; /* どれだけ大きなモニターでも1000pxで止める */
        height: 500px;   /* 高さを少し抑えてバランスを調整 */
        margin: 0 auto;  /* 左右中央寄せ */
        
        /* 画面端から浮いた分、少しシャドウを入れると質感が上がります */
        box-shadow: 0 30px 50px rgba(59, 50, 44, 0.08);
        border-radius: 5px; /* わずかに角を落として柔らかく */
    }




    /* --- 3. Recruit Section (PC) --- */
    .recruit-section {
        padding-top: 150px;
    }
    .recruit-window {
        height: 70vh; /* 採用への期待感を高める大きな写真窓 */
        margin-top: 80px;
    }
    .recruit-message {
        font-size: 2.2rem; /* PCで見映えする大きなメッセージ */
        line-height: 1.6;
        margin-bottom: 60px;
    }
    .sub-message {
        font-size: 1.1rem;
        margin-top: 30px;
    }

    /* --- 4. Footer (PC) --- */
    .footer {
        padding: 120px 0 60px;
    }
    .footer-container {
        max-width: 1200px;
        flex-direction: row; /* すでに設定済みですが、改めて位置を保証 */
        justify-content: space-between;
    }
    .footer-logo {
        font-size: 1.6rem;
    }
    .footer-address {
        font-size: 0.95rem;
    }
    .nav-title {
        font-size: 0.9rem;
    }
    .footer-nav a {
        font-size: 1rem;
    }
}