/* ==========================================================================
   海の味処 藤田屋：トップページ（KAWABUNスタイル）専用スタイル
   ========================================================================== */

/* ------------------------------------------
   基本要素（Noto Serifベース）
   ------------------------------------------ */
.fujitaya-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px; /* ゆったりとした高級感を出すため広めの余白 */
    font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif !important;
}

/* KAWABUN風：共通セクションタイトル */
.section-title-wrap {
    text-align: center;
    margin-bottom: 60px;
}
.section-title-wrap.text-left-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 20px;
}
.section-sub-title {
    display: block;
    font-size: 0.8rem;
    color: #bfa15f; /* 真鍮ゴールド */
    letter-spacing: 0.25em; /* 広めのレタースペース */
    font-weight: 700;
    margin-bottom: 12px;
}
.section-main-title {
    font-family: "Noto Serif JP", serif !important;
    font-size: 2rem;
    font-weight: 500;
    color: #0b2545; /* 藤田屋ネイビー */
    letter-spacing: 0.12em;
}

/* ------------------------------------------
   1. メインビジュアル（ヒーローエリア：幅100%・動画・画像背景）
   ------------------------------------------ */
.fujitaya-hero {
    position: relative;
    width: 100%;
    height: 100vh; /* 画面いっぱいの全幅全高 */
    background-color: #05162b;
    background-image: url('https://media.alotea.com/aca-1-tokyo-cover.webp'); /* 背景画像 fallback */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}
.hero-video-wrap {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}
.hero-video {
    width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(11, 37, 69, 0.4) 0%, rgba(5, 22, 43, 0.8) 100%);
    z-index: 2;
}
.hero-inner {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 24px;
}

/* ヒーロー中央の家紋・プレースホルダー */
.hero-emblem {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}
.emblem-line {
    width: 40px;
    height: 1px;
    background-color: #bfa15f;
}
.emblem-circle {
    width: 50px;
    height: 50px;
    border: 1px solid #bfa15f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.emblem-icon {
    font-size: 1.2rem;
    color: #bfa15f;
}

/* 縦書きタイポグラフィ */
.hero-vertical-title-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
}
.hero-vertical-title {
    font-family: "Noto Serif JP", serif !important;
    font-size: 2.8rem;
    line-height: 1.8;
    letter-spacing: 0.35em;
    font-weight: 500;
    color: #ffffff;
    display: flex;
    flex-direction: row-reverse; /* 右から左へ縦に流れる */
    gap: 30px;
}
.hero-vertical-title span {
    writing-mode: vertical-rl; /* 縦書き属性 */
    text-orientation: mixed;
}

.hero-lead {
    font-size: 1rem;
    color: #f1f5f9;
    letter-spacing: 0.15em;
    margin-bottom: 45px;
    font-family: "Noto Serif JP", serif !important;
}

/* ヒーロー内CTAボタン */
.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 24px;
}
.hero-btn {
    display: inline-block;
    padding: 16px 45px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border-radius: 0px !important; /* 丸みを排除しシャープに */
    text-align: center;
}
.hero-btn.btn-reserve {
    background-color: #bfa15f;
    color: #ffffff !important;
    border: 1px solid #bfa15f;
}
.hero-btn.btn-reserve:hover {
    background-color: transparent;
    color: #bfa15f !important;
}
.hero-btn.btn-catering {
    background-color: transparent;
    color: #ffffff !important;
    border: 1px solid #ffffff;
}
.hero-btn.btn-catering:hover {
    background-color: #ffffff;
    color: #0b2545 !important;
}

/* スクロール指示器 */
.hero-scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.scroll-text {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: #bfa15f;
}
.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, #bfa15f 50%, transparent 50%);
    background-size: 100% 200%;
    animation: scrollAnim 2s infinite linear;
}
@keyframes scrollAnim {
    0% { background-position: 0 0; }
    100% { background-position: 0 -200%; }
}

/* ------------------------------------------
   2. コンセプトセクション
   ------------------------------------------ */
