/* ==========================================
   0. 全体・フォント・基本設定
   ========================================== */
:root {
    --primary-color: #1b4d3e;
    --accent-color: #c85a1c;
    --bg-main: #ffffff;
    --bg-hero: #f4f7f5;
    --bg-card: #f8faf9;
}

body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", Meiryo, sans-serif;
    background-color: var(--bg-main);
    color: #333333;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

.header-btn-group {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    vertical-align: middle;
}

.btn-corp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: bold;
    color: #1b4d3e;
    background-color: #ffffff;
    border: 1.5px solid #1b4d3e;
    border-radius: 20px;
    text-decoration: none !important;
    white-space: nowrap;
    box-sizing: border-box;
    transition: all 0.2s ease;
}
.btn-corp:hover {
    background-color: #f4f8f6;
    transform: translateY(-1px);
}

.member-menu-wrap {
    position: relative;
}

.member-menu-wrap .btn-cta {
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 20px;
    cursor: pointer;
    white-space: nowrap;
}

#memberMenu {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: #ffffff;
    border: 1px solid #d0dcd5;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    min-width: max-content;
    overflow: hidden;
}

#memberMenu ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left;
}

#memberMenu li {
    border-bottom: 1px solid #eee;
}

#memberMenu li:last-child {
    border-bottom: none;
}

#memberMenu a {
    display: block;
    padding: 12px 16px;
    color: #333333;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
}

#memberMenu a:hover {
    background-color: #f4f8f6;
    color: #1b4d3e;
}

/* ==========================================
   1. メインビジュアル（.hero）
   ========================================== */
.hero {
    background-color: var(--bg-hero);
    padding: 40px 0;
    overflow: hidden;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.hero-content {
    flex: 1.1;
}

.hero-badge {
    display: inline-block;
    background-color: #e0f2fe;
    color: #0369a1;
    font-size: 13px;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.hero-content h1 {
    font-size: 26px;
    font-weight: bold;
    line-height: 1.35;
    color: #1b4d3e;
    margin-bottom: 12px;
}
.hero-content h1 span {
    color: #c85a1c;
}

.hero-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
}

.btn-cta {
    display: inline-block;
    background-color: #1b4d3e;
    color: #ffffff;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.3;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: background-color 0.25s ease, transform 0.25s ease;
}
.btn-cta:hover {
    background-color: #276b56;
    transform: translateY(-2px);
}

.hero-img-wrap {
    flex: 0.9;
}
.hero-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ==========================================
   2. 特徴セクション（.features-section）
   ========================================== */
.features-section {
    padding: 40px 0;
    background-color: var(--bg-main);
}

.features-section .section-title {
    text-align: center;
    margin-bottom: 30px;
}

.features-section .section-title h2 {
    font-size: 22px;
    color: #1b4d3e;
    margin-bottom: 8px;
    font-weight: bold;
}

.features-section .section-title p {
    font-size: 14px;
    color: #666;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--bg-card);
    border: 1px solid #e0eae5;
    border-radius: 10px;
    padding: 20px;
}

.feature-icon {
    font-size: 28px;
    line-height: 1;
}

.feature-text h3 {
    font-size: 16px;
    color: #1b4d3e;
    margin-bottom: 6px;
    font-weight: bold;
}

.feature-text p {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* ==========================================
   3. 店舗選択セクション（.store-selector）
   ========================================== */
.store-selector {
    padding: 40px 0;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    background-color: var(--bg-main);
}
.store-selector h2 {
    font-size: 22px;
    margin-bottom: 25px;
    color: #4a6b5d;
    font-weight: bold;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 0 15px;
}

a.store-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
    text-decoration: none !important;
    color: inherit;
}
a.store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.store-top-text {
    background-color: #fff;
    color: #c85a1c;
    font-size: 13px;
    font-weight: 900 !important;
    text-align: center;
    padding: 8px 4px;
    border-bottom: 2px solid #f0f0f0;
    box-sizing: border-box;
    line-height: 1.3;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
    background-color: #ddd;
}
.store-img picture {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.store-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left top;
    display: block;
}

.store-img .img-hover {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 1;
}
a.store-card:hover .img-hover {
    opacity: 1;
}

.store-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.65) 100%);
    pointer-events: none;
    z-index: 2;
}

