/* ========================================================
  1. MASTER FONTS & GLOBAL RESET
  ======================================================== */
@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@300;400;700;800&family=Noto+Sans+JP:wght@300;400;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    /* ✨ hiddenの代わりに clip を使うことで、横揺れを防ぎつつトップバーの追従を完璧に守ります */
    overflow-x: clip !important;
    width: 100% !important;
    position: relative;
    scroll-behavior: smooth;
    background-color: #ffffff;
}

body {
    overflow: visible !important;
    margin-left: 160px;
    width: calc(100% - 160px) !important;
    font-family: 'Kumbh Sans', 'Noto Sans JP', sans-serif !important;
    font-weight: 400;
    color: #000000;
    line-height: 1.8;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
}

/* ========================================================
  2. UNIVERSAL CONTAINERS
  ======================================================== */
.inner-1920 {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto !important;
    padding: 0 5%;
}

.content-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.welcome-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto 50px auto;
    gap: 10px;
    line-height: 1.1;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 800;
    font-size: 33px;
}

.en-main-title {
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #eb5a0f;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* ========================================================
  3. PERMANENT SIDEBAR
  ======================================================== */
.fixed-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 160px;
    height: 100vh;
    background-color: #ffffff;
    border-right: 1px solid #eeeeee;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    z-index: 9999;
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.sidebar-logo {
    text-decoration: none !important;
    display: block;
    font-family: 'Kumbh Sans', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    color: #eb5a0f;
    line-height: 1;
    text-align: center;
    width: 100%;
    margin-bottom: 50px;
    transition: transform 0.3s ease;
}

.sidebar-logo:hover {
    transform: scale(1.1);
}

.sidebar-links {
    list-style: none;
    width: 100%;
    padding-left: 35px !important;
}

.sidebar-links li {
    margin-bottom: 25px;
    text-align: left;
}

.sidebar-links a {
    position: relative;
    padding-left: 15px;
    text-decoration: none;
    color: #333;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.sidebar-links a span {
    font-size: 12px;
    font-weight: 400;
    color: #767676;
    margin-top: 2px;
}

.sidebar-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 0;
    background-color: #eb5a0f;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-links a:hover {
    color: #eb5a0f !important;
}

.sidebar-links a:hover::before {
    height: 100%;
}

.sidebar-booking-btn {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140px !important;
    background-color: transparent !important;
    border: 1.5px solid #eb5a0f !important;
    color: #eb5a0f !important;
    border-radius: 50px !important;
    padding: 12px 5px !important;
    text-decoration: none;
    font-weight: 900 !important;
    font-size: 0.85rem !important;
    line-height: 1.0 !important;
    margin: auto auto 25px auto !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 1;
    transition: transform 0.4s ease, color 0.3s ease;
}

.sidebar-booking-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #eb5a0f;
    z-index: -1;
    transition: width 0.4s ease;
}

.sidebar-booking-btn span {
    display: block;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    margin-top: 3px !important;
}

.sidebar-booking-btn:hover {
    color: #000 !important;
    transform: translateY(-4px);
}

.sidebar-booking-btn:hover::before {
    width: 100%;
}

.sidebar-booking-btn:hover span {
    color: #000 !important;
}

.sidebar-footer {
    display: flex !important;
    justify-content: center;
    gap: 15px;
    width: 100%;
    padding-bottom: 10px;
}

.side-social {
    font-size: 1.4rem;
    color: #767676;
    transition: 0.3s;
}

.side-social:hover {
    color: #eb5a0f;
}


/* ========================================================
  4. ZEN SELECTOR BAR
  ======================================================== */
.zen-selector-bar {
    position: fixed !important;
    /* ✨ stickyをやめて、強制的に完全固定する最強の指定 */
    top: 0;
    left: 160px;
    width: calc(100% - 160px) !important;
    background-color: rgba(255, 255, 255, 0.98) !important;
    /* ✨ 背景をほんの少しだけ透かすと、スクロールした時に高級感が出ます */
    border-bottom: 0.5px solid #eeeeee;
    padding: 15px 0 10px 0;
    z-index: 999999 !important;
    /* ✨ どんなに大きな写真にも絶対に負けない一番手前の設定 */
}

