@charset "EUC-JP";



/* ------------------------------
	.sec_ttl
------------------------------ */
.sec_ttl{
	text-align: center;
	font-size: 4.0rem;
	font-weight: bold;
	line-height: 1.6;
}

.head_ttl{
	margin-top: 45px;
}


@media screen and (max-width: 768px){
	.sec_ttl{
		font-size: 2.0rem;
	}

	.head_ttl{
		margin-top: 20px;
		margin-bottom: 5px;
	}
}



/* ------------------------------
	.member_form
------------------------------ */
.member_form{
	padding: 70px 0 330px;
}

.member_form .wrap{
	padding: 80px;
	background: #fff;
	border: 1px solid #a0915d;
	border-radius: 15px;
}

.member_form .ttl{
	font-size: 3.5rem;
	font-weight: bold;
	text-align: center;
	line-height: 1;
}

.member_form .lead{
	margin: 25px 0 15px;
	text-align: center;
	line-height: 1.8;
}

.member_form .lead a{
	color: #a0915d;
	text-decoration: underline;
}
.member_form .lead a:hover{
	text-decoration: none;
}

.member_form .line_txt{
	background: linear-gradient(transparent 60%, rgba(220, 128, 115, 0.3) 0);
}

.contact_flow{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 45px 0 40px;
}

.contact_flow li{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 33%;
	height: 44px;
	padding-left: 1%;
	color: #fff;
	background-color: rgba(160, 145, 93, 0.5);
	font-size: 1.7rem;
	font-weight: bold;
}
.contact_flow li:first-child{
	border-radius: 5px 0 0 5px;
}
.contact_flow li:last-child{
	border-radius: 0 5px 5px 0;
}
.contact_flow li.current{
	background-color: #a0915d;
}

.contact_flow li::after{
	position: absolute;
	z-index: 2;
	content: "";
	display: block;
	right: -12px;
	top: 0;
	border-top: 22px solid transparent;
	border-bottom: 22px solid transparent;
	border-left: 12px solid rgba(160, 145, 93, 0.5);
}
.contact_flow li.current::after{
	border-left: 12px solid #a0915d;
}
.contact_flow li:last-child::after{
	display: none;
}

.contact_flow li::before{
	position: absolute;
	z-index: 1;
	content: "";
	display: block;
	left: 0;
	top: 0;
	border-top: 22px solid transparent;
	border-bottom: 22px solid transparent;
	border-left: 12px solid #fff;
}
.contact_flow li:first-child::before{
	display: none;
}


.member_form .form_wrap{
	margin: 0 auto;
}

.member_form dl{
	display: flex;
	padding: 7px 0;
	border-top: 1px dotted #d9d5c2;
}
.member_form dl:last-child{
	border-bottom: 1px dotted #d9d5c2;
}

.member_form dt{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 155px;
	font-weight: bold;
	flex-shrink: 0;
	margin-right: 15px;
	background-color: #e9e6de;
	border-radius: 3px;
	white-space: nowrap;
	text-align: center;
	line-height: 1.6;
}

.member_form dt .req,
.member_form dt .any{
	display: none;
}

.member_form dd{
	width: 100%;
	padding: 8px 0;
	font-size: 1.5rem;
}

.member_form dd > div + div{
	margin-top: 10px;
}

.member_form dd .req,
.member_form dd .any{
	display: inline-block;
	flex-shrink: 0;
	padding: 6px 8px 5px;
	margin-left: 7px;
	background-color: #dc8073;
	border-radius: 3px;
	color: #fff;
	font-size: 1.3rem;
}
.member_form dd .any{
	background-color: #717071;
}
.member_form dd .flex .req,
.member_form dd .flex .any{
	margin-left: 10px;
}
.member_form dd .btm{
	margin-top: 20px;
}
.member_form dd .l10{
	margin-left: 10px;
}

.member_form dd .min_txt{
	font-size: 1.2rem;
	color: #717071;
	line-height: 1.6;
}
.member_form dd .min_txt + div{
	margin-top: 5px;
}
.member_form dd div + .min_txt{
	margin-top: 5px;
}

.member_form dd .min_txt + select,
.member_form dd .min_txt + input:not([type="radio"]):not([type="checkbox"]){
	margin-top: 5px;
}

.member_form dd .gray{
	color: #717071;
}

.member_form label{
	vertical-align: middle;
	font-size: 1.6rem;
}

