﻿@charset "utf-8";
/*====================================
form select
====================================*/
/* common
--------------------------------------*/
input[type="text"],
input[type="tel"],
input[type="email"],
textarea,
select,
button{
	appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
	background: none;
	border: none;
	font-family : inherit;
	color: inherit;
	box-sizing: border-box;
}
input[type="text"],
input[type="tel"],
input[type="email"],
textarea,
.select--form{
	box-sizing: border-box;
	width: 100%;
	background-color: #fff;
	border: 1px solid #CCCCCC;
	transition: background .3s ease;
}
input[type="text"],
input[type="tel"],
input[type="email"],
.select--form{
	height: 45px;
}
input[type="text"],
input[type="tel"],
input[type="email"]{
	padding: 0 10px;
	display: flex;
	align-items: center;
}
input:placeholder-shown,
textarea:placeholder-shown {
	color: #ccc;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #ccc;
}
textarea{
	padding: 10px;
}
select{
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
}
select::-ms-expand{
	display: none;
}
select option{
	color: #000;
}
button{
	cursor: pointer;
}

/* select
--------------------------------------*/
.select--form{
	position: relative;
}
.select--form select{
	width: 100%;
	height: 100%;
	padding: 0 25px 0 10px;
	cursor: pointer;
}
.select--form:before{
	content:'';
	display: block;
	position: absolute;
	pointer-events: none;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 9px 5.5px 0 5.5px;
	border-color: #999 transparent transparent transparent;
	right: 10px;
	top: calc((100% - 9px) / 2);
}

/* checkbox radio
--------------------------------------*/
form label{
	cursor: pointer;
}
.wrap--input-checkbox,
.wrap--input-radio{
	display: flex;
	flex-wrap: wrap;
	width: calc(100% + 30px);
	padding: 10px 0;
}
.wrap--input-checkbox .input--checkbox,
.wrap--input-radio .input--radio{
	margin-right: 30px;
}
.input--checkbox input[type="checkbox"],
.input--checkbox input[type="radio"],
.input--radio input[type="checkbox"],
.input--radio input[type="radio"]{
	display: none;
}
.input--checkbox span,
.input--radio span{
	display: inline-block;
	position: relative;
	line-height: 1.2;
	padding-left: 24px;
}
.input--checkbox span:before,
.input--checkbox span:after,
.input--radio span:before,
.input--radio span:after{
	content: '';
	display: block;
	position: absolute;
	pointer-events: none;
	box-sizing: border-box;
}
.input--checkbox span:before,
.input--radio span:before{
	width: 16px;
	height: 16px;
	left: 0;
	top: calc((100% - 16px) / 2);
	background-color: #fff;
	border: 1px solid #ccc;
	transition: background .2s ease, border .2s ease;
}
.input--checkbox span:after,
.input--radio span:after{
	opacity: 0;
	transition: opacity .2s ease;
}
.input--checkbox input:checked + span:after,
.input--radio input:checked + span:after{
	opacity: 1;
}
.input--checkbox span:before{
	border-radius: 3px;
}
.input--checkbox span:after{
	left: 0.4rem;
	width: 0.6rem;
	height: 0.95rem;
	top: 50%;
	transform: translateY(-65%) rotate(40deg);
	border-bottom: 0.3rem solid #fff;
	border-right: 0.3rem solid #fff;
}
.input--checkbox input:checked + span:before{
	background-color: #4A4A4A;
	border-color: #4A4A4A;
}
.input--radio span:before{
	border-radius: 100%;
}
.input--radio span:after{
	width: 8px;
	height: 8px;
	border-radius: 100%;
	background-color: #999;
	left: 4px;
	top: calc((100% - 8px) / 2);
}

/* form
--------------------------------------*/
.btn--form{
	margin: 0 auto;
	width: 362px;
	height: 47px;
}
.btn--form.btn--confirm,
.form--tbl .submit-btn-block{
	margin-top: 60px;
}
.btn--form input[type=submit]{
	outline: none;
	-webkit-appearance:none;
	-moz-appearance:none;
	appearance: none;
	background: none;
	border: none;
	padding: 0;
	display: block;
	position: relative;
	text-align: center;
	cursor: pointer;
	line-height: 1;
	color: inherit;
	z-index: 3;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	background: url(../img/common/btn-confirm.png) no-repeat center center;
	background-size: contain;
	font-size: 0;
}
.btn--form form{
	width: 100%;
	height: 100%;
}
.btn--form.btn--modify input[type=submit]{
	background-image: url(../img/common/btn-modify.png);
}
.btn--form.btn--send input[type=submit]{
	background-image: url(../img/common/btn-send.png);
}

