/* ラベル */
.form .form_label{
    font-size: 16px;
    font-weight: 600;
}
.form_sub_label{
    font-size: 15px;
    font-weight: 600;
}
.label_note{
    font-size: 13px;
    font-weight: 500;
}
/* エラーテキスト */
.error_text{
    color: red;
    font-size: 12px;
}
/* 2列の時↓ */
@media screen and (min-width: 768px) {
.input_area.tow_lines .error_text{
    margin-top: -20px;
    margin-bottom: 10px;
}
}

/* バッヂ */
.required_badge{
    font-size: 13px;
    color: #fff;
    padding: 1px 9px;
    background-color: #F76E44;
    border-radius: 50px;
    margin-left: 10px;
    white-space: nowrap;
}
@media screen and (min-width: 768px) {
    .form_label.tow_lines .required_badge{
        position: relative;
        top: -25px;
    }
}

/***************************************************
 * ボタン系
 **************************************************/
/* 追加ボタン */
.btn.add_btn{
    min-width: 0;
    padding: 7px 0%;
    margin-bottom: 10px;
}
/* シンプルボタン 黒 */
.btn_simple_black{
    font-size: 15px;
    color: #fff;
    padding: 5px 9px;
    background-color: #4E4949;
    border-radius: 5px;
}


/* インプット要素 */
/* 通常インプット↓ */
.form-control{
    width: 100%;
    padding: 12px 13px;
    border-radius: 5px;
    border: 1px solid #E5DFDC;
    font-size: 16px;
}
.form-control.tow_lines{
    resize: none;
    padding: 8px 21px 8px 14px;
    height: 67px;
    letter-spacing: 0.05em;
    line-height: 1.8;
}
.form-control:focus,
.form-select:focus {
    outline: none;
    border: 1px solid #F76E44;
}
@media screen and (min-width: 768px) {
    .form-control{
        padding: 16px 20px;
    }
    .form-control.tow_lines{
        height: 49px;
        padding: 16px 20px;
    }
}

/**********************************************
 * セレクトボックス
 **********************************************/
select{
    position: relative;
    -webkit-appearance: none;
    appearance: none;
}
select::-ms-expand {
    display: none;
}
.select_cell{
    display: flex;
    position: relative;
}
.form-select{
    border: 1px solid #E5DFDC;
    padding: 12px 11px;
    border-radius: 5px;
}
.select_cell::after {
    content: "";
    position: absolute;
    top: 18px;
    right: 30px;
    width: 5px;
    height: 5px;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    transform: rotate(45deg);
}
.select_cell .tail{
    vertical-align: middle;
    font-weight: 600;
    padding-left: 4px;
    padding-top: 17px;
}
.form-select{
    color: #4E4949;
}
@media screen and (min-width: 768px) {
    .form-select{
        padding: 17px 11px;
    }
    .select_cell{
        margin-right: 4.4%;
    }
    .select_cell::after {
        top: 23px;
        right: 41px;
    }
    .select_cell .tail {
        padding-left: 10px;
        padding-top: 27px;
    }
}

/**********************************************
 * 汎用セレクトボックス
 * ※form-selectはflexとセットになっているため、セレクトボックス装飾のみのクラスを別途作成
 **********************************************/
.form-select-rapper{
    position: relative;
    width: auto;
    display: inline-block;
}
.form-select-rapper select{
    border: 1px solid #E5DFDC;
    padding: 12px 11px;
    border-radius: 5px;
    color: #4E4949;
    min-width: 300px;
}
.form-select-rapper::after {
    content: "";
    position: absolute;
    top: 18px;
    right: 30px;
    width: 5px;
    height: 5px;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
    .form-select-rapper select{
        padding: 17px 11px;
    }
    .form-select-rapper::after {
        top: 23px;
        right: 10px;
    }
}

