/* ==========================================================================
   Variables & Reset
   ========================================================================== */
:root {
    --food-gold: #c5a059;
    --food-dark: #2c2c2c;
    /* 修正前: #fdfaf5 (ほぼ白) */
    /* 修正後: 少しだけ彩度と明度を落とし、切り替わりを明確に */
    --food-light-bg: #f8f3e9; 
    --tokyo-color: #333;
    --osaka-color: #004098;
    --transition: all 0.4s ease;
}

/* ==========================================================================
   Common Layout
   ========================================================================== */

/* 全てのコンテンツの中央寄せと余白の統合管理 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%; /* 左右に5%のセーフティエリアを確保 */
}

.food-section {
    padding: 100px 0;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    padding-left: 20px;
    border-left: 5px solid var(--food-gold);
}

.section-title.text-center {
    border-left: none;
    padding-left: 0;
    text-align: center;
}

/* ==========================================================================
   Main Visual
   ========================================================================== */
/* --- メインビジュアルの修正 --- */
.food-main-visual {
    min-height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('https://images.unsplash.com/photo-1555244162-803834f70033?w=1200&q=80') no-repeat center/cover;
    display: flex;
    align-items: center;
    color: #fff;
    /* ここを padding ではなく container で制御するために修正 */
}

.visual-content {
    max-width: 850px;
}

.category-tag {
    display: inline-block;
    background: var(--food-gold);
    color: #fff;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.visual-content h1 {
    /* 900から100へ大幅に細くします */
    font-weight: 300; 
    /* 文字のサイズを少しだけ抑え、洗練された印象に */
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    line-height: 1.6;
    margin-bottom: 30px;
    /* 文字の間隔を広げることで「余白の美」を作ります */
    letter-spacing: 0.15em; 
    text-shadow: 1px 1px 10px rgba(0,0,0,0.3); /* 細い文字を読みやすくするため影は薄く残す */
}

.visual-content h1 .phrase {
    display: block;
    word-break: keep-all;
}

.visual-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
    opacity: 0.95;
    max-width: 650px;
}

/* ==========================================================================
   Catering & Delivery Explanation
   ========================================================================== */
.service-explanation {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1060px;   /* ★重要：1200pxより少し狭くして、文章を読みやすくします */
    flex-wrap: wrap;

    /* 横幅の制限と中央寄せ */
    max-width: 1000px;    /* 1200pxより狭くして、ほどほどの余白を作ります */
    margin: 60px auto;   /* 上下60px、左右autoで完全に中央へ */
    padding: 0 20px;     /* 念のため、画面端との最小余白を確保 */
    
    width: 90%;          /* 親要素に対して90%の幅（最大1000px） */
}

.exp-block {
    flex: 1;
    min-width: 340px;   /* カードが細くなりすぎないよう調整 */
    background: var(--food-light-bg);
    padding: 50px 40px; /* 内側の余白をたっぷり取ることで高級感を出す */
    border-radius: 15px;
    border-top: 6px solid var(--food-gold); /* 線の太さを少しアップ */
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.exp-block:hover {
    transform: translateY(-5px);
}

.exp-text h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--food-dark);
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.sub-lang {
    font-size: 0.9rem;
    color: var(--food-gold);
    font-weight: 500;
}

.exp-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.exp-list li {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: var(--food-dark);
}

.exp-list li::before {
    content: "✓";
    color: var(--food-gold);
    margin-right: 12px;
    font-weight: 900;
}

/* ==========================================================================
   Brand Cards Grid
   ========================================================================== */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.brand-card {
    padding: 60px 45px;
    background: #fff;
    border: none; /* 枠線を消して影で魅せる */
    border-radius: 20px; /* 角を丸くして上段と差別化 */
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.07);
    transition: all 0.4s ease;
}

.brand-card h3 {
    font-size: 0.8rem;
    background: rgba(0,0,0,0.03); /* 都市名をバッジのようにする */
    display: inline-block;
    padding: 4px 15px;
    border-radius: 50px;
}

