@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(インスタ)の高さが潰れないように設定 */
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; }
}

/* =========================================
   ヘッダー & ナビゲーション
========================================= */
.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; }

/* =========================================
   PC用 改行クラス
========================================= */
.u-pc-br { display: block; }

/* =========================================
   スマホ用レスポンシブ
========================================= */
@media screen and (max-width: 768px) {
    /* ▼ 修正: SNSボタン(左配置)と被らないように、左側の余白を大きく確保 ▼ */
    .l-container {
        padding-left: 60px !important; /* SNSボタンの幅と隙間分を確保 */
        padding-right: 5vw !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; }
    
    /* ▼ 修正: SNSボタンは定位置（左中央）に戻し、邪魔にならないよう少し小さくする ▼ */
    .c-sns-floater {
        top: 50%;
        left: 10px;
        transform: translateY(-50%);
        flex-direction: column;
        gap: 10px;
    }
    .c-sns-floater a {
        width: 35px;
        height: 35px;
        font-size: 11px;
    }

    /* スマホではPC用の改行を無効化 */
    .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; }
}