@charset "utf-8";

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom; /* 画像下の謎の隙間を消すおまじない */
}

/* --- 1. 基本設定（変数とリセット） --- */
:root {
    --main-color: #112B41;    /* 濃紺 */
    --base-color: #E5E5E5;   /* 修正：赤みを抜き、明るくしたグレー */
    --accent-color: #B8401C;    /* ダッチ・テラコッタ */
    --white: #FFFFFF;        /* ピュアホワイト */
}



body {
    background-color: var(--base-color);
    color: var(--main-color);
    font-family: 'Jost', 'BIZ UDPGothic', sans-serif;
    overflow-x: hidden;
}



/* 詳細ボタン */
.btn-more {
    font-family: 'Jost', 'BIZ UDPGothic', sans-serif;
    font-size: 14px; /* h4相当の視認性 */
    letter-spacing: 0.15em;
    text-decoration: none;
    color: var(--main-color);
    border-bottom: 1px solid var(--main-color); /* 下線でボタン感を演出 */
    padding-bottom: 8px;
    transition: 0.3s;
}

.btn-more:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
    padding-right: 10px; /* 矢印が動くような視覚効果 */
}

.btn-more-white {
    font-family: 'Jost', 'BIZ UDPGothic', sans-serif;
    font-size: 14px; /* h4相当の視認性 */
    letter-spacing: 0.15em;
    text-decoration: none;
    color: #FFFFFF;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);  /* 下線でボタン感を演出 */
    padding-bottom: 8px;
    transition: 0.3s;
}

.btn-more-white:hover {
    border-bottom-color: #FFFFFF;
    padding-right: 10px; /* boederが動くような視覚効果 */
}


/* --- ヘッダー：配置と重なり（z-indexを整理） --- */
/* --- 1. ロゴ：最前面に固定 --- */
.logo-wrapper {
    position: fixed; /* ヘッダー内ではなく画面に対して固定 */
    top: 24px;
    left: 40px;
    z-index: 3000; /* メニュー(2000)より上に */
    transition: transform 0.4s ease;
}

.logo-svg {
    width: 300px;
    height: auto;
}

.logo-svg text {
    fill: #FFFFFF !important; /* 初期値：白 */
    font-family: 'Jost', sans-serif;
    font-size: 40px; /* 文字サイズも微増 */
    letter-spacing: 0.05em;
    font-weight: 400;
}

/* --- 2. ハンバーガーボタン：最前面に固定 --- */
.nav-button {
    position: fixed;
    z-index: 3000; /* ロゴと同じ高さ */
    cursor: pointer;
    top: 30px;
    right: 40px;
    cursor: pointer;
}

/* ロゴとボタンの初期色（白） */
.logo-svg text, .nav-button {
    fill: #FFFFFF !important;
    color: #FFFFFF !important;
    transition: 0.3s;
}


.global-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 2000; /* ロゴ・ボタンを含め最前面に */
    padding: 25px 40px; 
    background: transparent !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* --- 3. メニュー：ロゴより下の階層に降ろす --- */
.nav-content {
    position: fixed;
    top: -150px; /* 初期位置を高くして完全に隠す */
    left: 0;
    width: 100%;
    height: 120px;
    background-color: #FFFFFF; /* 不透明な白 */
    z-index: 2000; /* ロゴ(3000)より下に設定 */
    transition: top 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* チェック時にメニュー出現 */
#nav-toggle:checked ~ .global-header .nav-content {
    top: 0;
}

/* メニューが開いている時のロゴとボタンの色（黒） */
#nav-toggle:checked ~ .global-header .logo-wrapper .logo-svg text,
#nav-toggle:checked ~ .global-header .nav-button .nav-icon-wrapper span,
#nav-toggle:checked ~ .global-header .nav-button .nav-icon-wrapper span::before,
#nav-toggle:checked ~ .global-header .nav-button .nav-icon-wrapper span::after {
    fill: #000000 !important;
    background-color: #000000 !important;
}

/* 1. 初期状態（白） */
.logo-svg text,
.nav-icon-wrapper span,
.nav-icon-wrapper span::before,
.nav-icon-wrapper span::after {
    fill: #FFFFFF;
    background-color: #FFFFFF;
    transition: 0.3s;
}