.store-img-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92%;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    font-size: 15px;
    line-height: 1.35;
    z-index: 3;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}
.store-img-text span {
    font-size: 13px;
}

.store-info {
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.store-name {
    font-size: 15px;
    font-weight: bold;
    padding: 6px 4px;
    border-radius: 5px;
    margin-bottom: 10px;
    text-align: center;
}

ul.store-details-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 12px 0 !important;
    text-align: left !important;
    font-size: 12px;
    flex-grow: 1;
}
ul.store-details-list li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 4px;
    margin-bottom: 6px;
    line-height: 1.35;
    color: #444;
    white-space: normal;
    word-break: break-word;
}
ul.store-details-list .icon {
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.store-btn {
    display: block;
    background-color: #f5f5f5;
    color: #333333;
    border: 1px solid #e0e0e0;
    padding: 9px 0;
    border-radius: 6px;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}
a.store-card:hover .store-btn {
    background-color: #e8e8e8;
    border-color: #cccccc;
    color: #111111;
}

a.store-card:nth-child(1) .store-name {
    background-color: #e0f2fe !important;
    color: #0369a1 !important;
}
a.store-card:nth-child(2) .store-name {
    background-color: #4a6b5d !important;
    color: #ffffff !important;
}
a.store-card:nth-child(3) .store-name {
    background-color: #2b5c8f !important;
    color: #ffffff !important;
}
a.store-card:nth-child(4) .store-name {
    background-color: #ffeb3b !important;
    color: #222222 !important;
}

/* ==========================================
   4. モーダル基本設定
   ========================================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}
.modal-overlay.active {
    display: flex;
}

.modal-content, .modal-container {
    background: #ffffff;
    border-radius: 12px;
    width: 100%;
    max-width: 560px;
    padding: 24px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    text-align: center;
    max-height: 90vh;
    overflow-y: auto;
    box-sizing: border-box;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    line-height: 1;
}
.modal-close:hover {
    color: #333;
}

.modal-title {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #1b4d3e;
}

.modal-sub {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
}

/* 診断モーダル内部 */
.modal-header {
    text-align: center;
    margin-bottom: 20px;
}
.modal-header h3 {
    font-size: 18px;
    color: #1b4d3e;
    margin-bottom: 12px;
}

.progress-bar-wrap {
    width: 100%;
    height: 8px;
    background-color: #eee;
    border-radius: 4px;
    overflow: hidden;
}
.progress-bar {
    height: 100%;
    width: 16.6%;
    background-color: #1b4d3e;
    transition: width 0.3s ease;
}

.question-step {
    display: none;
}
.question-step.active {
    display: block;
}

.q-number {
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    color: #c85a1c;
    background-color: #fff2eb;
    padding: 2px 8px;
    border-radius: 10px;
    margin-bottom: 8px;
}

.q-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 16px;
}

.options-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.option-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 14px 16px;
    background-color: var(--bg-card);
    border: 1.5px solid #d0dcd5;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}
.option-btn:hover {
    background-color: #eef5f1;
    border-color: #1b4d3e;
    color: #1b4d3e;
}

.result-card {
    text-align: center;
}

.recommended-store-box {
    background-color: var(--bg-card);
    border: 1.5px solid #d0dcd5;
    border-radius: 8px;
    padding: 16px;
    margin: 15px 0;
}

.btn-reset-link {
    background: none;
    border: none;
    color: #666;
    text-decoration: underline;
    font-size: 12px;
    cursor: pointer;
}

.modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* 診断結果ボタン群 */
.result-btn-group {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    justify-content: center;
}

.btn-result {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 10px 6px;
    font-size: 13px;
    font-weight: bold;
    border-radius: 20px;
    text-decoration: none !important;
    text-align: center;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.25s ease;
    line-height: 1.2;
    white-space: nowrap;
}

.btn-result.btn-detail {
    background-color: #ffffff;
    color: #1b4d3e;
    border: 1.5px solid #1b4d3e;
}
.btn-result.btn-detail:hover {
    background-color: #f4f8f6;
}

