@charset "UTF-8";
/* CSS Document */

.top-img{
	margin-top: 50px;
	background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
 url("../img/inquiry-img/top-img07681.jpg");
	background-position: 40% 10%;
  background-size: cover;
  clip-path: polygon(0 0, 100% 0%, 100% 70%, 50% 100%, 0 70%);
  height: 50vh;
  opacity: 0;
  transform: translateY(-100%); /* 初期位置を画面外の上に設定 */
  transition: transform 1s ease-out, opacity 1s ease-out; /* アニメーションの設定 */
}

.top-img.show {
  opacity: 1;
  transform: translateY(0); /* 元の位置に戻る */
}

.top-img h1{
	font-size: 2rem;
	padding-top: 200px;
	color: #fff;
letter-spacing: 0.5px; /* 文字の間隔を少し広げる */
}

.top-text{
	width: 80%;
	margin: 50px auto;
	text-align: left;
	line-height: 2rem;
	
}


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

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

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

.Form {
    width: 70%;
    margin: 50px auto;
    position: relative;
    z-index: 1; /* フォームを前面に表示 */
}
@media screen and (max-width: 600px){
	.Form {
		width: 90%;
	}
}
.Form-Item {
    text-align: left;
    margin-top: 20px;
}
.Form-Item a{
	font-size: 1rem;
	text-align: center;
}

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

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

.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 {
    background-color: #FF5D60;
	color: #fff;
	padding: 7px;
	border-radius: 10px;
    font-size: 0.8rem;
	margin-left: 5px;
	
}

.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;
}