/* 全体リセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: "Yu Gothic","Hiragino Kaku Gothic ProN";
    min-width: 100%; 
    width: 100%;
    overflow-x: hidden;
}
/* メインビジュアル */
/* ヒーローセクション外枠 */
.hero {
    position: relative;
    width: 100%;
    height: 100vh; /* 画面いっぱいの高さ */
    overflow: hidden;
}

/* ヘッダー設定 */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999 !important;
    padding: 30px 50px; /* 上下の余白 */
}

.header-inner {
    max-width: none;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
	width: 100%;
}

/* ロゴ */
.logo img {
    height: 80px; /* デザインに合わせて調整 */
    width: auto;
	filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.3));
}

/* ナビゲーション */
.g-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
	margin: 0; /* ant2のデフォルト余白を消す */
    padding: 0;
}
.g-nav li {
    list-style: none;
}

.g-nav a {
    text-decoration: none;
    color: #fff !important;
    font-size: 14px;
    letter-spacing: 0.05em;
    transition: opacity 0.3s;
}

.g-nav a:hover {
    opacity: 0.6;
}

/* ビデオ背景 */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画面いっぱいに広げる */
}

/* 動画上のオーバーレイ（文字を読みやすくするため） */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1); /* 必要に応じて暗さを調整 */
}

/* イントロ */
.intro-section {
    position: relative;
    width: 100%;
    background: #fff; /* 下側のベースは白 */
    padding-bottom: 50px;
    overflow: hidden;
}

/* 背景画像コンテナ：ここを下向きに膨らませる */
.intro-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px; /* 画像を表示する高さ */
    z-index: 1;
    overflow: hidden;
    
    /* 下が膨らんだ左右対称のカーブ */
    /* 150%（横の広がり） 100%（縦の高さ） at 50% 0%（上端中央から描画） */
    clip-path: ellipse(80% 80% at 50% 0%);
}

.intro-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.intro-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* 左右のテキストの頭を揃える */
    padding: 80px 40px 0;
}

.intro-left {
    flex: 0 0 45%;
}

.intro-catch {
    font-size: 26px;
    color: #fff;
	font-family: "Yu Gothic";
    font-weight: normal;
    letter-spacing: 0.15em;
    margin-bottom: 50px;
    white-space: nowrap;
    text-shadow: 0 0 15px rgba(0,0,0,0.4);
}

.intro-photo {
    width: 80%; /* 左の画像を小さめに設定 */
}

.intro-photo img {
    width: 100%;
    display: block;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.intro-right {
    flex: 0 0 46%;
    padding-top: 0; /* 左のテキストと高さを一致させる */
}

.intro-text {
    color: #fff;
    line-height: 2.2;
    font-size: 14px;
    letter-spacing: 0.05em;
    margin-bottom: 40px;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.5);
}

.btn-intro {
    display: inline-block;
    background-color: #2e4370;
    color: #fff;
    text-decoration: none;
    padding: 16px 50px;
    font-size: 14px;
    letter-spacing: 0.1em;
    border: 1px solid rgba(255,255,255,0.3);
    transition: 0.3s;
}

.btn-intro:hover {
    background-color: #1a2a4d;
}

/* ニュース */
.news-section {
    background-color: #fff;
    padding: 100px 0;
    width: 100%;
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.news-title {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 0.2em;
    margin-bottom: 40px;
    text-align: left;
}

.news-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 60px;
}

.news-item {
    flex: 1;
}

.news-item a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

.news-item a:hover {
    opacity: 0.7;
}

.news-thumb {
    width: 100%;
    aspect-ratio: 3 / 2; /* 画像の比率を一定に保つ */
    overflow: hidden;
    margin-bottom: 20px;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-text {
    font-size: 14px;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 2行で省略 */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ボタンエリア */
.news-footer {
    text-align: center;
    margin-top: 40px;
}

.btn-news {
    position: relative;
    display: inline-block;
    background-color: #2e4370;
    color: #fff;
    text-decoration: none;
    padding: 18px 80px;
    font-size: 14px;
    letter-spacing: 0.1em;
    transition: background-color 0.3s;
}

.btn-news:hover {
    background-color: #1a2a4d;
}

/* 矢印アイコンの擬似要素 */
.btn-news::after {
    content: '>';
    position: absolute;
    right: 30px;
    font-family: sans-serif;
    font-weight: 300;
}


/* ルーム */

.room-section {
    background-color: #fff;
    padding: 50px 0;
}

.room-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* テキストエリア */
.room-header {
    margin-bottom: 60px;
}

.room-title {
    font-size: 32px;
    letter-spacing: 0.2em;
    margin-bottom: 40px;
	text-align: center;
}

.room-lead {
    text-align: center;
	margin-bottom: 60px;
}

.lead-main {
    font-size: 20px;
    letter-spacing: 0.1em;
    margin-bottom: 25px;
	display: block;
}

.lead-sub-wrapper {
    display: inline-block; /* コンテナ自体は中央に寄る  */
    text-align: left;      /* 中の文章だけを左寄せにする  */
    max-width: 720px;      /* デザインの折り返しに合わせる  */
}

.lead-sub {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.05em;
	margin: 0;
}

/* 2x2グリッド */
.room-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px; /* 写真の間の隙間 */
    margin-bottom: 60px;
}

.room-item {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
    /* 背景を黒に設定（画像が透けた時に黒が見えるようにする） */
    background-color: #000; 
}

.room-img {
    aspect-ratio: 16 / 9;
    /* 初期状態：少し暗く（透明度を下げる） */
    opacity: 0.7; 
    transition: opacity 0.5s ease; /* ふわっと明るくなる速度 */
}

.room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease; /* ズームの速度 */
}

.room-item:hover .room-img {
    /* マウスを乗せたら明るく（透明度を戻す） */
    opacity: 1; 
}

/* ホバー時に画像を少し拡大させる演出 */
.room-item:hover .room-img img {
    transform: scale(1.08);
}

/* 写真中央の部屋名 */
.room-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
	z-index: 2; /* 画像より上に配置 */
    pointer-events: none; /* テキストがリンクの邪魔をしないように */
}

/* ボタンエリア */
.room-footer {
    text-align: center;
}

.btn-room {
    position: relative;
    display: inline-block;
    background-color: #2e4370;
    color: #fff;
    text-decoration: none;
    padding: 18px 80px;
    font-size: 14px;
    letter-spacing: 0.1em;
}

.btn-room::after {
    content: '>';
    position: absolute;
    right: 30px;
}

/* プラン */
.plan-section {
    background-color: #fff;
    padding: 100px 0;
    width: 100%;
}

.plan-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* タイトル：NEWSセクションなどと高さを合わせて左寄せ */
.plan-title {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 0.2em;
    margin-bottom: 40px;
    text-align: left;
}

/* 3枚並びのグリッド */
.plan-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px; /* カード同士の適度なアキ */
}

.plan-card {
    flex: 1;
}

.plan-card a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

.plan-card a:hover {
    opacity: 0.8;
}

/* 縦長画像の枠 */
.plan-thumb {
    width: 100%;
    /* デザインに合わせて縦長（2:3など）に固定 */
    aspect-ratio: 2 / 3; 
    overflow: hidden;
    margin-bottom: 25px;
    background-color: #f4f4f4;
}

.plan-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* テキスト：フォントと行間を調整 */
.plan-text {
    font-size: 14px;
    line-height: 1.8;
    
    letter-spacing: 0.05em;
    text-align: left;
}

/* レストラン */
.restaurant-section {
    background-color: #fff;
    padding: 100px 0;
}

.restaurant-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* タイトル：左寄せ */
.restaurant-title {
    font-size: 32px;
    letter-spacing: 0.2em;
    margin-bottom: 40px;
    text-align: center;
}

/* リード文：中央揃えと左揃えの組み合わせ */
.restaurant-header {
    text-align: center;
    margin-bottom: 80px;
}

.res-lead-main {
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
}

.res-lead-sub-container {
    display: inline-block;
    text-align: left;
}

.res-lead-sub {
    font-size: 14px;
    line-height: 2.2;
    letter-spacing: 0.05em;
}

/* 2カラムグリッド */
.restaurant-grid {
    display: flex;
    justify-content: center; /* 中央に寄せる */
    gap: 40px;               /* 画像同士の間隔を少し広げてゆとりを持たせる */
    margin-bottom: 60px;
}

.restaurant-item {
    flex: 0 0 35%;           /* 各画像の幅を42%（合計84%）に抑え、中央に余白を作る */
    max-width: 500px;        /* 最大幅を制限して、広がりすぎを防止 */
    text-align: center;
}

.res-img-wrap {
    width: 100%;
    /* デザインに合わせてアスペクト比を再調整（1:1.1など、お好みの縦長具合に） */
    aspect-ratio: 1 / 1.1; 
    overflow: hidden;
    margin-bottom: 30px;
    background-color: none;
}

.res-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1.0; /* 初期状態で少し暗く */
    transition: all 0.6s ease;
}

.restaurant-item:hover .res-img-wrap img {
    opacity: 1;
    transform: scale(1.05);
}

/* 店舗情報テキスト */
.res-cat {
    font-size: 13px;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.res-name {
    font-size: 22px;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
}

.res-name-jp {
    font-size: 11px;
    color: #888;
    letter-spacing: 0.2em;
}

/* ボタン */
.restaurant-footer {
    text-align: center;
}

.btn-restaurant {
    position: relative;
    display: inline-block;
    background-color: #2e4370;
    color: #fff;
    text-decoration: none;
    padding: 18px 80px;
    font-size: 14px;
    letter-spacing: 0.1em;
}

.btn-restaurant::after {
    content: '>';
    position: absolute;
    right: 30px;
}

/* ウエディング */
.wedding-section {
    background-color: #faf7f2; /* 画像に合わせた淡いベージュ系 */
    padding: 120px 0;
    width: 100%;
}

.wedding-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* 上段：フレックスレイアウト */
.wedding-main-flex {
    display: flex;
    align-items: center; /* 垂直方向中央 */
    justify-content: space-between;
    margin-bottom: 80px;
}

.wedding-main-img {
    flex: 0 0 50%; /* 幅を半分に */
}

.wedding-main-img img {
    width: 100%;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.wedding-main-text {
    flex: 0 0 42%;
    text-align: left;
}

.wedding-title {
    font-size: 32px;
    letter-spacing: 0.25em;
    margin-bottom: 30px;
}

.wedding-lead {
    font-family: "Yu Mincho";
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.wedding-desc {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 40px;
    color: #333;
}

/* 下段：3枚ギャラリー */
.wedding-gallery {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.gallery-item {
    flex: 1;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1 / 1; /* 正方形に近い比率 */
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

/* ボタン：他のセクションと共通のネイビー */
.btn-wedding {
    position: relative;
    display: inline-block;
    background-color: #2e4370;
    color: #fff;
    text-decoration: none;
    padding: 18px 70px;
    font-size: 14px;
    letter-spacing: 0.1em;
}

.btn-wedding::after {
    content: '>';
    position: absolute;
    right: 25px;
}

/* アート */
.art-section {
    background-color: #fff;
    padding: 100px 0 50px;
}

.art-container {
    max-width: 1000px; /* 少し幅を絞ると展示会のような高級感が出ます */
    margin: 0 auto;
    padding: 0 40px;
}

/* テキストエリア（ROOMセクションのスタイルを継承） */
.art-header {
    text-align: center;
    margin-bottom: 80px;
}

.art-title {
    font-size: 32px;
    letter-spacing: 0.25em;
    margin-bottom: 40px;
}

.art-lead-main {
    
	font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.15em;
    margin-bottom: 30px;
}

.art-lead-sub-container {
    display: inline-block;
    text-align: left;
}

.art-lead-sub {
    font-size: 14px;
    line-height: 2.2;
    letter-spacing: 0.05em;
}

/* ギャラリー：CSS Gridで不規則な並びを再現 */
.art-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 350px; /* 画像の高さのベースを調整 */
    gap: 0;               /* 隙間を完全に失くす */
    width: 100%;
    max-width: 1200px;    /* 他のセクションと幅を合わせる */
    margin: 0 auto;
}

.art-item {
    position: relative;
    overflow: hidden;
    /* 画像同士の境界線をスッキリさせるため */
    line-height: 0;
}

.art-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.0s ease;
}

/* 縦に長い画像 */
.item-v {
    grid-row: span 2; 
}

/* 横に広い（あるいは標準）画像 */
.item-h {
    grid-row: span 1;
}

/* オンマウスでゆっくりズーム */
.art-item:hover img {
    transform: scale(1.03);
}
/* ホール */
.hall-section {
    background-color: #fff;
    padding: 100px 0;
}

.hall-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

/* テキストレイアウト（ROOMと統一） */
.hall-title {
    font-size: 32px;
    letter-spacing: 0.2em;
    margin-bottom: 40px;
    text-align: center;
}

.hall-lead {
    text-align: center;
    margin-bottom: 60px;
}

.lead-main {
    
    font-size: 20px;
	font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 25px;
}

.lead-sub-wrapper {
    display: inline-block;
    text-align: left;
    max-width: 720px;
}

.lead-sub {
    font-size: 13px;
    line-height: 2;
    letter-spacing: 0.05em;
    margin: 0;
}

/* パノラマ写真エリア */
.hall-visual {
    width: 100%;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hall-visual img {
    width: 100%;
    display: block;
    /* 16:9 などの比率で会場を広く見せる */
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* ボタン */
.hall-footer {
    text-align: center;
}

.btn-hall {
    position: relative;
    display: inline-block;
    background-color: #2e4370;
    color: #fff;
    text-decoration: none;
    padding: 18px 80px;
    font-size: 14px;
    letter-spacing: 0.1em;
}

.btn-hall::after {
    content: '>';
    position: absolute;
    right: 30px;
}
/* マッサージ */
.relaxation-section {
    background-color: #fff;
    padding: 100px 0;
    width: 100%;
    overflow: hidden;
}

/* アイテム全体：高さを 400px に抑えました */
.rela-item {
    display: flex;
    width: 100%;
    margin-bottom: 60px; /* サウナとマッサージの間隔を少し詰めました */
	min-height: 420px;
}

/* 画像エリア：左半分 */
.rela-img {
    flex: 0 0 70%;
    height: 400px; /* 高さを 500px → 400px に縮小 */
}

.rela-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* テキストエリア：右半分 */
.rela-text {
    flex: 0 0 30%;
    display: flex;
    align-items: flex-start; /* 上揃え */
	padding-top: 5px;
    padding-left: 50px; /* 画像との余白 */
    box-sizing: border-box;
}

/* テキストの中身：ゴシック体とスタイルを強制適用 */
.rela-text-inner {
    max-width: 400px;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    text-align: left;
}

.rela-title {
	margin-top: 0;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #000;
}

.rela-lead {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    color: #333;
}

.rela-desc {
    font-size: 14px;
    line-height: 2;
    color: #000;
    margin-bottom: 30px;
}

/* ボタン：スタイルを確実に適用 */
.btn-rela {
    position: relative;
    display: inline-block;
    background-color: #2e4370;
    color: #fff !important; /* 文字色を白に強制 */
    text-decoration: none;
    padding: 15px 60px;
    font-size: 14px;
    letter-spacing: 0.1em;
    transition: opacity 0.3s;
}

.btn-rela:hover {
    opacity: 0.8;
}

.btn-rela::after {
    content: '>';
    position: absolute;
    right: 20px;
}

.rela-item:last-child {
    margin-bottom: 0;
}

/* その他施設 */
.facilities-section {
    background-color: #fff;
    padding: 100px 0;
}

.facilities-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ヘッダー */
.facilities-header {
    text-align: center;
    margin-bottom: 60px;
}

.facilities-title {
    font-size: 32px;
    letter-spacing: 0.25em;
    margin-bottom: 30px;
}

.facilities-lead {
    font-size: 16px;
    letter-spacing: 0.1em;
}

/* グリッドレイアウト */
.facilities-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px; /* 画像同士の間の隙間 */
}

/* カード全体をリンクにするスタイル */
.facility-card {
    flex: 1;
    text-decoration: none; /* 下線を消す */
    color: #333;
    display: block;
    transition: opacity 0.3s ease;
}

.facility-img {
    width: 100%;
    margin-bottom: 25px;
    overflow: hidden;
}

.facility-img img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease; /* ホバー時の拡大用 */
}

/* 施設名：右寄せに配置 */
.facility-name {
    text-align: right;
    font-family: "Yu Gothic", sans-serif;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.05em;
}

/* ホバー演出：全体を少し薄くし、画像をわずかに拡大 */
.facility-card:hover {
    opacity: 0.8;
}

.facility-card:hover .facility-img img {
    transform: scale(1.05);
}

/* アクセス */
.access-section {
    background-color: #fff;
    padding: 100px 0;
}

.access-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* 左右分割のフレックスボックス */
.access-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* 上揃え */
}

/* 左側テキスト */
.access-text {
    flex: 0 0 40%;
    padding-top: 10px; /* 画像の上端と文字の頭を合わせる微調整 */
}

.access-title {
    font-size: 32px;
    letter-spacing: 0.2em;
    margin-bottom: 60px;
}

.access-info {
    font-size: 14px;
    line-height: 2.2;
    letter-spacing: 0.05em;
    margin-bottom: 40px;
    font-family: "Hiragino Sans", "Meiryo", sans-serif; /* ゴシック体 */
}

/* 右側画像 */
.access-img {
    flex: 0 0 55%;
}

.access-img img {
    width: 100%;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* 詳しく見るボタン（共通ネイビー） */
.btn-access {
    position: relative;
    display: inline-block;
    background-color: #2e4370;
    color: #fff;
    text-decoration: none;
    padding: 18px 80px;
    font-size: 14px;
    letter-spacing: 0.1em;
    transition: opacity 0.3s;
}

.btn-access:hover {
    opacity: 0.8;
}

.btn-access::after {
    content: '>';
    position: absolute;
    right: 30px;
}

/* ロビー画像 */
.full-width-visual {
    width: 100%;
    padding: 80px 0;
    background-color: #fff;
    /* 親要素の overflow は消さないでください */
    overflow: hidden; 
}

.visual-container {
    width: 100%;
    height: 500px; /* ここで表示したい高さを決める */
    position: relative;
    overflow: hidden;
}

.parallax-target {
    width: 100%;
    /* 1.1倍（110%）に抑えて画質を維持。動くための「のりしろ」を少しだけ作る */
    height: 115%; 
    object-fit: cover;
    position: absolute;
    /* 初期位置を少し上に */
    top: -7%; 
    left: 0;
    display: block;
    will-change: transform;
}

/* ギャラリー */
.gallery-section {
    background-color: #fff;
    padding: 100px 0;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-title {
    font-size: 32px;
	font-weight: bold;
    letter-spacing: 0.2em;
    /*font-weight: 500;*/
}

/* 2枚並びのレイアウト */
.gallery-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.gallery-item {
    flex: 1;
    text-align: center; /* キャプションを中央に */
}

/* 画像（動画）を包む枠 */
.gallery-media-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* 動画らしい比率を維持 */
    overflow: hidden;
    margin-bottom: 25px;
    background-color: #000;
    cursor: pointer;
}

.gallery-media-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, opacity 0.4s ease;
}

/* ホバー時の画像演出 */
.gallery-item:hover img {
    transform: scale(1.05);
    opacity: 0.7; /* 少し暗くして再生ボタンを際立たせる */
}

/* 再生ボタン（簡易版） */
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid #fff;
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.3s;
}

/* 三角の再生マーク */
.play-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent #fff;
}

.gallery-item:hover .play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

