@charset "UTF-8";
/*  add */
.mt_dd{
    margin-top:5px;
}
/*
.new-entry .button_back,
.mid-entry .button_back{
    visibility: hidden;
}
*/
.bg{
    background: #333;
}
/*  */
*{
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}
nav ul {
    list-style:none;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    text-decoration: none;
}
table {
    border-collapse:collapse;
    border-spacing:0;
}
/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}
input, select {
    vertical-align:middle;
}
/*===追加記述===*/
*,
*::before,
*::after {
    box-sizing: border-box;
}
img {
    width: 100%;
    height: auto;
}
li {
    list-style: none;
}
button {
    background: none;
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
}
input[type="file"]{
	line-height:1;
}

/*----------------もしかするとページ共通系？----------------*/
.page-title {
	background-color: #f5f5f5;
	color: #dc0008;
	font-size: 14px;
	line-height: 1;
	padding: 80px 0 39px;
	text-align: center;
}
.page-title-en {
	display: block;
	font-size: 56px;
	font-weight: 700;
	margin-bottom: 12px;
}
.title-area-txt {
    line-height: 2.2;
}
.entry_location .pc{
    display: block;
}
.entry_location .sp{
    display: none;
}
@media only screen and (max-width: 767px) {
	.page-title {
		font-size: 12px;
		padding: 35px 0 20px;
    }
	.page-title-en {
		display: block;
		font-size: 32px;
		margin-bottom: 6px;
    }
	.title-area-txt {
		margin: 0 auto;
		width: 89.4%;
    }
	.title-area-txt {
        line-height: 1.8;
    }
    .entry_location .pc{
        display: none;
    }
    .entry_location .sp{
        display: block;
    }
}
/*----------------//ここまで//----------------*/

