/* ==========================================================================
   基本リセット ＆ 共通設定
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden; /* スマホのはみ出し横揺れ防止 */
/* 日本語のWeb制作において最も標準的で視認性の高い「王道」の組み合わせです */
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    
    /* 文字の読みやすさを標準的なバランスに整えます */
    line-height: 1.6;
    color: #333333;
    -webkit-font-smoothing: antialiased; /* 文字の輪郭を滑らかにする設定 */
    -moz-osx-font-smoothing: grayscale;
    background-color: #fafafa;
}

/* もし数字（料金など）だけ海外の特殊なフォントになっていたら、以下で一括して標準に戻せます */
.num, .price-display, .step-num {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif !important;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

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

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.text-center { text-align: center; }
.text-sm { font-size: 13px; }

/* 共通タイトル・アイコン */
.section-title, .column-title {
    font-size: 28px;
    color: #1b361a;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.paw-icon {
    font-size: 18px;
    color: #8fa88b;
    display: inline-block;
    margin-left: 5px;
}

/* 共通ボタン（枠線タイプ） */
.btn-outline {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid #1b361a;
    color: #1b361a;
    font-size: 14px;
    background: transparent;
    border-radius: 25px;
    margin-top: 30px;
}

.btn-outline:hover {
    background: #1b361a;
    color: #fff;
}

/* ロゴ画像のサイズ調整 */
.logo-img {
    height: 50px; /* ヘッダーの高さに合わせて数値を調整してください */
    width: auto;  /* 横幅は比率を保って自動調整 */
    vertical-align: middle;
}

/* メインビジュアル用のロゴ画像サイズ（PC） */
.mv-logo-img {
    width: 100%;
    max-width: 400px; /* PCでのロゴの最大横幅（見栄えに合わせて調整してください） */
    height: auto;
    margin-bottom: 15px; /* 下のキャッチコピーとの間隔 */
}

@media (max-width: 768px) {
/* スマホでのロゴ画像サイズ調整 */
    .mv-logo-img {
        max-width: 180px !important; /* スマホ画面に合わせて一回り小さく調整 */
        margin-bottom: 10px !important;
    }
}

/* ==========================================================================
   ヘッダー（固定）
   ========================================================================== */
header {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #eaeaea;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ロゴ画像自体のレスポンシブ・アスペクト比維持指定 */
.logo-img {
    width: 100%;          /* 親要素の幅に合わせて可変 */
    max-width: 350px;     /* PC時の最大サイズ（※実際の希望サイズに合わせて調整してください） */
    height: auto;         /* 縦横比を維持して自動調整（潰れ・歪みを防止） */
    object-fit: contain;  /* 枠内に画像全体が収まるように表示 */
    display: block;       /* 画像下の不要な隙間を解消 */
}

/* リンクタグ（aタグ）が潰れるのを防ぐ設定 */
.header-container h1 a {
    display: block;
    max-width: 100%;
}


.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #1b361a;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav a {
    font-size: 15px;
    color: #444;
}

nav a:hover {
    color: #1b361a;
}

.btn-entry {
    background: #1b361a;
    color: #fff !important;
    padding: 8px 22px;
    border-radius: 25px;
}

.btn-entry:hover {
    background: #335931;
}

/* ヘッダー固定によるmainの上部余白 */
main {
    margin-top: 120px;
}

/* ==========================================================================
   メインビジュアル (スライドショー枠)
   ========================================================================== */
.main-visual {
    height: 75vh;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('../images/top/TOP画像①.jpeg') center/cover no-repeat;
    display: flex;
    align-items: flex-end; /* center から flex-end (下揃え) に変更 */
    padding-bottom: 200px;  /* 下から20pxの空きをつくる */
    box-sizing: border-box; /* パディングを含めた高さ計算 */
    color: #fff;
    position: relative;
}

.mv-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* コンテンツ同士（左テキストと右バッジ）の下端も揃える場合 */
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 40px;
}

.mv-copy h2 {
    font-size: 54px;
    margin: 0 0 10px 0;
    font-weight: normal;
    letter-spacing: 2px;
}

