/* ヘッダーはじまり */
.header-banner {
    width: 100%;
    height: 150px; /* 高さを固定 */
    background-image: url('/images/header-banner.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; /* 幅が100%になるように画像をカバー */
}

/* サイト幅が1000px以上の場合のスタイル */
@media (min-width: 1000px) {
    .header-banner {
        background-size: 100% auto; /* 幅が100%で高さが自動 */
    }
}

/* ヘッダーメニューのスタイル */
.header-menu {
    background-color: rgba(255, 255, 255, 0); /* 完全に透明 */
    padding: 10px 0;
    text-align: center;
}

.header-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-menu li {
    display: inline;
    margin: 0 15px;
}

.header-menu a {
    color: white;
    text-decoration: none;
}

.header-menu a:hover {
    text-decoration: underline;
}
/* ヘッダーメニューのスタイルおわり */

.header-space {
    height: 150px; /* ヘッダーの高さと同じに設定 */
    width: 100%;
}

/* フッターはじまり */
/* フッターメニューのスタイル */
.footer-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
    padding-right: 20px;
}

.footer-section h3 {
    font-size: 1.1em;
    margin-bottom: 15px;
    border-bottom: 1px solid #555;
    padding-bottom: 5px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ddd;
    text-decoration: none;
    font-size: 0.9em;
}

.footer-section a:hover {
    text-decoration: underline;
    color: white;
}

.copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
    border-top: 1px solid #555;
    padding-top: 20px;
}

/* フッターのスタイル */
footer {
    background-color: #333;
    color: white;
    padding: 40px 0;
    margin-top: auto; /* これを追加 */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* レスポンシブデザイン */
@media (max-width: 767px) {
    .footer-menu {
        flex-direction: column;
    }

    .footer-section {
        width: 100%;
        padding-right: 0;
    }
}/* フッターおわり */
