@charset "UTF-8";
/* ==================================================
変数定義
================================================== */
:root {
    /* カラー */
    --color-primary:#37474F;
    --color-text:#37474F;
    --color-white: #000;
    --color-accent: #fff;
    --color-footer:#90A4AE;

/* レイアウト */
    --width-content: 100%;
    --width-narrow: 770px;
    --space-unit: 15px;
    --space-section: 45px;

    /* その他 */
    --flex-gap: 30px;
    --duration: 0.7s;
}


/* ==================================================
ベース
================================================== */
body {
    margin: 0;                 /* ★これ必須：白い隙間の代表原因 */
    background: #F5F7F8;       /* ★背景はbodyに */
    font-family: "Yu Gothic", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
    overflow-x: hidden;
}

/* ==================================================
ローディング画面
================================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #F5F7F8;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    width: 80px;
    height: auto;
    animation: pulse 1.5s ease-in-out infinite;
}

.loading-text {
    margin-top: 20px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #111;
    animation: fadeInOut 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}


img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}


/* ==================================================
レイアウト
================================================== */
.wrapper {
    width: var(--width-content);
    margin: 0 auto;
    position: relative;
    padding: 0 var(--space-unit);
    box-sizing: border-box;
}


/* ==================================================
共通コンポーネントここから
================================================== */
/* メインビジュアル */
.hero-img{
    position: relative;
    padding-top: 98px;
}
.hero-txt{
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    min-width: 420px;
    padding-left: 40px;
}
.hero-txt p{
    font-size: 30px;
    text-shadow:0 1px 6px rgba(0,0,0,0.35);
}
.hero-txt h2{
    font-size: 60px;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin: 0;
    text-shadow:0 2px 8px rgba(0,0,0,0.35);
}
.herovideo{
    position: relative;
    padding-top: 98px;
    max-width: 100%;
}
.sec-ttl {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    padding: 90px;
    color: #000;
}
.ttl{
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    padding: 90px 0 60px;
    color: #000;
}
/* =========================
動画MV（全幅）
========================= */
.mv-video{
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
    padding-top: 98px;
}
.mv-video__movie{
    width: 100%;
    height: 80vh;              /* 好きに調整 */
}
.mv-video__media{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* テキスト重ね */
.mv-video__txt{
    position: absolute;
    left: 6%;
    top: 55%;
    transform: translateY(-50%);
    color: #fff;
}
.mv-video__txt p{
    font-size: 30px;
}
.mv-video__txt h2{
    font-size: 60px;
    font-weight: bold;
}

/* ==================================================
ヘッダー（デスクトップファースト）
================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000; /* ドロワーより上 */
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
/* PC用：2列グリッド（ロゴ | 右側グループ） */
.header-inner {
    max-width: 1920px;
    margin: 0 auto;
    padding: 15px 30px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 30px;
    min-height: 98px;
}
/* 右側グループ（インスタ | 予約 | ハンバーガー） */
.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}
/* ロゴ */
.logo { 
    margin: 0; 
}
.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #000;
}
.logo-link img {
    width: 40px;
    height: auto;
}
.logo-txt {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0.08em;
}
/* ハンバーガーメニュー（全デバイス表示） */
.hamburger-menu {
    display: block;
    width: 30px;
    height: 24px;
    cursor: pointer;
    position: relative;
    z-index: 3000; /* ヘッダーと同じレイヤーで確実に上に */
}
.hamburger-menu .line {
    display: block;
    width: 100%;
    height: 3px;
    background: #111;
    border-radius: 2px;
    margin: 5px 0;
    transition: all .3s ease;
}
/* ×になるアニメーション */
.hamburger-menu.is-active .line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger-menu.is-active .line:nth-child(2) {
    opacity: 0;
}
.hamburger-menu.is-active .line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* インスタアイコン（全デバイス表示） */
.icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #111;
    transition: color .2s ease;
}
.icon-btn i {
    font-size: 40px;
}
.icon-btn:hover {
    color: #37474F;
}
/* 予約ボタン（全デバイス表示） */
.reserve-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 14px 28px;
    background: #37474F;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: background .2s ease, box-shadow .2s ease;
}
.reserve-btn i {
    font-size: 20px;
}
.reserve-btn:hover {
    background: #455A64;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}
/* オーバーレイ（暗幕） */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.35);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
    z-index: 999; /* ドロワーより下 */
    cursor: pointer;
}
.overlay.is-active {
    opacity: 1;
    visibility: visible;
}
/* ドロワーナビ（右から出てくる、ヘッダーの下レイヤー） */
.drawer-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100vh;
    background: #fff;
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 1000; /* ヘッダーより下、オーバーレイより上 */
    padding-top: 110px; /* ヘッダーの高さ分の余白 */
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
    overflow-y: auto;
    box-shadow: -4px 0 10px rgba(0,0,0,0.1);
}
.drawer-nav.is-active {
    transform: translateX(0);
}
/* ナビリスト */
.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.nav-link {
    font-size: 18px;
    font-weight: 500;
    color: #111;
    text-decoration: none;
    transition: color .2s ease;
    padding: 12px 20px;
    display: block;
    border-radius: 8px;
}
.nav-link:hover {
    background: #F5F7F8;
    color: #37474F;
}

/* ==================================================
タブレット（〜1199px）
================================================== */
@media screen and (max-width: 1199px) {
    .header-inner {
        padding: 10px 20px;
        min-height: 80px;
        gap: 20px;
    }
    .header-right {
        gap: 20px;
    }
    .drawer-nav {
        width: 35%;
        max-width: 350px;
        padding-top: 90px; /* タブレットのヘッダー高さ分 */
        padding-left: 30px;
        padding-right: 30px;
    }
    .reserve-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    .reserve-btn span {
        display: none; /* テキスト非表示 */
    }
    .reserve-btn i {
        font-size: 24px;
    }
}

/* ==================================================
スマホ（〜767px）
================================================== */
@media screen and (max-width: 767px) {
    .header-inner {
        padding: 10px 15px;
        min-height: 64px;
        gap: 15px;
    }
    .header-right {
        gap: 15px;
    }
    .logo-txt {
        font-size: 22px;
    }
    .icon-btn i {
        font-size: 32px;
    }
    .drawer-nav {
        width: 50%;
        max-width: 320px;
        padding-top: 75px; /* スマホのヘッダー高さ分 */
        padding-left: 20px;
        padding-right: 20px;
    }
    .nav-list {
        gap: 18px;
    }
    .nav-link {
        font-size: 16px;
        padding: 10px 15px;
    }
    .reserve-btn {
        padding: 10px 16px;
    }
    .reserve-btn i {
        font-size: 22px;
    }
    /* パララックス：スマホ用 */
    .sec-01-parallax {
        min-height: 400px;
        background-position: center center; /* 固定 */
    }
    .sec-01-parallax::before {
        display: none; /* パララックス用の::before を非表示 */
    }
    .parallax-inner {
        padding: 50px 20px;
    }
    .parallax-text {
        font-size: 13px;
        line-height: 1.9;
    }
}

