/* --- 全体のスタイル --- */
@charset "UTF-8";

/* --- フォント定義 --- */
@font-face {
    font-family: 'Ocean Sans MT W04 Bold Cond';
    src: url('./fonts/Ocean Sans MT W04 Bold Cond.woff2') format('woff2'),
         url('./fonts/Ocean Sans MT W04 Bold Cond.woff') format('woff'),
         url('./fonts/Ocean Sans MT W04 Bold Cond.ttf') format('truetype');
}
@import url('https://fonts.googleapis.com/css2?family=Yuji+Syuku&display=swap');

/* --- 基本スタイル --- */
body {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: bold;
    margin: 0;
    padding-top: 70px; /* ヘッダーの高さ分 */
    box-sizing: border-box;
    color: #333;
    background-color: #f9f8f6;
    line-height: 1.8;
}
body[lang="ko"] {
    font-family: 'Noto Sans KR', sans-serif;
}

/* --- スプラッシュスクリーン --- */
#splash-screen {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: #f9f8f6;
    display: flex; justify-content: center; align-items: center;
    z-index: 9999;
    transition: opacity 1s ease-out, visibility 1s ease-out;
}
#splash-screen.hidden { opacity: 0; visibility: hidden; }
#splash-screen img { width: 300px; max-width: 80%; animation: fadeInLogo 1.5s ease-in-out forwards; }
@keyframes fadeInLogo {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* --- ヘッダー --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: rgba(247, 247, 247, 0.8); /* 少し透明度を調整 */
    backdrop-filter: blur(5px); /* 背景をぼかす */
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    max-width: 1200px; /* 最大幅を設定 */
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
}


.logo {
    flex-shrink: 0;
}

.logo img {
    height: 50px;
    display: block; /* 画像下の余白を消す */
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

#desktop-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

#desktop-nav li a {
    font-family: 'Ocean Sans MT W04 Bold Cond', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 1px;
    text-decoration: none;
    color: #333;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s;
}
#desktop-nav li a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0;
    height: 2px;
    background: #c54841;
    transition: width 0.3s;
}

#desktop-nav li a:hover,
#desktop-nav li a.active {
    color: #c54841;
}

#desktop-nav li a:hover::after,
#desktop-nav li a.active::after {
    width: 100%;
}

.language-switcher {
    display: flex;
    gap: 5px;
}
.language-switcher button {
    font-family: 'Ocean Sans MT W04 Bold Cond', sans-serif;
    font-weight: bold; letter-spacing: 0.5px;
    background-color: transparent; border: 1px solid #ccc;
    padding: 5px 10px; cursor: pointer; border-radius: 5px;
    font-size: 1rem; color: #555;
    transition: all 0.3s; white-space: nowrap;
}
.language-switcher button:hover { background-color: #f0f0f0; }
.language-switcher button.active { background-color: #c54841; color: #fff; border-color: #c54841; }


    /* --- フッター --- */
footer {
    background-color: #333; /* 背景色をダークグレーに設定 */
    color: #f0f0f0;           /* テキストの色を明るいグレーに設定 */
    padding: 25px 15px;      /* 上下の余白を確保 */
    text-align: center;      /* テキストを中央揃え */
}

footer p {
    margin: 0;               /* pタグが持つデフォルトの余白をリセット */
    font-size: 0.85rem;      /* 文字サイズを少し小さくする */
    font-weight: bold;     /* 文字の太さを通常に */
}


/* --- フローティングアクションボタン (FAB) --- */
.mobile-fab-container {
    display: none; /* PCでは非表示 */
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
}
.fab-toggle-btn {
    width: 60px; height: 60px;
    background-color: #c54841;
    border: none; border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    display: flex; justify-content: center; align-items: center;
    position: relative; z-index: 2;
    transition: transform 0.3s ease;
}
.fab-toggle-btn:hover { transform: scale(1.1); }
.fab-toggle-btn span {
    display: block; width: 24px; height: 3px;
    background-color: white; border-radius: 3px;
    position: absolute;
    transition: all 0.3s ease-in-out;
}
.fab-toggle-btn span:nth-child(1) { transform: translateY(-5px); }
.fab-toggle-btn span:nth-child(2) { transform: translateY(5px); }
.fab-toggle-btn.active span:nth-child(1) { transform: translateY(0) rotate(45deg); }
.fab-toggle-btn.active span:nth-child(2) { transform: translateY(0) rotate(-45deg); }
.fab-menu {
    list-style: none; padding: 0; margin: 0;
    position: absolute; bottom: 75px; right: 0;
    opacity: 0; visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}
.fab-menu.active {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.fab-menu li a {
    display: block; padding: 10px 25px; margin-bottom: 10px;
    background-color: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 20px; text-decoration: none; color: #333;
    font-family: 'Ocean Sans MT W04 Bold Cond', sans-serif;
    font-weight: bold; white-space: nowrap;
}

/* --- コンテンツ共通 --- */
.page-container, .content-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 20px;
}
.page-title {
    font-family: 'Ocean Sans MT W04 Bold Cond', sans-serif;
    letter-spacing: 1.5px;
    text-align: center;
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 50px;
}
.content-section {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.content-section.visible {
    opacity: 1;
    transform: translateY(0);
}
.content-section h2 {
    font-family: 'Ocean Sans MT W04 Bold Cond', sans-serif;
    letter-spacing: 1.5px;
    font-weight: 600;
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 40px;
    position: relative;
}
.content-section h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #c54841;
    margin: 8px auto 0;
}
.concept-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}
.concept-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 300px;
    height: 1px;
    background-color: #c54841;
}