/**********************************************
 * 特殊なセレクトボックス
 **********************************************/
 .select_box {
	position: relative;
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
    box-sizing: border-box;
	border-color: inherit;
    z-index: 2;
}
.select_box {
	display: block;
	width: 100%;
    height: 38px;
    font-size: clamp(10%,12px,1.5rem);
	cursor: pointer;
}
.select_box ul {
    position: relative;
	list-style: none;
}
.select_box input {
    position: relative;
	color: inherit;
	font: inherit;
	margin: 0;
	background: transparent;
	outline: none;
	border: none;
	border-radius: 0;
	-webkit-appearance: none;
	        appearance: none;
	display:none;
}
.select {
	width: 100%;
	height: 95%;
	cursor: pointer;
	background-color: #fff;
	-webkit-box-shadow: 0 2px 0 white;
	        box-shadow: 0 2px 0 white;
	border-radius: 2px;
}
.select_expand{
	width: 0;
	height: 40px;
	position: absolute;
	top: 0;
	right: 0;
}
.select_expand::after{
	position: absolute;
	top: 1.2em;
	right: 0.5em;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	pointer-events: none;
	border-top: 6px solid rgba(0, 0, 0, 0.3);
	border-right: 6px solid transparent;
	border-left: 6px solid transparent;
	-webkit-transform: translate(-50%, -50%) rotate(0deg) scaleY(1.75);
	        transform: translate(-50%, -50%) rotate(0deg) scaleY(1.75);
	-webkit-transition: all 250ms cubic-bezier(0.4,0.25,0.3,1);
	        transition: all 250ms cubic-bezier(0.4,0.25,0.3,1);
	z-index: 2;
	opacity: 0.6;
}
.select_expand:hover::after{
	opacity: 1;
}
.select_expand:checked::after{
	-webkit-transform: translate(-50%, -50%) rotate(180deg) scaleX(-1) scaleY(1.75);
    transform: translate(-50%, -50%) rotate(180deg) scaleX(-1) scaleY(1.75);
}
.select_expandLabel{
	display: block;
	width: 100%;
	height: 40px;
	position: absolute;
	top: -37;
	left: 0;
	cursor: pointer;
}
.select_close{
	display: none;
}
.select_closeLabel{
	position: fixed;
	top: 0;
	left: 0;
	display: none;
}
.select_items{
	width: 100%;
	position: absolute;
	top: 37;
	left: 0;
	/* padding-top: 26px; */
}

.select_input {
	display: none;
}
.select_options{
    background-color: #ffffff;
    padding-bottom: 6%;
    border-radius: 2px;
    margin-top: -10px;
    /* max-height: 200px; */
    /* overflow-y: scroll; */
}
.job_select_options{
    margin-top: -20px;
}
.optgroup{
    -webkit-transition: all 250ms cubic-bezier(0.4,0.25,0.3,1);
    transition: all 250ms cubic-bezier(0.4,0.25,0.3,1);
    height: 0;
	overflow: hidden;
    width: 79%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 11px;
    color: #F76E44;
    white-space: nowrap;
}
.optgroup .line_box{
    display: inline-block;
    height: 1px;
    width: 100%;
    margin-left: 3px;
    background-color: #EFECE9;
}
.select_label{
	-webkit-transition: all 250ms cubic-bezier(0.4,0.25,0.3,1);
	        transition: all 250ms cubic-bezier(0.4,0.25,0.3,1);
	display: block;
	height: 0;
	line-height: 40px;
	overflow: hidden;
	color: #000;
    font-weight: 500;
	cursor: pointer;
    background-color: #ffffff;
    border-bottom: none;
	padding-left: 15px;
    width: 79%;
    margin: 0 auto;
}
.select_options .select_closeLabel{
    padding-left: 0;
    margin-left: 15px;
}
.select_placeholder{
	height: 37px;
	vertical-align: middle;
	position: absolute;
	top: 0;
	left: 0;
    letter-spacing: 0.07em;
    font-weight: 500;
	background-color: transparent;
}
.select_expand:checked + .select_closeLabel {
	display: block;
}
.select_expand:checked + .select_closeLabel + .select_options .select_label {
	height: 34px;
    border-bottom: 1px solid #EFECE9;
}
.select_expand:checked + .select_closeLabel + .select_options .optgroup{
    height: 18px;
    padding-top: 3vh;
}
.select_expand:checked + .select_closeLabel + .select_options .select_label:hover {
	background-color: #f7f7f7;
}
.select_expand:checked + .select_closeLabel + .select_options + .select_expandLabel {
	display: none;
}
.select_input:checked + .select_label {
	height: 26px;
	margin-top: -26px;
    vertical-align: middle;
    padding-bottom: 2px;
}