/* キャプション */
.gallery-caption {
    font-size: 16px;
	
    font-weight: bold;
    letter-spacing: 0.05em;
    color: #333;
}
/* フッター */
.footer {
    background-color: #fff;
    padding: 80px 0 60px;
    border-top: 1px solid #e0e0e0;
    font-family: "Yu Gothic", sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
}

/* --- 左ブロック --- */
.footer-left {
    flex: 0 0 55%;
}

.footer-logo {
    margin-bottom: 40px;
}

.footer-logo img {
    width: 250px;
}

.footer-nav {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

.nav-col {
    list-style: none;
    padding: 0;
}

.nav-col li {
    margin-bottom: 15px;
}

.nav-col a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.nav-col a:hover {
    color: #2e4370;
}

.btn-contact {
    display: inline-block;
    background-color: #2e4370;
    color: #fff;
    text-decoration: none;
    padding: 15px 80px;
    font-size: 14px;
    position: relative;
    margin-bottom: 30px;
}

.btn-contact::after {
    content: '>';
    position: absolute;
    right: 20px;
}

.footer-address {
    font-size: 13px;
    line-height: 1.8;
    color: #333;
}

/* --- 右ブロック --- */
.footer-right {
    flex: 0 0 35%;
}

/* アプリバナー */
.app-banner {
    display: flex;
    align-items: stretch; /* 中身（画像）を上下いっぱいに引き伸ばす */
    background-color: #f2f2f2;
    padding: 0; /* バナー自体のパディングを一旦ゼロにする */
    text-decoration: none;
    color: #333;
    position: relative;
    margin-bottom: 80px;
    height: 100px; /* バナー全体の高さをここで固定 */
    overflow: hidden;
}
.app-img {
    height: 100%; /* 親の高さ(100px)いっぱいにする */
    flex: 0 0 auto;
    /* --- ここがポイント：左側だけに余白を作る --- */
    padding-left: 20px; 
    background-color: #f2f2f2; /* バナーと同じ色にする */
}

.app-img img {
    height: 100%; /* 上下に隙間なく100%で表示 */
    width: auto;  /* 横幅は画像比率に任せる */
    display: block; /* 下の3px隙間を消す */
    object-fit: cover;
}
.app-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* 上下中央 */
    padding-left: 15px;      /* 画像との間の余白 */
    
    /* --- ここがポイント：矢印との間に「進入禁止エリア」を作る --- */
    padding-right: 60px;     /* 矢印の左側にしっかり余白（マージン）を作ります */
    
    box-sizing: border-box;
}

.app-text p {
    font-size: 11px;
    margin: 0;
}

.app-text .app-copy {
    font-size: 16px;
    font-weight: bold;
    margin-top: 5px;
}

.app-arrow {
    position: absolute;
    top: 50%;               /* 上から50%の位置へ */
    transform: translateY(-50%); /* 自身の高さの半分だけ上に戻して、完璧な中央に */
    right: 30px;            /* 右端からの距離を少し広げて余裕を持たせます */
    font-size: 14px;        /* サイズを少し調整 */
    color: #333;
}

/* 予約エリア */
.reservation-area {
    border-top: 1px solid #ccc;
    padding-top: 20px;
}

.res-title {
    font-size: 20px;
    margin-bottom: 25px;
    color: #333;
}

.res-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    gap: 15px 25px;
    margin-bottom: 20px;
}

.res-menu a {
    text-decoration: none;
    color: #333;
    font-size: 13px;
    font-weight: bold;
}

.res-sub a {
    font-size: 12px;
    color: #333;
    text-decoration: underline;
}
.sp-menu-toggle, .sp-nav {
    display: none; /* PCではハンバーガー関連は一切出さない */
}
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
	height: 80px;
    z-index: 1000;
}

.header-inner {
    width: 100%;
    height: 100%;
    position: relative; /* 子要素(sp-menu-toggle)の基準点になる */
    padding: 0 20px;
    display: flex;
    align-items: center; /* ロゴを上下中央に */
}

/* 動画の基本設定 */
.video-container {
    position: relative;
    width: 100%;
    height: 100svh; /* スマホの全画面 */
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important; /* 強制的に中央へ */
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    object-position: center;
}
/* --- 全体設定：スマホ専用ボタンはPCでは隠す --- */
.sp-only-btn {
    display: none;
}
/* PCではスマホ用の規約リンクを隠す */
.footer-sub-links {
    display: none;
}

.br-sp {
  display: none;
}

.br-pc {
    display: inline;
  }

p {
	font-size:14px;
}


/*スマホ設定*/
/* --- スマホ設定 (768px以下) --- */
@media screen and (max-width: 768px) {
	html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        position: relative !important;
    }


    /* 2. PC版の1400pxなどの残骸をすべてリセット */
    .header-inner, .intro-container, .news-container, .room-container {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        overflow: hidden !important; /* はみ出しをカット */
    }

    /* 3. メインビジュアルとイントロの間の隙間を埋める */
    .hero {
        height: 100vh !important;
        /* iOSのツールバーなどで高さが変わるのを防ぐ */
        height: 100svh !important; 
        overflow: hidden !important;
        background-color: #000 !important; /* 万が一空いても白ではなく黒にする */
    }
	.video-container {
        height: 100% !important;
        position: relative !important;
        /* 下の隙間を消すおまじない */
        display: block !important;
        line-height: 0 !important;
    }

    .video-container video {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        vertical-align: bottom !important; /* 底にピタッと合わせる */
    }
    /* 1. PCナビを消す */
    .g-nav { display: none !important; }

    /* 2. ヘッダーを画面幅いっぱいにし、重なりを最強にする */
    .main-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 9999 !important;
        padding: 15px 20px !important; /* 余白をスマホサイズに */
    }

	header {
    transition: background-color 0.3s; /* ふわっと変わるように */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 99999!important;
	pointer-events: auto !important;
}

/* スクロール後のスタイル */
header.scrolled {
    background-color: rgba(59, 81, 126, 0.9); /* 紺色を90%の透明度で */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* スクロール後、ハンバーガーメニューや文字を確実に白く保つ */
header.scrolled .nav-toggle span {
    background-color: #fff;
}
	
    .header-inner {
        max-width: 100% !important; /* 1400px制限を解除 */
        width: 100% !important;
        margin: 0 !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

	
	.logo img {
    height: 60px; /* デザインに合わせて調整 */
    width: auto;
}
    /* 3. ボタンを強制的に画面右端に配置 */
    .sp-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 12px;
        z-index: 100002 !important;
        cursor: pointer;
        /* ここを追加：右端に絶対配置 */
        position: absolute !important;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .sp-menu-toggle span {
        display: block !important;
        width: 100% !important;
        height: 1px !important;
        background-color: #ffffff !important;
		box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
    }

    /* 4. ナビ本体（変更なしですが一応セットで） */
    .sp-nav {
        display: none !important; 
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        /* 背景：さっきの半透明ネイビーに戻しました */
        background-color: rgba(46, 67, 112, 0.92) !important; 
        z-index: 100001 !important;
        
        /* 配置の修正：上に見切れないよう、上端から少し下げて配置 */
        display: flex !important;
        flex-direction: column;
        justify-content: flex-start !important; /* 上詰めに変更 */
        align-items: center;
        padding-top: 15vh !important; /* 画面上部から15%の余白を作る */
        opacity: 0;
        visibility: hidden;
        transition: 0.5s;
    }

    /* ボタンが押されて is-active が付いた時だけ出す */
    .sp-nav.is-active {
        opacity: 1 !important;
        visibility: visible !important;
    }
	.sp-nav-list {
        list-style: none !important; /* リストの点を消す */
        padding: 0 !important;
        margin: 0 !important;
        width: 100%; /* 幅を広げる */
        text-align: center;
    }

    .sp-nav-list li {
        width: 70%; /* 線を引く幅 */
        margin: 0 auto !important; /* 中央寄せ */
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .sp-nav-list li:last-child {
        border-bottom: none; /* 最後の線だけ消す */
    }

    /* --- リンク文字（白・アンダーラインなし） --- */
    .sp-nav-list a {
        display: block !important;
        padding: 25px 0 !important;
        color: #ffffff !important; /* 文字を白に */
        text-decoration: none !important; /* アンダーラインを消す */
        font-size: 18px !important;
        letter-spacing: 0.2em !important;
        font-weight: 300;
        transition: 0.3s;
    }
	
	/* --- ABOUTセクション（INTRO）のスマホ最適化 --- */
	.intro-section {
        margin-top: -5px !important; /* 5pxほど上に持ち上げて動画の底と重ねる */
        padding-top: 5px !important;
        position: relative !important;
        z-index: 10 !important;
		padding-bottom: 40px !important;
		margin-bottom: 0 !important;
    }

    /* 4. clip-path（白いカーブ）の背景をスマホの高さに合わせる */
    .intro-bg-wrapper {
        top: 0 !important;
        margin-top: -2px !important; /* さらに数ピクセル上に */
		height: 105% !important;
		min-height: auto !important;
    }

    /* カーブの形をスマホ用に再調整（隙間が出にくい設定） */
    .intro-bg-wrapper {
        position: absolute !important;
        top: -10px !important; /* 隙間対策 */
        left: 0 !important;
        width: 100% !important;
        /* ★ここがポイント：コンテナより高く設定して下に伸ばす★ */
        height: 120% !important; 
        min-height: 700px !important;
        z-index: 1 !important;
    }
	.intro-bg-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        /* 下に伸ばした分、空のグラデーションが綺麗に出るよう調整 */
        object-position: center top !important; 
    }
    .intro-container {
        position: relative !important;
        z-index: 10 !important;
        padding: 40px 20px 0 !important; /* 下の余白は0にして背景に任せる */
        display: flex !important;
        flex-direction: column !important;
    }

    /* 構造の枠を消して中身を自由に並べる */
    .intro-left, .intro-right {
        display: contents !important;
    }

    /* 1. キャッチコピー（中央寄せ） */
    .intro-catch {
        order: 1 !important;
        font-size: 18px !important;
        line-height: 1.6 !important;
        margin: 0 auto 30px !important; /* 中央寄せ */
        text-align: center !important;
        width: 100% !important;
        white-space: normal !important;
		font-weight: bold;
    }

    /* 2. 説明文（左寄せで読みやすく） */
    .intro-text {
        order: 2 !important;
        font-size: 14px !important;
        line-height: 2 !important;
        margin-bottom: 50px !important;
        text-align: left !important;
        width: 100% !important;
    }

    /* 3. ボタン（中央寄せ） */
    .btn-intro {
        order: 3 !important;
        display: block !important;
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto 50px !important;
        padding: 15px 0 !important;
        text-align: center !important;
    }

    /* 4. 写真（中央寄せ・大きく） */
    .intro-photo {
        order: 4 !important;
        /* ボタンが 280px なので、それより少し大きい 320px 前後に設定 */
        width: 87% !important; 
        max-width: 330px !important; 
        margin: 0 auto !important; /* 中央寄せ */
    }

    .intro-photo img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        /* 少しだけ影をつけて浮かせる（お好みで） */
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
    }

    /* 背景の白いカーブ調整 */
    .intro-bg-wrapper {
        height: 520px !important; 
        clip-path: ellipse(150% 100% at 50% 0%) !important;
    }
	
	
	/* --- NEWSセクション：スマホ2列レイアウト（強化版） --- */
    .news-section {
        padding-top: 20px !important; 
        margin-top: 0 !important;
        position: relative !important;
        z-index: 20 !important; /* 背景画像の上に確実に乗るように */
    }

    /* 親要素のflex設定をスマホ用に上書き */
    .news-grid {
        display: flex !important;
        flex-direction: row !important; /* 横並びを強制 */
        flex-wrap: wrap !important;     /* 折り返しを許可 */
        justify-content: space-between !important;
        gap: 20px 0 !important;         /* 左右の隙間はwidthで制御するので0 */
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* 各アイテムを強制的に50%幅にする */
    .news-item {
        flex: 0 0 48% !important;     /* 100%から隙間分を引いたサイズ */
        width: 48% !important;        /* 二重で指定して確実に固定 */
        max-width: 48% !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    /* サムネイル画像のサイズ固定 */
    .news-thumb {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 4 / 3 !important; /* PDF案に近い比率 */
        margin-bottom: 10px !important;
    }

    .news-thumb img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    /* テキストの調整 */
    .news-item p {
        font-size: 11px !important;
        line-height: 1.5 !important;
        margin: 0 !important;
        text-align: left !important;
    }
	
	/* --- ROOMセクション：スマホ1列・画像内文字レイアウト --- */
    .room-section {
        padding: 0px 0 0 !important; /* 左右を0にして横幅いっぱいに */
        background-color: #fff !important;
        overflow: hidden !important;
		width: 100% !important;
    }
	.room-container {
    padding: 0 20px;
}

    /* 1. 写真同士の隙間を完全にゼロにする */
    .room-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important; /* 隙間をゼロに */
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* 2. 画像の箱を画面幅100%に固定 */
    .room-item {
        position: relative !important;
        width: 100vw !important; /* 画面の端から端まで */
        margin-left: calc(50% - 50vw) !important; /* 親のパディングを無視して広げる裏技 */
        height: 100% !important; /* 画面幅に応じた高さ（黄金比に近い） */
        overflow: hidden !important;
		line-height: 0 !important;
        font-size: 0 !important;
    }

    .room-item img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
        vertical-align: bottom !important; /* これで上下の隙間が消えます */
    }

    /* 3. 画像内の文字（TWINなど）をさらに引き立たせる */
    .room-name {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        z-index: 2 !important;
        color: #ffffff !important;
        font-size: 26px !important; /* 少し大きく */
        font-weight: bold !important;
        letter-spacing: 0.4em !important; /* 文字間を広げてエレガントに */
        text-shadow: 0 0 15px rgba(0,0,0,0.5) !important; /* 視認性アップ */
    }

    /* 部屋名の下に薄いグラデーションを敷いて文字を読みやすく */
    .room-item::after {
        content: "";
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)) !important;
        z-index: 1;
    }
	/* --- ROOMセクション：ボタンの余白調整 --- */
    .room-section .btn-room {
        display: block !important;
        width: 100% !important;
        max-width: 280px !important;
        /* ★ margin-top を 40px〜50px ほどに設定して余白を作る ★ */
        margin: 50px auto 0 !important; 
        padding: 15px 0 !important;
        background-color: #2E4370 !important;
        color: #fff !important;
        text-align: center !important;
        text-decoration: none !important;
        position: relative !important;
        z-index: 20 !important;
    }
	
	/* --- PLANセクション：タイトルを上、画像を横スクロールに分離 --- */
    
    /* 1. 親要素の設定：タイトルとカードを縦に並べる */
    html body .plan-section .plan-container {
        display: block !important; /* flexを一旦解除して縦並びに */
        padding: 0 !important;
        width: 100% !important;
        max-width: none !important;
    }

    /* 2. タイトル：独立した行として上に配置 */
    html body .plan-section .plan-title {
        display: block !important;
        margin: 0 0 30px 40px !important; /* 下に30px、左に20pxの余白 */
        font-size: 32px !important;
        text-align: left !important;
        width: auto !important;
    }

    /* 3. カードを包むグリッド：ここで改めて横並び・横スクロールを設定 */
    /* ※今のHTML構造に合わせて、カードの並びだけをflexにします */
    html body .plan-section .plan-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        
        padding: 0 40px 40px !important;
        gap: 15px !important;
        width: 100% !important;
        -webkit-overflow-scrolling: touch !important;
    }

    /* 4. 各プランカード：PC版の 25% を上書き */
    html body .plan-section .plan-card {
        flex: 0 0 80% !important;
        width: 80% !important;
        min-width: 80% !important;
        margin: 0 !important;
        display: block !important;
    }

    /* 画像とテキストの調整 */
    .plan-section .plan-thumb {
        width: 100% !important;
        aspect-ratio: 4 / 5 !important;
        margin-bottom: 15px !important;
    }
    .plan-section .plan-text {
        font-size: 13px !important;
        text-align: left !important;
    }

    /* スクロールバー隠し */
    html body .plan-section .plan-grid::-webkit-scrollbar {
        display: none !important;
    }

	/* --- RESTAURANTセクション：2枚1組レイアウト --- */
    .restaurant-section {
        padding: 0px 20px !important;
        background-color: #fff !important;
    }
	.restaurant-container {
    padding: 0 0px;
}

    .restaurant-title {
        font-size: 32px !important;
        font-weight: bold !important;
        margin-bottom: 40px !important;
        text-align: center !important; /* PDF通り中央寄せ */
        letter-spacing: 0.15em !important;
    }

    /* リード文の調整 */
    .restaurant-header {
        margin-bottom: 50px !important;
    }
    .res-lead-main {
        font-size: 18px !important;
        margin-bottom: 25px !important;
    }
    .res-lead-sub {
        font-size: 13px !important;
        line-height: 1.8 !important;
        text-align: left !important;
    }

    /* 縦1列に並べる */
    .restaurant-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 60px !important; /* 店舗ごとの間隔 */
    }

    .restaurant-item {
        width: 100% !important;
        max-width: none !important;
        flex: none !important;
    }

    /* ★ ここがポイント：2枚の画像を密着させる ★ */
    .res-img-wrap {
        display: flex !important;
        flex-direction: column !important;
        aspect-ratio: auto !important; /* 固定比率を解除 */
        margin-bottom: 25px !important;
        background: none !important;
    }

    .res-img-wrap img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 4 / 3 !important; /* 1枚ずつの比率 */
        object-fit: cover !important;
        /* 画像同士の隙間を消す */
        display: block !important;
        vertical-align: bottom !important;
    }

    /* 店舗名のテキスト調整 */
    .res-cat {
        font-size: 12px !important;
        margin-bottom: 10px !important;
    }
    .res-name {
        font-size: 24px !important;
        margin-bottom: 5px !important;
    }
    .res-name-jp {
        font-size: 11px !important;
    }

    /* ボタン（他と統一） */
    .restaurant-section .btn-restaurant {
        display: block !important;
        width: 100% !important;
        max-width: 280px !important;
        margin: 40px auto 0 !important;
        padding: 15px 0 !important;
    }
	
	/* --- WEDDINGセクション：一番上の画像を全幅に --- */
    
    /* 1. セクション全体の設定 */
    .wedding-section {
        padding: 60px 0 60px !important; /* ★上パディングを0に */
        background-color: #faf7f2 !important;
        overflow: hidden !important; /* 横揺れ防止 */
        margin-top:60px;
    }
	.wedding-container {
    padding: 0 0px;
}

    /* 2. PC版のフレックス構造を縦積みにリセット */
    .wedding-main-flex {
        display: block !important;
        width: 100% !important;
		margin-bottom: 60px;
    }

    /* 3. ★重要：メイン画像を画面幅いっぱいに広げる */
    .wedding-main-img {
        width: 100vw !important; /* 画面幅100% */
        margin-left: calc(50% - 50vw) !important; /* 親のパディングを無視して広げる裏技 */
        margin-right: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 30px !important; /* テキストとの間に余白 */
        line-height: 0 !important; /* 下の隙間消し */
    }

    .wedding-main-img img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        object-fit: cover !important;
        border: none !important;
        box-shadow: none !important; /* 影を消す */
    }

    /* 4. テキストエリア（中央寄せ） */
    .wedding-main-text {
        width: 100% !important;
        padding: 0 15px !important; /* スマホの基本余白 */
        text-align: center !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }
    .wedding-title {
        font-size: 32px !important;
		letter-spacing: 0.15em !important;
        margin-bottom: 20px !important;
		font-weight: bold;
    }
    .wedding-lead {
        font-size: 17px !important;
        line-height: 1.8 !important;
		letter-spacing: 0.02em !important;
        margin-bottom: 15px !important;
    }
    .wedding-desc {
        font-size: 13px !important;
        text-align: center !important;
        margin-bottom: 0 !important;
    }

    /* --- WEDDING：ボタン出し分け設定（これは維持） --- */
    .wedding-footer {
        display: none !important;
    }
    .sp-only-btn {
        display: block !important;
        width: 100% !important;
        max-width: 280px !important;
        margin: 40px auto 0 !important;
        padding: 18px 0 !important;
        background-color: #2e4370 !important;
        color: #fff !important;
        text-align: center !important;
        text-decoration: none !important;
        font-size: 14px !important;
        position: relative !important;
    }
	/* --- WEDDING：下の3枚画像を全幅・隙間なしに --- */

    .wedding-gallery {
        display: flex !important;
        flex-wrap: nowrap !important; /* 横一列に強制 */
        width: 100vw !important; /* 画面幅いっぱい */
        margin-left: calc(50% - 50vw) !important; /* 親の余白を無視して全幅化 */
        gap: 0 !important; /* 画像同士の隙間をゼロに */
        margin-top: 30px !important; /* テキストとの間の余白 */
        margin-bottom: 0 !important;
        line-height: 0 !important; /* 画像の下に隙間が出るのを防ぐ */
    }

    .gallery-item {
        flex: 1 !important; /* 3枚を均等な幅にする */
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    .gallery-item img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 / 1 !important; /* 正方形に統一（おすすめ） */
        object-fit: cover !important; /* 縦横比を維持して切り抜き */
        display: block !important;
    }

    /* 先ほど作ったスマホ専用ボタンとの間隔を調整 */
    .sp-only-btn {
        margin-top: 50px !important; /* 画像のすぐ下にボタンを配置 */
    }
	
	
	/* --- ARTセクション：INTROと余白を揃えてダイナミックに表示 --- */
    
    .art-section {
        padding: 60px 0 !important; /* 上下余白のみ、左右はコンテナに任せる */
        background-color: #fff !important;
    }

    .art-container {
        max-width: 100% !important;
        width: 100% !important;
        /* INTROと同じ左右20pxの余白に設定 */
        padding: 0 20px !important; 
        margin: 0 !important;
    }

    /* タイトル・リード文を中央寄せに */
    .art-header {
        margin-bottom: 50px !important;
        text-align: center !important;
    }
    .art-title {
        font-size: 32px !important;
        margin-bottom: 30px !important;
        letter-spacing: 0.15em !important;
    }
    .art-lead-main {
        font-size: 18px !important;
        margin-bottom: 20px !important;
    }
    .art-lead-sub {
        font-size: 13px !important;
        line-height: 2 !important;
        text-align: left !important; /* 文章は左寄せで読みやすく */
    }

    /* 2列グリッドの調整：隙間をゼロにして密度を高める */
    .art-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        grid-auto-rows: 200px !important; /* スマホ用に高さを少し抑える */
        gap: 0 !important;
        width: 100% !important;
        max-width: none !important;
    }

    .art-item {
        line-height: 0 !important;
    }

    /* 縦長・横長の比率指定をスマホでも継承、または微調整 */
    .item-v {
        grid-row: span 2 !important;
    }
    .item-h {
        grid-row: span 1 !important;
    }

    .art-item img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
	
	/* --- HALLセクション：パノラマ写真を全幅（100vw）に --- */

    .hall-section {
        padding: 60px 0 !important;
        background-color: #fff !important;
        overflow: hidden !important;
    }

    /* テキストエリア：INTROと同じ左右20pxの余白 */
    .hall-container {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 20px !important;
        margin: 0 !important;
    }

    .hall-header {
        margin-bottom: 40px !important;
        text-align: center !important;
    }

    .hall-title {
        font-size: 32px !important;
        margin-bottom: 30px !important;
        letter-spacing: 0.15em !important;
    }

    .hall-lead .lead-main {
        font-size: 18px !important;
        margin-bottom: 20px !important;
    }

    .hall-lead .lead-sub-wrapper {
        text-align: left !important;
        width: 100% !important;
    }

    /* ★ パノラマ写真：左右の余白を無視して全幅化 ★ */
    .hall-visual {
        width: 100vw !important;
        margin-left: calc(50% - 50vw) !important;
        margin-bottom: 40px !important;
        box-shadow: none !important; /* 全幅時は影がない方がスッキリします */
    }

    .hall-visual img {
        width: 100% !important;
        height: auto !important;
        /* スマホでのパノラマ比率：少し高さを出して迫力を出すなら 16/9 か 3/2 */
        aspect-ratio: 16 / 9 !important;
        object-fit: cover !important;
        display: block !important;
    }

    /* ボタン（共通スタイル） */
    .btn-hall {
        display: block !important;
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
        padding: 15px 0 !important;
        text-align: center !important;
    }
	
	/* --- RELAXATIONセクション：全幅画像と中央寄せテキスト --- */
    
    .relaxation-section {
        padding: 0 0 0px !important; /* 上の余白は画像が端まで行くので0 */
        background-color: #fff !important;
    }

    /* アイテム全体の並びを縦方向に */
    .rela-item {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        margin-bottom: 80px !important; /* サウナとマッサージの間隔 */
        min-height: auto !important;
    }

    /* 1. 画像エリア：左右の余白を無視して全幅に */
    .rela-img {
        width: 100vw !important;
        height: auto !important;
        flex: none !important;
        margin-left: calc(50% - 50vw) !important;
        margin-bottom: 40px !important;
    }

    .rela-img img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16 / 9 !important; /* PDFのサウナ画像の比率に合わせる */
        object-fit: cover !important;
        display: block !important;
    }

    /* 2. テキストエリア：中央寄せに */
    .rela-text {
        width: 100% !important;
        flex: none !important;
        padding: 0 20px !important; /* イントロと揃える20px */
        display: block !important;
        text-align: center !important;
    }

    .rela-text-inner {
        max-width: none !important;
        margin: 0 auto !important;
        text-align: center !important;
    }

    .rela-title {
        font-size: 32px !important;
        font-weight: bold !important;
        letter-spacing: 0.15em !important;
        margin-bottom: 25px !important;
    }

    .rela-lead {
        font-size: 18px !important;
        margin-bottom: 20px !important;
        display: block !important;
    }

    .rela-desc {
        font-size: 14px !important;
        line-height: 2 !important;
        margin-bottom: 35px !important;
        text-align: center !important;
    }

    /* 3. ボタン（中央寄せ・共通スタイル） */
    .btn-rela {
        display: block !important;
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
        padding: 15px 0 !important;
        text-align: center !important;
    }

    /* --- FACILITIESセクション：全幅・密着レイアウト --- */
    
    .facilities-section {
        padding: 0px 0 !important;
        background-color: #fff !important;
		margin-bottom: 100px;
    }

    /* 1. ヘッダー：INTROと揃える左右20px */
    .facilities-container {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 20px !important;
        margin: 0 !important;
    }

    .facilities-header {
        margin-bottom: 50px !important;
        text-align: center !important;
    }

    .facilities-title {
        font-size: 32px !important;
        font-weight: bold !important;
        letter-spacing: 0.15em !important;
        margin-bottom: 30px !important;
    }

    .facilities-lead {
        font-size: 16px !important;
        letter-spacing: 0.05em !important;
    }

    /* 2. グリッドを縦1列に解体 */
    .facilities-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 60px !important; /* 施設ごとの間隔 */
        width: 100% !important;
    }

    .facility-card {
        width: 100% !important;
        flex: none !important;
    }

    /* 3. ★画像エリア：左右の余白を無視して全幅化★ */
    .facility-img {
        width: 100vw !important;
        margin-left: calc(50% - 50vw) !important;
        margin-bottom: 25px !important;
        overflow: hidden !important;
        display: flex !important; /* 中の画像が並ぶ場合を考慮 */
    }

    .facility-img img {
        width: 100% !important;
        height: auto !important;
        /* レストランと同様、密着感を出す */
        display: block !important;
        object-fit: cover !important;
        aspect-ratio: 16 / 9 !important; /* PDF案のワイド感に合わせる */
    }

    /* 4. 施設名：PDF通り中央寄せに */
    .facility-name {
        text-align: center !important;
        font-size: 18px !important;
        font-weight: bold !important;
        letter-spacing: 0.1em !important;
        color: #000 !important;
    }

    /* --- FACILITIES：ボタン強制表示設定 --- */

    /* 1. ボタンの親要素が消されている可能性を潰す */
    .facilities-section .facilities-footer,
    .facilities-section footer,
    .facilities-section [class*="footer"] {
        display: block !important; /* 強制表示 */
        visibility: visible !important;
        opacity: 1 !important;
        margin-top: 40px !important;
        text-align: center !important;
        width: 100% !important;
        clear: both !important;
    }

    /* 2. ボタン本体：詳細度を上げてPC版の設定を上書き */
    html body .facilities-section .btn-facilities,
    html body .facilities-section a.btn-facilities {
        display: block !important;
        visibility: visible !important;
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
        padding: 18px 0 !important;
        background-color: #2e4370 !important;
        color: #fff !important;
        text-align: center !important;
        font-size: 14px !important;
        position: relative !important;
        z-index: 100 !important;
    }

    /* 矢印アイコンの付与 */
    html body .facilities-section .btn-facilities::after {
        content: '>' !important;
        position: absolute !important;
        right: 30px !important;
        color: #fff !important;
    }
	/* --- ACCESSセクション：外観全幅と中央寄せテキスト --- */
    
    .access-section {
        padding: 0 0 60px !important; /* 上余白は画像が端まで行くので0 */
        background-color: #fff !important;
    }
    .access-container {
    padding: 0 20px;
}

    /* 左右の並びを縦並びにリセット */
    .access-flex {
        display: flex !important;
        flex-direction: column !important;
    }

    /* 1. 外観画像：一番上に全幅で配置 */
    .access-img {
        order: 1 !important; /* HTMLの順序に関わらず一番上に */
        width: 100vw !important;
        margin-left: calc(50% - 50vw) !important;
        margin-bottom: 50px !important;
    }

    .access-img img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16 / 9 !important; /* 外観を美しく見せる比率 */
        object-fit: cover !important;
        display: block !important;
        box-shadow: none !important;
    }

    /* 2. テキストエリア：INTROと同じ左右20px余白で中央寄せ */
    .access-text {
        order: 2 !important;
        width: 100% !important;
        padding: 0 20px !important;
        text-align: center !important;
    }

    .access-title {
        font-size: 32px !important; /* PDF案に合わせて少し力強く */
        font-weight: bold !important;
        letter-spacing: 0.15em !important;
        margin-bottom: 40px !important;
        text-align: center !important;
    }

    .access-info {
        font-size: 15px !important;
        line-height: 2.2 !important;
        text-align: center !important;
        margin: 0 auto 40px !important;
        display: inline-block !important; /* 中央寄せで箇条書き風に見せる */
        text-align: left !important; /* 塊としては左寄せで読みやすく */
    }

    /* 3. ボタン（共通スタイル） */
    .btn-access {
        display: block !important;
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
        padding: 18px 0 !important;
        text-align: center !important;
        position: relative !important;
    }
	/* --- GALLERYセクション：全幅・縦並び --- */
    .gallery-section {
        padding: 60px 0 !important;
        background-color: #fff !important;
    }

    .gallery-container {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 20px !important; /* タイトル用の余白 */
    }

    .gallery-header {
        margin-bottom: 40px !important;
    }

    .gallery-title {
        font-size: 32px !important;
        letter-spacing: 0.2em !important;
    }

    /* 2枚並びを1列に解体 */
    .gallery-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 50px !important; /* 動画ごとの間隔 */
    }

    .gallery-item {
        width: 100% !important;
        flex: none !important;
    }

    /* ★動画エリア：左右の余白を無視して全幅化★ */
    .gallery-media-wrapper {
        width: 100vw !important;
        margin-left: calc(50% - 50vw) !important;
        margin-bottom: 20px !important;
        aspect-ratio: 16 / 9 !important;
    }

    .gallery-media-wrapper img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    /* キャプション：中央寄せ */
    .gallery-caption {
        display: block !important;
        text-align: center !important;
        font-size: 16px !important;
        font-weight: bold !important;
        letter-spacing: 0.05em !important;
        padding: 0 20px !important;
    }

    /* 再生アイコンのサイズ調整 */
    .play-icon {
        width: 50px !important;
        height: 50px !important;
    }

