@charset "UTF-8";
footer .footer_contact{
	
}
/*お問い合わせ*/

.contact_outer .contact_form_heading{
	display: flex;
	justify-content: center;
	padding-bottom: 24px;
	margin-bottom: 30px;
}

.contact_outer .lead{
	margin-bottom: 48px;
}
.contact_form table tr th{
	width: 280px;
}
.contact_form table tr th div{
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}
.contact_form table tr th .required{
	font-size: 14px;
	color: #fff;
	background: #2DA6E0;
	padding: 2px 8px;
}
.contact_form table tr td .not-valid-tip{
	display: none;
	font-size: 14px;
	color: #DD0000;
	margin-top: 0.3em;
}
.contact_form table tr td .contact_form__row{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	margin-bottom: 10px;
}
.contact_form table tr td .contact_form__row-title{
	min-width: 4.5em;
}

.contact_form table tr td input{
	padding: 15px 20px;
	font-size: 16px;
	width: 100%;
	max-width: 630px;
	box-sizing: border-box;
	background: #F9F9F9;
	border: solid 1px #B3B3B3;
}
.contact_form table tr td select{
	padding: 15px 20px;
	font-size: 16px;
	width: 275px;
	box-sizing: border-box;
	background: #F9F9F9;
	border: solid 1px #B3B3B3;
	-webkit-appearance: none;
	appearance: none;
}
.contact_form table tr td .contact_form__select,
.contact_form table tr td .contact_form__select > span{
	position: relative;
}
.contact_form table tr td .contact_form__select::-ms-expand{
	display: none;
}
.contact_form table tr td .contact_form__select::after{
	position: absolute;
    content: "";
    right: 8px;
    top: 50%;
    translate: 0 -50%;
    width: 12px;
    height: 5px;
    background-color: #000;
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
.contact_form table tr td textarea{
	padding: 15px 20px;
	font-size: 16px;
	width: 100%;
	box-sizing: border-box;
	background: #F9F9F9;
	border: solid 1px #B3B3B3;
	resize: none;
}

.contact_form table tr td .address1 input{
	width: 240px;
	margin-left: 16px;
}
.contact_form table tr td .address_btn input{
	width: 80px;
	padding: 14px 10px;
	outline: none;
	border: none;
	background: #3E63A2;
	color: #fff;
	font-weight: 600;
	cursor: pointer;
	font-size: 90%;
}
.contact_form table tr td .address3{
    width: 75%;
    max-width: 450px;
}

.contact_policy{
	background: #F2F8FC;
	padding: 35px 50px;
	margin-top: 48px;
}
.contact_policy h4{
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 16px;
}
.contact_policy p{
	margin-bottom: 16px;
	line-height: 1.75;
}
.contact_policy a{
	font-weight: 600;
	color: #3E63A2;
	text-decoration: underline;
	position: relative;
	display: flex;
	gap: 10px;
	align-items: center;
}
.contact_policy a:hover{
	text-decoration: none;
}
.contact_policy a::after{
	content: "";
	width: 18px;
	height: 18px;
	background: url(/img/common/icon_open.svg) center no-repeat;
	background-size: 100%;
}
.contact_outer .btnArea{
	margin-top: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.contact_outer .btnArea p{
	position: relative;
}
.contact_outer .btnArea p .btn{
	width: 380px;
}
.contact_outer .btnArea p::after{
	content: "";
    position: absolute;
    right: 27px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: url(/img/common/arrow.svg) center no-repeat;
    background-size: 100%;
}
.contact_outer .btnArea p:hover::after{
	background-image: url(/img/common/arrow_blue.svg);
}


/*confirm*/
.contact-confirm .contact_form table tr td .address_btn input{
	display: none;
}
.contact-confirm .contact_form table tr td .contact_form__select::after{
	display: none;
}
.contact-confirm .contact_policy{
	display: none;
}
.contact-confirm .contact_outer .btnArea{
	gap: 30px;
}
.contact-confirm .contact_outer .btn_back{

}
.contact-confirm .contact_outer .btn_back .btn{
	cursor: pointer;
	background: #fff;
	color: #3E63A2;
}
.contact-confirm .contact_outer .btn_back .btn:hover{
	opacity: 0.7;
}
.contact-confirm .contact_outer .btn_back::after{
	background-image: url(/img/common/arrow_blue.svg);
	transform: rotate(180deg) translateY(50%);
	right: auto;
	left: 27px;
}
.contact-confirm .contact_outer .btn_back .btn::after {
	display: none;
}
.contact-confirm input[name="btn_back"]{
	background: #e3e3e3;
	color: #000;
	border: none;
}

.contact-confirm input[name="btn_back"]:hover{
	opacity: 0.6;
}
@media only screen and ( max-width: 1199px ){

}
@media only screen and ( max-width: 768px ){


	.contact_form table tr th{
		width: auto;
	}
	.contact_form table tr td input,
	.contact_form table tr td select,
	.contact_form table tr td textarea{
		font-size: 14px;
	}
	.contact_form table tr td .contact_form__row{
		gap: 10px 16px;
		margin-bottom: 22px;
	}
	.contact_form table tr td .contact_form__row:last-child{
		margin-bottom: 0;
	}
	.contact_form table tr td .contact_form__row-title{
		width: 100%;
		font-weight: 600;
	}
	.contact_form table tr td .address1 input{
		width: 200px;
	}
	.contact_form table tr td .address3{
		width: 100%;
	}
	.contact_form table tr td .address_btn input{
		font-size: 14px;
	}
	.contact_form table tr td select{
		width: 167px;
	}
	.contact_form table tr td textarea{
		height: 13em;
	}
	.contact_policy{
		padding: 28px 28px 48px;
	}
	.contact-confirm .contact_outer .btnArea{
		flex-flow: column;
		gap: 16px;
	}
	.contact_outer .btnArea p{
		display: flex;
		width: 100%;
	}
	.contact_outer .btnArea p .btn{
		width: 100%;
	}
}


.maintenance{
	text-align: center;
}
.maintenance .contact_number{
	background: #F2F8FC;
	display: flex;
	flex-direction: column;
	width: fit-content;
	margin: 0 auto;
	padding: 30px;
	border-radius: 4px;
}
.maintenance .contact_number-text{
	font-size: 39px;
	font-family: "Roboto", sans-serif;
	font-weight: bold;
	color: #3E63A2;
	padding-left: 35px;
	position: relative;
	width: fit-content;
	display: block;
	margin: 0 auto;
}
.maintenance .contact_number-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  transition: 0.3s;
  background: url(/img/common/icon_tel.svg) left center no-repeat;
  background-size: 25px;
}
.maintenance .contact_number-time{
	font-size: 90%;
}
.maintenance .cta__number-time--span{
	padding-left: 1em;
}

@media only screen and ( max-width: 768px ){
	.maintenance .contact_number-text {
		font-size: 30px;
	}
	.maintenance .cta__number-time--span{
		padding: 0;
		display: block;
	}
}