@charset "utf-8";


/* -- form#mail_form, dl, dt, dd -------------------------------------------------------------------------------- */
body {
	font-family: source-han-sans-japanese, sans-serif !important;
}

.step_formcontents {
	width: 90%;
	margin: 30px auto;
}
.step_formcontents h2 {
	font-size: 20px;
	font-weight: 500;
	text-align: center;
	margin-bottom: 5px;
}
.step_formcontents h3 {
	font-size: 14px;
	text-align: center;
	margin-bottom: 20px;
}

.step_formcontents h3 span {
	font-size: 18px;
	padding: 0 5px;
	color: #2595f0;
	font-weight: bold;
}

/* ステップナンバー */
.c-form-step__step-items {
	width: 100%;
	max-width: 160px;
	margin: 0 auto 10px;
	display: flex;
	justify-content: space-between;
  }
  .c-form-step__step-items .c-form-step__step-items__item-box {
	width: 30px;
	border-radius: 2px;
  }
  
  .c-form-step__step-items::after {
  content: none !important;
  }
  .c-form-step__step-items__item-box{
	position: relative;
	width: 100%;
	height: 30px;
	text-align: center;
	padding: 5px;
	border: 1px solid #71b3e9;
	color: #71b3e9;
  	line-height: 18px;
  }
  .c-form-step__step-items__item-box.current {
	transition: 0.8s;
	background-color: #71b3e9;
	color: #fff;
	border: 1px solid #71b3e9;
  }

/* .c-form-step__wrapper-box {
display: none;
}

.c-form-step__wrapper-box.current {
display: block;
} */




/* -- フォーム -------------------------------------------------------------------------------- */

form#mail_form {
	width: 100%;
}

form#mail_form .stepform_contents {
	width: 95%;
	max-width: 450px;
	margin: 0 auto;
    background-color: #fff;
    padding: 30px 15px;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(201,225,253,0.1);
    box-sizing: border-box;
}

form#mail_form dl {
	width: 100%;
	max-width: 350px;
	margin: 0 auto;
}

form#mail_form dl:after,
form#mail_form dl dt:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

form#mail_form dl dt.alignC,._title {
	font-size: 16px;
	margin: 10px 0!important;
}

form#mail_form dl dd {
	width: 100%;
	margin-top: 5px;
	margin-bottom: 35px;
}
form#mail_form dl dd .sub_dd {
	color: #487791;
	font-size: 12px;
}

form#mail_form dl dt {
	margin-bottom: 10px;
}
form#mail_form dl dt span {
	display: block;
	margin-top: 10px;
	font-size: 12px;
	color: #487791;
}
form#mail_form dl dt span.hissu {
	display: inline-block;
	margin-right: 5px;
	font-size: 12px;
	background-color: #eb909b;
	color: #fff;
	font-weight: bold;
	padding: 3px 5px;
	border-radius: 3px;
}


/* -- error message -------------------------------------------------------------------------------- */

form#mail_form dl dd span.error_blank,
form#mail_form dl dd span.error_format,
form#mail_form dl dd span.error_match {
	display: block;
	color: #ff0000;
	margin-top: 5px;
}


/* -- input, select, textarea -------------------------------------------------------------------------------- */

form#mail_form input[type="text"] {
	width: 100%;
	padding: 10px 2%;
    border: 1px solid #cecece;
	border-radius: 3px;
	-webkit-appearance: none;
	font-size: 16px;
	font-family: inherit;
	line-height: normal;
	transition: 0.8s;
	margin-bottom: 5px;
}

form#mail_form input[type="email"],
form#mail_form input[type="tel"] {
	width: 100%;
	padding: 10px 2%;
    border: 1px solid #cecece;
	border-radius: 3px;
	-webkit-appearance: none;
	font-size: 16px;
	font-family: inherit;
	line-height: normal;
	transition: 0.8s;

}

form#mail_form input[type="text"]:focus,
form#mail_form input[type="email"]:focus,
form#mail_form input[type="tel"]:focus,
form#mail_form textarea:focus {
    border: 1px solid #75b7d3;
    box-shadow: 0 0 5px rgba(34, 152, 231, 0.1);
}