/* --- FOOTER：ご指定の並び順（住所が上）完全統合版 --- */
    
    .footer {
        padding: 60px 0 40px !important;
        text-align: center !important;
        background-color: #fff !important;
    }

    .footer-container {
        display: flex !important;
        flex-direction: column !important;
        padding: 0 20px !important;
    }

    /* 親の箱を解体して全ての要素のorderを有効にする */
    .footer-left, .footer-right {
        display: contents !important;
    }

    /* 1番：ロゴ */
    .footer-logo {
        order: 1 !important;
        margin-bottom: 40px !important;
    }
    .footer-logo img { width: 200px !important; margin: 0 auto !important; }

    /* 2番：住所・電話番号（お問い合わせの上に移動） */
    .footer-address {
        order: 2 !important;
        display: block !important;
        text-align: left !important;
        font-size: 13px !important;
        line-height: 1.8 !important;
        margin-bottom: 30px !important; /* ボタンとの間隔 */
    }

    /* 3番：お問い合わせボタン（住所の下に移動） */
    .footer-contact {
        order: 4 !important;
        width: 100% !important;
        margin-bottom: 30px !important;
    }
    html body .footer .footer-contact .btn-contact {
        display: block !important;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        padding: 18px 0 !important;
        margin: 0 !important;
        background-color: #2e4370 !important;
        color: #fff !important;
        text-align: center !important;
        text-decoration: none !important;
    }

    /* 4番：規約リンク（宿泊約款・プライバシーポリシー） */
    .footer-sub-links {
        order: 3 !important;
        display: flex !important;
        justify-content: flex-start !important;
        gap: 20px !important;
        margin-bottom: 40px !important;
    }
    .footer-sub-links a {
        color: #666 !important;
        font-size: 11px !important;
        text-decoration: underline !important;
        letter-spacing: 0.05em !important;
    }

    /* 5番：アプリバナー */
    .app-banner {
        order: 5 !important;
        display: flex !important;
        height: auto !important;
        min-height: 80px !important;
        margin-bottom: 60px !important;
        background-color: #f2f2f2 !important;
        text-decoration: none !important;
        color: #333 !important;
    }

    /* 6番：予約エリア (Reservation) */
    .reservation-area {
        order: 6 !important;
        border-top: 1px solid #ccc !important;
        padding-top: 30px !important;
        text-align: left !important;
    }
    .res-menu {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 15px 10px !important;
    }

    /* 不要なナビを消去 */
    .footer-nav {
        display: none !important;
    }
/* --- アプリバナー内のテキスト微調整 --- */
    .app-text .app-copy {
        /* 現状の16pxから、スマホで1行に収まりやすい14px前後へ調整 */
        font-size: 14px !important; 
        font-weight: bold !important;
        line-height: 1.2 !important;
        margin-top: 4px !important;
        /* テキストがバナー右側の矢印に重ならないよう、右余白を確保 */
        padding-right: 40px !important; 
        white-space: nowrap !important; /* 強制的に1行にする場合はこれ（はみ出し注意） */
    }

    /* 上の段の小さなテキストもバランスを見て調整 */
    .app-text p:first-child {
        font-size: 10px !important;
        letter-spacing: 0.02em !important;
        color: #666 !important;
    }








	/* --- ハンバーガーボタンのアニメーション設定 --- */
    
    /* 1. 通常時（二本線）の動きを滑らかにする設定を上書き */
    .sp-menu-toggle span {
        transition: all 0.4s !important; /* アニメーションの速度 */
        position: absolute !important;
        left: 0;
    }

    /* 上の線：初期位置 */
    .sp-menu-toggle span:nth-child(1) {
        top: 0 !important;
    }

    /* 下の線：初期位置 */
    .sp-menu-toggle span:nth-child(2) {
        bottom: 0 !important;
    }

    /* 2. メニューが開いた時（is-active）の「×」の形 */
    
    /* 上の線を45度傾ける */
    .sp-menu-toggle.is-active span:nth-child(1) {
        top: 5px !important; /* 中央に寄せる */
        transform: rotate(45deg) !important;
        background-color: #fff !important; /* 色を固定 */
    }

    /* 下の線を-45度傾ける */
    .sp-menu-toggle.is-active span:nth-child(2) {
        bottom: 6px !important; /* 中央に寄せる */
        transform: rotate(-45deg) !important;
        background-color: #fff !important;
    }
	.br-sp {
    display: inline;
  }
	.br-pc {
  display: none;
}

}

/* --- 施設案内ヒーローエリア --- */
.hero-about {
    height: 100vh !important;
    min-height: 500px !important;
    position: relative !important;
    display: block !important;
    overflow: visible !important;
    background-color: #000; /* 画像読み込み前のチラつき防止 */
    z-index: 1;
	/*padding-bottom: 60px;*/
}

.about-mv-container {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-mv-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* オーバーレイ（画像に少し暗みを付けて文字を読みやすくする） */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* 重厚感を出すため薄く黒を乗せる */
    z-index: 2;
}
.about-mv-title-wrap {
    position: absolute;
    bottom: 80px;
    left: 80px; /* 少し余裕を持たせて調整 */
    z-index: 5;
    color: #fff;
    text-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.about-mv-title {
    font-size: 80px;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 15px;
}

.about-mv-subtitle {
    font-size: 18px;
    letter-spacing: 0.3em;
    padding-left: 5px;
    opacity: 0.9;
}

/* アバウト : イントロ全体の高さをコンテンツに合わせて調整 */
.concept-intro {
    padding-bottom: 100px;
}

/* 右側：コンセプト説明エリア */
.intro-text-concept {
    color: #fff;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.5);
}

.concept-lead {
    font-size: 15px;
    line-height: 2;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
}

/* G.R.A.C.E リストのデザイン */
.grace-list {
    margin-top: 30px;
}

.grace-item {
    margin-bottom: 25px;
}

.grace-item dt {
    font-family: serif;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    letter-spacing: 0.1em;
}

.grace-item dd {
    font-size: 14px;
    margin-left: 20px; /* 少しインデントして読みやすく */
    line-height: 1.6;
    opacity: 0.9;
}

/* 1. 背景画像を表示するエリア（wrapper）の調整 */
.concept-intro .intro-bg-wrapper {
    height: 650px; /* 500pxから大幅にアップして、長いテキストをカバー */
    /* clip-pathのellipse（楕円）の数値を調整して、
       カーブの開始位置や広がりを微調整します。
    */
    clip-path: ellipse(90% 100% at 50% 0%); 
}

/* 2. コンテンツ全体を少し下に押し下げる */
.concept-intro .intro-container {
    padding-top: 80px; 
}

/* 3. 左側のキャッチコピーと写真の隙間を調整（バランス用） */
.concept-intro .intro-catch {
    margin-bottom: 70px; /* キャッチコピーの下に余裕を持たせる */
}

/* 4. 背景画像自体の表示位置（トリミング）の調整 */
.concept-intro .intro-bg-img {
    object-position: center 20%; /* 画像の少し上の方を優先的に見せる */
}


/* コンセプト詳細：ロビー背景セクション */
.concept-lobby {
    position: relative;
    background-image: url('../img/lobby_panorama.jpg'); /* イントロ2.jpgの画像 */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* パララックス効果 */
    min-height: 60vh; /* 画面の高さの80%分確保 */
    display: flex;
    align-items: center;
}

/* 背景を少し暗くして文字の読みやすさを確保 */
.lobby-overlay {
    width: 100%;
	height: 100%
    display: flex;
    background-color: rgba(0, 0, 0, 0.5); /* ほんのり暗く */
	align-items: center;
    padding: 160px 0;
}

.lobby-content {
    width: 100%;
    max-width: 1200px; /* 他のセクションと共通の数値 */
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: #fff;
    text-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.lobby-left {
    flex: 0 0 50%;
}

.lobby-catch {
    font-size: 26px;
    line-height: 1.5;
    font-weight: normal;
    letter-spacing: 0.15em;
}

.lobby-right {
    flex: 0 0 45%;
}

.lobby-text {
    font-size: 15px;
    line-height: 2.2;
    letter-spacing: 0.05em;
}

/* フロント・ビジュアルセクション */
.concept-front-visual {
    padding: 80px 0; /* 上下の余白 */
    background-color: #fff;
}

.front-visual-only {
    width: 100%;
    /* 少しだけ浮かせるようなシャドウを入れると高級感が出ます（不要なら削除OK） */
    box-shadow: 0 10px 40px rgba(0,0,0,0.1); 
}

.front-visual-only img {
    width: 100%;
    height: auto;
    display: block; /* 下の隙間を消す */
}

/* 施設紹介 */
.facilities-list-section {
    background-color: #fff;
    padding: 120px 0;
}

.facilities-list-section .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 80px 4%; /* 上下余白 80px / 左右余白 4% */
}

/* 施設アイテムの基本（横並び） */
.facility-item {
    width: 48%;
    display: flex !important;      /* flexを強制 */
    flex-direction: column !important; /* ★ここが最重要！横並びを禁止して縦に並べる */
    gap: 20px;
}



/* 画像エリア */
.facility-image {
    width: 100% !important;
}

.facility-image img {
    width: 100% !important;
    height: auto;
    display: block;
    object-fit: cover;
}

/* テキストエリア */
.facility-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* 中身を中央へ */
    
}