.selector-container {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.selector-btn {
    text-decoration: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    color: #767676;
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    transition: 0.3s ease;
    position: relative;
}

.selector-btn span {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    margin-top: 0.1px;
}

.selector-btn::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #eb5a0f;
    transition: 0.4s ease;
    transform: translateX(-50%);
}

.selector-btn:hover::after {
    width: 100%;
}

.selector-btn:hover {
    color: #000;
}

.zen-selector-bar-mobile,
.mobile-menu-btn {
    display: none !important;
}

/* ========================================================
  10. FOOTER
  ======================================================== */
.modern-footer-section {
    background-color: #000;
    padding: 100px 0;
}

.footer-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.giant-logo {
    font-size: clamp(4rem, 8vw, 10rem);
    font-weight: 900;
    line-height: 0.85;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #eb5a0f;
}

.footer-upper-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.tagline {
    font-family: 'Covered By Your Grace', cursive;
    font-size: 3rem;
    color: #eb5a0f;
    transform: rotate(-2deg);
}

.footer-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #eb5a0f;
    background-color: transparent;
    color: #eb5a0f !important;
    padding: 12px 35px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.footer-book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #eb5a0f;
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.footer-book-btn:hover {
    color: #000000 !important;
}

.footer-book-btn:hover::before {
    width: 100%;
}

