@charset "utf-8";
header{
	background: #ffffff;
	border-bottom: 1px solid #D8DDDF;
	height: 70px;
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
}

header img{
	max-width: 190px;
}

main{
	padding-top: 70px;
}

.l-container__row{
	margin: 60px 0 100px;
}

.p-page_content{
	padding: 0 40px;
}

.p-page_content__inner{
	max-width: 980px;
	width: 100%;
	margin: 0 auto;
}

.u-text--head {
	color: #494949;
	font-size: 24px;
	font-weight: 400;
	text-align: center;
}

.contact-main .img-blo p{
	color: #e94827;
	font-size: 10px;
	font-weight: 700;
	line-height: 2;
	margin-top: 30px;
}

.contact-main .img-blo{
	position: sticky;
	top: 80px;
	max-width: 350px;
}

.contact-main .contact-blo{
	max-width: 525px;
	width: 100%;
}

.contact-main .contact-blo .item-detail p{
	font-size: 14px;
	font-weight: 700;
	line-height: 2;
	margin-right: 10px;
}

.contact-main .contact-blo .item-detail p input[type="text"]{
	padding: 0;
	border: none;
	border-radius: 0;
	background: none;
	pointer-events: none;
	margin-left: 5px;
}

.contact-main .contact-blo .fax-btn-area{
	margin: 20px 0;
}

.contact-main .contact-blo .fax-btn-area a{
	background: #336374;
	color: #ffffff;
	height: 40px;
	width: 180px;
	font-size: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	margin-right: 10px;
}

.contact-main .contact-blo .fax-btn-area span{
	font-size: 10px;
}

.form-main{
	margin-top: 5px;
}

.form-main .row{
	border-top: 1px solid #c3c4c4;
}

.form-main .row:last-child{
	border-bottom: 1px solid #c3c4c4;
}

.form-main .row .th{
	font-weight: 700;
	vertical-align: top;
	width: 120px;
}

.form-main .row .th.hissu p::after{
	content: "必須";
	background: #e94827;
	border-collapse: initial;
	color: #ffffff;
	font-size: 10px;
	font-weight: 700;
	display: table;
	margin-top: 5px;
	padding: 1px 6px;
}

.form-main .row > div{
	padding: 20px 0;
}

.form-main .row .td .flex > *:not(:last-child){
	margin-right: 5px;
}

.form-main input[type="text"],
.form-main select{
    border: 1px solid #BDC1C2;
    border-radius: 5px;
    background: #ffffff;
    height: 40px;
    width: 300px;
}

.form-main textarea{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    resize: none;
	padding: 10px;
    border: 1px solid #BDC1C2;
    background: #ffffff;
    height: 150px;
    width: 100%;
}

.form-main input[type="text"]{
	padding: 0 10px;
}

.submit-btn input[type="submit"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 0;
	border: none;
	background: #336374;
	color: #ffffff;
	cursor: pointer;
	height: 40px;
	width: 180px;
	font-size: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
}

.num-list{
	counter-reset: listnum;
}

.num-list li::before{
	counter-increment: listnum;
	content: counter(listnum);
	display: table;
	margin: 0 auto 5px;
}

.form-main .row .td .flex.num-list li{
	width: 50px;
}

.form-main .row .td .flex.num-list.layout-list li{
	width: 180px;
}

.form-main .row .td .flex.num-list li span{
	display: block;
	font-size: 10px;
	text-align: center;
}

.form-main .row .td .flex.num-list li:not(:last-child){
	margin-right: 9px;
}

.form-main .short{
	max-width: 60px;
}

footer{
	background: #f5f5f5;
	border-top: 1px solid #D8DDDF;
	padding: 80px 100px 40px;
}

footer .logo{
	margin: 0 auto;
	max-width: 190px;
}

footer .copy{
	margin-top: 60px;
	text-align: center;
}

.thanks-page p{
	line-height: 2;
}

.thanks-page .link-a{
	color: #336374;
	display: table;
	margin: 30px auto;
	text-decoration: underline;
}

.thanks-page .link-btn{
	background: #336374;
	color: #ffffff;
	height: 40px;
    width: 250px;
    margin: 30px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.two-input{
	display: none;
	margin-top: 10px;
}

.two-select{
	display: none;
}

/*------------------------------------------------------------
	レスポンシブ
------------------------------------------------------------*/
@media all and (min-width: 0) and (max-width: 767px){
	.p-page_content {
		padding: 0 20px;
	}
	
	.contact-main .img-blo {
		position: static;
		margin: 0 auto 30px;
	}
	
	.form-main .row > div{
		display: block;
		padding: 10px 0;
	}
	
	.form-main .row .th.hissu p{
		display: flex;
		align-items: center;
	}
	
	.form-main .row .th.hissu p::after{
		margin-top: 0;
		margin-left: 10px;
	}
	
	.form-main .row .th{
		padding-bottom: 0;
	}
	
	.form-main input[type="text"], .form-main select {
		width: 250px;
	}
	
	.form-main .short {
		max-width: 50px;
	}
	
	.submit-btn input[type="submit"]{
		margin: 0 auto;
		width: 90%;
	}
	
}