.fujitaya-concept-section {
    background-color: #faf9f6; /* KAWABUN風の極薄ウォームグレー */
    padding: 140px 24px;
    text-align: center;
    font-family: "Noto Serif JP", serif !important;
}
.concept-inner {
    max-width: 800px;
    margin: 0 auto;
}
.concept-sub {
    display: block;
    font-size: 0.8rem;
    color: #bfa15f;
    letter-spacing: 0.3em;
    margin-bottom: 25px;
    font-weight: 700;
}
.concept-title {
    font-size: 2.2rem;
    color: #0b2545;
    margin-bottom: 45px;
    font-weight: 500;
    letter-spacing: 0.15em;
    line-height: 1.6;
}
.concept-text {
    font-size: 1.05rem;
    color: #334155;
    line-height: 2.2;
    letter-spacing: 0.08em;
    margin-bottom: 30px;
}
.concept-text:last-of-type {
    margin-bottom: 0;
}

/* ------------------------------------------
   3. お知らせセクション
   ------------------------------------------ */
.fujitaya-news-section {
    background-color: #ffffff;
    padding: 80px 40px;
    border: 1px solid #e2e8f0;
    margin-bottom: 100px;
}
.title-left {
    text-align: left;
}
.news-more-link {
    font-size: 0.85rem;
    color: #bfa15f;
    text-decoration: none !important;
    letter-spacing: 0.1em;
    font-weight: 700;
    transition: color 0.3s;
    padding-bottom: 5px;
}
.news-more-link:hover {
    color: #0b2545;
}
.news-list {
    display: flex;
    flex-direction: column;
}
.news-item {
    display: flex;
    align-items: center;
    padding: 25px 10px;
    border-bottom: 1px solid #f1f5f9;
    text-decoration: none !important;
    transition: all 0.3s;
}
.news-item:hover {
    background-color: #faf9f6;
    padding-left: 20px;
}
.news-date {
    width: 130px;
    font-size: 0.9rem;
    color: #94a3b8;
    letter-spacing: 0.05em;
}
.news-category {
    font-size: 0.75rem;
    background-color: #f1f5f9;
    color: #475569;
    padding: 4px 14px;
    margin-right: 30px;
    letter-spacing: 0.05em;
    font-weight: 700;
}
.news-title {
    flex-grow: 1;
    font-size: 0.95rem;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-arrow {
    color: #bfa15f;
    font-size: 0.8rem;
    transition: transform 0.3s;
}
.news-item:hover .news-arrow {
    transform: translateX(5px);
}

/* ------------------------------------------
   4. 利用シーンセクション（大きな写真でおもてなし）
   ------------------------------------------ */
.fujitaya-scenes-section {
    margin-bottom: 120px;
}
.scenes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 100px; /* セクション間の空気感を持つ広い余白 */
}
.scene-item {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.scene-item:nth-child(even) {
    direction: rtl; /* 左右交互のレイアウトを自動制御 */
}
.scene-item:nth-child(even) .scene-content {
    direction: ltr; /* テキストの読み方向を通常に戻す */
}
.scene-image-wrapper {
    position: relative;
    height: 480px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}
.scene-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.scene-item:hover .scene-image-wrapper img {
    transform: scale(1.04); /* 丁寧で上品なズームイン */
}
.scene-img-placeholder {
    width: 100%;
    height: 100%;
    background-color: #faf9f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bfa15f;
    font-size: 4rem;
}
.scene-content {
    padding: 20px 0;
}
.scene-title {
    font-size: 1.6rem;
    color: #0b2545;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
}
.scene-desc {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.9;
    letter-spacing: 0.05em;
    margin-bottom: 30px;
}
.scene-link {
    display: inline-block;
    font-size: 0.85rem;
    color: #bfa15f;
    text-decoration: none !important;
    font-weight: 700;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}
.scene-link:hover {
    color: #0b2545;
}
.scene-link i {
    margin-left: 5px;
    transition: transform 0.3s;
}
.scene-link:hover i {
    transform: translateX(5px);
}

/* ------------------------------------------
   5. メディアセクション
   ------------------------------------------ */
.fujitaya-media-section {
    margin-bottom: 120px;
}
.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.media-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}
.media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(11, 37, 69, 0.03);
}
.media-card-link {
    text-decoration: none !important;
    display: block;
}
.media-thumb-wrap {
    height: 200px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #f1f5f9;
}
.media-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.media-card:hover .media-thumb {
    transform: scale(1.05);
}
.media-thumb-fallback {
    width: 100%;
    height: 100%;
    background-color: #faf9f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #bfa15f;
}
.media-body {
    padding: 25px;
}
.media-meta {
    display: block;
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}
.media-card-title {
    font-size: 1.1rem;
    color: #0b2545;
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.5;
    /* 2行制限 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.media-excerpt {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.7;
}

/* ------------------------------------------
   6. 料理紹介セクション
   ------------------------------------------ */
.fujitaya-cuisine-section {
    margin-bottom: 120px;
}

/* 6-A. こだわりストーリー */
.cuisine-story {
    display: grid;
    grid-template-columns: 1.12fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    background-color: #faf9f6;
    padding: 50px;
    border: 1px solid #e2e8f0;
}
.cuisine-img-frame {
    height: 400px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}
.cuisine-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cuisine-story-content {
    padding: 10px 0;
}
.cuisine-story-title {
    font-size: 1.45rem;
    color: #0b2545;
    margin-bottom: 25px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.08em;
}
.cuisine-story-text {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.9;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}
.cuisine-story-text:last-child {
    margin-bottom: 0;
}

/* 6-B. お品書き 4大カテゴリーグリッド */
.cuisine-categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.cuisine-cat-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}
.cuisine-cat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(11, 37, 69, 0.04);
}
.cuisine-cat-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}
.cuisine-cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.cuisine-cat-card:hover .cuisine-cat-img img {
    transform: scale(1.05);
}
.cuisine-cat-placeholder {
    width: 100%;
    height: 100%;
    background-color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: #bfa15f;
}
.cuisine-cat-body {
    padding: 35px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.cuisine-cat-tag {
    font-size: 0.75rem;
    color: #bfa15f;
    letter-spacing: 0.15em;
    font-weight: 700;
    margin-bottom: 12px;
}
.cuisine-cat-title {
    font-size: 1.35rem;
    color: #0b2545;
    font-weight: 500;
    margin-bottom: 18px;
    letter-spacing: 0.08em;
}
.cuisine-cat-text {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.8;
    letter-spacing: 0.04em;
    margin-bottom: 25px;
    flex-grow: 1; /* 高さを揃えてボタン位置を統一 */
}
.cuisine-cat-link {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.8rem;
    color: #bfa15f;
    text-decoration: none !important;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    padding-bottom: 3px;
}
.cuisine-cat-card:hover .cuisine-cat-link {
    color: #0b2545;
    border-bottom-color: #0b2545;
}
.cuisine-cat-link i {
    font-size: 0.75rem;
    margin-left: 4px;
    transition: transform 0.3s;
}
.cuisine-cat-card:hover .cuisine-cat-link i {
    transform: translateX(4px);
}

/* ------------------------------------------
   7. SNSセクション
   ------------------------------------------ */
.fujitaya-sns-section {
    margin-bottom: 120px;
    text-align: center;
}
.sns-lead {
    font-size: 0.95rem;
    color: #475569;
    letter-spacing: 0.05em;
    margin-bottom: 40px;
}
.sns-feed-placeholder {
    background-color: #faf9f6;
    border: 1px solid #e2e8f0;
    padding: 60px 24px;
}
.sns-placeholder-inner {
    max-width: 500px;
    margin: 0 auto;
}
.sns-placeholder-inner i {
    font-size: 3rem;
    color: #bfa15f;
    margin-bottom: 20px;
}
.sns-placeholder-inner p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.6;
}
.sns-follow-btn {
    display: inline-block;
    background-color: #0b2545;
    color: #ffffff !important;
    padding: 14px 40px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none !important;
    transition: all 0.3s;
    border-radius: 0px !important;
}
.sns-follow-btn:hover {
    background-color: #bfa15f;
}

