@charset "UTF-8";


/***************************************************

	new-graduate_common

***************************************************/

:root {
  --header-height: 100px;
}

html, body{
	margin:0; padding:0;
	box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body{
	position: relative;
	font-size: 24px;
	font-weight: 400;
	color: var(--text);
	line-height: 2.0;
	font-family: "Noto Sans JP", sans-serif;
	word-wrap: break-word;
	word-break: break-all;
	background: #EEECE7;
}

.mincho{
	font-family: "Shippori Mincho";
}

.crimson{
	font-family: "Crimson Text";
}

.Lato{
	font-family: "Lato";
}

.Montserrat{
	font-family: "Montserrat";
}

.WindSong{
	font-family: "WindSong";
}

.Sen{
	font-family: "Sen";
}

.yugo{
	font-family: "游ゴシック", "Noto Sans JP", sans-serif;,
}

a:visited,
a{
	color: var(--text);
	text-decoration: none;
	transition: all 0.2s linear;
}

a:hover{
	opacity: 0.7;
}

img{
	max-width: 100%;
	height: auto;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

.scroll_top{
  scroll-margin-top: var(--header-height);
}

.pc-on{display: block;}
.sp-on{display: none;}

textarea,
input[type="checkbox"],
input[type="radio"],
input[type="email"],
input[type="tel"],
input[type="text"],
select{
  -webkit-appearance: none; /* Safari / Chrome */
  -moz-appearance: none;    /* Firefox */
  appearance: none;         /* 標準化 */
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;            /* フォントを親に合わせる */
  color: inherit;           /* 文字色を親に合わせる */
  line-height: normal;
  outline: none;            /* フォーカス枠を消す */
  box-shadow: none;
  background-color: transparent;
}



/* --------- ヘッダー ---------- */

header{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: #fff;
	z-index: 80;
	line-height: 1;
}

header::after{
	content: '';
	position: fixed;
	top: 98px; /* header高さ */
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,.6);
	opacity: 0;
	pointer-events: none;
	transition: opacity .2s ease;
	z-index: 60;
}

header.menu-bg::after{
	opacity: 1;
}

header .header_wrapp{
	width: 1920px;
	margin: 0 auto;
	padding: 0 40px 0 20px;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
    align-items: center;
}

header .header_wrapp .logo_area{
	width: 304px;
	display: flex;
	justify-content: space-between;
    align-items: center;
}

header .header_wrapp .logo_area .logo{
	width: 140px;
}

header .header_wrapp .logo_area .logo a{
	display: block;
}

header .header_wrapp .logo_area .sub_title{
	width: 140px;
	height: 50px;
	line-height: 48px;
	border: 1px solid #000;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-align: center;
	pointer-events: none;
}

header .header_wrapp .g_nav_wrapp{

}

header .header_wrapp .g_nav_wrapp .g_nav_ul{
	display: flex;
	justify-content: flex-end;
    align-items: center;
    gap: 32px;
}

header .header_wrapp .g_nav_wrapp .g_nav_ul li.li_btn{
	position: static;
}

header .header_wrapp .g_nav_wrapp .g_nav_ul  li.li_btn .toggle_btn{
	font-size: 22px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.02em;
	padding: 39px 0;
	cursor: pointer;
	position: relative;
}

header .header_wrapp .g_nav_wrapp .g_nav_ul li.li_btn.active .toggle_btn::after{
	content: '';
	display: block;
	width: 100%;
	border-bottom: 4px solid #0090C5;
	position: absolute;
	bottom: 0;
	left: 0;
}


header .header_wrapp .g_nav_wrapp .g_nav_ul li.li_btn .toggle_body{
	display: none;
	position: absolute;
	top: 98px;
	left: 0;
	width: 100%;
	border-top: 1px solid #DCDCDC;
	background: #FFF;
	z-index: 70;
}
header .header_wrapp .g_nav_wrapp .g_nav_ul li.li_btn .toggle_body.last{
	border-bottom: 1px solid #DCDCDC;
}

header .header_wrapp .g_nav_wrapp .g_nav_ul li.li_btn .toggle_body .link_wrapp{
	width: 1600px;
	margin: 0 auto;
	padding: 80px 0 48px;
	display: flex;
	justify-content: space-between;
}

header .header_wrapp .g_nav_wrapp .g_nav_ul li.li_btn .toggle_body .link_wrapp .sub_title{
	width: 400px;
	font-size: 64px;
	font-weight: 400;
	line-height: 1;
	color: #000;
}

header .header_wrapp .g_nav_wrapp .g_nav_ul li.li_btn .toggle_body .link_wrapp .sub_menu{

}

header .header_wrapp .g_nav_wrapp .g_nav_ul li.li_btn .toggle_body .link_wrapp .sub_menu ul{
	width: 1160px;
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

header .header_wrapp .g_nav_wrapp .g_nav_ul li.li_btn .toggle_body .link_wrapp .sub_menu ul li{
	width: 360px;
	border-bottom: 1px solid #0090C5;
}

header .header_wrapp .g_nav_wrapp .g_nav_ul li.li_btn .toggle_body .link_wrapp .sub_menu ul li a{
	display: block;
	font-size: 28px;
	font-weight: 500;
	line-height: 1.6;
	padding: 0 40px 24px 0;
	position: relative;
}

header .header_wrapp .g_nav_wrapp .g_nav_ul li.li_btn .toggle_body .link_wrapp .sub_menu ul li a::after{
	content: '';
	display: inline-block;
	width: 24px;
	height: 24px;
	background: url(../images/common/arrow_g_navi.png) no-repeat 0 0 / contain;
	position: absolute;
	top: 10px;
	right: 0;
}

header .header_wrapp .g_nav_wrapp .g_nav_ul li.li_btn .toggle_body .link_wrapp .sub_menu ul li a strong{
	font-size: 28px;
	font-weight: 500;
	line-height: 1.6;
}


header .lang_select_wrapp{
	display:inline-block;
	padding-left: 20px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
	position: relative;
}

header .lang_select_wrapp::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
    background-image: url(../images/common/icon_lang.png);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}

header .lang_select_wrapp select option{
	background: #fff;
}


/*------- フッター -------*/

footer{
	background: #0090C5;
	padding: 12px 0;
	color: #fff;
}

footer .footer_wrapper{
	width: 1600px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
    align-items: center;
}

footer .footer_wrapper .logo_area{
	width: 110px;
}

footer .footer_wrapper .link_area ul{
	display: flex;
	justify-content: center;
    align-items: center;
	line-height: 1;
}

footer .footer_wrapper .link_area ul li{
	padding-right: 24px;
	margin-right: 24px;
	border-right: 1px solid #fff;
}

footer .footer_wrapper .link_area ul li:last-child{
	padding-right: 0;
	margin-right: 0;
	border-right: none;
}

footer .footer_wrapper .link_area ul li a{
	font-size: 12px;
	font-weight: 400;
	color: #fff;
	line-height: 2.0;
}

footer .footer_wrapper .copyright{
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1.4;
}



 /********* コンテンツ **********/

main{
	padding-top: 100px;
}


.kv_modal_wrapp{
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 999;
	display: none;
}

.kv_modal_wrapp .filter{
	width:100%;
	height: 100%;
	background: rgba(0,0,0,.2);
}

.kv_modal_wrapp .modal_cont{
	width: 1600px;
	height: 79vh;
	max-height: 967px;
	margin: 0 auto;
	padding: 80px;
	background: #EEECE7;
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.kv_modal_wrapp .modal_cont .close_btn{
	width: 80px;
	height: 80px;
	background: url('../images/common/modal_close.png') no-repeat 0 0 / contain;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    cursor: pointer;
}

.kv_modal_wrapp .modal_cont .cont_wrapp{
	height: 100%;
	overflow: auto;
	display: flex;
	flex-direction: row-reverse;
    align-items: center;
	justify-content: space-between;
	position: relative;
    z-index: 3;
    line-height: 1;
}

.kv_modal_wrapp .modal_cont .cont_wrapp .faq_block{
	width: 680px;
	position: relative;
}

.kv_modal_wrapp .modal_cont .cont_wrapp .faq_block::after{
	content: '';
	display: inline-block;
	width: 1px;
	height: 100%;
	background: #DCDCDC;
    position: absolute;
    top: 0;
    right: -80px;
}

.kv_modal_wrapp .modal_cont .cont_wrapp .faq_block .name{
	font-size: 28px;
	font-weight: 500;
	line-height: 1.6;
	margin-bottom: 48px;
}

.kv_modal_wrapp .modal_cont .cont_wrapp .faq_block .faq_ul{

}

.kv_modal_wrapp .modal_cont .cont_wrapp .faq_block .faq_ul li{
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid #DCDCDC;
}

.kv_modal_wrapp .modal_cont .cont_wrapp .faq_block .faq_ul li:last-child{
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.kv_modal_wrapp .modal_cont .cont_wrapp .faq_block .faq_ul li .q_area{
	font-size: 24px;
	font-weight: 700;
	line-height: 2.0;
	margin-bottom: 16px;
	padding-left: 62px;
	position: relative;
}

.kv_modal_wrapp .modal_cont .cont_wrapp .faq_block .faq_ul li .q_area::before{
	content: 'Q.';
	display: inline-block;
	font-size: 40px;
	font-weight: 400;
	line-height: 1;
	font-family: "Lato";
	letter-spacing: 0.02em;
    position: absolute;
    top: 0;
    left: 0;
}

.kv_modal_wrapp .modal_cont .cont_wrapp .faq_block .faq_ul li .a_area{
	font-size: 24px;
	font-weight: 400;
	line-height: 2.0;
	padding-left: 62px;
	position: relative;
}

.kv_modal_wrapp .modal_cont .cont_wrapp .faq_block .faq_ul li .a_area::before{
	content: 'A.';
	display: inline-block;
	font-size: 40px;
	font-weight: 400;
	line-height: 1;
	font-family: "Lato";
	color: #0090C5;
	letter-spacing: 0.02em;
    position: absolute;
    top: 0;
    left: 0;
}

.kv_modal_wrapp .modal_cont .cont_wrapp .form_block{
	width: 598px;
	height: 100%;
	background: #fff;
}

.survey-header {
	font-size: 24px;
	font-weight: 700;
	line-height: 2.0;
	color: white;
	background-color: black;
	text-align: center;
	padding: 8px 0;
}
.survey-form {
	background-color: white;
	padding: 24px 40px 48px;

}
.survey-form .survey-form__title{
	display: flex;
	gap: 8px;
	align-items: center;
}
.survey-form .survey-form__title p{
	font-family: "Lato";
	font-size: 24px;
	font-weight: 900;
	line-height: 1.0;
	letter-spacing: 0.02em;
}
.survey-form .survey-form__title label{
	font-size: 24px;
	line-height: 2.0;
}
.survey-form .survey-form__select select{
	width: 100%;
	padding: 12px 16px;
	font-size: 16px;
	line-height: 2.0;
	border: 1px solid #DCDCDC;
	border-radius: 2px;
}
.survey-form .survey-form__select{
	position: relative;
}
.survey-form .survey-form__select::after{
	content: '';
	position: absolute;
	top: 50%;
	right: 16px;
	transform: translateY(-50%);
	display: inline-block;
	width: 20px;
	height: 20px;
	background-image: url('../images/common/arrow_down.png');
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 10;
}
.survey-form dd {
	margin-bottom: 16px;
}
.survey-form .survey-form__radio li,
.survey-form .survey-form__checkbox li{
	width: 100%;
	display: inline-flex;
}
.survey-form .survey-form__radio li label,
.survey-form .survey-form__checkbox li label{

	width: 100%;
	padding: 2px 0 2px 32px;
	font-size: 24px;
	display: flex;
	align-items: center;
	position: relative;
	line-height: 2.0;
}
.survey-form .survey-form__radio li label::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	display: inline-block;
	width: 24px;
	height: 24px;
	border: 1px solid #DCDCDC;
	border-radius: 50%;
	flex-shrink: 0;
}
.survey-form .survey-form__radio input:checked + label::after{
	content: '';
	position: absolute;
	top: 50%;
	left: 6px;
	transform: translateY(-50%);
	display: inline-block;
	width: 12px;
	height: 12px;
	background: #0090C5;
	border-radius: 50%;
}
.survey-form .survey-form__checkbox li label::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	display: inline-block;
	width: 24px;
	height: 24px;
	border: 1px solid #DCDCDC;
	flex-shrink: 0;
}
.survey-form .survey-form__checkbox input:checked + label::before {
	background-image: url('../images/common/icon_checked.webp');
	background-size: cover;
	background-repeat: no-repeat;
	border: none;
}
.survey-form .survey-form__buttonarea {
	margin-top: 32px;
}
.survey-form .survey-form__submit {
	background-color: #0090C5;
	position: relative;
	width: 100%;
	height: 96px;
	color: white;
	font-size: 20px;
	font-weight: 500;
}
.survey-form .survey-form__submit::after {
	content: '';
	display: inline-block;
	width: 24px;
	height: 24px;
	background-image: url('../images/common/icon_submit_arrow.png');
	background-size: cover;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
}




body.modal-open{
	overflow: hidden;
}


.ng_head{
	width: 1920px;
	height: 915px;
	margin: 0 auto;
	background: #EAEBEF;
	position: relative;
}

.ng_head::after{
	content: '';
	display: inline-block;
	width: 1296px;
	height: 915px;
	background: url('../images/new-graduate/common/p_head_bg.webp') no-repeat 0 0 / contain;
	position: absolute;
	top: 0;
	right: 0;
}

.ng_head .head_wrapp{
	width: 1600px;
	margin: 0 auto;
	padding-top: 103px;
	position: relative;
	z-index: 3;
}

.ng_head .head_wrapp .en_title{
	font-size: 136px;
	font-weight: 500;
	line-height: 1;
	margin-bottom: 24px;
}

.ng_head .head_wrapp h1{
	font-size: 36px;
	font-weight: 500;
	line-height: 1.6;
}


#breadcrumbs{
	margin-top: 183px;
	font-size: 14px;
	line-height: 1.6;
}