.btn-result.btn-reserve {
    background-color: #e07a39;
    color: #ffffff;
    border: 1.5px solid #e07a39;
    box-shadow: 0 3px 8px rgba(224, 122, 57, 0.3);
}
.btn-result.btn-reserve:hover {
    background-color: #c86222;
}

.btn-result.btn-join {
    background-color: #1b4d3e;
    color: #ffffff;
    border: 1.5px solid #1b4d3e;
    box-shadow: 0 3px 8px rgba(27, 77, 62, 0.3);
}
.btn-result.btn-join:hover {
    background-color: #12352b;
}

/* モーダル内動画 */
.modal-video-wrap {
    width: 100%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

/* 店舗タブボタン */
.store-tab-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 15px;
}

.btn-store-tab {
    padding: 8px 12px;
    font-size: 13px;
    border: 1px solid #1b4d3e;
    background-color: #fff;
    color: #1b4d3e;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s;
}

.btn-store-tab.active,
.btn-store-tab:hover {
    background-color: #1b4d3e;
    color: #ffffff;
}

/* LINE店舗選択モーダル用グリッド */
.line-store-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.btn-line-store {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #06C755;
    color: #ffffff !important;
    padding: 14px 8px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(6, 199, 85, 0.25);
    transition: all 0.2s ease;
}

.btn-line-store:hover {
    background-color: #05b34c;
    transform: translateY(-2px);
}

.btn-line-store .store-name,
.btn-line-store .store-sub {
    font-size: 14px;
    font-weight: bold;
    opacity: 1;
}

.btn-line-store .store-name {
    margin-bottom: 4px;
letter-spacing: -0.5px; /* 文字間をほんの少し詰めてキュッと締める */
}
/* ==========================================
   5. FAQスタイル
   ========================================== */
.faq-list {
    text-align: left;
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 5px;
}

.faq-item {
    margin-bottom: 10px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #1b4d3e;
    overflow: hidden;
}

.faq-q {
    font-weight: bold;
    font-size: 14px;
    color: #1b4d3e;
    padding: 12px 35px 12px 12px;
    cursor: pointer;
    position: relative;
    user-select: none;
}

.faq-q::after {
    content: "＋";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    font-weight: bold;
    color: #1b4d3e;
}

.faq-q.is-open::after {
    content: "－";
}

.faq-a {
    display: none !important;
    font-size: 13px;
    color: #333;
    line-height: 1.6;
    padding: 12px;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
}

.faq-a.is-open {
    display: block !important;
}

