@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Klee+One:wght@600&display=swap');

/* ベース設定 */
body {
    margin: 0;
    /* メディアらしいモダンで読みやすいフォント指定 */
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
    color: #774d36;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
a {
    text-decoration: none;
    color: inherit;
}

/* ====================================
   ヘッダー（テキストコーディング）
==================================== */
.header {
    background-color: #fff;
    padding: 6px 40px; /* 縦幅ギリギリまで細く */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center; /* ギリギリのため中央揃えに変更 */
}
.logo {
    margin: 0 auto 0 0; /* 左寄せを確実にするため */
    width: 180px; /* ロゴの表示サイズを少し小さく調整 */
}
.logo a {
    display: block;
    transition: opacity 0.3s;
}
.logo a:hover {
    opacity: 0.7;
}

/* ナビゲーションメニュー */
.global-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}
.global-nav a {
    font-size: 13px; /* 存在感を抑えるため15pxから縮小 */
    font-weight: bold;
    color: #774d36;
    transition: color 0.3s;
}
.global-nav a:hover {
    color: #F38118; /* ホバー時にオレンジ色に */
}

/* ====================================
   FV（ファーストビュー）エリア
==================================== */
.fv-area {
    /* ⑤背景画像の設定 */
    background-image: url('images/bg_orange.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #f79836; /* 画像読み込み前の代替色 */
    width: 100%;
    height: 700px; /* バランスをとるために高さ調整 */
    position: relative;
    overflow: hidden;
}

/* コンテンツを中央の1200px幅に収めるためのコンテナ */
.fv-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    height: 100%;
}

/* --- 各パーツの絶対配置 --- */
/* 実際の画像の余白などに合わせて、top, bottom, left, right, width の数値を微調整してください */

/* 右上の最新記事ボタン */
.btn-latest {
    position: absolute;
    top: 60px;
    right: 0; /* ナビゲーションの右端と揃える */
    width: 240px;
    z-index: 20;
    /* コーディングボタンのスタイル */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 0;
    border: 2px solid #F38118;
    border-radius: 40px;
    color: #F38118;
    font-weight: bold;
    text-decoration: none;
    background: #fff;
    /* ホバー時のアニメーション設定 */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn-latest .arrow {
    position: absolute;
    right: 20px;
    font-weight: normal;
}
.btn-latest:hover {
    background: #F38118;
    color: #fff;
    transform: translateY(-6px) scale(1.03); /* ふわっと浮いて少し大きくなる */
    box-shadow: 0 10px 20px rgba(243,129,24,0.2);
}

/* 左下のキャッチコピー */
.catchphrase {
    position: absolute;
    top: 450px; /* 1枚目の写真の下へ確実にずらす */
    left: 20px;
    width: 680px; /* テキストが意図せず折り返さないよう枠を広げる */
    z-index: 10;
    text-align: left;
}
.catchphrase img {
    width: 480px; /* 画像自体が大きくなりすぎないよう固定 */
}



/* 3つの写真の配置 */
.photo-left {
    position: absolute;
    top: 20px; /* キャッチコピーと被らないようにさらに上に配置 */
    left: 0; /* 左端に配置 */
    width: 500px; /* もう一回り大きく（インパクト重視） */
}
.photo-center {
    position: absolute;
    bottom: 220px; /* 1枚目に少し被るくらい上へ引き上げ */
    left: 460px; 
    width: 360px; 
    z-index: 5; 
}
.photo-right {
    position: absolute;
    top: 150px;
    right: 0; /* ボタンの右端ラインと揃える */
    width: 380px;
}

/* ====================================
   順番にふわっと表示するアニメーション
==================================== */
.fade-in-up {
    opacity: 0; /* 最初は透明 */
    transform: translateY(30px); /* 少し下にずらしておく */
    /* アニメーションの実行設定（時間を1.5sにしてよりゆっくりに） */
    animation: fadeInUp 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1; /* 不透明に */
        transform: translateY(0); /* 元の位置に戻る */
    }
}

/* キャッチコピーのアニメーション速度（余韻を持たせてよりゆっくりに） */
.catchphrase.fade-in-up {
    animation-duration: 2.5s;
}