.footer-book-btn .arrow {
    display: inline-block;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.footer-book-btn:hover .arrow {
    transform: translateX(5px);
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr 1fr;
    gap: 40px;
    border-top: 1px solid rgba(235, 90, 15, 0.2);
    padding-top: 40px;
}

.footer-col h4 {
    color: #eb5a0f;
    margin-bottom: 20px;
}

.footer-col p,
.footer-col a {
    color: #eb5a0f;
    display: block;
    text-decoration: none;
    margin-bottom: 6px;
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(235, 90, 15, 0.2);
    margin-top: 80px;
    padding-top: 20px;
    color: #eb5a0f;
}


/* ========================================================
  🚨 11. MOBILE RESPONSIVE (THE FIX FOR SHRINKING) 🚨
  ======================================================== */

/* --- TABLET (Below 1024px) --- */
@media screen and (max-width: 1024px) {
    body {
        margin-left: 0 !important;
        width: 100% !important;
    }

    .zen-selector-bar {
        display: none !important;
    }

    .zen-selector-bar-mobile {
        display: flex !important;
        justify-content: center !important;
        position: fixed !important;
        bottom: 25px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 90% !important;
        max-width: 380px !important;
        background: #eb5a0f !important;
        border-radius: 100px !important;
        padding: 5px 15px !important;
        z-index: 10005 !important;
    }

    .zen-selector-bar-mobile .selector-container {
        display: flex !important;
        justify-content: space-evenly !important;
        width: 100% !important;
        gap: 10px !important;
    }

    .zen-selector-bar-mobile .selector-btn {
        color: #fff !important;
        width: 40px !important;
        height: 40px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
        text-decoration: none;
    }

    .zen-selector-bar-mobile .selector-btn.active {
        background: #fff !important;
        color: #eb5a0f !important;
    }

    .zen-concept-intro {
        padding-top: 200px !important;
        /* ← ここの数字で留白の大きさを調整できます（例：100px, 150px） */
        padding-bottom: 40px !important;
    }

    .mobile-menu-btn {
        display: grid !important;
        place-items: center;
        position: fixed;
        top: 25px;
        left: 20px;
        width: 48px !important;
        height: 48px !important;
        border-radius: 50% !important;
        background: #eb5a0f !important;
        z-index: 20000 !important;
    }

    .btn-bar {
        width: 22px !important;
        height: 2px !important;
        background: #FFF;
        transition: 0.3s;
        grid-area: 1/1;
    }

    .btn-bar:nth-child(1) {
        transform: translateY(-7px);
    }

    .btn-bar:nth-child(3) {
        transform: translateY(7px);
    }

    .nav-trigger:checked~.mobile-menu-btn .btn-bar:nth-child(1) {
        transform: rotate(45deg);
    }

    .nav-trigger:checked~.mobile-menu-btn .btn-bar:nth-child(2) {
        opacity: 0;
    }

    .nav-trigger:checked~.mobile-menu-btn .btn-bar:nth-child(3) {
        transform: rotate(-45deg);
    }

    .fixed-sidebar {
        transform: translateX(-100%);
        width: 250px;
    }

    .nav-trigger:checked~.fixed-sidebar {
        transform: translateX(0);
    }
}

/* --- SMARTPHONE (Below 768px) --- */
@media screen and (max-width: 768px) {

    section,
    .zen-room-exhibit {
        padding: 50px 15px !important;
        margin-bottom: 40px !important;
        width: 100% !important;
    }

    .inner-1920 {
        padding: 0 !important;
    }

    .concept-title,
    .notice-main-title {
        font-size: 24px !important;
    }

    .concept-title .en-subtitle,
    .notice-main-title span {
        font-size: 14px !important;
    }

    .welcome-title {
        font-size: 22px !important;
    }

    .en-main-title {
        font-size: 14px !important;
    }

    .zen-spec-bar {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
        padding: 20px 0 !important;
    }

    /* ✨ スマホ版アメニティ：横揺れを防ぎ、縦に積む */
    .amenity-section {
        flex-direction: column !important;
        align-items: center !important;
        padding: 25px 15px !important;
    }

    .amenity-col {
        width: 100% !important;
        min-width: 0 !important;
        /* PCの250px制限を解除 */
        margin-bottom: 20px !important;
    }

    .amenity-col h4,
    .amenity-sub-label {
        text-align: center !important;
        margin-top: 25px !important;
        margin-bottom: 12px !important;
        display: block !important;
        border-top: none !important;
    }

    .amenity-list {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px 10px !important;
        width: 100% !important;
    }

    .amenity-list li {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        line-height: 1.2 !important;
        margin-bottom: 0 !important;
        justify-content: center !important;
    }

    .en-amenity {
        margin-left: 0 !important;
        margin-top: 3px !important;
        font-size: 11px !important;
        opacity: 0.7;
        display: block !important;
    }

    /* その他のスマホ設定 */
    .notice-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .slider-arrow {
        width: 36px !important;
        height: 36px !important;
    }

    .liquid-line-btn {
        min-width: 0 !important;
        width: 90% !important;
        padding: 15px !important;
        gap: 10px !important;
    }

    .liquid-line-btn .jp-bold {
        font-size: 1rem !important;
    }

    .liquid-line-btn .en-label {
        font-size: 0.75rem !important;
    }

    /* フッター（スマホ版：左寄せ ＆ 左右に美しい余白を追加） */
    .modern-footer-section {
        padding: 60px 25px !important;
        /* ✨ ここがポイント！画面の端から25px内側にスペースを作ります */
    }

    .footer-layout {
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
        gap: 30px !important;
    }

    .footer-upper-right {
        align-items: flex-start !important;
    }

    .footer-main-grid {
        grid-template-columns: 1fr !important;
        text-align: left !important;
        gap: 30px !important;
    }

    .giant-logo {
        font-size: 4.5rem !important;
        align-items: flex-start !important;
    }

    .footer-book-btn {
        padding: 15px 30px !important;
        font-size: 0.8rem !important;
        letter-spacing: 0.1em !important;
    }

    .footer-bottom-bar {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        font-size: 12px !important;
        padding-top: 15px !important;
    }

    /* 縦書きタイトル（スマホでは完全に消す） */
    .vertical-title {
        display: none !important;
    }

    .exhibit-header {
        padding-left: 0 !important;
    }
}

/* Extra Small Phones */
@media screen and (max-width: 400px) {
    .zen-spec-bar {
        grid-template-columns: 1fr !important;
    }

    .amenity-list {
        grid-template-columns: 1fr !important;
    }
}

/* ========================================================
   🚨 iPhone/Safari完全対応版：ギャラリーバグ修正 🚨
   ======================================================== */
@media screen and (max-width: 768px) {

    /* 1. 写真が消える・天井がズームされるバグの修正 */
    /* iOS Safariのバグを防ぐため、aspect-ratioを使わず「絶対的な高さ(250px)」を指定します */
    .room-gallery-single {
        width: 100vw !important;
        /* 画面の端から端まで広げる */
        margin-left: calc(-50vw + 50%) !important;
        padding: 0 !important;
        margin-top: 15px !important;
        margin-bottom: 30px !important;
    }

    .room-carousel-wrapper {
        width: 100vw !important;
        height: 250px !important;
        /* 高さをpxで固定し、画像が消滅するのを絶対に防ぐ */
        max-height: 250px !important;
        aspect-ratio: auto !important;
        /* バグの原因になる設定を解除 */
        border: none !important;
    }

    .room-scroll-container {
        height: 250px !important;
    }

    .room-slide {
        flex: 0 0 100vw !important;
        width: 100vw !important;
        height: 250px !important;
        background-size: cover !important;
        background-position: center center !important;
        /* 天井ではなく、常に「写真のど真ん中」を表示 */
    }

    /* 2. 共用エリアのテキストが左端にくっついて見切れる問題の修正 */
    .shared-meta {
        padding: 0 15px !important;
        /* 削ってしまった余白を復活させる */
        margin-bottom: 15px !important;
    }

    .zen-shared-block {
        margin-bottom: 50px !important;
        overflow: visible !important;
    }
}

/* ========================================================
   📰 11. NEWS SECTION & ARCHIVE (Ori One Style - Matched)
   ======================================================== */
.top-news-section {
    padding: 120px 0;
    background-color: #fafafa;
    /* 輕微微灰背景，做出區塊層次感 */
    width: 100%;
}

/* 3列網格排版：完美對齊客室 (Rooms) 結構 */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    width: 100%;
}

