@charset "UTF-8";
/* ===================================================================
CSS
 file name  :  form.css
=================================================================== */
/* =====================================
フローチャート
======================================== */
.flowchart{
	max-width: 460px;
	margin: auto;
}
.flowchart ul{
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.flowchart ul.circle_list{
	width: 90%;
	margin: auto;
}
.flowchart ul.circle_list{
	background: linear-gradient(transparent 9px, #00306D 10px, transparent 11px);
}
.flowchart ul.circle_list li div{
	border: 1px solid #00306D;
	background: #FFF;
	border-radius: 100px;
	width: 20px;
	height: 20px;
}
.flowchart ul.circle_list li div.current{
	background: #00306D;
}
.flowchart ul.text_list{
	margin-top: 1em;
}
.flowchart ul.text_list li{
	text-align: center;
	color: #00306D;
}
.flowchart ul.text_list li span{
	font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
	.flowchart{
		max-width: 360px;
	}
	.flowchart ul.circle_list{
		background: linear-gradient(transparent 5px, #00306D 6px, transparent 7px);
	}
	.flowchart ul.circle_list li div{
		width: 12px;
		height: 12px;
	}
	.flowchart ul.text_list li{
		line-height: 1.4;
	}
	.flowchart ul.text_list li span{
		font-size: 1.0rem;
	}
}
@media screen and (max-width: 480px) {
	.flowchart{
		max-width: 240px;
	}
}
/* =====================================
フォーム基本カスタマイズ
======================================== */
/*チェックボックス基本カスタマイズ*/
input[type="checkbox"],
input[type="radio"]{
	opacity:0;
	-webkit-appearance: none;
	appearance: none;
	position: absolute;
}
label.check,
label.radio{
	position: relative;
	display: block;
	word-break: break-all;
	line-height: 1.4;
}
label.check input[type="checkbox"] + span,
label.radio input[type="radio"] + span{
	position: relative;
	padding: 0 10px 0 30px;
}
label.check.check_only {
	line-height: 1.0;
}
label.check.check_only input[type="checkbox"] + span{
	padding: 0 0 0 0;
}
label.check span,
label.radio span{
	display: inline-block;
}
label.check input[type="checkbox"],
label.radio input[type="radio"]{
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
/*チェックボックス*/
label.check input[type="checkbox"] + span::before,
label.check input[type="checkbox"] + span::after {
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	content: '';
	box-sizing: border-box;
}
label.check input[type="checkbox"] + span::before {
	z-index: 0;
	background-color: #FFF;
	width: 18px;
	height: 18px;
	border: 1px solid #A5A5A5;
	border-radius: 3px;
}
label.check input[type="checkbox"] + span::after {
	z-index: 1;
	margin: 3px 6px;
	width: 6px;
	height: 10px;
}
label.check input[type="checkbox"]:checked + span::before {
	background-color: #00306D;
	border: 1px solid #00306D;
}
label.check input[type="checkbox"]:checked + span::after {
	border: 2px solid #fff;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
/*ラジオボタン*/
label.radio input[type="radio"] + span::before {
	position: absolute;
	display: inline-block;
	content: '';
	box-sizing: border-box;
	border-radius: 20px;
}
label.radio input[type="radio"] + span::before {
	z-index: 0;
	top: 0;
	left: 0;
	background-color: transparent;
	width: 18px;
	height: 18px;
	border: 1px solid #A5A5A5;
}
label.radio input[type="radio"]:checked + span::before {
	border: 6px #00306D solid;
}
/*セレクトボックス基本カスタマイズ*/
.select_wrap{
	position: relative;
	display: inline-block;
}
.select_wrap::after {
	content: '';
	width: 10px;
	height: 10px;
	border: 0px;
	border-bottom: solid 2px #00306D;
	border-right: solid 2px #00306D;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 15px;
	margin-top: -6px;
	z-index: 2;
}
.select_wrap .select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%;
	position: relative;
	z-index: 1;
	padding: 0 40px 0 10px;
	padding: 0.5em 40px 0.5em 0.7em;
	border: 1px solid #A5A5A5;
	background: #FFF;
	color: #333;
	border-radius: 2px;
	cursor: pointer;
}
@media screen and (max-width: 768px) {
	.select_wrap .select {
	height: 40px;
	}
}
select::-ms-expand {
	display: none;
}
/*テキスト系基本カスタマイズ*/
input[type="text"],input[type="email"],input[type="tel"],input[type="password"],textarea{
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border: 1px solid #A5A5A5;
	border-radius: 2px;
	padding: 0.5em 0.7em;
	width: 100%;
}
/* =====================================
フォーム
======================================== */
p.form_lead{
    margin-top: 2em;
}
.form_table{
    margin-top: 50px;
	width: 100%;
	line-height: 1.8;
}
.form_table th{
	width: 30%;
	text-align: left;
	color: #00306D;
	padding: 2em;
	background: #EDF5FF;
	vertical-align: top;
}
.form_table td{
	width: 70%;
	padding: 2em;
    position: relative;
}
.form_table.confirm td{
	word-break: break-all;
    white-space: pre-wrap;
}
@media print, screen and (min-width: 769px) {
    .form_table{
        border-bottom: 1px solid #CCCCCC;
    }
	.form_table tr{
		border-top: 1px solid #CCCCCC;
	}
}
.required{
	border: 1px solid #CC0000;
	border-radius: 3px;
	color: #CC0000;
	font-size: 1.2rem;
	font-weight: 300;
	padding: 0.1em 0.7em;
	margin-left: 1em;
}
.recruit_birth_wrap{
	display: flex;
	align-items: center;
}
.recruit_birth_wrap input{
	max-width: 120px;
}
.recruit_birth_wrap span{
	margin: auto 0.5em;
}
.recruit_gender_wrap{
	width: 120px;
}
@media print, screen and (min-width: 769px) {
	.form_table .name_wrap,
	.form_table .email_wrap,
	.form_table .tel_wrap{
		max-width: 360px;
	}
	.form_table .zip_wrap{
		display: flex;
		align-items: center;
	}
	.form_table .zip_wrap{
		margin-bottom: 10px;
	}
	.form_table .zip_wrap span{
		width: 100px;
		white-space: nowrap;
	}
	.form_table .zip_wrap input{
		max-width: 160px;
	}
	.form_table .address1_wrap{
		padding-left: 110px;
		margin-bottom: 10px;
	}
}
.form_wrap p.form_commemt{
	margin-top: 3em;
}
.form_btn_area{
	margin-top: 70px;
	display: flex;
	justify-content: center;
}
.form_btn_area .btn_wrap{
	width: 100%;
	max-width: 460px;
	background: #1E2C48;
    box-shadow: 0px 3px 15px 0px rgba(0,0,0,0.2);
	transition: all .3s;
	position: relative;
}
.form_btn_area .btn_wrap input[type="submit"]{
	text-decoration: none;
    font-size: 1.6rem;
    position: relative;
	display: block;
  	border: none;
	padding: 1.22em 2em 1.2em 1em;
	text-align: center;
	color: #FFF;
	background: none;
	width: 100%;
}
.form_btn_area .btn_wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 25px;
    width: 9px;
    height: 9px;
    margin: auto;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
}
.form_btn_area .btn_wrap:hover{
	background: #123884;
}
.form_btn_area .btn_wrap_back{
	margin-right: 3em;
	width: 200px;
}
.form_btn_area .btn_wrap_back .btn{
	background: #666;
    font-size: 1.6rem;
}
.form_btn_area .btn_wrap_back .btn:hover{
	background: #888;
}
.privacy_title{
    color: #00306D;
    font-size: 2.0rem;
    margin-top: 3em;
    text-align: center;
}
.privacy_lead{
    margin-top: 2em;
    text-align: center;
}
.privacy_wrap{
    margin-top: 20px;
    background: #F3F3F3;
    padding: 50px;
}
.privacy_inner{
    height: 240px;
    padding-right: 2em;
    overflow-y: scroll;
}
/*スクロールバー*/
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar-thumb {
  background-color: #1E2C48;
  border-radius: 10px;
  box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
}
.form_thanks{
	max-width: 880px;
	margin: 40px auto auto;
	border: 1px solid #CCC;
	padding: 50px 50px;
}
.btn_top_area{
	max-width: 400px;
	margin: 50px auto auto;
}
@media screen and (max-width: 768px) {
	.form_table{
		margin-top: 30px;
	}
	.form_table th{
		display: block;
		width: 100%;
		padding: 1em;
	}
	.form_table td{
		display: block;
		width: 100%;
		padding: 1em 0 2em 0;
	}
	.required{
		font-size: 1.0rem;
	}
	.form_table .zip_wrap{
		margin-bottom: 5px;
	}
	.form_table .zip_wrap span{
		display: block;
	}
	.form_table .zip_wrap input{
		max-width: 180px;
	}
	.form_wrap p.form_commemt{
		margin-top: 2em;
	}
	.form_btn_area{
		margin-top: 30px;
	}
    .form_btn_area .btn_wrap input[type="submit"]{
        font-size: 1.4rem;
    }
	.form_btn_area .btn.back{
		width: 160px;
		margin-right: 10px;
	}
    .privacy_title{
        font-size: 1.4rem;
    }
    .privacy_lead{
        margin-top: 1em;
    }
    .privacy_wrap{
        margin-top: 10px;
        padding: 30px 20px;
    }
    .privacy_inner{
        height: 200px;
    }
	.form_thanks{
		padding: 30px 20px;
        margin: 30px auto auto;
    }
    .btn_top_area{
        margin: 30px auto auto;
    }
}