@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-style: normal;
	font-size: 100%;
	vertical-align: baseline;
    font-family: 'Noto Sans JP', YuGothicM, "游ゴシック Medium", YuGothic, "Yu Gothic", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic", "メイリオ", Meiryo, sans-serif;
	color: #262626;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

html{
    overflow-y: scroll;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

input, textarea{
	margin: 0;
	padding: 0;
}

ol, ul{
    list-style: none;
}

table{
    border-collapse: collapse; 
    border-spacing: 0;
}

caption, th{
    text-align: left;
}

a:focus {
	outline: none;
}

body{
	line-height: 150%;
	-webkit-text-size-adjust: 100%;
}

a{
	text-decoration: none;
}

img{
	max-width: 100%;
    image-rendering: -webkit-optimize-contrast;
}


/* template
   ================================================================== */    
p,
a,
li{
	font-size: 3.1vw;
	line-height: 190%;
    font-weight: 500;
}

p a,
li a{
	font-size: inherit;
	font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
a{
	letter-spacing: 0.1em;
}

h1,
h2,
h3,
h4,
h5,
h6,
h7,
h7{
	line-height: 150%;
}

.tab,
.pc{
	display: none;
}

.photo{
	line-height: 0;
}

.inner{
    padding-left: 5vw;
    padding-right: 5vw;
}

.public_sans{
	font-family: "Public Sans";
}

.center{
    text-align: center;
}

.red{
    color: red;
}

.under_l{
    text-decoration: underline;
}

.link_text{
    color: #2F60B4;
}

.link_text:hover{
    text-decoration: underline;
}

.trim img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

#wrap{
    padding: 0 0 0;
	position: relative;
}


/* header
   ================================================================== */
header{
    margin: auto;
	position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 10;
    width: 100%;
    height: 50px;
}

.open header{
    background: #0b003d;
}

header .header_position{
    margin: auto;
	position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 10;
    width: 100%;
    max-width: 100%;
    background: rgba(255,255,255,.8);
}

.open header .header_position{
    background: #0b003d;
}

header .header_position_inner{
    position: relative;
}

header .header_position_inner > .inner{
	padding: 0 65px 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    box-sizing: border-box;
    position: relative;
    z-index: 100;
}

header .site_logo{
    width: 40vw;
    max-width: 250px;
    z-index: 1;
    line-height: 0;
    transition: .3s;
}

.site_logo a{
    display: block;
    line-height: 0;
    position: relative;
    z-index: 1;
}

.site_logo a img{
    width: 100%;
}

.open header .usually,
header .opened{
    display: none;
}

.open .opened{
    display: block;
}

header .languages{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .languages > li{
    width: 26px;
    display: flex;
    justify-content: space-between;
    line-height: 0;
}

header .languages > li + li{
    margin-left: 15px;
}

header .languages > li a{
    display: block;
    line-height: 0;
}


/* ham_btn
   ================================================================== */
.ham_btn{
    padding: 0;
    right: 0;
    top: 0;
    width: 50px;
    height: 50px;
    position: absolute;
    font-size: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 500;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
	transition: ease-out 0.3s;
    border-radius: 100%;
}

.ham_btn .inner{
    padding: 0;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: ease-out 0.8s;
    box-sizing: border-box;
}

.ham_btn .inner .bar,
.ham_btn .inner .bar:before,
.ham_btn .inner .bar:after{
    transition: ease-out 0.3s;
    text-indent: -9999px;
    height: 2px;
    width: 100%;
    background: #152a8c;
    display: block;
}

.ham_btn .inner .bar:before{
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
}

.ham_btn .inner .bar:after{
    content: "";
    position: absolute;
    bottom: -10px;
    right: 0;
}

.ham_btn.open{
    transform: rotate(0deg);
}

.ham_btn.open .bar{
    background: transparent !important;
}

.ham_btn.open .bar:before,
.ham_btn.open .bar:after{
    width: 35px;
    background: #fff;
}

.ham_btn.open .bar:before{
    transform: rotate(45deg);
    top: 0;
    left: -1px;
}

.ham_btn.open .bar:after{
    transform: rotate(-45deg);
    bottom: 0;
    right: -2px;
}

body.open{
    position: fixed;
    width: 100%;
}


/* slide_menu
   ================================================================== */
.slide_menu{
    padding: 3vw 0 0;
    position: fixed;
    top: 50px;
    right: -100vw;
    width: 100vw;
    height: 100vh;
    background: #0b003d;
    box-sizing: border-box;
    z-index: 20;
    transition: all 0.5s;
    transition-delay: .2s;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    display: none;
}

.slide_menu.show{
    display: flex;
}

.slide_menu.open{
    right: 0;
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

.slide_menu > .inbox{
    margin: 0 5vw;
}

.slide_menu .slide_nav{
    padding: 0 0 20vw;
}

.slide_nav > ul{
    padding: 0 0 0;
    width: 100%;
    font-size: 0;
}    

.slide_nav > ul > li{
    padding: 5vw 0;
    border-bottom: 1px solid #999;
    position: relative;
    font-size: 0;
}

.slide_nav > ul > li:first-child{
    padding-top: 2vw;
}

.slide_nav > ul > li:before{
	content: "";
	background: #f2f2f2 ;
	width: 18vw;
	height: 1px;
	position: absolute;
	bottom: -1px;
	left: 0;
}

.slide_nav > ul > li > a{
    padding: 0;
    display: block;
    font-size: 5vw;
    letter-spacing: 0;
    font-weight: 700;
    color: #4631dd;
    font-family: "Public Sans";
    line-height: 120%;
}

.slide_nav > ul > li > ul{
    margin: 1vw 0 0;
    font-size: 0;
}

.slide_nav > ul > li > ul > li{
    margin: 3vw 4vw 0 0;
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box;
}

.slide_nav > ul > li > ul > li > a{
    padding: 0 0 0 5vw;
    background-image: url("../images/common/spmenulink.svg");
	background-repeat: no-repeat;
	background-position: 0 .5vw;
	background-size: 3.3vw;
    font-size: 2.8vw;
    letter-spacing: 0;
    line-height: 150%;
    font-weight: 700;
    color: #fff;
    display: block;
}

.slide_menu .logo{
    margin: 8vw auto 0;
    width: 60vw;
    line-height: 0;
}

.slide_menu .logo img{
    width: 100%;
}

.slide_menu .logo .txt{
    margin: 3vw 0 0;
    font-size: 2.2vw;
    color: #fff;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0;
    display: block;
    line-height: 150%;;
}


/* gnav
   ================================================================== */
.gnav{
    display: none;
}


/* recriut_menu
   ================================================================== */
.recriut_menu{
	position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    width: 100%;
    background-image: url("../images/common/webp/menu_top.webp");
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: 100% 140vw;
    transition: .3s;
}

.recriut_menu.active{
	background-size: 100% 100%;
}

.recruit_menu_btn{
    height: 12vw;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.recruit_menu_btn .txt{
    margin: auto;
    padding: 0 0 0 12vw;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.recruit_menu_btn .txt > div{
    font-size: 4vw;
    font-weight: 400;
    color: #fff;
    font-family: "Public Sans";
}

.active .recruit_menu_btn .normally,
.recruit_menu_btn .close{
    display: none;
}

.active .recruit_menu_btn .close{
    display: block;
}

/* recruit_menu_ham */
.recruit_menu_ham{
    padding: 0;
    left: 0;
    top: -3vw;
    width: 12vw;
    height: 12vw;
    position: absolute;
    font-size: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 500;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
	transition: ease-out 0.3s;
    border-radius: 100%;
}

.recruit_menu_ham .inner{
    padding: 0;
    width: 7vw;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: ease-out 0.8s;
    box-sizing: border-box;
}

.recruit_menu_ham .inner .bar,
.recruit_menu_ham .inner .bar:before,
.recruit_menu_ham .inner .bar:after{
    transition: ease-out 0.3s;
    text-indent: -9999px;
    height: 2px;
    width: 100%;
    background: #fff;
    display: block;
}

.recruit_menu_ham .inner .bar:before{
    content: "";
    position: absolute;
    top: -2.5vw;
    left: 0;
}

.recruit_menu_ham .inner .bar:after{
    content: "";
    position: absolute;
    bottom: -2.2vw;
    right: 0;
}

.active .recruit_menu_ham{
    transform: rotate(0deg);
}

.active .recruit_menu_ham .bar{
    background: transparent !important;
}

.active .recruit_menu_ham .bar:before,
.active .recruit_menu_ham .bar:after{
    width: 6vw;
    background: #fff;
}

.active .recruit_menu_ham .bar:before{
    transform: rotate(45deg);
    top: 0;
    left: 0.5vw;
}

.active .recruit_menu_ham .bar:after{
    transform: rotate(-45deg);
    bottom: 0;
    right: .5vw;
}

/* recruit_menu_box */
.recruit_menu_box{
    padding: 4vw 5vw 0;
    max-height: 65vh;
    overflow-y: scroll;
    box-sizing: border-box;
    display: none;
}

.recruit_menu_list{
    padding-bottom: 15vw;
    max-height: 71vh;
}

.recruit_menu_list > li{
    border-bottom: 1px solid rgba(255,255,255,.8);
    position: relative;
}

.recruit_menu_list > li .pc{
    display: none;
}

.recruit_menu_list > li > span,
.recruit_menu_list > li > a{
    padding: 4vw 0;
    font-size: 6vw;
    letter-spacing: 0.1em;
    font-weight: 400;
    color: #fff;
    font-family: "Public Sans";
    line-height: 1;
    display: block;
}

.recruit_menu_list > li span.open_btn{
    position: relative;
    cursor: pointer;
}

.recruit_menu_list > li span.open_btn::after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 10vw;
    height: 14vw;
    background-image: url("../images/common/open_btn_plus.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 70%;
}

.recruit_menu_list > li span.open_btn.active::after{
    background-image: url("../images/common/open_btn_minus.svg");
}

/* recruit_menu_list02 */
.recruit_menu_list02{
    margin-top: -1vw;
    padding: 0 0 3vw;
}

.recruit_menu_list02 > li{
    padding: 2vw 0;
    position: relative;
}

.recruit_menu_list02 > li > a{
    padding: 0 0 0 6vw;
    display: block;
    position: relative;
}

.recruit_menu_list02 > li > a:before{
	content: "";
	background: #fff;
	width: 4vw;
	height: 1px;
	position: absolute;
	top: 2.2vw;
	left: 0;
}

.recruit_menu_list02 > li > a span{
    font-size: 3.5vw;
    font-weight: 400;
    color: #fff;
    line-height: 150%;
    display: block;
    position: relative;
    cursor: pointer;
}

.recruit_menu_list02 > li > a .name{
    margin: 2vw 0 0;
    font-weight: 300;
}


/* footer_tag
   ================================================================== */
footer{
    margin: 0 0 0;
	padding: 0 0 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* footer_links_block */
.footer_links_block{
    background: #5872bd;
    position: relative;
    line-height: 0;
}

.footer_links_block .text_box{
    padding: 10vw 0;
}

.footer_links_block ul > li{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer_links_block ul > li + li{
    margin-top: 15vw;
}

/* footer_company */
.footer_company{
	padding: 40vw 0 10vw;
    background-image: url("../images/common/webp/footer_bg02_sp.webp");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
    text-align: center;
}

.footer_company .text_box{
    padding: 0 0 0;
}

.footer_company .text_box *{
    color: #fff;
    font-weight: 400;
}

.footer_company .text_box .ttl{
    font-size: 4vw;
}

.footer_company .text_box .txt{
    margin: 8vw 0 0;
    font-size: 3vw;
}

/* bottom_box */
footer .bottom_box{
	padding: 20vw 0 20vw;
    background: #acdff3;
    text-align: center;
    position: relative;
}

footer .bottom_box .site_logo{
	margin: 0 auto;
    width: 40vw;
    line-height: 0;
}

footer .bottom_box address{
    margin: 2vw 0 0;
	font-size: 2vw;
    font-weight: 600;
    font-family: "Public Sans";
    letter-spacing: 0.1em;
}

/* loopslider */
.loopslider{
	padding: 0 0 0;
    visibility: hidden;
    display: flex;
    opacity: 0;
    position: absolute;
    top: -4vw;
}

.infiniteslide_wrap .loopslider{
    visibility: visible;
    opacity: 1;
}

.loopslider li{
    padding: 0 10vw 0 0;
	width: 100vw;
    line-height: 0;
}


/* page_top
   ================================================================== */
#page_top{
	position: fixed;
	bottom: 16vw;
    right: 10px;
    width: 30px;
    height: 30px;
    z-index: 4;
	line-height: 0;
	display: none;
}

#page_top a{
	display: block;
	height: auto;
	transition: ease-in 0.3s;
	line-height: 0;
}

#page_top img{
	width: 100%;
}


/* contents_wrap
   ================================================================== */
.contents_wrap{
    margin: 0 0 0;
    padding: 0 0 0;
    position: relative;
    z-index: 1;
    background: #fff;
}

.interview_page .contents_wrap,
.work_style_page .contents_wrap,
.recruit_page .contents_wrap,
.talk_page .contents_wrap,
.about_page .contents_wrap{
    background: #f2f2f2;
}


/* block_title
   ================================================================== */
.block_title > span{
    display: block;
    line-height: 100%;
    letter-spacing: 0.1em;
    color: #083dcb;
}

.block_title.white > span{
    color: #fff;
}

.block_title .eng{
    font-size: 6.2vw;
    font-weight: 100;
    font-family: "Public Sans";
}

.block_title .jpn{
    margin: 2vw 0 0;
    font-size: 2.8vw;
    line-height: 150%;
    font-weight: 500;
}


/* boxin_title_block
   ================================================================== */
.boxin_title_block .boxin_top > span{
    padding: 2vw 3vw;
    font-size: 2.5vw;
    display: inline-block;
    line-height: 100%;
    letter-spacing: 0.05em;
    font-weight: 500;
    color: #fff;
    background: #0e1112;
}

.boxin_title_block .boxin_top + .boxin_bottom{
    margin-top: 1vw;
}

.boxin_title_block .boxin_bottom > span{
    margin-top: 1vw;
    padding: 1.2vw 1.5vw;
    font-size: 4.8vw;
    display: inline-block;
    line-height: 100%;
    letter-spacing: 0.05em;
    font-weight: 400;
    color: #fff;
    background: #083dcb;
}

.boxin_title_block .boxin_bottom.bg_white > span{
    color: #083dcb;
    background: #fff;
}

.boxin_title_block .boxin_bottom > span.pa0{
    padding-left: 0;
    padding-right: 0;
}

.boxin_title_block .tab.pc{
    display: none !important;
}


/* title_f41
   ================================================================== */
.title_f41{
    font-size: 5.8vw;
    line-height: 130%;
    letter-spacing: 0.09em;
    font-weight: 500;
    color: #083dcb;
}


/* title_f22
   ================================================================== */
.title_f22{
    font-size: 3.8vw;
    line-height: 130%;
    letter-spacing: 0.18em;
    font-weight: 500;
    color: #083dcb;
}


/* title_border_line
   ================================================================== */
.title_border_line{
    overflow: hidden;
}

.title_border_line > span{
    padding: 0 2vw 0 0;
    font-size: 3.8vw;
    line-height: 130%;
    letter-spacing: 0.18em;
    font-weight: 500;
    color: #083dcb;
    position: relative;
}

.title_border_line > span:before{
	content: "";
	background: #b9c4d9;
	width: 100vw;
	height: 1px;
	position: absolute;
	top: 70%;
	left: 100%;
}


/* more_btn
   ================================================================== */	
.more_btn{
	line-height: 0;
}

.more_btn a{
	padding: 0 5vw;
	width: 35vw;
    height: 9vw;
	font-size: 2.6vw;
    font-weight: 500;
    letter-spacing: 0.10em;
    line-height: 150%;
	color: #fff;
	background: rgba(8,61,203,.8);
    border: 1px solid rgba(8,61,203,.8);
	position: relative;
	display: inline-flex;
    align-items: center;
    box-sizing: border-box;
    border-radius: 8px;
}

.more_btn a:before{
	content: "";
	background-image: url("../images/common/btn_arrow.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100%;
	width: 22%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 72%;
}

.more_btn.color2 a{
	background: rgba(255,255,255,0);
    border-color: #8ba4e7;
}

.more_btn.color2 a:before{
	width: 22%;
	left: 72%;
}


/* anime_btn
   ================================================================== */	
.anime_btn{
	line-height: 0;
}

.anime_btn a{
	padding: 0;
	width: 60vw;
    height: 15vw;
	font-size: 3.6vw;
    font-weight: 500;
    letter-spacing: 0.10em;
    line-height: 150%;
	color: #fff;
	background: #E96697;
    border: 1px solid #E96697;
	position: relative;
	display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 50px;
}


@media screen and (min-width : 600px){


    /* template
       ================================================================== */    
	p,
	a,
	li{
		font-size: 1.5vw;
        line-height: 3.0vw;
	}
    
    a.over{
    	transition: all ease-out 0.3s;
    }
    	
    a.over:hover{
    	opacity: 0.6;
    }

	.sp{
		display: none;
	}

	.tab{
		display: inherit;
	}

    .inner{
        padding-left: 2vw;
        padding-right: 2vw;
    }

    #wrap{
        padding: 0 0 0;
    }


    /* header
       ================================================================== */
    header{
        margin: auto;
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        z-index: 10;
        width: 100%;
        height: 70px;
    }

    header .header_position_inner > .inner{
        padding: 10px 60px 10px 10px;
        height: 70px;
    }

    header .site_logo{
        width: 250px;
    }

    header .languages{
        margin: 0 0 0 6.0vw;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    header .languages > li{
        width: 4.0vw;
    }

    header .languages > li + li{
        margin-left: 1.0vw;
    }


    /* ham_btn
       ================================================================== */
     .ham_btn{
        top: 10px;
    }
    
    
    /* slide_menu
       ================================================================== */
    .slide_menu{
        padding: 2.0vw 0 0;
        top: 70px;
    }

    .slide_menu > .inbox{
        margin: 0 5.0vw;
    }

    .slide_menu .slide_nav{
        padding: 0 0 20vw;
    }

    .slide_nav > ul{
        padding: 0 0 0;
        width: 100%;
        font-size: 0;
    }    

    .slide_nav > ul > li{
        padding: 3.0vw 0;
    }

    .slide_nav > ul > li:first-child{
        padding-top: 1.0vw;
    }

    .slide_nav > ul > li:before{
        width: 80px;
    }

    .slide_nav > ul > li > a{
        font-size: 2.8vw;
    }

    .slide_nav > ul > li > ul{
        margin: 1vw 0 0;
    }

    .slide_nav > ul > li > ul > li{
        margin: 1.0vw 2.0vw 0 0;
    }

    .slide_nav > ul > li > ul > li > a{
        padding: .5vw 0 0 2.9vw;
        background-position: 0 .5vw;
        background-size: 2.0vw;
        font-size: 1.6vw;
    }

    .slide_menu .logo{
        margin: 3.0vw auto 0;
        width: 50.0vw;
    }

    .slide_menu .logo .txt{
        margin: 1.0vw 0 0;
        font-size: 1.2vw;
    }


    /* recriut_menu
       ================================================================== */
    .recriut_menu{
        margin: 0 auto;
        top: 70px;
        width: 100%;
        height: 50px;
        box-sizing: border-box;
        background: rgba(8,61,203,.8);
        border-radius: 0;
    }

    .recriut_menu.active{
        background: #083dcb;
    }

    .recruit_menu_btn{
        display: none;
    }

    /* recruit_menu_ham */
    .recruit_menu_ham{
        display: none;
    }

    /* recruit_menu_box */
    .recruit_menu_box{
        padding: 0;
        max-height: none;
        overflow-y: inherit;
        display: block;
    }

    .recruit_menu_list{
        padding-bottom: 0;
        max-height: none;
    }

    .recruit_menu_box .pc_flex{
        padding: 0 20px 0 20px;
        height: 50px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .recruit_menu_box .recruit_menu_title{
        font-size: 1.3vw;
        font-weight: 400;
        color: #fff;
        font-family: "Public Sans";
        line-height: 1;
        display: block;
    }

    .recruit_menu_box .recruit_menu_title a{
        font-size: inherit;
        font-weight: inherit;
        color: inherit;
        font-family: inherit;
        line-height: inherit;
        display: block;
    }

    .recruit_menu_list{
        display: flex;
        align-items: center;
    }

    .recruit_menu_list > li{
        margin-left: 1.9vw;
        display: flex;
        align-items: center;
        border-bottom: none;
        font-size: 0;
    }

    .recruit_menu_list > li:first-child{
        margin-left: 0;
    }

    .recruit_menu_list > li .pc{
        display: flex;
    }

    .recruit_menu_list > li.sp{
        display: none;
    }

    .recruit_menu_list > li > span,
    .recruit_menu_list > li > a{
        padding: 0 0 0 1.2vw;
        font-size: 1.3vw;
        position: relative;
        transition: .3s;
        height: 50px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
    }

    .recruit_menu_list > li:hover > span,
    .recruit_menu_list > li:hover > a{
        color: #ccc;
    }
    
    .recruit_menu_list > li > span:before,
    .recruit_menu_list > li > a:before{
        content: "";
        background: #afffff;
        width: .4vw;
        height: .4vw;
        position: absolute;
        top: 22px;
        left: 0;
        border-radius: 100px;
    }

    .recruit_menu_list > li .open_btn.sp,
    .recruit_menu_list > li .open_btn::after{
        display: none !important;
    }

    .recruit_menu_list > li span{
        cursor: context-menu;
    }

    /* recruit_menu_list02 */
    .opened_nav_menu{
    	position: relative;
        display: block !important;
    }
    
    .recruit_menu_list02_bg{
        margin: 0 auto 0;
        padding: 2.0vw 0 0;
    	position: absolute;
		/*min-width: 60.0vw;*/
		min-width: 47.0vw;
		transition: .5s cubic-bezier(0.77, 0.38, 0.43, 0.85);
		top: calc(100% - 1px);
        left: 50%;
        transform: translateX(-50%);
		opacity: 0;
		visibility: hidden;
		z-index: 10;
        display: block;
    }
    
    .opened_nav_menu:hover .recruit_menu_list02_bg{
		opacity: 1;
		visibility: visible;
    }
    
    .recruit_menu_list02{
        margin: 0;
        /*padding: 1.5vw 1.0vw;*/
        padding: 1.5vw 1.0vw 1.5vw 2.0vw;
        background: #e6ecfa;
        border-radius: 10px;
        font-size: 0;
        position: relative;
    }
    
    .recruit_menu_list02:before{
        content: "";
        margin: auto;
        background: #e6ecfa;
        height: calc(tan(60deg) * 2.5vw / 2);
        width: 2.5vw;
        clip-path: polygon(50% 0, 100% 100%, 0 100%);
        position: absolute;
        bottom: 99%;
        left: 0;
        right: 0;
    }

    .recruit_menu_list02 > li{
        margin: 0;
        padding: 0;
        display: inline-block;
        vertical-align: top;
        box-sizing: border-box;
        width: 50%;
        position: relative;
    }

    .recruit_menu_list02 > li:nth-child(2n+2){
        width: 50%;
    }

    .recruit_menu_list02 > li > a{
        /*padding: 1.0vw 0 1.0vw 3.5vw;*/
        padding: 1.0vw 0 1.0vw 1.5vw;
    }

    .recruit_menu_list02 > li > a:before{
        /*width: 1.2vw;
        top: 1.9vw;
        left: 1.5vw;*/
        width: .9vw;
        top: 1.7vw;
        left: 0;
        background: #083dcb;
    }

    .recruit_menu_list02 > li > a span{
        /*font-size: 1.2vw;*/
        font-size: .9vw;
        color: #083dcb;
        transition: .3s;
    }

    .recruit_menu_list02 > li > a .name{
        margin: .8vw 0 0;
        color: #14446f;
    }

    .recruit_menu_list02 > li > a:hover span{
        color: #000;
    }


    /* footer_tag
       ================================================================== */
    footer{
        margin: 0 0 0;
    }

    /* footer_links_block */
    .footer_links_block{
        position: relative;
        line-height: 0;
        display: flex;
    }

    .footer_links_block .inner{
        padding: 0;
    }

    .footer_links_block .text_box{
        margin: 0 auto;
        padding: 10.0vw 0 7.0vw calc(50% + 5.0vw);
        width: 100vw;
        box-sizing: border-box;
        position: relative;
    }
    
    .footer_links_block .text_box:before{
        content: "";
        background-image: url("../images/common/webp/footer_bg01.webp");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        width: 50vw;
        height: 100%;
        position: absolute;
        top: 0;
        right: 50%;
    }

    .footer_links_block ul > li{
        display: block;
    }

    .footer_links_block ul > li + li{
        margin-top: 7.0vw;
    }

    .footer_links_block li .more_btn{
        margin-top: 4.0vw;
    }

    /* footer_company */
    .footer_company{
        padding: 34.0vw 0 9.0vw;
    }

    .footer_company .text_box .ttl{
        font-size: 3.0vw;
    }

    .footer_company .text_box .txt{
        margin: 6.5vw 0 0;
        font-size: 1.8vw;
    }

    /* bottom_box */
    footer .bottom_box{
        padding: 15.0vw 0 3.5vw;
    }

    footer .bottom_box .inner{
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }

    footer .bottom_box .site_logo{
        margin: 0;
        width: 28.8vw;
    }

    footer .bottom_box address{
        margin: 0;
        font-size: 1.2vw;
    }

    /* loopslider */
    .loopslider{
        top: -3.0vw;
    }

    .loopslider li{
        padding: 0 9.0vw 0 0;
        width: 68.0vw;
    }


    /* page_top
       ================================================================== */
    #page_top{
        bottom: 40px;
    }

    #page_top a:hover{
        opacity: .5;
    }


    /* contents_wrap
       ================================================================== */
    .contents_wrap{
        padding: 0 0 0;
    }
		
    .talk_page .contents_wrap{
        background: #fff;
    }


    /* block_title
       ================================================================== */
    .block_title .eng{
        font-size: 5.0vw;
    }

    .block_title .jpn{
        margin: 1.3vw 0 0;
        font-size: 2.4vw;
    }


    /* boxin_title_block
       ================================================================== */
    .boxin_title_block .boxin_top > span{
        padding: 1.0vw 1.5vw;
        font-size: 1.8vw;
    }

    .boxin_title_block .boxin_top + .boxin_bottom{
        margin-top: 1.0vw;
    }

    .boxin_title_block .boxin_bottom > span{
        margin-top: .5vw;
        padding: .5vw 1.0vw 1.0vw;
        font-size: 3.2vw;
    }

    .boxin_title_block .tab.pc{
        display: inline-block !important;
    }

    .boxin_title_block .sp{
        display: none !important;
    }


    /* title_f41
       ================================================================== */
    .title_f41{
        font-size: 3.5vw;
        line-height: 5.2vw;
    }


    /* title_f22
       ================================================================== */
    .title_f22{
        font-size: 2.2vw;
        line-height: 3.7vw;
    }


    /* title_border_line
       ================================================================== */
    .title_border_line > span{
        padding: 0 2.5vw 0 0;
        font-size: 2.2vw;
    }


    /* more_btn
       ================================================================== */	
    .more_btn a{
        padding: 0 3.0vw;
        width: 21.1vw;
        height: 5.0vw;
        font-size: 1.4vw;
        border-radius: 12px;
        transition: .3s;
    }

    .more_btn a:before{
        width: 25%;
        left: 70%;
        transition: .3s;
    }

    .more_btn.color2 a:before{
        width: 20%;
        left: 75%;
    }

    .more_btn a:hover{
        background: rgba(8,61,203,1);
        border-color: rgba(8,61,203,1);
    }

    .more_btn.color2 a:hover{
        background: #083dcb;
        border-color: #083dcb;
    }

    .more_btn a:hover:before{
        transform: translateX(5px);
    }


	/* anime_btn
	   ================================================================== */	
	.anime_btn a{
		width: 26.0vw;
        height: 6.0vw;
		font-size: 1.6vw;
        transition: .3s;
	}
	
	.anime_btn a:hover{
		background: #fff;
        color: #E96697;
	}
    
    
}
@media screen and (min-width : 1240px){

	
    /* template
       ================================================================== */ 	p,
	a,
	li{
		font-size: 15px;
        line-height: 30px;
	}
  	
	.tab{
		display: none;
	}

	.pc{
		display: inherit;
	}

    .inner{
        padding-left: 0;
        padding-right: 0;
    	max-width: 1200px;
    	margin: auto;
		box-sizing: border-box;
    }
    
    .inner.max1100{
    	max-width: 1100px;
    }
    
    .inner.max1000{
    	max-width: 1000px;
    }

    #wrap{
        padding: 0 0 0;
    	position: relative;
    }


    /* header
       ================================================================== */
    header{
        margin: auto;
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        z-index: 10;
        width: 100%;
        height: 70px;
    }

    .open header{
        background: #fff;
    }

    .open header .header_position{
        background: #fff;
    }

    header .header_position_inner > .inner{
        padding: 20px 39px;
        padding-right: 165px;
        height: 70px;
        max-width: 100%;
    }

    header .site_logo{
        width: 250px;
    }

    header .languages{
        margin: 0 0 0 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    header .languages > li{
        width: 26px;
    }

    header .languages > li + li{
        margin-left: 10px;
    }
   
	
    /* gnav
       ================================================================== */
    .gnav{
        margin: 0 0 0 auto;
        padding: 0;
        width: auto;
        box-sizing: border-box;
        position: relative;
        right: auto;
        overflow: inherit;
        background: none;
        display: flex;
    }
    
    .gnav > ul{
    	margin: 0 0 0 auto;
        padding: 0 0 0;
    	font-size: 0;
        line-height: 0;
        overflow: inherit;
    }
    
    .gnav > ul > li{
        margin: 0 0 0 40px;
        padding: 0;
    	text-align: center;
		width: auto;
		display: inline-block;
        transition: all cubic-bezier(0.77, 0, 0.175, 1) 0.6s;
    }
    
    .gnav > ul > li > a{
    	padding: 5px 0;
    	display: flex;
        align-items: center;
        justify-content: center;
    	text-align: center;
        line-height: 1;
        border: none;
        height: auto;
        position: relative;
    	font-size: 15px;
        letter-spacing: 0.2em;
        color: #14446f;
        font-weight: 700;
        transition: .5s ease;
        top: 0;
    }
    
    .gnav > ul > li > a:hover{
    	color: #ccc;
    }

	
    /* ham_btn
       ================================================================== */
    .ham_btn{
        display: none;
    }
        

    /* slide_menu
       ================================================================== */
    .slide_menu{
        display: none !important;
    }


    /* recriut_menu
       ================================================================== */
    .recriut_menu{
        margin: 0 auto;
        top: 70px;
        height: 50px;
        box-sizing: border-box;
    }

    .recriut_menu.active{
        background: #083dcb;
    }

    .recruit_menu_btn{
        display: none;
    }

    /* recruit_menu_ham */
    .recruit_menu_ham{
        display: none;
    }

    /* recruit_menu_box */
    .recruit_menu_box{
        padding: 0;
    }

    .recruit_menu_box .pc_flex{
        padding: 0 39px 0 60px;
        height: 50px;
        box-sizing: border-box;
        display: flex !important;
        align-items: center;
        justify-content: space-between;
    }

    .recruit_menu_box .recruit_menu_title{
        font-size: 13px;
        font-weight: 400;
        color: #fff;
        font-family: "Public Sans";
        line-height: 1;
        display: block;
    }

    .recruit_menu_list{
        display: flex;
        align-items: center;
    }

    .recruit_menu_list > li{
        margin-left: 25px;
        display: flex;
        align-items: center;
        border-bottom: none;
    }

    .recruit_menu_list > li:first-child{
        margin-left: 0;
    }

    .recruit_menu_list > li .sp{
        display: none;
    }

    .recruit_menu_list > li > span,
    .recruit_menu_list > li > a{
        padding: 18px 0 17px 15px;
        font-size: 15px;
        position: relative;
        transition: .3s;
    }

    .recruit_menu_list > li:hover > span,
    .recruit_menu_list > li:hover > a{
        color: #ccc;
    }
    
    .recruit_menu_list > li > span:before,
    .recruit_menu_list > li > a:before{
        content: "";
        background: #afffff;
        width: 6px;
        height: 6px;
        position: absolute;
        top: 24px;
        left: 0;
        border-radius: 100px;
    }

    .recruit_menu_list > li .open_btn.sp,
    .recruit_menu_list > li .open_btn::after{
        display: none !important;
    }

    .recruit_menu_list > li span{
        cursor: context-menu;
    }

    /* recruit_menu_list02 */
    .opened_nav_menu{
    	position: relative;
    }
    
    .recruit_menu_list02_bg{
        margin: 0 auto 0;
        padding: 20px 0 0;
    	position: absolute;
		min-width: 600px;
		transition: .5s cubic-bezier(0.77, 0.38, 0.43, 0.85);
		top: calc(100% - 1px);
        left: 50%;
        transform: translateX(-50%);
    }
    
    .recruit_menu_list02{
        margin: 0;
        padding: 15px 10px;
        background: #e6ecfa;
        border-radius: 10px;
        font-size: 0;
        position: relative;
    }
    
    .recruit_menu_list02:before{
        content: "";
        margin: auto;
        background: #e6ecfa;
        height: calc(tan(60deg) * 25px / 2);
        width: 25px;
        clip-path: polygon(50% 0, 100% 100%, 0 100%);
        position: absolute;
        bottom: 99%;
        left: 0;
        right: 0;
    }

    .recruit_menu_list02 > li{
        margin: 0;
        padding: 0;
        display: inline-block;
        vertical-align: top;
        box-sizing: border-box;
        width: 50%;
        position: relative;
    }

    .recruit_menu_list02 > li:nth-child(2n+2){
        width: 50%;
    }

    .recruit_menu_list02 > li > a{
        padding: 10px 0 10px 35px;
        font-size: 12px;
        color: #333;
    }

    .recruit_menu_list02 > li > a:before{
        width: 12px;
        top: 19px;
        left: 15px;
        background: #083dcb;
    }

    .recruit_menu_list02 > li > a span{
        font-size: 12px;
    }

    .recruit_menu_list02 > li > a .name{
        margin: 8px 0 0;
    }


    /* footer_tag
       ================================================================== */
    footer{
        margin: 0 0 0;
    }

    /* footer_links_block */
    .footer_links_block{
        position: relative;
        line-height: 0;
        display: flex;
    }

    .footer_links_block .text_box{
        margin: 0 auto;
        padding: 100px 0 70px calc(50% + 50px);
        width: 1000px;
        box-sizing: border-box;
        position: relative;
    }
    
    .footer_links_block .text_box:before{
        content: "";
        background-image: url("../images/common/webp/footer_bg01.webp");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        width: 50vw;
        height: 100%;
        position: absolute;
        top: 0;
        right: 50%;
    }

    .footer_links_block ul > li{
        display: block;
    }

    .footer_links_block ul > li + li{
        margin-top: 70px;
    }

    .footer_links_block li .more_btn{
        margin-top: 40px;
    }

    /* footer_company */
    .footer_company{
        padding: 340px 0 90px;
    }

    .footer_company .text_box .ttl{
        font-size: 30px;
    }

    .footer_company .text_box .txt{
        margin: 65px 0 0;
        font-size: 18px;
    }

    /* bottom_box */
    footer .bottom_box{
        padding: 150px 50px 35px 55px;
    }

    footer .bottom_box .inner{
        max-width: 1400px;
        display: flex;
        justify-content: space-between;
    }

    footer .bottom_box .site_logo{
        margin: 0;
        width: 288px;
    }

    footer .bottom_box address{
        margin: 0;
        font-size: 12px;
    }

    /* loopslider */
    .loopslider{
        top: -30px;
    }

    .loopslider li{
        padding: 0 90px 0 0;
        width: 680px;
    }


    /* page_top
       ================================================================== */
    #page_top{
        
    }


    /* contents_wrap
       ================================================================== */
    .contents_wrap{
        padding: 0 0 0;
    }
	

    /* block_title
       ================================================================== */
    .block_title .eng{
        font-size: 50px;
    }

    .block_title .jpn{
        margin: 13px 0 0;
        font-size: 24px;
    }


    /* boxin_title_block
       ================================================================== */
    .boxin_title_block .boxin_top > span{
        padding: 10px 15px;
        font-size: 18px;
    }

    .boxin_title_block .boxin_top + .boxin_bottom{
        margin-top: 10px;
    }

    .boxin_title_block .boxin_bottom > span{
        margin-top: 5px;
        padding: 5px 10px 10px;
        font-size: 35px;
    }


    /* title_f41
       ================================================================== */
    .title_f41{
        font-size: 41px;
        line-height: 62px;
    }


    /* title_f22
       ================================================================== */
    .title_f22{
        font-size: 22px;
        line-height: 37px;
    }


    /* title_border_line
       ================================================================== */
    .title_border_line > span{
        padding: 0 25px 0 0;
        font-size: 22px;
    }


    /* more_btn
       ================================================================== */	
    .more_btn a{
        padding: 0 30px;
        width: 211px;
        height: 50px;
        font-size: 14px;
    }

    .more_btn a:before{
        width: 25%;
        left: 70%;
    }

    .more_btn.color2 a:before{
        width: 20%;
        left: 75%;
    }


	/* anime_btn
	   ================================================================== */
	.anime_btn a{
		width: 260px;
        height: 60px;
		font-size: 16px;
	}

	
}
