/* --- メンテナンス用変数設定 --- */
:root {
    --primary-color: #008F7A;    /* テールグリーン */
    --accent-color: #E6F2F0;     /* 薄いテールグリーン */
    --text-color: #333333;       /* メイン文字色 */
    --bg-color: #FFFFFF;         /* 背景色 */
    --font-jp-serif: 'Noto Serif JP', serif;
    --font-jp-sans: 'Noto Sans JP', sans-serif;
    --section-padding: 100px 20px;
}

/* --- 基本スタイル --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-jp-sans);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.8;
}
.container { max-width: 1000px; margin: 0 auto; }
.font-elegant { font-family: var(--font-jp-serif); font-weight: 700; letter-spacing: 0.05em; }

/* --- セクション共通 --- */
.section { padding: var(--section-padding); text-align: center; }
.section-title { font-size: 2.5rem; margin-bottom: 50px; color: var(--primary-color); position: relative; display: inline-block; }
.section-title::after { content: ''; display: block; width: 40px; height: 2px; background: var(--primary-color); margin: 10px auto; }

/* --- メインビジュアル --- */
.hero {
    height: 100vh;
    background: url('main-visual.jpg') no-repeat center center/cover; /* 生成した画像をここに */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.3); }
.hero-content { position: relative; z-index: 1; padding: 20px; }
.hero-label { font-size: 1.2rem; letter-spacing: 0.3em; margin-bottom: 1rem; }
.hero h1 { font-size: 3rem; margin-bottom: 2rem; line-height: 1.4; }
.highlight { color: #fff; border-bottom: 3px solid var(--primary-color); }
.hero-date { font-size: 1.3rem; margin-bottom: 2.5rem; }

/* --- 追加：ロゴマークのスタイル --- */
.hero-logo {
    position: absolute;
    top: 50px; /* 上部からの距離（お好みで調整してください） */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

.hero-logo img {
    width: 165px; /* ロゴの表示サイズ */
    height: auto;
    /* ロゴが白い場合、テーマカラーのテールグリーンの影を薄くつけると清楚に際立ちます */
    filter: drop-shadow(3px 3px 3px rgba(0, 54, 47, 0.9));
}

/* --- 修正：メインコンテンツの位置調整 --- */
.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 60px; /* ロゴと被らないように少し隙間を空ける */
}

/* スマホ用の調整 */
@media (max-width: 768px) {
    .hero-logo {
        top: 30px;
    }
    .hero-logo img {
        width: 165px; /* スマホでは少し小さく */
    }
}

/* --- ボタン --- */
.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 18px 50px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0,143,122,0.2);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(0,143,122,0.3); }

/* --- 特色セクション --- */
.features { background-color: var(--accent-color); }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.feature-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: left;
    transition: 0.3s;
}
.feature-num { color: var(--primary-color); font-weight: bold; font-size: 1.2rem; display: block; margin-bottom: 10px; }
.feature-card h3 { margin-bottom: 15px; font-size: 1.25rem; }

/* --- テーブル --- */
.outline-table { width: 100%; max-width: 700px; margin: 0 auto; border-collapse: collapse; text-align: left; }
.outline-table th, .outline-table td { padding: 20px; border-bottom: 1px solid #eee; }
.outline-table th { width: 30%; color: var(--primary-color); }

/* --- フッター --- */
footer { background: #333; color: white; padding: 40px; text-align: center; font-size: 0.9rem; }

/* レスポンシブ */
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .section-title { font-size: 2rem; }
}

/* PC表示：デフォルトではこの改行タグを無効化（非表示）します */
.sp-br {
    display: none;
}

/* スマホ表示（画面幅768px以下）：改行タグを有効化します */
@media (max-width: 768px) {
    .sp-br {
        display: inline; /* 改行として機能させます */
    }
}

/* --- FAQセクション --- */
.faq { background-color: #fff; }

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    background-color: var(--accent-color); /* 薄いテールグリーン */
    color: var(--primary-color);
    padding: 20px 25px;
    font-weight: bold;
    position: relative;
    cursor: default;
}

.faq-question::before {
    content: "Q.";
    margin-right: 10px;
    font-size: 1.2rem;
}

.faq-answer {
    padding: 25px;
    background-color: #fff;
    line-height: 1.8;
    border-top: 1px solid #eee;
}

.faq-answer::before {
    content: "A.";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 10px;
}