.member_form label.check_box{
	position: relative;
	display: flex;
	align-items: center;
	min-height: 24px;
	padding-top: 2px;
	padding-left: 28px;
}

.ie .member_form label.check_box{
	padding-top: 5px;
}

.member_form input[type="checkbox"]{
	display: none;
}

.member_form input[type="checkbox"] + .check{
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 24px;
	height: 24px;
	margin: 0;
	background: url(../img/common/ico_check04.png) no-repeat center center;
	background-size: 100%;
	vertical-align: top;
}
.member_form input[type="checkbox"]:checked + .check{
	background: url(../img/common/ico_check04_on.png) no-repeat center center;
	background-size: 100%;
}

.member_form label + label{
	margin-left: 40px;
}
.member_form select + label{
	margin-left: 25px;
}

.member_form label + .req{
	margin-left: 30px;
}

.member_form input[type="radio"]{
	position: relative;
	width: 20px;
	height: 20px;
	margin: 0 5px 0 0;
	border: 1px solid #dbd6c3;
	background-color: #fff;
	border-radius: 50%;
	vertical-align: sub;
}
.ie .member_form input[type="radio"]{
	margin: 0 5px 2px 0;
}
.member_form input[type="radio"]:checked::before{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 5px;
	background-color: #333;
}
.edge .member_form input[type="radio"]:checked{
	border: 0;
}
.edge .member_form input[type="radio"]:checked::before{
	display: none;
}

.member_form dd.radio_wrap{
	padding: 10px 0;
}
.ie .member_form dd.radio_wrap{
	padding: 8px 0 10px;
}

.member_form dd.radio_wrap > p + div{
	margin-top: 5px;
}
.member_form dd.radio_wrap > div + p{
	margin-top: 15px;
}

.member_form .flex{
	display: flex;
	align-items: center;
}

.member_form .flex div + div{
	margin-left: 20px;
}

.member_form .flex > p + div{
	margin-left: 10px;
}

.member_form .flex > p + input:not([type="radio"]):not([type="checkbox"]){
	margin-left: 10px;
}

.member_form select{
	width: 100%;
	max-width: 485px;
	height: 42px;
	padding: 0 30px 0 10px;
	background: url(../img/common/ico_select02.png) no-repeat center right;
	background-size: 29px;
	border: 1px solid #dbd6c3;
	border-radius: 5px;
	font-size: 1.5rem;
}

.member_form select.sl2{
	border: 0;
	background: #a0915d;
	color: #fff;
	font-weight: bold;
}

.member_form select + p{
	margin: 0 15px 0 10px;
}

.member_form select + p + .req{
	margin-left: 0;
}

.member_form dd input:not([type="radio"]):not([type="checkbox"]){
	width: 100%;
	max-width: 485px;
	height: 40px;
	padding: 0 10px;
	border: 1px solid #dbd6c3;
	border-radius: 5px;
	font-size: 1.6rem;
}

.member_form dd textarea{
	width: 100%;
	max-width: 540px;
	height: 265px;
	padding: 7px 10px;
	border: 1px solid #dbd6c3;
	border-radius: 5px;
	font-size: 1.6rem;
}

.member_form .w80{
	max-width: 80px;
	width: 80px !important;
}
.member_form .w130{
	max-width: 130px;
	width: 130px !important;
}
.member_form .w155{
	max-width: 155px;
	width: 155px !important;
}
.member_form .w185{
	max-width: 185px;
	width: 185px !important;
}
.member_form .w250{
	max-width: 250px;
	width: 250px !important;
}
.member_form .w290{
	max-width: 290px;
	width: 290px !important;
}
.member_form .w310{
	max-width: 310px;
	width: 310px !important;
}

.member_form .h70{
	height: 70px;
}
.member_form .h175{
	height: 175px;
}

.member_form .add_btn{
	text-decoration: underline;
	font-size: 1.3rem;
	cursor: pointer;
}

.member_form .form_ttl{
	margin: 100px 0 20px;
	text-align: center;
	font-size: 2.3rem;
	font-weight: bold;
}

.member_form .form_wrap .space dt{
	padding: 15px 0;
	font-size: 1.4rem;
}

.member_form .form_wrap .space dd{
	display: flex;
	align-items: center;
}

.member_form .flex.flex_start{
	align-items: flex-start;
}

.member_form .flex.flex_start .flex + .flex{
	margin-left: 0;
	margin-top: 10px;
}

