body {
    color: #333333;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: 500;
    font-size: 1.6em;
    line-height: 2.4rem;
    text-align: center;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
/*TOPイメージ*/
.top-img {
    margin-top: 50px;
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wave-overlay {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 50vh;
}
/*TOPイメージここまで*/


.top-message {
    width: 80%;
    margin: 0 auto;
}

.top-message h1 {
    font-size: 2rem;
}

.top-message p {
    font-size: 1rem;
}

.Form {
    width: 70%;
    margin: 50px auto;
    position: relative;
    z-index: 1; /* フォームを前面に表示 */
}

.Form-Item {
    text-align: left;
    margin-top: 20px;
}

.Form-Item-Label {
    font-size: 1.2rem;
}

.Form-Item label {
    display: inline-flex;
    align-items: center;
    margin-right: 15px;
    cursor: pointer;
    padding: 5px 10px; /* クリック範囲を広げる */
}

.Form-Item input[type="radio"] {
    margin-right: 5px;
    cursor: pointer;
}

.Form-Item-Input, .Form-Item-Textarea {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 10px;
}

.Form-Item-Textarea {
    min-height: 150px;
}

.Form-Item span {
    color: #FF5D60;
    font-size: 1rem;
}

.Form-Btn {
    background: #F19EC2;
    color: #fff;
    font-weight: bold;
    padding: 15px 20px; /* ボタンのクリック範囲を広げる */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
}

.Form-Btn:hover {
    background: #e088aa;
}

.footer {
    text-align: center;
    margin: 50px 0;
    font-size: 1rem;
}