.faq-category-title {
    font-size: 13px;
    font-weight: bold;
    color: #1b4d3e;
    background-color: #e8f5e9;
    padding: 6px 10px;
    margin-top: 16px;
    margin-bottom: 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

.faq-category-title:first-child {
    margin-top: 0;
}

/* ==========================================
   6. フッター＆各種ボタン
   ========================================== */
footer {
    background-color: #1b4d3e;
    color: #ffffff;
    text-align: center;
    padding: 30px 0;
    font-size: 12px;
    margin-top: 40px;
}

.footer-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.btn-footer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.btn-trainer {
    background-color: #ffffff;
    color: #1b4d3e;
}

.btn-contact {
    background-color: #c85a1c;
    color: #ffffff;
}

.btn-footer.btn-line {
    background-color: #06C755 !important;
    color: #ffffff !important;
    border: none;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 4px 10px rgba(6, 199, 85, 0.25);
}

.btn-footer:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.line-icon {
    margin-right: 6px;
}

.copyright {
    margin: 0;
    font-size: 12px;
    color: #a0b8b0;
}

/* 診断ボタンコンテナ */
.diagnosis-btn-container {
    text-align: center;
    margin: 40px 0;
    padding: 0 20px;
}

.btn-diagnosis {
    display: inline-block;
    width: 100%;
    max-width: 380px;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: bold;
    color: #ffffff;
    background-color: #1b4d3e;
    border: none;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(27, 77, 62, 0.2);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-diagnosis:hover {
    background-color: #143b2f;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(27, 77, 62, 0.3);
}

/* ページトップに戻るボタン */
.btn-back-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(27, 77, 62, 0.6);
    color: #ffffff;
    border: none;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.btn-back-to-top:hover {
    background-color: rgba(27, 77, 62, 0.9);
    transform: translateY(-3px);
}

/* PC表示（幅769px以上）メディアクエリ */
@media (min-width: 769px) {
    .hero-img-wrap video,
    .modal-video-wrap video {
        object-fit: contain !important;
        max-height: 75vh !important;
    }
}

/* スマホ表示（幅768px以下）メディアクエリ */
@media (max-width: 768px) {
    .header-inner { padding: 10px 12px; }
    .logo img { height: 32px; }
    .header-btn-group { gap: 4px; }

    .btn-corp, 
    .member-menu-wrap .btn-cta {
        font-size: 11px !important;
        padding: 6px 10px !important;
        border-radius: 16px !important;
    }

    .hero { padding: 30px 0; }
    .hero-inner { flex-direction: column; gap: 20px; }
    .hero-content h1 { font-size: 20px; line-height: 1.4; }
    .hero-content p { font-size: 13px; line-height: 1.5; margin-bottom: 16px; }
    .hero-content .btn-cta { width: 100%; font-size: 13.5px; padding: 12px 10px; box-sizing: border-box; text-align: center; }
    .hero-img-wrap { width: 100%; }

    .feature-cards {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px 10px !important;
    }

    .feature-card {
        padding: 12px 8px;
        box-sizing: border-box;
        text-align: center;
    }

    .feature-icon { font-size: 26px; margin-bottom: 6px; }
    .feature-text h3 { font-size: 13px; margin-bottom: 6px; line-height: 1.3; }
    .feature-text p { font-size: 11px; line-height: 1.35; text-align: left; }

    .store-selector { padding: 25px 0; }
    .store-selector h2 { font-size: 18px; margin-bottom: 15px; }
    .store-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .store-top-text { font-size: 11px; min-height: 42px; padding: 4px 2px; line-height: 1.25; }
    .store-img-text { font-size: 12.5px; line-height: 1.25; }
    .store-img-text span { font-size: 10.5px; }
    .store-info { padding: 8px 6px; }
    .store-name { font-size: 12.5px; padding: 4px 2px; margin-bottom: 6px; }
    ul.store-details-list { font-size: 11px; margin-bottom: 8px !important; }
    ul.store-details-list li { gap: 2px; margin-bottom: 4px; }
    ul.store-details-list .icon { width: 14px; }
    .store-btn { padding: 7px 0; font-size: 11.5px; }

    .store-tab-btns {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }

    .btn-store-tab {
        width: 100% !important;
        text-align: center;
        box-sizing: border-box;
        padding: 10px 4px !important;
        font-size: 12px !important;
    }

    .hero-img-wrap video,
    .modal-video-wrap video {
        max-height: 55vh !important;
        object-fit: contain !important;
    }

    .footer-btns {
        flex-direction: column;
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    .btn-footer {
        width: 100%;
        max-width: 300px;
        box-sizing: border-box;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .result-btn-group {
        flex-direction: column;
        gap: 8px;
    }
    .btn-result {
        width: 100%;
        padding: 12px 10px;
        font-size: 14px;
    }
    .diagnosis-btn-container { margin: 30px 0; }
    .btn-diagnosis { font-size: 14px; padding: 13px 15px; max-width: 320px; }
}

/* 「詳しく見る ＞」をしっかりとしたボタンデザインにする */
.card-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: bold;
    color: #ffffff !important;
    background-color: #1b4d3e;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: all 0.2s ease;
}

@media (max-width: 768px) {
    .card-more-btn {
        width: 100%;
        box-sizing: border-box;
        padding: 8px 0;
        font-size: 11.5px;
    }
}
/* リニューアル告知バナー */
.site-notice-banner {
    background-color: #fcf8f2;
    border-bottom: 2px solid #e0d0b8;
    padding: 10px 15px;
    font-size: 13px;
    color: #333333;
}

.notice-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notice-badge {
    background-color: #1b4d3e;
    color: #ffffff;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.notice-text {
    margin: 0;
    line-height: 1.4;
    font-size: 12.5px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .notice-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

/* 告知バナー内の強調文字カラー */
.notice-highlight {
    color: #c85a1c; /* オレンジ寄りの目立つ色 */
    font-weight: bold;
}