/* ------------------------------------------------------------------------
    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;
}
@media screen and (min-width:769px){
    #FORM_AREA .Item > * {
    }
    #FORM_AREA .Item .Name {
    }
    #FORM_AREA .Item .Contents {
    }
}

/* confirm */
.Confirm .Item .Name{
}
.Confirm .Item .Contents{
    padding-left: .5em;
    border: 1px solid var(--sub2-color);
    padding: 5px;
    border-radius: 5px;
    min-height: 2.5em;
}
/* complete title */
.Complete_ttl{
	padding-top: 1.5em;
	padding-bottom: 1.5em;
	text-align: center;
	font-size: 1.25em;
	font-weight: 500;
	border-bottom: 1px solid #ccc;
	border-top: 1px solid #ccc;
    
    margin-bottom: var(--space-40);
}
.Complete_Message{
    display: flex;
    justify-content: center;
    margin-top: var(--space-40);
    margin-bottom: var(--space-40);
}

/* 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{
    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;
    white-space:nowrap;
}

.req_txt {
    display: inline-block;
    position: relative;
    height: 1em;
    min-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: 300px;
	
	margin-left: auto;
	margin-right: auto;
    
    margin-top: var(--space-40);
    margin-bottom: var(--space-40);
}
#STEP_LIST .Num {
	position: relative;
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
    border: 1px solid var(--sub2-color);
    border-radius: 9999px;
    font-size: .875em;
    white-space:nowrap;
}
#STEP_LIST .Num.active {
    color: #fff;
}
#STEP_LIST .Num.active:before {
    position: absolute;
    left: 2px;
    top: 2px;
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 9999px;
    background: rgba(70,134,217,.7);
    box-shadow: 0 3px 6px rgba(0,0,0,.5)!important;
    z-index: -3;
}
@media screen and (min-width:769px){
    #STEP_LIST {
        max-width: 500px;
    }
	#STEP_LIST .Num {
		width: 70px;
		height: 70px;
	}
}


/* ------------------------------------------------------------------------
    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: 1em;
	padding-bottom: 1em;
	padding-left: .5em;
	padding-right: .5em;
	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;
}

/* select */
.SelectBox {
	position: relative;
}
.SelectBox:after {
	position: absolute;
	right: 5px;
	bottom: 2px;
	transform: translateY(-50%);
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 7px 7px;
	border-color: transparent transparent #323232 transparent;
}

/* button color */
.Form-Btn a.Delete,
input[type=submit].Back {
	background:#ccc;
}
.Form-Btn a.Delete:hover,
input[type=submit].Back:hover {
	background:#999;
}
.Form-Btn a.Green,
input[type=submit].Green {
	background:var(--base-color);
    color: #fff;
}

/* ------------------------------------------------------------------------
    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;
}