#breadcrumbs .breadcrumbs_wrapp{
	display: flex;
	flex-wrap: wrap;
	align-items: center
}

#breadcrumbs span{
	display: inline-block;
	height: 16px;
	font-weight: 400;
	color: #0090C5;
}

#breadcrumbs span.item{
	width: 80px;
	position: relative;
	line-height: 1;
}

#breadcrumbs span.item::after{
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: contain;
	background-image: url('../images/common/breadcrumbs_item.png');
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#breadcrumbs a span{
	font-weight: 400;
	line-height: 1;
	color: #000;
}


#page_anchor_block{
	width: 1600px;
	margin: -134px auto 80px;
	line-height: 1;
	position: relative;
	z-index: 3;
}

#page_anchor_block ul{
	display: flex;
	justify-content: space-between;
}

#page_anchor_block ul li{
	width: 784px;
}

#page_anchor_block ul li a{
	display: block;
	padding-bottom: 24px;
	border-bottom: 1px solid #0090C5;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.6;
	position: relative;
}

#page_anchor_block ul li a::after{
	content: '';
	display: inline-block;
	width: 24px;
	height: 24px;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: contain;
	background-image: url('../images/common/arrow_down.png');
	position: absolute;
	top: 0;
	right: 0;
}
















/********************************************************************************
	リッキド用 CSS
********************************************************************************/

