@charset "UTF-8";

/* Contact Form7 */

.wpcf7 {
	margin-top: 50px;
}

.contact7 {
	max-width: 924px;
	box-sizing: border-box;
	margin: 0 auto;
	font-size: 1.6rem;
	display: flex;
	flex-direction: column;
	margin-top: 30px;
}

.contact7 .must {
	background: #EDAD35;
}

.contact7 .optional {
	background: #999;
}

.contact7 .must,
.contact7 .optional {
	color: #FFF;
	border-radius: 3px;
	font-size: 10px;
	margin-left: 10px;
	padding: 5px 10px;
	letter-spacing: 2px;
}

.contact7 dd {
	margin-top: 10px;
}

.contact7 dd section {
	display: flex;
	justify-content: space-between;  
}
.contact7 dd section div {
	width: 49%;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="submit"],
select,
textarea,
button {
	width: 100%;
	height: 35px;
	line-height: 1.5rem;
	padding: 5px 10px;
	border: 1px solid #cccccc;
	background: #fafafa;
}

input::placeholder {
	color: #cccccc;
}

textarea {
	height: 6em;
}

.check_contact7 {
	text-align: center;
	margin-top: 40px;
	font-size: 1.5rem;
	line-height: 1.8;
}

.wpcf7-list-item {
	margin: 0 0 0 0 !important;
}

.check_contact7 a {
	border-bottom: solid 1px #ccc;
	padding-bottom: 3px;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
}


.check_contact7 .br-sp {
	display: block;
}

.contact7 .contact7-select {
    position: relative;
}

.contact7 .contact7-select select {
	padding: 5px 10px;
}

.contact7 .contact7-select::after {
    position: absolute;
    z-index: 2;
    right: 11px;
    top: 7px;
    display: block;
    text-align: center;
    pointer-events: none;
	font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    content: '\f078';
    margin-left: 0.5em;
}


.btn_contact7 {
	text-align: center;
}

button[type="submit"] {
	position: relative;
	-moz-appearance: none;
	-webkit-appearance: none;
	-webkit-box-shadow: none;
	margin: 30px auto 0;
	text-align: center;
	border-radius: 24px;
	height: 48px;
	width: 260px;
	font-size: 16px;
	background-color: #1DCB75;
	color: #ffffff;
	border: none;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
}

button[type="submit"]::after {
    position: absolute;
    z-index: 2;
    right: 20px;
    top: 14px;
    display: block;
    text-align: center;
    pointer-events: none;
	font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    /* content: '\f078'; */
	content: '\f178';
    margin-left: 0.5em;

}

.btn_contact7 input[type="submit"]:disabled,  
.btn_contact7 .wpcf7-submit:disabled {
	background-color: #cccccc;
	color: #999999;
	border: none;
}

.btn_contact7 .wpcf7-not-valid-tip {
	margin-top: 10px !important;
}

.wpcf7-spinner {
	display: block !important;
	margin: 15px auto 0 !important;
}

@media screen and (min-width:768px){
	.contact7 {
		display: flex;
		flex-direction: row;
		align-items: center;
		margin-top: 15px;
	}
	
	.contact7 dt {
		width: 250px;
	}
	
	.contact7 dd {
		margin-top: 0;
		width: calc(100% - 240px);
	}

	.check_contact7 .br-sp {
		display: none;
	}	
}