/* アニメーションの開始を遅らせる（ゆっくり順番に出現） */
.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 1.0s; }
.delay-3 { animation-delay: 1.7s; }
.delay-4 { animation-delay: 2.6s; } /* キャッチコピー用（最後に表示） */


/* ====================================
   NEWSエリア
==================================== */
.news-area {
    background-color: #fff;
    padding: 50px 0;
}
.news-inner {
    max-width: 900px; /* デザインに合わせて中央寄せ */
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    padding: 0 40px;
}
.news-title {
    color: #F38118;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 1px;
}
.news-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.news-list li {
    display: flex;
    gap: 20px;
    align-items: baseline;
    font-size: 14px;
    color: #774d36;
}
.news-date {
    font-weight: bold;
    white-space: nowrap;
}
.news-link {
    color: #774d36;
    text-decoration: none;
    transition: color 0.3s;
}
.news-link:hover {
    color: #F38118;
    text-decoration: underline;
}
.news-text {
    color: #774d36;
}

/* 斜線ボーダー */
.diagonal-border {
    width: 100%;
    height: 15px;
    background: repeating-linear-gradient(
        -45deg,
        #fff,
        #fff 4px,
        #ffd8ab 4px,
        #ffd8ab 6px
    );
}

/* ====================================
   ABOUTエリア
==================================== */
/* ====================================
   ARTICLES（取材記事一覧）エリア
==================================== */
.articles-area {
    background-color: #FCF8F2; /* ほんのり温かい色で区切る */
    padding: 80px 0;
}
.articles-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}
.section-title {
    text-align: center;
    color: #F38118;
    font-size: 32px;
    margin-bottom: 50px;
    font-weight: bold;
    letter-spacing: 2px;
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif; /* ゴシックに戻す */
}
.section-title img {
    max-width: 300px; /* 画像のサイズ調整用 */
    height: auto;
    margin-bottom: 5px;
}
.section-title span {
    display: block;
    font-size: 14px;
    color: #774d36;
    margin-top: 5px;
    font-weight: normal;
    letter-spacing: 0;
}
.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}
.article-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.article-thumb {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.article-card:hover .article-thumb img {
    transform: scale(1.05);
}
.article-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.article-tag {
    align-self: flex-start;
    background-color: #F38118;
    color: #fff;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    font-weight: bold;
}
.article-title {
    color: #774d36;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
    font-weight: bold;
    flex: 1;
}
.article-date {
    color: #999;
    font-size: 13px;
    text-align: right;
    margin: 0;
}
.center-btn {
    text-align: center;
}

/* ====================================
   ABOUTエリア
==================================== */
.about-area {
    background-color: #fff; /* 白に戻す */
    padding: 100px 0;
    overflow: hidden; /* 画面外へのはみ出しをカット */
}
.about-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center; /* 縦中央揃え */
    position: relative; /* 子要素のabsolute基準 */
}
.about-img {
    position: absolute;
    left: calc(50% - 50vw); /* 画面の左端からスタート */
    width: calc(50vw + 60px); /* 画面中央より60px右にはみ出させる！ */
    height: 100%;
    top: 0;
}
.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 40px 40px 0; /* 右側だけ角丸 */
    box-shadow: 15px 15px 40px rgba(0,0,0,0.08);
}
.about-text {
    width: 40%; /* 画像と被らないように幅を少し狭める */
    margin-left: auto; /* コンテナ内で右寄せ */
    padding: 40px 0 40px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 450px; /* 画像エリアが潰れないように最低高さを確保 */
}
.about-logo {
    margin-bottom: 25px;
}
.about-logo img {
    height: 75px; /* 全体的にサイズアップ */
}
.about-title {
    color: #F38118;
    font-size: 32px; /* 少し大きめに */
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 25px;
}
.about-desc {
    color: #774d36;
    font-size: 17px; /* 読みやすく少し大きく */
    line-height: 1.9;
    margin-bottom: 40px;
}
.btn-about {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    padding: 16px 0;
    border: 2px solid #F38118;
    border-radius: 40px;
    color: #F38118;
    font-weight: bold;
    text-decoration: none;
    background: #fff;
    transition: all 0.3s;
    position: relative;
}
.btn-about .arrow {
    position: absolute;
    right: 25px;
    font-weight: normal;
}
.btn-about:hover {
    background: #F38118;
    color: #fff;
}