/* ==================================================
フッター全体
================================================== */
.footer-main {
    position: relative;
    padding: 60px;
    background-image: url("../images/footer-logo.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain; /* 透かしロゴはcontainが合いやすい */
}
/* 中身 */
.footer-inner {
    grid-template-columns: 1fr 360px;
    grid-template-areas:"nav info""btn info";
    column-gap: 40px;
    row-gap: 22px;
    align-items: start;
}
.footer-nav {
    grid-area: nav;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-bottom: 60px;
}
.footer-logo {
    font-size: 26px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: .08em;
    color: #90A4AE;
}
/* グローバルナビ削除により以下は不要
.footer-menu{
    flex: 1;
}
.footer-menu .gnav {
    display: flex;
    justify-content: center;
    gap: 60px;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}
.footer-menu .gnav a {
    text-decoration: none;
}
.footer .nav-link{
    font-weight: 400;
    transition: color .2s ease;
}
.footer .nav-link:hover{
    color: #37474F;
    text-shadow: 
    0.02em 0 currentColor,
    -0.02em 0 currentColor;
}
*/

/* ---ボタン--- */
.footer-actions {
    grid-area: btn;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 330px;
}
.btn-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    height: 64px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.05em;
}
/* メール（白＋枠） */
.btn-mail {
    background: #fff;
    border: 1px solid #37474F;
    font-size: 18px;
}
.btn-mail:hover {
    background: #E3ECEF;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
/* 予約/料金（#37474F 固定） */
.footer-btn-reserve {
    background: #37474F;
    color: #fff;
    font-size: 24px;
}
.footer-btn-reserve:hover {
    background: #455A64;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}
/* ==================================================
右側店舗情報
================================================== */
.footer-info {
    grid-area: info;
    font-size: 12px;
    line-height: 1.9;
    justify-self: end;
    padding-left: 120px;
}
.footer-info p {
    margin: 0;
}
.footer-box {
    display: flex;
    justify-content: center;
}


/* ==================================================
コピーライト
================================================== */
.copyrigth {
    height: 30px;
    line-height: 30px;
    background: var(--color-footer);
    color: #fff;
    text-align: center;
    font-size: 12px;
    margin-top: 60px    ;
}

/* ==================================================
アニメーション関連のCSS
================================================== */
.reveal{
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 900ms ease, transform 900ms ease;
}
/* 表示 */
.reveal.is-show{
    opacity: 1;
    transform: translateY(0);
}
/* 画像だけ “ちょい上品” */
.reveal.reveal-img{
    transform: translateY(20px) scale(.98);
}
.reveal.reveal-img.is-show{
    transform: translateY(0) scale(1);
}
/* 左右（必要なら使う） */
.reveal.reveal-left{ transform: translateX(-20px); }
.reveal.reveal-right{ transform: translateX(20px); }
.reveal.reveal-left.is-show,
.reveal.reveal-right.is-show{transform: translateX(0);
}


/* セクション０２:7つの魅力（左動画sticky + 右スクロール） */
.sec-02 {
    display: flex;
    position: relative;
}
.left-sticky {
    width: 50%;
    background-color: #90A4AE;
}
.movie {
    position: sticky;
    top: 50px;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    box-sizing: border-box;
}
.image-video {
    max-width: 70%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}
.right-scrool {
    width: 50%;
    background-color: #F5F7F8;
}

/* ==================================================
7つの魅力：重なりの土台
================================================== */
.sec-02 .container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-bottom: 90px;
}
/* デフォルト（奇数）：画像は左カラム、テキストは右寄せ */
.sec-02 .container-img{
    grid-column: 1 / 2;
    grid-row: 1;
    width: 100%;
}
.sec-02 .txt-box{
    grid-column: 1 / 3;
    grid-row: 1;
    justify-self: end;
    width: 55%;
    z-index: 2;
}
/* 偶数番目：画像を右、テキストを左に */
.sec-02 .container:nth-child(even) .container-img{
    grid-column: 2 / 3;
    grid-row: 1;
}
.sec-02 .container:nth-child(even) .txt-box{
    justify-self: start;
}
.container-img {
    width: 100%;
}
.container-img img {
    width: 100%;          /* 親の幅いっぱいに */
    height: auto;         /* 縦横比を崩さない */
}
a img{
    display: block;
}
.txt-head {
    display: grid;
}
.container {
    display: flex;
    padding-bottom: 90px;
}
.txt-head .ja{
    display: inline-flex;      /* 線と文字を横並びにする */
    align-items: center;       /* 縦位置を揃える */
    gap: 15px;                 /* 線と文字の間隔 */
    color: #ADADAD;            /* 好きな色に */
    font-weight: bold;
}
/* 左の線 */
.ja::before {
    content: "";               /* 擬似要素を出すため必須 */
    display: inline-block;
    width: 60px;               /* 線の長さ */
    height: 1px;               /* 線の太さ */
    background: #ADADAD;  /* 文字色と同じ色にする */
}
.en {
    font-size: 50px;
    font-weight: 900;
    color: #90A4AE;
}
.txt-inner {
    background-color: #fff;
    position: relative;
    padding: 45px;
    width: 100%; /* Grid化により親の60%内で100% */
    height: 285px;
    display: flex;                 /* 中身をレイアウトできるようにする */
    align-items: center;           /* 縦方向の中央 */
    justify-content: center;       /* 横方向の中央 */
}
.txt-inner::before {
    content: "";               /* 擬似要素を出すため必須 */
    border: 2px solid #37474F;
    position: absolute;
    inset: 15px;
}
.txt-right {
    padding-left: 120px;
}
.nml-50 {
    margin-left: 0; /* Grid化により不要 */
}


/* ==================================================
ページごとのセクション０１（紹介)
================================================== */
.sec-01 {
    margin: 120px 90px 150px;
}
.introduction {
    display: flex;
}
.introduction-txt {
    align-content: center;
    padding-left: 45px;
    line-height: 1.8;
}


/* ======================================
Reservation Page 共通設定
====================================== */
/* ページ全体の背景と上下余白 */
.reservation {
    background: #f5f7f8;          /* ページ全体の薄いグレー背景 */
    padding: 98px 0 100px;        /* 上下の余白 */
}
/* コンテンツ幅制御 */
.reservation.wrapper {
  max-width: 1200px;            /* 最大幅 */
  margin: 0 auto;               /* 中央寄せ */
  padding: 0 20px;              /* SP用左右余白 */
}
/* 白帯・検索・プランの共通幅 */
.resv-container{
     max-width: 1500px;  /* ←ここが1500 */
    margin: 0 auto;     /* 中央寄せ */
    padding: 0 20px;    /* 画面が狭い時の左右余白 */
}
/* ページ冒頭の説明文 */
.page-lead {
    padding: 30px;
    margin: 90px auto 60px;
    height: 40px;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;      /* ← 縦中央 */
    background-color: #fff;
    border: 1px solid #90A4AE;
}
/* ======================================
レイアウト（左検索 / 右プラン）
====================================== */
.resv-layout {
    display: grid;
    grid-template-columns: 250px 1fr; /* 左：検索 / 右：一覧 */
    gap: 50px;
    align-items: flex-start;
}
/* ======================================
左：検索ボックス
====================================== */
.search-box {
    background: #fff;
    border: 1px solid #90A4AE;
    padding: 30px;
}
/* 検索タイトル（虫眼鏡付き） */
.search-ttl {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
    font-weight: bold;
}

/* 虫眼鏡アイコン色 */
.search-ttl i {
color: #90a4ae;
font-size: 20px;
}
/* 各入力フィールド共通 */
.field {
    margin-bottom: 15px;
}
/* ラベル */
.field label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
}
/* input / select 共通 */
.field input,
.field select {
    width: 100%;
    height: 40px;
    padding: 0 15px;
    border: 1px solid #90A4AE;
    border-radius: 10px;
    font-size: 14px;
    background: #F5F7F8;
    color: #37474f;
}
/* フォーカス時 */
.field input:focus,
.field select:focus {
    outline: none;
    border-color: #90a4ae;
    background: #fff;
}
/* 日付入力＋カレンダーアイコン */
.input-ic {
  position: relative;           /* アイコン重ねる用 */
}
/* カレンダーアイコン */
.input-ic i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #90a4ae;
    pointer-events: none;         /* クリック邪魔しない */
}
/* アイコン分の余白 */
.input-ic input {
    padding-right: 15px;
}
/* fieldの中でも「日付未定」だけを対象にする */
.field.field-checkbox{
    margin: 0px 0 15px;
}
/* 
labelは通常 .field label { display:block } が当たるため
ここで「横並び + 中央揃え」に上書きする
*/
.field.field-checkbox label.checkbox-wrap{
    display: inline-flex;        /* 横並び */
    align-items: center;         /* 縦中央揃え */
    gap: 6px;                   /* 四角と文字の間隔 */
    font-size: 14px;
    line-height: 1;              /* 日本語フォントの縦ズレ防止 */
    cursor: pointer;
    margin-bottom: 0;            /* .field label の余白を打ち消す */
}
/* 実際のcheckboxは非表示 */
.field.field-checkbox input{
    display: none;
}
/* 見た目用の四角 */
.field.field-checkbox .checkbox-custom{
    display: inline-block;       /* 幅・高さを効かせる */
    width: 22px;
    height: 22px;
    box-sizing: border-box;
    border: 3px solid #90A4AE;
    border-radius: 5px;
    flex-shrink: 0;              /* flexで潰れないように */
    position: relative;
}
/* チェックON時の背景 */
.field.field-checkbox input:checked + .checkbox-custom{
    background: #90A4AE;
}

