/* public/css/pages/join.css */

/* 入部情報セクション */
.join-info-section {
    max-width: 800px;
    margin: 0 auto 40px auto; /* 中央寄せと下のマージン */
    padding: 0 15px;
}

.join-info-section h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.8em;
    color: #0c0675; /* 紺色に設定 */
}

.join-info-section > p {
    text-align: center;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* 各情報項目 */
.info-item {
    background-color: #f0f0f0; /* 背景色を少し濃いグレーに */
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.info-item h3 {
    font-size: 1.4em;
    color: #0c0675; /* 紺色に設定 */
    margin-bottom: 10px;
    border-bottom: 2px solid #0c0675; /* 紺色に設定 */
    padding-bottom: 5px;
}

.info-item p,
.info-item ul {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #555;
}

.info-item ul {
    padding-left: 20px;
    list-style: disc;
}

.info-item li {
    margin-bottom: 8px;
}

/* スケジュールテーブルのスタイル */
.schedule-info {
    background-color: #fff;
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
}

.schedule-container h4 {
    font-size: 1.2em;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    background-color: #fff;
}

.schedule-table th,
.schedule-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.schedule-table th {
    background-color: #0c0675;
    color: white;
    font-weight: bold;
}

.schedule-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* 注意事項リストのスタイル */
.notice-container ul {
    list-style-type: none;
    padding-left: 0;
}

.notice-container li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.notice-container li:before {
    content: "※";
    position: absolute;
    left: 0;
    color: #0c0675;
    font-weight: bold;
}

/* ボタン(.btn-primary)のスタイルは style.css から継承されるため、
   join.css での特別な指定は不要です。
   もし join.html 内のボタンに個別の調整が必要な場合は、以下に追加します。
.info-item .btn-primary {
    display: inline-block; 
    margin-top: 15px; 
    padding: 10px 20px; 
    font-size: 1em; 
}
*/