/* 2. 【JS連動】スクロール後（黒） */
.is-scrolled .logo-svg text {
    fill: #000000 !important;
}
.is-scrolled .nav-icon-wrapper span,
.is-scrolled .nav-icon-wrapper span::before,
.is-scrolled .nav-icon-wrapper span::after {
    background-color: #000000 !important;
}

/* --- 4. メニュー本体（上から降ろす・中央揃え） --- */
.nav-toggle { display: none; }

/* --- ハンバーガーボタン共通 --- */
.nav-toggle {
    position: fixed;
    top: 30px;    /* PCではゆったり */
    right: 40px;  /* PCでは少し内側 */
    z-index: 9999;
    cursor: pointer;
}

.nav-list { 
    display: flex;
     list-style: none;
      gap: 60px;
      margin-top: 40px;
     }
.nav-list a {
    font-family: 'Jost', sans-serif;
    font-size: 11px; letter-spacing: 0.3em;
    color: #112B41 !important;
    text-transform: uppercase;
}
.nav-list a.accent-link { color: #B8401C !important; font-weight: 700; }

/* メニューが開いている時は強制的に「黒」 */
#nav-toggle:checked ~ .global-header .logo-svg text,
#nav-toggle:checked ~ .global-header .nav-button {
    fill: #000000 !important; color: #000000 !important;
    animation: none;
}

/* --- 5. 三本線アイコンの構造 --- */
.nav-icon-wrapper { position: relative; width: 24px; height: 12px; }
.nav-icon-wrapper span, .nav-icon-wrapper span::before, .nav-icon-wrapper span::after {
    content: ""; display: block; height: 1px; width: 100%;
    background-color: currentColor; position: absolute; transition: 0.4s;
}
.nav-icon-wrapper span { top: 6px; }
.nav-icon-wrapper span::before { top: -6px; }
.nav-icon-wrapper span::after { bottom: 6px; }

/* 閉じる時の「×」（上品に） */
#nav-toggle:checked ~ .global-header .nav-button .nav-icon-wrapper span { background: transparent; }
#nav-toggle:checked ~ .global-header .nav-button .nav-icon-wrapper span::before { top: 0; transform: rotate(45deg) scale(0.6); }
#nav-toggle:checked ~ .global-header .nav-button .nav-icon-wrapper span::after { top: 0; transform: rotate(-45deg) scale(0.6); }


/* --- 1. ヒーローエリア全体：比率を保つ --- */
.hero-section {
    position: relative;
    width: 100%;
    /* 16:9の比率で高さを自動決定（ブラウザ幅を狭めると高さも縮小する） */
    aspect-ratio: 16 / 9; 
    overflow: hidden;
    background-color: #E5E5E5;
    margin-bottom: 180px;
}

/* --- 2. スライダーの窓 --- */
.slider-viewport {
    width: 100%;
    height: 100%;
}