.facility-name {
    width: 100%;
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 5px;
    
    font-weight: bold;
}

.facility-time,
.facility-desc {
    text-align: left;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.facility-time {
    font-weight: bold;
    margin-bottom: 10px;
}

.facility-desc {
    font-size: 14px;
    line-height: 2;
    color: #444;
    text-align: left; /* 本文は読みやすく左寄せ */
    display: inline-block; /* text-align:centerの影響下で左寄せを保つ */
}

/* アクセスセクション全体 */
.concept-access {
    padding: 100px 0 0;
    background-color: #fff;
}

.access-intro {
    text-align: center;
    margin-bottom: 60px;
}

.access-main-title {
    font-size: 2rem;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
}

.access-sub-lead {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 25px;
}

.access-description {
    font-size: 14px;
    line-height: 2;
    color: #333;
}

/* マップと写真が重なるエリア */
.access-map-wrapper {
    position: relative;
    padding: 80px 0;
	width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
	justify-content: center;
}

/* 背景の外観写真 */
.access-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.access-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.access-map-wrapper .banquet-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px; /* 他のセクションと合わせる */
    margin: 0 auto;    /* これで中央配置 */
}

/* 情報カードと地図を横並びに */
.access-info-flex {
    display: flex;
    justify-content: center; 
    align-items: stretch;
}

/* 左側の住所カード */
.access-info-card {
    flex: 0 0 400px;
    background-color: #fff;
    padding: 60px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.access-logo {
    margin-bottom: 40px;
    text-align: center;
}

.access-logo img {
    max-width: 200px;
}

.access-detail dl {
    margin-bottom: 20px;
}

.access-detail dt {
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.access-detail dd {
    font-size: 1rem;
    line-height: 1.6;
}

.access-detail hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 20px 0;
}

/* 右側の地図エリア */
.access-map-area {
    flex: 1;
	min-height: 450px;
    background-color: #f0f0f0;
}

.access-map-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* アクセス詳細セクション */
.access-details {
    padding: 60px 0 120px;
    background-color: #fff;
    width: 100%; /* 幅をいっぱいにする */
}

.access-details .banquet-container {
    max-width: 1200px; /* 他のセクションと合わせる */
    margin: 0 auto;    /* 左右の余白を自動にして中央へ */
    padding: 0 40px;   /* スマホなどで端に密着しないよう余白 */
    box-sizing: border-box;
}

.detail-block {
    margin-bottom: 60px;
    border-bottom: 1px solid #eee;
    padding-bottom: 40px;
    text-align: left; /* 中の文字は左揃え */
}

.detail-block:last-child {
    border-bottom: none;
}

.detail-heading {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 25px;
    color: #333;
    position: relative;
    padding-left: 15px;
}

.detail-heading::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 1.2em;
    background-color: #2e4370; /* ホテルのテーマカラー */
}

.detail-content {
    padding-left: 20px; /* 見出しの線に合わせて少しインデント */
}

.detail-content p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.detail-info-list, .route-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.detail-info-list li, .route-list li {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.route-list li span {
    display: inline-block;
    background: #f4f4f4;
    padding: 2px 8px;
    font-size: 12px;
    margin-right: 10px;
    border-radius: 2px;
}

.note {
    color: #666;
    font-size: 13px !important;
}

.tel-link {
    font-weight: bold;
    font-size: 16px !important;
    color: #2e4370;
}

.transport-sub {
    font-weight: bold;
    margin-top: 20px;
    color: #2e4370;
}

/* 福岡観光セクション */
.about-sightseeing {
    padding: 100px 0;
    background-color: #fff;
	padding: 0 40px; /* 固定の40px余白 */
    box-sizing: border-box;
}

.sightseeing-main-title {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 0.1em;
}

/* 3カラムレイアウト */
.sightseeing-grid {
    display: flex;
    gap: 30px;
	margin-bottom: 100px;

}

.sightseeing-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sightseeing-img {
    margin-bottom: 25px;
}

.sightseeing-img img {
    width: 100%;
    aspect-ratio: 1 / 1; /* 正方形に統一して整える */
    object-fit: cover;
}

.sightseeing-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sightseeing-text {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #333;
}

/* マップを見るボタン（これまでのプラン用ボタンをベースに） */
.btn-sightseeing-map {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3b517e;
    color: #fff;
    text-decoration: none;
    padding: 15px 0;
    font-size: 14px;
    margin-top: auto; /* ボタンを一番下に揃える */
    position: relative;
    transition: 0.3s;
}

.btn-sightseeing-map:hover {
    background-color: #2e4370;
    opacity: 0.9;
}

/* 矢印アイコン ">" */
.btn-sightseeing-map::after {
    content: "";
    position: absolute;
    right: 20px;
    width: 8px;
    height: 8px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
}

/* --- スマホ対応 --- */
@media screen and (max-width: 768px) {
    .about-mv-title-wrap {
        left: 30px;
        bottom: 50px;
    }
    .about-mv-title {
        font-size: 48px;
    }
    .about-mv-subtitle {
        font-size: 14px;
    }
	/* --- アバウトイントロ --- */
	.grace-item dd {
        margin-left: 0;
    }
    .intro-catch {
        font-size: 20px;
        white-space: normal; /* 折り返しを許可 */
    }
	.intro-bg-wrapper {
    height: 820px!important; /* 500pxから大幅にアップして、長いテキストをカバー */
}
	
	/* --- コンセプト --- */
	.lobby-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
		padding: 0 20px;
    }
    .lobby-catch {
        font-size: 1.8rem;
    }
	
	/* --- フロントSP --- */
	.concept-front-visual {
        padding: 40px 0;
    }
	
	/* --- 施設リストSP --- */
	.facilities-list-section {
    background-color: #fff;
    padding: 0px 0;
	}
	
	.facility-item, 
    .facility-item.reverse {
        flex-direction: column; /* スマホは全部縦並び */
        gap: 30px;
        margin-bottom: 0px;
    }
    .facility-info {
        padding: 0 20px;
    }
    .facility-desc {
        text-align: center; /* スマホでは中央の方が見栄えが良い場合が多い */
    }
	
	.facility-item {
        width: 100%;
    }
	
	/* --- アクセスSP --- */
	
	.access-description {
    padding: 0 20px;
}
	
	.access-info-flex {
        flex-direction: column;
    }
    .access-info-card {
        flex: none;
        width: 100%;
    }
    .access-map-area {
        height: 400px;
    }
	
	/* --- アクセス詳細SP --- */
	.access-details {
        padding: 40px 0 0px;
    }
    .detail-heading {
        font-size: 1.1rem;
    }
	
	/* --- 福岡観光SP --- */
	.sightseeing-grid {
        flex-direction: column;
        gap: 50px;
    }
}

/* ブライダル イントロセクション */
.bridal-intro {
    padding: 100px 0;
    background-color: #fff;
}

.bridal-intro-flex {
    display: flex;
    align-items: stretch; /* 上揃え */
    gap: 60px;
}

/* 左側メイン画像 */
.bridal-intro-main-img {
    flex: 1.1;
	margin: 0; 
    line-height: 0;
}

.bridal-intro-main-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* 右側コンテンツ */
.bridal-intro-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    /* 上のテキストと下の画像を両端に引き離す */
    justify-content: space-between; 
    margin: 0;
}

.bridal-intro-text-group {
    margin-bottom: 30px; /* 画像との最低限の隙間 */
}

.bridal-intro-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

.bridal-intro-lead {
    margin-bottom: 50px;
}

.lead-bold {
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 1.8;
    margin-bottom: 30px;
}

.lead-text {
    font-size: 14px;
    line-height: 2;
    color: #333;
}

/* サブ画像エリア */
.bridal-intro-sub-imgs {
    display: flex;
    gap: 20px;
	margin-top: auto; /* 上に余白を自動で作って、一番下へ押し下げる */
    line-height: 0;
}

.sub-img {
    flex: 1;
}

.sub-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* お顔合わせセクション */
.bridal-engagement {
    padding: 100px 0;
    background-color: #f9f9f9; /* 少しだけ色を付けてセクションを分ける */
    width: 100%;
}

.engagement-inner {
    max-width: 650px; /* 文章を読みやすくするために幅を絞る */
    margin: 0 auto;
	padding: 0 20px;
	text-align: left;
	box-sizing: border-box;
}

.engagement-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 60px;
    letter-spacing: 0.1em;
    color: #333;
	text-align: center;
}

.engagement-text-box {
    text-align: left;   /* 中の文章をすべて左揃えに設定 */
}

.engagement-text-box p {
    font-size: 15px;
    line-height: 2.2;
    margin-bottom: 40px;
    color: #444;
	
}

.engagement-closing {
    font-weight: bold;
    margin-top: 50px;
    color: #333;
	display: block;
}

/* フルワイド画像セクション */
.bridal-fullwidth-image {
    width: 100%;
    margin: 0px 0; /* 上下に適度な余白 */
    overflow: hidden;
}

.full-image-wrapper {
    width: 100%;
    line-height: 0; /* 画像下の隙間を完全に排除 */
}

.full-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    /* もし画像を少しズームさせて迫力を出したい場合は以下を追加 */
    /* object-fit: cover; */
}

/* プランセクション */
/* プランセクション全体 */
.bridal-plan {
    padding: 100px 0;
    background-color: #faf8f5; /* 画像に近い薄いベージュ */
	width: 100%;
}

/* タイトルエリア */
.plan-header {
    text-align: center;
    margin-bottom: 60px;
}

.plan-en-title {
    font-size: 2.2rem;
    letter-spacing: 0.2em;
    
    margin-bottom: 10px;
}

.plan-jp-title {
    font-size: 14px;
    color: #666;
    letter-spacing: 0.1em;
}

.bridal-plan .banquet-container {
    max-width: 1200px; /* サイト共通の最大幅 */
    margin: 0 auto;    /* 中央寄せ */
    padding: 0 40px;   /* ★ここで左右にしっかり余白を作る */
    box-sizing: border-box;
}

/* プラン並び（PC：4カラム） */
.plan-grid {
    display: flex;
    gap: 24px;
    justify-content: space-between;
}

.plan-card {
    flex: 1;
	min-width: 0;
    display: flex;
    flex-direction: column;
}

.plan-img {
    margin-bottom: 20px;
	line-height: 0;
}

.plan-img img {
    width: 100%;
    aspect-ratio: 1 / 1; /* 正方形を維持 */
    object-fit: cover;
}

.plan-card-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.plan-card-text {
    font-size: 13px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
    flex-grow: 1; /* テキストが短くてもボタンの位置を下に揃える */
}

/* ボタン（紺色） */
.btn-plan-more {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3b517e;
    color: #fff!important;
    text-decoration: none;
    padding: 18px 0;
    font-size: 13px;
    position: relative;
    margin-top: auto;
}

.btn-plan-more:hover {
    background-color: #2e4370; /* 少し濃い紺色に */
    color: #ffffff !important; /* ★ホバーしても白を維持 */
    opacity: 0.9;
}

.btn-plan-more::after {
    content: "";
    position: absolute;
    right: 20px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
}

/* 料理セクション全体 */
.bridal-food {
    padding: 100px 0;
    background-color: #fff;
    width: 100%;
}

/* 共通のコンテナ（左右の余白を維持） */
.bridal-food .banquet-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* PCでの左右余白 */
    box-sizing: border-box;
}

/* メイン画像（上） */
.food-main-visual {
    width: 100%;
    margin-bottom: 60px;
    line-height: 0;
}

.food-main-visual img {
    width: 100%;
    height: auto;
    display: block;
}

/* テキストエリア（中央） */
.food-content {
    text-align: center;
    margin-bottom: 60px;
}

.food-text {
    margin-top: 30px;
}

.food-text p {
    font-size: 15px;
    line-height: 2.2;
    color: #333;
    margin-bottom: 10px;
}

/* サブ画像（下：2枚並び） */
.food-sub-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.food-sub-img {
    flex: 1;
    line-height: 0;
}

.food-sub-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- お問い合わせセクション全体 (フルワイド設定) --- */
/* --- お問い合わせセクション全体 --- */
.bridal-contact {
    position: relative;
    width: 100%;
    padding: 100px 0; /* banquet_hallの余白感に合わせる */
    background-image: url("../img/bridal/contact_bg.jpg"); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 黒色のオーバーレイ */
.bridal-contact::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 視認性を確保 */
    z-index: 1;
}

/* コンテナ設定（左右の余白を他のページと統一） */
.bridal-contact .banquet-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* PCでの共通余白 */
    box-sizing: border-box;
}

/* --- テキストスタイル (banquet_hall準拠) --- */
.text-white {
    color: #ffffff !important;
}

.contact-inner {
    text-align: center;
}

/* タイトルフォント（banquet_hallと同じ設定） */
.bridal-contact .plan-en-title {
    font-size: 2.5rem;
    letter-spacing: 0.2em;
    margin-bottom: 5px;
}

.bridal-contact .plan-jp-title {
    font-size: 0.9rem;
	margin-bottom:40px;
    letter-spacing: 0.1em;
}

.contact-lead {
    font-size: 1.1em;
    margin-bottom: 50px;
}

/* 電話番号スタイル */
.contact-phone {
    margin-bottom: 50px;
}

.phone-label {
    font-size: 1.1remx;
    margin-bottom: 15px;
}

.phone-number {
    display: inline-block;
    font-size: 3rem; /* banquet_hallの大きな数字に合わせる */
    
    text-decoration: none;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.phone-time {
    font-size: 0.95rem;
}

/* --- ボタン設定 --- */
.contact-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #333333;
    text-decoration: none;
    width: 300px;
    height: 60px;
    font-size: 15px;
    letter-spacing: 0.1em;
    position: relative;
    transition: 0.3s;
}

.btn-contact-item:hover {
    background-color: #f0f0f0;
    opacity: 0.9;
}

/* ボタン右側の矢印 */
.btn-contact-item::after {
    content: "";
    position: absolute;
    right: 20px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    transform: rotate(45deg);
}

/* --- スマホ対応 --- */
@media screen and (max-width: 768px) {
	/* ブライダルイントロ */
   /* コンテナ全体に左右の余白（15px〜20px程度）を持たせる */
    .banquet-container {
        padding: 0 20px; /* 左右に20pxの余白を追加 */
        box-sizing: border-box; /* 余白を含めて100%幅にする */
    }

    .bridal-intro-flex {
        flex-direction: column; /* 縦並びにする */
        gap: 30px; /* 画像とテキストの間の上下余白 */
    }

    /* 各要素の幅を100%に */
    .bridal-intro-main-img,
    .bridal-intro-content {
        flex: none;
        width: 100%;
    }

    /* テキスト部分にさらに個別の余白が必要な場合（念のため） */
    .bridal-intro-text-group {
        padding: 0 10px; /* コンテナの余白に加えて少し内側に入れたい場合 */
    }

    /* タイトルのサイズをスマホ向けに少し小さく */
    .bridal-intro-title {
        font-size: 1.4rem;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    /* サブ画像もスマホで横並びを維持、または縦にしたい場合 */
    .bridal-intro-sub-imgs {
        margin-top: 30px;
        gap: 10px; /* スマホでは隙間を少し狭く */
    }
	
	/* 顔合わせ */
	.bridal-engagement {
        padding: 80px 20px; /* 左右に余白を確保 */
    }
    
    .engagement-title {
        font-size: 1.3rem;
        margin-bottom: 40px;
        line-height: 1.5;
    }

    .engagement-text-box p {
        font-size: 14px;
        line-height: 2;
        text-align: left; /* スマホでは左寄せの方が読みやすい場合が多いです */
    }
	
	.engagement-inner {
        max-width: 100%; /* スマホでは幅いっぱいに */
    }
	
	/* 顔合わせ画像 */
	.bridal-fullwidth-image {
        margin: 50px 0; /* スマホでは上下余白を少し狭く */
    }
	
	/* プラン */
	.bridal-plan {
        padding: 60px 0;
    }
	.bridal-plan .banquet-container {
        padding: 0 20px; /* スマホ時は少し余白を狭くしてコンテンツを広く */
    }

    .plan-grid {
        flex-direction: column; /* 縦並びに変更 */
        gap: 50px; /* カード同士の間隔を広げる */
        padding: 0 20px; /* 左右に余白 */
    }

    .plan-header {
        margin-bottom: 40px;
    }

    .plan-en-title {
        font-size: 1.8rem;
    }

    .plan-card-title {
        font-size: 18px; /* スマホでは少し文字を大きくして読みやすく */
    }

    .plan-card-text {
        font-size: 14px;
    }
	
	/* 料理SP */
	.bridal-food {
        padding: 60px 0;
    }

    .bridal-food .banquet-container {
        padding: 0 20px; 
    }

    .food-main-visual {
        margin-bottom: 40px;
    }

    .food-content {
        margin-bottom: 40px;
    }

    .food-text p {
        font-size: 14px;
        line-height: 1.8;
        text-align: left; /* スマホでは左寄せの方が読みやすいため */
        padding: 0 10px;
    }

    .food-sub-grid {
        flex-direction: column;
        gap: 20px;
    }
	
	/* お問い合わせSP */
	.bridal-contact {
        padding: 70px 0;
    }

    .bridal-contact .banquet-container {
        padding: 0 20px; /* スマホ時の共通余白 */
    }

    .bridal-contact .plan-en-title {
        font-size: 1.8rem;
    }

    .phone-number {
        font-size: 2.2rem;
    }

    .contact-btns {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-contact-item {
        width: 100%;
        max-width: 100%;
        height: 55px;
    }
}

/* --- レストランMV設定 (PC) --- */
.hero-res {
    height: 100vh !important;
    min-height: 500px !important;
    position: relative !important;
    display: block !important;
    overflow: hidden !important;
	z-index: 10;
}

.res-mv-container {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.res-mv-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.res-mv-title-wrap {
    position: absolute;
    bottom: 80px;
    left: 50px;
    z-index: 15;
    color: #fff;
    text-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.res-mv-title {
    font-size: 80px;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 10px;
}

.res-mv-subtitle {
    font-size: 18px;
    letter-spacing: 0.3em;
    padding-left: 5px;
}

/* --- アンテェナアト イントロ (PC版) --- */
.res-intro {
    position: relative;
    z-index: 5;
    display: block !important;
    padding: 100px 0 0px;
    background-color: #fff;
    margin-top: 0;
    clear: both;
}

.res-intro-container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start; /* 上揃えにしてよりシャープな印象に */
    gap: 30px;
}

.res-intro-text { flex: 0 0 55%; }
.res-title-group { margin-bottom: 50px; }
.res-cat { font-size: 14px; margin-bottom: 5px; }
.res-name { font-size: 36px; font-weight: bold; margin-bottom: 10px; }
.res-english { font-size: 14px; letter-spacing: 0.1em; color: #333; }
.res-english span { font-weight: bold; margin-left: 10px; }
.res-desc p { font-size: 14px; line-height: 2.2; margin-bottom: 1.8em; word-break: keep-all; letter-spacing: 0.05em; }

.res-intro-images { 
    flex: 0 0 40% !important; /* 幅を少し広げて、無理な圧縮を防ぐ */
    max-width: 480px; /* 画像の本来のサイズ以上に広がらないように制限 */
    line-height: 0;
	background: none !important;
	align-self: flex-start;
}
.res-img-wrap { width: 100%; line-height: 0; }
.res-img-wrap img { 
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: auto !important;
	object-fit: contain !important; 
    image-rendering: -webkit-optimize-contrast;
}

/* --- MENUセクション (PC版) --- */
.res-menu-section {
    padding: 0px 0;
    background-color: #fff;
}
.res-menu-container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 30px;
}
.res-menu-main-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 50px;
    letter-spacing: 0.1em;
}

/* 3列グリッド */
.res-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 15px; /* 上下30px、左右15pxの隙間 */
}

.res-menu-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    margin-bottom: 10px;
}
.res-menu-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.res-menu-name {
    position: absolute;
    bottom: 15px;
    left: 20px;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

/* 紺色ボタンのデザイン再現 */
.btn-view-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 50px;
    background-color: #2e4370; /* 紺色 */
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}
.btn-view-menu::after {
    content: '';
    position: absolute;
    right: 20px;
    width: 8px;
    height: 8px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
}
.btn-view-menu:hover {
    background-color: #3d5891;
}