/* チェックマーク */
.field.field-checkbox input:checked + .checkbox-custom::after{
    content: "";
    position: absolute;
    top: 2px;                    /* チェック位置 */
    left: 5px;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}
/* 人数（大人・子ども）横並び */
.field .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.select-wrap{
    position: relative;
    width: 100%;
}
.select-wrap select{
    appearance: none;
    -webkit-appearance: none;
    padding-right: 45px;
}
.select-wrap i{
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
/* 検索ボタン */
.btn-search {
    width: 100%;
    height: 48px;
    margin-top: 15px;
    border: none;
    border-radius: 10px;
    background: #37474f;
    color: #fff;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s;
}
/* hover時 */
.btn-search:hover {
    background: #455A64;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}
/* ---右：プラン一覧--- */
.resv-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}
/* プランカード全体 */
.plan-card {
    background: #fff;
    border: 1px solid #90A4AE;
    overflow: hidden;
}
/* プラン上部（色付き帯） */
.plan-head {
    background: #90a4ae;
    color: #fff;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;              /* ←ここ重要：詰まったら改行 */
}
/* 水色帯の下に濃い帯を追加（確実に出る） */
.plan-head{
  border-bottom: 10px solid #37474F; /* ←太さと色はここ */
}
/* プラン名 */
.plan-name {
    font-size: 18px;
    font-weight: 700;
    flex: 1 1 520px;              /* ←足りなければ折り返す */
    min-width: 0;
}
/* 価格 */
.plan-price {
    flex: 0 0 auto;
    white-space: nowrap;          /* ←（1名/2名…）を折り返さない */
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
}
.plan-price strong {
    font-size: 32px;
    font-weight: 900;
}
.plan-price span{
    position: relative;
    top: -2px;
}
/* 本文エリア */
.plan-body {
    padding: 60px 30px 30px;
    display: grid;
    grid-template-columns: 500px 1fr;
}
/* メイン画像 */
.plan-img img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    margin: 0;
}
/* サムネイル */
.plan-thumbs {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}
/* サムネ共通 */
.plan-thumbs .plan-thumb{
    display: block;
    width: 160px;        /* ここは好みで調整 */
    height: 90px;        /* 16:9にしたいなら widthに合わせて */
    object-fit: cover;
    cursor: pointer;
    /* 動きのための準備 */
    transform: translateY(0) scale(1);
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease, outline-color .18s ease;
    opacity: .85;
    outline: 2px solid transparent;
    outline-offset: 3px;
}
/* 触った（hover）時：少し浮く＋少し明るく */
.plan-thumbs .plan-thumb:hover{
    opacity: 1;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 18px rgba(0,0,0,.18);
}
/* クリック中（選択中）＝ is-active：枠＋しっかり浮く */
.plan-thumbs .plan-thumb.is-active{
    opacity: 1;
    transform: translateY(-2px) scale(1.03);
    outline-color: #90A4AE;              /* MU-ONカラー */
    box-shadow: 0 12px 22px rgba(0,0,0,.22);
}
/* プラン説明文 */
.plan-txt{
    padding-left: 30px;
}
.plan-desc {
    line-height: 1.8;
    margin-bottom: 30px;
}
/* 特徴見出し */
.plan-subttl {
    font-size: 14px;
    font-weight: 700;
    margin: 30px 0 6px;
}
/* 特徴リスト */
.plan-points {
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.7;
}
/* 特徴エリア全体 */
.plan-features{
    position: relative;
    margin: 30px 0;
}
/* 上下の点線 */
.plan-features::before,
.plan-features::after{
    content: "";
    display: block;
    border-top: 2px dotted #90A4AE;
    width: 300px;
}
/* 予約ボタン */
.plan-btn{
    display: flex;
    justify-content: flex-end; /* ← 右寄せ */
}
.btn-detail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 45px;
    padding: 0 25px;
    border-radius: 999px;
    background: #37474f;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}