.sub-copy {
    font-size: 18px;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.mv-info {
    display: flex;
    gap: 30px;
    font-size: 14px;
}

.mv-info i {
    margin-right: 5px;
}

/* 右側営業日バッジ */
.mv-badge {
    background: rgba(33, 54, 32, 0.85); /* 深い緑の半透明 */
    padding: 30px;
    border-radius: 50%;
    width: 240px;
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.mv-badge i {
    font-size: 24px;
    margin-bottom: 8px;
}

.badge-title {
    font-size: 15px;
    margin: 0 0 5px 0;
    font-weight: bold;
}

.badge-time {
    font-size: 11px;
    color: #d1ded0;
    margin: 0 0 15px 0;
}

.btn-badge {
    background: #fff;
    color: #1b361a;
    font-size: 11px;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: bold;
}

/* ==========================================================================
   Wan's Forestとは (About)
   ========================================================================== */
.about {
    background-color: #fff;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 28px;
    color: #1b361a;
    margin-top: 0;
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
    font-size: 15px;
    line-height: 1.9;
}

.about-image {
    flex: 1.2;
}

.about-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* ==========================================================================
   施設紹介 (Facility)
   ========================================================================== */
.facility-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.facility-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.card-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-content {
    padding: 25px 20px;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* まるい白枠アイコン */
.icon-circle {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -50px; /* 画像に半分被せる */
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    color: #1b361a;
    font-size: 18px;
}

.card-content h4 {
    font-size: 16px;
    color: #1b361a;
    margin: 15px 0 10px 0;
}

.card-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.card-link {
    font-size: 12px;
    color: #1b361a;
    font-weight: bold;
}

/* ==========================================================================
   下部3カラムエリア修正（Googleカレンダー対応）
   ========================================================================== */
.info-columns {
    background-color: #f4f6f3; /* 薄いグリーングレーの背景 */
    border-top: 1px solid #eaeaea;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media (min-width: 993px) {
    .info-grid {
        align-items: start; /* カレンダーが長いため、トピックスとインスタは上に寄せます */
    }
}

.info-col {
    background: transparent;
}

.info-col .column-title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 25px;
}

.col-btn-space {
    margin-top: 10px;
}

/* カレンダーの埋め込み枠 */
.calendar-wrapper-embed {
    background: #fff;
    border-radius: 6px;
    overflow: hidden; /* カレンダーの角丸をきれいに見せる */
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    line-height: 1; /* iframe内の崩れ防止 */
}

.calendar-wrapper-embed iframe {
    display: block;
    width: 100%;
}

/* トピックスのスタイル */
.topics-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.topics-list li {
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.topics-list .date {
    color: #888;
}

.topics-list a:hover {
    color: #1b361a;
    text-decoration: underline;
}

/* Instagramグリッド */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.insta-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 4px;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.insta-item:hover img {
    transform: scale(1.05);
}

/* ==========================================================================
   ACCESS修正（Googleマップ対応）
   ========================================================================== */
.access {
    background: #fff;
}

.access-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.access-info {
    flex: 1;
}

.access-info .column-title {
    text-align: left;
    margin-bottom: 20px;
}

.access-info .zip {
    font-size: 15px;
    margin-bottom: 30px;
}

.access-method {
    margin-bottom: 25px;
}

.access-method h4 {
    font-size: 15px;
    color: #1b361a;
    margin: 0 0 8px 0;
}

.access-method h4 i {
    margin-right: 5px;
}

.access-method p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* マップを包む枠線の設定（新しいGoogleマップに最適化） */
.access-map {
    flex: 1.5;
    width: 100%;
    height: 450px; /* ご指定のマップ高さに合わせる */
    border-radius: 6px;
    overflow: hidden; /* マップの角丸をきれいに見せる */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.access-map iframe {
    display: block;
    width: 100%;
    height: 100%;
}

/* スマホ・タブレット表示でのレスポンシブ設定 */
@media (max-width: 768px) {
    .access-container {
        flex-direction: column; /* 縦並びにする */
        gap: 30px;
    }
    
    .access-info .column-title {
        text-align: center; /* タイトルを中央寄せに */
    }
    
    .access-map {
        height: 300px; /* スマホではマップの高さを少しコンパクトにして画面に収めやすくする */
    }
}

/* ==========================================================================
   FOOTER (フッター)
   ========================================================================== */
footer {
    background: #1b361a;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    font-size: 12px;
    letter-spacing: 1px;
}

footer p { margin: 0; }


/* ==========================================================================
   スマートフォン・タブレット対応 (レスポンシブ)
   ========================================================================== */
@media (max-width: 992px) {
    .facility-grid {
        grid-template-columns: repeat(2, 1fr); /* タブレット時は2列 */
    }
    .info-grid {
        grid-template-columns: 1fr; /* 3つのカラムを縦並びにする準備 */
        gap: 50px;
    }
}

@media (max-width: 1000px) {  /*  768px*/
    .section-padding { padding: 50px 0; }
    
    /* ヘッダー・ハンバーガー */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        cursor: pointer;
        z-index: 9999;
    }
    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #1b361a;
        transition: 0.3s;
    }
    
    /* ×に変形 */
    .hamburger.is-active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .hamburger.is-active span:nth-child(2) { opacity: 0; }
    .hamburger.is-active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    #js-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #fff;
        padding-top: 100px;
        transition: right 0.3s;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    #js-nav.is-active { right: 0; }
    nav ul {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
        padding: 0 40px;
    }

/* メインビジュアル */
    .main-visual {
        height: auto !important;          /* 高さを自動（可変）に強制変更 */
        min-height: 0 !important;         /* 最小高さの縛りがあれば解除 */
        padding: 300px 0 120px !important; /* 下側の余白を120pxまで大幅に広げてバッジの領土を完全確保  60px 0 120px*/
        position: relative !important;
    }
    .mv-container {
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;          /* コンテナの高さも自動に */
        gap: 20px !important;
        padding: 0 20px !important;
        text-align: left !important;      /* 文字を左寄せ */
        position: relative !important;
    }
    .mv-copy {
        width: 100% !important;
        text-align: left !important;
    }
    .mv-copy h2 { font-size: 32px !important; margin-bottom: 10px !important; }
    .sub-copy { font-size: 12px !important; margin-bottom: 15px !important; }
    .mv-info { 
        display: flex !important;
        flex-direction: column !important; /* 住所とアクセスも縦並びにして左側に寄せる */
        align-items: flex-start !important;
        gap: 5px !important;
        font-size: 13px !important; 
    }

    /* 深緑の円形バッジを「完全に一番下」に配置 */
    .mv-badge { 
        position: absolute !important;
        bottom: -40px !important;   /* 広げた余白（120px）の最下部にドロップ */
        right: 20px !important;     /* 右端に寄せる */
        left: auto !important;      /* 左位置の指定が残っていたら解除 */
        top: auto !important;       /* 上位置の指定が残っていたら解除 */
        width: 120px !important;    /* さらに一回り小さく(130px)して衝突回避 */
        height: 120px !important;   
        padding: 12px 10px !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2) !important; 
    }

    /* バッジの中の文字サイズ微調整 */
    .mv-badge i {
        font-size: 14px !important;
        margin-bottom: 2px !important;
    }
    .badge-title {
        font-size: 11px !important;
        margin-bottom: 2px !important;
    }
    .badge-time {
        font-size: 8px !important;
        line-height: 1.2 !important;
        margin-bottom: 4px !important;
    }
    .btn-badge {
        font-size: 8px !important;
        padding: 3px 6px !important;
    }

    /* Wan's Forestとは */
    .about-container {
        flex-direction: column-reverse; /* 写真を上、文字を下に */
        gap: 30px;
    }

    /* 施設紹介 */
    .facility-grid {
        grid-template-columns: 1fr; /* スマホでは1列に */
    }

    /* アクセス */
    .access-container {
        flex-direction: column;
        gap: 30px;
    }
    .access-info .column-title { text-align: center; }
}

/* ==========================================
       【追加】画面幅350px以下の極小スマホ向けの調整
       ========================================== */
    @media (max-width: 350px) {
        .main-visual {
            padding: 40px 0 20px !important; /* 下部余白を詰め、全体をコンパクトに */
        }
        .mv-container {
            gap: 15px !important;
            text-align: center !important;   /* 極小画面では中央揃えの方が見栄えが良くなります */
        }
        .mv-copy {
            text-align: center !important;
        }
        .mv-copy h2 { 
            font-size: 28px !important;     /* タイトルをもう一回り小さく */
        }
        .sub-copy { 
            font-size: 14px !important;     /* キャッチコピーも少し小さく */
        }
        .mv-info { 
            justify-content: center !important; 
            align-items: center !important;
            font-size: 12px !important; 
        }

        /* バッジを右下固定から、文字の下（中央）に自然に流す */
        .mv-badge { 
            position: relative !important;   /* 絶対配置（浮かせ技）を解除 */
            bottom: auto !important;
            right: auto !important;
            margin: 20px auto 0 !important;  /* 文字の下に程よい余白を開けて中央に配置 */
            width: 140px !important;    
            height: 140px !important;   
        }
    }




/* フッター内のレイアウト調整 */
.footer-content {
    display: flex;
    justify-content: space-between; /* 左右に振り分ける */
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
}

.footer-content p {
    margin: 0; /* 余計な上下余白をリセット */
}

.admin-link a:hover {
    color: #fff !important; /* ホバーしたときだけ白く光らせて分かりやすくする */
    text-decoration: underline !important;
}

/* スマホの時は中央寄せの縦並びにする */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 15px; /* コピーライトとリンクの間に少し隙間をあける */
    }
}

/* ==========================================================================
   初めての方へページ（guide.html）新デザイン対応スタイル
   ========================================================================== */