.brand-card h4 {
    font-size: 1.8rem;
    margin: 15px 0;
    font-weight: 800;
}

/* ボタンをモダンに */
.btn-brand {
    border-radius: 50px;
    border: 2px solid var(--food-dark);
    padding: 12px 45px;
}

/* ホバー時に浮き上がる演出を強化 */
.brand-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.color-tokyo { border-top: 5px solid var(--tokyo-color); }
.color-tokyo h3 { color: var(--tokyo-color); }

.color-nagoya { border-top: 5px solid var(--food-gold); }
.color-nagoya h3 { color: var(--food-gold); }

.color-osaka { border-top: 5px solid var(--osaka-color); }
.color-osaka h3 { color: var(--osaka-color); }

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.btn-brand {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 35px;
    border: 1px solid var(--food-dark);
    text-decoration: none;
    color: var(--food-dark);
    font-weight: 700;
    transition: var(--transition);
}

.color-tokyo .btn-brand:hover { background: var(--tokyo-color); color: #fff; }
.color-nagoya .btn-brand:hover { background: var(--food-gold); color: #fff; border-color: var(--food-gold); }
.btn-brand.disabled { border-color: #ccc; color: #ccc; cursor: default; }

/* ==========================================================================
   Hotel Breakfast Section
   ========================================================================== */
.bg-light { background-color: #f9f9f9; }

/* --- Hotel Breakfast 全体レイアウト --- */
.breakfast-main-content {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.lead-text {
    text-align: left;
    margin-bottom: 40px;
}

.lead-text h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    line-height: 1.4;
    margin-bottom: 20px;
    color: var(--food-dark);
}

/* 料理写真の装飾 */
.breakfast-image-wrapper {
    margin: 40px 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.breakfast-main-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.breakfast-image-wrapper:hover .breakfast-main-img {
    transform: scale(1.03);
}

/* --- strategy-grid (こだわりポイント) --- */
.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.strategy-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    position: relative;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.strategy-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--food-gold);
}

.card-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(197, 160, 89, 0.1); /* ゴールドの薄い透過色 */
    position: absolute;
    top: 10px;
    right: 20px;
}

.strategy-card h4 {
    font-size: 1.25rem;
    color: var(--food-gold);
    margin-bottom: 15px;
    position: relative;
}

.strategy-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}
/* --- 実績リスト全体の器 --- */
.breakfast-list-fullwidth {
    background: #fff;
    padding: 80px 60px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    margin-top: 50px;
}

/* --- 親見出し：主要提供実績（威厳を出す） --- */
.list-header {
    text-align: center;
    margin-bottom: 80px;
}

.sub-title {
    display: block;
    color: var(--food-gold);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.main-performance-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 900;
    letter-spacing: 0.15em;
    color: var(--food-dark);
    margin: 0 0 20px;
    position: relative;
    display: inline-block;
}

/* タイトル下のアクセント線 */
.main-performance-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--food-gold);
}

.main-performance-lead {
    font-size: 1.1rem;
    color: #666;
    margin-top: 35px;
}

/* --- リスト全体のコンテナ --- */
.performance-vertical-list {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

/* --- 各エリアのグループ --- */
.area-group {
    margin-bottom: 60px;
}

.area-group:last-child {
    margin-bottom: 0;
}

/* --- エリア見出し（H3：シャープに整理） --- */
/* --- エリア見出し（H3：左揃えの縦並び） --- */
.area-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
    /* 左右に飛ばす設定(justify-content)を削除 */
    display: block; 
    text-align: left;
}

.area-en {
    display: block; /* 強制的に改行させる */
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--food-gold);
    letter-spacing: 0.2em;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    margin-bottom: 8px; /* 日本語との間隔 */
}

.area-name {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--food-dark);
    letter-spacing: 0.05em;
    margin: 0;
}