/* --- 3. 動く箱：ここは絶対に幅 800% --- */
.slider-wrapper {
    display: flex;
    width: 800%;   /* 1枚100% × 8枚分 = 800% */
    height: 100%;
    transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- 4. 各スライド：100%の中の1/8サイズ --- */
.slide {
    width: 12.5%;    /* 100% ÷ 8 = 12.5% */
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- 5. テキストブロック：リサイズ追従型 --- */
.hero-text-block {
    position: absolute;
    left: 5%;
    bottom: 10%; 
    z-index: 20;
    color: #FFFFFF;
    width: 90%;
    pointer-events: none;
}

.main-statement {
    /* 最小24px〜最大3.5remの間で動く。フォントサイズも自動リサイズ */
    font-size: clamp(24px, 5vw, 3.5rem); 
    letter-spacing: 0.15em;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(17, 43, 65, 0.8), 0 4px 10px rgba(0, 0, 0, 0.3);
}

.sub-statement {
    font-size: clamp(14px, 2vw, 1.2rem);
    line-height: 1.8;
    text-shadow: 0 0 10px rgba(17, 43, 65, 0.8);
}
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 30;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #FFFFFF;
    opacity: 0.4;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* 現在表示中のドットを強調 */
.dot.active {
    opacity: 1;
    background-color: #112B41; /* ブランドカラーのネイビー */
    transform: scale(1.2);
}


/* --- 共通ボタンパーツ（後で使用） --- */
.btn {
    padding: 16px 48px; /* 少し広げて贅沢に */
    font-size: 11px;    /* あえて小さくして知的に */
    letter-spacing: 0.3em; /* 文字間をさらに広げる */
    text-decoration: none;
    display: inline-block;
    transition: 0.4s;
    font-family: 'Jost', sans-serif;
    text-transform: uppercase;
}

/* 枠線ボタン：商品詳細などに */
.btn-outline { 
    border: 1px solid var(--main-color); 
    color: var(--main-color); 
}

/* 塗りボタン：来店予約などに */
.btn-flat { 
    background-color: var(--accent-color); 
    color: var(--white); 
}

.btn:hover {
    opacity: 0.7;
}

/* --- Pick Up Items セクション：建築的なアシンメトリー --- */
.pickup-section {
    width: 100%;
    background-color: var(--base-color); /* #D9D7D9 */
    margin-bottom: 180px;
}

.pickup-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center; /* テキストと画像を中央にして安定感を出す */
    gap: 80px;
    padding: 0 40px;
}

/* 左：テキストエリア (比率 2) */
.pickup-text {
    flex: 2;
    text-align: left;
}

.section-title {
    font-family: 'Jost', sans-serif;
    font-size: 24px;
    letter-spacing: 0.1em;
    font-weight: 300;
    margin-bottom: 12px;
}

.section-lead {
    font-size: 12px;
    letter-spacing: 0.15em;
    line-height:1.5em ;
    color: var(--accent-color); /* テラコッタ #B8401C */
    margin-bottom: 60px;
}

.brief-text {
    font-size: 12px;
    line-height: 2.2;
    letter-spacing: 0.15em;
    color: var(--main-color);
}

/* 右：画像エリア (比率 5) */
.pickup-visual {
    flex: 5;
    overflow: hidden;
}

/* --- PRODUCTS セクション --- */
.products-section {
    width: 100%;
    /* padding: 10px 0; */
    background-color: var(--base-color); /* #E5E5E5 */
    margin-bottom: 180px;
}
/* ボタンを置かない、直感的な画像リンク */
.product-direct-link {
    display: block;
    cursor: pointer;
    overflow: hidden;
    background-color: #000; /* ホバー時の暗転用 */
}

.product-direct-link img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ホバー：画像がわずかに拡大し、静かに沈み込む演出 */
.product-direct-link:hover img {
    transform: scale(1.04);
    opacity: 0.9;
}


.section-title-center {
    font-family: 'Jost', sans-serif;
    font-size: 24px;
    letter-spacing: 0.5em;
    font-weight: 300;
    text-align: center;
    margin-bottom: 32px; /* グリッドとの間隔 */
}

.products-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr; /* 横2列 */
    gap: 30px; /* 上下左右の適切なマージン */
}

.product-item {
    display: block;
    text-decoration: none;
    overflow: hidden;
}

.product-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; /* 正方形に固定 */
    background-color: var(--white); /* #FFFFFF */
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- ホバー時に現れるテキストオーバーレイ --- */
.product-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(17, 43, 65, 0.15); /* わずかに暗くして文字を浮かせる */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; /* 通常時は隠す */
    transition: opacity 0.5s ease;
}

.product-cat {
    font-family: 'Jost', 'BIZ UDPGothic', sans-serif;
    color: #FFFFFF;
    font-size: 18px;
    letter-spacing: 0.3em;
    border-bottom: 1px solid #FFFFFF;
    padding-bottom: 5px;
}

/* ホバー時の挙動 */
.product-item:hover .product-overlay {
    opacity: 1;
}

.product-item:hover img {
    transform: scale(1.05); /* わずかなズーム */
}

/* --- INTERIOR ADVISORY セクション --- */
.advisory-section {
    width: 100%;
    margin-bottom: 180px; /* 贅沢な余白を固定 */
    background-color: var(--base-color);
}