/* 共通タイトル類 */
.guide-section-title {
    font-size: 24px;
    color: #1b361a;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.guide-section-title i { color: #8fa88b; font-size: 20px; }
.guide-block-title { font-size: 22px; color: #1b361a; margin-bottom: 25px; }

/* 1. ご来場前の準備（新3カラムレイアウト） */
.guide-prep { background-color: #fafafa; }

.prep-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.prep-card-new {
    background: #fff;
    padding: 30px 25px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    border: 1px solid #eaeaea;
    position: relative;
}

.prep-card-new h4 {
    font-size: 17px;
    color: #1b361a;
    margin: 0 0 20px 0;
    text-align: center;
    font-weight: bold;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 12px;
}

.prep-card-content {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 15px;
}
.prep-card-content.flex-center {
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

.prep-icon-large {
    font-size: 32px;
    color: #8fa88b;
}

.prep-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.prep-bullet-list li {
    font-size: 13px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 8px;
    position: relative;
    padding-left: 14px;
}
.prep-bullet-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8fa88b;
    font-weight: bold;
}

/* 金色の「写真・コピーでも可」バッジ */
.prep-badge-gold {
    background-color: #bd9b63;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    text-align: center;
    padding: 5px;
    border-radius: 4px;
    margin: 15px 0;
}

.prep-sub-notes p {
    font-size: 11px;
    color: #777;
    line-height: 1.5;
    margin: 0 0 5px 0;
}

/* LINE会員証まわり */
.line-icon-large { font-size: 45px; color: #06c755; }
.line-box-desc p { font-size: 12px; color: #444; line-height: 1.6; margin: 0; }
.weight-bold { font-weight: bold; color: #c44545 !important; }

/* あると便利なものリスト */
.prep-convenient-list { list-style: none; padding: 0; margin: 0; width: 100%; }
.prep-convenient-list li {
    font-size: 13px;
    color: #444;
    padding: 10px 0;
    border-bottom: 1px solid #f6f6f6;
    display: flex;
    align-items: center;
    gap: 10px;
}
.prep-convenient-list li i { color: #5a7a58; width: 16px; text-align: center; }

/* 新設：該当する愛犬は利用不可（警告赤枠BOX） */
.guide-alert-box {
    background-color: #fff;
    border: 2px solid #df4747; /* 警告の赤枠 */
    border-radius: 6px;
    padding: 30px 40px;
    margin-top: 40px;
}

.alert-box-title {
    font-size: 16px;
    color: #df4747;
    font-weight: bold;
    margin: 0 0 20px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.alert-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.alert-col ul { list-style: none; padding: 0; margin: 0; }
.alert-col ul li {
    font-size: 13px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
}
.alert-col ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #df4747;
    font-weight: bold;
}
.alert-col ul li small {
    display: block;
    font-size: 11px;
    color: #777;
    margin-top: 3px;
    line-height: 1.4;
}

/* 2. ご来場の流れ・3. エリア利用・FAQのスタイル（前回同様に綺麗に維持） */
.flow-container { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.flow-step { flex: 1; background: #fcfdfc; border: 1px solid #edf1ed; border-radius: 6px; padding: 20px 15px; text-align: center; }
.step-num { font-size: 12px; font-weight: bold; color: #728c70; margin-bottom: 5px; }
.step-title { font-size: 14px; color: #1b361a; margin: 0 0 15px 0; height: 42px; display: flex; align-items: center; justify-content: center; gap: 5px; }
.step-img { width: 100%; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 4px; margin-bottom: 15px; }
.step-img img { width: 100%; height: 100%; object-fit: cover; }
.step-desc, .step-desc-list { font-size: 12px; color: #555; text-align: left; line-height: 1.6; margin: 0; padding: 0; list-style: none; }
.step-tags { display: flex; flex-wrap: wrap; gap: 4px; justify-content: center; margin-bottom: 10px; }
.tag-green { font-size: 10px; background: #e9efe8; color: #3b5938; padding: 2px 6px; border-radius: 3px; }
.flow-arrow { display: flex; align-items: center; height: 220px; color: #ccd5cc; }

.info-two-columns { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.area-use-box { background: #fcfdfc; border: 1px solid #edf1ed; border-radius: 6px; padding: 40px 30px; }
.area-flex { display: flex; justify-content: space-around; margin-bottom: 25px; }
.area-title-small { font-size: 15px; color: #2d5a27; margin-bottom: 10px; }
.area-title-large { font-size: 15px; color: #b08a51; margin-bottom: 10px; }
.area-icon-dog { font-size: 40px; }
.dog-small { color: #5a7a58; transform: scale(0.8); }
.dog-large { color: #bd9b63; }
.area-weight { font-size: 15px; font-weight: bold; margin: 5px 0 0 0; }
.area-note { font-size: 11px; color: #777; text-align: center; margin-bottom: 20px; }

.faq-container { display: flex; flex-direction: column; gap: 5px; }
.faq-item { border-bottom: 1px solid #eaeaea; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 15px 5px; font-size: 14px; font-weight: bold; cursor: pointer; }
.faq-toggle-icon { font-size: 11px; color: #999; transition: transform 0.3s; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.faq-answer p { margin: 0; padding: 0 5px 15px 5px; font-size: 13px; color: #555; line-height: 1.6; }
.faq-item.is-open .faq-toggle-icon { transform: rotate(180deg); }
.faq-item.is-open .faq-answer { max-height: 200px; transition: max-height 0.3s ease-in; }

/* 4. 当施設のルールについて（新2カラムレイアウト） */
.guide-rules-new { background-color: #fff; border-top: 1px solid #f0f0f0; }
.rules-wrapper-new { background: #fff; padding: 10px 0; }

.rules-main-title-new {
    font-size: 24px;
    color: #1b361a;
    text-align: center;
    margin: 0 0 40px 0;
    position: relative;
}
.rules-main-title-new::after {
    content: ""; position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%);
    width: 35px; height: 2px; background-color: #8fa88b;
}

.rules-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.rule-col-new h4 {
    font-size: 16px;
    color: #1b361a;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 10px;
}
.rule-col-new h4 i, .rule-icon-circle-new { color: #8fa88b; font-size: 15px; }

.rule-col-new ul { list-style: none; padding: 0; margin: 0; }
.rule-col-new ul li {
    font-size: 13px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
}
.rule-col-new ul li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: #8fa88b;
}

/* 下部メッセージ */
.rules-footer-message {
    background: #fbfcfb;
    border: 1px solid #ebf0eb;
    border-radius: 6px;
    padding: 25px;
    text-align: center;
    margin-top: 20px;
}
.rules-footer-message p {
    font-size: 13px;
    color: #444;
    line-height: 1.6;
    margin: 0 0 5px 0;
}
.rules-footer-message p:last-child { margin-bottom: 0; font-weight: bold; color: #2d5a27; }

/* ==========================================================================
   新デザイン用レスポンシブ対応（スマホ表示）
   ========================================================================== */
@media (max-width: 992px) {
    .prep-grid-new { grid-template-columns: 1fr; gap: 20px; } /* スマホは準備も縦1列に */
    .alert-grid { grid-template-columns: 1fr; gap: 10px; } /* 警告エリアも縦1列 */
    .guide-alert-box { padding: 25px 20px; }
    .flow-container { flex-direction: column; gap: 15px; }
    .flow-arrow { display: none; }
    .flow-step { width: 100%; }
    .step-title { height: auto; }
    .info-two-columns { grid-template-columns: 1fr; gap: 40px; }
    .rules-grid-new { grid-template-columns: 1fr; gap: 40px; } /* ルールも縦1列 */
}

/* 1. PC表示（769px以上）での調整 */
.page-header {
    /* 固定ヘッダーの高さ分、外側にしっかりマージンを開けて潜り込みを防ぎます */
    margin-top: 75px !important; 
    
    /* 上下の余白（写真の見える縦幅） */
    padding: 120px 0 !important; 
    text-align: center;

    /* ⬇️ 横幅を画面いっぱいに広げるための設定を強化 */
    width: 100% !important;
    display: block !important;

    /* 背景画像用の設定 */
    background-size: cover !important;           /* 画像をエリア全体に隙間なく広げる */
    background-position: center center !important; /* 画像の中心を基準に配置 */
    background-repeat: no-repeat !important;
    position: relative;               
    z-index: 1;                       
}

/* 写真を少し暗くするための黒いフィルターの層 */
.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25); 
    z-index: -1;                      
}

/* 文字を白に変更 */
.page-header h2 {
    font-size: 32px;
    color: #ffffff !important; 
    margin: 0 0 10px 0;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3); 
}

/* 文字を白に変更 */
.page-header p {
    font-size: 14px;
    color: #ffffff !important; 
    margin: 0;
    opacity: 0.9;   
}

/* 2. スマホ表示（768px以下）での調整 */
@media (max-width: 768px) {
    .page-header {
        margin-top: 70px !important; 
        padding: 80px 0 !important;
        width: 100% !important;
    }
    
    .page-header h2 {
        font-size: 26px;
    }
    
    .page-header p {
        font-size: 13px;
    }
}

/* ==========================================================================
   施設紹介ページ（facility.html）専用スタイル
   ========================================================================== */

/* セクションの見出し・共通リード */
.fac-section-title {
    font-size: 24px;
    color: #1b361a;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.fac-section-title i {
    color: #8fa88b;
    font-size: 22px;
}

.fac-lead-text {
    font-size: 14px;
    color: #666;
    margin: 0 0 35px 0;
}

/* カード共通設定（ドッグラン・水辺） */
.card-img-wrapper {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}
.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 20px 0;
}

.fac-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: bold;
    padding: 4px 14px;
    border-radius: 4px;
    color: #fff;
    background-color: #4a6b48; /* 緑バッジ */
    margin-bottom: 15px;
}
.fac-badge.badge-blue {
    background-color: #6d8e9e; /* 水辺用の青バッジ */
}

.card-text {
    font-size: 13px;
    color: #555;
    line-height: 1.7;
    margin: 0;
    text-align: justify;
}

/* 1. ドッグランエリア：3カラム */
.fac-run {
    background-color: #fff;
}
.run-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* エリア利用について（中央の枠付きBOX） */
.fac-area-info {
    background-color: #fcfdfc;
    border: 1px solid #edf1ed;
    border-radius: 6px;
    padding: 35px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.area-info-title {
    font-size: 18px;
    color: #1b361a;
    text-align: center;
    margin: 0 0 10px 0;
}

.area-info-lead {
    font-size: 13px;
    color: #666;
    text-align: center;
    margin-bottom: 25px;
}

.area-info-flex {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 20px;
}

.area-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}
.area-info-item i {
    font-size: 24px;
}
.dog-sm-icon { color: #5a7a58; transform: scale(0.85); }
.dog-lg-icon { color: #bd9b63; }

.area-label { font-weight: bold; color: #333; }
.area-val { font-weight: bold; color: #1b361a; }

.area-info-note {
    font-size: 12px;
    color: #888;
    text-align: center;
    margin-bottom: 20px;
}

/* 2. 水辺エリア：2カラム */
.fac-water {
    background-color: #fafafa;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}
.water-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* 3. その他設備：下部4カラム */
.fac-others {
    background-color: #fff;
}
.others-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.other-title {
    font-size: 15px;
    color: #1b361a;
    margin: 0 0 20px 0;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.other-title i {
    color: #8fa88b;
}

.other-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 4px;
}
.other-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.other-body {
    padding-top: 15px;
}
.other-body h5, .support-text h5 {
    font-size: 14px;
    color: #333;
    margin: 0 0 8px 0;
    font-weight: bold;
}
.other-body p, .support-text p {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* サポート設備内の上下2分割専用スタイル */
.support-sub-item {
    margin-bottom: 20px;
}
.support-sub-item:last-child {
    margin-bottom: 0;
}
.support-flex {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.support-flex .support-img {
    width: 75px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
}

/* ==========================================================================
   施設紹介（facility.html）用レスポンシブ対応（スマホ表示）
   ========================================================================== */
@media (max-width: 992px) {
    .run-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .others-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 768px) {
    .run-grid { grid-template-columns: 1fr; }
    .water-grid { grid-template-columns: 1fr; gap: 20px; }
    .others-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .area-info-flex { flex-direction: column; gap: 12px; align-items: center; }
    .fac-area-info { padding: 30px 20px; }
}

/* ==========================================================================
   料金案内ページ（price.html）新デザイン・完全リニューアル版
   ========================================================================== */

.price-max-container {
    max-width: 850px; /* 画像の美しい横幅比率を保つための最適なサイズ */
    margin: 0 auto;
}

/* 共通カードスタイル */
.plan-card {
    background: #fff;
    border: 1px solid #e2e8e2;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.plan-card-main {
    padding: 35px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* プランタイトル部分 */
.plan-title-area {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.plan-icon-img {
    font-size: 32px;
    color: #1b361a;
}
.plan-icon-img.text-gold { color: #b58d4a; }
.plan-icon-img.text-darkgreen { color: #113821; }

.plan-title-area h3 {
    font-size: 24px;
    color: #333;
    margin: 0 0 4px 0;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.plan-sub-en {
    font-size: 12px;
    color: #b58d4a;
    font-weight: bold;
    letter-spacing: 1.5px;
    margin: 0;
}

/* 料金表示ブロックの汎用グリッド */
.plan-price-grid {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* 平日/土日祝の2カラム構成 */
.plan-price-grid.spec-2col {
    position: relative;
}
.plan-price-grid.spec-2col .price-block:first-child {
    position: relative;
    padding-right: 40px;
}
/* 中央の区切り縦線 */
.plan-price-grid.spec-2col .price-block:first-child::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: #e0e0e0;
}

/* ナイトプラン用の中央配置構成 */
.plan-price-grid.spec-center {
    flex-direction: column;
    gap: 5px;
    align-items: flex-end;
    text-align: right;
}

.badge-weekend-only {
    background-color: #b58d4a;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    padding: 3px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.time-range {
    font-size: 14px;
    color: #555;
    font-weight: 500;
    margin-top: 4px;
}

/* 料金テキスト表現 */
.price-block {
    text-align: center;
}

.day-label {
    font-size: 12px;
    color: #666;
    display: block;
    margin-bottom: 2px;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    color: #113821;
}

.price-display .yen {
    font-size: 22px;
    font-weight: 500;
    margin-right: 2px;
}

.price-display .num {
    font-size: 34px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.price-unit-desc {
    font-size: 12px;
    color: #666;
    display: block;
    margin-top: 2px;
}

/* 下部追加料金バー */
.plan-card-sub-bar {
    background-color: #faf8f5;
    border-top: 1px solid #f2ede6;
    padding: 15px 40px;
    display: flex;
    justify-content: flex-start;
    gap: 30px;
}

.sub-bar-item {
    font-size: 13px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}
.sub-bar-item i {
    color: #214220;
    font-size: 14px;
}

.sub-bar-divider {
    width: 1px;
    background-color: #e3dacd;
}

/* 貸切プラン用の下部面積テキスト */
.plan-info-bottom-text {
    padding: 0 40px 25px 40px;
    text-align: right;
    font-size: 13px;
    color: #444;
    font-weight: 500;
}

/* お支払い方法カード */
.payment-card-new {
    background: #fff;
    border: 1px solid #e2e8e2;
    border-radius: 12px;
    padding: 30px 40px;
    margin-top: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.payment-main-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.payment-left-title {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.payment-card-icon {
    font-size: 24px;
    color: #555;
    margin-top: 2px;
}

.payment-left-title h4 {
    font-size: 18px;
    color: #333;
    margin: 0 0 4px 0;
    font-weight: bold;
}

.cashless-only-text {
    font-size: 14px;
    color: #333;
    font-weight: bold;
    margin: 0 0 4px 0;
}

.cashless-sub-types {
    font-size: 11px;
    color: #777;
    display: block;
}

/* 決済ロゴ並び風のデザイン */
.payment-brands-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.brand-row {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.brand-logo {
    font-size: 13px;
    color: #444;
    letter-spacing: 0.5px;
}
.fw-bold { font-weight: bold; }
.text-visa { color: #1a1f71; }
.text-master { color: #ea001b; }
.text-jcb { color: #0060a8; }
.text-amex { color: #007bc1; }
.text-diners { color: #004a97; }

.brand-badge {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 4px;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    color: #333;
    font-weight: bold;
}
.badge-apple { background-color: #000; color: #fff; }
.badge-id { background-color: #fff; border-color: #172a88; color: #172a88; }
.badge-quic { background-color: #fff; border-color: #009fe8; color: #009fe8; }
.badge-paypay { background-color: #ff003b; color: #fff; border-color: #ff003b; }
.badge-d { background-color: #cc0000; color: #fff; border-color: #cc0000; }
.badge-au { background-color: #e65c00; color: #fff; border-color: #e65c00; }
.badge-rakuten { background-color: #bf0000; color: #fff; border-color: #bf0000; }

/* 料金脚注エリア */
.price-footer-notes {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: #444;
    font-weight: 500;
}

.badge-kids-free {
    border: 1px solid #b58d4a;
    color: #b58d4a;
    padding: 4px 16px;
    border-radius: 4px;
    background-color: #fff;
}

/* ==========================================================================
   料金案内（price.html）レスポンシブ対応（スマホ表示）
   ========================================================================== */
@media (max-width: 768px) {
    .plan-card-main {
        flex-direction: column;
        align-items: flex-start;
        padding: 25px 20px;
        gap: 25px;
    }
    
    .plan-price-grid {
        width: 100%;
        justify-content: space-between;
        gap: 15px;
    }
    
    .plan-price-grid.spec-2col {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    
    .plan-price-grid.spec-2col .price-block:first-child {
        padding-right: 0;
    }
    .plan-price-grid.spec-2col .price-block:first-child::after {
        display: none; /* スマホでは中央縦線を消す */
    }
    
    .plan-price-grid.spec-center {
        align-items: flex-start;
        text-align: left;
    }
    
    .plan-card-sub-bar {
        padding: 12px 20px;
        flex-direction: column;
        gap: 8px;
    }
    
    .sub-bar-divider {
        display: none; /* スマホではバーの内側区切り線を非表示に */
    }
    
    .plan-info-bottom-text {
        padding: 0 20px 20px 20px;
        text-align: left;
    }
    
    .payment-main-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .payment-card-new {
        padding: 25px 20px;
    }
    
    .payment-brands-grid {
        align-items: flex-start;
        width: 100%;
    }
    
    .brand-row {
        justify-content: flex-start;
        gap: 10px;
    }
    
    .price-footer-notes {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ==========================================================================
   アクセス（access.html）リニューアル完全適応スタイル
   ========================================================================== */

.access-max-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* 2カラムグリッド（上部） */
.access-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 60px;
}

/* 住所ボックス */
.access-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.address-box {
    border-bottom: 2px solid #e1e7e0;
    padding-bottom: 15px;
}

.address-box .shop-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1b361a;
    margin: 0 0 5px 0;
}

.address-box .address-text {
    font-size: 15px;
    color: #444;
    margin: 0;
}

/* 交通手段のカードデザイン */
.route-method-card {
    background: #fcfdfc;
    border: 1px solid #edf1ed;
    border-radius: 8px;
    padding: 25px;
}

.route-card-title {
    font-size: 16px;
    color: #1b361a;
    font-weight: bold;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.route-card-title i {
    color: #8fa88b;
    font-size: 15px;
}

/* リスト表現の洗練化 */
.access-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.access-list li {
    font-size: 14px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 12px;
}

.access-list li strong {
    color: #1b361a;
}

/* 高速道路等の「区分ラベル」 */
.access-list .method {
    background-color: #e9efe8;
    color: #3b5938;
    font-size: 11px;
    font-weight: bold;
    padding: 3px 10px;
    border-radius: 4px;
    min-width: 65px;
    text-align: center;
    display: inline-block;
}

/* 地図＆タブ切り替えセクション */
.map-section {
    width: 100%;
}

.map-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.map-tab-btn {
    flex: 1;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    color: #666;
    padding: 12px 10px;
    font-size: 13px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.map-tab-btn:hover {
    background-color: #eaeaea;
}
.map-tab-btn.is-active {
    background-color: #1b361a;
    border-color: #1b361a;
    color: #fff;
}

/* マップコンテナの表示非表示 */
.map-container {
    display: none;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8e2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}
.map-container.is-active {
    display: block;
}

/* 下部：駐車場セクション */
.parking-info {
    border-top: 1px solid #f0f0f0;
    padding-top: 5px;
}

.parking-section-title {
    font-size: 20px;
    color: #1b361a;
    margin: 40px 0 25px 0;
    position: relative;
    padding-bottom: 10px;
}
.parking-section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: #8fa88b;
}

.parking-info .feature-item {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.parking-text-block p {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin: 0 0 10px 0;
}
.parking-text-block p strong {
    color: #113821;
}

/* 駐車場ノーリード禁止の警告テキスト */
.parking-warning-text {
    color: #df4747 !important;
    font-weight: bold;
    font-size: 13px !important;
    margin-top: 15px !important;
}

/* 駐車場画像エリア */
.parking-info .image-dummy {
    width: 100%;
    aspect-ratio: 3 / 2;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eaeaea;
    background-color: #f9f9f9;
}
.parking-info .image-dummy img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   アクセス用レスポンシブ対応（スマホ表示）
   ========================================================================== */
@media (max-width: 768px) {
    .access-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 40px;
    }
    
    .map-container {
        aspect-ratio: 1 / 1;
        height: 320px;
    }
    
    .map-tab-btn {
        font-size: 12px;
        padding: 10px 5px;
    }

    .parking-info .feature-item {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .parking-info .image-dummy {
        order: -1; /* スマホでは文章より先に写真を見せる綺麗な配置に */
    }
}

/* ==========================================================================
   お問い合わせ（contact.html）専用スタイル（デザイン復元＆ズレ防止版）
   ========================================================================== */

.contact-section-padding {
    padding: 60px 0 80px 0;
    background-color: #fbfcfb; /* 薄いナチュラル背景 */
}

.contact-max-container {
    max-width: 900px;
    margin: 0 auto;
}

/* フォームを包む白いボックス */
.form-container {
    background: #ffffff;
    border: 1px solid #e2e8e2;
    border-radius: 12px;
    padding: 50px 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    box-sizing: border-box;
}

/* 上部：案内ボックス */
.urgency-box {
    background-color: #f4f7f4;
    border: 1px solid #e1e8e1;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 40px;
    text-align: center;
}
.urgency-box p {
    font-size: 14px;
    color: #444;
    margin: 0 0 6px 0;
    line-height: 1.5;
}
.urgency-box p.phone-highlight {
    margin-bottom: 0;
    margin-top: 10px;
    font-size: 18px;
    color: #1b361a;
}
.urgency-box p.phone-highlight strong {
    font-size: 22px;
    letter-spacing: 0.5px;
}
.urgency-box p.phone-highlight span {
    font-size: 13px;
    color: #666;
}

/* フォーム内のセクションタイトル */
.form-section-title {
    font-size: 18px;
    color: #1b361a;
    font-weight: bold;
    margin: 0 0 20px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #edf1ed;
}
.form-section-title.group-spacing {
    margin-top: 45px;
}

/* --------------------------------------------------------------------------
   フォームグループ ＆ 完全左揃えの設定（崩れ防止）
   -------------------------------------------------------------------------- */
.form-container .form-group {
    display: block !important;
    width: 100% !important;
    margin-top: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 22px !important;
    margin-left: 0 !important;
    padding: 0 !important;
    text-align: left !important;
}

/* ラベル：文字位置を左端に固定 */
.form-container .form-group label {
    display: block !important;
    width: 100% !important;
    margin: 0 0 8px 0 !important;
    padding: 0 !important;
    text-align: left !important;
    font-size: 14px !important;
    font-weight: bold !important;
    color: #333333 !important;
    line-height: 1.4 !important;
    letter-spacing: 0 !important;
}

/* 必須マーク */
.form-container .required {
    display: inline-block !important;
    background-color: #df4747 !important;
    color: #ffffff !important;
    font-size: 11px !important;
    font-weight: normal !important;
    padding: 2px 6px !important;
    border-radius: 3px !important;
    margin-left: 8px !important;
    vertical-align: middle !important;
}

/* 各入力ボックス：元のデザイン（グリーン系フォーカス・美しい角丸） */
.form-container .form-control,
.form-container .form-control-select,
.form-container .form-control-textarea {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 12px 15px !important;
    border: 1px solid #ccc !important;
    border-radius: 6px !important;
    font-size: 15px !important;
    color: #333333 !important;
    background-color: #ffffff !important;
    box-sizing: border-box !important;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* 入力中（フォーカス時）の美しいグリーン発光（復元） */
.form-container .form-control:focus,
.form-container .form-control-select:focus,
.form-container .form-control-textarea:focus {
    outline: none !important;
    border-color: #8fa88b !important;
    box-shadow: 0 0 0 3px rgba(143, 168, 139, 0.25) !important;
}

/* プレースホルダーの文字色 */
.form-container .form-control::placeholder,
.form-container .form-control-textarea::placeholder {
    color: #bbb;
}

/* セレクトボックスの矢印再現 */
.form-container .form-control-select {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath fill='%3C%23333333' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    background-size: 10px 6px !important;
    padding-right: 35px !important;
}

/* --------------------------------------------------------------------------
   ファイル添付・個人情報・送信ボタン（元のデザイン復元）
   -------------------------------------------------------------------------- */
.file-section-desc {
    font-size: 13px;
    color: #666;
    margin: -10px 0 15px 0;
}

.file-input-group {
    background-color: #fafafa;
    border: 1px dashed #cccccc;
    border-radius: 6px;
    padding: 20px;
    text-align: left;
    box-sizing: border-box;
    width: 100% !important;
    margin: 0 !important;
}

.file-note {
    font-size: 12px;
    color: #777;
    margin: 8px 0 0 0;
}

/* 個人情報保護ボックス */
.privacy-policy-box {
    background-color: #f9f9f9;
    border: 1px solid #eeeeee;
    border-radius: 6px;
    padding: 20px;
    margin-top: 40px;
}
.privacy-title {
    font-size: 13px;
    font-weight: bold;
    color: #333;
    margin: 0 0 5px 0;
}
.privacy-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 送信ボタン（上品なゴールドボタンの復元） */
.submit-btn-wrapper {
    text-align: center;
    margin-top: 35px;
}

.submit-btn {
    background-color: #b58d4a; /* 上品なゴールド */
    color: #ffffff;
    border: none;
    padding: 16px 50px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(181, 141, 74, 0.2);
    transition: all 0.2s ease;
    width: 100%;
    max-width: 320px;
}

.submit-btn:hover {
    background-color: #9d7535;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(181, 141, 74, 0.3);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .contact-section-padding {
        padding: 40px 0 50px 0;
    }
    .form-container {
        padding: 30px 20px;
        border-radius: 8px;
    }
    .urgency-box {
        padding: 15px;
        margin-bottom: 30px;
    }
    .urgency-box p.phone-highlight strong {
        font-size: 18px;
    }
    .form-section-title.group-spacing {
        margin-top: 35px;
    }
    .submit-btn {
        max-width: 100%;
    }
    .form-container .form-control,
    .form-container .form-control-select,
    .form-container .form-control-textarea {
        font-size: 16px !important;
    }
}

/* ==========================================================================
   会員登録申請（entry.html）専用スタイル
   ========================================================================== */

.entry-section-padding {
    padding: 60px 0 80px 0;
    background-color: #fbfcfb;
}

.entry-max-container {
    max-width: 700px;
    margin: 0 auto;
}

/* 会員登録の流れ（上部お知らせボックス） */
.flow-box {
    background-color: #f4f7f4;
    border: 1px solid #e1e8e1;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 40px;
}

.flow-box-title {
    font-size: 15px;
    color: #1b361a;
    margin: 0 0 12px 0;
}

.flow-list {
    margin: 0 0 15px 0;
    padding-left: 20px;
}

.flow-list li {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 8px;
}
.flow-list li:last-child {
    margin-bottom: 0;
}
.flow-list strong {
    color: #113821;
}

.flow-alert-text {
    font-size: 13px;
    color: #df4747;
    font-weight: bold;
    margin: 0;
}

/* セクション説明文 */
.section-sub-desc {
    font-size: 13px;
    color: #666;
    margin: -10px 0 20px 0;
    line-height: 1.5;
}

/* 任意マークのスタイル */
.optional {
    background: #cccccc;
    color: #ffffff;
    font-size: 11px;
    font-weight: normal;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 8px;
    vertical-align: middle;
    display: inline-block;
}

/* 多頭飼いのお知らせボックス（ゴールド系注意喚起） */
.multi-dog-box {
    background-color: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 8px;
    padding: 22px;
    margin-top: 40px;
}

.multi-title {
    font-size: 14px;
    color: #b58d4a;
    margin: 0 0 10px 0;
}

.multi-dog-box p {
    font-size: 13.5px;
    color: #444;
    line-height: 1.6;
    margin: 0 0 10px 0;
}

.multi-dog-box p:last-child {
    margin-bottom: 0;
}

.multi-highlight {
    font-weight: bold;
    border-left: 3px solid #b58d4a;
    padding-left: 10px;
    margin-top: 12px !important;
}

/* ==========================================================================
   会員登録申請（entry.html）用レスポンシブ対応
   ========================================================================== */
@media (max-width: 768px) {
    .entry-section-padding {
        padding: 40px 0 50px 0;
    }
    .flow-box {
        padding: 20px 15px;
        margin-bottom: 30px;
    }
    .multi-dog-box {
        padding: 15px;
    }
}

/* ==========================================================================
   貸切エリア（private_area.html）専用スタイル
   ========================================================================== */

.private-max-container {
    max-width: 900px;
    margin: 0 auto;
}

/* 後から写真を貼るためのダミースペース */
.private-main-visual {
    width: 100%;
    margin-bottom: 40px;
}

.photo-placeholder {
    width: 100%;
    aspect-ratio: 2 / 1;
    background-color: #f2f5f2;
    border: 2px dashed #cbd5cb;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #7a8a7a;
    padding: 20px;
    box-sizing: border-box;
}
.photo-placeholder i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #9db09d;
}
.photo-placeholder p {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 5px 0;
}
.photo-placeholder span {
    font-size: 12px;
    color: #999;
}

/* 紹介テキスト */
.private-intro-box {
    text-align: center;
    margin-bottom: 50px;
}

.private-intro-box h3 {
    font-size: 22px;
    color: #1b361a;
    margin: 0 0 20px 0;
    font-weight: bold;
}

.private-intro-box p {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin: 0 0 10px 0;
}
.private-intro-box p:last-child {
    margin-bottom: 0;
}

/* 小見出し */
.private-sub-title {
    font-size: 18px;
    color: #1b361a;
    font-weight: bold;
    margin: 0 0 25px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.private-sub-title i {
    color: #8fa88b;
}

/* 2カラムスペックカード */
.private-spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.spec-card {
    background-color: #ffffff;
    border: 1px solid #e2e8e2;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.01);
}

.spec-card-icon {
    font-size: 32px;
    color: #b58d4a; /* 上品なゴールド */
    margin-bottom: 15px;
}

.spec-card h4 {
    font-size: 16px;
    color: #333;
    margin: 0 0 12px 0;
    font-weight: bold;
}

.spec-card p {
    font-size: 15px;
    color: #444;
    margin: 0 0 8px 0;
}
.spec-card p strong {
    font-size: 18px;
    color: #113821;
}

.spec-card span {
    font-size: 12px;
    color: #777;
    display: block;
    margin-top: 10px;
}

/* 予約の流れステップ */
.private-flow-section {
    background-color: #fafbfa;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 60px;
}

.flow-steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
}

.step-box {
    background-color: #ffffff;
    border: 1px solid #edf1edf;
    border-radius: 8px;
    padding: 25px 20px;
    position: relative;
}

.step-num {
    font-size: 24px;
    font-weight: bold;
    color: #e3dacd;
    display: block;
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
}

.step-box h5 {
    font-size: 15px;
    color: #1b361a;
    font-weight: bold;
    margin: 0 0 10px 0;
}

.step-box p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* 注意点＆イラストエリア */
.private-notice-box {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.notice-list {
    padding-left: 20px;
    margin: 0;
}

.notice-list li {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 12px;
}
.notice-list li:last-child {
    margin-bottom: 0;
}

/* 右側：ワンちゃんのアイコンイラスト表現 */
.notice-right-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dog-illustration-badge {
    width: 180px;
    height: 180px;
    background-color: #e9efe8;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.icon-main-dog {
    font-size: 72px;
    color: #3b5938;
}

/* アイコンの周りに散りばめる小さなマーク */
.icon-decorations i {
    position: absolute;
    color: #b58d4a;
}
.icon-decorations i.fa-heart {
    top: 30px;
    left: 25px;
    font-size: 18px;
}
.icon-decorations i.fa-star {
    top: 20px;
    right: 30px;
    font-size: 16px;
}
.icon-decorations i.fa-clover {
    bottom: 30px;
    right: 25px;
    font-size: 20px;
    color: #8fa88b;
}

/* 下部アクションエリア */
.private-action-area {
    text-align: center;
    border-top: 1px solid #edf1ed;
    padding-top: 45px;
}

.private-action-area p {
    font-size: 14px;
    color: #444;
    margin: 0 0 20px 0;
}

.private-btn {
    display: inline-block;
    background-color: #1b361a; /* 落ち着いたディープグリーン */
    color: #ffffff;
    text-decoration: none;
    padding: 15px 40px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(27, 54, 26, 0.15);
    transition: all 0.2s ease;
}

.private-btn:hover {
    background-color: #112411;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(27, 54, 26, 0.25);
}

/* ==========================================================================
   貸切エリア用レスポンシブ対応（スマホ表示）
   ========================================================================== */
@media (max-width: 768px) {
    .photo-placeholder {
        aspect-ratio: 3 / 2; /* スマホでは少し高さを出す */
    }
    
    .private-intro-box h3 {
        font-size: 18px;
    }
    
    .private-spec-grid {
        grid-template-columns: 1fr; /* 1列に */
        gap: 20px;
    }
    
    .private-flow-section {
        padding: 30px 20px;
    }
    
    .flow-steps-grid {
        grid-template-columns: 1fr; /* 1列に */
        gap: 15px;
    }
    
    .private-notice-box {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .notice-right-illustration {
        order: -1; /* スマホでは先にイラストを見せる */
    }
    
    .dog-illustration-badge {
        width: 140px;
        height: 140px;
    }
    .icon-main-dog {
        font-size: 54px;
    }
    
    .private-btn {
        width: 100%;
        box-sizing: border-box;
    }
}

/* カレンダー下の営業時間スタイル */
.calendar-info {
    margin-top: 15px;
    text-align: center;
}

.calendar-info p {
    font-size: 15px;
    color: #333;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 8px 20px;
    background-color: #f7faf7; /* 優しい薄緑の背景で少し目立たせる */
    border-radius: 20px;
}

.calendar-info i {
    color: #8fa88b; /* アイコンの色をテーマカラーに統一 */
}
/* カレンダー下の営業時間スタイル ここまで*/

/* 決済ロゴ画像エリアのスタイル調整 */
.payment-images-area {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;           /* ロゴ同士の間隔 */
    align-items: center; /* 縦方向の中央揃え */
    justify-content: flex-start;
}

.pay-logo-img {
    height: 30px;        /* ★ここで全ての画像の高さを一括で統一します */
    width: auto;         /* 横幅は画像の比率を維持して自動伸縮 */
    object-fit: contain; /* 画像が歪まないように収める指定 */
}

/* スマホ表示などで少しロゴが大きく感じられる場合の微調整（必要に応じて） */
@media (max-width: 768px) {
    .payment-images-area {
        gap: 8px;
    }
    .pay-logo-img {
        height: 26px;    /* スマホ画面では高さを少し抑える */
    }
}
/* 決済ロゴ画像エリアのスタイル調整 ここまで*/

/* ==========================================================================
   トピックス一覧ページ（blog.html）
   ========================================================================== */
.blog-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* 2段〜3段に並べるグリッド設定 */
.blog-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

/* 記事カード1つの基本設定 */
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    width: calc(33.333% - 20px); /* PCでは3段表示 */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

/* サムネイル画像エリア（高さを固定して比率を維持） */
.blog-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

/* テキストコンテンツエリア */
.blog-content {
    padding: 20px;
}

.blog-date {
    font-size: 13px;
    color: #888;
    display: block;
    margin-bottom: 8px;
    font-family: Arial, sans-serif;
}

.blog-title {
    font-size: 16px;
    line-height: 1.4;
    color: #1b361a; /* サイトのメインカラーに合わせる（濃緑） */
    margin: 0 0 10px 0;
    font-weight: bold;
}

.blog-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 15px 0;
    /* 3行以上は「…」で省略する記述 */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.blog-more {
    font-size: 13px;
    color: #8fa88b;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* タブレット・スマホ用のレスポンシブ対応 */
@media (max-width: 992px) {
    .blog-card {
        width: calc(50% - 15px); /* タブレットでは2段表示 */
    }
}

@media (max-width: 576px) {
    .blog-grid {
        gap: 20px;
    }
    .blog-card {
        width: 100%; /* スマホでは1段（縦並び） */
    }
    .blog-img {
        height: 200px; /* スマホで見やすいように少し画像高さを出す */
    }
}

/* ==========================================================================
   トピックス（ブログ）個別記事 共通スタイル（WordPress対応仕様）
   ========================================================================== */
.post-detail-container {
    max-width: 800px; /* 読みやすい横幅に固定 */
    margin: 0 auto;
}

.post-article {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

/* 記事ヘッダー（タイトル・日付） */
.post-header {
    border-bottom: 2px solid #eef2ee;
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.post-date {
    font-size: 14px;
    color: #888;
    display: block;
    margin-bottom: 10px;
}

.post-title {
    font-size: 26px;
    color: #1b361a;
    line-height: 1.4;
    font-weight: bold;
    margin: 0;
}

/* アイキャッチ画像 */
.post-eyecatch {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 30px;
}

.post-eyecatch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* -----------------------------------------
   記事本文内の汎用要素（WordPress自動出力対応）
   ----------------------------------------- */
.post-content p {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin: 0 0 20px 0;
}

/* 本文内の見出し（h2）※今後どんな記事の見出しにも適用されます */
.post-content h2 {
    font-size: 18px;
    color: #1b361a;
    border-left: 4px solid #8fa88b;
    padding-left: 12px;
    margin: 45px 0 20px 0;
    font-weight: bold;
    line-height: 1.4;
}

/* 本文内のテーブル（表）の共通スタイル */
.post-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
}

.post-content table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.post-content th,
.post-content td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eef2ee;
    font-size: 15px;
}

.post-content th {
    background-color: #f7faf7;
    color: #1b361a;
    font-weight: bold;
}

/* 文字のハイライト（赤文字・太字など部分強調用） */
.highlight-text {
    color: #c95c5c;
}

/* 本文内の箇条書き（注記リストなど） */
.post-content ul.post-notes {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.post-content ul.post-notes li {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 5px;
}

/* -----------------------------------------
   記事フッター（一覧へ戻るボタン）
   ----------------------------------------- */
.post-footer {
    border-top: 1px solid #eef2ee;
    margin-top: 40px;
    padding-top: 30px;
    text-align: center;
}

.btn-back-blog {
    display: inline-block;
    padding: 12px 35px;
    background-color: #f5f5f5;
    color: #555;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.btn-back-blog:hover {
    background-color: #8fa88b;
    color: #fff;
}

/* スマホ表示用の微調整 */
@media (max-width: 576px) {
    .post-article {
        padding: 20px;
    }
    .post-title {
        font-size: 20px;
    }
    .post-content h2 {
        font-size: 16px;
        margin: 35px 0 15px 0;
    }
    .post-content th,
    .post-content td {
        padding: 10px;
        font-size: 14px;
    }
}
/* ==========================================================================
   トピックス（ブログ）個別記事 共通/* ==========================================================================
   Googleカレンダー スマホ対応（レスポンシブ）切り替え
   ========================================================================== */
.calendar-wrapper {
    width: 100%;
    margin: 0 auto;
}

/* 初期状態（パソコン）：スマホ用カレンダーを非表示、PC用を表示 */
.sp-calendar {
    display: none !important;
}
.pc-calendar {
    display: block !important;
}

/* 画面幅が 768px 以下の時（スマートフォン・タブレット） */
@media (max-width: 768px) {
    /* PC用を非表示にして、スマホ用（リスト型）を表示 */
    .pc-calendar {
        display: none !important;
    }
    .sp-calendar {
        display: block !important;
        width: 100%;
        max-width: 100%; /* 横幅いっぱいにはみ出さないように固定 */
    }
}スタイル（WordPress対応仕様） ここまで
   ========================================================================== */

/* ==========================================================================
   会員情報入力ボタン（ページ内リンク）のデザイン
   ========================================================================== */
.btn-input {
    display: inline-block;
    background-color: #007bff; /* 清潔感のあるブルー */
    color: #ffffff !important;
    text-decoration: none;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.2s ease, transform 0.1s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.btn-input:hover {
    background-color: #0056b3; /* ホバー時に少し暗く */
    text-decoration: none;
    transform: translateY(-1px);
}

.btn-input:active {
    transform: translateY(1px);
    box-shadow: none;
}

/* ==========================================================================
   会員情報入力ボタン（ページ内リンク）のデザイン
   ========================================================================== */
.btn-input {
    display: inline-block;
    background-color: #007bff; /* 清潔感のあるブルー */
    color: #ffffff !important;
    text-decoration: none;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.2s ease, transform 0.1s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.btn-input:hover {
    background-color: #0056b3; /* ホバー時に少し暗く */
    text-decoration: none;
    transform: translateY(-1px);
}

.btn-input:active {
    transform: translateY(1px);
    box-shadow: none;
}

/* ==========================================================================
   新規会員情報登録（事前申請）フォームセクション（中央寄せ版）
   ========================================================================== */
#entryFormSection {
    margin-top: 60px;
    margin-left: auto;  /* 左マージンを自動調整して中央へ */
    margin-right: auto; /* 右マージンを自動調整して中央へ */
    padding: 40px 30px;
    background-color: #fcfcfc;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    max-width: 600px; /* 中央寄せ時に間延びしないよう少しスリムに調整 */
    text-align: center; /* セクション内の基本テキストを中央寄せ */
}

/* セクション見出し */
#entryFormSection h2 {
    font-size: 20px;
    color: #333333;
    margin-bottom: 35px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007bff; /* 中央寄せに馴染むよう下線デザインに変更 */
    display: inline-block; /* 文字幅に合わせて下線を引く */
}

/* フォーム内の各入力グループ */
.form-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center; /* 子要素（ラベルやインプット）を横方向の中央に揃える */
}

/* ラベルのデザイン */
.form-group label {
    font-size: 14px;
    font-weight: bold;
    color: #495057;
    margin-bottom: 8px;
    display: block;
    width: 100%;
    max-width: 400px; /* 入力欄と幅を合わせる */
    text-align: left;  /* ラベルのテキスト自体は左詰めで読みやすく */
}

/* 必須・任意バッジ */
.required-badge, .optional-badge {
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 6px;
    vertical-align: middle;
}
.required-badge { background-color: #dc3545; color: #ffffff; }
.optional-badge { background-color: #6c757d; color: #ffffff; }

/* テキスト・TEL・Email入力欄の共通スタイル */
#entryForm input[type="text"],
#entryForm input[type="tel"],
#entryForm input[type="email"] {
    width: 100%;
    max-width: 400px; /* 中央配置で見栄えの良い横幅 */
    padding: 10px 12px;
    font-size: 15px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    background-color: #ffffff;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

#entryForm input[type="text"]:focus,
#entryForm input[type="tel"]:focus,
#entryForm input[type="email"]:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* ファイル添付エリア */
#entryForm input[type="file"] {
    width: 100%;
    max-width: 400px;
    font-size: 14px;
    color: #495057;
    padding: 5px 0;
    text-align: left; /* ファイル選択ボタンのテキストを左詰めに */
}

/* 送信・登録ボタンの配置ラッパー */
.form-submit-wrap {
    margin-top: 35px;
    border-top: 1px solid #e9ecef;
    padding-top: 25px;
}

/* 登録実行ボタン */
#entryForm .submit-btn {
    display: block;
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
    background-color: #28a745;
    color: #ffffff;
    border: none;
    padding: 14px 0;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s, transform 0.1s;
}

#entryForm .submit-btn:hover { background-color: #218838; }
#entryForm .submit-btn:disabled { background-color: #6c757d; cursor: not-allowed; }

/* ==========================================================================
   FAQ (よくある質問) ページ専用スタイル
   ========================================================================== */

/* FAQページ全体のレイアウトと文字被り対策 */
.faq-page-wrapper {
    width: 100%;
    box-sizing: border-box;
}

.faq-page-wrapper .lead {
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.6;
}

/* カテゴリごとのセクション */
.faq-section {
    margin-bottom: 40px;
    width: 100%;
}

.faq-category-title {
    font-size: 20px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 15px;
    border-left: 4px solid #4cbd74; /* ワンズフォレストのテーマカラー（緑系）を想定 */
    padding-left: 12px;
    line-height: 1.4;
}

/* FAQカードの包括枠 */
.faq-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 20px;
}

/* 各質問・回答のペア */
.faq-item {
    border-bottom: 1px solid #eeeeee;
    width: 100%;
    height: auto !important; /* 文字量に応じて自動で伸び縮みさせ、被りを防ぐ */
}

.faq-item:last-child {
    border-bottom: none;
}

/* --------------------------------------------------------------------------
   質問エリア（アコーディオンヘッダー ＆ 矢印マーク）
   -------------------------------------------------------------------------- */
.faq-question {
    position: relative;
    padding: 20px 50px 20px 20px; /* 右側に矢印用の余白を確保 */
    font-weight: bold;
    color: #333333;
    background-color: #fafafa;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    line-height: 1.5;
}

.faq-question:hover {
    background-color: #f5f5f5;
}

/* 擬似要素でカスタム下矢印（＞）を作成 */
.faq-question::after {
    content: "";
    position: absolute;
    right: 24px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid #666666;
    border-right: 2px solid #666666;
    transform: translateY(-50%) rotate(135deg); /* 初期状態：下向き */
    transition: transform 0.3s ease; /* 開閉時に滑らかに回転させる */
}

/* アコーディオンが開いたとき（.is-open）の矢印の動き */
.faq-item.is-open .faq-question::after {
    transform: translateY(-50%) rotate(-45deg); /* 開いた状態：上向き */
}

/* --- 回答エリア（アコーディオンが開いたときの枠）の修正 --- */
.faq-answer {
    display: none; 
    padding: 20px;
    background-color: #ffffff;
    color: #555555;
    line-height: 1.7;
    border-top: 1px solid #eeeeee;
    
    /* 【超重要】高さの限界値を強制的に解除し、中身に応じてどこまでも広がるようにします */
    height: auto !important;
    max-height: none !important;
    min-height: auto !important;
    overflow: visible !important; /* 枠外にはみ出た分を隠さず表示する */
}

/* JSで開いたときの状態も同様に高さを制限しない */
.faq-item.is-open .faq-answer {
    display: block !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}

/* --- お支払い方法エリアの余白と高さの調整 --- */
.payment-section-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100% !important;
    margin-top: 10px;
    
    /* ここでも高さ制限を完全に解除します */
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}

/* 各決済グループ（クレカ・電子マネー・QR）の縦の隙間を少し広げて見やすく */
.payment-group {
    display: block !important;
    width: 100% !important;
    margin-bottom: 25px !important; /* 隙間を20px → 25pxに拡大 */
    height: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* --------------------------------------------------------------------------
   質問6：お支払い方法エリア（クレカ・電子マネー・QRコードすべて直列表示）
   -------------------------------------------------------------------------- */
.payment-section-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100% !important;
    margin-top: 10px;
}

/* 注意書き（キャッシュレス決済のみ） */
.payment-notice-box {
    width: 100%;
    margin-bottom: 20px;
}

.payment-alert-text {
    font-size: 15px;
    font-weight: bold;
    color: #d9534f; /* 警告として目立つように赤・オレンジ系を指定 */
    line-height: 1.5;
    margin: 0;
}

.payment-alert-symbol {
    margin-right: 5px;
}

/* 各決済グループ（すべて表示されるよう干渉を強制リセット） */
.payment-method-container {
    width: 100% !important;
}

.payment-group {
    display: block !important;
    width: 100% !important;
    margin-bottom: 20px !important;
    height: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.payment-group:last-child {
    margin-bottom: 0 !important;
}

.payment-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333333;
}

/* ロゴマークの並び */
.payment-logos {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 15px !important;
    width: 100% !important;
}

/* 各種決済ロゴ画像の設定 */
.pay-logo {
    height: 32px !important;
    width: auto !important;
    display: inline-block !important;
    object-fit: contain;
}

/* 画像のない交通系ICのバッジ装飾 */
.pay-text-only {
    font-size: 13px;
    font-weight: bold;
    color: #555555;
    background-color: #f5f5f5;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block !important;
    line-height: 1.2;
}

/* --------------------------------------------------------------------------
   下部インフォメーションバナー ＆ 注意書き
   -------------------------------------------------------------------------- */
.info-banner {
    background-color: #f4f9f5;
    border: 1px solid #e2eee4;
    border-radius: 8px;
    padding: 30px;
    margin-top: 60px;
    width: 100%;
    box-sizing: border-box;
}

.info-banner h3 {
    font-size: 18px;
    font-weight: bold;
    color: #2e7d32;
    text-align: center;
    margin-bottom: 20px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.info-item {
    font-size: 14px;
    color: #444444;
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}

.info-item::before {
    content: "🐾";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 12px;
}

.faq-footer-note {
    margin-top: 30px;
    text-align: center;
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
}

/* ==========================================================================
   スマートフォン・タブレット向けレスポンシブ対応 (768px以下)
   ========================================================================== */
@media (max-width: 768px) {
    .faq-category-title {
        font-size: 18px;
    }

    .faq-question {
        padding: 15px 45px 15px 15px;
        font-size: 15px;
    }

    .faq-question::after {
        right: 18px;
    }

    .faq-answer {
        padding: 15px;
        font-size: 14px;
    }

    /* お支払い方法のスマホ最適化 */
    .payment-alert-text {
        font-size: 14px;
    }

    .payment-logos {
        gap: 10px !important;
    }

    .pay-logo {
        height: 26px !important; /* スマホ画面に合わせて画像を少しコンパクトに */
    }

    .pay-text-only {
        font-size: 12px;
        padding: 4px 8px;
    }

    /* インフォメーションバナーのスマホ最適化 */
    .info-banner {
        padding: 20px;
        margin-top: 40px;
    }

    .info-banner h3 {
        font-size: 16px;
    }

    .info-grid {
        grid-template-columns: 1fr; /* スマホでは1列の縦並びにする */
        gap: 10px;
    }
}