.btn-detail:hover{
    background: #455A64;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}
/* 右の >> アイコン */
.btn-detail span{
    display: inline-flex;        /* spanもflexに */
    align-items: center;
    font-size: 30px;
    font-weight: 200;
    line-height: 1;              /* 行高のズレ防止 */
    position: relative;
    top: -2px;
}
/* ============== 選べるお部屋（カンプ完全寄せ） ============== */
.plan-rooms{
    margin: 30px 60px 45px;
    padding: 30px;
    background: #EAEAEA;
}
/* 上の帯（濃グレー＋下に薄グレー帯） */
.rooms-ttl{
    margin: 0 0 22px;
    padding: 12px 0;
    background: #5E5E5E;
    color: #fff;
    font-weight: 700;
    text-align: center;
    border-bottom: 10px solid #AEAEAE;
}
/* 1カード */
.room-mini{
    margin-top: 30px;
    background: #fff;
    border: 2px solid #90A4AE;
    border-radius: 10px;
    overflow: hidden; /* 点線を中で綺麗に */
}
/* ===== 点線は header の下に固定する（消えない版） ===== */
.room-mini-head{
  border-bottom: 2px dotted #90A4AE; /* 点線 */
}
/* 見出し行 */
.room-mini-head{
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 15px;
}
/* 丸 */
.circle-arrow{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #90A4AE;
    flex-shrink: 0;        /* ← 親が狭くなっても縮まないように */
}
/* > */
.circle-arrow i{
    color: #fff;
    font-size: 18px;
    line-height: 1;
    position: relative;
    left: 1px;
}
/* 部屋名 */
.room-mini-title{
    margin: 0;
    font-size: 18px;
    font-weight: 800;
}
/* 中身：画像＋価格＋ボタン */
.room-mini-body{
    display: grid;
    grid-template-columns:
    minmax(360px, 520px)  /* 左（画像）：520固定だと厳しいので可変に */
    minmax(240px, 1fr)    /* 中（価格）：最低幅を確保しつつ伸びる */
    auto;                 /* 右（ボタン）：中身の幅 */
    align-items: center;
    padding: 18px 18px 16px;
}
/* 左：画像＋説明 */
.room-mini-left{
    min-width: 0;
}
/* 画像3枚 */
.room-mini-imgs{
    display: flex;          /* ← gridやめる */
    gap: 15px;
}
/* 画像は「固定幅＋比率維持」 */
.room-mini-imgs img{
    width: 120px;           /* ← 本来の画像幅 */
    aspect-ratio: 120 / 79; /* ← 比率を明示 */
    height: auto;           /* ← 高さは自動 */
    object-fit: cover;
    border: 1px solid #90A4AE;
    margin: 0;
}
/* 画像下の説明（カンプの2行） */
.room-mini-info{
    display: grid;
    grid-template-columns: 100px 300px;
    gap: 22px;
    margin-top: 10px;
    color: #5E5E5E;
    font-size: 14px;
}
.room-mini-info p{
    margin: 0;
    white-space: nowrap;           /* ← テキストを 必ず1行で表示 */
    overflow: hidden;              /* ← 親要素の幅を超えた文字を 見せない */
    text-overflow: ellipsis;       /* ← はみ出た末尾に … を表示 */
}
/* 中：価格（注釈→金額） */
.room-mini-pricebox{
    justify-self: start;
    text-align: left;
}
.room-mini-note{
    margin: 0 0 10px;
    font-size: 18px;
}
.room-mini-price{
    margin: 0;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.05;
}
/* 右ボタン（カンプっぽく大きめ） */
.btn-mini{
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 58px;
    padding: 0 30px;
    border-radius: 999px;
    background: #37474F;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    white-space: nowrap;
}
.btn-mini span{
    display: inline-flex;
    align-items: center;
    font-size: 25px;
    line-height: 1;
    position: relative;
    top:-2px;
}
.btn-mini:hover{
    background: #455A64;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}
/* ==================================================
共通コンポーネントここまで
================================================== */


/* ==================================================
TOPページ
================================================== */
.mv{
    position: relative;   /* ← これがないと absolute が迷子になる */
    margin-top: 0;
    padding-top: 0;
    overflow: hidden;     /* ← スマホではみ出し防止 */
}
.mv-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mv-txt{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-weight: bold;
    letter-spacing: .08em; /* 文字間0.08倍広げる */
    color: #fff;
    text-shadow:
    0 0 5px  rgba(255,255,255,0.8),
    0 0 15px rgba(255,255,255,0.6),
    0 0 30px rgba(255,255,255,0.4);
}
.mv-txt h2 {
    font-size: 60px;
}
.mv-txt p {
    font-size: 36px;
}
/* ニュース */
.news-row {
    display: flex;
    align-items: center;
    gap: 90px;
    font-size: 30px;
}
.news-list dt {
    position: absolute;
    padding: var(--space-unit) 0;
    font-size: 14px;
}
.news-list dd {
    padding: var(--space-unit) 0 var(--space-unit) 10em;
    border-bottom: 1px dotted var(--color-text);
    font-size: 14px;
}
.news-list dd a {
    text-decoration: none;
    color: var(--color-link);
}
.news-list dd a:hover {
    text-decoration: underline;
    color: var(--color-text);
}
.new {
    display: inline-block;
    width: 37px;
    height: 19px;
    line-height: 19px;
    border-radius: 3px;
    background: var(--color-accent);
    text-align: center;
    font-size: 12px;
    color: var(--color-white);
    margin-left: 10px;
}
/* セクション０１夜景 */
.sec-01-parallax {
    position: relative;
    height: 353px;
    background-image: url("../images/top-sec01-img01.webp");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    overflow: hidden;
}
.sec-01-parallax::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/nightview_parallax.webp"); /* ← 縦長画像 */
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    transform: translateY(0);
    will-change: transform;
    z-index: 0;
}
.parallax-inner {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.parallax-text {
    color: #fff;
    font-size: 16px;
    line-height: 2;
    text-align: center;
    max-width: 900px;
    text-shadow:
    0 0 12px rgba(0, 255, 255, 0.75),
    0 0 50px rgba(0, 80, 255, 0.4),
    0 0 10px rgba(255, 255, 255, 0.35);
}
/* セクション０３画像 */
/* カルーセル全体を囲むエリアの設定 */
.carousel-area {
    overflow: hidden; /* ★ はみ出た画像は非表示にする */
    padding: 60px 0; /* 上下の余白 */
    white-space: nowrap; /* 子要素（画像）が改行されないようにする */
    background-color: #fff;
    margin-bottom: 90px;
}
/* 画像をすべて横に並べるトラックの設定 */
.slide-track {
    display: flex;
    width: max-content;     /* 中身の幅に合わせて伸びる */
    animation: scroll 60s linear infinite; /* ★ 30秒かけて無限ループで移動 */
}
/* トラック内の画像の設定 */
.slide-track img {
    height: 260px; /* ★ 画像の高さ */
    width: auto;
    margin: 0 15px; /* 画像間のスペース */
    display: block;
    flex: 0 0 auto; /* 縮まない */
    object-fit: cover;
}
/* アニメーションの定義 */
@keyframes scroll {
    /* 開始: 0% の位置から */
    0% {
        transform: translateX(0);
    }
    /* 終了: トラック全体の半分まで移動（無限ループのトリック） */
    100% {
        transform: translateX(-50%); 
    }
}
/* セクション０４アクテビティ */
.box-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}
.box {
    width: calc(50% - var(--space-unit));
    display: flex;
    align-items: stretch;
    margin-bottom: 30px;
    background: #fff;
}
.box-img {
    width: 30%;
}
.box-content {
    display: flex;
    align-items: center;
    padding: 0 var(--space-unit);
    width: 70%;
    color: var(--color-text);
}
.box-txt {
    font-size: 12px;
    line-height: calc(26 / 12);
}
/* アニメーション関連のCSS */
.f-up {
    opacity: 0;
}
.f-up.fadeup {
    animation: fadeupanime 1s forwards;
}
/* アニメーションの定義 */
@keyframes fadeupanime {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* セクション０５ */
/* アクセス */
.sec-05 {
    text-align: center;
    padding-bottom: 90px;
    max-width: 1400px;
    margin: 0 auto;
}

/* チェックインの流れ */
.checkin-box ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.checkin-box li {
    display: flex;
    border-bottom: 1px solid #37474F;
    color: #000;
    padding: 15px 0;
    line-height: 1.5;
    align-items: center;
}
.checkin-box li h3 {
    background: #90A4AE;
    font-weight: 500;
    padding: 25px 15px;
    box-sizing: border-box;
    width: 355px;
    height: 166px;
    font-size: 24px;
    text-align: left;
    margin: 0;
}
.checkin-box li span {
    font-size: 18px;
    margin-bottom: 10px;
}
.checkin-box li p {
    margin: 0;
    flex: 1;
    text-align: left;
    padding-left: 90px;
}


/* ==================================================
stayページ
================================================== */
/* セクション０３注意事項 */
.sec-03{
    height: auto;
    background-color: #90A4AE;
    margin-bottom: 60px;
    padding-bottom: 90px;
}
.notes-txt{
    background-color: #fff;
    line-height: 1.5;
    align-content: center;
    padding: 30px 60px;
    border-radius: 16px;
    max-width: 1400px;
    margin: 0 auto 45px;
}
.t-bold{
    font-weight: bold;
}


/* ==================================================
roomsページ
================================================== */
/* セクション０２〜０５ room-card（1部屋のかたまり）*/
.room-card{
    max-width: 900px;
    margin: 120px auto;
    text-align: center;
}
/* slider 全体 */
.rooms-slider{
    position: relative;
    width: 100%;
}
/* 表示エリア（はみ出し隠す） */
.slider-viewport{
    overflow: hidden;
}
/* 横並びで動かす本体 */
.slider-track{
    display: flex;
    transition: transform 0.45s ease;
    will-change: transform;
}
/* 各スライド画像 */
.slider-track img{
    width: 100%;
    flex: 0 0 100%;
    object-fit: cover;
    display: block;
    user-select: none;
}
/* Serviceスライダーだけ比率固定を解除 */
.sec-02 .service-slider .slider-track img{
    aspect-ratio: auto;
    height: auto;
}
/* 矢印 */
.slider-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.45);
    color: #fff;
    font-size: 30px;
    display: grid;
    place-items: center;
    cursor: pointer;
    /* 通常は非表示 */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
/* ホバー時に表示 */
.rooms-slider:hover .slider-arrow{
    opacity: 1;
    pointer-events: auto;
}
.slider-arrow.prev{ left: 30px; }
.slider-arrow.next{ right: 30px; }
/* ドット */
.slider-dots{
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
}
.slider-dot{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #d0d7db;
    cursor: pointer;
}
.slider-dot.is-active{
    background: #90A4AE;
}
/* 部屋情報 */
.room-info{
    margin: 60px auto 60px;
    max-width: 500px;
    border-top: 1px solid #90A4AE;
    border-bottom: 1px solid #90A4AE;
    padding: 30px 0;
}
.room-info dl{
    display: grid;
    gap: 10px;
}
.room-info div{
    display: grid;
    grid-template-columns: 80px 1fr;
    text-align: left;
}
.room-info dd{
    margin: 0;
}
.room-info p{
    padding: 15px;
    text-align: left;
    line-height: 1.8;
}
/* ボタン */
.room-btn{
    display: inline-block;
    padding: 20px 52px;
    background: #37474F;
    color: #fff;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
}
.room-btn:hover{
    background: #455A64;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}
/* セクション０６ */
.sec-06{
    padding-bottom: 60px;
}
.room-detail-title{
    font-size: 30px;
    font-weight: bold;
    padding: 90px 0 30px;
    text-align: center;
}
.room-details{
    width: 1000px;
    height: 750px;
    background-color: #fff;
    border-radius: 16px;
    padding: 0 150px 90px;
    margin: 0 auto;
}
.detail-row{
    display: grid;                      /* dt / dd を横並び */
    grid-template-columns: 120px minmax(0, 500px);   /* 左：項目名 / 右：内容 */
    gap: 45px;
    padding: 30px 15px;                    /* 行の上下余白 */
    border-bottom: 1px solid #90A4AE;   /* ★行の区切り線 */
    line-height: 1.2;
}



/* ==================================================
mealページ
================================================== */
/* セクション０２ */
.meal-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 370px));
    gap: 45px 30px;
    justify-content: center;
}
.item{
    width: 370px;
    height: auto;
    padding-bottom: 30px ;
    background-color: #fff;
}
.item img{
    width: 280px;
    height: auto;
    margin: 30px auto;
}
.item-txt{
    display: flex;
    justify-content: center;
}
.item p{
    font-size: 18px;
    font-weight: medium;
    text-align: center;
    width: 250px;
}
.flame{
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;          /* 画面狭い時に折り返すなら */
/* ★行を上に詰める（縦の余白が増えるのを止める） */
    align-content: flex-start;
}
.meal-container{
    margin-top: 150px;          /* グリッドの下の余白感 */
    width: min(800px, 100%);
}
/* 「画像に少し文字を被せる」*/
.meal-container .txt-head .en{
    position: relative;
    margin-bottom: -20px;      /* ここで“少し被せる” */
    z-index: 2;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
}
/* 本文エリア */
.meal-body{
    padding: 45px 0 0;
    text-align: center;
}
.meal-ttl{
    font-size: 20px;
    font-weight: bold;
    color: #000;
}
.meal-lead{
    line-height: 1.8;
    color: #000;
    margin: 30px 20px 60px;
    text-align: left;
}
/* mealだけ：スライダーの親幅を 100% にする */
#dinner .container-img{
    width: 100%;
}
/* mealの画像エリア（夕食も朝食も共通で高さを揃える） */
.meal-container .container-img{
    height: 570px;          /* ←夕食スライダーの見た目に合わせて調整 */
    overflow: hidden;
    }