.form--tbl{
	line-height: 1.5;
}
.form--tbl table{
	box-sizing: border-box;
	width: 100%;
	border-radius: 10px;
	overflow: hidden;
}
.form--tbl th,
.form--tbl td{
	box-sizing: border-box;
	vertical-align: middle;
}
.form--tbl th{
	padding: 20px;
	font-size: 16px;
	background-color: #368941;
	color: #fff;
	width: 260px;
}
.form--tbl tr:not(:last-child) th{
	border-bottom: 2px solid #fff;
}
.form--tbl td{
	background-color: #fff;
	padding: 20px 30px;
}

.form--tbl .req-cell-inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.form--tbl .req-cell-inner .req{
	font-size: 12px;
	line-height: 1;
	padding: 5px;
	border-radius: 3px;
	color: #368941;
	background-color: #fff;
}
.form--tbl .error-message{
	color: #f00;
	margin-bottom: 30px;
}

.form--tbl .tr-birthday .date_wrap{
	display: flex;
}
.form--tbl .tr-birthday .unit_wrap{
	display: flex;
	align-items: center;
}
.form--tbl .tr-birthday .unit_wrap:not(:last-child){
	margin-right: 30px;
}
.form--tbl .tr-birthday .unit_wrap.y .unit_input{
	width: 130px;
}
.form--tbl .tr-birthday .unit_wrap.m .unit_input,
.form--tbl .tr-birthday .unit_wrap.d .unit_input{
	width: 85px;
}
.form--tbl .tr-birthday .unit_txt{
	padding-left: 10px;
}

.form--tbl .user-policy-block{
	margin-top: 50px;
}
.form--tbl .user-policy-block .txt-box{
	height: 335px;
	margin-bottom: 50px;
	line-height: 1.8;
}
.form--tbl .user-policy-block .txt-box p:not(:last-child),
.form--tbl .user-policy-block .txt-box ul:not(:last-child){
	margin-bottom: 1em;
}
.form--tbl .user-policy-block .policy-box{
	background-color: #fff;
	text-align: center;
	padding: 25px;
}

.btn--form.btn--confirm,
.form--tbl .submit-btn-block{
	margin-top: 60px;
}
.form--tbl .submit-btn-block{
	display: flex;
	justify-content: center;
}
.form--tbl .submit-btn-block .btn--form{
	margin-left: 0;
	margin-right: 0;
}
.form--tbl .submit-btn-block .btn--form:first-child{
	margin-right: 50px;
}


/* confirm
--------------------------------------*/
#confirm .head_bg_wrap,
#thankyou .head_bg_wrap{
	background:url(../img/common/cmn_head_bg01.jpg) no-repeat bottom center;
	background-size:cover;
	padding-bottom: 35px;
}
#confirm .head_bg_wrap .page_ttl,
#thankyou .head_bg_wrap .page_ttl{
	background:url(../img/exam/page_ttl.png) no-repeat center center;
	font-size: 40px;
	line-height: 1.3;
	color:#183D1E;
	letter-spacing:5px;
	margin:0 auto;
	width: 784px;
	height: 186px;
	margin-top: 34px;
}
#confirm .head_bg_wrap .page_ttl h2,
#thankyou .head_bg_wrap .page_ttl h2{
	display:table-cell;
	height: 160px;
	vertical-align:middle;
	width: 784px;
	text-align:center;
}
#confirm .cmn_box01,
#thankyou .cmn_box01{
	padding-top: 15px;
}
#confirm .sec_confirm .blc_lead{
	margin-bottom: 60px;
	line-height: 1.5;
	text-align: center;
}

/* thankyou
--------------------------------------*/
#thankyou .sec_thankyou .blc_txt{
	margin-bottom: 60px;
	line-height: 1.5;
}