.area_section .area_select {
	width: 100%;
	border: 1px solid #ddd;
	border-radius: 5px;
	padding: 0 15px;
	margin-bottom: 10px;
  }
  
  .area_section .area_select .area_select_title {
	padding: 15px 0;
  }
  
  .area_section .area_select .area_select_title {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 1px;
	transition: all .3s;
  }
  
  .area_section .area_select .area_select_title:not(.arrow_none) {
	cursor: pointer;
  }
  
  .area_section .area_select .area_select_title:not(.arrow_none):hover {
	color: #468fbf;
  }
  
  .area_section .area_select .area_select_title:not(.arrow_none)::before {
	position: absolute;
	content: "";
	border-bottom: solid 2px #003654;
	border-right: solid 2px #003654;
	width: 8px;
	height: 8px;
	transform: rotate(45deg);
	top: 40%;
	right: 0px;
	font-size: 8px;
	transition: all .3s;
  }
  
  .area_section .area_select .area_select_title:not(.arrow_none).close::before {
	content: "";
	transform: rotate(-135deg);
  }
  
  .area_section .area_select .area_select_items {
	display: none;
	padding-bottom: 20px;
	font-size: 16px;
  }

.area_section .area_select .area_select_items .radio_contents ul {
	justify-content: left!important;
}
.area_section .area_select .area_select_items .radio_contents ul li {
  width: 32%!important;
}
.area_section .area_select .area_select_items .radio_contents ul li:not(:nth-child(3n)) {
	margin-right: 1%;
  }
  
  .area_section .area_select .area_select_items .area_select_items_title {
	display: block;
	font-weight: bold;
	margin-bottom: 5px;
	color: #756f62;
  }
  
  .area_section .area_select .area_select_items p {
	display: block;
	margin-bottom: 10px;
	line-height: 1.5;
  }
  


/* -- radio checkbox -------------------------------------------------------------------------------- */
form#mail_form input[type="radio"],
form#mail_form input[type="checkbox"] {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
}
form#mail_form .radio_contents,
form#mail_form .checkbox_contents {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
form#mail_form .radio_contents .radio_list,
form#mail_form .checkbox_contents .checkbox_list {
width: 49%;
font-size: 14px;
margin-bottom: 10px;
}
.radio_label,
.check_item {
display: block;
padding: 7px 2px;
font-size: 12px;
line-height: 1.5;
text-align: center;
font-weight: 500;
letter-spacing: 1px;
border-radius: 3px;
transition: all .2s;
border: 1px solid #bbbbbb;
cursor: pointer;
}

input[type="radio"]:checked + .radio_label,
input[type="checkbox"]:checked + .check_item {
  background: #90caf8;
  color: #fff;
  border: 1px solid #90caf8;
  border-radius: 3px;
  border: 1px solid #90caf8;
}

input[type="radio"]:focus + .radio_label,
input[type="checkbox"]:focus + .check_item {
  outline: none;
  border: 1px solid #75b7d3;
}

form#mail_form .radio_contents ul,
form#mail_form .checkbox_contents ul {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
form#mail_form .radio_contents ul li,
form#mail_form .checkbox_contents ul li {
	width: 49%;
	margin-bottom: 5px;
	list-style-type: none;
}

form#mail_form ul li label {
	display: block;
}




/* -- select -------------------------------------------------------------------------------- */
form#mail_form .select_contents {
	position: relative;
	width: 100%;
	/* max-width: 300px; */
	box-sizing: border-box;
	margin: 0 auto;
	overflow: hidden;
	border: 1px solid #cecece;
	border-radius: 3px;
	background: #ffffff;
	font-size: 14px;
}
.select_birth {
	width: 100%;
	display: flex;
	justify-content: space-between;
  }