/* --- INFORMATION (PC版) --- */
.res-info {
    padding: 100px 0 0px;
    background-color: #fff;
}

.res-info-container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 80px;
	align-items: stretch;
}

.res-info-text {
    flex: 1;
	display: flex;
    flex-direction: column;
}

.res-info-main-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 60px;
    letter-spacing: 0.1em;
}

/* 情報リストのスタイル */
.res-info-list dl {
    display: flex;
    border-top: none; /* 枠線を消して画像案のクリーンさを再現 */
    margin-bottom: 25px;
    font-size: 15px;
}

.res-info-list dt {
    width: 120px;
    font-weight: bold;
    flex-shrink: 0;
}

.res-info-list dd {
    flex: 1;
    line-height: 1.6;
}

.time-row {
    margin-bottom: 10px;
}
.time-row span {
    display: inline-block;
    width: 4em; /* 「朝食」などのラベル幅を揃える */
}

/* 予約ボタン */
.btn-reserve {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 280px; /* PCでは幅を限定 */
    height: 60px;
    background-color: #2e4370;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    margin-top: 50px;
    transition: 0.3s;
}
.btn-reserve::after {
    content: '';
    position: absolute;
    right: 20px;
    width: 8px;
    height: 8px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
}

.res-info-images {
    flex: 0 0 43%;
}

/* --- 縁亭イントロ --- */
.entei-intro {
    padding-top: 50px; /* 前のセクションとの間隔 */
	margin-bottom: 50px;
}

.res-video-wrap {
    width: 100%;
    line-height: 0;
    overflow: hidden;
    background-color: #000; /* 読み込み前の下地 */
}

.res-intro-video {
    width: 100%;
    height: auto;
    display: block;
    /* アスペクト比をアンテェナアトの画像と揃えると綺麗です */
    aspect-ratio: 4 / 3; 
    object-fit: cover;
}
/* --- 縁亭 ギャラリー (PC版) --- */
.entei-gallery {
    padding: 0 0 100px;
    background-color: #fff;
    width: 100%;
}

.entei-gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    /* 強制的に横並びにする設定 */
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    gap: 20px;
}

.entei-gallery-item {
    flex: 0 0 45% !important; /* 幅を少し小さく設定 */
    line-height: 0;
}

.entei-gallery-item img {
    width: 100% !important;
    height: auto !important;
    display: block;
    object-fit: cover;
    aspect-ratio: 2 / 1.1; /* 2枚の高さが綺麗に揃います */
}

/* --- 縁亭メニュー (PC版) --- */
.entei-menu-section {
    padding: 0px 0;
    background-color: #fff;
    
}

.entei-menu-container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 30px;
}

.entei-course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    margin-bottom: 80px;
}

.entei-course-item {
    border-left: 1px solid #333; /* 左側の縦ライン */
    padding-left: 25px;
}

.course-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 25px;
    border-bottom: none;
}

.course-header h3 {
    font-size: 22px;
    font-weight: bold;
}
.course-header h3 span { font-size: 16px; font-weight: normal; }
.course-header .price { font-size: 15px; font-weight: bold; }

.course-detail {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.course-detail li {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 2px;
}

.course-note { font-size: 12px; margin-top: 15px; }

/* 下段グリッド */
.entei-sub-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* 29日限定を少し広く */
    gap: 40px;
}

.lunch-time { font-size: 16px; margin-bottom: 25px; font-weight: bold; }

.entei-special-item {
    border-left: 1px solid #333;
    padding-left: 25px;
}
.entei-special-item h3 { font-size: 22px; margin-bottom: 25px; font-weight: bold; }
.special-content p { font-size: 14px; line-height: 1.8; margin-bottom: 1.5em; }
.special-content .highlight { font-weight: bold; font-size: 16px; }
.special-content .small { font-size: 12px; margin-top: 20px; }


/* --- 縁亭インフォメーションPC設定 --- */
.entei-info-section {
    background-color: #fff;
    padding: 100px 0 0px;
}

/* PC版：テキストと画像の下端を揃える */
.entei-info-section .res-info-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
	height: auto !important;
}

.entei-info-section .btn-reserve {
    margin-top: 20px !important;
	align-self: flex-start;
}

/* --- ロビーラウンジPC設定 --- */
.lobby-lounge-section {
    background-color: #fff;
    padding: 0px 0;
}

.lobby-lounge-section .res-name {
    font-size: 32px;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
}

.lobby-lounge-section .res-desc p {
    font-size: 15px;
    line-height: 2.2;
    color: #333;
}

/* 画像の画質を保つための設定（アンテェナアトの修正を継承） */
.lobby-lounge-section .res-img-wrap img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
}

/* --- ロビーラウンジ メニュー (PC版) --- */
.lobby-menu-section {
    padding-top: 0; /* イントロとの間隔を調整 */
    background-color: #fff;
}

.lobby-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* デザイナー様の指示通り2列構成 */
    gap: 30px;
	margin-bottom: 50px;
}
/* --- ロビーラウンジ・インフォメーション --- */
.lobby-info-section {
    padding: 100px 0 0px;
    background-color: #fff;
}

.lobby-info-section .res-info-container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 30px; /* ★右側の余白をアンテェナアトと統一 */
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 80px;
}

.lobby-info-section .res-info-images {
    flex: 0 0 48%;
    background: none !important;
    line-height: 0;
}

.lobby-info-section .res-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3; /* 画像の比率を整える */
}
/* --- スマホ設定 (768px以下) --- */
@media screen and (max-width: 768px) {
    .hero-res { height: 100svh !important; }
    .res-mv-title-wrap { left: 20px !important; bottom: 60px !important; }
    .res-mv-title { font-size: 48px !important; letter-spacing: 0.05em !important; }
    .res-mv-subtitle { font-size: 14px !important; letter-spacing: 0.2em !important; }

    /* --- アンテェナアト イントロ (SP版) --- */
    .res-intro { padding: 60px 0 !important; }
    .res-intro-container {
        display: flex !important;
        flex-direction: column !important;
        padding: 0 !important; /* ここを0にするのがポイント */
        width: 100% !important;
		gap: 50px;
		margin: 0 !important;
        overflow: hidden;
    }
    .res-intro-text {
        width: 100% !important;
        padding: 0 20px !important;
        text-align: center !important;
		max-width: none !important;
		box-sizing: border-box !important;
		text-align: center !important;
    }
    .res-desc p {
		text-align: left !important;
		font-size: 14px !important;
		margin-bottom: 20px !important;
		max-width: 100% !important;
		padding: 0 !important;
		white-space: normal !important; /* 改行を禁止しない */
        word-break: break-all !important; /* どこでも折れるようにする */
        overflow-wrap: break-word !important; /* 単語の途中でも折る */
		-webkit-text-size-adjust: 100%;
	}
    .res-intro-images { width: 100% !important; margin: 0 !important; padding: 0 !important; line-height: 0 !important; }
    .res-img-wrap {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .res-img-wrap img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        margin: 0 !important;
    }
	/* --- アンテェナアト メニュー (SP版) --- */
	.res-menu-section {
    padding: 0px 0;
    background-color: #fff;
}
	.res-menu-container {
        padding: 0 !important;
    }
    .res-menu-main-title {
        padding-left: 20px;
        margin-bottom: 30px;
    }

    /* スマホは1列にして全幅に */
    .res-menu-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .res-menu-item {
        width: 100%;
    }
    
    .res-menu-thumb {
        aspect-ratio: 16 / 9 !important;
        margin-bottom: 0 !important;
    }
    
    .btn-view-menu {
        height: 60px !important; /* スマホでは少し押しやすく */
    }
	/* --- アンテェナアト インフォメーション (SP版) --- */
	.res-info-container {
        flex-direction: column !important;
        padding: 0 !important;
    }
    .res-info-text {
        padding: 0 24px 40px !important;
    }
    .res-info-main-title {
        margin-bottom: 40px !important;
    }
    .res-info-list dl {
        flex-direction: column !important;
        gap: 10px;
    }
    .res-info-list dt {
        width: 100% !important;
        margin-bottom: 5px;
    }
    .btn-reserve {
        width: 100% !important; /* スマホでは全幅に */
    }
    .res-info-images {
        width: 100vw !important;
    }
	/* --- 縁亭 (SP版) --- */
	.entei-intro .res-intro-images {
        width: 100% !important;
        margin-left: 0 !important;
		overflow: hidden;
		padding: 0 20px !important;
		max-width: none !important;
		box-sizing: border-box !important;
		text-align: center !important;
    }
    .res-intro-video {
        aspect-ratio: 16 / 9 !important; /* スマホでは少し横長が見やすい */
    }
/* --- 縁亭ギャラリー (SP版) --- */
	.entei-gallery {
        padding-bottom: 60px;
    }
    .entei-gallery-container {
        flex-direction: column !important; /* スマホは縦並び */
        padding: 0 !important;
        gap: 0px !important;
		
    }
    
    .entei-gallery-item {
        width: 100% !important;
    }

    .entei-gallery-item img {
        width: 100% !important;
        height: auto !important;
        display: block;
        aspect-ratio: 16 / 9 !important;
    }
/* --- 縁亭メニュー (SP版) --- */
	.entei-course-grid, .entei-sub-grid {
        grid-template-columns: 1fr !important;
        gap: 60px !important;
    }
/* --- 縁亭インフォメーション (SP版) --- */	
	.entei-info-section {
        padding: 60px 0 !important;
    }
    .entei-info-section .res-info-images {
        margin-top: 40px;
    }
    .entei-info-section .btn-reserve {
        margin-top: 40px; /* スマホでは自動調整を解除 */
    }

	/* --- ロビーラウンジ イントロ (SP版) --- */
	.lobby-lounge-section {
        padding: 60px 0 !important;
    }
    .lobby-lounge-section .res-intro-text {
        text-align: left !important; /* ラウンジの詩的な文章は左揃えが綺麗です */
    }
	/* --- ロビーラウンジ メニュー (SP版) --- */
	.lobby-menu-grid {
        grid-template-columns: 1fr !important; /* スマホでは縦1列 */
        gap: 40px !important;
    }
	/* --- ロビーラウンジ インフォメーション (SP版) --- */
	.lobby-info-section .res-info-container {
        padding: 0 !important;
    }
    .lobby-info-section .res-info-images {
        width: 100vw !important;
    }
} /* ← ここでスマホ設定をしっかり閉じる */

/* --- レストランMV設定 (PC) --- */
.hero-room {
    height: 100vh !important;
    min-height: 500px !important;
    position: relative !important;
    display: block !important;
    overflow: visible !important;
	z-index: 1;
}

