/* ------------------------------------------------------------------------
    Honeypot
------------------------------------------------------------------------  */
.check_input {
    display: none;
}

/* ------------------------------------------------------------------------
    UI
------------------------------------------------------------------------  */
#FORM_AREA .Block .Item:not(:last-child) {
    margin-bottom: var(--space-30);
}
#FORM_AREA .Item *{
    font-size: 1em;
}
#FORM_AREA .Form_Message {
    
}
#FORM_AREA .Item .Contents{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    color: #666;
    line-height: 1.5em;
}
#FORM_AREA .Item > * {
    width: 100%;
    box-sizing: border-box;
}
#FORM_AREA .Item .Name {
    margin-bottom: 1em;
    font-weight: 500;
    padding-left: .5em;
    border-left:5px solid #adadad;
}
@media screen and (min-width:769px){
    #FORM_AREA .Item > * {
    }
    #FORM_AREA .Item .Name {
    }
    #FORM_AREA .Item .Contents {
    }
}

/* confirm */
.confirm .Item .Name{
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}
.confirm .Item .Contents{
    padding-left: .5em;
}

/* label */
label {display: inline-block; padding-right: 2em; cursor: pointer;}

/* Error */
.Error{
    display: block;
    width: 100%;
    text-align: center;
    border-radius: 5px;
    background: #CF0D0D;
    color: #fff;
    margin-top: .5em;
    margin-bottom: .5em;
    font-size: .875em !important;
}
.err input[type=text],
.err textarea,
.err select{
    background: #ffeaec;
}

/* req any */
.req {
	display: inline-block;
    text-align: center;
	background: #cc0000;
	font-size:1rem !important;
	color:#fff;
	margin-left: 1em;
    
    border-radius: 3px;
    font-style: normal;
    
    content: "必須";
    vertical-align: inherit;
    padding: 0px 1em;
}

.req_txt {
    display: inline-block;
    position: relative;
    height: 1em;
    width: 40px;
    margin-right: 10px;
}
.req_txt .req{
    margin-left: 0;
}

/* ------------------------------------------------------------------------
    STEP
------------------------------------------------------------------------  */
#STEP_LIST {
	position: relative;
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 500px;
	
	margin-left: auto;
	margin-right: auto;
    
    margin-top: var(--space-40);
    margin-bottom: var(--space-40);
}
#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 */
labrl {display: inline-block;}
label.Date1{
	position: relative;
	padding-right: 2em;
}
label.Date1:after{
	position: absolute;
	top: 0;
	right:.7em;
	content: "-";
}
/* ------------------------------------------------------------------------
    input
------------------------------------------------------------------------  */
/* reset */
.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;
	appearance: none;
	font-family: 'Noto Sans JP', sans-serif;
}
select::-ms-expand {
	display: none;
}
textarea {
	resize: vertical;
}

/* 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: 3px;
}
input[type=text] , textarea , select ,input[type=tel], input[type=password]{
	border:#a9a9a9 1px solid;
}
input[type=text] {
}
textarea {
	height:20em;
}
input[type=text]:focus  , textarea:focus , input[type=password]:focus{
	border:solid 1px #20b2aa;
}
 
input[type=text], select , textarea ,input[type=tel], input[type=password]{
	outline: none;
}
.Form-Btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.Form-Btn a,
input[type=submit] {
	position: relative;
	width: 100%;
	max-width: 320px;
	padding: .75em 0;
	margin-left: 10px;
	margin-right: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
	border-radius: 50px;
	border: 3px solid #fff;
	cursor: pointer;
    
    background: #fff;
    color: var(--main-color);
}
.Form-Btn a:hover,
input[type=submit]:hover{
    background: var(--main-color);
    color: #fff;
}
.Form-Btn a.file:before,
input[type=submit].file:before {
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	content: '';
	width: 24px;
	height: 24px;
	background: url("../images/icon_file_cl.png");
	background-repeat: no-repeat;
	background-size: cover;
}
.Form-Btn a.file:hover:before,
input[type=submit].file:hover:before{
    position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	content: '';
	width: 24px;
	height: 24px;
	background: url("../images/icon_file_wh.png");
	background-repeat: no-repeat;
	background-size: cover;
}
@media screen and (min-width:769px){
	.Form-Btn a,
	input[type=text],
	input[type=email],
	input[type=password],
	input[type=submit],
	input[type=tel],
	.file_type ,
	button,
	textarea,
	select {
	}
}

/* select */
.SelectBox {
	position: relative;
}
.SelectBox:after {
    pointer-events: none;
	position: absolute;
	right: 15px;
	top:50%;
	transform: translateY(-50%) rotate(45deg);
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 7px 7px;
	border-color: transparent transparent #323232 transparent;
}
.SelectBox select{
    padding-right: 30px;
    cursor: pointer;
}

/* button color */
.Form-Btn a.Bk,
input[type=submit].Back {
    color: var(--base-color);
    border: 1px solid var(--base-color);
}
.Form-Btn a.Bk:hover,
input[type=submit].Back:hover {
	background:#ccc;
}

/* ------------------------------------------------------------------------
    Radio
------------------------------------------------------------------------  */
input[type="radio"].TypeA{
	display: none;
}
input[type="radio"].TypeA + label{
	padding-left: 30px;
	margin: 10px 0;
	position:relative;
}
.FormBox input[type="radio"].TypeA + label{
	margin-right: 2em;
}
input[type="radio"].TypeA + label::before{
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top:-8px;
	width: 16px;
	height: 16px;
	border: 1px solid #000;
	border-radius: 50%;
	background: #fff;
}
input[type="radio"].TypeA + label::after{
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 3px;
	margin-top:-5px;
	width: 12px;
	height: 12px;
	background: #666;
	border-radius: 50%;
	transition:0.2s ease-in-out;
	opacity:0;
}
input[type="radio"].TypeA:checked + label::after{
	opacity:1;
}
@media screen and (min-width:769px){
}

/* ------------------------------------------------------------------------
   SELECT-ITEM (checkbox)
------------------------------------------------------------------------  */
.Select-List > li{
	margin: 10px;
}
.Select-List > li > label{
	background: #eee;
	border-radius: 5px;
	padding: .5em;
}
/* checkbox */
.checkBox{
	-webkit-appearance:none;
	-moz-appearance:none;
	appearance:none;
	display:none;
}
.checkLabel{
	display:inline-block;
	padding-left:45px;
	padding-right:1.5em;
	cursor:pointer;
	position:relative;
}
.checkLabel:before{
	content:"";
	display:block;
	width:30px;
	height:30px;
	background: #fff;
	border-radius: 50%;
	box-sizing:border-box;
	position:absolute;
	left:0;
	top:50%;
	margin-top: -15px;
}
.checkLabel:after{
	content:"";
	display:block;
	transform:rotate(45deg);
	border:solid 4px #666;
	border-top:0;
	border-left:0;
	width:14px;
	height:20px;
	left:7px;
	top:50%;
	margin-top: -13px;
	position:absolute;
	box-sizing:border-box;
	transition:0.2s ease-in-out;
	opacity:0;
}
.checkBox:checked + .checkLabel:after{
	transform:rotate(45deg);
	opacity:1;
}