/* ====================================
   レスポンシブ対応（スマホ画面用）
==================================== */
/* ハンバーガーメニューのベース（PCでは非表示） */
.menu-toggle {
    display: none;
}

@media (max-width: 900px) {
    .header { padding: 6px 20px; }
    .header-inner { 
        flex-direction: row; 
        justify-content: space-between; 
        align-items: center; 
        padding-bottom: 0;
    }
    .logo { width: 140px; margin: 0 auto 0 0; }
    
    /* ハンバーガーメニューボタン */
    .menu-toggle {
        display: block;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 5px;
        z-index: 1000;
    }
    .menu-toggle .bar {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #774d36;
        margin: 5px 0;
        transition: transform 0.3s, opacity 0.3s;
    }
    /* ハンバーガーが「×」になるアニメーション */
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* アコーディオンメニュー */
    .global-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.3s ease-out; /* アコーディオンのアニメーション */
    }
    .global-nav.active {
        max-height: 300px;
    }
    .global-nav ul { 
        flex-direction: column; 
        align-items: center; 
        padding: 20px 0;
        gap: 20px; 
    }
    
    .fv-area { height: auto; padding: 30px 0; }
    
    /* フレックスボックスでスマホ版の表示順（order）を制御 */
    .fv-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 15px;
    }
    
    /* 3つの写真をはみ出し気味に、重なりを強く配置 */
    .photo-left {
        position: static;
        width: 65%;
        order: 1;
        align-self: flex-start;
        margin: 5px 0 0 -10%; /* 先ほどより少しだけ上へ */
    }
    .photo-center {
        position: static;
        width: 65%;
        order: 2;
        align-self: flex-end;
        margin: -90px -10% 0 0; /* 少し引き上げ */
        z-index: 2;
    }
    .photo-right {
        position: static;
        width: 65%;
        order: 3;
        align-self: flex-start;
        margin: -130px 0 0 -10%; /* 1枚目に少し重なるくらいまで大幅に引き上げ */
        z-index: 3;
    }
    
    /* キャッチフレーズ配置（重ならないように） */
    .catchphrase {
        position: static;
        width: 90%;
        max-width: 460px; /* 少し小さく */
        order: 4;
        align-self: flex-start; /* 左寄せに変更 */
        margin: 10px 0 30px 20px; /* 上の写真のすぐ下に配置 */
        z-index: 4;
    }


    /* 最新記事ボタンは一番最後に配置 */
    .btn-latest {
        position: static;
        width: 100%;
        max-width: 260px;
        order: 5;
        margin: 0 auto 30px auto;
        z-index: 5;
    }

    /* NEWSエリア スマホ */
    .news-inner {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }
    .news-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    /* ARTICLESエリア スマホ */
    .article-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* ABOUTエリア スマホ */
    .about-area {
        padding: 60px 0;
    }
    .about-inner {
        flex-direction: column;
        gap: 30px;
        padding: 0;
    }
    .about-img {
        position: static;
        width: 100%;
        height: 250px;
    }
    .about-img img {
        position: static;
        width: 95%; /* 右側に少し余白を残して「左から出ている」感を出す */
        height: 100%;
        border-radius: 0 30px 30px 0;
        box-shadow: none;
    }
    .about-text {
        width: 100%;
        margin-left: 0;
        padding: 0 20px;
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .about-title {
        font-size: 22px;
        text-align: center;
    }
    .btn-about {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    /* ABOUTページ スマホ */
    .page-about .sub-fv {
        padding: 60px 0 40px;
    }
    .page-about .sub-title {
        font-size: 28px;
    }
    .concept-inner, .features-inner, .message-inner {
        padding: 0 20px; /* 余白を調整 */
    }
    .concept-catch {
        font-size: 24px;
    }
    .feature-list {
        flex-direction: column;
        gap: 20px;
    }
    .message-inner {
        flex-direction: column;
        gap: 40px;
    }
    .concept-lead img {
        max-width: 95% !important; /* さらに大きく */
        margin: 0 auto;
    }
    .concept-text {
        text-align: left !important;
        display: block;
    }
    .message-title {
        text-align: center;
        margin-bottom: 20px;
    }
    .message-title img {
        max-width: 320px !important;
        width: 90%;
    }
    .message-bottom {
        display: block;
        position: relative;
        padding-bottom: 10px;
    }
    .message-img-sp {
        float: left;
        width: 80%; /* 透過PNGの特性を活かして限界突破で巨大化！ */
        margin-right: -45%; /* マイナスマージンでテキストエリアを透過部分にめり込ませる */
        margin-bottom: 10px;
        position: relative;
        z-index: 1;
    }
    .message-img-sp img {
        width: 100%;
        height: auto;
        object-fit: contain; /* 透過PNGの比率を保つ */
        background-color: transparent;
    }
    .message-meta {
        clear: both; /* 回り込みを解除 */
        width: 95%;
        margin-left: auto;
        margin-top: -30px; /* 下部に被せる */
        position: relative;
        z-index: 2;
    }
    .message-quals {
        background: rgba(253, 249, 243, 0.93) !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        width: 100%;
        box-sizing: border-box;
        padding: 15px 15px !important; /* 左右の余白を減らす */
        font-size: 13px !important; /* 1行に収めるため少し縮小 */
        letter-spacing: -0.3px; /* 文字間隔を少し詰める */
    }

}

/* ====================================
   ABOUTページ専用スタイル
==================================== */
.page-about .sub-fv {
    background-color: #FDF9F3;
    padding: 80px 0 60px;
    text-align: center;
}
.page-about .sub-title {
    color: #F38118;
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 2px;
}
.page-about .sub-title span {
    display: block;
    font-size: 16px;
    color: #774d36;
    margin-top: 10px;
    font-weight: normal;
    letter-spacing: 0;
}

/* コンセプトエリア */
.concept-area {
    padding: 80px 0;
    background: #fff;
}
.concept-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}
.concept-catch {
    color: #F38118;
    font-size: 28px;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: bold;
}
.concept-desc {
    color: #774d36;
    font-size: 16px;
    line-height: 2.0;
    text-align: left;
}
.concept-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 2.0;
    font-size: 15px;
    text-align: center;
}