/* --- ヒーローセクション --- */
/* --- ヒーローセクション --- */
/* ヒーローセクションの基本設定 */
#hero {
    position: relative; /* 子要素(absolute)の基準点になります */
    overflow: hidden;   /* はみ出したスープ画像を隠します */
    /* ビューポートの高さに合わせるなど、サイトのデザインに応じて高さを指定してください */
    height: 85vh; 
    min-height: 600px;
}
/* モバイルでのみ表示するヒーローロゴ */
.hero-logo-mobile {
    display: none;
}

/* 背景画像のスタイル */
.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1; /* ★ 修正: 重なり順を一番下に */
}

/* 半透明の黒いフィルター */
#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2; /* ★ 修正: 背景画像の上に */
}

/* キャッチコピー(.hero-content)が手前に来るように z-index を設定 */
.hero-content {
    position: relative; 
    z-index: 3;       /* スープの器(z-index: 2)より大きい値を設定します */
    /* 中央に配置するためのスタイル（既存のものを想定） */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}


/* 前景コンテンツ（タイトルロゴやボタン）のスタイル */
.hero-content,
#topping-selector {
    position: relative;
    z-index: 3; /* ★ 修正: 全てのコンテンツが一番手前に来るように */
}

/* --- ヒーローセクションのタイトル画像 --- */
.hero-title-image {
    width: 800px; /* 元の1000pxから小さく調整 */
    max-width: 60%; /* 元の80%から小さく調整 */
    height: auto;
    /* transform: translateY(-90px); */ /* 必要であれば調整または削除 */
    opacity: 0; /* 最初は非表示 */
    animation: fadeInOut 6s ease-in-out forwards; /* 新しいアニメーションを適用 */
}

/* 「出てきて消える」アニメーションの定義 */
@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateY(20px); /* 少し下から登場 */
    }
    20% {
        opacity: 1; /* フェードイン完了 */
        transform: translateY(0); /* 定位置へ */
    }
    80% {
        opacity: 1; /* しばらく表示を維持 */
        transform: translateY(0);
    }
    100% {
        opacity: 0; /* フェードアウト完了 */
        transform: translateY(-20px); /* 少し上に消える */
    }
}

/* --- トッピング選択ボタン --- */
#topping-selector {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 12px; /* ボタン間の余白を少し詰める */
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 15px; /* 内側の余白を少し詰める */
    border-radius: 10px;
}

#topping-selector h4 {
    font-family: 'Ocean Sans MT W04 Bold Cond', sans-serif;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    font-size: 1rem; /* 文字サイズを少し小さく */
    margin: 0 0 10px 0;
    text-align: center;
}

