@charset "UTF-8";

/* =========================================
   1. 基本設定
   ========================================= */
body {
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 2.0;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #fff;
    letter-spacing: 0.08em;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
    color: inherit;
}
/* =========================================
   1. 基本リセット & 共通設定
   ========================================= */
* { box-sizing: border-box; }
body {
  margin: 0; padding: 0;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  color: #444; line-height: 2.0; letter-spacing: 0.08em;
  -webkit-font-smoothing: antialiased; background-color: #fff;
}
img { max-width: 100%; height: auto; vertical-align: bottom; }
p { margin: 0 0 1.8em; }
ul { padding: 0; margin: 0; list-style: none; }
a { text-decoration: none; color: inherit; transition: opacity 0.3s; }
a:hover { opacity: 0.7; }
.bold { font-weight: 700; }

/* PC/SP 表示切り替えユーティリティ */
.sp { display: none !important; }
.pc { display: block !important; }

/* レイアウト枠 */
.wrapper { 
    width: 100%; 
    overflow-x: hidden; 
    font-size: 15px; 
    padding-top: 0 !important; 
    margin-top: 0 !important;
}
.inner { margin-left: auto; margin-right: auto; width: 90%; max-width: 1000px; }

/* 見出し共通 */
.page_ttl {
  font-size: 26px; font-weight: 700; text-align: center;
  line-height: 1.6; margin-bottom: 50px; color: #333;
}
.page_ttl span {
  font-family: "Outfit", sans-serif; font-weight: 700; font-size: 14px;
  letter-spacing: 0.15em; color: #AF964B; display: block; margin-top: 10px;
  text-transform: uppercase;
}


/* =========================================
   2. ヘッダー (PC/SP共通・個別設定)
   ======================================== */
#header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    margin-bottom: 0 !important;
    width: 100%;
}
#header-placeholder { display: block; margin: 0 !important; padding: 0 !important; height: auto; line-height: 0; }
#topbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 5%; max-width: 1200px; margin: 0 auto;
}
#logo img { height: 60px; width: auto; display: block; }

/* PC表示設定 (769px以上) */
@media screen and (min-width: 769px) {
    #gnav {
        display: flex !important;
        flex-grow: 1;
        justify-content: center;
        position: static !important;
        background: transparent !important;
        width: auto !important;
        height: auto !important;
    }

    #gnav ul.gnav {
        display: flex !important;
        flex-direction: row !important;
        list-style: none;
        gap: 30px;
        margin: 0;
        padding: 0;
        align-items: center;
    }

    #gnav .menu-item {
        display: block !important;
        width: auto !important;
        margin: 0 !important;
    }

    #gnav .menu-item a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        font-size: 15px;
        display: block;
        padding: 5px 0;
    }
    #gnav .menu-item a:hover { color: #AF964B; }

    #topbar-menu-btn,
    #topbar-search-btn,
    #overlay-menu-close-btn {
        display: none !important;
    }
    
    #topbar-tel-btn button {
        background: #AF964B;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        color: #fff;
        cursor: pointer;
        font-size: 14px;
        font-weight: 600;
    }
    
    #overlay-search {
        display: none !important;
    }
}

/* SP表示設定 (768px以下) */
@media screen and (max-width: 768px) {
    #gnav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.95);
        z-index: 9998;
        justify-content: center;
        align-items: center;
    }
    
    #gnav.active { display: flex; }

    #gnav ul.gnav {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    #gnav .menu-item a {
        color: #fff;
        font-size: 18px;
    }

    #topbar { padding: 10px 20px; }
    #logo img { height: 50px; }

    #topbar-menu-btn,
    #topbar-search-btn {
        display:none flex; }
    #topbar-menu-btn svg, 

    #overlay-menu-close-btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        cursor: pointer;
    }
    #overlay-menu-close-btn svg { fill: #fff; }
    
    #topbar-tel-btn button {
        padding: 8px 15px;
        font-size: 13px;
        background: #AF964B;
        color: #fff;
        border: none;
        border-radius: 5px;
    }
}

/* =========================================
   2. メインレイアウト
   ========================================= */
.area-main-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 100px 20px 120px;
}