/* 特徴エリア */
.features-area {
    background-color: #FDF9F3;
    padding: 80px 0;
}
.features-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}
.feature-list {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 50px;
}
.feature-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    flex: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
}
.feature-num {
    color: #F38118;
    font-size: 40px;
    font-weight: bold;
    opacity: 0.2;
    position: absolute;
    top: 20px;
    right: 30px;
}
.feature-title {
    color: #774d36;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.4;
}
.feature-box p {
    color: #774d36;
    font-size: 15px;
    line-height: 1.8;
}

/* メッセージエリア */
.message-area {
    padding: 100px 0;
    background: #fff;
}
.message-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 0 40px;
}
.message-img {
    flex: 1.2; /* 写真エリアを少し広くする */
}
.message-img img {
    width: 100%;
    aspect-ratio: 1 / 1.05; /* 縦横比を固定して下部（脛から下）をカット */
    object-fit: cover;
    object-position: top center; /* 上部（顔側）を基準に配置 */
}
.message-text {
    flex: 1;
}
.message-title {
    color: #F38118;
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: bold;
}
.message-desc {
    color: #774d36;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 30px;
}
.message-sign {
    text-align: right;
    color: #774d36;
    font-size: 15px;
    line-height: 1.6;
}
.message-sign strong {
    font-size: 20px;
}

/* ====================================
   取材記事ページ専用スタイル
==================================== */
.breadcrumb {
    background: #f9f9f9;
    padding: 15px 0;
    font-size: 13px;
    color: #888;
}
.breadcrumb .inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
.breadcrumb a {
    color: #F38118;
    text-decoration: none;
}

.article-container {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 40px 20px;
    background: #fff;
}

.article-hero {
    margin-bottom: 30px;
}
.article-hero img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: none !important; /* ドロップシャドウなし */
}

