@charset "UTF-8";

/*
 * メンバー募集 (Member) 用スタイル
 * Aboutページのスタイルをベースに作成
 */

.member-content {
    background-color: #fff;
    padding: 30px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    line-height: 1.8;
    color: #333;
    max-width: 900px;
}

.member-content h2 {
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: #2c3e50;
    font-weight: bold;
}

.member-content h2:first-child {
    margin-top: 0;
}

.member-content h3 {
    font-size: 1.15rem;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #444;
    border-left: 4px solid #ddd;
    padding-left: 10px;
}

.member-content p {
    margin-bottom: 15px;
}

.member-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    padding-left: 10px;
}

.member-content li {
    margin-bottom: 8px;
}

/* 連絡先などを強調するボックス */
.member-info-box {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 25px;
    border: 1px solid #eee;
}

/* ボタンエリア */
.member-action-area {
    margin-top: 40px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.member-btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.2s;
}

.member-btn-primary {
    background-color: #0066cc;
    color: #fff;
}

.member-btn-secondary {
    background-color: #eee;
    color: #333;
}

.member-btn:hover {
    opacity: 0.8;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .member-content {
        padding: 15px;
        margin: 10px 0;
        border-radius: 0;
        box-shadow: none;
    }
    .member-content h2 {
        font-size: 1.2rem;
        margin-top: 30px;
    }
}