@charset "UTF-8";

/* ------------------------------------------------
                    contact
--------------------------------------------------- */

/*---------- フォーム ----------*/
.sec-contact {
	width: 100%;
	padding: 80px 0 120px;
}
.contact-sec-ttl {
	margin-bottom: 50px;
	text-align: center;
	font-size: 5.4rem;
	font-weight: 400;
	line-height: 1;
}
.contact-sec-txt {
	width: 100%;
	margin: 0 auto 80px;
	text-align: center;
}

/* form wrap */
.txt-red {
	color: #FF0000;
}


/* form */
.contact-form-box-wrap {
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	justify-content: space-between;
}
.contact-form-box-ttl {
	width: 260px;
	padding: 20px;
	border-top: 1px solid var(--color-orange);
	font-size: 1.6rem;
    font-weight: 600;
}
.contact-form-box-cont {
	width: calc(100% - 260px);
	padding: 20px;
	border-top: 1px solid #d9d9d9;
	font-size: 1.6rem;
}
.contact-form-box-ttl.is-last {
	border-bottom: 1px solid var(--color-orange);
}
.contact-form-box-cont.is-last {
	border-bottom: 1px solid #d9d9d9;
}

.btn-area {
	width: 100%;
}
.btn-area form {
	width: 50%;
}

.btn-submit {
	width: 80%;
	max-width: 320px;
	height: 54px;
	margin: 40px auto 0;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 30px;
	text-align: center;
	font-size: 1.6rem;
    font-weight: 700;
	line-height: 1;
	position: relative;
    color: #fff;
    background: var(--color-orange);
	transition: 0.3s ease-in-out;
}
.btn-submit::after {
	content: '';
	width: 20px;
	height: 1px;
	background: #fff;
	position: absolute;
	top: calc(50% - 0.5px);
	right: -10px;
}

.btn-back, 
a.btn-back {
	width: 80%;
	max-width: 320px;
	height: 54px;
	margin: 40px auto 0;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 30px;
	text-align: center;
	font-size: 1.6rem;
    font-weight: 700;
	line-height: 1;
	position: relative;
    color: #fff;
    background: var(--color-black);
	transition: 0.3s ease-in-out;
}
.btn-back::after {
	content: '';
	width: 20px;
	height: 1px;
	background: #fff;
	position: absolute;
	top: calc(50% - 0.5px);
	right: -10px;
}

@media (max-width: 768px) {
	.sec-contact {
		width: 100%;
		padding: 12vw 0 20vw;
	}
	.contact-sec-ttl {
		margin-bottom: 8vw;
		font-size: 8vw;
	}
	.contact-sec-txt {
		width: 100%;
		margin: 0 auto 12vw;
	}


	/* form */
	.contact-form-box-wrap {
		width: 100%;
		max-width: initial;
		margin: 0 auto;
		justify-content: space-between;
	}
	.contact-form-box-ttl {
		width: 100%;
		padding: 3vw 0 0;
		border-top: 1px solid var(--color-orange);
		font-size: 3.6vw;
	}
	.contact-form-box-cont {
		width: 100%;
		padding: 3vw 0 4vw;
		border-top: none;
		font-size: 3.6vw;
	}
	.contact-form-box-ttl.is-last {
		border-bottom: none;
	}
	.contact-form-box-cont.is-last {
		border-bottom: 1px solid var(--color-orange);
	}

	.btn-area {
		width: 100%;
	}
	.btn-area form {
		width: 100%;
	}

	.btn-submit {
		width: 80%;
		max-width: initial;
		height: 12vw;
		margin: 8vw auto 0;
		padding: 2vw;
		border-radius: 6vw;
		font-size: 3.6vw;
	}
	.btn-submit::after {
		content: '';
		width: 8vw;
		height: 1px;
		top: calc(50% - 0.5px);
		right: -4vw;
	}

	.btn-back, 
	a.btn-back {
		width: 80%;
		max-width: initial;
		height: 12vw;
		margin: 8vw auto 0;
		padding: 2vw;
		border-radius: 6vw;
		font-size: 3.6vw;
	}
	.btn-back::after {
		content: '';
		width: 8vw;
		height: 1px;
		top: calc(50% - 0.5px);
		right: -4vw;
	}

}



/*--- form reset ---*/
input[type="text"],input[type="number"],input[type="email"],textarea,select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}
input[type="radio"], 
input[type="checkbox"] {
	opacity: 0;
	position: absolute;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}

/*--- form input共通 ---*/
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select{
    box-sizing: border-box;
    width: 100%;
    padding: 10px;
    background: #fff;
    border: 1px solid #d9d9d9;
	font-size: 1.6rem;
}
select{
    color: var(--color-black);
}
input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
input[type="number"]::placeholder,
textarea::placeholder{
    color: rgba(0, 0, 0, 0.2);
}
textarea{
    height: 210px;
	border: 1px solid #d9d9d9;
}


@media (max-width: 768px) {
	input[type="text"],
	input[type="email"],
	input[type="tel"],
	input[type="number"],
	textarea,
	select{
		font-size: 3.6vw;
		padding: 2.66vw;
	}
	textarea{
		height: 40vw;
	}
	

}