.article-header {
    margin-bottom: 40px;
}
.facility-tag {
    display: inline-block;
    background: #F38118;
    color: #fff;
    font-size: 13px;
    padding: 4px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
    font-weight: bold;
}
.facility-name {
    font-size: 28px;
    color: #774d36;
    line-height: 1.5;
    font-weight: bold;
}

.article-lead {
    font-size: 16px;
    color: #774d36;
    line-height: 1.9;
    margin-bottom: 60px;
}

.article-section {
    margin-bottom: 60px;
}
.article-h2 {
    font-size: 22px;
    color: #F38118;
    border-bottom: 2px solid #F38118;
    padding-bottom: 10px;
    margin-bottom: 25px;
    font-weight: bold;
}
.article-section p {
    font-size: 16px;
    color: #774d36;
    line-height: 1.9;
    margin-bottom: 25px;
}

.article-quote {
    background: #FDF9F3;
    border-left: 5px solid #F38118;
    padding: 20px;
    font-style: italic;
    color: #774d36;
    line-height: 1.8;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
}

.article-full-img {
    margin-bottom: 25px;
}
.article-full-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: none !important; /* ドロップシャドウなし */
}

.article-two-col {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}
.article-two-col .col-img {
    flex: 1;
}
.article-two-col .col-img img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    box-shadow: none !important; /* ドロップシャドウなし */
}
.article-two-col .col-text {
    flex: 1;
}

.facility-info {
    margin-top: 80px;
    border-top: 2px dashed #ddd;
    padding-top: 40px;
}
.info-title {
    text-align: center;
    color: #F38118;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}
.info-title span {
    display: block;
    font-size: 14px;
    color: #774d36;
    margin-top: 5px;
    font-weight: normal;
}
.info-table {
    width: 100%;
    border-collapse: collapse;
}
.info-table th, .info-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
}
.info-table th {
    width: 30%;
    background: #FDF9F3;
    color: #774d36;
    font-weight: bold;
}
.info-table td {
    color: #774d36;
}

@media (max-width: 900px) {
    /* 取材記事ページのスマホ対応 */
    .article-container {
        padding: 30px 15px; /* パディングを狭く */
    }
    .article-hero {
        margin-left: -15px;
        margin-right: -15px; /* スマホでは画面幅いっぱいに広げる */
        margin-top: -30px;
        margin-bottom: 20px;
    }
    .article-hero img {
        height: auto; /* 400px固定を解除 */
        aspect-ratio: 16 / 9; /* スマホで見やすい比率に */
    }
    .facility-name {
        font-size: 22px; /* 少し小さく */
    }
    .article-lead {
        font-size: 15px;
        margin-bottom: 40px;
    }
    .article-section {
        margin-bottom: 40px;
    }
    .article-h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .article-section p {
        font-size: 15px;
    }
    .article-quote {
        margin: 20px 0;
        padding: 15px;
        font-size: 14px;
    }
    .article-full-img img {
        height: auto; /* 400px固定を解除 */
        aspect-ratio: 4 / 3; /* スマホで見やすい比率に */
    }
    .article-two-col {
        flex-direction: column;
    }
    .article-two-col .col-img img {
        height: auto;
        aspect-ratio: 4 / 3;
    }
    
    /* 施設情報のテーブル スマホ対応 */
    .info-table th, .info-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    .info-table th {
        border-bottom: none;
        padding-bottom: 5px;
    }
    .info-table td {
        padding-top: 5px;
        padding-bottom: 15px;
    }
}