.topping-btn {
    font-family: 'Ocean Sans MT W04 Bold Cond', sans-serif;
    background-color: #fff;
    border: 1px solid #c54841;
    color: #c54841;
    padding: 6px 14px; /* ボタンの余白を詰めて小さく */
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.8rem; /* 文字サイズを小さく */
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.topping-btn:hover { background-color: #c54841; color: #fff; transform: scale(1.05); }
#reset-btn {
    font-family: sans-serif;
    background-color: #f0f0f0; border: 1px solid #aaa;
    color: #333; padding: 8px 15px; border-radius: 20px; cursor: pointer;
    font-size: 0.9rem; margin-top: 10px; transition: all 0.3s ease;
}
#reset-btn:hover { background-color: #e0e0e0; border-color: #888; }
/* スープの器(#soup-bowl)の位置を少し下に調整 */
/* スープの器(#soup-bowl)の位置とスケーリングを修正 */
/* --- スープの器 --- */
/* スープの器 */
#soup-bowl {
    position: absolute;
    /* ★修正点: 幅を小さくして全体が収まるように調整 */
    width: 70%; /* もとの150%から100%に変更 */
    max-width: 700px; /* 最大幅も小さめに設定 */
    bottom: -10%; /* ← 数値を0に近づけると上がります */
    left: 50%;
    transform: translateX(-50%);
    /* ★修正点: ボウルの底上げ位置を調整 */
    z-index: 2; /* オーバーレイと同じ階層 */
    pointer-events: none;
}



/* --- 落下するトッピングのスタイル --- */
.topping {
    position: absolute;
    height: auto;
    z-index: 10;
    /* アニメーションを指定 */
    animation-name: fall-to-bowl;
    animation-duration: 1.2s;
    animation-timing-function: cubic-bezier(0.4, 0, 0.8, 1);
    animation-fill-mode: forwards; /* 終了時の位置を維持 */
}

/* 落下アニメーションの定義 */
@keyframes fall-to-bowl {
    from {
        opacity: 1;
    }
    to {
        transform: var(--end-transform);
        opacity: 1; /* ★★★ ここが必ず 1 になっていることを確認 ★★★ */
    }
}

/* --- 着地して溜まったトッピングのスタイル --- */
.settled-topping {
    position: absolute;
    z-index: 2;
}



