@charset "utf-8";

/* --- 相談会予約ページ用スタイル --- */

.consultation-container {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}

.consultation-div {
    text-align: center;
    margin-bottom: 1em auto 3em auto;
    display: block;
}
.consultation-div h1 {
    color: #0056b3;
    margin-bottom: 10px;
    text-align: center;
    line-height: 1.2em;
}
.consultation-div p {
    text-align: center;
font-size: 1.2em;
margin-bottom: 3em;


}

.description {
    background: #e6f2ff;
    padding: 1em 1em 2.5em 1em;
    border-radius: 8px;
    margin-bottom: 3em;
}
.description h3 {
   font-size: 1.3em; 

}
.description p {
font-size: 1.2em;
}

/* カレンダーグリッド */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.day-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    background: #fff;
    transition: transform 0.2s;
}
.day-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* 開催日（第一土曜日）のデザイン */
.day-card.event-day {
    border: 2px solid #ff5e33; /* アクセントカラーで枠線 */
    background-color: #fffaf9; /* 薄い赤背景 */
    transform: scale(1.02);    /* 少し大きく強調 */
}

/* 開催日以外のデザイン */
.day-card.no-event {
    background-color: #f9f9f9;
    opacity: 0.6; /* 薄く表示 */
}

.date-label {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    display: block;
}
.date-label.weekend {
    color: #0056b3; /* 土曜日なので青色に */
}

.time-slot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
}
.status-btn {
    padding: 4px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    min-width: 40px;
}
.status-btn.available {
    background-color: #fff;
    border: 1px solid #0056b3;
    color: #0056b3;
}
.status-btn.available:hover {
    background-color: #0056b3;
    color: #fff;
}
.status-btn.booked {
    background-color: #ccc;
    color: #fff;
    cursor: not-allowed;
}

/* モーダル */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}
.modal-overlay.active { display: flex; }
.modal-content { background: #fff; padding: 30px; border-radius: 8px; width: 90%; max-width: 500px; position: relative; }
.close-modal { position: absolute; top: 15px; right: 15px; background: none; border: none; font-size: 1.5rem; cursor: pointer; }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: bold; }
.form-group input, .form-group textarea { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 4px; box-sizing: border-box; }
.submit-btn { width: 100%; padding: 12px; background-color: #0056b3; color: #fff; border: none; border-radius: 4px; font-size: 1rem; cursor: pointer; font-weight: bold; }

/* ラジオボタンのレイアウト */
.radio-group { display: flex; gap: 20px; margin-top: 5px; }
.radio-group label { font-weight: normal; cursor: pointer; display: flex; align-items: center; }
.radio-group input[type="radio"] { width: auto; margin-right: 5px; }



/* ここからサイトの見た目 */

.consultation-banner{
    width: 100%;
    margin: 0 auto;
}
.consultation-banner img{
width: 100%;

}

.sankarei{
    width: 100%;
    margin: 0 auto;

}

.sankarei div {
font-size: 1.6em;
font-weight: bold;
color: #fff;
background-color: #ee7a01;
padding: 0.5em 1em;
margin-bottom: 1em;
text-align: center;
}
.sankarei ul {
width: 90%;
margin: 0 auto 3em auto;

}
.sankarei ul li{
font-size: 1.2em;
 list-style: disc;
 margin: 0.5em 0;
}