/* Food Service ページ専用の Mission/Vision ボックス */
.food-m-v-box {
    max-width: 700px;
    margin: 0 auto 50px; /* 中央寄せ */
    padding: 25px 35px;
    background: #fff;
    border-top: 3px solid var(--food-gold, #d4af37); /* 上部にアクセント */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* ホテルセクション（背景がグレー）の中では少し浮かせる */
.bg-light .food-m-v-box {
    background: #fff;
}

.food-m-v-box .m-v-item {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 15px;
}

.food-m-v-box .m-v-item:last-child {
    margin-bottom: 0;
}

.food-m-v-box .m-v-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--food-gold, #d4af37);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    min-width: 70px;
}

.food-m-v-box .m-v-text {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin: 0;
    line-height: 1.6;
}

/* リスト部分（前の設定を維持しつつ、左側の余白を微調整） */
.hotel-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 5px 40px;
}

.hotel-list li {
    position: relative;
    padding: 12px 0 12px 25px;
    font-size: 1rem;
    color: #555;
    font-weight: 500;
    transition: var(--transition);
}

/* リスト左側のゴールドドット */
.hotel-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: var(--food-gold);
    border-radius: 50%;
    transition: var(--transition);
}

.performance-vertical-list {
    text-align: center;  /* 中央寄せ */
}

.performance-vertical-list img {
    max-width: 100%;   /* 画面に合わせて縮小 */
    height: auto;      /* 縦横比維持 */
}


/* スマホ対応：1列に強制 */
@media screen and (max-width: 768px) {
    .hotel-list {
        grid-template-columns: 1fr;
    }
    .area-name {
        font-size: 1.2rem;
    }
}