.select_birth .year {
	width: 50%!important;
}
.select_birth .month,
.select_birth .date {
	width: 23%!important;
}
	i{
	  font-size: 10px;
	  color: #888;
	  cursor: pointer;
	  transition: all .3s ease-in-out;
	  position: absolute;
	  right: 10px;
	  top: 50%;
	  transform: translateY(-50%);
	}

	
form#mail_form select {
	width: 100%;
	padding: 15px 10px;
	cursor: pointer;
	background-color: #fff;
}



form#mail_form textarea {
	display: block;
	width: 100%;
	height: 150px;
	padding: 7px 2%;
	resize: vertical;
	border: 1px solid #cccccc;
	border-radius: 3px;
	-webkit-appearance: none;
	font-size: 16px;
	font-family: inherit;
	line-height: normal;
}


.text_small input[name="salary"] {
	width: 60%!important;
	max-width: 300px;
	margin-right: 10px;
}


/* -- privacypolicy_text privacy_text_box-------------------------------------------------------------------------------- */
.privacypolicy_text {
	width: 100%;
	max-width: 350px;
	margin: 0 auto 15px;
}

.privacypolicy_text p span {
	display: block;
	font-weight: bold;
	text-align: center;
}
.privacypolicy_text p {
	line-height: 1.7;
	font-size: 13px;
}
.privacypolicy_text p a {
	color: #2595f0;
	margin-right: 5px;
}
.privacy_text_box {
	width: 100%;
	max-height: 150px;
	border: 1px solid #cecece;
	box-sizing: border-box;
	padding: 15px 10px;
	margin: 15px auto 30px;
	overflow: auto;
}

.privacy_text_box p,
.privacy_text_box ul li {
	font-size: 13px;
	line-height: 1.5;
	text-align: left;
}

  
.privacy_text_box ul {
	margin: 15px 0;
}



/* -- 郵便番号検索　住所 -------------------------------------------------------------------------------- */

form#mail_form .zip_number input[type="text"] {
	width: 60%!important;
}
form#mail_form input[name="postal"] + a {
	display: inline-block;
	padding: 8px 5px;
	border-radius: 3px;
	background: #979797;
	font-size: 12px;
	line-height: normal;
	color: #ffffff;
	text-decoration: none;
	margin-left: 10px;
}

form#mail_form input[name="postal"] + a:hover {
	cursor: pointer;
	background: #7a7a7a;
}

form#mail_form input[name="address"] {
	width: calc( 100% - 4% - 2px );
}




.checkbox {
	/* width: 180px; */
	margin: 0 auto; 
	padding: 30px 0;
  text-align: center;
}
#agree_check {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}


.checkbox input[type="checkbox"] + label {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 20px;
	font-size: 16px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;

  }

  .checkbox input[type="checkbox"] + label:last-child { margin-bottom: 0; }

  .checkbox input[type="checkbox"] + label:before {
        content: '';
        display: block;
        width: 25px;
        height: 25px;
        border: 1px solid #aaa;
        position: absolute;
        left: 0;
        /* top: -4px; */
        opacity: .6;
        -webkit-transition: all .12s, border-color .08s;
        transition: all .12s, border-color .08s;
      }

	  .checkbox input[type="checkbox"]:checked + label:before {
        width: 13px;
        top: -9px;
        left: 5px;
        border-radius: 0;
        opacity: 1;
        border-bottom-color: #f16273;
        border-right-color: #f16273;
        border-top-color: transparent;
        border-left-color: transparent;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
      }





/* -- btn_block ----------------------------------------------------------------------------------------------------------------------- */
.btn__link.disabled, .btn__link:disabled {
	opacity: .2;
  }
  