/* --- INTERIOR ADVISORY：中央に固定 --- */
.advisory-section .section-header-center {
    display: flex;
    flex-direction: column;
    align-items: center; /* 左右中央 */
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
}

.en-title {
    font-family: 'Jost', sans-serif;
    font-size: 24px;
    letter-spacing: 0.2em;
    font-weight: 300;
    margin-bottom: 10px;
}

.jp-title {
    font-size: 13px;
    letter-spacing: 0.1em;
    color: var(--accent-color); /* テラコッタ色でアクセント */
}

/* メインビジュアル */
/* --- ADVISORY：構造の整理 --- */
.advisory-visual {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* ここだけで左右の余白を管理 */
    position: relative; /* 文字の基準をここにする */
}

/* 画像と文字を包むコンテナの余白をリセット */
.visual-container {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0; /* 二重パディングを解除 */
}

.advisory-visual img {
    width: 100%;
    height: auto;
    display: block;
}

/* 画像の上に載る文字：位置を再固定 */
.advisory-lead-on-img {
    position: absolute;
    bottom: 40px; /* 画像の下端から40px上 */
    left: 50%;
    transform: translateX(-50%);
    color: #FFFFFF;
    font-size: 18px;
    letter-spacing: 0.2em;
    width: 100%;
    text-align: center;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
    z-index: 10;
    margin: 0; /* 余計なマージンをリセット */
}

/* テキストブロック */
.advisory-content {
    max-width: 800px; /* 読みやすい幅に絞る */
    margin: 0 auto;
    text-align: center;
}

.advisory-lead {
    font-size: 18px; /* h4相当 */
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
}

.advisory-section .advisory-text {
    font-size: 12px;
    line-height: 2.0;
    letter-spacing: 0.1em;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* --- ABOUT US セクション：背景としての写真演出 --- */
.about-section {
    width: 100%;
    margin-bottom: 160px; 
}

.about-visual-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.about-img-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    /* 【演出】明度を少し下げ、わずかにボカして「背景化」する */
    filter: brightness(0.8) blur(2px); 
    transform: scale(1.05); /* ボケによる端の乱れを隠すための微拡大 */
}

/* 画像をさらに均一に暗くするオーバーレイ */
.about-overlay-dim {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(17, 43, 65, 0.4); /* ブランドカラーのネイビーを薄く重ねる */
}

/* テキスト配置：上から20%、左から20% */
.about-overlay-text {
    position: absolute;
    top: 46%;
    left: 15%;
    color: #FFFFFF;
    z-index: 10;
    text-align: left;
}

.about-h2 {
    font-size: 24px;
    letter-spacing: 0.2em;
    font-weight: 300;
    margin-bottom: 30px;
}

.about-desc-group {
    /* P文とボタンのグループ */
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* 左揃えを基本にしつつ、塊感を出す */
}

.about-desc-group {
    font-size: 12px;
    line-height: 2.0;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
}

.about-section .spacer {
    margin-top: 1.6em; /* 1.6行分の空行を作る */
    margin-bottom: 2.0em;
  }

/* フッター全体 */
.footer {
    background-color: #E5E5E5; /* ベースカラー継続 */
    border-top: 1px solid rgba(17, 43, 65, 0.2); /* メインカラーを薄くした境界線 */
    padding: 30px 0 12px; /* 上下にゆったりとした余白 */
    color: #112B41;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* スマホ時の左右余白 */
}

/* ナビゲーション：等間隔で横並び・センタリング */
.footer-nav-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* 折り返し対応 */
    gap: 24px; /* 項目間の等間隔 */
    list-style: none;
    margin-bottom: 48px; /* SNS行との余白 */
}

.footer-nav-list a {
    text-decoration: none;
    color: inherit;
    font-size: 10px; /* あえて小さく設定 */
    letter-spacing: 0.05em;
    /* opacity: 0.7; */
    transition: opacity 0.3s;
}

.footer-nav-list a:hover {
    opacity: 0.6; /* ホバー時に少し薄く */
}