.room-mv-container {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.room-mv-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.room-mv-title-wrap {
    position: absolute;
    bottom: 80px;
    left: 50px;
    z-index: 5;
    color: #fff;
    text-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.room-mv-title {
    font-size: 80px;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 10px;
}

.room-mv-subtitle {
    font-size: 18px;
    letter-spacing: 0.3em;
    padding-left: 5px;
}

/* --- 客室イントロ：センター1カラム --- */
/* --- 客室イントロ：センター配置・左揃え（シンプル解決版） --- */
.room-intro-centered {
    padding: 50px 0;
    background-color: #fff;
    width: 100%;
    /* 1. 親はただの「箱」として扱い、中身を中央に寄せる（margin:autoを効かせる） */
    display: block !important;
    text-align: center !important; /* 基本は左寄せ */
}

.room-intro-inner {
    /* 2. ★ここが全ての鍵★ 
       「左端の基準線」を決め、その箱を画面の真ん中に置く */
    max-width: 800px; /* 画像のテキスト量に合わせた最適な幅 */
    display: inline-block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 10px; /* 左右の余白を最小限に */
}

/* 4. 各パーツは「ただのブロック」に戻す（inline-blockは使いません） */
.room-intro-catch,
.room-intro-main-text,
.room-intro-sub-text {
    display: inline-block !important;
    text-align: left !important;
    width: auto !important; 
    max-width: 800px
}

.room-intro-catch::after,
.room-intro-main-text::after {
    content: "";
    display: block;
}

/* --- フォントサイズや余白は現状を維持 --- */
.room-intro-catch {
    /* 1. 文字自体は左寄せ */
    text-align: left !important;
    
    /* 2. 塊（ボックス）の幅を「中身の文字の長さ」に合わせる */
    display: table !important; 
    
    /* 3. その「縮んだ箱」を中央に寄せる */
    margin-left: auto !important;
    margin-right: auto !important;

    /* デザイン指定（現状維持） */
    font-size: 32px;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 0.1em;
    margin-bottom: 60px;
    color: #000;
}
.room-intro-main-text {
    font-size: 16px;
    line-height: 2.4;
    margin-bottom: 60px;
    color: #333;
}
.room-intro-sub-text {
    font-size: 15px;
    line-height: 2.2;
    color: #333;
}

/* --- ルーム詳細セクション（ツイン） --- */
.room-detail-section {
    padding-bottom: 120px;
    background-color: #fff;
}

/* スライダーエリア */
.detail-slider-container {
    position: relative;
    width: 100%;
    height: 80vh; /* 画面の6割程度の高さに設定 */
    overflow: hidden;
    margin-bottom: 60px;
}

.detail-slider-wrapper {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.detail-slider-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}
.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 100; /* 文字よりも画像よりも前に出す */
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-prev:hover, .slider-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* 画像内のタイトルデザイン */
.detail-room-title {
    position: absolute;
    top: 60px;
    left: 80px;
    color: #fff;
    z-index: 50;
}
.title-flex-container {
    display: flex;
    align-items: flex-start; /* 上揃え */
    gap: 15px; /* 英字とカタカナの間隔 */
}
.horizontal-main-rotated {
    font-size: 60px;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin: 0;
    line-height: 1;
    
    /* 文字自体を90度回転させて縦に並べる */
    writing-mode: vertical-rl;
    text-orientation: mixed; 
    
    /* もしブラウザで文字が正立してしまう場合はこちらを使用 */
    /* transform: rotate(90deg); transform-origin: top left; */
}
.vertical-sub-kana {
    writing-mode: vertical-rl;
    font-size: 16px;
    letter-spacing: 0.4em; /* カタカナの間隔を広げて高級感を出す */
    font-weight: 500;
    margin-top: 5px; /* 英語の始まりと高さを微調整 */
}

.vertical-sub {
    writing-mode: vertical-rl;
    font-size: 14px;
    letter-spacing: 0.3em;
    position: absolute;
    right: -25px;
    top: 0;
}

.horizontal-main {
    font-size: 60px;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin: 0;
}

/* テキスト＆スペックレイアウト */
.detail-body {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.detail-text-col {
    flex: 1;
}

.detail-lead {
    font-weight: bold;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.detail-main-desc {
    font-size: 15px;
    line-height: 2.2;
    margin-bottom: 30px;
    color: #333;
}

.detail-capacity-info {
    font-size: 14px;
}

/* スペック表 */
.detail-spec-col {
    flex: 0 0 450px;
}

.room-spec-table {
    width: 100%;
    border-collapse: collapse;
}

.room-spec-table tr {
    border-top: 1px solid #ccc;
}

.room-spec-table tr:last-child {
    border-bottom: 1px solid #ccc;
}

.room-spec-table th, .room-spec-table td {
    padding: 25px 0;
    font-size: 14px;
    text-align: left;
}

.room-spec-table th {
    width: 30%;
    font-weight: bold;
}

/* スウィート */
.suite-detail-section {
    padding-bottom: 0px;
    background-color: #fff;
}
.detail-slider-container_s {
    position: relative;
    width: 100%;
    height: 80vh; /* 画面の6割程度の高さに設定 */
    overflow: hidden;
    margin-bottom: 0px;
}

.detail-fixed-wrapper {
    width: 100%;
    height: 100%;
}
.detail-fixed-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 画像下の黒いテキストバー */
.suite-description-bar {
    background-color: #2c2c2c; /* 濃いグレー〜黒 */
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.suite-description-bar p {
    font-size: 16px;
    letter-spacing: 0.15em;
    margin: 0;
}
/* スライダーコンテナ（高さ80vh） */
.detail-slider-container {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

/* スライダーの中身 */
.room-slider {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.room-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

/* タイトルのスタイル（画像の上に固定） */
.room-title-area {
    position: absolute;
    top: 60px;
    left: 80px;
    color: #fff;
    z-index: 50;
}

.room-en-title {
    writing-mode: vertical-rl;
    text-orientation: sideways;
    font-size: 80px;
    font-weight: bold;
}

.suite-dark-section {
    background-color: #2c2c2c; /* 黒背景 */
    color: #fff;
    padding-bottom: 120px;
}

/* 画像下の「EMPIRE SUITE」横書きタイトルの装飾 */
.suite-main-title {
    font-size: 60px;
    font-weight: bold;
    letter-spacing: 0.15em;
    margin-bottom: 5px;
    color: #fff;
}

.suite-sub-title {
    font-size: 14px;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.8);
}

/* スペック表の線（スイート1.jpgのように白っぽく） */
.white-border tr {
    border-top: 1px solid rgba(255, 255, 255, 0.3) !important;
}
.white-border tr:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
}

/* グランドスウィート全体の背景（エンパイアと共通または少し変えてもOK） */
.grand-suite {
    padding-bottom: 150px; /* 下部に余裕を持たせる */
}

/* 下部3枚画像のグリッド */
.suite-feature-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 80px; /* 説明文との間隔 */
    padding: 0 40px; /* containerに合わせて調整 */
}

.feature-item {
    flex: 1;
    aspect-ratio: 4 / 3; /* 画像の比率を揃える */
    overflow: hidden;
}

.feature-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-item:hover img {
    transform: scale(1.05); /* 少しズームする演出 */
}

/* こだわりの設備 */
.features-section {
    background-color: #fff;
    padding: 100px 0;
}

.features-section .container {
    max-width: 1200px; /* 画面が大きくてもこれ以上広がらないようにする */
    margin: 0 auto;    /* 中央寄せ */
    padding: 0 0px;   /* ★これが左右の「最低限の余白」になります */
}

/* 中央揃えの見出し */
.section-common-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 80px;
    position: relative;
}

/* 3カラムグリッド */
.features-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

/* 各カードのスタイル */
.feature-card {
    flex: 1;
    text-align: center; /* 中身を中央揃え */
}

.feature-img {
    width: 100%;
    aspect-ratio: 3 / 2; /* 画像サイズを統一 */
    overflow: hidden;
    margin-bottom: 30px;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* カード内のテキスト */
.feature-info h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 25px 0 15px;
    letter-spacing: 0.05em;
}

.feature-info p {
    font-size: 14px;
    line-height: 1.8;
    text-align: justify; /* 説明文は左寄せが見やすい */
    color: #333;
}

/* アメニティ */
/* セクション全体の余白 */
.amenity-section {
    background-color: #fff;
    padding: 100px 0;
}

.amenity-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* ★実機で端にくっつくのを防ぐ */
}

.section-intro-text {
    text-align: left;
    font-size: 15px;
    line-height: 2;
    margin-bottom: 60px;
    color: #333;
}

/* メイングリッド */
.amenity-grid {
    display: flex;
    gap: 60px;
    align-items: flex-end;
}

/* 左側：メイン写真 */
.amenity-main-img {
    flex: 1.25;
	display: flex;
	justify-content: flex-end;
}
.amenity-main-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* 右側エリア */
.amenity-content {
    flex: 2.0; /* リスト側を少し広く */
	display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.amenity-list-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 30px;
    border-left: 3px solid #333; /* 飾りの線 */
    padding-left: 15px;
}

/* 2列のリスト */
.amenity-list-columns {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.amenity-list-columns ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.amenity-list-columns li {
    font-size: 14px;
    line-height: 2.2;
    border-bottom: 1px solid #eee; /* 薄い区切り線 */
    margin-bottom: 5px;
}
.amenity-image-row {
    display: flex;
    justify-content: center; /* 3枚まとめて中央に寄せる */
    align-items: flex-end;    /* ★ここがポイント！下端で揃える */
    gap: 30px;               /* 画像同士の隙間 */
    margin-top: 50px;
	width: 100%;
}
/* 下部サブ写真 */
.amenity-sub-imgs {
    display: flex;
    gap: 20px;
	align-items: flex-end;
}

.sub-img-item {
    flex: 1;
}

.sub-img-item img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
	height: auto;
    display: block;
}
/* --- スマホ設定 (768px以下) --- */
@media screen and (max-width: 768px) {
    .hero-room { height: 100svh !important; }
    .room-mv-title-wrap { left: 20px !important; bottom: 60px !important; }
    .room-mv-title { font-size: 48px !important; letter-spacing: 0.05em !important; }
    .room-mv-subtitle { font-size: 14px !important; letter-spacing: 0.2em !important; }
	
	/* 客室イントロ SP版） */
    .room-intro-centered {
        padding: 80px 0;
        display: block !important; /* スマホはflex解除が安全 */
    }
    .room-intro-inner {
        max-width: 100%;
        width: 100%;
        padding: 0 24px;
        box-sizing: border-box;
        text-align: center !important;
    }
    .room-intro-catch {
        font-size: 22px;
        margin-bottom: 40px;
        text-align: left !important;
    }
    .room-intro-main-text,
    .room-intro-sub-text {
        font-size: 14px;
        line-height: 2.0;
        text-align: left !important;
    }
    /* ツイン SP版） */
	.detail-body {
        flex-direction: column;
        gap: 40px;
    }
	.detail-room-title {
        left: 20px;
        top: 20px;
    }
    .horizontal-main-rotated {
        font-size: 32px;
    }
    .vertical-sub-kana {
        font-size: 12px;
    }
    .detail-spec-col {
        flex: none;
        width: 100%;
    }
    .horizontal-main {
        font-size: 32px;
    }
    .detail-room-title {
        left: 30px;
        top: 30px;
    }
	.room-section {
        padding: 0px 0 80px !important;
	}
	.slider-prev, .slider-next {
        /* 50% を 60%〜70% くらいに大きくすると下に下がります */
        top: 70% !important; 
        transform: translateY(-50%); /* 自身の高さ分戻すのはそのままでOK */
        
        /* スマホだとボタンが大きく感じる場合はサイズ調整 */
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
	/* グランドスウィート */
	.suite-feature-grid {
        flex-direction: column; /* スマホでは縦並び */
        gap: 15px;
        padding: 0 20px;
    }
	/* こだわりの設備 */
	.features-grid {
        flex-direction: column;
        padding: 0 20px;
    }
    .section-common-title {
        font-size: 24px;
        margin-bottom: 50px;
    }
    .feature-card {
        margin-bottom: 40px;
    }
	/* アメニティ */
	.amenity-section {
        padding: 60px 0; /* 上下余白を少し縮める */
    }
	.amenity-grid {
        flex-direction: column; /* 縦並びに */
        align-items: center;    /* ★画像などを中央に寄せる */
        gap: 40px;
    }
    .amenity-list-columns {
        flex-direction: column;
        gap: 0;
    }
	.amenity-main-img {
        width: 100%; /* 画像を横幅いっぱい（パディング内）に */
    }
	.amenity-content {
        width: 100%; /* コンテンツも横幅いっぱいに */
        padding: 0;
    }
	.section-intro-text {
        font-size: 14px;
        margin-bottom: 40px;
        /* スマホでも読みやすいよう左寄せを維持 */
        text-align: left; 
    }
	.amenity-list-columns {
        flex-direction: column;
        gap: 10px;
    }
    .amenity-sub-imgs {
        margin-top: 30px;
    }
	.amenity-list-columns li {
        padding: 10px 0; /* タップしやすく */
    }
	
	.features-section {
    background-color: #fff;
    padding-top: 50px;
	padding-bottom: 50px;
}
} /* ← ここでスマホ設定をしっかり閉じる */

/* --- 施設案内ヒーローエリア --- */
.hero-banquet {
    height: 100vh !important;
    min-height: 500px !important;
    position: relative !important;
    display: block !important;
    overflow: hidden !important;
    background-color: #000; /* 画像読み込み前のチラつき防止 */
	z-index: 10;
}

.banquet-mv-container {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banquet-mv-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* オーバーレイ（画像に少し暗みを付けて文字を読みやすくする） */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* 重厚感を出すため薄く黒を乗せる */
    z-index: 2;
}
.banquet-mv-title-wrap {
    position: absolute;
    bottom: 80px;
    left: 80px; /* 少し余裕を持たせて調整 */
    z-index: 15;
    color: #fff;
    text-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.banquet-mv-title {
    font-size: 80px;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 15px;
}

.banquet-mv-subtitle {
    font-size: 18px;
    letter-spacing: 0.3em;
    padding-left: 5px;
    opacity: 0.9;
}

/* 宴会場イントロ全体 */
.facility-banquet-intro {
	position: relative;
    z-index: 5;
    padding: 100px 0;
    background-color: #fff;
}

.banquet-container {
    max-width: 1200px; /* ★ここ！画面がどれだけ広くても1200pxまでに制限します */
    margin: 0 auto;    /* ★ここ！これで左右中央に配置されます */
    padding: 0 40px;   /* スマホなどで端にベタ付きしないための予備余白 */
}

/* 横並びのコンテナ（左：テキスト / 右：画像） */
.banquet-intro-row {
    display: flex;
    justify-content: space-between;
    align-items: center; /* 上下中央揃え */
    gap: 8%;
}

/* 左：テキストエリア */
.banquet-intro-info {
    width: 42%; /* 画像との間に余裕を持たせるため少し細めます */
    align-items: flex-start; /* 全体を左寄せベースにする */
}

.banquet-intro-title {
    text-align: left;
    font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: 30px;
}

/* 説明文：左揃えのまま中央配置 */
.banquet-intro-desc {
    margin-left: 0;
    text-align: left; /* 行頭を揃える */
}

.banquet-intro-desc p {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 0;
    white-space: nowrap; /* PCでの勝手な改行を防止 */
}

/* 右：画像エリア */
.banquet-intro-image {
    width: 50%;
}

.banquet-intro-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* インペリアルセクション全体 */
.banquet-imperial-section {
    padding: 60px 0 100px;
    background-color: #fff;
}

/* タイトル */
.imperial-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: left; /* イントロのタイトル位置と合わせる */
}

/* スライダー全体の枠 */
.imperial-slider-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* メイン画像 */
.imperial-main-view {
    width: 100%;
    margin-bottom: 5px; /* サムネイルとの間にごくわずかな隙間 */
}

.imperial-main-view img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9; /* 画像の比率を一定に保つ */
    object-fit: cover;
}

/* サムネイルエリア（4枚密着） */
.imperial-thumbnails {
    display: flex;
    gap: 0; /* デザイン画像通り隙間なし */
    width: 100%;
}

.thumb-item {
    flex: 1;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    opacity: 0.6; /* 通常時は少し薄く */
    transition: opacity 0.3s ease;
}

.thumb-item.active {
    opacity: 1; /* 選択されている画像ははっきり見せる */
}

.thumb-item:hover {
    opacity: 1;
}

.thumb-item img {
    width: 100%;
    height: 150px; /* サムネイルの高さを固定 */
    display: block;
    object-fit: cover;
}

/* インペリアル詳細エリア */
.imperial-detail {
    padding-bottom: 100px;
    background-color: #fff;
}

/* 特徴セクション（2カラム風） */
.imperial-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 40px;
}

.features-text {
    width: 45%;
    font-size: 15px;
    line-height: 1.8;
}

.features-list {
    width: 50%;
    list-style: none;
    padding-left: 0;
}

.features-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    line-height: 1.6;
	font-size: 15px;
}

.features-list li::before {
    content: "・";
    position: absolute;
    left: 0;
}

/* 基本情報テーブル */
.spec-label {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    border-left: 4px solid #333;
    padding-left: 15px;
}

.imperial-specs {
    margin-bottom: 60px;
}

.spec-row {
    display: flex;
    border-top: 1px solid #eee;
    padding: 20px 0;
}

.spec-row:last-child {
    border-bottom: 1px solid #eee;
}

.spec-item {
    width: 200px;
    font-weight: bold;
}

.spec-value {
    font-size:15px;
}

/* レイアウト図 */
.layout-images {
    display: flex;
    gap: 40px;
}

.layout-item {
    flex: 1;
}

.layout-item img {
    width: 100%;
    height: auto;
    border: 1px solid #eee;
}

.layout-item p {
    text-align: center;
    margin-top: 15px;
    font-weight: bold;
    color: #666;
}

/* --- サファイアセクション全体 --- */
.banquet-sapphire-section {
    padding: 60px 0 100px;
    background-color: #fff;
}

/* タイトル */
.sapphire-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: left; /* 左揃えのまま配置 */
}

/* スライダー全体の枠 */
.sapphire-slider-container {
    width: 100%;
    margin: 0 auto;
}

/* メイン画像 */
.sapphire-main-view {
    width: 100%;
    margin-bottom: 5px; /* サムネイルとの間にごくわずかな隙間 */
}

.sapphire-main-view img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9; /* 画像の比率を一定に保つ */
    object-fit: cover;
}

/* サムネイルエリア（4枚密着） */
.sapphire-thumbnails {
    display: flex;
    gap: 0; /* インペリアルと同じく隙間なし */
    width: 100%;
}

.banquet-sapphire-section .thumb-item {
    flex: 1;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    opacity: 0.6; /* 通常時は少し薄く */
    transition: opacity 0.3s ease;
}

.banquet-sapphire-section .thumb-item.active {
    opacity: 1; /* 選択されている画像ははっきり見せる */
}

.banquet-sapphire-section .thumb-item:hover {
    opacity: 1;
}

.banquet-sapphire-section .thumb-item img {
    width: 100%;
    height: 150px; /* サムネイルの高さを固定 */
    display: block;
    object-fit: cover;
}
/* サファイア詳細エリア */
.sapphire-detail {
    padding-bottom: 100px;
    background-color: #fff;
}

/* 特徴テキスト */
.sapphire-features {
    margin-bottom: 40px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 30px;
}

.sapphire-features .features-text {
    font-size: 15px;
    line-height: 1.8;
}

/* 基本情報とレイアウトはインペリアルの共通クラスがあればそのまま適用されますが、
   念のためサファイア用にも継承させます */
.sapphire-specs {
    margin-bottom: 60px;
}

.sapphire-layout .layout-images {
    display: flex;
    gap: 40px;
}

/* プランセクション全体 */
.banquet-plan-section {
    padding: 80px 0;
    background-color: #fff;
}

.plan-main-title {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 50px;
    text-align: left;
}

.plan-group {
    margin-bottom: 80px;
}

.plan-type-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 30px;
    border-bottom: 2px solid #333;
    display: inline-block;
    padding-bottom: 5px;
}

/* プラン1つの塊 */
.plan-item {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 40px;
}

/* 偶数番目（お祝いプラン）を左右反転させる設定 */
.plan-item.reverse {
    flex-direction: row-reverse;
}

.plan-image {
    flex: 1;
}

.plan-image img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 10px 10px 0px #f0f0f0; /* 少し高級感を出す装飾 */
}

.plan-info {
    flex: 1;
}

.plan-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.plan-intro {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.plan-details {
    margin-bottom: 30px;
    line-height: 2;
    font-size: 15px;
}

/* 詳しく見るボタン */
.btn-plan-more {
    display: inline-block;
    background-color: #3b517e; /* 紺色系 */
    color: #fff;
    padding: 15px 60px;
    text-decoration: none;
    font-size: 0.9rem;
    position: relative;
    transition: background-color 0.3s;
}

.btn-plan-more::after {
    content: '>'; /* デザインにある矢印 */
    position: absolute;
    right: 20px;
}

.btn-plan-more:hover {
    background-color: #2a3a5a;
}

/* ご慶事プランセクション */
.banquet-celebration-plan {
    padding: 60px 0 100px;
    background-color: #fff;
}

.celebration-main-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: left;
}

/* 3カラムグリッド */
.celebration-grid {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.celebration-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.celebration-img {
    width: 100%;
    margin-bottom: 20px;
}

.celebration-img img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
}

.celebration-content {
    text-align: left;
}

.plan-name {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 15px;
    margin-bottom: 25px;
}

/* ボタンは前のPLANセクションの .btn-plan-more を流用 */
.celebration-card .btn-plan-more {
    width: 100%; /* カード内では幅いっぱいにする */
    box-sizing: border-box;
    text-align: center;
}
/* ご法要・その他プランセクション */
.banquet-other-plan {
    padding: 60px 0 100px;
    background-color: #fff;
}

.other-main-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 40px;
}

/* 2カラムグリッド */
.other-plan-grid {
    display: flex;
    gap: 40px;
}

.other-plan-card {
    flex: 1;
    display: flex;
    flex-direction: column; /* 中身を縦に並べる */
    height: auto;
}

.other-plan-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* 余ったスペースをこのエリアで埋める */
}

.other-plan-img {
    margin-bottom: 25px;
}

.other-plan-img img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.other-plan-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.other-plan-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    
}

/* 料金リストのスタイル */
.other-plan-price-list {
    margin-bottom: 15px;
}

.other-plan-price-list p {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    margin-bottom: 8px;
    font-weight: bold;
}

.note {
    font-size: 0.9rem;
    margin-bottom: 25px;
	margin-top: auto;
}

/* ボタンの幅調整 */
.other-plan-card .btn-plan-more {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    margin-top: auto;
}

/* コンタクトセクション */
.banquet-contact {
    position: relative;
    /* 実際にはインペリアルの画像などを背景に指定してください */
    background-image: url('../img/banquet/banquet-mv.jpg'); 
    background-size: cover;
    background-position:center center;
    background-attachment: scroll; /* パララックス効果（背景固定） */
    color: #fff;
    text-align: center;
	overflow: hidden;
}

/* 背景を暗くして文字を浮かせるオーバーレイ */
.contact-overlay {
    background-color: rgba(0, 0, 0, 0.4); /* 黒の40%透過 */
    padding: 100px 0;
}

.contact-title {
    font-size: 2.5rem;
    letter-spacing: 0.2em;
    margin-bottom: 5px;
}

.contact-subtitle {
    font-size: 0.9rem;
    margin-bottom: 40px;
    letter-spacing: 0.1em;
}

.contact-lead {
    font-size: 1.1rem;
    margin-bottom: 50px;
}

/* 電話番号エリア */
.contact-tel-area {
    margin-bottom: 60px;
}