.btn_block {
	width: 100%;
	max-width: 350px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
  }
  .btn_block .next_btn {
	width: 100%;
	padding: 15px 0;
	font-size: 15px;
	font-weight: bold;
	text-align: center;
	border-radius: 5px;
	background-color: #fff;
	color: #fff;
	background-color: #468fbf;
	border: 1px solid #468fbf;	
	transition: .3s;
	margin-bottom: 10px;
  }
  .btn_block .next_btn:hover {
	opacity: .8;
  }
  .btn_block .return_btn {
	position: relative;
	width: 100px;
	padding: 5px 0 5px 20px;
	color: #468fbf;
	font-weight: 500;
  }
  .btn_block .return_btn::before {
	content: '';
	width: 6px;
	height: 6px;
	border: 0;
	border-bottom: solid 2px #468fbf;
	border-left: solid 2px #468fbf;
	position: absolute;
	top: 50%;
	left: 3px;
	margin-top: -4px;
	transform: rotate(45deg);
	transition: left .3s;
  }
  .btn_block .return_btn:hover::before {
	left: 0;
  }

  .btn_block_last .return_btn {
	color: #468fbf;
	font-weight: 500;
	transition: .15s;
  }

  .btn_block_last  .return_btn:hover {
	opacity: .6;
  }


  /* -- 確認画面に進むのボタン -------------------------------------------------------------------------------- */

  form#mail_form #form_submit {
	width: 100%;
	margin: 0 auto;
	margin-bottom: 5px;
}

form#mail_form input[type="button"] {
	display: block;
	width: 100%;
	max-width: 350px;
	margin: 15px auto;
	padding: 15px 25px;
	border: 1px solid #468fbf;
	border-radius: 3px;
	background: #468fbf;
	font-size: 16px;
	font-weight: bold;
	color: #ffffff;
	font-family: inherit;
	-webkit-appearance: none;
	text-align: center;
}

form#mail_form input[type="button"]:hover {
	cursor: pointer;
	background: #1b7ec0;
	border: 1px solid #1b7ec0;
}

  
/* -- loading -------------------------------------------------------------------------------- */

div.loading-layer {
	width: 100vw;
	height: 100vh;
	background: rgba( 0, 0, 0, 0.7 );
	position: fixed;
	left: 0px;
	top: 0px;
	z-index: 10000;
}

span.loading {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border-top: 5px solid rgba( 255, 255, 255, 0.2 );
	border-right: 5px solid rgba( 255, 255, 255, 0.2 );
	border-bottom: 5px solid rgba( 255, 255, 255, 0.2 );
	border-left: 5px solid #ffffff;
	-webkit-transform: translateZ( 0 );
	-ms-transform: translateZ( 0 );
	transform: translateZ( 0 );
	-webkit-animation: load-circle 1.0s linear infinite;
	animation: load-circle 1.0s linear infinite;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -30px;
	margin-left: -30px;
}

@-webkit-keyframes load-circle {
	0% {
		-webkit-transform: rotate( 0deg );
		transform: rotate( 0deg );
	}
	100% {
		-webkit-transform: rotate( 360deg );
		transform: rotate( 360deg );
	}
}

@keyframes load-circle {
	0% {
		-webkit-transform: rotate( 0deg );
		transform: rotate( 0deg );
	}
	100% {
		-webkit-transform: rotate( 360deg );
		transform: rotate( 360deg );
	}
}




.list_default {
	list-style-type: disc;
	padding-left: 1.4em;
	line-height: 1.5;
}
.list_default li {}
._text {
	line-height: 1.5;
}
.layout01 {
	width: 100% !important;
	/* margin-top: 1.5em !important; */
}
.layout01 dt {}
.layout01 dd {}
.layout01 dd:last-child {
	/* margin-bottom: 0 !important; */
}
.sub {
	width: 100%;
	max-width: 350px;
	margin: 0 auto;
}


.radio_list {
  display: flex;
  flex-wrap: wrap;
}

.radio_list li {
  line-height: 1;
  padding: .5rem  0;
}

.radio_list li input[type='radio'] {
  display: none;
}

.radio_list li:not(:last-child) label {
  margin-right: 2rem;
}

.radio_list li label {
  position: relative;
  padding-left: 1.3rem;
}

.radio_list li label::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1em;
  height: 1em;
  border: 1px solid #dddddd;
  border-radius: 50%;
  background: #eee;
}

.radio_list li input:checked + label::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: .23em;
  width: .52em;
  height: .52em;
  background: #468fbf;
  border-radius: 50%;
}