/* --- News Card Wrapper (Ori One: Flat & Bordered, No Shadow) --- */
.news-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    box-shadow: none !important;
    /* 遵從 Ori One：完全去除陰影 */
    border: 1px solid #eeeeee;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.4s ease, transform 0.4s ease;
    position: relative;
}

/* 圖片容器：防止放大時溢出 */
.news-img-container {
    width: 100% !important;
    height: 250px !important;
    /* 高度與客室圖片 250px 完全一致 */
    overflow: hidden !important;
    position: relative;
    display: block !important;
}

/* 新聞相片主體 */
.news-img-wrapper {
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    transition: transform 0.6s ease;
}

/* Ori One 核心：浮動在左上角嘅原版橘色實色標籤 */
.news-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #eb5a0f;
    color: #ffffff;
    padding: 4px 12px;
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 11px;
    font-weight: 800;
    border-radius: 4px;
    z-index: 2;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* 文字內容區域：全左對齊 */
.news-card-content {
    padding: 25px;
    text-align: left !important;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* 發布日期 */
.news-date {
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 0.85rem;
    color: #aaaaaa;
    margin-bottom: 12px;
    text-align: left;
    letter-spacing: 0.05em;
}

/* 新聞標題 */
.news-card-content h3 {
    font-size: 1.4rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 800;
    color: #000000;
    line-height: 1.4;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

/* 簡短摘要 */
.news-card-content p {
    font-family: 'Kumbh Sans', 'Noto Sans JP', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #333333;
    font-weight: 400;
    margin-bottom: 20px;
}

/* 底部 READ MORE 橫線按鈕 */
.read-more {
    display: block;
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    color: #eb5a0f;
    letter-spacing: 0.1em;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    text-align: left !important;
    transition: color 0.3s ease;
}

/* --- Hover 連動動畫效果 --- */
.news-card:hover {
    transform: translateY(-5px);
    border-color: #eb5a0f;
    /* 邊框變橘色 */
}

.news-card:hover .news-card-content h3 {
    color: #eb5a0f;
    /* 文字標題變橘色 */
}

.news-card:hover .news-img-wrapper {
    transform: scale(1.05);
    /* 相片絲滑放大 1.05 倍 */
}

/* ========================================================
   🏷️ 12. VIEW ALL NEWS BUTTON (Stacked & Middle Alignment)
   ======================================================== */
.top-news-section .pre-booking-notice {
    margin-top: 50px;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
}

.top-news-section .zen-pill-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    padding: 10px 0;
    text-decoration: none;
    cursor: pointer;
}

.top-news-section .zen-pill-btn .btn-jp {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #666666;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.top-news-section .zen-pill-btn .btn-en {
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    color: #000000;
    letter-spacing: 0.15em;
    position: relative;
    transition: color 0.3s ease;
}

/* 按鈕底下會由中間向外展開嘅裝飾細橘線 */
.top-news-section .zen-pill-btn .btn-en::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #eb5a0f;
    transform: scaleX(0.7);
    transform-origin: bottom center;
    transition: transform 0.4s ease;
}