@media(max-width:1920px){

:root {
  --header-height: 5.208333vw;
}

body{
	font-size: 1.25vw;
}


/* --------- ヘッダー ---------- */

header{

}

header .header_wrapp{
	width: 100%;
	padding: 0 2.083333vw 0 1.041667vw;
}

header .header_wrapp .logo_area{
	width: 15.833333vw;
}

header .header_wrapp .logo_area .logo{
	width: 7.291667vw;
}

header .header_wrapp .logo_area .sub_title{
	width: 7.291667vw;
	height: 2.604167vw;
	line-height: 2.5vw;
	font-size: 0.9375vw;
}

header .header_wrapp .g_nav_wrapp .g_nav_ul{
    gap: 1.666667vw;
}


header .header_wrapp .g_nav_wrapp .g_nav_ul li.li_btn .toggle_btn{
	font-size: 1.145833vw;
	padding: 2.03125vw 0;
}

header .header_wrapp .g_nav_wrapp .g_nav_ul li.li_btn.li_btn.active .toggle_btn::after{
	border-bottom: 0.208333vw solid #0090C5;
}

header .header_wrapp .g_nav_wrapp .g_nav_ul li.li_btn .toggle_body{
	top: 5.104167vw;
}

header .header_wrapp .g_nav_wrapp .g_nav_ul li.li_btn .toggle_body .link_wrapp{
	width: 83.333333vw;
	padding: 4.166667vw 0 2.5vw;
}

header .header_wrapp .g_nav_wrapp .g_nav_ul li.li_btn .toggle_body .link_wrapp .sub_title{
	width: 20.833333vw;
	font-size: 3.333333vw;
}

header .header_wrapp .g_nav_wrapp .g_nav_ul li.li_btn .toggle_body .link_wrapp .sub_menu ul{
	width: 60.416667vw;
	gap: 2.083333vw;
}

header .header_wrapp .g_nav_wrapp .g_nav_ul li.li_btn .toggle_body .link_wrapp .sub_menu ul li{
	width: 18.75vw;
}

header .header_wrapp .g_nav_wrapp .g_nav_ul li.li_btn .toggle_body .link_wrapp .sub_menu ul li a{
	font-size: 1.458333vw;
	padding: 0 2.083333vw 1.25vw 0;
}

header .header_wrapp .g_nav_wrapp .g_nav_ul li.li_btn .toggle_body .link_wrapp .sub_menu ul li a::after{
	width: 1.25vw;
	height: 1.25vw;
	top: 0.520833vw;
}

header .header_wrapp .g_nav_wrapp .g_nav_ul li.li_btn .toggle_body .link_wrapp .sub_menu ul li a strong{
	font-size: 1.458333vw;
}


header .lang_select_wrapp{
	padding-left: 1.041667vw;
    font-size: 0.729167vw;
	top: -0.156250vw;
}

header .lang_select_wrapp::before {
    width: 0.729167vw;
    height: 0.729167vw;
}





/*------- フッター -------*/

footer{
	padding: 0.625vw 0;
}

footer .footer_wrapper{
	width: 83.333333vw;
}

footer .footer_wrapper .logo_area{
	width: 5.729167vw;
}

footer .footer_wrapper .link_area ul li{
	padding-right: 1.25vw;
	margin-right: 1.25vw;
}

footer .footer_wrapper .link_area ul li a{
	font-size: 0.625vw;
}

footer .footer_wrapper .copyright{
	font-size: 0.625vw;
}



 /********* コンテンツ **********/

main{
	padding-top: 5.208333vw;
}


.kv_modal_wrapp .modal_cont{
	width: 83.333333vw;
	max-height: 50.364583vw;
	padding: 4.166667vw;
}

.kv_modal_wrapp .modal_cont::before{
	height: 27.083333vw;
}

.kv_modal_wrapp .modal_cont .close_btn{
	width: 4.166667vw;
	height: 4.166667vw;
}

.kv_modal_wrapp .modal_cont .cont_wrapp .faq_block{
	width: 35.416667vw;
}

.kv_modal_wrapp .modal_cont .cont_wrapp .faq_block::after{
    right: -4.166667vw;
}

.kv_modal_wrapp .modal_cont .cont_wrapp .faq_block .name{
	font-size: 1.458333vw;
	margin-bottom: 2.5vw;
}

.kv_modal_wrapp .modal_cont .cont_wrapp .faq_block .faq_ul li{
	margin-bottom: 2.083333vw;
	padding-bottom: 2.083333vw;
}

.kv_modal_wrapp .modal_cont .cont_wrapp .faq_block .faq_ul li .q_area{
	font-size: 1.25vw;
	margin-bottom: 0.833333vw;
	padding-left: 3.229167vw;
}

.kv_modal_wrapp .modal_cont .cont_wrapp .faq_block .faq_ul li .q_area::before{
	font-size: 2.083333vw;
}

.kv_modal_wrapp .modal_cont .cont_wrapp .faq_block .faq_ul li .a_area{
	font-size: 1.25vw;
	padding-left: 3.229167vw;
}

.kv_modal_wrapp .modal_cont .cont_wrapp .faq_block .faq_ul li .a_area::before{
	font-size: 2.083333vw;
}

.kv_modal_wrapp .modal_cont .cont_wrapp .form_block{
	width: 31.1458333vw;
}
.survey-header{
	font-size: 1.25vw;
	padding: 0.41666vw 0;
}
.survey-form {
	padding: 1.25vw	2.0833vw 2.5vw;
}
.survey-form .survey-form__title{
	gap: 0.41667vw;
}
.survey-form .survey-form__title p{
	font-size: 1.25vw;
}
.survey-form .survey-form__title label{
	font-size: 1.25vw;
}
.survey-form .survey-form__select select{
	padding: 0.625vw 0.833333vw;
	font-size: 0.833333vw;
}
.survey-form .survey-form__select::after{
	right: 0.833333vw;
	width: 1.0416667vw;
	height: 1.0416667vw;
}
.survey-form dd {
	margin-bottom: 0.83333vw;
}
.survey-form .survey-form__radio li label,
.survey-form .survey-form__checkbox li label{
	padding:0.10416vw 0 0.10416vw 1.666667vw;
	font-size: 1.25vw;
}
.survey-form .survey-form__radio li label::before,
.survey-form .survey-form__checkbox li label::before{
	width: 1.25vw;
	height: 1.25vw;
}
.survey-form .survey-form__radio input:checked + label::after{
	left: 0.3125vw;
	width: 0.625vw;
	height: 0.625vw;
}
.survey-form .survey-form__buttonarea {
	margin-top: 1.66667vw;
}

.survey-form .survey-form__submit {
	height: 5vw;
	font-size: 1.041667vw;
}

.survey-form .survey-form__submit::after {
	width: 1.25vw;
	height: 1.25vw;
	right: 1.041667vw;
}



.ng_head{
	width: 100%;
	height: 47.65625vw;
}

.ng_head::after{
	width: 67.5vw;
	height: 47.65625vw;
}

.ng_head .head_wrapp{
	width: 83.333333vw;
	padding-top: 5.364583vw;
}

.ng_head .head_wrapp .en_title{
	font-size: 7.083333vw;
	margin-bottom: 1.25vw;
}

.ng_head .head_wrapp h1{
	font-size: 1.875vw;
}


#breadcrumbs{
	margin-top: 9.53125vw;
	font-size: 0.729167vw;
}