/* =========================================
   3. 見出しエリア
   ========================================= */
.page-heading {
    text-align: center;
    margin-bottom: 60px;
}

.page-heading .en {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #eec35d;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-bottom: 10px;
}

.page-heading .jp {
    font-size: 28px;
    color: #222;
    font-weight: bold;
    margin: 0;
}

.intro-text {
    text-align: center;
    margin-bottom: 100px;
}

.intro-text p {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: bold;
}

.intro-text .note {
    font-size: 13px;
    color: #888;
    font-weight: normal;
}

/* =========================================
   4. エリアセクション
   ========================================= */
.area-section {
    margin-bottom: 80px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 60px;
}

.area-section:last-of-type {
    border-bottom: none;
}

.area-label {
    font-size: 20px;
    color: #222;
    margin-bottom: 30px;
    padding-left: 15px;
    border-left: 4px solid #eec35d;
    font-weight: bold;
}

/* =========================================
   5. 都道府県グリッド
   ========================================= */
.pref-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.pref-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    background: #fff;
    border: 1px solid #ddd;
    font-size: 14px;
    color: #333;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 10px;
    text-align: center;
}

span.pref-item {
    cursor: default;
    background: #fff;
    color: #333;
}

a.pref-item.is-link {
    flex-direction: column;
    border-color: #999;
    cursor: pointer;
    color: #222;
    transition: all 0.3s;
    line-height: 1.2;
}

a.pref-item.is-link .pref-name {
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 4px;
}

a.pref-item.is-link .link-arrow {
    font-size: 10px;
    color: #eec35d;
    font-weight: normal;
}

a.pref-item.is-link:hover {
    background: #222;
    border-color: #222;
}

a.pref-item.is-link:hover .pref-name {
    color: #fff;
}

a.pref-item.is-link:hover .link-arrow {
    color: #eec35d;
}

/* =========================================
   6. 戻るボタン
   ========================================= */
.back-btn-wrapper {
    margin-top: 80px;
    text-align: center;
}

.back-btn {
    display: inline-block;
    padding: 18px 80px;
    border: 1px solid #333;
    color: #333;
    font-weight: bold;
    border-radius: 50px;
    font-size: 14px;
    background: #fff;
    transition: all 0.3s;
}

.back-btn:hover {
    background: #333;
    color: #fff;
}

/* =========================================
   7. ヘッダー共通設定 (PC/SP)
   ========================================= */
#header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

#topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

#logo a {
    text-decoration: none;
    display: block;
}

/* --- PC用メニュー (769px以上) --- */
@media screen and (min-width: 769px) {
    #gnav {
        display: flex !important;
        flex-grow: 1;
        justify-content: center;
        background: transparent !important; /* PCでは透明 */
        position: static !important;
        width: auto !important;
        height: auto !important;
    }

    #gnav ul.gnav {
        display: flex;
        list-style: none;
        gap: 25px;
        margin: 0;
        padding: 0;
        align-items: center;
    }

    #gnav .menu-item a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        font-size: 14px;
        padding: 5px 0;
        transition: color 0.3s;
    }
    #gnav .menu-item a:hover { color: #c5a059; }

    #topbar-menu-btn,
    #overlay-menu-close-btn {
        display: none !important;
    }
    
    #topbar-tel-btn button {
        background: #c5a059;
        border: none;
        padding: 10px 20px;
        border-radius: 4px;
        color: #fff;
        cursor: pointer;
        font-size: 14px;
        font-weight: bold;
        transition: opacity 0.3s;
    }
    #topbar-tel-btn button:hover { opacity: 0.8; }
}

