@charset "UTF-8";

/* -----------------------------------
contact.html
----------------------------------- */


select,
input[type=text],
input[type=email],
input[type=tel],
input[type=number] {
	padding: 8px 10px;
    height: 50px;
    line-height: 1em;
    font-size: 16px;
	border: 1px solid #7e318e;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
	outline: none;
	/*デフォルト▽表示*/
	-webkit-appearance: auto;
	-moz-appearance: auto;
	appearance: auto;
}

select.form_select {
	width: auto; 
    background: url(../images/select_arrow.png) no-repeat #fff;
    background-position: 95% center;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
select.form_select.w100p { width: 100%; }

input.txt_w20p { width: 20%; }
input.txt_w25p { width: 25%; }
input.txt_w50p { width: 50%; }
input.txt_w100p { width: 100%; }

textarea.textarea_w100p {
    padding: 8px 10px;
    width: 100%;
    height: 150px;
    line-height: 1.8em;
    font-size: 16px;
    border: 1px solid #7e318e;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

@media screen and (max-width: 767px) {
	select,
	input[type=text],
	input[type=email],
	input[type=tel],
	input[type=number] {
		padding: 5px 10px;
		height: 38px;
	}
	
	textarea.textarea_w100p {
		padding: 5px 10px;
	}
}


.check_list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
	flex-wrap: wrap;
    gap: 10px 2em;
}
.check_list label {
	display: flex;
	align-items: center;
	column-gap: 4px;
	width: fit-content;
	line-height: 1;
	cursor: pointer;
}
input[type="checkbox"] {
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	
	position: relative;
	width: 20px;
	height: 20px;
	background: #fff;
	border: 1px solid #7e318e;
	border-radius: 3px;
	cursor: pointer;
}
input[type="checkbox"]:checked::after {
	content: "";
	position: absolute;
	top: 5px;
	left: 3px;
	width: 12px;
	height: 6px;
	border-bottom: 2px solid #7e318e;
	border-left: 2px solid #7e318e;
	transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
	
	
}



.heading-title.i_contact::after {
	content: "";
	width: 135px;
	height: 135px;
	background: url("../images/rower_title_contact.png") no-repeat;
	background-size: contain;
	transform: translate(-50%,-50%);
	position: absolute;
	top: 50%;
	right: 5em;
}
@media screen and (max-width: 767px) {
	.heading-title.i_contact::after {
		width: 17vw;
		height: 17vw;
		right: -1em;
	}
}


.contact_form { padding: 5em 0; }

.contact_form .form {
	display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px 3%;
}
.form .form_item {}
.form .form_item.w_col1 { width: 100%; }
.form .form_item.w_col2 { width: 47.5%; }

.form_item.address_outer {
    display: flex;
    justify-content: space-between;
}
.form_item.address_outer > div {
    width: 48%;
}
@media screen and (max-width: 767px) {
	.contact_form { padding: 3.5em 0; }
	.contact_form .form {
		flex-direction: column;
		gap: 10px 0;
	}
	.form .form_item.w_col2.sp_w_col1 {
		width: 100%;
	}
	
}


.ymd_outer {}
.ymd_outer select.form_select {
    width: calc((100% - (26px * 3)) / 3);
}
.ymd_outer select.form_select + span {
    padding: 0 5px;
}
@media screen and (max-width: 767px) {
	
}


.form2 {
    padding: 1.5em 2em;
}
.form2 .form_item {
    margin-bottom: 30px;
}
.form2 .form_item_title { color: #7e318e; }

.form2 select.form_select {
    background-position: 98% center;
}

@media screen and (max-width: 767px) {
	.form2 {
		padding: 0.75em 1.0em;
	}
	.form2 .form_item {
		margin-bottom: 20px;
	}
	
	.form2 label { font-size: 14px; }
}



.form_item_title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hissu {
    font-size: 16px;
    line-height: 1.2em;
    font-weight: bold;
    color: #fff;
    background: #ee87b4;
    padding: 0.25em 0.5em;
    border-radius: 6px;
}

.form_item_cont {}

.error {
	text-align: left;
    font-size: 16px;
    color: #ff3232;
    margin-top: 5px;
}
@media screen and (max-width: 767px) {
	.form_item_title {
		font-size: 15px;
	}
	.hissu {
		font-size: 12px;
		line-height: 1.0em;
		font-weight: 500;
		padding: 0.3em 0.5em;
		border-radius: 5px;
	}
	
	.error { 
		font-size: 14px;
		line-height: 1.4em;
	}
	
}



.form_kiyaku {
    text-align: left;
    background: #fff;
	padding: 1em 1em;
	border: 1px solid #ddd;
    height: 200px;
    overflow: auto;
}
.form_kiyaku .item {
    margin-bottom: 10px;
}
.form_kiyaku .item .title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.form_kiyaku .item p,
.form_kiyaku .item li {
    font-size: 16px;
    line-height: 1.8em;
}
.form_kiyaku .item ul {}
.form_kiyaku .item li {
    padding-left: 1em;
    text-indent:-1em;
}
@media screen and (max-width: 767px) {
	
	
}


.submit_check {
	width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.submit_check label {
	margin-left: 0.5em;
    display: flex;
    align-items: center;
}
.submit_check label input[type="checkbox"] {
	margin-right: 0.5em;
}

.contact_form .content-btn {
    padding: 1.0em 8em;
	background: url("../images/btn_bd.png") no-repeat #7e318e;
	background-position: right center;
	border: 1px solid #7e318e;
}
.contact_form .content-btn::after { content: none; }

.contact_form .content-btn.non_active {
    cursor: auto;
	opacity: 1;
}
@media screen and (max-width: 767px) {
	.contact_form .content-btn {
		padding: 1.0em 1.0em;
	}
	
}




