/* 共通リセット */
body, h1, h2, h3, h4, h5, h6, p, ul, li, dl, dt, dd {
    margin: 0;
    padding: 0;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* ヘッダー・ナビ */
.header {
    background-color: #2d6a4f; /* 緑 */
    color: #fff;
    padding: 10px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.header .logo a {
    color: #fff;
    text-decoration: none;
   /* フォントサイズを画面幅に応じて自動調整 */
    font-size: clamp(1em, 5vw, 1.5em);
    font-weight: bold;
}
.nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}
.nav ul li {
    margin-left: 15px;
}
.nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
.nav ul li.active a {
    color: #d9f0ea;
}
.menu-btn {
    display: none;
    font-size: 1.8em;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* タイトル画像・ページヘッダー */
.page-header {
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}
.page-header .page-title span {
    font-size: 2em;
    font-weight: bold;
}

/* メインコンテンツ */
.page-body {
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.page-body img.float-left {
    float: left;
    margin-right: 20px;
    margin-bottom: 10px;
    width: 300px;
    height: auto;
}
.page-body::after {
    content: "";
    display: table;
    clear: both;
}
dl dt {
    font-weight: bold;
    margin-top: 10px;
}
dl dd {
    margin-left: 20px;
    margin-bottom: 10px;
}

/* フッター */
.footer {
    text-align: center;
    padding: 20px;
    background-color: #eee;
    margin-top: 40px;
}

/* レスポンシブ・ハンバーガー */
@media (max-width: 768px) {
    .nav ul {
        display: none;
        flex-direction: column;
        background-color: #2d6a4f;
        width: 100%;
        padding: 10px 0;
    }
    .nav ul.open {
        display: flex;
    }
    .menu-btn {
        display: block;
    }
   .slideshow {
        height: 220px;  /* ←お好みで調整。180〜260 がベスト */
    }

}
.header-inner {
    background-color: #006600 !important; /* 緑色 */
}

.nav ul li a {
    color: #fff !important; /* 文字を白に */
}

.nav ul li.active a {
    color: #ffff00 !important; /* アクティブリンクは黄色など */
}

.menu-btn {
    color: #fff !important; /* ハンバーガーアイコンも白に */
}