/* --- ギャラリーセクション --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}
.gallery-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

/* --- メニューティッカーセクション --- */
.image-ticker {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}
.image-ticker-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: ticker-scroll 30s linear infinite;
}
.image-ticker:hover .image-ticker-track { animation-play-state: paused; }
.image-ticker-track img {
    height: 220px;
    width: auto;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    filter: drop-shadow(5px 10px 10px rgba(0,0,0,0.15));
}
.image-ticker-track img:hover { transform: scale(1.1); }
@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- ニュースセクション (index.html) --- */
.news-list {
    margin-top: 50px;
    text-align: left;
}
.news-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
}
.news-item.is-visible { opacity: 1; transform: translateX(0); }
.news-item time {
    flex-shrink: 0;
    background-color: #c54841;
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    height: fit-content;
    margin-top: 5px;
}
.news-item .news-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    width: 100%;
}
.news-item:hover .news-content {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.news-item h3 { margin: 0 0 10px 0; font-size: 1.3rem; color: #c54841; }
.news-item p { margin: 0; line-height: 1.7; color: #555; font-size: 0.9rem; }
.more-news-btn {
    display: inline-block;
    text-decoration: none;
    background-color: #fff;
    border: 2px solid #c54841;
    color: #c54841;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}
.more-news-btn:hover { background-color: #c54841; color: #fff; }

/* --- アクセスセクション (index.html) --- */
.map-container {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ---ここから各ページの記述 --- */

/* ★★★　ニュースページ ★★★ */
.news-archive { text-align: left; }
.news-archive-item {
    display: flex;
    align-items: flex-start;
    padding: 2rem 0;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.news-archive-item:hover { background-color: #fffafa; }
.news-archive-item:last-child { border-bottom: none; }
.news-archive-item time {
    flex-shrink: 0;
    width: 120px;
    font-size: 1rem;
    color: #555;
    padding-top: 5px;
}
.news-archive-content h3 { font-size: 1.3rem; margin: 0 0 10px 0; color: #c54841; }
.news-archive-content p { font-size: 0.95rem; line-height: 1.8; margin: 0; }

.pagination { display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 40px; }
.page-btn {
    font-family: 'Ocean Sans MT W04 Bold Cond', sans-serif;
    font-weight: bold; background-color: #fff; border: 1px solid #ddd; color: #555;
    padding: 8px 15px; border-radius: 5px; cursor: pointer; transition: all 0.3s ease;
}
.page-btn:hover { background-color: #f0f0f0; border-color: #ccc; }
.page-btn.active { background-color: #c54841; color: #fff; border-color: #c54841; }
.page-btn:disabled { opacity: 0.5; cursor: not-allowed; }

#news-modal.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.7); display: flex;
    justify-content: center; align-items: center; z-index: 10001;
    opacity: 1; visibility: visible; transition: opacity 0.3s ease, visibility 0.3s ease;
}
#news-modal.modal-overlay.hidden { opacity: 0; visibility: hidden; }
#news-modal .modal-content {
    position: relative; background-color: #f9f8f6; padding: 30px; border-radius: 10px;
    width: 90%; max-width: 600px; text-align: left;
    transform: scale(1); transition: transform 0.3s ease;
}
#news-modal.modal-overlay.hidden .modal-content { transform: scale(0.95); }
#news-modal .modal-meta { font-size: 0.9rem; color: #888; margin-bottom: 10px; }
#news-modal h3 { font-size: 1.8rem; margin: 0 0 15px 0; color: #c54841; }
#news-modal p { font-size: 1rem; line-height: 1.8; margin: 0; }
.close-btn {
    position: absolute; top: 10px; right: 15px; font-size: 2rem;
    color: #888; background: none; border: none; cursor: pointer;
    transition: color 0.3s;
}
.close-btn:hover { color: #333; }


/* ★★★　注文方法ページ ★★★ */
.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 30px auto 0;
    max-width: 400px;
}
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.order-steps-list { margin-top: 50px; text-align: left; }
.order-step-item { display: flex; gap: 20px; padding: 2rem 0; border-bottom: 1px solid #eee; }
.order-step-item:last-child { border-bottom: none; }
.order-step-visual { flex-shrink: 0; }
.step-number {
    font-family: 'Ocean Sans MT W04 Bold Cond', sans-serif;
    background-color: #c54841; color: white;
    padding: 5px 15px; border-radius: 20px;
    font-size: 1.1rem;
}
.order-step-text h3 { font-size: 1.5rem; margin: 0 0 10px 0; }
.order-step-text p { font-size: 0.95rem; line-height: 1.8; margin: 0; }

.delivery-intro { text-align: center; max-width: 600px; margin: 0 auto 50px; }
.delivery-intro p { font-size: 1rem; color: #555; }
.delivery-services { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 25px; }
.delivery-service-card {
    background-color: #fff; border: 1px solid #eee; border-radius: 12px;
    padding: 2rem; box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex; flex-direction: column; align-items: center;
    text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.delivery-service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.delivery-service-card img { height: 50px; width: auto; margin-bottom: 1.5rem; }
.delivery-service-card h3 { font-size: 1.5rem; margin: 0 0 1rem 0; color: #333; }
.delivery-service-card .button {
    display: inline-block; width: 100%; text-decoration: none; color: #fff;
    font-weight: bold; padding: 12px; border-radius: 8px; transition: opacity 0.3s ease;
}
.delivery-service-card .button:hover { opacity: 0.9; }
.uber-button { background-color: #06C167; }
.demaecan-button { background-color: #D7000F; }
.menu-button { background-color: #00B469; }
.wolt-button { background-color: #009DE0; }

/* ★★★　メニューページ　★★★ */

/* ページ全体のコンテナを追加 */
.menu-page-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.menu-category-group {
    background-color: #fff; /* カードの背景色 */
    padding: 30px;
    border-radius: 12px; /* カードの角を丸く */
    box-shadow: 0 8px 30px rgba(0,0,0,0.08); /* カードに影を追加 */
    margin-bottom: 40px;
}
.menu-category-group:last-child {
    margin-bottom: 0;
}

.menu-category-group h3 {
    font-family: 'Ocean Sans MT W04 Bold Cond', sans-serif;
    font-size: 2rem;
    letter-spacing: 1px;
    text-align: left;
    margin: 0 0 15px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0; /* 区切り線を柔らかく */
}

.menu-description p {
    text-align: left;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 30px; /* 説明文の下に余白を追加 */
}

.menu-item-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.menu-item-grid-small {
    display: grid;
    gap: 15px;
}

.menu-item {
    border-bottom: 1px dashed #ccc;
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu-item:last-child {
    border-bottom: none; /* 最後のアイテムの下線は消す */
}

.item-name {
    font-size: 1rem; /* 少し小さくしてバランス調整 */
    color: #444;
}

.item-price {
    font-size: 1rem;
    font-weight: bold;
    color: #c0392b;
    white-space: nowrap;
    padding-left: 20px;
}

.menu-subcategory-title {
    font-size: 1.2rem;
    color: #555;
    margin: 30px 0 15px;
    padding-left: 10px;
    border-left: 4px solid #c0392b;
    text-align: left;
}

/* ★★★　アクセス＆情報ページ ★★★ */
.info-tabs-container {
    background-color: #fff;
    padding: 2rem 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}
.tab-nav {
    display: flex;
    justify-content: center;
    border-bottom: 2px solid #ddd;
    margin-bottom: 30px;
}
.tab-btn {
    padding: 15px 30px; font-size: 1.1rem; font-weight: bold; cursor: pointer;
    background: none; border: none; border-bottom: 4px solid transparent;
    color: #888; transition: all 0.3s ease;
}
.tab-btn:hover { color: #333; }
.tab-btn.active { color: #c0392b; border-bottom-color: #c0392b; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.access-details, .info-details {
    max-width: 800px; margin: 0 auto; text-align: left; padding: 30px 0 10px;
}
.access-details p { margin: 0 0 1.5em 0; line-height: 1.8; }
.access-details p strong { font-size: 1.2rem; }
.info-details dl { display: grid; grid-template-columns: 180px 1fr; }
.info-details dt, .info-details dd {
    margin: 0; padding: 20px; border-bottom: 1px solid #eee;
}
.info-details dt { font-weight: bold; background-color: #f9f9f9; }
.info-details dd { line-height: 1.8; color: #555; }


/* ★★★ 採用ページ ★★★ */
.recruit-intro { text-align: center; line-height: 1.8; margin-bottom: 50px; }
.recruit-details dl { display: grid; grid-template-columns: 200px 1fr; border-top: 1px solid #ddd; }
.recruit-details dt, .recruit-details dd { padding: 20px; margin: 0; text-align: left; border-bottom: 1px solid #ddd; }
.recruit-details dt { font-weight: bold; background: #f9f9f9; border-right: 1px solid #ddd; }
.recruit-details dd { line-height: 1.7; }
.recruit-details .note { font-size: 0.9rem; color: #777; }
.contact-info { font-size: 1.2rem; margin: 20px 0; text-align: center; }
.recruit-form { max-width: 700px; margin: 30px auto 0; text-align: left; }
.form-group { margin-bottom: 20px; }
.recruit-form label { display: block; font-weight: bold; margin-bottom: 8px; }
.recruit-form input, .recruit-form textarea {
    width: 100%; padding: 12px; border: 1px solid #ccc;
    border-radius: 5px; font-size: 1rem; box-sizing: border-box;
}
.submit-btn {
    background: #c0392b; color: white; border: none; padding: 15px 30px; border-radius: 5px;
    font-size: 1.1rem; font-weight: bold; cursor: pointer; transition: background 0.3s ease;
}
.submit-btn:hover { background: #a53125; }
#form-message { margin-top: 20px; font-weight: bold; }

/* --- 複数ステップフォーム --- */

/* フォーム全体のラッパー */
#multiStepForm {
    max-width: 700px;
    margin: 40px auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    overflow: hidden; /* アニメーションのため */
}

/* プログレスバー */
.progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}
/* プログレスバーの背景線 */
.progress-bar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 2px;
    width: 100%;
    background-color: #e0e0e0;
    z-index: 1;
}
.progress-step {
    position: relative;
    z-index: 2;
    text-align: center;
}
.progress-step span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    font-weight: bold;
    color: #999;
    transition: all 0.4s ease;
}
.progress-step p {
    font-size: 0.85rem;
    color: #999;
    margin-top: 8px;
    transition: all 0.4s ease;
}

/* アクティブなステップのスタイル */
.progress-step.active span {
    border-color: #c54841;
    background-color: #c54841;
    color: #fff;
}
.progress-step.active p {
    color: #c54841;
    font-weight: bold;
}

/* 完了したステップのスタイル */
.progress-step.completed span {
    border-color: #c54841;
    background-color: #c54841;
    color: #fff;
}
.progress-step.completed p {
    color: #555;
}


/* 各フォームステップ */
.form-step {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}
.form-step.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-step h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #333;
}

/* 選択肢ボタン */
.options {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2列レイアウト */
    gap: 15px;
}
.options .next-btn {
    width: 100%;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}
.options .next-btn:hover {
    border-color: #c54841;
    background-color: #fff8f7;
    color: #c54841;
    transform: translateY(-2px);
}

/* 入力フォーム (フローティングラベル) */
.input-group {
    position: relative;
    margin-bottom: 30px;
}
.input-group input {
    width: 100%;
    padding: 12px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;
}
.input-group label {
    position: absolute;
    top: 13px;
    left: 10px;
    color: #999;
    background-color: #fff;
    padding: 0 5px;
    transition: all 0.2s ease;
    pointer-events: none; /* ラベルをクリックしても下のinputが反応するように */
}
/* 入力中またはフォーカス時にラベルをフロートさせる */
.input-group input:not(:placeholder-shown) + label,
.input-group input:focus + label {
    top: -10px;
    left: 8px;
    font-size: 0.8rem;
    color: #c54841;
}
.input-group input:focus {
    outline: none;
    border-color: #c54841;
}


/* フォームの操作ボタン (戻る/応募する) */
.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}
.prev-btn, .submit-btn {
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.prev-btn {
    background-color: #f0f0f0;
    color: #555;
}
.prev-btn:hover {
    background-color: #e0e0e0;
}
.submit-btn {
    background-color: #c54841;
    color: #fff;
    flex-grow: 1; /* 「応募する」ボタンを大きくする */
}
.submit-btn:hover {
    background-color: #a53125;
}

/* サンキューメッセージ */
#thankYouMessage {
    text-align: center;
}
#thankYouMessage p {
    font-size: 1rem;
    color: #555;
}


/* --- コンセプトのサブタイトル（手書き画像） --- */
.concept-subtitle {
  /* 幅を親要素の例えば50%に */
  width: 50%; 
  /* 高さは幅に合わせて自動調整 */
  height: auto; 
  /* 中央寄せにする場合 */
  display: block; 
  margin: 0 auto;
}

/* サブタイトルの下線を非表示にする */
.concept-subtitle::after {
    display: none;
}



/********************************************************************************
* モバイル向けスタイル (768px以下)
********************************************************************************/
@media (max-width: 768px) {

    /* --- 1. 基本スタイル --- */
    body {
        font-family: 'Noto Sans JP', sans-serif; /* ← フォント指定をこれに変更 */
        font-weight: 400; 
        padding-top: 60px;
    }
    .page-container, .content-section {
        padding: 40px 15px;
    }
    .page-title, .content-section h2 {
        font-size: 2rem;
    }
    .concept-subtitle {
        font-size: 1.2rem;
    }

    /* --- 2. 共通コンポーネント (ヘッダー, FAB, スプラッシュ) --- */
    header {
        height: 60px;
    }
    header nav {
        padding: 0 50px;
    }
    .logo img {
        height: 30px;
    }
    header .logo {
        font-family: 'Yuji Syuku', serif;
        font-size: 1.5rem;
        white-space: nowrap;
        color: #333;
        text-decoration: none;
    }
    #desktop-nav {
        display: none;
    }
    #splash-screen {
        display: none;
    }
    #splash-screen img {
        width: 200px;
    }
    .mobile-fab-container {
        display: block;
        bottom: auto;
        right: auto;
        top: 80px;
        left: 20px;
    }
    .fab-menu {
        bottom: auto;
        right: auto;
        top: 70px;
        left: 0;
    }
    .nav-right {
        gap: 15px;
    }
    .language-switcher {
        gap: 4px;
    }
    .language-switcher button {
        padding: 4px 8px;
        font-size: 0.8rem;
    }


    /* --- 3. トップページ (index.html) 専用 --- */
    /* --- 3. トップページ (index.html) 専用 --- */
    #hero {
        background-attachment: scroll;
        min-height: 50vh;
        height: auto;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

/* ▼▼▼ タイトル画像が消えないようにアニメーションを上書き ▼▼▼ */
.hero-title-image {
    animation: none; /* デスクトップ用のアニメーションをリセット */
    opacity: 1;      /* 常に表示 */
    max-width: 80%;  /* モバイルでの最適なサイズに調整 */
}

/* ▼▼▼ モバイル用のヒーローセクションに以下を追記 ▼▼▼ */

.hero-content {
    display: flex;
    flex-direction: column; /* 要素を縦に並べる */
    align-items: center;
}

.hero-logo-mobile {
    display: block; /* ロゴを表示する */
    width: 200px;   /* ロゴの幅を指定 */
    margin-top: 1.5rem; /* 上の画像との間に余白を作る */
}

    .hero-content h1 {
        font-size: 15vw;
    }
    #topping-selector, #soup-bowl {
        display: none;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .news-item {
        flex-direction: column;
        gap: 8px;
    }
    .news-item time {
        margin-bottom: 0;
        width: fit-content;
    }
    .news-item .news-content {
        padding: 12px;
    }
    .news-item h3 {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }
    .news-item p {
        font-size: 0.71rem;
        line-height: 1.7;
    }
    .news-item:hover .news-content {
        transform: none;
    }

    .concept-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

/* --- Conceptセクションのテキスト調整 --- */
#concept p {
    font-size: 0.8rem; /* 文字サイズを少し小さくします */
    line-height: 1.7;  /* 行間を少し詰めてバランスを調整 */
}

    /* --- 4. ニュースページ (news.html) 専用 --- */
    .news-archive-item {
        flex-direction: column;
    }
    .news-archive-item time {
        width: auto;
        margin-bottom: 10px;
        font-weight: bold;
    }
    .pagination {
        flex-wrap: wrap;
    }

    /* --- 5. 注文方法ページ (order.html) 専用 --- */
    .order-step-item {
        flex-direction: column;
        gap: 15px;
    }

    /* --- 6. メニューページ (menu.html) 専用 --- */
    .menu-page-container {
        padding-left: 25px;
        padding-right: 25px;
    }
    .menu-category-group {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
    .menu-category-group h3 {
        font-size: 1.4rem;
    }
    .menu-description p {
        font-size: 0.9rem;
    }
    .menu-subcategory-title {
        font-size: 1.1rem;
        margin-top: 20px;
        margin-bottom: 10px;
    }
    .menu-item-grid,
    .menu-item-grid-small {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .item-name {
        font-size: 0.9rem;
    }
    .item-price {
        font-size: 0.85rem;
    }

    /* --- Accessセクションの住所テキスト調整 --- */
#access p {
    font-size: 0.7rem; /* 文字サイズを少し小さくする */
    line-height: 1.7;  /* 行間を調整 */
}

/* --- Accessセクションの地図サイズ調整 --- */
#access .map-container iframe {
    height: 200px; /* 地図の高さを450pxから300pxに縮小 */
}
    
    /* --- 7. 採用・アクセス共通スタイル --- */
    .info-tabs-container {
        padding: 1.5rem;
    }
    .tab-nav {
        display: flex;
    }
    .tab-btn {
        flex-grow: 1;
        padding: 12px 5px;
        font-size: 1rem;
    }
    .info-details dl, .recruit-details dl {
        grid-template-columns: 1fr;
    }
    .info-details dt, .recruit-details dt {
        border-right: none;
        border-bottom: 1px solid #ddd;
    }
    .recruit-details dt, .recruit-details dd {
        padding: 15px;
    }
    .recruit-form .submit-btn {
        width: 100%;
    }

    #multiStepForm {
        padding: 20px;
    }
    .options {
        grid-template-columns: 1fr; /* 1列にする */
    }
    .form-step h2 {
        font-size: 1.3rem;
    }
    .progress-step p {
        font-size: 0.7rem; /* プログレスバーの文字を小さく */
    }

}