/* ------------------------------------------------------------------------
    UI
------------------------------------------------------------------------  */
/* Area */
#FORM_AREA {
	overflow-wrap: break-word;
	word-wrap: break-word;
}
@media screen and (max-width:1023px){
	#FORM_AREA {
	}
}

/* Container */
.Form {
	border-top: 1px solid #ddd;
}
.Form > .Item{
	display:flex;
	flex-wrap: wrap;
	border-bottom: 1px solid #ddd;
}
.Form > .Item > *{
	width: 100%;
	box-sizing: border-box;
}
.Form > .Item > .List{
	position: relative;
	padding-top: 1em;
	padding-bottom: .5em;
	padding-right: 40px;
	box-sizing: border-box;
	
	font-weight: 500;
	color: 666;
}
.Form > .Item > .Input{
	display: flex;
	align-items: center;
	padding:1.25em 0;
}
#CONFIRM .Form > .Item > .Input{
	padding:.5em .5em;
}

	.Form-List {
	}
	.Form-Box {
	}
@media screen and (min-width:1024px){
	.Form > .Item > .List{
		display: flex;
		justify-content: space-between;
		max-width: 30%;
		padding:2em 1em;
	}
	.Form > .Item > .Input,
	#CONFIRM .Form > .Item > .Input{
		max-width: 70%;
		padding:1.25em 1em;
	}
}

.err_top {
	text-align: center;
	color: #990000;
	font-weight: 500;
}
.err {
	background-color:#990000;
	padding:5px 10px;
	text-align:center;
	border-radius: 25px;
	color:#FFFFFF;
	margin:20px 0 5px;
}

/* req */
.req {
	display: inline-block;
	background: #c00;
	height: 1.5em;
	line-height: 1.5em;
	padding-left: .5em;
	padding-right: .5em;
	border-radius: 5px;
	font-size:1.2rem;
	color:#fff;
	margin-top: .3em;
	margin-left: .5em;
	margin-right: .5em;
	white-space: nowrap;
	
}
.List .req {
	position: absolute;
	right: 0;
	top: 1em;
	
}
@media screen and (min-width:1024px){
	.List .req {
		top: 2.5em;
	}
}

/* Error */
.Error *{
	display: flex;
	justify-content: center;
}
.Error h2{
	color: red;
}

/* Complete */
.Complete_Area .Title{
	font-size: 1.125em;
	margin-bottom: 1.5em;
	text-align: center;
}
.Complete_Area .Message{
	display: flex;
	justify-content: center;
}

/* ------------------------------------------------------------------------
    STEP
------------------------------------------------------------------------  */
#STEP_LIST {
	position: relative;
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 500px;
	
	margin-left: auto;
	margin-right: auto;
}
#STEP_LIST:before {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	content: '';
	width: calc(100% - 136px);
	height: 2px;
	background:#ccc;
	
	z-index: -1;
}
#STEP_LIST .Num {
	position: relative;
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
}
#STEP_LIST .Num span {
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	line-height: 1em;
	font-weight: bold;
	
	border-radius: 50%;
	background: #333;
}
#STEP_LIST .Num p{
	position: absolute;
	left: 50%;
	bottom: -2em;
	transform: translateX(-50%);
}
#STEP_LIST .Num:not(.active) span ,
#STEP_LIST .Num:not(.active) p{
	opacity: .4;
}
@media screen and (min-width:769px){
	#STEP_LIST .Num {
		width: 70px;
		height: 70px;
	}
	#STEP_LIST .Num span {
		width: 60px;
		height: 60px;
	}
}

/* ------------------------------------------------------------------------
    parts
------------------------------------------------------------------------  */
/* placeholder */
.placeholder {
	color:#aaa;
}
    ::-webkit-input-placeholder {
        color:#aaa;
        opacity: 1;
    }
    :-moz-placeholder {
        color:#aaa;
    }
    ::-moz-placeholder {
        color:#aaa;
        opacity: 1;
    }
    :-ms-input-placeholder {
        color:#aaa;
    }
    :placeholder-shown {
        color:#aaa;
    }