#breadcrumbs span{
	height: 0.833333vw;
}

#breadcrumbs span.item{
	width: 4.166667vw;
}

#breadcrumbs span.item::after{
	width: 0.833333vw;
	height: 0.833333vw;
}

#page_anchor_block{
	width: 83.333333vw;
	margin: -6.979167vw auto 4.166667vw;
}

#page_anchor_block ul li{
	width: 40.833333vw;
}

#page_anchor_block ul li a{
	padding-bottom: 1.25vw;
	font-size: 0.9375vw;
}

#page_anchor_block ul li a::after{
	width: 1.25vw;
	height: 1.25vw;
}


















}


/********************************************************************************
	スマートフォン用 CSS
********************************************************************************/

@media(max-width:768px){

:root {
  --header-height: 16vw;
}

body{
	font-size: 4.266667vw;
}

.pc-on{display: none;}
.sp-on{display: block;}



/* --------- ヘッダー ---------- */

header{
	height: 16vw;
}

header .header_wrapp{
	width: auto;
	height: 16vw;
	padding: 0;
	display: block;
}

header .header_wrapp .logo_area{
	width: 57.866667vw;
	position: absolute;
	top: 50%;
	left: 16px;
	transform: translate(0, -50%);
}

header .header_wrapp .logo_area .logo{
	width: 26.666667vw;
}

header .header_wrapp .logo_area .sub_title{
	width: 29.333333vw;
	height: 9.6vw;
	line-height: 9.6vw;
	font-size: 3.2vw;
}

header .header_wrapp .g_nav_wrapp{

}

header .header_wrapp .g_nav_wrapp .menu_btn{
	width: 16vw;
	height: 16vw;
	position: fixed;
	top: 0;
	right: 0;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: contain;
	background-image: url('../images/common/sp_menu_open.png');
}

header .header_wrapp .g_nav_wrapp .menu_btn.open{
	background-image: url('../images/common/sp_menu_close.png');
}

header .header_wrapp .sp_menu_wrapp{
	position: fixed;
	top: 16vw;
	left: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	background: url('../images/common/gray_bg.webp') no-repeat 0 0 / cover;
	overflow: auto;
	/*height: calc(100vh - 16vw);*/
	height: auto;
	display: none;
}

header .header_wrapp .g_nav_wrapp .g_nav_ul{
	display: block;
    gap: 0;
}

header .header_wrapp .g_nav_wrapp .g_nav_ul li.li_btn{
	position: static;
}

header .header_wrapp .g_nav_wrapp .g_nav_ul li.li_btn .toggle_btn{
	font-size: 5.866667vw;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.02em;
	padding: 10.4vw 0;
	cursor: pointer;
	display: none;
}

header .header_wrapp .g_nav_wrapp .g_nav_ul li.li_btn.li_btn.active .toggle_btn::after{
	content: '';
	display: block;
	width: 100%;
	border-bottom: 1.066667vw solid #0090C5;
	position: absolute;
	bottom: 0;
	left: 0;
}

header .header_wrapp .g_nav_wrapp .g_nav_ul li.li_btn .toggle_body{
	display: block !important;
	position: static;
	border-top: 1px solid #DCDCDC;
	background: transparent;
}

header .header_wrapp .g_nav_wrapp .g_nav_ul li.li_btn .toggle_body .link_wrapp{
	width: auto;
	margin: 0 auto;
	padding: 5.333333vw;
	display: block;
}

header .header_wrapp .g_nav_wrapp .g_nav_ul li.li_btn .toggle_body .link_wrapp .sub_title{
	width: auto;
	font-size: 5.333333vw;
	position: relative;
}

header .header_wrapp .g_nav_wrapp .g_nav_ul li.li_btn .toggle_body .link_wrapp .sub_title::after{
	content: '＋';
	display: inline-block;
	color: #0090C5;
	font-weight: 500;
	position: absolute;
	top: 50%;
	right: 0;
    transform: translate(0, -50%);
}

header .header_wrapp .g_nav_wrapp .g_nav_ul li.li_btn .toggle_body .link_wrapp .sub_title.active::after{
	content: 'ー';
}

header .header_wrapp .g_nav_wrapp .g_nav_ul li.li_btn .toggle_body .link_wrapp .sub_menu{
	display: none;
}

header .header_wrapp .g_nav_wrapp .g_nav_ul li.li_btn .toggle_body .link_wrapp .sub_menu ul{
	width: auto;
	display: block;
	padding-top: 4.266667vw;
}

header .header_wrapp .g_nav_wrapp .g_nav_ul li.li_btn .toggle_body .link_wrapp .sub_menu ul li{
	width: auto;
	border-bottom: none;
	margin: 0 6.4vw 2.133333vw;
}

header .header_wrapp .g_nav_wrapp .g_nav_ul li.li_btn .toggle_body .link_wrapp .sub_menu ul li:last-child{
	margin-bottom: 0;
}

header .header_wrapp .g_nav_wrapp .g_nav_ul li.li_btn .toggle_body .link_wrapp .sub_menu ul li a{
	display: block;
	font-size: 3.733333vw;
	font-weight: 400;
	line-height: 2.0;
	padding: 0;
}

header .header_wrapp .g_nav_wrapp .g_nav_ul li.li_btn .toggle_body .link_wrapp .sub_menu ul li a::after{
	content: none;
}

header .header_wrapp .g_nav_wrapp .g_nav_ul li.li_btn .toggle_body .link_wrapp .sub_menu ul li a strong{
	font-size: 3.733333vw;
	font-weight: 400;
	line-height: 2.0;
}


header .lang_wrapp {
	text-align: center;
	padding-top: 10.666667vw;
}
header .lang_select_wrapp{
	padding-left: 5.333333vw;
    font-size: 3.733333vw;
    top: 0;
}

header .lang_select_wrapp::before {
    width: 3.733333vw;
    height: 3.733333vw;
}


header .header_wrapp .g_nav_wrapp .g_nav_ul li.lang{
	text-align: center;
	padding-top: 10.666667vw;
}

header .lang_select_wrapp{
	padding-left: 5.333333vw;
    font-size: 3.733333vw;
    top: 0;
}

header .lang_select_wrapp::before {
    width: 3.733333vw;
    height: 3.733333vw;
}

.sp_policy_link{
	padding-top: 10.666667vw;
}

.sp_policy_link ul{
    display: flex;
	flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    line-height: 1;
}

.sp_policy_link ul li {
	padding-right: 6.4vw;
	margin-right: 6.4vw;
	margin-bottom: 6.4vw;
	border-right: 1px solid #BBB;
}

.sp_policy_link ul li:nth-child(2n + 2){
	padding-right: 0;
	margin-right: 0;
	border-right: none;
}

.sp_policy_link ul li a {
    font-size: 3.2vw;
    font-weight: 400;
    line-height: 2.0;
}



/*------- フッター -------*/

footer{
	padding: 5.333333vw;
}

footer .footer_wrapper{
	width: auto;
	display: block;
}

footer .footer_wrapper .logo_area{
	width: 29.333333vw;
	margin: 0 auto 10.666667vw;
}

footer .footer_wrapper .link_area{
	margin-bottom: 4.266667vw;
}

footer .footer_wrapper .link_area ul{
	flex-wrap: wrap
}

footer .footer_wrapper .link_area ul li{
	padding-right: 6.4vw;
	margin-right: 6.4vw;
	margin-bottom: 6.4vw;
}

footer .footer_wrapper .link_area ul li:nth-child(2n + 2),
footer .footer_wrapper .link_area ul li:last-child{
	padding-right: 0;
	margin-right: 0;
	border-right: none;
}

footer .footer_wrapper .link_area ul li a{
	font-size: 3.2vw;
}

footer .footer_wrapper .copyright{
	font-size: 3.2vw;
	text-align: center;
}



 /********* コンテンツ **********/

main{
	padding-top: 16vw;
}



.kv_modal_wrapp{

}

.kv_modal_wrapp .filter{

}

.kv_modal_wrapp .modal_cont{
	width: auto;
	margin: 0;
}

.kv_modal_wrapp .modal_cont{
	width: 89.333333vw;
	height: 90vh;
	max-height: unset;
	margin: 0 auto;
	padding: 0;
}

.kv_modal_wrapp .modal_cont::before{
	height: 28.533333vw;
}

.kv_modal_wrapp .modal_cont .close_btn{
	width: 12.8vw;
	height: 12.8vw;
	background: url('../images/recruit-midcareer/common/sp_menu_close.png') no-repeat 0 0 / contain;
	z-index: 10;
}

.kv_modal_wrapp .modal_cont .cont_wrapp{
	display: block;
}

.kv_modal_wrapp .modal_cont .cont_wrapp .faq_block{
	width: auto;
	margin-bottom: 0;
	border-bottom: none;
	padding: 6.4vw 5.333333vw;
	box-sizing: border-box;
}

.kv_modal_wrapp .modal_cont .cont_wrapp .faq_block::after{
	content: none;
}

.kv_modal_wrapp .modal_cont .cont_wrapp .faq_block .name{
	font-size: 4.8vw;
	margin-bottom: 8.533333vw;
}

.kv_modal_wrapp .modal_cont .cont_wrapp .faq_block .faq_ul{
	margin: 0 3.2vw;
}

.kv_modal_wrapp .modal_cont .cont_wrapp .faq_block .faq_ul li{
	margin-bottom: 8.533333vw;
	padding-bottom: 8.533333vw;
}

.kv_modal_wrapp .modal_cont .cont_wrapp .faq_block .faq_ul li .q_area{
	font-size: 4.266667vw;
	margin-bottom: 4.266667vw;
	padding-left: 13.333333vw;
}

.kv_modal_wrapp .modal_cont .cont_wrapp .faq_block .faq_ul li .q_area::before{
	font-size: 10.666667vw;
}

.kv_modal_wrapp .modal_cont .cont_wrapp .faq_block .faq_ul li .a_area{
	font-size: 4.266667vw;
	padding-left: 13.333333vw;
}

.kv_modal_wrapp .modal_cont .cont_wrapp .faq_block .faq_ul li .a_area::before{
	font-size: 10.666667vw;
}

.kv_modal_wrapp .modal_cont .cont_wrapp .form_block{
	width: 100%;
	box-sizing: border-box;
}
.survey-header {
	font-size: 4.266667vw;
	padding: 2.133333vw 0;
}
.survey-form {
	padding: 6.4vw 4.266667vw 10.666667vw;
}
.survey-form .survey-form__title{
	gap: 2.133333vw;
}
.survey-form .survey-form__title p{
	font-size: 4.8vw;
}
.survey-form .survey-form__title label{
	font-size: 4.266667vw;
}
.survey-form .survey-form__select select{
	padding: 3.2vw 4.266667vw;
	font-size: 4.266667vw;
}
.survey-form .survey-form__select::after{
	right: 4.266667vw;
	width: 5.333333vw;
	height: 5.333333vw;
}
.survey-form dd {
	margin-bottom: 4.266667vw;
}

.survey-form .survey-form__radio li label,
.survey-form .survey-form__checkbox li label{
	padding: 0.533333vw 0 0.533333vw 8.533333vw;
	font-size: 4.266667vw;
}
.survey-form .survey-form__radio li label::before,
.survey-form .survey-form__checkbox li label::before{
	width: 6.4vw;
	height: 6.4vw;
}
.survey-form .survey-form__radio input:checked + label::after{
	left: 1.6vw;
	width: 3.2vw;
	height: 3.2vw;
}
.survey-form .survey-form__buttonarea {
	margin-top: 6.4vw;
}

.survey-form .survey-form__submit {
	height: 21.3333vw;
	font-size: 4.8vw;
}

.survey-form .survey-form__submit::after {
	width: 6.4vw;
	height: 6.4vw;
	right: 6.4vw;
}



.ng_head{
	width: auto;
	height: auto;
	margin: 0 auto;
	padding-bottom: 69.866667vw;
}

.ng_head::after{
	width: 49.066667vw;
	height: 67.733333vw;
	background: url(../images/new-graduate/common/p_head_bg_sp.webp) no-repeat 0 0 / contain;
}

.ng_head .head_wrapp{
	width: auto;
	margin: 0 5.333333vw;
	padding-top: 17.066667vw;
}

.ng_head .head_wrapp .en_title{
	font-size: 10.666667vw;
	margin-bottom: 3.2vw;
}

.ng_head .head_wrapp h1{
	font-size: 5.866667vw;
}


#breadcrumbs{
	margin-top: 17.066667vw;
	font-size: 3.2vw;
}

#breadcrumbs span{
	height: 3.946667vw;
}

#breadcrumbs span.item{
	width: 12.8vw;
}

#breadcrumbs span.item::after{
	width: 3.946667vw;
	height: 3.946667vw;
}


#page_anchor_block{
	width: auto;
	margin: -46.4vw 5.333333vw 17.333333vw;
}

#page_anchor_block ul{
	display: block;
}

#page_anchor_block ul li{
	width: auto;
	margin-bottom: 6.4vw;
}

#page_anchor_block ul li:last-child{
	margin-bottom: 0;
}

#page_anchor_block ul li a{
	padding-bottom: 4.266667vw;
	font-size: 4.266667vw;
}

#page_anchor_block ul li a::after{
	width: 5.333333vw;
	height: 5.333333vw;
}












}