/* SNSアイコン行：親要素 */
.footer-sns {
    display: flex;
    justify-content: center;
    align-items: center; /* 垂直方向の中央揃え */
    gap: 30px;
    margin-bottom: 48px;
}

/* SNSアイコン：個別のリンク枠を共通サイズにする */
.footer-sns a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;  /* アイコンを収める「共通の枠」の幅 */
    height: 24px; /* アイコンを収める「共通の枠」の高さ */
    text-decoration: none;
}

/* アイコン画像自体の調整 */
.sns-icon {
    width: auto;   /* 横幅は自動 */
    height: 18px;  /* 高さを基準に揃える（インスタ等に合わせて調整） */
    max-width: 100%; /* 枠からはみ出さないように */
    opacity: 0.7;
    transition: all 0.4s ease; /* 少しゆっくり動かす */
}
/* マウスを乗せた時の状態（ホバー） */
.sns-icon:hover {
    opacity: 1; /* 80%から100%（不透明）へ */
    transform: translateY(-2px); /* 2pxだけ上にひょこっと動く */
}

/* YouTubeだけ個別に微調整したい場合（もし小さく見えたら） */
/* .footer-sns a:last-child .sns-icon { height: 14px; } のように微調整可能 */

/* コピーライト行：右寄せの確実な設定 */
.footer-bottom {
    width: 100%;           /* 幅をいっぱいまで広げる */
    display: block;        /* ブロック要素として確実に認識させる */
    text-align: right;     /* 中のテキストを右へ */
    margin-top: 40px;      /* 上との余白を再確保 */
}

.copyright {
    display: inline-block; /* インラインブロック化して位置制御を確実に */
    font-size: 8px;
    letter-spacing: 0.1em;
    /* opacity: 0.5; */
    margin: 0;             /* 余計なマージンをリセット */
}

/* ========================================
   トップへ戻るボタン
   角丸スクエア版
======================================== */

#page-top {
    position: fixed;
    right: 18px;
    bottom: 28px;
    z-index: 100; /* 他の要素より上に */
}

#page-top a {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 40px;
    height: auto;

    /* border-radius: 14px; */

    border: 2px solid rgba(255,255,255,0.95);
    background-color: rgba(255,255,255,0.18);
    box-shadow: black 2px 2px 3px -2px;
    transition:
        transform 0.3s,
        opacity 0.3s,
        border-color 0.3s,
        background-color 0.3s;

    opacity: 0.8;
}

/* hover */

#page-top a:hover {
    transform: translateY(-3px);
    opacity: 1;
    border-color: #ffffff;
    background-color: rgba(255,255,255,0.26);
}