/* --- SP用メニュー (768px以下) --- */
@media screen and (max-width: 768px) {
    #gnav {
        display: none; /* 初期状態は非表示 */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(34, 34, 34, 0.98); /* 黒背景 */
        z-index: 9999;
        justify-content: center;
        align-items: center;
    }
    
    #gnav.active { display: flex !important; }

    #gnav ul.gnav {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 0;
    }

    #gnav .menu-item a {
        color: #fff;
        font-size: 18px;
        font-weight: bold;
    }

    #topbar { padding: 10px 15px; }

    #topbar-menu-btn {
        display: flex;
        cursor: pointer;
        margin-left: 15px;
        padding: 5px;
    }

    #overlay-menu-close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        cursor: pointer;
        padding: 10px;
    }
    
    #topbar-tel-btn button {
        padding: 8px 12px;
        font-size: 12px;
        background: #c5a059;
        color: #fff;
        border: none;
        border-radius: 4px;
    }
    
    /* コンテンツのレスポンシブ調整 */
    .area-main-wrapper { padding: 80px 20px; }
    .pref-grid { grid-template-columns: repeat(2, 1fr); }
} /* ← ★この閉じカッコが重要！これでSP用設定を終わらせます */

/* =========================================
   8. メインフッター（強制適用版）
   ========================================= */
footer,
#footer,
.site-footer-inner {
    background: #222 !important;
    color: #fff !important;
    padding: 50px 0 20px;
    margin-top: 80px;
    width: 100%;
    display: block;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-logo {
    font-family: serif;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff !important;
    display: block;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc !important;
    font-size: 13px;
    text-decoration: none;
}

.footer-links a:hover { color: #eec35d !important; }

.copyright {
    font-size: 11px;
    color: #666 !important;
    border-top: 1px solid #333;
    padding-top: 20px;
    display: block;
}

/* =========================================
   9. SP用 追尾フッター（固定メニュー）
   ========================================= */
.sticky-footer-main { 
    position: fixed; bottom: 0; left: 0; width: 100%; z-index: 9999; 
    box-shadow: 0 -5px 25px rgba(0,0,0,0.15); font-family: "Yu Gothic", "YuGothic", sans-serif; background: transparent; 
}
.footer-primary-btn {
    display: block; background: linear-gradient(135deg, #F69D3C 0%, #E07A00 100%); color: #ffffff;
    text-decoration: none; padding: 14px 10px 16px; text-align: center; 
    border-top-left-radius: 12px; border-top-right-radius: 12px; position: relative; z-index: 2;
}
.primary-content { display: flex; justify-content: center; align-items: center; gap: 12px; }
.primary-text { text-align: left; }
.primary-title { font-size: 16px; font-weight: bold; margin: 0; line-height: 1.2; letter-spacing: 0.05em; text-shadow: 0 1px 2px rgba(0,0,0,0.1); }
.primary-sub { font-size: 11px; margin: 2px 0 0 0; opacity: 0.95; font-weight: normal; }
.arrow-icon { font-size: 1em; margin-left: 2px; font-weight: normal; }
.footer-secondary-area { display: flex; width: 100%; background-color: #f4f4f4; border-top: 1px solid #ddd; margin: 0; padding: 0; }
.footer-tel-btn, .footer-inquiry-btn { width: 50%; display: flex; justify-content: center; align-items: center; text-decoration: none; padding: 10px 0; box-sizing: border-box; font-size: 13px; line-height: 1.3; color: #333 !important; }
.footer-tel-btn { background-color: #ffffff; border-right: 1px solid #e0e0e0; }
.footer-inquiry-btn { background-color: #f0f0f0; }
.tel-icon { font-size: 20px; margin-right: 8px; line-height: 1; display: inline-block; }
.tel-text-group { display: flex; flex-direction: column; text-align: left; }
.tel-label { font-weight: bold; font-size: 12px; display: block; }
.tel-time { font-size: 10px; color: #666; background: #eee; padding: 1px 5px; border-radius: 4px; margin-top: 2px; display: inline-block; text-align: center; }
.mail-icon { font-size: 18px; margin-right: 6px; line-height: 1; display: inline-block; }
.inquiry-text { font-size: 12px; font-weight: bold; }


/* --- スマホでの横揺れを防ぐ「お守り」 --- */
html, body {
    overflow-x: hidden; /* 横にはみ出した部分を強制的に隠す */
    width: 100%;
}

/* --- 背景画像のズレ・揺れを防ぐ --- */
/* スマホの時だけ、背景固定を解除する */
@media screen and (max-width: 767px) {
    body, div, section {
        background-attachment: scroll !important;
    }
}