/* 中の画像はエリアいっぱいに見せる */
.meal-container .container-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* アコーディオン */
.meal-acc{
    width: min(760px, 100%);
    margin: 0 auto;
}
/* ボタン（スクショの濃いグレーの丸角） */
.meal-acc-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 44px;
    padding: 0 26px;
    border: none;
    border-radius: 10px;
    background: #37474F;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}
.meal-acc-btn:hover{
    background: #455A64;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}
.meal-acc-btn i{
    transition: transform .25s ease;
}
/* 開いたら矢印回転 */
.meal-acc-btn[aria-expanded="true"] i{
    transform: rotate(180deg);
}
/* パネル */
.meal-acc-panel{
    border: 2px solid #90A4AE;
    border-radius: 20px;
    padding: 30px 15px;
    background: #fff;
    text-align: left;
}
/* 見出し */
.meal-planbox h4{
    font-size: 20px;
    font-weight: bold;
    margin: 30px 0 10px;
    line-height: 2;
}
/* リスト */
.meal-planbox ul{
    margin: 0 0 10px 1.2em;
    padding: 0;
    line-height: 1.8;
}
.meal-planbox p{
    margin: 8px 0;
    line-height: 1.8;
}
.meal-abc{
    margin: 8px 0 10px 1.4em;
    line-height: 1.8;
}
/* アレルギータグ全体 */
.allergy-tags{
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 5px 0 10px;
}
/* 各タグ */
.allergy-tags span{
    display: inline-flex;
    align-items: center;
    padding: 2px 10px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.6;
    border: 1px solid #90A4AE;
    border-radius: 999px;    /* チップっぽく */
    background: rgba(144,164,174,.12); /* うっすら */
    letter-spacing: .03em;
}
.allergy-tags span::before{
    content: none;
}
.pet-menu-line{
    display: flex;
    align-items: center;
    gap: 10px;
}
.pet-type{
    font-weight: 700;
    white-space: nowrap;
}
.pet-dishname{
    line-height: 1.8;
}
.menu-head{
    font-size: 20px;
    font-weight: bold;
}
.flame--meal{
    margin-bottom: 60px;
}
/* セクション０３アレルギー */
.ttl-meal{
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    padding: 60px 0 15px;
}
.ttl-p{
    text-align: center;
    padding-bottom: 60px;
}


/* ==================================================
activityページ
================================================== */
.workshop{
    padding: 0px 90px 90px;
}
.workshop-inner{
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
/* 上段：説明 + 写真 */
.workshop-top{
    display: grid;
    grid-template-columns: 6fr 4fr; /* ← 左6：右4 */
    align-items: center;
}
.workshop-txt{
    padding: 0 0 15px 60px;
    line-height: 1.8;
}
.workshop-badges{
    list-style: none;
    padding-left: 60px;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.badge{
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: #90A4AE;
    color: #fff;
    font-size: 12px;
    line-height: 1;
}
/* 右：写真2枚 */
.workshop-img{
    display: grid;
    grid-template-columns: 1fr 1fr; /* 写真は均等 */
    gap: 0;                          /* くっつける */
    max-width: 720px;               /* ← ここで“ほどよく大きく” */
    justify-self: end;              /* 右寄せで重心合わせ */
    overflow: hidden;
    gap: 30px;
}
.workshop-img img{
    width: 100%;
    aspect-ratio: 1 / 1; /* 正方形寄せ */
    object-fit: cover;
    display: block;
}
/* Step流れ */
.step-list{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)); /* 3つ横並び、潰れ防止 */
    gap: clamp(24px, 3vw, 60px);
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px 80px;
}
.step-item{
    min-width: 0; /* ← グリッド内のはみ出し対策 */
}
.step-ttl{
    font-size: 40px;
    font-weight: bold;
}
.step-body{
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 260px);
    gap: clamp(14px, 2vw, 28px);
    align-items: center;
}
.step-img img{
    width: 100%;
    aspect-ratio: 1 / 1;  /* 正方形 */
    object-fit: cover;
    display: block;
}
.step-txt{
    display: flex;
}
.step-txt p{
    margin-right: 15px;
    line-height: 2;
}
.step-arrow{
    display: inline-block;
    font-size: 32px;          /* 矢印サイズ */
    color: #37474F;
    margin-top: 30px;
}
.activity-block{
    padding: 0px 0 120px;
}
.activity-img{
    max-width: 1000px;
    margin: 0 auto 30px;
}
.activity-img img{
    width: 100%;
    height: auto;
    display: block;
}
.activity-txt{
    max-width: 720px;
    margin: 0 auto 15px;
    text-align: center;
    line-height: 2;
}
.activity-badges{
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}