.tel-label {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.tel-number {
    font-size: 3rem;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
	font-weight: bold;
}

.tel-number a {
    color: #ffffff !important;         /* 文字色を白に強制 */
    text-decoration: none !important;  /* 下線を完全に消す */
    font-weight: bold;                 /* 必要であれば太字に */
}

.tel-number a:visited,
.tel-number a:hover,
.tel-number a:active {
    color: #ffffff !important;
    text-decoration: none !important;
}

.tel-time {
    font-size: 0.95rem;
}

/* 白いボタンエリア */
.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-contact-white {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    height: 70px;
    background-color: #fff;
    color: #3b517e; /* 紺色系 */
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    position: relative;
    transition: opacity 0.3s;
}

.btn-contact-white:hover {
    opacity: 0.9;
}

/* ボタン内の矢印 ">" */
.btn-contact-white .arrow {
    position: absolute;
    right: 30px;
    width: 10px;
    height: 10px;
    border-top: 1px solid #3b517e;
    border-right: 1px solid #3b517e;
    transform: rotate(45deg);
}

/* --- スマホ対応 --- */
@media screen and (max-width: 768px) {
    .banquet-mv-title-wrap {
        left: 30px;
        bottom: 150px;
    }
    .banquet-mv-title {
        font-size: 48px;
    }
    .banquet-mv-subtitle {
        font-size: 14px;
    }
	
	/* イントロ */
	.facility-banquet-intro {
    padding-top: 50px;
}
	
	.banquet-container {
        padding: 0 20px; /* スマホでは左右余白を少し詰める */
    }
	.banquet-intro-row {
        flex-direction: column; /* ★これで縦並びになります */
        gap: 40px;
    }
    .banquet-intro-info, .banquet-intro-image {
        width: 100%;
    }
    .banquet-intro-desc p {
        white-space: normal;
        text-align: left;
		font-size: 15px;
        line-height: 1.8;
    }
    .banquet-intro-title {
        font-size: 1.3rem;
        margin-top: 20px;
    }
	.banquet-intro-image img {
        width: 100%;
        height: auto;
    }
	
	/* インペリアル */
	.thumb-item img {
        height: 80px;
    }
	.banquet-imperial-section {
    padding: 0px 0 50px;
	}
	
	/* インペリアル詳細 */
	.imperial-features {
        flex-direction: column;
    }
    .features-text, .features-list {
        width: 100%;
    }
    .features-list {
        margin-top: 20px;
    }
    .spec-row {
        flex-direction: column;
        gap: 5px;
    }
    .spec-item {
        width: 100%;
    }
	.spec-value {
    font-size;15px;
}
    .layout-images {
        flex-direction: column;
    }
	/* サファイア */
	.banquet-sapphire-section {
    padding: 60px 0 50px;
}

	.banquet-sapphire-section .thumb-item img {
        height: 80px;
    }
	/* サファイア詳細 */
	.sapphire-layout .layout-images {
        flex-direction: column;
    }
	/* プラン */
	.plan-item, .plan-item.reverse {
        flex-direction: column;
        gap: 30px;
    }
	.plan-image, .plan-info {
        width: 100% !important;
        max-width: 100% !important;
    }
    .plan-title {
        font-size: 1.3rem;
    }
    .btn-plan-more {
        width: 100%;
        text-align: center;
    }
	/* ご慶事プラン */
	.banquet-plan-section {
    padding: 0px 0;
}
	.celebration-grid {
        flex-direction: column;
        gap: 50px;
    }
	/* 法要・その他プラン */
	.other-plan-grid {
        flex-direction: column;
        gap: 60px;
    }
	/* コンタクト */
	.tel-number {
        font-size: 2rem;
    }
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn-contact-white {
        width: 100%;
        max-width: 350px;
    }
}

/* --- 施設案内ヒーローエリア --- */
.hero-facilities {
    height: 100vh !important;
    min-height: 500px !important;
    position: relative !important;
    display: block !important;
    overflow: visible !important;
    background-color: #000; /* 画像読み込み前のチラつき防止 */
	z-index: 1;
}

.facilities-mv-container {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.facilities-mv-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* オーバーレイ（画像に少し暗みを付けて文字を読みやすくする） */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* 重厚感を出すため薄く黒を乗せる */
    z-index: 2;
}

/* タイトル位置（ROOMと同じく左下） */
.facilities-mv-title-wrap {
    position: absolute;
    bottom: 80px;
    left: 80px; /* 少し余裕を持たせて調整 */
    z-index: 5;
    color: #fff;
    text-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.facilities-mv-title {
    font-size: 80px;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 15px;
}

.facilities-mv-subtitle {
    font-size: 18px;
    letter-spacing: 0.3em;
    padding-left: 5px;
    opacity: 0.9;
}

/* 施設リスト */
.facilities-list-section {
    background-color: #fff;
    padding: 120px 0;
}

.facilities-list-section .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 80px 4%; /* 上下余白 80px / 左右余白 4% */
}

/* 施設アイテムの基本（横並び） */
.facility-item {
    width: 48%;
    display: flex !important;      /* flexを強制 */
    flex-direction: column !important; /* ★ここが最重要！横並びを禁止して縦に並べる */
    gap: 20px;
}



/* 画像エリア */
.facility-image {
    width: 100% !important;
}

.facility-image img {
    width: 100% !important;
    height: auto;
    display: block;
    object-fit: cover;
}

/* テキストエリア */
.facility-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* 中身を中央へ */
    
}

.facility-name {
    width: 100%;
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 5px;
    font-weight: bold;
}

.facility-time,
.facility-desc {
    text-align: left;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.facility-time {
    font-weight: bold;
    margin-bottom: 10px;
}

.facility-desc {
    font-size: 15px;
    line-height: 2;
    color: #444;
    text-align: left; /* 本文は読みやすく左寄せ */
    display: inline-block; /* text-align:centerの影響下で左寄せを保つ */
}

/* サウナ */
/* 上段：画像と説明の横並び */
.sauna-main-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 5%;
}

.sauna-main-image {
    width: 50%;
}

.sauna-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.sauna-details {
    width: 45%;
}

.sauna-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 30px;
    
}

.sauna-intro {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* スペック表のスタイル */
.sauna-spec-table {
    width: 100%;
    border-collapse: collapse;
}

.sauna-spec-table th, 
.sauna-spec-table td {
    padding: 20px 0;
    font-size: 0.9rem;
    vertical-align: top;
    text-align: left;
}

.sauna-spec-table th {
    width: 120px;
    font-weight: bold;
}

.sauna-spec-table td span {
    font-size: 0.8rem;
    color: #666;
}

.sauna-spec-table small {
    display: block;
    margin-top: 10px;
    font-size: 0.75rem;
    color: #888;
}

/* 下段：3枚画像 */
.sauna-sub-images {
    display: flex;
    gap: 0px;
}

.sub-img {
    flex: 1;
	overflow: hidden;
}

.sub-img img {
    width: 100%;
    height: 250px; /* 高さを揃える */
    object-fit: cover;
}


/* マッサージセクションSP（サウナと同じ余白） */
.facility-massage-section {
    padding: 100px 0;
    background-color: #fff;
}

/* 上段：画像と説明の横並び */
.massage-main-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 5%;
}

.massage-main-image {
    width: 50%;
}

.massage-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.massage-details {
    width: 45%;
}

.massage-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 30px;
    
}

.massage-intro {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* スペック表のスタイル（サウナと統一） */
.massage-spec-table {
    width: 100%;
    border-collapse: collapse;
}

.massage-spec-table th, 
.massage-spec-table td {
    padding: 20px 0;
    font-size: 0.9rem;
    vertical-align: top;
    text-align: left;
    border-bottom: 1px solid #eee; /* 項目ごとの区切り線を追加（お好みで） */
}

.massage-spec-table th {
    width: 120px;
    font-weight: bold;
}

.massage-spec-table small {
    display: block;
    margin-top: 10px;
    font-size: 0.75rem;
    color: #888;
}

/* 下段：3枚画像（サウナと同様にgap 0） */
.massage-sub-images {
    display: flex;
    gap: 0;
    width: 100%;
    margin-top: 20px;
}

.massage-sub-images .sub-img {
    flex: 1;
}

.massage-sub-images .sub-img img {
    width: 100%;
    height: 350px; /* サウナより少し高めでも良いかもしれません */
    display: block;
    object-fit: cover;
}

/* テルマアルセクション */
.facility-thermale-section {
    padding: 0px 0;
    background-color: #fff;
}

/* 画像を横幅いっぱいに */
.thermale-main-image {
    width: 100%;
    margin-bottom: 70px;
}

.thermale-main-image img {
    width: 100%;
    height: auto;
    display: block;
}
.facility-thermale-details-section {
    padding: 100px 0; /* 上下の余白を広げて統一 */
    background-color: #fff;
}

.thermale-desc {
        max-width: 100%;
        padding: 0 20px;
    }
    .thermale-desc p {
        white-space: normal; /* スマホでは画面幅に合わせて折り返す */
        text-align: left;
    }

.thermale-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* ★重要：中身を上揃えにする */
    margin-bottom: 40px;
    gap: 5%; /* 画像と表の間のスペース（サウナ等と同じ） */
}

/* 画像を横幅いっぱいに */
.thermale-detail-image {
    width: 50% !important; /* ★ここ！横幅を画面の半分に制限 */
}

.thermale-detail-image img {
    width: 100% !important;
    height: auto;
    display: block;
    object-fit: cover; /* 比率を保って枠いっぱいに表示 */
}

/* テキストエリア */
.thermale-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* 子要素を中央に寄せる */
    margin-top: 40px;
}

.thermale-title {
    width: 100%;
    text-align: center; /* タイトルは完全な中央揃え */
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
}

/* 説明文：左揃えのまま中央に配置 */
.thermale-desc {
    max-width: fit-content; /* 中身の文章の長さに幅を合わせる */
    margin-left: auto;      /* 左右autoでブロックを中央へ */
    margin-right: auto;
    text-align: left;       /* ★ここ！行の頭を左に揃える */
}

.thermale-desc p {
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 0;
    /*white-space: nowrap;*/    /* PCで勝手に改行されないようにする（デザイン維持） */
}

.thermale-spec-table {
    width: 100%;
    border-collapse: collapse;
}
/* テルマアル詳細 */
.thermale-spec-table th, 
.thermale-spec-table td {
    padding: 20px 0;
    font-size: 0.9rem;
    vertical-align: top;
    text-align: left; /* ★ここ！行の頭を左に揃える */
    border-bottom: 1px solid #eee; /* 項目ごとの区切り線を追加（お好みで） */
}

.thermale-spec-table th {
    width: 140px; /* 項目名の幅を少し広げて調整 */
    font-weight: bold;
}

.thermale-spec-table td {
    color: #333;
    line-height: 1.8;
}

.thermale-spec-table small {
    display: block;
    margin-top: 10px;
    font-size: 0.75rem;
    color: #888;
}

/* その他関連施設(リンク集) */
.related-facilities-section {
	padding-top: 50px;
    padding-bottom: 100px;
    background-color: #fff;
    text-align: center;
}

/* グリッドレイアウト（横2列） */
.related-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1000px; /* デザインに合わせて調整 */
    margin: 0 auto;
	padding-top:50px;
    gap: 60px 4%; /* 縦60px、横4%の余白 */
}

/* 各アイテム（aタグ全体をボタンにする） */
.related-item {
    width: 48%;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ホバーエフェクト（マウスを乗せた時） */
.related-item:hover {
    transform: translateY(-5px); /* 少し上に浮く */
    opacity: 0.8;
}

/* 画像エリア */
.related-img {
    width: 100%;
    margin-bottom: 15px;
    line-height: 0; /* 下に謎の隙間ができるのを防ぐ */
}

.related-img img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* 軽い影でボタン感を出す */
}

/* テキスト（施設名） */
.related-name {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* --- スマホ対応 --- */
@media screen and (max-width: 768px) {
    .facilities-mv-title-wrap {
        left: 30px;
        bottom: 150px;
    }
    .facilities-mv-title {
        font-size: 48px;
    }
    .facilities-mv-subtitle {
        font-size: 14px;
    }
	
	/* --- 施設リストSP --- */
	.facilities-list-section {
    padding: 70px 0;
}
	.facilities-list-section .container {
    gap: 0px 4%;
}
	.facility-item, 
    .facility-item.reverse {
        flex-direction: column; /* スマホは全部縦並び */
        gap: 30px;
        margin-bottom: 80px;
    }
    .facility-info {
        padding: 0 10px;
    }
    .facility-desc {
        text-align: center; /* スマホでは中央の方が見栄えが良い場合が多い */
    }
	
	.facility-item {
        width: 100%;
    }
	
	/* --- サウナSP --- */
	.sauna-details {
        padding-left:20px;
		padding-right:20px;
		padding-top:30px;
    }
	.sauna-main-row {
        flex-direction: column;
    }
    .sauna-main-image, .sauna-details {
        width: 100%;
    }
    .sauna-sub-images {
        display: flex;
        flex-direction: column; 
        gap: 0;                 
        width: 100%;            
    }
	.sauna-sub-images .sub-img {
        width: 100%;
        line-height: 0;
    }

    .sauna-sub-images .sub-img img {
        width: 100% !important;
        height: 350px !important; 
        display: block;
        object-fit: cover;
    }
	
	/* --- マッサージSP --- */
	.massage-main-row {
        flex-direction: column;
    }
    .massage-main-image, .massage-details {
        width: 100%;
    }
    .massage-sub-images {
        flex-direction: column;
    }
	.massage-details {
        padding-left:20px;
		padding-right:20px;
		padding-top:30px;
    }
	
	/* --- テルマアルSP --- */
	.thermale-title {
        font-size: 1.5rem;
    }
	.thermale-desc {
        max-width: 100%;
        padding: 0 20px;
    }
    .thermale-desc p {
        font-size: 0.9rem;
        text-align: left; /* スマホでは読みやすく左寄せ */
        padding: 0 10px;
		white-space: normal;
    }
	
	/* テルマアル詳細セクション全体 */
.thermale-detail-row {
        flex-direction: column; /* スマホでは縦並び */
    }
    .thermale-detail-image, .thermale-detail-info {
        width: 100% !important;
    }
	.thermale-detail-info {
        padding-left:20px;
		padding-right:20px;
    }
    .thermale-sub-images {
        flex-direction: column;
    }
	.facility-thermale-details-section {
    padding-top: 100px;
	padding-bottom:0px;
    
}
	/* その他関連施設リンク集 */
	.related-item {
        width: 100%;
    }
    .related-grid {
        gap: 40px 0;
    }
}
/* --- 施設案内ヒーローエリア --- */
.hero-ante {
    height: 100vh !important;
    min-height: 500px !important;
    position: relative !important;
    display: block !important;
    overflow: hidden !important;
    background-color: #000; /* 画像読み込み前のチラつき防止 */
	z-index: 10;
}

.ante-mv-container {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ante-mv-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* オーバーレイ（画像に少し暗みを付けて文字を読みやすくする） */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* 重厚感を出すため薄く黒を乗せる */
    z-index: 2;
}
.ante-mv-title-wrap {
    position: absolute;
    bottom: 80px;
    left: 80px; /* 少し余裕を持たせて調整 */
    z-index: 15;
    color: #fff;
    text-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.ante-mv-title {
    font-size: 80px;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 15px;
}

.ante-mv-subtitle {
    font-size: 18px;
    letter-spacing: 0.3em;
    padding-left: 5px;
    opacity: 0.9;
}

/* 朝食セクション */
/* --- 朝食・ランチ共通設定（左右のズレを根絶） --- */
.menu-section {
    width: 100% !important;
    overflow: hidden !important; /* はみ出しを絶対に許さない */
    background-color: #fff;
}
.menu-desc {
	font-size:14px;
}
.menu-date-info{
	font-size:14px;
}

.menu-card-desc{
	font-size:14px;
}
.menu-container {
    max-width: 1200px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 20px 100px !important; /* 左右20pxで固定 */
    box-sizing: border-box !important;
}
/* --- 朝食セクション（PC） --- */
.menu-flex-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
	padding-top:50px;
}

.menu-text-side { flex: 1; }
.menu-image-side { flex: 0 0 55%; }

.menu-cat-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 60px;
    letter-spacing: 0.1em;
}

.menu-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- ランチセクション（PCで右に寄る問題を解決） --- */
.menu-section .menu-container {
    max-width: 1200px !important;
    width: 100% !important;
    margin: 0 auto !important; /* ★中央寄せの絶対命令 */
    padding: 0 40px 100px !important; /* 左右40pxで固定 */
    box-sizing: border-box !important;
    display: block !important; /* flexを解除 */
}

/* --- 2. グリッド：PCでの右寄りと、画像の突き抜けを解決 --- */
.menu-grid,.lunch-2nd-row {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important; /* 3枚を均等に */
    gap: 20px !important; /* ★カラム間の余白 */
    width: 100% !important;
    max-width: 1000px !important; /* コンテナ(1120px)より狭くして余白を作る */
    margin: 0 auto !important; /* ★グリッド自体をコンテナの中央に配置 */
    padding: 0 !important;
    align-items: stretch !important; /* カード自体の高さを揃える */
}

/* --- 3. カードの設定 --- */
.menu-card {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    box-sizing: border-box !important;
	margin: 0 !important; /* ★左に飛び出す原因（負のマージン等）を削除 */
    padding: 0 !important;
}

/* --- 4. 画像エリア：カラム幅から「絶対に」はみ出させない --- */
.menu-card-img {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    margin-bottom: 25px !important;
    box-sizing: border-box !important;
}

.menu-card-img img {
    /* これが重要！画像をカラムの幅に強制的に縮小させる */
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important; /* アスペクト比を維持 */
    display: block !important;
    object-fit: cover !important; /* カラムいっぱいに綺麗に収める */
}

/* --- 5. カード内部：下揃え、縦線の調整 --- */
.menu-card-body {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important; /* ボタンを下へ押し下げるため */
    padding: 0 25px 25px 25px !important; /* 左右対称のパディング */
    border-left: 1px solid #333 !important;
    margin: 0 !important; /* 変なマージンをリセット */
    box-sizing: border-box !important;
}

.menu-details-wrap {
    border-left: none !important; 
    padding-left: 0 !important;
    flex: 1 !important; /* これがボタンを一番下へ押し下げる魔法 */
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
}

/* 一番右のテイクアウトにボタンがない場合も高さを合わせる（重要） */
.menu-card:last-child .menu-details-wrap {
    justify-content: flex-start !important;
}
.menu-price {
    text-align: right !important; /* 右寄せを強制 */
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    display: block; /* 幅いっぱいに使って右に寄せる */
}
.menu-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 10px !important; /* 左に10pxの余白を追加して縦線から離す */
}

.menu-list li {
    font-size: 14px;
    line-height: 1.6;
    padding-left: 1.5em; /* ▪とテキストの間の距離 */
    margin-bottom: 12px;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.menu-list li::before {
    content: "▪";
    position: absolute;
    left: 0;
    top: 1.0em;
    transform: translateY(-50%);
    font-size: 10px;
}

.menu-list-narrow {
    list-style: none;
    padding: 0;
    /* 左に 15px のマージンを入れて縦線から離す */
    margin: 20px 0 30px 15px !important; 
}

.menu-list-narrow li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    border-bottom: 1px dotted #ccc;
    padding: 10px 0;
    width: 100%; /* 親の幅に合わせる */
}
/* --- 6. 予約ボタン：下端揃え ＆ 中央寄せ --- */
.btn-reserve {
    /*display: block !important;*/
    width: 100% !important;
    max-width: 240px !important;
    /* 上に40pxの余白を作り、左右autoで中央に、margin-top:autoで最下部に固定 */
    margin: 60px auto 0 !important; 
    background-color: #2e4370;
    color: #fff;
    text-align: center;
    padding: 12px 0;
    text-decoration: none;
    font-size: 14px;
}
/* --- 2段目用の特別な設定 --- */
.lunch-2nd-row {
    margin-top: 60px !important;
}
.lunch-2nd-row .menu-card {
    margin: 0 !important; /* ここに margin-left が入っているとズレます */
    padding: 0 !important;
    width: 100% !important;
}
.lunch-2nd-row .menu-card-body {
    margin-left: 0 !important;
    /* 1段目の padding-left と同じ数値（25px）に固定 */
    padding-left: 25px !important; 
    border-left: 1px solid #333 !important;
}

/* お子様プレートの「■」と二重線対策 */
.menu-list-square {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 15px !important;
}

.menu-list-square li {
    font-size: 15px;
    line-height: 1.6;
    padding-left: 1.5em;
    margin-bottom: 12px;
    position: relative;
}