/* ---------------- ENYRY共通 ---------------- */
.main-contents{
    margin-bottom: 200px;
    line-height: 1.6;
}
.main-contents img{
    max-width:100%
}
.main-contents section{
    margin:0 auto;
}
section.title-area {
    margin-bottom: 114px;
}
entry_header,
.entry_form{
    width: 800px;
    margin:0 auto 80px;
}
.main-contents section.title-area{
    width:100%;
}
.entry_header{
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.entry_note{
    margin-bottom: 80px;
}
section.entry_fin {
    text-align:center;
}
.complete .entry_note{
    display: none;
}
@media only screen and (max-width: 767px) {
	.main-contents{
        margin-bottom: 200px;
    }
	section.title-area {
        margin-bottom: 55px;
    }
	entry_header,
	.entry_form{
		width: 89.4%;
	}
	section.entry_fin {
		text-align:left;
	}
}

/*========== フォーム ==========*/
form tr{
    display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify; /* Android4.3以下、Safari3.1〜6.0 */
	-ms-flex-pack: justify; /*IE10*/
	justify-content: space-between;
}
form tr+tr{
    margin-top: 40px;
}
form th{
    padding: 10px 0;
    width: 35%;
    font-weight: bold;
}
form td{
    width: 65%;
}
.entry-confirm form th{
    padding: 0;
    width: 30%;
}
.entry-confirm form td{
    width: 70%;
}
.required{
	display: inline-block;
	margin:-4px 0 0 8px;
	padding:3px 6px;
	background: #DC0008;
	color:#fff;
	line-height: 1;
	vertical-align:middle;
	font-size: 11px;
}
@media only screen and (max-width: 767px) {
	form tr{
        display: block;
    }
	form th,
    form td{
        display: block;
        width: 100%;
        padding:5px 0;
    }
    .entry-confirm form th,
    .entry-confirm form td{
        width: 100%;
    }
}
input[type="text"],
input[type="email"],
select,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #F2F2F2;
    min-height: 50px;
    border: none;
    border-radius: 0;
    outline: none;
	width: 100%;
	font-size: 14px;
	padding:15px;
	box-sizing: border-box;
}
input::placeholder,
textarea::placeholder {
  color: #999;
}
textarea{
    height: 120px;
}
select{
	padding-rgiht:20px;
/* 	color:#bbb; */
	background: url(https://recruit.hatake-ao.com/wp-content/themes/hatake-recruit/common/image/entry/select_arrow.svg) right center no-repeat #F2F2F2;
	background-size:12px;
}
/*  select のグレー文字*/
/* .Selectclor,option[value=""]{color:#bbb} */
.Selectclor2,
.Selectclor2,
option{
    color:#000;
}

/* 入力チェック用 */
input[type="checkbox"].hisu_check {
    display: none;
}
/*
input[type="checkbox"].hisu_check + span::before {
    display: inline-block;
    content: '';
    width: 16px;
    height:16px;
    border: 1px solid #0F3787;
    border-radius: 20px;
    margin:15px 0;
}
input[type="checkbox"].hisu_check:checked + span::before {
    background: url("https://recruit.hatake-ao.com/wp-content/themes/hatake-recruit/common/image/entry/check.svg") no-repeat 2px 2px;
    background-size: 10px
}
*/
/* 性別・生年月日 */　
/* flexバグ用 */
.sei{
	display: -webkit-flex;  
	display: flex;
	-webkit-box-pack: justify; /* Android4.3以下、Safari3.1〜6.0 */
	-ms-flex-pack: justify; /*IE10*/
	justify-content: space-between;
}
.hide{
    display: none;
}
/* 性別・生年月日 */
.gender,
.birthday{
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify; /* Android4.3以下、Safari3.1〜6.0 */
	-ms-flex-pack: justify; /*IE10*/
	justify-content: space-between;
}
.gender .horizontal-item{
	display:block;
	width: 48%;
	height: 50px;
	font-size: 14px;
	background: #F2F2F2;
	box-sizing: border-box;
	padding:14px;
}
input[type="radio"]{
	margin: -4px 10px 0 0;
    padding:0;
}
.birthday div{
	display:inline-block;
	width: 48%;
	height: 50px;
	font-size: 14px;
    padding:0;
}
.birthday .year{
    width: 48%;
}
.birthday .year label{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.birthday .year input{
    margin-right: 5px;
}
.birthday .month{
    width: 22%;
}
.birthday .day{
    width: 22%;
}

/* 確認画面用 */
.confirm dd{
    padding-top:15px;
}
.confirm .birthday p{
    background: #fff;
}
/*  ファイル添付 */
.file_block{
    margin-bottom:100px;
}
.file_block.n1{
    margin-bottom:20px;
}
.file input{ 
    position: relative;
	/* height: 50px; */
	padding:14px 10px;
	background: #F2F2F2;
}
.file p.file_note{
	margin: 20px 0;
    position: relative;
	font-size: 12px;
    color: #666;
}
input[type="file"]{
    width: 95%;
}
/* 編集で戻った時の添付ファイルテキストのズレ chrome*/
.entry .mw-wp-form_file{
	position: absolute;
	top:0px;left:110px;
	width: 350px;
	display: inline-block;
}
/* 確認画面用 */
.confirm .file div{
    background: #fff;
}
@-moz-document url-prefix() { /* firefox */
	.entry .mw-wp-form_file {
        left:90px;
    }
}

/* プライバシーポリシーのリンク */
.pp_link{
    font-size: 14px;
    margin-bottom: 40px;
}
.pp_link a{
    text-decoration: underline;
    color: #999;
}
.pp_link a:hover{
    color:#333;
}
.submit_area{
    text-align: center;
}

@media only screen and (max-width: 767px) {
	input[type="checkbox"].hisu_check + span::before {
        display: none;
        content: '';
        width: 14px;
        height:14px;
        border: 1px solid #0F3787;
        border-radius: 20px;
        margin:15px 0 0 2px
	}
	input[type="checkbox"].hisu_check:checked + span::before {
        background: url("https://recruit.hatake-ao.com/wp-content/themes/hatake-recruit/common/image/entry/check.svg") no-repeat 1px 1px;
        background-size: 10px;
    }
	.file_block.n1{
        margin-bottom:0px;
    }
}

/* -------------　submitボタン　リセット -------------- */
input[type="submit"]{
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
    width: 400px;
    height: 100px;
    color:#fff;
    font-size: 16px;
    font-family: inherit;
    font-weight: bold;
    letter-spacing: 0.1em;
    background-color: transparent
}

/* -------------　submitボタン -------------- */
/*     submit    */
.button_submit{
    display: inline-block;
    width: 400px;
    height: 100px;
    text-align: center;
    line-height: 100px;
    outline: none;
    position: relative;
    z-index: 2;
    background-color: #DC0008;
    line-height: 50px;
    overflow: hidden;
}
.button_submit,
.button_submit::before{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.button_submit::before {
    position: absolute;
    z-index: -1;
    display: block;
    content: '';
    bottom: -100%;
    width: 100%;
    height: 100%;
}
.button_submit:hover::before{
    bottom: 0;
    background-color: #c80004;
}
.button_submit input[type="submit"]{
    height: 100px;
    color:#fff;
}
.button_submit:after{
	position: absolute;
	top:45px;
    right:25px;
  	display: inline-block;
	content: '';
	background-image: url(https://recruit.hatake-ao.com/wp-content/themes/hatake-recruit/common/image/entry/submit_arrow.png) ;
	background-repeat: no-repeat;
  	width: 38px;
  	height: 6px;
  	background-size: contain;
  	vertical-align: middle;
	transition: all .25s;
}
.button_submit:hover::after{
	right:15px;
}

/* -------------　submitボタン  の  disabled（使用不可）  -------------- *
.submit_confirm[disabled] {
	overflow: hidden;
	margin-top:-1px;
    background-color: #aaa;
    cursor: not-allowed;
}

/*　 submitボタン が disabledでない時、.btn_onがプラスされる *
.button_submit.btn_onn{background: #0467F2}
.button_submit.btn_on:after {
	position: absolute;
	z-index: 1000;
	top:47px;
    right:15px;
  	display: inline-block;
	content: '';
	background-image: url(https://recruit.hatake-ao.com/wp-content/themes/hatake-recruit/common/image/entry/submit_arrow.png) ;
	background-repeat: no-repeat;
  	width: 38px;
  	height: 6px;
  	background-size: contain;
  	vertical-align: middle;
	transition: all .4s;
}
.button_submit.btn_on:hover:after{
	right:5px;
	transition: all .4s;
}
*/

/*  confirmの戻るボタン */
.button_back{
	border: solid 1px #ccc;
	display:block;
    width: 400px;
    height: 56px;margin-left:auto;margin-right:auto;
    text-align: center;
    line-height: 100px;
    outline: none;
    position: relative;
    z-index: 2;
    background-color: #fff;
    line-height: 50px;
    overflow: hidden;
}
.button_back,
.button_back::before{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.button_back::before {
    position: absolute;
    z-index: -1;
    display: block;
    content: '';
    bottom: -100%;
    width: 100%;
    height: 100%;
}
.mw_wp_form_input .button_back{
    display: none;
}
.button_back:hover::before{
  bottom: 0;
}
.button_back input[type="submit"]{
	height: 56px;
	color:#222222;
	font-family: inherit;
}
.button_back input[type="submit"]:hover {
	color: #DC0008;
}
.button_back:after{
	position: absolute;
	top:25px;left:25px;
  	display: inline-block;
	content: '';
	background-image: url(https://recruit.hatake-ao.com/wp-content/themes/hatake-recruit/common/image/entry/submit_arrow3.png) ;
	background-repeat: no-repeat;
  	width: 38px;
  	height: 6px;
  	background-size: contain;
  	vertical-align: middle;
	transition: all .25s;
}
.button_back:hover:after{
	left:15px;
	transition: all .25s;
	background-image: url(https://recruit.hatake-ao.com/wp-content/themes/hatake-recruit/common/image/entry/submit_arrow2.png)}
@media only screen and (max-width: 767px) {
	input[type="submit"],
	.button_submit,
	.button_back{
		width: 100%;
    }
	.mwform-file-delete{
		position: absolute;
		top:15px;
        right:5px
    }
}


/*=================== confirm ページ===================*/
.entry-confirm .required{
    display:none;
}
.entry-confirm dt{
    color:#999;
}
.entry-confirm dd{
    padding-top:15px;
}
.entry-confirm .pc,
.entry-confirm .birthday{
    display: block;
}
.entry-confirm .birthday p{
	display: inline-block;
	width:auto;
	line-height: 14px;
	background: none;
}
.entry-confirm .birthday p.year,
.entry-confirm .birthday p.month,
.entry-confirm .birthday p.day{
    width: auto;
    padding-right:20px;
}
.entry-confirm input[type="radio"]{
	margin:-5px 10px 0 0;
    padding:0;
}
.entry-confirm .file div{
    background-color: transparent;
    padding:0;
}
.entry-confirm .file_note,
.entry-confirm .pp_link{
    display: none;
}
.entry-confirm .button_submit{
    margin-bottom:15px;
}
.entry-confirm .button_submit:after{
	background-image: url(https://recruit.hatake-ao.com/wp-content/themes/hatake-recruit/common/image/entry/submit_arrow.png);
}

/*  矢印hover */
.entry-confirm .button_submit:hover:after{
	right: 15px;
	transition: all .25s;
}
@media only screen and (max-width: 767px) {
	.entry-confirm dd{
        padding:4px 0 20px;
        font-size: 14px;
    }
}
/*=================== fin ページ===================*/
.entry-fin .entry_note{
    display: none;
}
.entry-fin {
    text-align: center;
}
.fin_h3{
    font-size:28px;
    margin-bottom:50px;
    font-weight: bold;
}
.bt_top{
    text-align: center;
    margin-top:150px;
}
.bt_top a{
    display: inline-block;
    width: 400px;
    height: 56px;
    text-align: center;
    line-height: 56px;
    outline: none;
    position: relative;
    z-index: 2;
    background-color: #fff;
    border: solid 1px #ccc;
    color:#DC0008;
    overflow: hidden;
}
.bt_top a,
.bt_top a::before{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.bt_top a::before {
    position: absolute;
    z-index: -1;
    display: block;
    content: '';
    bottom: -100%;
    width: 100%;
    height: 100%;
}
.bt_top a:hover::before{
    bottom: 0;
    background-color: #c3c3c3;
}
.bt_top a:after{
	position: absolute;
	top:25px;left:15px;
  	display: inline-block;/*忘れずに！*/
	content: '';
	background-image: url(https://recruit.hatake-ao.com/wp-content/themes/hatake-recruit/common/image/entry/submit_arrow2.png) ;
	background-repeat: no-repeat;
  	width: 38px;/*画像の幅*/
  	height: 6px;/*画像の高さ*/
  	background-size: contain;
  	vertical-align: middle;
	transition: all .25s;
}
.bt_top a:hover:after{
	left:5px;
	transition: all .25s;
}
@media only screen and (max-width: 767px) {
	.fin_h3{
        font-size:24px;
    }
	.bt_top{
        margin-top:80px;
    }
	.bt_top a{
        width: 85%;
    }
}

/* add 2024 */
.main-contents .entry_header{
    margin: 80px auto!important;
    padding: 0;
    max-width: 800px;
    width: 100%;
}
.main-contents .entry_form,
.main-contents .entry-confirm,
.main-contents .entry-fin{
    margin: 0 auto!important;
    padding: 0;
    max-width: 800px;
    width: 100%;
}
.main-contents .bl_entryCont table{
    margin-bottom: 40px;
    width: 100%;
}
.mw_wp_form_input .button_back{
    display: none;
}
#property option:nth-child(1){
    color:#666;
}
.gender{
    text-align:left;
}
@media only screen and (max-width: 949px) {
    .main-contents .entry_header,
    .main-contents .entry_form,
    .main-contents .entry-confirm,
    .main-contents .entry-fin{
        padding: 0 30px;
    }
}
@media only screen and (max-width: 767px) {
    .main-contents .entry_header,
    .main-contents .entry_form,
    .main-contents .entry-confirm,
    .main-contents .entry-fin{
        padding: 0 15px;
    }
}

.bl_tdCol+.bl_tdCol{
    border-top: 1px solid #ccc;
    margin-top: 15px;
    padding-top: 15px;
}
.bl_tdCol dl{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
.bl_tdCol input+input,
.bl_tdCol p+input,
.bl_tdCol dl+dl{
    margin-top: 10px;
}
.bl_tdCol dl dt,
.bl_tdCol dl dd{
    font-size: 14px;
    width: 100%;
    padding: 0;
}
.bl_tdCol dl dt{
    color: #666;
    font-weight: bold;
    width: 20%;
}
.bl_tdCol dl dd{
    width: 75%;
}
@media (min-width:768px){
    .bl_tdCol dl dt{
        width: 15%;
    }
    .bl_tdCol dl dd{
        width: 80%;
    }
}

/* エラーテキスト */
.el_error{
    color: #E50012;
}