/* --- フッターメッセージ --- */
.list-footer {
    margin-top: 50px;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.list-footer p {
    font-size: 0.85rem;
    color: #999;
    letter-spacing: 0.1em;
}

/* スマホ対応 */
@media screen and (max-width: 991px) {
    .performance-grid {
        grid-template-columns: 1fr;
    }
    .breakfast-list-fullwidth {
        padding: 50px 25px;
    }
}

/* --- Footer (フッター) --- */

/* --- Footer (フッター) --- */
.main-footer {
    background: #1a1c20; /* 深いダークグレー */
    color: #fff;
    padding: 80px 0 30px;
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-family: 'Montserrat';
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    margin-bottom: 25px;
}

.footer-logo small {
    display: block;
    font-size: 0.75rem;
    font-family: 'Noto Sans JP';
    font-weight: 500;
    color: var(--hr-blue); /* ロゴのサブテキストにアクセント */
    margin-top: 5px;
}

.footer-address {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 20px;
}

.footer-contact span {
    display: block;
    font-family: 'Montserrat';
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
}

/* フッターナビゲーション */
.footer-nav {
    display: flex;
    justify-content: flex-end;
    gap: 80px;
}

.nav-group h4 {
    font-family: 'Montserrat';
    font-size: 1rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
}

.nav-group h4 small {
    display: block;
    font-size: 0.65rem;
    color: var(--hr-blue);
    margin-top: 5px;
}

.nav-group ul {
    list-style: none;
    padding: 0;
}

.nav-group ul li {
    margin-bottom: 12px;
}

.nav-group ul li a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.nav-group ul li a:hover {
    color: var(--hr-blue);
    padding-left: 5px;
}



/* モバイル対応 */
@media screen and (max-width: 768px) {
    .breakfast-list-fullwidth {
        padding: 30px 20px;
    }
    
    .performance-table th, 
    .performance-table td {
        display: block;
        width: 100%;
    }
    
    .performance-table th {
        border-bottom: none;
        padding-bottom: 5px;
    }
}

/* ==========================================================================
   Interactive Area Map (Using jpnmap.png)
   ========================================================================== */
/* マップコンテナの基本設定 */
.interactive-map-container {
    position: relative;
    max-width: 1000px; /* 画像の元の横幅に合わせる */
    margin: 40px auto;
    /* 遠近感を出すための設定 */
    perspective: 1200px;
}

.base-japan-map {
    width: 100%;
    height: auto;
    display: block;
}

/* --- 展開エリアのハイライト（ここが修正の肝です） --- */
.map-overlay {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    /* パースに合わせて円を平たくし、斜めに傾ける */
    transform: rotateX(55deg) rotateZ(-15deg);
    transition: var(--transition);
}

.map-overlay span {
    /* 中の文字だけ正位置に戻して読みやすくする */
    transform: rotateZ(15deg) rotateX(-55deg);
    white-space: nowrap;
}

/* 各エリアの座標と色（イメージを元に精密調整） */
.area-tokyo { 
    width: 12%; height: 12%; top: 52%; left: 63%; 
    background: rgba(51, 51, 51, 0.1); border-color: #333; color: #333;
}

.area-nagoya { 
    width: 15%; height: 15%; top: 58%; left: 47%; 
    background: rgba(197, 160, 89, 0.2); border-color: var(--food-gold); color: var(--food-gold);
}

.area-osaka { 
    width: 12%; height: 12%; top: 64%; left: 40%; 
    background: rgba(0, 64, 152, 0.1); border-color: #004098; color: #004098;
}

/* --- ホテル拠点のピン（小さな楕円に見えるように調整） --- */
.map-pin {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ff3b30;
    border: 1px solid #fff;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 10;
    /* ピンも少し平たくすると馴染みます */
    transform: rotateX(45deg);
}

/* ピンの配置（地図上の陸地に重なるよう調整） */
.p-numazu   { top: 62%; left: 50.5%; }
.p-shizuoka { top: 52.5%; left: 52.5%; }
.p-nagoya   { top: 58.5%; left: 45.5%; }
.p-ise      { top: 62%; left: 43%; }
.p-kobe     { top: 57%; left: 37.5%; }

/* ホバー時の演出 */
.map-pin:hover {
    transform: rotateX(45deg) scale(1.5);
    background: #000;
}

.map-legend-box {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    font-size: 0.9rem;
    font-weight: 500;
}

.legend-item { display: flex; align-items: center; gap: 10px; }
.legend-range { width: 24px; height: 24px; border: 1px solid var(--food-gold); background: rgba(197, 160, 89, 0.1); }
.legend-pin { width: 14px; height: 14px; border-radius: 50%; background: #ff3b30; border: 2px solid #fff; }

/* --- 追加：ホテル詳細リストのスタイル --- */
.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.hotel-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hotel-details-list li {
    padding: 15px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    flex-direction: column; /* ホテル名と住所を縦に並べる */
    gap: 4px;
    position: relative;
    padding-left: 20px;
}

/* リスト左側のドット */
.hotel-details-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 24px; /* ホテル名の高さに合わせる */
    width: 6px;
    height: 6px;
    background: var(--food-gold);
    border-radius: 50%;
}

.hotel-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--food-dark);
}

.hotel-address {
    font-size: 0.85rem;
    color: #888;
    letter-spacing: 0.02em;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media screen and (max-width: 991px) {
    .food-section { padding: 70px 0; }
    
    .visual-content h1 {
        font-size: 2.2rem;
    }
    
    .breakfast-flex {
        gap: 40px;
    }

    .interactive-map-container {
        padding: 20px;
    }
    
    .map-overlay span {
        display: none; /* スマホではエリア名は非表示にしてスッキリさせる */
    }

.breakfast-text .lead-text h3 {
    font-size: 1rem !important;
    }

    .breakfast-text .lead-text h3 br {
        display: none;
    }

    .breakfast-text .lead-text p {
        font-size: 0.9rem;
        line-height: 1.8;
    }

}

@media screen and (max-width: 768px) {
    .container { padding: 0 6%; }
    
    .service-explanation { gap: 20px; }
    .exp-block { padding: 30px 25px; }
    
    .map-legend-box {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .performance-grid {
        grid-template-columns: 1fr; /* スマホでは1列 */
        gap: 30px;
    }
    
    .hotel-details-list li {
        padding: 12px 0 12px 18px;
    }

    .hotel-name {
        font-size: 0.95rem;
    }
}