@charset "UTF-8";
/* CSS Document */
h1{
	font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN", "Arial Rounded MT Bold", "游ゴシック", sans-serif;
	font-size: 2rem;
	color: #ff8c00;
	font-weight: 600;
}

.top-img{
	background-image: url("../img/contact-img/DSC06653.jpg");
	background-size: cover;
	min-height: 60vh;
	background-position: bottom center;
}
.top-message {
    width: 80%;
    margin: 100px auto 100px;
}



.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: #ff8c00;
    font-size: 1rem;
}

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

.Form-Btn:hover {
    background: #87ceeb;
}


.contact-top {
	width: 100%;
	margin-bottom: 0;
	display: block; /* ←これを追加 */
}