/* ==================================================
Q&Aページ
================================================== */
.faq .txt-head{
    justify-items: center;
    text-align: center;
    padding: 150px 0;
}
.faq-nav{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 45px;
    background: #90A4AE;
    width: 100%;
    height: 180px;
}
.faq-nav a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    width: 300px;
    height: 60px;
    font-size: 18px;
    text-decoration: none;
    transition: 0.2s;
}
.faq-nav a:hover{
    background: #E3ECEF;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
/* Q＆A本体 */
.faq-ttl{
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    color: #90A4AE;
    padding: 120px 0 60px;
}
.faq-section {
    max-width: 1050px;
    margin: 0 auto;
}
/* Q */
.faq-q {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 2px dotted #90A4AE;
    cursor: pointer;
    position: relative;
    font-weight: normal;
}
/* 矢印 */
.faq-icon {
    margin-left: auto;
    transition: transform .5s;
}
/* A */
.faq-a {
    display: none;
    padding: 20px 0 20px 50px;
    position: relative;
    line-height: 1.8;
    font-weight: bold;
}
/* A の文字を自動生成 */
.faq-a::before {
    content: "A";
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 1.8rem;
    font-weight: bold;
    color: #90A4AE;
}
/* 開いた状態 */
.faq.open .faq-a {
    display: block;
}
.faq.open .faq-icon {
    transform: rotate(180deg);           /* 180度回転させる */
}
.faq-section:last-of-type {
    padding-bottom: 150px;
}
/* FAQナビ内のアイコンをすべて同じサイズに */
.faq-nav-btn i {
    font-size: 26px;
    margin-right: 8px;
    position: relative;
    top: 1px;          /* 文字との縦ズレ微調整 */
}
/* FAQ 質問アイコン（左側） */
.faq-q > i:not(.faq-icon) {
    font-size: 22px;
    margin-right: 15px;
}
/* FAQリンク専用 */
.faq-link{
    color: inherit;                      /* 周囲の文字色に合わせる */
    text-decoration: none;               /* デフォルト下線は消す */
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
    transition: opacity .2s ease;
}
.faq-link:hover{
    opacity: .7;
}

/* ==================================================
スマホ（〜767px）
================================================== */
@media screen and (max-width: 767px) {
/* reservationページ ===================== */
/* 全体レイアウト　左（検索）＋右（プラン） → 縦並び*/
.resv-layout {
    grid-template-columns: 1fr;   /* 1カラム */
    gap: 30px;
}
/* 検索ボックスを一番上に */
.resv-side {
    order: -1;
}
/* ページ冒頭の説明文 */
.page-lead {
    margin: 70px auto 40px;
    height: auto;
    padding: 20px;
    font-size: 15px;
    line-height: 1.6;
}
/* プランカード共通 */
.plan-card {
    overflow: hidden;
}
/* プラン上部（色付き帯）タイトル＋価格を縦並びに */
.plan-head {
    flex-direction: column;       /* 縦並び */
    align-items: flex-start;
    gap: 10px;
}
.plan-name {
    flex: none;            /* ← これが最重要 */
    width: 100%;
}
.plan-price{
    flex: none;            /* 念のため */
    width: 100%;
    padding-top: 0;        /* 余計なズレ防止 */
    justify-content: flex-start;
}
.plan-price strong {
    font-size: 26px;
}
.plan-price span {
    font-size: 13px;
}
/* プラン本文　画像＋テキスト → 縦並び */
.plan-body {
    grid-template-columns: 1fr;   /* 1カラム */
    padding: 20px;
}
.plan-txt {
    padding-left: 0;
    margin-top: 20px;
}
.plan-desc {
    font-size: 14px;
    line-height: 1.8;
}
/* サムネイル　横スクロール対応 */
.plan-thumbs{
    margin-top: 12px;
    padding: 10px 8px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: visible; /* ← hiddenやめる（重要） */
    -webkit-overflow-scrolling: touch;
    scroll-padding: 10px;
}
.plan-thumbs li{
    flex: 0 0 auto;
}
.plan-thumbs .plan-thumb{
    width: 120px;
    height: 72px;
    object-fit: cover;
    cursor: pointer;
    opacity: .9;
/* outlineやめる */
    border: 3px solid transparent; /* ←これが枠になる */
    box-sizing: border-box;
    transition: transform .18s ease, opacity .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.plan-thumbs .plan-thumb:active{
    transform: scale(.98);
}
.plan-thumbs .plan-thumb.is-active{
    opacity: 1;
    border-color: #90A4AE; /* ←選択枠 */
    box-shadow: 0 10px 18px rgba(0,0,0,.18);
}
/* プラン内 予約ボタン */
.plan-btn {
    justify-content: center;      /* 中央寄せ */
}
.btn-detail {
    width: 100%;
    justify-content: center;
    height: 48px;
    font-size: 15px;
}
/* 「選べるお部屋」エリア */
.plan-rooms{
    margin: 18px 14px 30px; /* ← 60pxはSPだと広すぎ */
    padding: 18px;
}
.rooms-ttl{
    margin: 0 0 16px;
    padding: 12px 10px;
    border-bottom: 8px solid #AEAEAE; /* ← 10pxだと少しゴツいので軽く */
}
.room-mini{
    margin-top: 18px;
    border-radius: 16px;
}
.room-mini-head{
    padding: 12px 14px;
    gap: 10px;
}
.room-mini-title{
    font-size: 20px;
    line-height: 1.2;
}
.room-mini-body{
/* 3列 → 1列に変更 */
    grid-template-columns: 1fr;
/* 中身を縦に並べるので、上下余白を整える */
    padding: 14px;
    row-gap: 12px;  /* ← 縦の間隔 */
}
.room-mini-imgs{
    gap: 10px;
/* 横スクロール */
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    padding: 6px 2px 8px;
}
/* サムネ画像：押しやすいサイズ＋比率固定 */
.room-mini-imgs img{
    flex: 0 0 auto;      /* ← 縮まない */
    width: 220px;
    height: 140px;
    aspect-ratio: auto;  /* ← SPは width/height で固定するので不要 */
    object-fit: cover;
    border: 1px solid rgba(144,164,174,.7);
}
.room-mini-info{
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 8px;
    font-size: 14px;
}
.room-mini-info p{
    white-space: normal;  /* ← SPでは1行固定だと読みにくいので解除 */
    overflow: visible;
    text-overflow: clip;
}
.room-mini-pricebox{
    justify-self: stretch;
    text-align: left;
    padding-top: 6px;
}
.room-mini-note{
    margin-bottom: 6px;
}
.room-mini-price{
    font-size: 32px;
}
.btn-mini{
    width: 100%;
    justify-content: center;
    height: 45px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 16px;
    margin-top: 10px;
}
.btn-mini span{
    font-size: 22px;
    top: -1px;
}

/* メインビジュアル ===================== */
.mv{
    padding-top: 64px; /* ← ヘッダーの高さに合わせて調整（例） */
}
.mv-img{
    width: auto;
    height: 200px;
}
.mv-txt{
    top: calc(50% + 32px); /* padding-topの半分だけ下に補正 */
}
.mv-txt h2{
    font-size: 20px;
}
.mv-txt p{
    font-size: 16px;
}
.hero-img{
    padding-top: 64px;
}
.hero-img img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
/* テキストをスマホ用に軽く＆はみ出し防止 */
.hero-txt{
    left: 16px;
    right: 16px;      /* 左右を固定で確保してはみ出しゼロ */
    top: 45%;
    transform: translateY(-45%);
    min-width: 0;
    width: auto;
    padding-left: 0;
    text-align: left;
}
.hero-txt p{
    font-size: 14px;
    margin: 0 0 6px;
}
.hero-txt h2{
    font-size: 20px;
    line-height: 0.9;
    letter-spacing: 0.03em;
}

/* MV動画全体 */
.mv-video{
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-top: 64px;              /* 固定ヘッダー分 */
    overflow: visible;              /* ★下に被せるため visible */
    }
/* 動画エリア：主役を守る */
.mv-video__movie{
    width: 100%;
    height: 40vh;
    min-height: 260px;
}
.mv-video__media{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
/* 文字エリア（画像の下） */
.mv-video__txt{
    position: relative;             /* absoluteやめる */
    margin-top: 10px;              /* ★ここで少しだけ被せる */
    padding: 18px 16px 20px;
    background: rgba(0,0,0,.18);    /* 薄めグレー */
    backdrop-filter: blur(1.5px);
    color: #fff;
}
/* 小見出し */
.mv-video__txt p{
    margin: 0 0 6px;
    font-size: 14px;
    letter-spacing: .06em;
}
/* メインコピー */
.mv-video__txt h2{
    margin: 0;
    font-size: 32px;
    line-height: 1.1;
}
/* 横スクロール対策 */
html, body{
    overflow-x: hidden;
}
/* ニュース */
.news{
    position: relative;
    z-index: 10;
    padding-bottom: 20px;
    background: #fff;     /* ←白で面を作って埋もれ防止 */
}
.news-row {
    flex-direction: column;
    gap: 0px;
    font-size: 20px;
}
.news-list dd{
    padding: 15px 0 15px 90px;
}
.news .sec-ttl::after{
    display: none;
}
.news .sec-ttl{
    padding-right: 0;
}

/* 自動スライドから横スライドへ */
/* スライダー全体（表示枠） */
.carousel-area{
    overflow-x: auto;                 /* ← 横スクロールを有効にする */
    overflow-y: hidden;               /* ← 縦スクロールはさせない */
    -webkit-overflow-scrolling: touch;/* ← iPhoneでスムーズに */
}
/* 画像を横並びにしているラッパー */
.carousel-track{
    display: flex;                    /* ← 横並びにする */
    gap: 16px;                        /* ← 画像の間隔 */
    transform: none !important;       /* ← JSやCSSの自動移動を止める */
    animation: none !important;       /* ← CSSアニメーションも止める */
}
/* 各画像 */
.carousel-track img{
    flex: 0 0 85%;                    /* ← 1枚が画面の85%幅で表示 */
    height: auto;
}


/* mealページ ===================== */
/* まずははみ出し対策（右端切れ防止にも効く） */
*, *::before, *::after { box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }
/* グリッド本体（PCの基準） */
.meal-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 32px;                 /* 縦 横 の間 */
    width: min(980px, 100%);        /* ←ここで “全体を小さく” する */
    margin: 0 auto;
    padding: 0 24px;                /* 画面端の余白 */
}
.item,
.meal-container{
    width: 100%;
    max-width: 320px;   /* ← スマホでの上限 */
    margin: 0 auto;
}
/* グリッドは1列 */
.meal-grid{
    grid-template-columns: 1fr;
    gap: 14px;
    justify-items: stretch;
}
/* カードを横並びリストに */
.item{
    width: 100%;
    height: auto;
    padding: 14px 16px;
    display: grid;
    grid-template-columns: 96px 1fr 28px; /* サムネ / タイトル / ▼ */
    align-items: center;
    column-gap: 16px;
    border-radius: 10px;
    background: #fff;
}
/* サムネ固定サイズ */
.item img{
    width: 96px;
    height: 64px;
    margin: 0;
    object-fit: cover;
    border-radius: 6px;
}
/* タイトル */
.item p{
    width: auto;
    margin: 0;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
}
/* 右の矢印（今のHTMLのアイコンに合わせてどっちか使う） */
.item .arrow,
.item i,
.item .fa-angle-down{
    justify-self: end;
    font-size: 20px;
}
.item-txt{
    display: contents; /* ← 中身をグリッドに流し込む（最強） */
}
#dinner,
.meal-container:first-of-type{
    margin-top: 60px;
}
/* mealの画像エリアを固定高さにしない */
.meal-container .container-img{
    height: auto !important;
}
.pet-menu-line{
    display: block;   /* ← flexやめる */
}
.pet-type,
.menu-head{
    display: block;
    margin-bottom: 4px;
}
.t-flex .t-bold{
    display: block;      /* ← これで必ず改行される */
    margin-bottom: 8px;
}
.t-flex .t-regular{
    display: block;      /* 念のため（なくてもOK） */
}

/* activityページ ===================== */
.workshop{
    padding: 0 15px 60px;
}
/* 上段を1列にして、順番を入れ替え */
.workshop-top{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 15px;
}
/* 写真を一番上に */
.workshop-img{
    order: 1;
    justify-self: center;
    width: 100%;
    max-width: 520px;
}
/* 文章を次に */
.workshop-lead{
    order: 2;
}
/* バッジは文章の下に */
.workshop-badges{
    order: 3;
    justify-content: center;
    margin-top: 10px;
    padding: 0;
}
.workshop-txt{
    text-align: center;
    margin: 0;
    padding: 0;
}
/* Step流れ０１〜０３ */
/* 3列→1列にして、左右余白を軽くする */
.step-list{
    grid-template-columns: 1fr;
    padding: 0 15px 60px;
    gap: 15px;
}
.step-ttl{
    font-size: 26px;
    font-weight: bold;
    text-align: center;
}
/* 画像→説明 を縦並び */
.step-body{
    grid-template-columns: 1fr;
    gap: 14px;
    justify-items: center;
    align-items: start;
}
/* 正方形を崩さずサイズだけ抑える */
.step-img img{
    width: 100%;
    max-width: 180px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin: 0 auto;
    display: block;
}
/* 説明＋矢印を縦並び（スマホはこれが一番見やすい） */
.step-txt{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}
.step-txt p{
    margin: 0;
    line-height: 1.9;
}
.step-arrow{
    margin-top: 0;
    font-size: 28px;
    transform: rotate(90deg); /* ▶を下向きに見せる */
    display: inline-block;
}

/* Q＆Aページ ===================== */
.page-faq .hero-txt{
    top: 80%;
    left: 10%;
    transform: translateY(-40%);
}
.page-faq .hero-txt h2{
    font-size: 22px;
    letter-spacing: 0.05em;
}
.faq .txt-head{
    padding: 45px 0;
}
.faq-ttl{
    font-size: 24px;
    padding-top: 60px;
}
.faq{
    padding: 0 20px;
}
.faq-nav{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 20px 15px;
    height: auto;
}
.faq-nav-btn{
    flex-direction: column;
    gap: 5px;
    min-height: 60px;
}
.faq-nav a{
    width: 100%;
    height: auto;  
    font-size: 14px;
    min-height: 70px;      /* 最低の高さ指定 */
    padding: 10px 8px;
    display: flex;         /* inline-flex → flex */
    flex-direction: column;/* 縦並び */
    justify-content: center;
    align-items: center;
    gap: 6px;
    text-align: center;
    /* 文字切れ防止 */
    white-space: normal;   /* 折り返しOK */
    word-break: keep-all;  /* 日本語を変に崩さない */
}
.faq-nav i{
    font-size: 24px;
}
.faq-section:last-of-type {
    padding-bottom: 90px;
}
}


/* ==================================================
レスポンシブ：タブレット（〜1199px）
================================================== */
@media screen and (max-width: 1199px) {
/* 共通コンポーネント ===================== */
/* セクション02 */
.sec-02 {
    flex-direction: column;
}
.left-sticky {
    width: 100%;
    min-height: 50vh;
}
.movie {
    position: static;
    height: 50vh;
    padding: 30px;
}
.right-scrool {
    width: 100%;
}
.sec-02 .container {
    grid-template-columns: 1fr;
    padding-bottom: 60px;
}
.sec-02 .container-img,
.sec-02 .container:nth-child(even) .container-img {
    grid-column: 1 / 2;
    grid-row: 1;
}
.sec-02 .txt-box,
.sec-02 .container:nth-child(even) .txt-box {
    grid-column: 1 / 2;
    grid-row: 2;
    justify-self: center;
    width: 90%;
    margin-top: 30px;
}
.txt-inner {
    height: auto;
    min-height: 200px;
    padding: 30px;
}
.en {
    font-size: 36px;
}
.txt-right {
    padding-left: 0;
}
.image-video {
    max-width: 90%;
}
.sec-ttl {
    padding: 45px 15px 30px;
    font-size: 24px;
}
.txt-head .ja {
    font-size: 14px;
}
.ja::before {
    width: 30px;
}

/* TOPページ ===================== */
/* パララックス */
.sec-01-parallax {
    height: auto;
    min-height: 350px;
    display: flex;
    align-items: center;
}
.parallax-inner {
    width: 100%;
    padding: 40px 20px;
}
.parallax-text {
    font-size: 14px;
    line-height: 1.8;
    padding: 20px 15px;
}

/* セクション01（紹介） */
.sec-01{
    margin: 40px 0 60px;
}
/* wrapperは画面幅基準にする */
.sec-01 .wrapper{
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px;         /* スマホの左右余白 */
    box-sizing: border-box;
}
/* 横並び→縦並び */
.introduction{
    display: block;          /* flex解除して縦に */
}
/* テキストの左paddingを解除（縦並びでは不要） */
.introduction-txt{
    padding-left: 0;
    margin-top: 16px;
    line-height: 1.9;
}
/* 画像をスマホ幅にフィット */
.introduction-img img{
    width: 100%;
    height: auto;
    display: block;
}

/* セクション04（アクティビティ） */
.box-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.box {
    width: 100%;
}

/* セクション05（アクセス） */
.sec-05 iframe {
    width: 100%;
    height: 300px;
}
.checkin-box ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.checkin-box li {
    width: 100%;
    height: auto;
    padding: 20px;
    flex-direction: column;
    border: 1px solid #37474F;
    border-radius: 8px;
}
.checkin-box li h3 {
    width: 100%;
    height: auto;
    font-size: 20px;
    padding: 15px;
    margin-bottom: 15px;
}
.checkin-box li p {
    padding-left: 0;
    margin-top: 10px;
}

/* stayページ ===================== */
/* カルーセル */
.slide-track img {
    height: 180px;
}

/* stay.html セクション03（注意事項） */
.notes-txt {
    padding: 20px;
}

/* roomsページ ===================== */
/* スライダー */
.room-card {
    margin: 60px auto;
    padding: 0 15px;
}
.slider-arrow {
    opacity: 1;
    pointer-events: auto;
}
.slider-arrow.prev { left: 10px; }
.slider-arrow.next { right: 10px; }
.room-details{
    width: 100%;
    height: auto;
    padding: 20px;
}
.detail-row{
    gap: 15px;
    display: block;
}
    dt{
    margin-bottom: 15px;
}

/* mealページ ===================== */
.meal-container{
    width: 100%;        /* 570px上限を外す */
    max-width: none;
}
.ttl-meal{
    font-size: 24px;
}

/* フッター ===================== */
.footer-main {
    padding: 30px 15px;
}
.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.footer-nav {
    justify-content: center;
    padding-bottom: 30px;
}
.footer-actions {
    width: 100%;
}
.btn-footer {
    width: 100%;
}
.footer-info {
    padding-left: 0;
    text-align: center;
}
.footer-box {
    flex-direction: column;
    gap: 30px;
    width: 100%;
}
}

/* ==================================================
レスポンシブ：タブレット固有（768px〜1199px）
================================================== */
@media screen and (min-width: 768px) and (max-width: 1199px) {
/* メインビジュアル ===================== */
.mv{
    padding-top: 80px; /* ← ヘッダーの高さに合わせて調整（例） */
}
.mv-txt h2 {
    font-size: 40px;
}
.mv-txt p {
    font-size: 20px;
}
.hero-img{
    padding-top: 80px; /* ← ヘッダーの高さに合わせて調整（例） */
}
.hero-txt p{
    font-size: 20px;
}
.hero-txt h2{
    font-size: 40px;
}
.mv-video{
    padding-top: 80px; /* ← ヘッダーの高さに合わせて調整（例） */
}

/* セクション02 */
.sec-02 .txt-box {
    margin-top: 30px;
}
.box {
    width: 100%;
}
.en {
    font-size: 42px;
}
.txt-inner {
    padding: 35px;
}
.image-video {
    max-width: 80%;
}
.slide-track img {
    height: 220px;
}

/* パララックス：タブレット用 */
.sec-01-parallax {
    min-height: 400px;
}
.parallax-text {
    font-size: 15px;
}

/* reservationページ ===================== */
/* 縦並びに変更 */
.resv-layout {
    grid-template-columns: 1fr;
}
/* プラン本文も縦 */
.plan-body {
    grid-template-columns: 1fr;
}
/* ミニカードも縦 */
.room-mini {
    grid-template-columns: 1fr;
}
.plan-head{
    align-items: flex-start;     /* 上揃え */
}
/* タイトル → 料金 の順で縦に並ぶ */
.plan-name{
    flex: 1 1 100%;
}
.plan-price{
    flex: 1 1 100%;
    justify-content: flex-end;   /* 料金は右寄せ */
    font-size: 28px;
}
.plan-price span{
    font-size: 12px;
    opacity: 0.9;
}
.plan-desc{
    margin: 30px 0;
}
.plan-txt{
    padding: 0;
}
/* サムネ一覧 */
.plan-thumbs{
    /* SPで使ってた横スクロールを解除 */
    overflow-x: visible;
    overflow-y: visible;
    /* 中央にまとめる */
    justify-content: center;
    /* 横幅いっぱいに広げない */
    max-width: 720px;
    margin: 15px auto 0;   /* ← 中央寄せ */
    gap: 16px;             /* ← 均等感 */
}
/* liが縮まないように */
.plan-thumbs li{
    flex: 0 0 auto;
}
/* サムネサイズをiPad向けに調整 */
.plan-thumbs .plan-thumb{
    width: 150px;
    height: 90px;
}
/* セクションの左右余白を少し減らして見栄えUP */
.plan-rooms{
    margin: 24px 26px 40px;
    padding: 24px;
}
/* カード内のメイン配置：PCの3列を iPadは2段構成にする */
.room-mini-body{
/* 1列にして縦積み（iPadで一番キレイ） */
    grid-template-columns: 1fr;
    row-gap: 14px;
    padding: 18px;
}
/* 画像3枚：中央に寄せて均等に並べる */
.room-mini-imgs{
    justify-content: center;
    gap: 14px;
}
/* 画像サイズ：iPad向けに少し大きく（見栄え良く） */
.room-mini-imgs img{
    width: 170px;             /* ← 160〜190で調整OK */
    aspect-ratio: 16 / 10;    /* ← ほどよい比率（好みで16/9でもOK） */
    height: auto;
}
/* 画像下の説明：2カラムだと微妙にズレるので “読みやすい1列” に */
.room-mini-info{
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 10px;
}
/* …（省略）になると不親切なのでiPadでは折り返しOKにする */
.room-mini-info p{
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
}
/* 価格エリア：カードの中で自然にまとまる幅に */
.room-mini-pricebox{
    justify-self: start;
    text-align: left;
}
.room-mini-note{
    font-size: 16px;
    margin: 0 0 6px;
}
.room-mini-price{
    font-size: 36px;  /* ← iPadでは少し大きめでOK */
}
/* ボタン：iPadは“幅100%ドーン”が重いので、程よい幅で中央に */
.btn-mini{
    justify-self: center; /* ← 重要：中央へ */
    justify-content: center;
    width: min(520px, 100%); /* ← 最大幅を制限して上品に */
    height: 56px;
    padding: 0 24px;
}

/* mealページ ===================== */
.meal-grid{
    /* まずこれ：全体の横幅を絞って中央寄せ */
    max-width: 920px;
    margin: 0 auto;
    padding: 0 30px;
    /* 3列のまま、間隔を詰める */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 20px;
    justify-content: center;
}
/* 白ボックス（カード）に内側余白をつける */
.meal-grid > *{
    background: #fff;
    padding: 15px;
    box-sizing: border-box;
}
.meal-grid a,
.meal-grid .meal-item,
.meal-grid .meal-card{
    width: 100%;
    max-width: 100%;
}
.meal-grid img{
    width: 100%;
    height: auto;
    object-fit: cover;
    margin: 0 0 30px;
}
.meal-container
.container-img {
    height: 450px;
}
.meal-container{
    margin-top: 60px;
    gap: 0;
}

/* activityページ ===================== */
.workshop{
    padding: 0 30px 60px;
}
.workshop-top{
    grid-template-columns: 6fr 4fr;
    column-gap: 30px;
    align-items: start;
}
.workshop-img{
    max-width: 620px;
    justify-self: end;
    gap: 15px;
}
/* 3つ横並びは維持しつつ、余白だけ調整 */
.step-list{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 0 15px 60px;
    gap: 24px;
}
.step-ttl{
    font-size: 28px;
    font-weight: bold;
}
/* iPadは中身を縦に */
.step-body{
    grid-template-columns: 1fr; /* 画像→説明 */
    gap: 14px;
    align-items: start;
}
.step-img img{
    width: 100%;
    max-width: 220px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}
.step-txt p{
    margin: 0;
    line-height: 1.9;
}
.step-arrow{
    margin-top: 0;
    font-size: 28px;
    display: inline-block;
}

/* Q＆Aページ ===================== */
.page-faq .hero-txt{
    top: 75%;
    left: 13%;
    transform: translateY(-40%);
}
.page-faq .hero-txt h2{
    font-size: 40px;
}
.page-faq .hero-txt p{
    font-size: 20px;
}
.faq .txt-head{
    padding: 60px 0;
}
.faq-nav{
    padding: 0 15px;
    gap: 15px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 30px;
    height: auto;
    justify-items: center;
}
.faq{
    padding: 0 30px;
}
.faq-ttl{
    font-size: 24px;
}
}