.select_items{
    height: auto;
    -webkit-transition: all 250ms cubic-bezier(0.4,0.25,0.3,1);
    transition: all 250ms cubic-bezier(0.4,0.25,0.3,1);
}
.select_items.close{
    height: 0;
    overflow: hidden;
    padding-bottom: 0;
    -webkit-transition: all 250ms cubic-bezier(0.4,0.25,0.3,1);
    transition: all 250ms cubic-bezier(0.4,0.25,0.3,1);
}

.select_area .select_box::after{
    content: '';
    width: 4px;
    height: 4px;
    border: 0;
    border-bottom: solid 1px #000;
    border-right: solid 1px #000;
    transform: rotate(45deg);
    position: absolute;
    top: -2px;
    right: 17px;
    bottom: 0;
    margin: auto;
}


/**********************************************
 * ラジオ
 **********************************************/
.radio_input {
    /* コンテンツの流れから切り離す */
    position: absolute;
    white-space: nowrap;
    width: 1px;
    height: 1px;
    /* オーバーフローしているコンテンツを隠す */
    overflow: hidden;
    /* 要素サイズを変更しうるプロパティのリセット */
    border: 0;
    padding: 0;
    /* 要素のどの部分が表示されるかを定義するもの */
    /* 古いブラウザでは使用できない */
    clip: rect(0 0 0 0);
    /* 最近のブラウザ用
     * コンテンツを非表示にする設定  */
    clip-path: inset(50%); 
    margin: -1px;
}
.form_radio{
    padding-left: 28px;
    position: relative;
    font-weight: 600;
    margin-right: 4.5%;
}
.form_radio::before,
.form_radio::after {
  content: "";
  display: block; 
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
.form_radio::before{
    background-color: #fff;
    border: 1px solid #E5DFDC;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    left: 0px;
}
.form_radio::after {
    background-color: #F36E44;
    border-radius: 50%;
    opacity: 0;
    width: 8px;
    height: 8px;
    left: 6px;
}

.radio_input:checked + .form_radio::after {
    opacity: 1;
}
@media screen and (min-width: 768px) {
    .form_radio{
        margin-right: 2.5%;
    }
}

/**********************************************
 * チェックボックス
 **********************************************/
input[type="checkbox"] {
    border-radius: 0;
    -webkit-appearance: none;
        -moz-appearance: none;
            appearance: none;
}
input[type="checkbox"] {
    position: relative;
    width: 18px;
    height: 18px;
    border: 1px solid #E5DFDC;
    vertical-align: -3px;
    border-radius: 3px;
    cursor: pointer;
}

input[type="checkbox"]:checked:before {
    position: absolute;
    top: 1px;
    left: 5px;
    transform: rotate(50deg);
    width: 4px;
    height: 8px;
    border-right: 2px solid #F76E43;
    border-bottom: 2px solid #F76E43;
    content: '';
}
.checkbox_label{
    font-size: 14px;
    margin-left: 5px;
    letter-spacing: 0.05em;
    cursor: pointer;
}
.form_check{
    margin-bottom: 13px;
}
/**********************************************
 * テキストエリア
 **********************************************/
.textarea_decoration{
    width: 100%;
    min-height: 218px;
    padding: 11px 13px;
    font-family:"Zen Kaku Gothic New", sans-serif;
    font-size: 14px;
    letter-spacing: 0.05em;
    border: 1px solid #E5DFDC;
    border-radius: 5px;
}

/**********************************************
 * パスワード
 **********************************************/
.input_groupe{
    display: flex;
}
.input_groupe_btn{
    width: 60px;
    background-color: #fff;
    padding: 12px 13px;
    border-radius: 0px 5px 5px 0px;
    border: 1px solid #E5DFDC;
    border-left: none;
}
.input_groupe input{
    border-right: none;
    border-radius: 5px 0px 0px 5px;
}
.input_groupe input:focus{
    outline: none;
    border: 1px solid #F76E44;
    border-right: none;
}
.input_groupe input:focus ~ .input_groupe_btn{
    border: 1px solid #F76E44;
    border-left: none;
}
.eye_icon{
    display: inline-block;
    background-image: url(/img/eye_icon.svg);
    width: 19px;
    height: 15px;
    background-position: center;
    background-repeat: no-repeat;
}
.input_groupe_btn.hidden .eye_icon{
    background-image: url(/img/eye_icon_slash.svg);
}

/* pleaceholder */
::placeholder {
color: #B5ADAD;
font-family:"Zen Kaku Gothic New", sans-serif;
letter-spacing: 0.05em;
}
/* 旧Edge対応 */
::-ms-input-placeholder {
color: #B5ADAD;
}
/* IE対応 */
:-ms-input-placeholder {
color: #B5ADAD;
}

/* フォーム全体 */
.form_row{
    margin-bottom: 28px;
}
/* 横にラベルが来る場合↓ */
.form_left_label{
    font-size: 13px;
    font-weight: 600;
}
.input_row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* height: 40px; */
    padding-top: 6px;
}
.input_row_box{
    display: flex;
}
.error-message-box{
    margin-bottom: 30px;
}
/* 2列のインプット要素↓ */
.input_row .input_cell .form-control{
    width: 74%;
}
.input_row .form-control{
    width: 87%;
}
.input_cell{
    display: flex;
    width: 47%;
    justify-content: space-between;
}
.input_cell .select_cell::after{
    right: 10px;
}
.select_box_area{
    display: flex;
    justify-content: space-between;
}