/* label */
label {
	display: inline-block;
	width: 100%;
}
label.Date1{
	position: relative;
	padding-right: 2em;
}
label.Date1:after{
	position: absolute;
	top: 0;
	right:.7em;
	content: "-";
}
/* ------------------------------------------------------------------------
    input
------------------------------------------------------------------------  */
/* reset */
.Form-Btn {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.Form-Btn a{
	display:block;
	line-height:1.5em;
	text-align:center;
}
.Form-Btn a,
input[type=text],
input[type=email],
input[type=password],
input[type=submit],
input[type=tel],
.file_type ,
/*button,*/
textarea,
select {
	width:100%;
	box-sizing:border-box;
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-family: 'Noto Sans JP', sans-serif;
	font-size:14px;
}
select::-ms-expand {
	display: none;
}
textarea {
	resize: vertical;
	min-height: 20em;
}

/* set */
input[type="text"],textarea,input[type=password] ,input[type=tel], select {
	padding-top: 7px;
	padding-bottom: 7px;
	padding-left: 8px;
	padding-right: 8px;
	margin:5px 0;
	background:#FFF;
	border-radius: 7px;
	
	transition: all .6s 0s ease;
}
input[type=text] , textarea , select ,input[type=tel], input[type=password]{
	border:#a9a9a9 1px solid;
}
input[type=text] {
}
textarea {
	height:7em;
}
select {
	cursor: pointer;
}
input[type=text]:focus  , textarea:focus , select:focus , input[type=password]:focus{
	border:solid 1px #ccc;
}
 
input[type=text], select , textarea ,input[type=tel], input[type=password]{
	outline: none;
}
.Form-Btn a,
input[type=submit] {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	
	width: 100%;
	max-width: 320px;
	height: 50px;
	margin-left: 10px;
	margin-right: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
	border-radius: 50px;
	
	border-radius: 25px;
	border:1px solid #a9a9a9;
	background: #fff;
	
	cursor: pointer;
	transition: .3s;
}
@media screen and (min-width:1024px){
	.Form-Btn a,
	input[type=text],
	input[type=email],
	input[type=password],
	input[type=submit],
	input[type=tel],
	.file_type ,
	button,
	textarea,
	select {
		font-size: 16px;
	}
	.Form-Btn a:hover,
	input[type=submit]:hover{
		color: #999;
		box-shadow: 0px 0px 7px 0px rgba(0,0,0,.3);
	}
}

/* button color */
.Form-Btn a.Back,
input[type=submit].Back {
	background:#ccc;
}
.Form-Btn a.Back:hover,
input[type=submit].Back:hover {
	background:#de4437;
}
.Form-Btn a.ecat,
input[type=submit].ecat {
	color:#de4437;
}
.Form-Btn a.ecat:hover,
input[type=submit].ecat:hover {
	background:#de4437;
	color: #fff;
}

/* ------------------------------------------------------------------------
    Select
------------------------------------------------------------------------  */
label.Select_Wrap {
	position: relative;
}
label.Select_Wrap:before ,
label.Select_Wrap:after {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.4s;
	display: block;
	content: '';
	width: 10px;
	height: 1px;
	background: #000;
}
label.Select_Wrap:before{
	transform: translate(-50%,-50%) rotate(90deg);
}
label.Select_Wrap:after{
	transform: translate(-50%,-50%) rotate(0deg);
}
label.Select_Wrap:focus-within:before {
	transform: translate(-50%,-50%) rotate(0deg);
}
label.Select_Wrap:focus-within:after{
	opacity: 0;
}

/* ------------------------------------------------------------------------
    LANG
------------------------------------------------------------------------  */
#LANG select {
	position: relative;
	border: none;
}
#LANG select:before {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	display: inline-block;
	content: '';
	width: 7px;
	height: 10px;
	background: #000;
	z-index: 3;
}

/* ------------------------------------------------------------------------
    Disabled
------------------------------------------------------------------------  */
.CheckAgree {
	text-align: center;
}
#Agree{
	width: 100%;
	text-align: center;
}
.NoAgree input{
	cursor: default;
}
.NoAgree,
.NoAgree:hover{
	opacity: .5;
}
