@charset "UTF-8";

/* ====================================
   変数定義（配色・フォント）
   ==================================== */
:root {
    --font-main: "Shippori Mincho", serif;
    --color-bg: #fcfcfc;        /* ほんのり温かい白 */
    --color-text: #111827;      /* 限りなく黒に近い濃紺 */
    --color-accent: #bca168;    /* 落ち着いた金色（高級感） */
    --color-dark: #0f172a;      /* ヘッダー・フッター用濃紺 */
    --bg-menu: #f3f4f6;         /* メニュー背景の薄いグレー */
    --radius-img: 10px;         /* 画像の角丸サイズ */
}

/* ====================================
   リセット & 基本設定
   ==================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 2.0;
    letter-spacing: 0.08em;
    -webkit-font-smoothing: antialiased;
}

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

a:hover {
    opacity: 0.7;
}

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

ul {
    list-style: none;
}

/* ====================================
   共通クラス
   ==================================== */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
}

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

.section-subtitle {
    display: block;
    font-size: 0.85rem;
    color: var(--color-accent);
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: 0.3em;
}

.section-title {
    font-size: 2.0rem;
    margin-bottom: 30px;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.text-body {
    font-size: 1.05rem;
    margin-bottom: 24px;
    color: #6b7280;
    line-height: 2.0;
    text-align: justify; 
    text-justify: inter-ideograph;
}

/* ボタン類 */
.btn-outline {
    display: inline-block;
    padding: 16px 48px;
    border: 1px solid var(--color-text);
    font-size: 1rem;
    margin-top: 32px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--color-text);
    color: #fff;
}

/* ====================================
   ヘッダー
   ==================================== */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.logo-sub {
    font-size: 0.7rem;
    margin-left: 8px;
    color: var(--color-accent);
    letter-spacing: 0.15em;
}

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

.global-nav a {
    font-size: 0.95rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .global-nav { display: none; }
    .header-inner { justify-content: center; }
}

/* ====================================
   ヒーロー（FV）
   ==================================== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: var(--color-dark);
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://images.unsplash.com/photo-1615887023591-615856b652b9?q=80&w=2000&auto=format&fit=crop');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    filter: brightness(0.6);
    z-index: 1;
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row-reverse;
    gap: 60px;
    color: #fff;
}

.hero-name-vertical,
.hero-catch-vertical {
    writing-mode: vertical-rl;
    text-orientation: upright;
}

.hero-name-vertical {
    font-size: 3.5rem;
    letter-spacing: 0.4em;
    border-left: 1px solid rgba(255,255,255,0.4);
    padding-left: 30px;
}

.hero-catch-vertical {
    font-size: 1.4rem;
    letter-spacing: 0.3em;
    line-height: 2.5;
    padding-top: 80px;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    opacity: 0.7;
    z-index: 2;
}
.scroll-down::after {
    content: "";
    display: block;
    width: 1px;
    height: 40px;
    background: #fff;
    margin: 10px auto 0;
}

@media (max-width: 768px) {
    .hero-name-vertical { font-size: 2.5rem; }
    .hero-catch-vertical { font-size: 1.1rem; }
    .hero-content { gap: 30px; }
}

/* ====================================
   コンセプト
   ==================================== */
.concept-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.concept-text-area { flex: 1; }
.concept-image-area { flex: 1; }

.concept-image-area img {
    width: 100%;
    border-radius: var(--radius-img);
    box-shadow: 15px 15px 0 var(--bg-menu);
}

@media (max-width: 768px) {
    .concept-container { flex-direction: column-reverse; gap: 40px; }
}

/* ====================================
   メニュー（タブ切り替え対応）
   ==================================== */
.menu { background-color: var(--bg-menu); }

/* タブボタン */
.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.tab-btn {
    background: transparent;
    border: 1px solid var(--color-text);
    color: var(--color-text);
    padding: 12px 40px;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 500;
    transition: 0.3s;
    min-width: 160px; /* ボタンの幅を揃える */
}
.tab-btn.active, .tab-btn:hover {
    background: var(--color-text);
    color: #fff;
}

/* タブコンテンツ（初期状態はJSで制御） */
.tab-content {
    display: none;
    animation: fadeIn 0.6s ease;
}
.tab-content.active {
    display: block;
}

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