/* 記号を「■」にする場合 */
.menu-list-square li::before {
    content: "▪";
    position: absolute;
    left: 0;
    top: 1.0em;
    transform: translateY(-50%);
    font-size: 10px;
    color: #333;
}
/* --- 7. スマホ対応 (実機での「右ピッタリ・はみ出し」完全対策) --- */
@media screen and (max-width: 768px) {
	.ante-mv-title-wrap {
        left: 20px !important;  /* 左端から少し離す */
        right: 20px !important; /* 右端にも余白を設ける */
        bottom: 100px !important;
        width: calc(100% - 40px) !important; /* 画面幅内に収める */
    }

    .ante-mv-title {
        /* 1. 文字サイズを大幅に下げる（48pxだとまだ大きい場合があるのでvwを使用） */
        font-size: clamp(32px, 10vw, 44px) !important; 
        
        /* 2. 英単語が長くても途中で折れるようにする */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
        
        line-height: 1.1 !important;
        margin-bottom: 10px !important;
    }

    .ante-mv-subtitle {
        font-size: 14px !important;
        letter-spacing: 0.1em !important;
    }
	.menu-flex-row {
        flex-direction: column !important; /* スマホで縦並びを強制 */
        gap: 30px !important;
		padding-top:30px;
    }
	.menu-image-side {
        width: 100% !important;
        order: -1 !important; /* 画像を上に持ってくる */
    }
    .menu-text-side {
        width: 100% !important;
    }
    /* コンテナの左右パディングを均等にする (左10px、右端0を解消) */
    .lunch-section .menu-container {
        padding: 0 20px 60px !important; /* 左右20pxで均等に */
    }

    .menu-grid {
        grid-template-columns: 1fr !important; /* 確実に1列 */
        width: 100% !important;
        max-width: 100% !important;
        margin: 20px auto !important;
    }

    /* 画像を「少し縮小して」綺麗に見せる (左右パディングを確保) */
    .menu-card-img img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        /* 親(card-body)のパディング(15px)が効いて、画像が少し縮小されて見える */
    }

    .menu-card-body {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* ボタンがはみ出さないように幅を制御 */
    .btn-reserve {
        width: 100% !important;
        max-width: 280px !important;
        margin: 60px auto 0 !important;
    }
}

.hero-res {
    height: 100vh !important;
    min-height: 500px !important;
    position: relative !important;
    display: block !important;
    overflow: hidden !important;
	z-index: 10;
}

.res-mv-container {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.res-mv-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.res-mv-title-wrap {
    position: absolute;
    bottom: 80px;
    left: 50px;
    z-index: 15;
    color: #fff;
    text-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.res-mv-title {
    font-size: 80px;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 10px;
}

.res-mv-subtitle {
    font-size: 18px;
    letter-spacing: 0.3em;
    padding-left: 5px;
}

.banquet-container {
    max-width: 1200px; /* ★ここ！画面がどれだけ広くても1200pxまでに制限します */
    margin: 0 auto;    /* ★ここ！これで左右中央に配置されます */
    padding: 0 40px;   /* スマホなどで端にベタ付きしないための予備余白 */
}


/* --- フォームセクション共通 --- */
.form-section {
    padding: 100px 0;
    background-color: #fff;
}

.form-intro {
    text-align: center;
    margin-bottom: 60px;
    font-size: 15px;
    line-height: 2;
    color: #333;
}

.bridal-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* フォームテーブル */
.form-table {
    width: 100%;
    border-collapse: collapse;
    border-top: 2px solid #333; /* 上端を強調して品格を出す */
    margin-bottom: 40px;
}

.form-table th {
    width: 30%;
    padding: 30px 20px;
    background-color: #f9f9f9;
    text-align: left;
    font-size: 14px;
    font-weight: bold;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.form-table td {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

/* 必須ラベル（紺色に合わせる場合） */
.must {
    background-color: #3b517e;
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    margin-left: 10px;
    border-radius: 2px;
}

/* 入力パーツ */
.input-item {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    font-size: 15px;
    box-sizing: border-box;
    background-color: #fff;
}

textarea.input-item {
    resize: vertical;
}

/* 送信ボタンエリア */
.form-submit-area {
    text-align: center;
    margin-top: 40px;
}

.privacy-policy-text {
    font-size: 13px;
    margin-bottom: 30px;
    color: #666;
}

.privacy-policy-text a {
    color: #3b517e;
    text-decoration: underline;
}

.form-btn {
    width: 350px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

/* --- お問い合わせボタンの修正 --- */
.contact-form-item .btn-submit,
input[type="submit"],
button[type="submit"] {
    /* ブラウザ標準の見た目をリセット */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    cursor: pointer;

    /* スタイル設定 */
    display: block !important;
    width: 100% !important;
    max-width: 300px !important;    /* ボタンの最大幅 */
    margin: 50px auto 0 !important; /* 上に余白、左右中央寄せ */
    padding: 16px 0 !important;
    
    background-color: #2e4370 !important; /* ホテルの紺色 */
    color: #ffffff !important;            /* ★文字を白に強制 */
    
    font-size: 16px !important;
    font-weight: bold !important;
    text-align: center !important;
    text-decoration: none !important;
    
    transition: all 0.3s ease;
    border-radius: 0; /* 角を丸めない（ホテルデザインに合わせる） */
}

/* マウスを乗せた時の動き（ふわっと明るくする） */
.contact-form-item .btn-submit:hover,
input[type="submit"]:hover {
    background-color: #3d5a94 !important;
    opacity: 0.9;
}

/*  スマホ表示 (768px以下) */
@media screen and (max-width: 768px) {
	.hero-res { height: 100svh !important; }
    .res-mv-title-wrap { left: 20px !important; bottom: 60px !important; }
    .res-mv-title { font-size: 48px !important; letter-spacing: 0.05em !important; }
    .res-mv-subtitle { font-size: 14px !important; letter-spacing: 0.2em !important; }
    .form-section {
        padding: 60px 0;
    }
	
	.banquet-container {
        padding: 0 20px; /* スマホでは左右余白を少し詰める */
    }
	
    .form-table th, .form-table td {
        display: block;
        width: 100%;
    }
    .form-table th {
        background-color: #f2f2f2;
        padding: 15px 20px;
        border-bottom: none;
    }
    .form-table td {
        padding: 15px 20px 30px;
    }
    .form-btn {
        width: 100%;
    }
	.contact-form-item .btn-submit,
    input[type="submit"] {
        width: 90% !important;
        max-width: 100% !important;
        margin: 40px auto 0 !important;
    }
}

/* --- フォームセクション共通 --- */
.form-section {
    padding: 100px 0;
    background-color: #fff;
}

.form-intro {
    text-align: center;
    margin-bottom: 60px;
    font-size: 15px;
    line-height: 2;
    color: #333;
}

.bridal-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* フォームテーブル */
.form-table {
    width: 100%;
    border-collapse: collapse;
    border-top: 2px solid #333; /* 上端を強調して品格を出す */
    margin-bottom: 40px;
}

.form-table th {
    width: 30%;
    padding: 30px 20px;
    background-color: #f9f9f9;
    text-align: left;
    font-size: 14px;
    font-weight: bold;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.form-table td {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

/* 必須ラベル（紺色に合わせる場合） */
.must {
    background-color: #3b517e;
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    margin-left: 10px;
    border-radius: 2px;
}

/* 入力パーツ */
.input-item {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    font-size: 15px;
    box-sizing: border-box;
    background-color: #fff;
}

textarea.input-item {
    resize: vertical;
}

/* 送信ボタンエリア */
.form-submit-area {
    text-align: center;
    margin-top: 40px;
}

.privacy-policy-text {
    font-size: 13px;
    margin-bottom: 30px;
    color: #666;
}

.privacy-policy-text a {
    color: #3b517e;
    text-decoration: underline;
}

.form-btn {
    width: 350px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}
/* チェックボックスの並び */
.checkbox-group {
    font-size: 15px;
    line-height: 2;
}

.checkbox-group label {
    cursor: pointer;
    margin-right: 15px;
}

.checkbox-group input[type="checkbox"] {
    transform: scale(1.2); /* 少し大きくして押しやすく */
    margin-right: 8px;
    vertical-align: middle;
}
/*  スマホ表示 (768px以下) */
@media screen and (max-width: 768px) {
    .form-section {
        padding: 60px 0;
    }
    .form-table th, .form-table td {
        display: block;
        width: 100%;
    }
    .form-table th {
        background-color: #f2f2f2;
        padding: 15px 20px;
        border-bottom: none;
    }
    .form-table td {
        padding: 15px 20px 30px;
    }
    .form-btn {
        width: 100%;
    }
}

/* --- TOPICS 共通設定 --- */
.main-header {
    background-color: rgba(46, 67, 112, 0.95) !important; /* 以前設定した紺色系 */
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* 境目をはっきりさせる */
}

/* ページ最上部の余白を微調整（ヘッダーとTOPICSタイトルの間隔） */
.topics-page {
    padding-top: 160px !important; /* ヘッダーの高さ分、少し余裕を持たせる */
    padding-bottom: 120px;
	display: block;
}

.topics-header, 
.topics-header-area {
    width: 100%;           /* 横幅いっぱいに広げる */
    text-align: center;    /* 中身のテキストを中央寄せ */
    margin-bottom: 80px;   /* 下の記事との間隔（PC） */
    display: block;        /* ブロック要素として扱う */
}
.topics-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.topics-header {
    text-align: center;
    margin-bottom: 100px;
}

.topics-main-title {
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 0.15em;
    margin-bottom: 15px;
	text-align: center;
}

.topics-sub-title {
    font-size: 14px;
    color: #888;
    letter-spacing: 0.2em;
}

/* 各記事のレイアウト */
.topic-item {
    margin-bottom: 120px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 60px;
}

.topic-item:last-child {
    border-bottom: none;
}

.topic-date {
    font-size: 14px;
    font-family: serif;
    color: #999;
    margin-bottom: 20px;
}

.topic-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 40px;
    line-height: 1.6;
}

.topic-content p {
    font-size: 15px;
    line-height: 2.2;
    margin-bottom: 40px;
}

/* 画像ギャラリー */
.topic-img-wrap {
    max-width: 500px;
    cursor: zoom-in;
    position: relative;
    overflow: hidden;
}

.topic-img-wrap img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.topic-img-wrap:hover img {
    transform: scale(1.03);
}

/* --- ライトボックス本体 --- */
.lightbox-overlay {
    display: none; /* JSで切り替え */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    justify-content: center;
    align-items: center;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-inner {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-inner img {
    max-width: 100%;
    max-height: 90vh;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 60px;
    line-height: 1;
    cursor: pointer;
}

/* --- スマホ表示 --- */
@media screen and (max-width: 768px) {
    .topics-page {
        /* ヘッダーに被らないよう、余白をしっかり取る */
        /* 120px〜140px程度に増やすと、タイトルの上に余裕が生まれます */
        padding-top: 140px !important; 
        padding-bottom: 60px;
    }

    .topics-main-title {
        font-size: 2rem;
        margin-bottom: 10px;
    }

	.topics-header, 
    .topics-header-area {
        margin-bottom: 40px; /* スマホでは間隔を少し狭める */
    }
	
	
    .topics-header {
        /* 被り解消のため、ヘッダー自体の下の余白も調整 */
        margin-bottom: 50px;
		margin-top: 120px;
    }
    .topics-container { padding: 0 24px; }
    .topic-title { font-size: 1.3rem; margin-bottom: 30px; }
    .topic-img-wrap { max-width: 100%; }
}

/* 宴会プラン全体の調整 */

.menu-section {
    margin-top:50px!important;
}
.bq-plan-section .menu-target {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
	
}
.bq-plan-section {
	margin-top:50px;
}

/* 期間・飲み放題などの小見出し */
.plan-sub-title {
    font-size: 16px;
    font-weight: bold;
    margin: 25px 0 10px;
    color: #333;
}

.plan-period {
    font-weight: bold;
    margin-bottom: 20px;
}

/* プラン料金リスト */
.plan-price-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.plan-price-list li {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}

.plan-price-list li span {
    font-weight: bold;
}

/* 特典テキスト */
.plan-benefit-intro {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.plan-benefit-text {
    font-size: 15px;
    font-weight: bold;
    color: #2e4370; /* ホテルのアクセントカラー */
    margin-bottom: 20px;
}

/* 特典リスト（★マーク） */
.plan-star-list {
    list-style: none;
    padding: 0;
}

.plan-star-list li {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
}

/* 右側画像の下にある注釈 */
.plan-footer-notes {
    margin-top: 30px;
    font-size: 13px;
    line-height: 1.8;
    color: #555;
}

.plan-footer-notes p:last-child {
    margin-top: 15px;
    font-weight: bold;
    font-size: 15px;
    color: #333;
}

/* セクションごとの区切り線 */
.bq-plan-section .menu-container {
    /* 1pxの薄いグレーの線 */
    border-bottom: 1px solid #eee; 
    /* 線と下のセクションとの間の余白 */
    padding-bottom: 100px !important; 
    /* 左右中央寄せを維持 */
    margin-bottom: 50px;
}

/* 献立リストのラップ */
.course-menu-wrap {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dotted #ccc; /* 上に区切り線 */
}

/* 献立リスト：項目名(先附など)を綺麗に揃える */
.course-menu-list {
    list-style: none;
    padding: 0;
}

.course-menu-list li {
    font-size: 15px;
    line-height: 2;
    color: #333;
    display: flex;
    align-items: flex-start;
}

.course-menu-list li span {
    font-weight: bold;
    width: 4em; /* 「先附」などの文字幅を固定して揃える */
    display: inline-block;
    flex-shrink: 0;
}

/* 注釈の記号（☆や〇）の並びを整える */
.plan-footer-notes p {
    position: relative;
    padding-left: 1.2em;
    text-indent: -1.2em; /* 2行目以降をインデントさせて記号を際立たせる */
    margin-bottom: 5px;
}

/* 特典セクション専用の調整 */
.bq-benefit-section .menu-target-sub {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.5;
}

.bq-benefit-section .menu-desc {
    font-size: 15px;
    line-height: 2;
    color: #444;
}


/* スマホ対応 */
@media screen and (max-width: 768px) {
    .plan-footer-notes {
        margin-top: 20px;
        padding: 0 10px;
    }
	
	.course-menu-wrap {
        margin-top: 30px;
    }
    .course-menu-list li {
        font-size: 14px;
    }
	.bq-benefit-section .benefit-content {
        margin-top: 40px !important;
    }
    
    .bq-benefit-section .benefit-content:first-child {
        margin-top: 0 !important;
    }

    .bq-benefit-section .menu-target-sub {
        font-size: 16px;
    }
}
/*メールフォーム*/
#EDIT-mailform-1-1 th,
#EDIT-mailform-1-1 td {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}
.cms-mailform-pressarea th,
.cms-mailform-pressarea td {
    padding: 20px 10px; 
    border-bottom: 1px solid #eee;
}
.cms-mailform-pressarea th,
.cms-mailform-pressarea td {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
    vertical-align: middle;
}

/* 2. 入力フィールド（右側）自体の高さを出し、文字にゆとりを持たせる */
.cms-mailform-pressarea input[type="text"],
.cms-mailform-pressarea input[type="email"],
.cms-mailform-pressarea input[type="tel"],
.cms-mailform-pressarea select {
    height: 50px !important;
    padding: 0 15px !important;
    font-size: 16px !important;
    box-sizing: border-box;         
}

/* 3. お問い合わせ詳細（textarea）の最小高さを確保する */
.cms-mailform-pressarea textarea {
    padding: 15px !important; 
    font-size: 16px !important;
    min-height: 250px !important; 
}
.bridal-form-wrapper h1 {
    text-align: center !important;
    display: block;
    width: 100%;
}

/* トピックス一覧 */
/* 一覧全体のコンテナ */
/* 1. 外側の枠（システム側のクラス名 .box.blogEntry に当てる） */
.box.blogEntry {
    max-width: 1000px !important;
    margin: 0 auto !important;
    padding: 60px 20px !important;
}

/* 2. 各記事のブロック */
.blogEntryListBox {
    border-bottom: 1px solid #e0e0e0 !important;
    padding-bottom: 40px !important;
    margin-bottom: 40px !important;
    position: relative;
}

/* 3. 日付（システムの .topicDate に当てる） */
.topicDate {
    font-size: 14px !important;
    color: #999 !important;
    letter-spacing: 0.1em !important;
    margin-bottom: 10px !important;
    display: block !important;
}

/* 4. タイトル（h2 タグ） */
.blogEntryListBox h2 {
    font-size: 22px !important;
    margin-bottom: 15px !important;
}

.blogEntryListBox h2 a {
    color: #333 !important;
    text-decoration: none !important;
}

/* 5. 本文 */
.blogEntryBody {
    line-height: 1.8 !important;
    color: #666 !important;
    font-size: 15px !important;
}

/* 6. 不要な項目（Permalink、著者、カテゴリなど）を消す */
.entryCategory, 
.entryFooter, 
.pageMore {
    display: none !important;
}
.blogEntry h1{
    display:none;
}
/* ページネーション（1/1など）を非表示にする */
.pageLink {
    display: none !important;
}

/* ついでに、残っているかもしれない「・」ドットも消す */
.pageLink ul, .pageLink li {
    list-style: none !important;
}
/* 1. タイトル（トピックス）や不要な枠を消す */
#blogRayout01 h3,
#blogRayout01 .boxTop,
#blogRayout01 .boxBottom {
    border: none !important;
    background: none !important;
}
#blogRayout01 h3 { display: none !important; }

/* 2. リスト全体を横並び（グリッド）にする */
#blogRayout01 ul {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

/* 3. 各記事（li）の幅を25%（4カラム）にする */
#blogRayout01 ul li {
    width: calc(25% - 15px) !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 4. 画像エリアの確保と表示 */
/* 検証コードにある blogEntryIcon-dis を利用、または a タグの前に疑似的に配置 */
.blogRecentList li {
    display: flex;
    flex-direction: column;
}

/* 日付とタイトルの装飾 */
.blogRecentList .topicDate {
    display: block !important;
    font-size: 14px !important;
    color: #666 !important;
    margin-bottom: 5px !important;
}

.blogRecentList .blogEntryTtl a {
    font-size: 15px !important;
    line-height: 1.5 !important;
    text-decoration: none !important;
    color: #333 !important;
    font-weight: 500 !important;
}

/* 5. カテゴリや「過去一覧を見る」を消す */
.blogEntryCategory,
.blogRecentLink {
    display: none !important;
}

/* スマホ対応 */
@media (max-width: 768px) {
    #blogRayout01 ul li {
        width: calc(50% - 10px) !important;
    }
}
/* 1. リスト全体を横並びにする（4カラム） */
.blogRecentList ul {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

/* 2. 各記事（li）を縦並びの構造にする */
.blogRecentList ul li {
    width: calc(25% - 15px) !important; /* 4個並び */
    display: flex !important;
    flex-direction: column !important; /* 上下並び */
    margin-bottom: 30px !important;
    border: none !important;
}

/* 3. 画像（システム側のクラス .blogEntryIcon-act）を一番上に強制移動 */
.blogRecentList .blogEntryIcon-act,
.blogRecentList .blogEntryIcon-dis {
    order: -1 !important; /* これでテキストより上にきます */
    width: 100% !important;
    aspect-ratio: 1 / 1 !important; /* 強制正方形 */
    overflow: hidden !important;
    margin-bottom: 10px !important; /* 画像と日付の間の隙間 */
}

/* 4. 中の画像を正方形にフィットさせる */
.blogRecentList .blogEntryIcon-act img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* 中央トリミング */
    display: block !important;
}

/* 5. 日付とタイトルのエリア */
.blogRecentList .blogEntryInfo {
    order: 1 !important;
    display: block !important;
}

/* 日付のデザインと隙間詰め */
.blogRecentList .topicDate {
    display: block !important;
    font-size: 13px !important;
    color: #888 !important;
    margin-bottom: 5px !important;
}

/* タイトルのデザイン */
.blogRecentList .blogEntryTtl a {
    font-size: 15px !important;
    line-height: 1.5 !important;
    font-weight: 500 !important;
    color: #333 !important;
    text-decoration: none !important;
}

/* 不要な「お知らせ」カテゴリや「過去一覧」を消す */
.blogEntryCategory, .blogRecentLink {
    display: none !important;
}

/* スマホ対応（2カラム） */
@media (max-width: 768px) {
    .blogRecentList ul li {
        width: calc(50% - 10px) !important;
    }
}