@charset "utf-8";

/* ========================================================================== 
   style.css
   ========================================================================== */

/* ========================================================================== 
   0. フォント一括管理（CSS変数定義・ハイブリッド版）
   ========================================================================== */
:root {
    /* 和文本文用：スマートで直線的な美しさを持つスタンダード（ゴシック体） */
    --font-jp: "Plus Jakarta Sans", "Noto Sans JP", sans-serif;
    
    /* 見出し用：高級感・品格を醸し出す（明朝体） */
    --font-heading: "Noto Serif JP", "Yu Mincho", "MS Mincho", serif;
    
    /* 英文・アクセント用：細身でスタイリッシュな洗練文字 */
    --font-en: 'Cinzel Decorative', 'Oswald', sans-serif;

    /* --- カラーパレット一括管理 --- */
    --color-primary: #1a3d32;         /* 深緑（メインカラー） */
    --color-accent: #d4af37;          /* ゴールド（アクセントカラー） */
    --color-text-main: #333333;       /* 本文テキスト色 */
    --color-text-light: #ffffff;      /* ダーク背景用テキスト色（白） */
    --color-bg-base: #ffffff;         /* 基本背景色（白） */
    --color-bg-fog: #f8f8f6;          /* わずかに温かみのある白（霧） */
    --color-border: #e0e0e0;          /* カード等基本ボーダー色 */

    /* 透過カラー（カラー変更時は必要に応じてここも調整可能です） */
    --color-accent-alpha-30: rgba(212, 175, 55, 0.3);
    --color-white-alpha-05: rgba(255, 255, 255, 0.05);
    --color-white-alpha-10: rgba(255, 255, 255, 0.1);
}

/* ========================================================================== 
   1. 基本スタイル（Serenity Reset）
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 宿泊施設サイトでは、文字のベースラインを安定させるため baseline を推奨 */
html, body {
    width: 100%;
    font-family: var(--font-jp);
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.08em;
    background: var(--color-bg-base);
    color: var(--color-text-main);
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    vertical-align: baseline;
    scroll-behavior: smooth;
}

/* 全見出し要素を一括で高級感のある明朝体に指定 */
h1, h2, h3, h4, h5, h6,
.section-title,
.price-title,
.procedure-title,
.slide-title {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.4s ease, color 0.4s ease;
}

a:hover {
    opacity: 0.7;
}

li {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/* アクセシビリティ用 */
.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

/* ========================================================================== 
   2. スクロール演出（霧が晴れるような浮き上がり）
   ========================================================================== */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1),
                transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================================================== 
   3. 共通パーツ（タイトル・レイアウト）
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4%;
}

.section {
    padding: 100px 0;
}

.section-title-area {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: block;
    font-family: var(--font-en);
    font-size: 13px;
    font-weight: 400;
    color: var(--color-accent);
    letter-spacing: 0.4em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--color-primary);
    position: relative;
    padding-bottom: 30px;
    display: inline-block;
    letter-spacing: 0.15em;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--color-accent);
}

/* ========================================================================== 
   4. 特定セクション・コンポーネント（Price Grid 等）
   ========================================================================== */

/* Price Plan */
.price-grid {
    max-width: 900px;
    margin: 0 auto;
}

.price-item {
    background: var(--color-white-alpha-05);
    padding: 3rem;
    border: 1px solid var(--color-accent-alpha-30);
}

.price-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--color-white-alpha-10);
    padding-bottom: 1.5rem;
}

.price-header h4 {
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

.price-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    border-bottom: 1px dashed var(--color-white-alpha-10);
    padding-bottom: 0.5rem;
}

.price-list strong {
    font-family: var(--font-en);
    font-size: 1.25rem;
}

.price-list li.discount {
    color: var(--color-accent);
    font-weight: bold;
    border-bottom: none;
    padding-top: 1rem;
}

.price-list li.discount strong {
    font-size: 1.75rem;
}

/* Documents (Store Cards) */
.news-store-container {
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 4%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.store-links {
    display: grid;
    gap: 15px;
}

.store-card {
    position: relative;
    display: block;
    background: var(--color-bg-base);
    border: 1px solid var(--color-border);
    padding: 20px;
    overflow: hidden;
    transition: border-color 0.4s;
}

.store-card:hover {
    border-color: var(--color-accent);
}

.store-brand {
    display: block;
    font-family: var(--font-en);
    font-size: 11px;
    color: var(--color-accent);
    text-transform: uppercase;
}

.store-location {
    font-weight: bold;
    font-size: 16px;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

/* ========================================================================== 
   5. ユーティリティ
   ========================================================================== */
.pc-only { display: block; }
.sp-only { display: none; }

.bg-fog { background-color: var(--color-bg-fog); } /* わずかに温かみのある白（霧） */
.bg-forest { background-color: var(--color-primary); color: var(--color-text-light); } /* 深緑 */

/* ========================================================================== 
   6. レスポンシブ
   ========================================================================== */
@media (max-width: 960px) {
    .news-store-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 24px;
        padding-bottom: 20px;
    }

    .section-subtitle {
        font-size: 11px;
        letter-spacing: 0.3em;
    }

    .price-item {
        padding: 2rem 1.5rem;
    }

    .pc-only { display: none !important; }
    .sp-only { display: block !important; }

    /* スマホではスクロールアニメーションを少し早める */
    .reveal-up {
        transform: translateY(20px);
        transition: opacity 1.0s ease-out, transform 1.0s ease-out;
    }
}