/* ------------------------------------------
   8. Googleマップ & MEOセクション
   ------------------------------------------ */
.fujitaya-meo-section {
    margin-bottom: 40px;
}
.meo-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: stretch;
}
.meo-content {
    background-color: #faf9f6;
    border: 1px solid #e2e8f0;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.meo-sub {
    font-size: 0.8rem;
    color: #bfa15f;
    letter-spacing: 0.2em;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}
.meo-title {
    font-size: 1.5rem;
    color: #0b2545;
    margin-bottom: 25px;
    font-weight: 500;
    letter-spacing: 0.08em;
}
.meo-text {
    font-size: 0.9rem;
    color: #475569;
    line-height: 2.0;
    margin-bottom: 35px;
}
.meo-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.meo-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none !important;
    transition: all 0.3s;
    border-radius: 0px !important;
}
.meo-btn.map-btn {
    background-color: #0b2545;
    color: #ffffff !important;
}
.meo-btn.map-btn:hover {
    background-color: #1e293b;
}
.meo-btn.review-btn {
    background-color: transparent;
    color: #0b2545 !important;
    border: 1px solid #0b2545;
}
.meo-btn.review-btn:hover {
    background-color: #0b2545;
    color: #ffffff !important;
}
.meo-map-frame {
    height: 100%;
    min-height: 450px;
    border: 1px solid #e2e8f0;
}
.meo-map-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* ------------------------------------------
   9. スマホ固定追従アクションバー
   ------------------------------------------ */