.top-news-section .zen-pill-btn:hover .btn-jp {
    color: #eb5a0f;
}

.top-news-section .zen-pill-btn:hover .btn-en {
    color: #eb5a0f;
}

.top-news-section .zen-pill-btn:hover .btn-en::after {
    transform: scaleX(1);
}

/* ========================================================
   📖 13. NEWS DETAIL PAGE (Editorial Reading Layout)
   ======================================================== */
.detail-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 4px;
    padding: 60px 50px;
    box-shadow: none;
}

.detail-header {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 25px;
    margin-bottom: 40px;
    text-align: left;
}

.detail-badge {
    display: inline-block;
    background: #eb5a0f;
    color: #ffffff;
    padding: 4px 12px;
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 11px;
    font-weight: 800;
    border-radius: 4px;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.detail-title {
    font-family: 'Kumbh Sans', 'Noto Sans JP', sans-serif !important;
    font-size: 2.2rem;
    font-weight: 800;
    color: #000000;
    line-height: 1.4;
    margin-bottom: 15px;
}

.detail-date {
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 0.95rem;
    color: #888888;
    letter-spacing: 0.05em;
}

/* microCMS 富文本內文精細排版 */
.news-rich-body {
    font-family: 'Kumbh Sans', 'Noto Sans JP', sans-serif;
    font-size: 1.05rem;
    line-height: 2.1;
    color: #333333;
    letter-spacing: 0.03em;
}

.news-rich-body p {
    margin-bottom: 25px;
    white-space: pre-wrap;
}

.news-rich-body img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
    margin: 40px auto;
    border-radius: 4px;
}

.news-rich-body h2,
.news-rich-body h3 {
    font-family: 'Noto Sans JP', sans-serif;
    border-left: 4px solid #eb5a0f;
    padding-left: 15px;
    margin: 50px 0 20px 0;
    color: #000000;
    font-weight: 800;
    font-size: 1.4rem;
}

/* ========================================================
   📱 14. NEWS MOBILE RESPONSIVE ADAPTATION
   ======================================================== */
@media screen and (max-width: 900px) {
    .news-grid {
        grid-template-columns: 1fr !important;
        /* 平板與手機全面改為 1 列直排防擠壓 */
        gap: 40px !important;
    }
}

@media screen and (max-width: 768px) {
    .top-news-section {
        padding: 50px 15px !important;
        /* 跟隨你手機版 section 的 50px 15px 補白標準 */
    }

    .detail-container {
        padding: 40px 20px !important;
        border: none !important;
        /* 手機版內頁自動拆除外框，讓留白更自然 */
    }

    .detail-title {
        font-size: 1.8rem !important;
    }
}