/* ====================================
   グローバルフッター
==================================== */
.global-footer {
    background-color: #FDF9F3; /* クリーム色 */
    color: #774d36; /* 茶色 */
    padding: 60px 0 20px;
    position: relative;
    margin-top: 0;
}
.global-footer::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background: repeating-linear-gradient(
        -45deg,
        #fff,
        #fff 4px,
        #ffd8ab 4px,
        #ffd8ab 6px
    );
}
.global-footer .footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}
.footer-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}
.footer-left {
    flex: 0 0 auto;
}
.footer-logo {
    margin-bottom: 15px;
}
.footer-logo img {
    height: 65px;
}
.footer-nav {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-nav a {
    color: #F38118;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
}
.footer-nav a:hover {
    text-decoration: underline;
}
.footer-divider {
    width: 2px;
    height: 180px;
    background-color: #F38118;
}
.footer-right {
    flex: 1;
}
.cta-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #774d36;
}
.cta-desc {
    font-size: 12px;
    margin-bottom: 25px;
    line-height: 1.6;
    color: #774d36;
}
.btn-cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    color: #F38118;
    border: 1.5px solid #F38118;
    font-weight: bold;
    padding: 12px 0;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    width: 300px;
    position: relative;
}
.btn-cta:hover {
    background: #F38118;
    color: #fff;
}
.btn-cta .arrow {
    position: absolute;
    right: 25px;
    color: #F38118;
    font-weight: normal;
    transition: color 0.3s;
}
.btn-cta:hover .arrow {
    color: #fff;
}
.footer-bottom {
    text-align: center;
}
.copyright {
    font-size: 10px;
    color: #999;
    letter-spacing: 1px;
}
@media (max-width: 900px) {
    .footer-main {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    .footer-left, .footer-right {
        width: 100%;
    }
    .footer-divider {
        width: 100%;
        height: 2px;
    }
    .footer-nav {
        align-items: center;
    }
    .btn-cta {
        width: 100%;
        max-width: 300px;
    }
}

/* スマホ用改行・表示切替 */
.sp-br, .sp-only { display: none !important; }
@media (max-width: 900px) {
    .sp-br, .sp-only { display: block !important; }
    .pc-only { display: none !important; }
}

/* ====================================
   下層ページ専用FV (ABOUT, ARTICLES, CONTACT)
==================================== */
.sub-fv {
    background: #FDF9F3; /* クリーム色背景 */
    padding: 80px 20px;
    text-align: center;
    border-bottom: 1px solid #e0d5c1;
}
.sub-fv-inner {
    max-width: 1000px;
    margin: 0 auto;
}
.sub-title {
    font-size: 16px;
    color: #774d36;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0;
}
.sub-title span {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    font-weight: normal;
}

/* ====================================
   お問い合わせフォーム
==================================== */
.contact-form .form-group {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #e0d5c1;
    padding: 30px 0;
    margin: 0;
}
.contact-form .form-group:last-of-type {
    border-bottom: 1px solid #e0d5c1;
}
.contact-form dt {
    width: 30%;
    font-weight: bold;
    color: #774d36;
    padding-top: 15px;
}
.contact-form dd {
    width: 70%;
    margin: 0;
}
.contact-form .required {
    display: inline-block;
    background: #F38118;
    color: #fff;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 3px;
    margin-left: 10px;
    vertical-align: middle;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fafafa;
    font-family: inherit;
    font-size: 15px;
    box-sizing: border-box;
    transition: all 0.3s;
}
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
    border-color: #F38118;
    background: #fff;
    outline: none;
    box-shadow: 0 0 5px rgba(243, 129, 24, 0.2);
}
.form-privacy {
    text-align: center;
    margin: 40px 0;
}
.checkbox-label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
}
.checkbox-label input {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
}
.form-submit {
    text-align: center;
}
.btn-submit {
    display: inline-block;
    padding: 18px 80px;
    background: #F38118;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    transition: opacity 0.3s;
    box-shadow: 0 4px 10px rgba(243, 129, 24, 0.3);
}
.btn-submit:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .contact-form dt, .contact-form dd {
        width: 100%;
    }
    .contact-form dt {
        padding-top: 0;
        margin-bottom: 10px;
    }
}

/* 記事セクションタイトルのSP改行対応 */
.title-line {
    display: inline;
}
@media (max-width: 900px) {
    .title-line {
        display: inline-block;
        white-space: nowrap;
        font-size: min(18px, 5vw) !important;
        letter-spacing: -0.8px;
    }
}

/* 記事内の画像キャプションを中央揃え */
.article-img figcaption {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

@media (max-width: 900px) {
    .article-img figcaption {
        font-size: 12px;
        line-height: 1.4;
    }
}