@media screen and (min-width: 768px) {
    .form_area{
        min-width: 642px;
    }
    .input_area{
        min-width: 473px;
    }
    /* 横並び */
    .form_row{
        display: flex;
        justify-content: space-between;
        margin-bottom: 14px;
    }
    .form_left_label{
        font-size: 16px;
        font-weight: 700;
        white-space: nowrap;
    }
    .input_cell{
        justify-content: flex-start;
        align-items: center;
        width: 43.5%;
    }
    .input_row{
        padding-top: 0;
        /* margin-bottom: 30px; */
    }
    .input_row:first-child{
        justify-content: flex-start;
    }
    .input_row .input_cell .form-control {
        width: 53%;
        margin-left: 13px;
    }
    .input_cell .select_cell::after {
        right: 14px;
    }
    .input_row .form-control {
        width: 85%;
    }

}

/* STEP表示 */
/* アピールテキスト */
.point_box{
	text-align: center;
    line-height: 1;
}
.point_text {
    position: relative;
    padding: 0 1.5rem 22px 1.5rem;
    font-size: 21px;
    font-weight: bold;
    display: inline-block;
    color: #d45f10;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}
.point_number{
    font-size: 40px;
    font-weight: 700;
    font-style: normal;
}
.point_text::before,
.point_text::after {
    position: absolute;
    top: 2rem;
    height: 1.8rem;
    content: '';
}
.point_text::before {
    left: -1rem;
	content: url(../img/icon_left.png);
}
.point_text::after {
    right: -1rem;
    content: url(../img/icon_right.png);
}
/* ステップバー */
.step-bar{
	display: flex;
	justify-content: center	;
	position: relative;
    margin-bottom: 55px;
}
.step-bar .step{
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    border: 2px solid #f0a881;
    border-radius: 200px;
    color: #f0a881;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 18px;
    font-weight: 600;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 1;
	height: 35px;
	width: 35px;
	font-size: 18px;
	font-family: "Roboto", serif;
	font-weight: 500;
	font-style: normal;
}
.step-bar .step:not(:first-child) {
    margin-left: 27px;
    position: relative;
}
.step-bar .step:not(:first-child)::before {
    background-image: linear-gradient(to right, #f0a881 2px, transparent 2px);
    background-repeat: repeat-x;
    background-size: 5px 2px;
    background-position: left bottom;
    content: "";
    display: block;
    height: 2px;
    left: -26px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 25px;
}
.step-bar .active{
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #f0a881;
    border-radius: 200px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-weight: 700;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}
.member_form .text, .comfirm .text{
    margin-bottom: 19px!important;
    line-height: 1.5;
}
/* ラジオボタン */
label{
	display: flex;
    align-items: center;
    gap: 10px;
}
/* 年代 */
.age_list{
	display: flex;
	gap: clamp(5px, 1.46vw, 20px);
}
.age_label,
.name_label,
.email_label,
.tel_label,
.consul_label,
.hope_day_label,
.post_label{
	margin-bottom: 1rem;
}
.form-btnWrap {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}
.post_text{
    font-size: 0.9rem;
}
.action_btn >div{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
/* 次へボタン */
.next-btn,
.btn_approval {
  display: block;
  background: url(../img/arrow-circle-right-solid@2x.png) no-repeat right 20px center;
  background-color: #b7b7b7;
  background-size: 35px;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  pointer-events: none;
  padding: 25px 20px;
  width: 400px;
  transition: all 0.5s ease ;
}
.next-btn.active,
.btn_approval.active {
    pointer-events: auto;
    color: #fff;
    background: url(../img/arrow-circle-right-solid@2x.png) no-repeat right 20px center;
    background-color: #ff9c3a ;
}
.next-btn,
.btn_approval{
    grid-area: next;
    position: relative;
    padding: 26px 0px;
    border-radius: 50px 50px 50px 0px;
    font-size: 16px;
    min-width: 300px;
}
/* 戻るボタン */
.prev-btn {
    width: 15%;
    background: none;
    text-align: left;
    font-size: 1rem;
    font-weight: bold;
    position: relative;
    padding-left: 25px;
    border: none;
}
.prev-btn:after{
    left: 0;
    border-left: 3px solid #3a3a3a;
    border-bottom: 3px solid #3a3a3a;
    content: "";
    display: block;
    height: 10px;
    position: absolute;
    top: calc(50% - 6px);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 10px;
}
/* 送信ボタン */
.submit {
  padding: 10px 20px;
  background: rgb(12,137,183);
  background: linear-gradient(0deg, rgba(12,137,183,1) 0%, rgba(12,183,183,1) 100%);
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  transition: all 0.5s ease;
}
.input-container {
  padding: 10px 0px;
  margin-top: 40px;
}
.item_select{
    width: 60px;
    padding: 5px;
    margin-left: 1rem;
    margin-right: 0.3rem;
}
.item_select_sum{
    padding: 5px;
    margin-left: 1rem;
    margin-right: 0.3rem;
}
.input_colum{
    margin-bottom: 1rem;
}
.item_select_box{
    display: flex;
    align-items: center;
}

/*--------------------------------
	スマホ版
--------------------------------*/
@media screen and (max-width: 767px) {
    .point_text {
        font-size: 16px;
    }
    .step-bar .step{
        height: 25px;
        width: 25px;
    }
    .step-bar{
        margin-bottom: 32px;
    }
    .next-btn.active,
    .btn_approval.active{
		width: 100%;
	}
    .next-btn,
    .btn_approval,
    .next-btn.active,
    .btn_approval.active{
        padding: 1rem 2rem;
        font-size: 1rem;
        background-size: 25px;
    }
    footer{
        margin-top:0px;
    }
    .action_btn{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .next-btn, .btn_approval{
        width: 100%;
    }
    /* 戻るボタン */
    .prev-btn {
        width:100%;
        margin-right: auto;
    }
}

/* フォーム修正 */
.mainv{
    background: none;
}
.page_title{
    padding: 0px;
    text-align: center;
}
.font_mini{
    font-size: 12px;
}
@media screen and (min-width: 768px) {
    .member_form .text {
        margin-bottom: 35px!important;
    }
}
@media screen and (max-width: 767px) {
    input[type=text].form-control, input[type=password].form-control {
        font-size: 12pt!important;
        padding: 10px;
    }
}
@media screen and (min-width: 768px) {
    .member_form .rules {
        margin-top: 50px;
    }
}

.error-message{
    color: red;
}

/* 確認画面 */
.kakunin_text{
    text-align: center;
    font-weight: bold;
    font-size: 1.3rem;
    margin-top: 3rem;
    margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
    .kakunin_text{
        margin-bottom: 2rem;
        margin-top: 2rem;
    }
}