.fujitaya-floating-bar {
    display: none; /* デフォルト非表示、スマホサイズで起動 */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: rgba(11, 37, 69, 0.95);
    border-top: 1px solid #bfa15f;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
}
.floating-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 10px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #ffffff !important;
    text-decoration: none !important;
    transition: all 0.3s;
    border-radius: 0px !important;
    text-align: center;
}
.float-btn.float-reserve {
    background-color: #bfa15f;
}
.float-btn.float-reserve:hover {
    background-color: #a6885f;
}
.float-btn.float-catering {
    background-color: #ffffff;
    color: #0b2545 !important;
}
.float-btn.float-catering:hover {
    background-color: #f7fafc;
}


/* ==========================================
   レスポンシブメディアクエリ
   ========================================== */

/* タブレットサイズ（991px以下） */
@media screen and (max-width: 991px) {
    .fujitaya-container {
        padding: 60px 24px;
    }
    .hero-vertical-title {
        font-size: 2.3rem;
    }
    .scenes-grid {
        gap: 60px;
    }
    .scene-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .scene-item:nth-child(even) {
        direction: ltr; /* タブレット以下では並びを統一 */
    }
    .scene-image-wrapper {
        height: 320px;
    }
    .media-grid {
        grid-template-columns: 1fr 1fr; /* 2列に変更 */
    }
    .media-card:last-child {
        display: none; /* 奇数件目の非表示などの調整 */
    }
    .cuisine-story {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px;
    }
    .cuisine-img-frame {
        height: 300px;
    }
    .cuisine-categories-grid {
        grid-template-columns: 1fr; /* 1列 */
        gap: 30px;
    }
    .meo-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .meo-content {
        padding: 40px 24px;
    }
}

/* モバイル（767px以下） */
@media screen and (max-width: 767px) {
    .hero-vertical-title {
        font-size: 1.8rem;
        gap: 15px;
    }
    .hero-cta-group {
        flex-direction: column;
        gap: 12px;
    }
    .hero-btn {
        width: 100%;
        padding: 14px 20px;
    }
    .concept-title {
        font-size: 1.6rem;
    }
    .concept-text {
        font-size: 0.95rem;
        line-height: 2.0;
    }
    .fujitaya-news-section {
        padding: 30px 20px;
    }
    .news-item {
        flex-wrap: wrap;
        gap: 10px;
    }
    .news-date {
        width: auto;
    }
    .news-category {
        margin-right: 0;
    }
    .news-title {
        width: 100%;
    }
    .news-arrow {
        display: none;
    }
    .media-grid {
        grid-template-columns: 1fr; /* 1列 */
    }
    .media-card:last-child {
        display: block;
    }
    .fujitaya-cuisine-section {
        padding: 40px 20px;
    }

    /* スマホ固定追従アクションバーの起動 */
    .fujitaya-floating-bar {
        display: block;
    }
    
    /* 追従バーとフッターの被り防止 */
    footer {
        padding-bottom: 80px !important;
    }
}