@charset "UTF-8";

/* =========================================
   変数の定義
========================================= */
:root {
    --color-base: #FDFCF8;
    --color-text: #4A4A4A;
    --color-blue: #5C88B0;
    --color-green: #6C936A;
    --color-accent: #B08B6B;
    --font-base: 'Noto Sans JP', sans-serif;
    --font-handwritten: 'Zen Maru Gothic', sans-serif;
}

/* =========================================
   リセット & ベーススタイル
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-base);
    color: var(--color-text);
    background-color: var(--color-base);
    line-height: 1.8;
    letter-spacing: 0.05em;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

a { color: inherit; text-decoration: none; transition: opacity 0.3s; }
a:hover { opacity: 0.7; }
li { list-style: none; }

/* ▼ 今回の修正箇所：iframeから height: auto; を完全に外しました ▼ */
img, video { max-width: 100%; height: auto; vertical-align: bottom; }
iframe { max-width: 100%; border: none; }

.font-handwritten { font-family: var(--font-handwritten); }

.l-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 6vw;
}

.u-video-pc { display: block; }
.u-video-sp { display: none; }

.p-page-hero__media { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: #ccc; }
.p-page-hero__media video { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }

@media screen and (max-width: 768px) {
    .u-video-pc { display: none; }
    .u-video-sp { display: block; }
}

/* =========================================
   共通ボタン
========================================= */
.c-btn {
    display: inline-block;
    padding: 12px 40px;
    background-color: var(--color-accent);
    color: #fff;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}
.c-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    opacity: 1;
}
.c-btn--white { background-color: #fff; color: var(--color-accent); }
.c-btn--outline { background-color: transparent; border: 1px solid var(--color-accent); color: var(--color-accent); box-shadow: none; }

/* =========================================
   ヘッダー & ナビゲーション
========================================= */
.l-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 100; background-color: rgba(253, 252, 248, 0.95); box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.l-header__inner { display: flex; justify-content: space-between; align-items: center; padding: 15px 5vw; }
.l-header__logo a { font-size: 24px; font-weight: 700; color: var(--color-blue); }
.l-header__actions { display: flex; align-items: center; gap: 20px; }
.l-header__nav { display: flex; align-items: center; gap: 30px; }
.l-header__nav-list { display: flex; gap: 24px; font-size: 15px; font-weight: 500; }
.c-header-btn { background-color: var(--color-accent); color: #fff; padding: 8px 20px; border-radius: 20px; font-size: 14px; font-weight: 700; }
.c-header-btn:hover { background-color: #9a7658; color: #fff; opacity: 1; }

.l-header__lang { margin-top: 2px; }
.gtranslate_wrapper select { border: 1px solid var(--color-accent); color: var(--color-accent); padding: 4px 24px 4px 12px; border-radius: 20px; font-size: 13px; background-color: transparent; cursor: pointer; transition: all 0.3s; font-family: var(--font-handwritten); outline: none; appearance: none; background-image: url('data:image/svg+xml;utf8,<svg fill="%23B08B6B" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>'); background-repeat: no-repeat; background-position-x: right; background-position-y: center; }
.gtranslate_wrapper select:hover { background-color: var(--color-accent); color: #fff; }
body { top: 0 !important; } .skiptranslate iframe { display: none !important; }

/* ハンバーガー */
.l-header__hamburger { display: none; background: none; border: none; cursor: pointer; z-index: 110; width: 30px; height: 20px; position: relative; }
.l-header__hamburger span { position: absolute; width: 100%; height: 2px; background-color: var(--color-text); left: 0; transition: all 0.3s; }
.l-header__hamburger span:nth-child(1) { top: 0; }
.l-header__hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.l-header__hamburger span:nth-child(3) { bottom: 0; }
.l-header__hamburger.is-active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.l-header__hamburger.is-active span:nth-child(2) { opacity: 0; }
.l-header__hamburger.is-active span:nth-child(3) { top: 50%; transform: translateY(-50%) rotate(-45deg); }

/* =========================================
   フローティングUI
========================================= */
.c-sns-floater { position: fixed; top: 50%; left: 20px; transform: translateY(-50%); display: flex; flex-direction: column; gap: 12px; z-index: 95; }
.c-sns-floater a { display: flex; align-items: center; justify-content: center; width: 45px; height: 45px; background-color: #fff; color: var(--color-blue); border: 2px solid var(--color-blue); border-radius: 50%; font-weight: 700; font-family: Arial, sans-serif; font-size: 14px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); transition: all 0.3s; }
.c-sns-floater a:hover { background-color: var(--color-blue); color: #fff; transform: scale(1.1); opacity: 1; }
.c-floating-btn { position: fixed; bottom: 20px; right: 20px; z-index: 90; background-color: var(--color-green); color: #fff; padding: 12px 24px; border-radius: 30px; box-shadow: 0 4px 15px rgba(0,0,0,0.2); font-weight: 700; font-size: 15px; display: flex; align-items: center; gap: 5px; transition: transform 0.3s; }
.c-floating-btn:hover { transform: translateY(-3px); background-color: #557954; color: #fff; opacity: 1; }

/* =========================================
   フッター
========================================= */
.l-footer { background-color: #EFEBE4; padding: 60px 5vw 20px; margin-top: 80px; }
.l-footer__inner { display: flex; justify-content: space-between; flex-wrap: wrap; max-width: 1000px; margin: 0 auto 40px; gap: 40px; }
.l-footer__logo { font-size: 20px; color: var(--color-green); margin-bottom: 15px; }
.l-footer__address { font-size: 14px; margin-bottom: 15px; }
.l-footer__sns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.l-footer__sns a { display: inline-block; padding: 6px 16px; border: 1px solid var(--color-accent); border-radius: 20px; color: var(--color-accent); font-size: 12px; font-weight: 500; background-color: #fff; transition: all 0.3s; }
.l-footer__sns a:hover { background-color: var(--color-accent); color: #fff; opacity: 1; }
.l-footer__links { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 40px; font-size: 14px; }
.l-footer__copy { text-align: center; font-size: 12px; color: #888; }

/* =========================================
   画像拡大用モーダル
========================================= */
.c-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; z-index: 1000; display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.c-modal.is-active { opacity: 1; visibility: visible; }
.c-modal__bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.85); cursor: zoom-out; }
.c-modal__content { position: relative; z-index: 1001; max-width: 90%; max-height: 90vh; }
.c-modal__content img { max-width: 100%; max-height: 90vh; border-radius: 10px; object-fit: contain; box-shadow: 0 5px 25px rgba(0,0,0,0.5); }
.c-modal__close { position: absolute; top: -40px; right: 0; background: none; border: none; color: #fff; font-size: 40px; cursor: pointer; line-height: 1; }
.c-modal__close:hover { opacity: 0.7; }

/* =========================================
   PC用 改行クラス
========================================= */
.u-pc-br { display: block; }

/* =========================================
   スマホ用レスポンシブ
========================================= */
@media screen and (max-width: 768px) {
    .l-container { padding-left: 8vw !important; padding-right: 8vw !important; }
    .l-header__hamburger { display: block; }
    .l-header__actions { gap: 12px; }
    .c-header-btn { padding: 6px 12px; font-size: 12px; }
    .l-header__nav { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background-color: var(--color-base); flex-direction: column; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: opacity 0.3s; }
    .l-header__nav.is-active { opacity: 1; visibility: visible; }
    .l-header__nav-list { flex-direction: column; align-items: center; gap: 30px; font-size: 18px; margin-bottom: 30px; }
    .l-header__lang { margin-bottom: 40px; }
    .l-footer__inner { flex-direction: column; }
    .c-sns-floater { top: auto; bottom: 20px; left: 20px; transform: none; flex-direction: row; gap: 8px; }
    .c-sns-floater a { width: 38px; height: 38px; font-size: 12px; }
    .u-pc-br { display: none; }
    p { text-align: left !important; font-size: 15px; }
    .c-sec-title { font-size: 24px !important; margin-bottom: 30px !important; line-height: 1.5 !important; }
    .p-top-concept__title, .p-guide-river__title, .p-dining-solution__title { font-size: 22px !important; line-height: 1.5 !important; text-align: left !important; }
}