.member_form .bold{
	font-weight: bold;
	flex-shrink: 0;
}

.member_form .flex > .bold{
	padding-top: 5px;
}

.member_form .check_wrap{
	padding: 20px;
	margin-left: 70px;
	margin-top: 20px;
	border: 3px solid #e9e6de;
	border-radius: 5px;
}

.member_form .check_wrap .bold{
	margin: 15px 0;
}

.member_form .flex_c2{
	display: flex;
	flex-wrap: wrap;
}

.member_form .flex_c2 label{
	width: 50%;
	margin-bottom: 10px;
	font-size: 1.5rem;
}

.member_form .flex_c2 label + label{
	margin-left: 0;
}

.member_form .flex_c2 + .bold{
	padding-top: 20px;
	border-top: 1px dotted #d9d5c2;
}

.member_form .wmax{
	width: 100%;
}

.member_form .flex_c4{
	width: 100%
	flex-wrap: wrap;
}

.member_form .flex_c4 label{
	width: 25%;
	flex-shrink: 0;
}

.member_form .flex_c4 label + label{
	margin-left: 0;
}

.member_form .pink{
	color: #dc8073;
}

.member_form .next_btn{
	display: block;
	width: 368px;
	height: 88px;
	margin: 55px auto 20px;
	background: #dc8073;
	color: #fff;
	font-size: 2.7rem;
	font-weight: bold;
	border-radius: 6px;
}



@media screen and (max-width: 768px){
	.member_form{
		padding: 25px 0 60px;
	}

	.member_form .wrap{
		padding: 30px 3%;
		border-radius: 8px;
	}

	.member_form .ttl{
		font-size: 2.0rem;
	}

	.member_form .lead{
		margin: 15px 0;
		font-size: 1.3rem;
		text-align: left;
		line-height: 1.6;
	}

	.contact_flow{
		margin: 15px auto 20px;
	}

	.contact_flow li{
		width: 32.8%;
		height: 36px;
		text-align: center;
		font-size: 1.0rem;
		line-height: 1.5;
		white-space: nowrap;
	}
	.contact_flow li:first-child{
		border-radius: 3px 0 0 3px;
	}
	.contact_flow li:last-child{
		border-radius: 0 3px 3px 0;
	}

	.contact_flow li::after{
		right: -6px;
		border-top: 18px solid transparent;
		border-bottom: 18px solid transparent;
		border-left: 6px solid rgba(160, 145, 93, 0.5);
	}
	.contact_flow li.current::after{
		border-left: 6px solid #a0915d;
	}

	.contact_flow li::before{
		border-top: 18px solid transparent;
		border-bottom: 18px solid transparent;
		border-left: 6px solid #fff;
	}

	.member_form dl{
		flex-wrap: wrap;
		margin: 0;
		padding-top: 10px;
		padding-bottom: 0;
	}

	.member_form dt{
		justify-content: flex-start;
		width: 100%;
		min-height: 25px;
		margin-right: 0;
		padding: 5px 8px;
		font-size: 1.2rem;
		text-align: left;
	}
	.member_form .form_wrap .space dt{
		padding: 5px 8px;
		font-size: 1.2rem;
	}

	.member_form dt .req,
	.member_form dt .any,
	.member_form dd .sp_any{
		flex-shrink: 0;
		display: inline-block;
		padding: 2px 7px;
		margin-left: 10px;
		background-color: #dc8073;
		border-radius: 2px;
		color: #fff;
		font-size: 1.0rem;
		line-height: 1.6;
		font-weight: bold;
	}
	.member_form dt .any,
	.member_form dd .sp_any{
		background-color: #717071;
	}

	.member_form dd{
		padding: 8px 0;
	}

	.member_form dd div{
		width: 100%;
	}

	.member_form .flex.sp_none{
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
	}

	.member_form .flex.sp_none div + div{
		margin-left: 0;
		margin-top: 10px;
	}

	 .member_form .flex.sp_none > p + div{
		margin-left: 0;
		margin-top: 5px;
	 }

	.member_form dd .req,
	.member_form dd .any:not(.sp_any){
		display: none;
	}

	.member_form dd .gray{
		font-size: 1.2rem;
	}

	.member_form p{
		font-size: 1.2rem;
		line-height: 1.6;
	}

	.member_form label{
		display: inline-block;
		margin-right: 2%;
		font-size: 1.2rem;
		white-space: nowrap;
	}

	.member_form label + label{
		margin-left: 0;
	}

	.member_form label + label{
		margin-left: 1em;
	}

	.member_form select + label{
		margin-left: 20px;
	}

	.member_form select{
		height: 30px;
	}

	.member_form dd input:not([type="radio"]):not([type="checkbox"]){
		height: 34px;
		padding: 0 7px;
		font-size: 1.3rem;
		border-radius: 3px;
	}

	.member_form .flex.sp_none > p + input:not([type="radio"]):not([type="checkbox"]){
		margin-left: 0;
	}

	.member_form .w80,
	.member_form .w130,
	.member_form .w155,
	.member_form .w185,
	.member_form .w250,
	.member_form .w290,
	.member_form .w310{
		width: 100% !important;
	}

	.member_form dd.radio_wrap{
		padding: 10px 0 12px;
	}

	.member_form input[type="radio"]{
		width: 17px;
		height: 17px;
		margin-bottom: 1px;
		margin-right: 5px;
		vertical-align: middle;
	}

	.member_form select{
		height: 32px;
		padding: 0 20px 0 5px;
		background-size: 22px;
		border-radius: 3px;
		font-size: 1.1rem;
	}

	.member_form select + p{
		margin: 0 10px 0 5px;
		font-size: 1.1rem;
	}

	.member_form dd textarea{
		height: 75px;
		font-size: 1.3rem;
		border-radius: 3px;
	}

	.member_form input[type="checkbox"] + .check{
		width: 17px;
		height: 17px;
	}

	.member_form label.check_box{
		min-height: 18px;
		padding-top: 0;
		padding-left: 22px;
	}

	.member_form .add_btn{
		font-size: 1.1rem;
	}

	.member_form .w130{
		max-width: 100px;
	}

	.member_form .w155,
	.member_form .w185{
		max-width: 120px;
	}

	.member_form .w250{
		max-width: 180px;
	}

	.member_form .form_ttl{
		margin: 60px 0 15px;
		font-size: 2.0rem;
	}

	.member_form .bold{
		font-size: 1.2rem;
		font-weight: normal;
	}


	.member_form .flex_c4 label{
		width: 25%;
		flex-shrink: 1;
	}

	.member_form .check_wrap{
		padding: 15px 3%;
		margin-left: 0;
	}

	.member_form .check_wrap .bold{
		margin: 8px 0;
		font-weight: bold;
	}

	.member_form .flex_c2 label{
		font-size: 1.2rem;
		margin-bottom: 8px;
	}

	.member_form .w290{
		max-width: 200px;
	}

	.member_form .next_btn{
		width: 200px;
		height: 47px;
		margin: 25px auto 0;
		font-size: 1.5rem;
		background-color: #f58073;
		border-radius: 4px;
	}
}