/* --- 写真メニュー --- */
.menu-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}
.menu-card-photo {
    position: relative;
    overflow: hidden;
    height: 300px;
    border-radius: var(--radius-img);
}
.menu-card-photo img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.menu-card-photo:hover img { transform: scale(1.1); }
.menu-card-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 60px 20px 20px;
    color: #fff;
}
.menu-card-title { font-size: 1.4rem; font-weight: bold; margin-bottom: 5px; }
.menu-card-price { color: var(--color-accent); font-size: 1.2rem; font-weight: bold; }

/* --- 文字リスト --- */
.menu-category-title {
    text-align: center;
    font-size: 1.5rem;
    margin: 60px 0 30px;
    color: var(--color-dark);
    position: relative;
    display: inline-block;
    left: 50%; transform: translateX(-50%);
}
.menu-category-title::before,
.menu-category-title::after {
    content: ""; display: inline-block; width: 40px; height: 1px;
    background: var(--color-accent); vertical-align: middle; margin: 0 15px;
}

.menu-text-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
    gap: 20px 80px; 
    margin-bottom: 40px;
}

.menu-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    border-bottom: 1px dotted #ccc; 
    padding-bottom: 5px;
}

.menu-row dt { 
    font-weight: 500; 
    font-size: 1.1rem; 
    background: var(--bg-menu); 
    padding-right: 15px; 
    position: relative; 
    top: 1px;
}

.menu-row dd { 
    font-weight: bold; 
    font-size: 1.1rem; 
    background: var(--bg-menu); 
    padding-left: 15px; 
    position: relative; 
    top: 1px; 
}

@media (max-width: 768px) {
    .menu-text-list { grid-template-columns: 1fr; gap: 20px; } 
    .tab-buttons { gap: 10px; }
    .tab-btn { padding: 10px 20px; font-size: 0.9rem; min-width: auto; flex: 1; }
}

/* ====================================
   店舗情報
   ==================================== */
.info { background: var(--color-dark); color: #fff; }

.section-title-white {
    font-size: 2rem;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 15px;
    display: inline-block;
}

.info-container {
    display: flex;
    gap: 50px;
    align-items: stretch;
}

.info-text { flex: 1; padding-bottom: 10px; }
.info-map { flex: 1; height: auto; min-height: 350px; }
.info-map iframe { width: 100%; height: 100%; border-radius: var(--radius-img); display: block; }

.info-list { width: 100%; }
.info-row {
    display: flex;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 15px 0; 
}
.info-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }

.info-row dt { width: 110px; color: var(--color-accent); font-weight: bold; padding-top: 2px; }
.info-row dd { flex: 1; font-size: 1.05rem; line-height: 1.8; }
.small { font-size: 0.85rem; opacity: 0.7; margin-left: 10px; }

@media (max-width: 500px) {
    .small { display: block; margin-left: 0; margin-top: 4px; }
}
.tel-link { font-size: 1.3rem; letter-spacing: 0.05em; color: #fff; }

@media (max-width: 768px) {
    .info-container { flex-direction: column; }
    .info-map { width: 100%; height: 300px; } 
}

/* ====================================
   フッター
   ==================================== */
.footer {
    background: #000;
    color: #888;
    padding: 60px 0 20px;
    font-size: 0.75rem;
}
.logo-footer {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.2em;
}

/* ====================================
   英語メニュー・価格表示の修正パッチ
   ==================================== */

/* 1. 価格と単位（JPY）を絶対に改行させない設定 */
.menu-row dd {
    white-space: nowrap;  /* これが重要！折り返し禁止 */
    margin-left: 15px;    /* メニュー名との間隔を確保 */
    min-width: 90px;      /* 価格エリアの最低幅を確保 */
    text-align: right;    /* 数字を右揃えにして美しく */
}

/* 2. 「JPY」や「円」の文字サイズを小さくする */
.yen {
    font-size: 0.7em;     /* 元の文字の70%の大きさに縮小 */
    margin-left: 3px;
    font-weight: normal;  /* 太字を解除してスッキリさせる */
}

/* 3. 英語の補足説明（カッコ書き）をスマホで読みやすくする */
.menu-row dt span {
    display: inline-block; /* 改行時の挙動を整える */
    line-height: 1.4;      /* 行間を詰めて間延び防止 */
}

/* スマホ表示の微調整 */
@media (max-width: 768px) {
    .menu-row {
        align-items: flex-start; /* 上揃えにしてレイアウト崩れ防止 */
    }
    .menu-row dt {
        line-height: 1.5;      /* メニュー名が複数行になっても読みやすく */
        padding-right: 5px;    /* 価格との隙間 */
    }
    .menu-row dd {
        font-size: 1rem;       /* スマホでは価格を少し小さくして収まりよく */
    }
}