/* --- モバイル対応（画面幅 768px 以下） --- */
@media (max-width: 768px) {
    /* 全体のセクション余白を詰める */
    section {
        padding: 15px 0 !important;
        margin-bottom: 30px !important;
     }

    .nav-toggle {
        top: 20px;   /* スマホでは少し上に */
        right: 20px; /* スマホでは端に寄りすぎないように調整 */
    }
    
    /* 1. HERO：高さを抑え、文字を画像に馴染ませる */
    .hero-section {
        aspect-ratio: 3 / 2 !important;
        min-height: 250px !important;
    }
    .hero-text-block {
        bottom: 10% !important;
        padding: 0 10px !important;
    }
    .main-statement {
        font-size: 1.2rem !important;
        letter-spacing: 0.05em !important;
    }

    /* 2. PICK UP：左右を上下に並べ替え、余白を削る */
    .pickup-section {
        padding: 0 0 !important; /* 上下の余白を削る */      
    }

    .pickup-container {
        display: flex !important;
        flex-direction: column !important; /* ★ここが重要：縦に並べる */
        gap: 0 !important; /* 隙間を完全にゼロにする */
    }
    .pickup-visual {
        width: 100% !important;
        height: 180px !important; /* 高さを抑えて密度アップ */
        margin-bottom: 5px !important; /* 画像のすぐ下にテキストを置く */
        order: 1; /* 画像を上に */
    }
    .pickup-text {
        width: 100% !important;
        padding: 5px 15px !important; /* 上の余白を極限まで削る */
        margin-top: 0 !important;
        order: 2; /* テキストを下に */
        text-align: left !important;
    }
      /* テキスト同士の行間・段落間を詰める */
    .section-title {
        margin-bottom: 2px !important;
        line-height: 1.2 !important;
    }
    .section-lead {
        margin-bottom: 8px !important;
        font-size: 11px !important;
    }
    .brief-text {
        line-height: 1.3 !important; /* 行間をタイトに */
        margin-top: 0 !important;
        font-size: 13px !important;
        line-height: 1.4 !important;
    }
    

    /* 3. PRODUCTS：1列でサクサク見せる */
    .products-grid {
        display: flex !important;
        flex-direction: column !important; /* 縦1列 */
        gap: 10px !important; /* 商品間の隙間を最小に */
        padding: 0 10px !important;
        
    }
    .product-img {
        height: 180px !important;
    }

    /* 4. ABOUT：重なりを解除して縦に並べる */
    .about-visual-container {
        display: flex !important;
        flex-direction: column !important; /* ★ここが重要：縦に並べる */
    }
    .about-img-wrapper {
        width: 100% !important;
        height: 180px !important;
    }
    .about-overlay-text {
        position: static !important; /* 画像の上からの脱却 */
        width: 100% !important;
        padding: 15px 10px !important;
        background-color: #112B41 !important; /* 背景色で白文字を保護 */
    }
    .about-h2 { font-size: 1.1rem !important; margin-bottom: 5px !important; }
    .about-p, .spacer { font-size: 13px !important; line-height: 1.4 !important; }

    /* セクション全体の余白を詰める */
    .advisory-section { 
        padding: 0 !important;
        margin-bottom: 30px !important;
    }

    .advisory-visual {
        padding: 0 5% !important; /* 横幅90%（左右5%空き）にする */
    }

    /* 文字を画像の下へ降ろす */
    .advisory-lead-on-img {
        position: static !important; /* 浮かすのをやめる */
        transform: none !important;
        color: #112B41 !important; /* 背景が白くなるのでネイビーに */
        font-size: 15px !important;
        letter-spacing: 0.1em !important;
        margin: 10px 0 5px !important; /* 画像との距離を10pxに密着 */
        text-shadow: none !important;
    }

    /* その下の説明文もさらに密着させる */
    .advisory-section .advisory-text {
        line-height: 1.5 !important;
        margin-bottom: 15px !important;
    }  

    /* 1. ヘッダーの余白をタイトにする */
    .global-header {
        padding: 15px 20px !important; /* PC(25px 40px)から大幅に縮小 */
    }

    .nav-button {
        top: 20px !important;
        right: 20px !important;
    }

    /* 2. メニュー本体（上から降ろす箱）：スマホでは高さを抑える */
    .nav-content {
        height: 100px !important; /* PC(120px)より少し薄くして画面を圧迫しない */
        top: -120px; /* 隠す位置も調整 */
    }

    /* 3. メニュー内のリスト：高密度・1列（またはコンパクトな並び） */
    .nav-list {
        display: flex !important;
        flex-wrap: wrap; /* スマホでは横に収まりきらない場合のために折り返し許可 */
        justify-content: center !important;
        gap: 15px 25px !important; /* 縦15px / 横25px のタイトな間隔 */
        margin-top: 10px !important; /* 上の余白を詰める */
        padding: 0 10px;
    }

    .nav-list a {
        font-size: 10px !important; /* 11pxからさらに絞って鋭く */
        letter-spacing: 0.1em !important; /* 文字間を少し詰めて読みやすく */
    }

    /* 4. メニュー展開時の動作を確実にスマホへ適用 */
    #nav-toggle:checked ~ .global-header .nav-content {
        top: 0 !important;
    }

    /* 5. ロゴのサイズ調整（スマホで大きすぎないように） */
    .logo-svg {
        width: 180px !important; /* PCより一回り小さく */
        height: auto;
    }

    
    
    /* --- 3. 全体的な微調整：テキストの塊をタイトにする --- */
    p, h2, h3, h4 {
        margin-top: 0 !important;
        margin-bottom: 5px !important;
    }
}
