﻿/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f5f5; /* シンプルなグレー背景 */
    color: #333;


}

/* ヘッダー */
header {
    top: 0;
    left: 0;
    width: 100%;
    background-color: #1a2b47; /* ダークブルー */
    color: white;
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header h1 {
    text-align: center;
    font-size: 2.5em;
    letter-spacing: 2px;
    margin: 30px 0;
}

header h1 a {
    color: white;
    text-decoration: none;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul li a:hover {
    border-bottom: 2px solid #ffbc00; /* アクセントカラー */
}

/* メインコンテンツ */
main {
    padding: 5% 5% 0%; /* ヘッダーが固定されているので、上部に余白を追加 */
    width: 1000px;
    margin: 0 auto;
    max-width: 100%;
}

.section-container {
    margin-bottom: 60px;
}

h2 {
    color: #1a2b47; /* ダークブルー */
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

p {
    font-size: 1.15em;
    line-height: 1.8;
    color: #666; /* 柔らかいグレー */
    max-width: 800px;
    margin: 0 auto;
}

/* お知らせセクション */
.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-list li {
    background-color: #f9f9f9; /* 軽い背景色 */
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* 日付のスタイル */
.news-list .news-date {
    display: block;
    font-size: 1.1em;
    font-weight: bold;
    color: #1a2b47; /* ダークブルー */
    margin-bottom: 10px;
}

/* 内容のスタイル */
.news-list .news-content {
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
}

/* ホバー時のスタイル変更を削除 */
.news-list li:hover {
    background-color: #f9f9f9; /* 背景色変更をしない */
    cursor: default; /* ポインターカーソルの変更を無効にする */
}

.news-list li:hover .news-date {
    color: #1a2b47; /* 日付の色変更をしない */
}

/* 団体についてセクション */
.about-content {
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.about-content h3 {
    font-size: 1.5em;
    color: #1a2b47;
    margin-bottom: 10px;
    font-weight: bold;
}

.about-content p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-content ul {
    list-style-type: none;
    padding-left: 20px;
    font-size: 1.1em;
    color: #666;
}

.about-content ul li {
    margin-bottom: 10px;
}

.about-content ul li::before {
    content: "• ";
    color: #1a2b47; /* ダークブルーの丸点 */
    font-size: 1.5em;
    margin-right: 10px;
}

.about-content h3 + p,
.about-content h3 + ul {
    margin-top: 10px;
}

/* 入会案内セクション */
.membership-types {
    display: flex;
    margin-top: 30px;
    margin-bottom: 30px;
}

.membership-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 30%;
    text-align: center;
    margin-right: 30px;

}

.membership-item h4 {
    font-size: 1.5em;
    color: #1a2b47; /* ダークブルー */
    margin-bottom: 10px;
}

.membership-item p {
    font-size: 1.2em;
    color: #666;
}

.membership-benefits {
    list-style-type: none;
    padding-left: 20px;
    font-size: 1.1em;
    color: #666;
}

.membership-benefits li {
    margin-bottom: 10px;
}

.membership-benefits li::before {
    content: "• ";
    color: #1a2b47; /* ダークブルーの丸点 */
    font-size: 1.5em;
    margin-right: 10px;
}

.membership-steps {
    list-style-type: decimal;
    padding-left: 20px;
    font-size: 1.1em;
    color: #666;
}

.membership-steps li {
    margin-bottom: 15px;
}

.membership-steps li::marker {
    color: #1a2b47; /* ダークブルー */
}

.simple-button {
    background-color: #007BFF;
    color: white;
    margin: 15px;
    padding: 12px 32px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-decoration:none;
}

.simple-button a {
    color:white; 
    text-decoration:none;
}


.simple-button:hover {
    background-color: #0056b3;
}

.simple-button:active {
    background-color: #004080;
}

/* フッター */
footer {
    
    background-color: #1a2b47;
    color: white;
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9em;
    letter-spacing: 1px;
    
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    main {
    padding: 5% 5% 0%; /* ヘッダーが固定されているので、上部に余白を追加 */
    max-width: 100%;
}
    header h1 {
        font-size: 1.8em;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin-bottom: 15px;
    }

    .section-container {
        padding: 10px;
    }

    h2 {
        font-size: 1.6em;
    }

    p {
        font-size: 1em;
    }
        .about-content h3 {
        font-size: 1.3em;
    }

    .about-content p {
        font-size: 1em;
    }

    .about-content ul li {
        font-size: 1em;
    }

    .membership-types {
        flex-direction: column;
    }

    .membership-item {
        width: 100%;
        margin-bottom: 20px;
    }

    .membership-item h4 {
        font-size: 1.4em;
    }

    .membership-item p {
        font-size: 1.1em;
    }

    .membership-benefits,
    .membership-steps {
        font-size: 1em;
    }

}