/* ------------------------------
	.confirm
------------------------------ */
.confirm dt{
	padding: 5px 0;
	line-height: 1.5;
}
.confirm dd{
	display: flex;
	align-items: center;
	min-height: 35px;
	padding-top: 6px;
	line-height: 1.5;
}

.confirm .btn_wrap{
	display: flex;
	justify-content: center;
	margin: 55px 0 0;
}

.confirm .prev_btn{
	display: block;
	width: 270px;
	height: 88px;
	background: #666;
	color: #fff;
	font-size: 2.7rem;
	font-weight: bold;
	border-radius: 6px;
	-webkit-transition: opacity .4s ease;
	transition: opacity .4s ease;
	cursor: pointer;
}

.confirm .next_btn{
	margin: 0;
	margin-left: 30px;
}
@media screen and (min-width: 769px) {
	.confirm .prev_btn:hover{
		opacity: 0.8;
	}
}


@media screen and (max-width: 768px) {
	.confirm dt{
		padding: 5px 8px;
	}
	.confirm dd{
		min-height: initial;
		padding: 8px 0;
		font-size: 1.3rem;
	}

	.confirm .btn_wrap{
		flex-wrap: wrap;
	}

	.confirm .prev_btn{
		width: 200px;
		height: 40px;
		margin: 0 auto 15px;
		font-size: 1.5rem;
		border-radius: 4px;
	}

	.confirm .next_btn{
		margin: 0 auto;
	}
}



/* ------------------------------
	.thanks
------------------------------ */
.thanks .next_btn{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0;
}

.thanks .ttl{
	line-height: 1.3;
}


@media screen and (max-width: 768px) {
	.thanks .next_btn{
		height: 50px;
	}
}