@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,700;1,14..32,700&family=Marcellus&family=Noto+Sans+JP:wght@100..900&display=swap');

/* *****************************************************************************
=01 reset style
=02 option style
=03 common style
=04 layout style
***************************************************************************** */
/*---------- =02 option style ----------*/
.tal{text-align:left!important;}
.tac{text-align:center!important;}
.tar{text-align:right!important;}
.mtNone{margin-top:0!important;}
.mbNone{margin-bottom:0!important;}
.mbShort{margin-bottom:1em!important;}
.mbMiddle{margin-bottom:2em!important;}
.mbLong{margin-bottom:3em!important;}
.bold{font-weight:bold;}
.red{color:#;}
.cf{zoom:1;}
.cf:before,.cf:after{content:"";display:table;}
.cf:after{clear:both;}
/*---------- //end option style ----------*/

/*---------- =03 common style ----------*/
*{
	-o-box-sizing: border-box;
	box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
html{
	font-size: 62.5%;
    -webkit-text-size-adjust: 100%;
}
body{
    font-size: 1.6rem;
    line-height: 1.75;
    font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	color: #333333;
    padding-top: 10rem;
}
a{
    color: #333333;
	text-decoration: none;
}
a:hover,
a:active{
	text-decoration: none;
}
img{
    height: auto;
	display: block;
}
img,a img{
	vertical-align: bottom;
}
b,
strong,
.bold{
}
::selection{
	background-color: #333333;
	color: #ffffff;
}
::-moz-selection {
	background-color: #333333;
	color: #ffffff;
}
.en{
	font-family: "Marcellus", serif;
  	font-weight: 400;
  	font-style: normal;
}

@media print, screen and (max-width: 760px){
    body{
        padding-top: 8rem;
    }
}

/*---------- //end common style ----------*/

/*---------- =04 layout style ----------*/
/*========================================
header layout
========================================*/
/* site-header */
.site-header{
    width: 100%;
	height: 100px;	
	background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}
.site-header > .-inner{
	height: 100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-left: 3.4722%;
	padding-right: 3.4722%;
}

@media print, screen and (max-width: 1400px){
	/* site-header */
	.site-header > .-inner{
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

@media print, screen and (max-width: 760px){
	/* site-header */
	.site-header{
		height: 80px;
	}
	.site-header > .-inner{
		height: 80px;
		padding-left: 1.5rem;
		padding-right: 2rem;
	}
}

/* site-name */
.site-name > a{
	width: 366px;
	height: 18px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	-webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.site-name > a:hover{
    opacity: 0.75;
}
.site-name > a > .-logo{
	width: 250px;
}
.site-name > a > .-logo > img{
	width: 100%;
}
.site-name > a > .-text{
	width: 96px;
	padding-bottom: 0.2rem;
}
.site-name > a > .-text > img{
	width: 100%;
}

@media print, screen and (max-width: 1400px){
	/* site-name */
	.site-name > a{
		width: 320px;
		height: 17px;
	}
	.site-name > a > .-logo{
		width: 228px;
	}
	.site-name > a > .-text{
		width: 74px;
	}
}

@media print, screen and (max-width: 760px){
	/* site-name */
	.site-name > a{
		width: 290px;
	}
	.site-name > a > .-logo{
		width: 210px;
	}
	.site-name > a > .-text{
		width: 68px;
		padding-bottom: 0.1rem;
	}
}

@media print, screen and (max-width: 375px){
    /* site-name */
    .site-name > a{
        display: block;
        height: auto;
    }
    .site-name > a > .-text{
        margin-top: 1rem;
    }
}

/* header-primary */
.header-primary{
	display: flex;
    align-items: center;
}

@media print, screen and (max-width: 1200px){
    /* header-primary */
    .header-primary{
        display: none;
    }
}

/* header-nav */
.header-nav > .-main{
	letter-spacing: -.4em;
	text-align: right;
}
.header-nav > .-main > .-item{
	font-size: 1.4rem;
	font-weight: 700;
	display: inline-block;
	white-space: nowrap;
	line-height: 1;
	letter-spacing: normal;
	margin-left: 2.8rem;
}
.header-nav > .-main > .-item:nth-child(1){
	margin-left: 0;
}
.header-nav > .-main > .-item > a{
	-webkit-transition: all 0.2s ease;
    transition: all 0.2s ease; 
	position: relative;
	color: #002584;
}
.header-nav > .-main > .-item > a::after{
    content: "";
    display: block;
    height: 3px;
    width: 100%;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-delay: 0;
    transition-delay: 0;
    background: #002584;
    position: absolute;
    left: 0;
    bottom: -6px;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right top;
    transform-origin: right top;
}
.header-nav > .-main > .-item > a:hover::after{
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
}
.header-nav > .-main > .-item > a > span{
	padding-right: 19px;
}

@media print, screen and (max-width: 1400px){
	/* header-nav */
	.header-nav > .-main > .-item{
		margin-left: 2rem;
	}
}

@media print, screen and (max-width: 1200px){
	/* header-nav */
	.header-nav{
		display: none;
	}
}

/* header-button */
.header-button{
    margin-left: 4.2rem;
}
.header-button > a{
    background-color: #002584;
    color: #ffffff;
    width: 140px;
    line-height: 32px;
    font-size: 1.4rem;
	font-weight: 700;
    text-align: center;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease; 
	display: inline-block;
	border-radius: 9999px;
    border: 2px solid #002584;
}
.header-button > a:hover{
    background-color: #ffffff;
    color: #002584;
}
.header-button > a > span{
	background: url(/recruit/assets/images/arrow-link-white.svg) right center no-repeat;
	background-size: 1.4rem auto;
	padding-right: 2.2rem;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease; 
}
.header-button > a:hover > span{
    background: url(/recruit/assets/images/arrow-link-blue.svg) right center no-repeat;
	background-size: 1.4rem auto;
}

@media print, screen and (max-width: 1400px){
    /* header-button */
	.header-button{
    	margin-left: 2rem;
	}
	.header-button > a{
		width: 130px;
	}
}

@media print, screen and (max-width: 1200px){
	/* header-button */
	.header-button{
		display: none;
	}
}

/* hamburger-button */
.hamburger-button{
    display: none;
}

@media screen and (max-width: 1200px){
    /* hamburger-button */
    .hamburger-button{
        display: block;
        position: absolute;
        width: 66px;
        height: 66px;
        cursor: pointer;
        top: 1.7rem;
        right: 1.7rem;
        background-color: #002584;
        z-index: 11;
    }
    .fixed .hamburger-button{
        position: fixed;        
    }
    .hamburger-button span{
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        background-color: #ffffff;
        display: block;
        height: 2px;
        position: absolute;
        width: 22px;
    }
    .hamburger-button span:nth-child(1){
        -webkit-transform: rotate(0);
        transform: rotate(0);
        -webkit-transform-origin: left top;
        transform-origin: left top;
        top: 25px;
        left: 22px;
    }
    .hamburger-button span:nth-child(2){
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        top: 32px;
        left: 22px;
    }
    .hamburger-button span:nth-child(3){
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        top: 39px;
        left: 22px;
    }
    .hamburger-button.is-open span{
        width: 25px;
    }
    .hamburger-button.is-open span:nth-child(1){
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 24px;
        left: 25px;
    }
    .hamburger-button.is-open span:nth-child(2){
        display: none;
    }
    .hamburger-button.is-open span:nth-child(3){
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 24px;
        left: 18px;
    }
}

@media screen and (max-width: 760px){
    /* hamburger-button */
    .hamburger-button{
        width: 60px;
        height: 60px;
		top: 1rem;
        right: 1rem;
    }
    .hamburger-button span:nth-child(1){
        top: 22px;
        left: 19px;
    }
    .hamburger-button span:nth-child(2){
        top: 29px;
        left: 19px;
    }
    .hamburger-button span:nth-child(3){
        top: 36px;
        left: 19px;
    }
    .hamburger-button.is-open span:nth-child(1){
        top: 21px;
        left: 22px;
    }
    .hamburger-button.is-open span:nth-child(3){
        top: 21px;
        left: 15px;
    }
}

/* hamburger-nav */
.hamburger-nav{
    display: none;
}

@media screen and (max-width: 1200px){
    /* hamburger-nav */
    .hamburger-nav{
        background: rgba(255,255,255,0.98);
        display: block;
        height: 100%;
        opacity: 0;
        overflow: auto;
        padding-top: 10rem;
        position: fixed;
        top: 0;
        left: 0;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        visibility: hidden;
        width: 100%;
        -webkit-overflow-scrolling: touch;
        z-index: 10;
    }
    .hamburger-nav.is-show{
        opacity: 1;
        top: 0;
        visibility: visible;
    }
    .hamburger-nav-main > li{
        margin-left: 6rem;
        margin-right: 6rem;
        border-bottom: 1px solid #e4e4e4;
        font-size: 1.8rem;
        line-height: 1;
        font-weight: 700;
    }
    .hamburger-nav-main > li > a{
        background: url(/recruit/assets/images/arrow-link-blue.svg) right 15px center no-repeat;
        background-size: 19px auto;
        display: block;
        padding: 2.8rem 0.5rem;
		color: #002584;
    }
}

@media screen and (max-width: 760px){
    /* hamburger-nav */
    .hamburger-nav{
		padding-top: 8rem;
	}
    .hamburger-nav-main > li{
        margin-left: 4rem;
        margin-right: 4rem;
        font-size: 1.7rem;
    }
    .hamburger-nav-main > li > a{
        padding-top: 2.2rem;
        padding-bottom: 2.2rem;
    }
}

/* header-button-sp */
.header-button-sp{
    margin-top: 6rem;
    padding-left: 6rem;
    padding-right: 6rem;
}
.header-button-sp > a{
    display: inline-block;
    width: 100%;
    line-height: 5.6rem;
    color: #ffffff;
    background-color: #002584;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    font-size: 2rem;
  	font-weight: 700;
    text-align: center;
    white-space: nowrap;
	border-radius: 9999px;
    border: 2px solid #002584;
}
.header-button-sp > a:hover{
    color: #002584;
    background-color: #ffffff;
}
.header-button-sp > a > span{
	background: url(/recruit/assets/images/arrow-link-white.svg) right center no-repeat;
	background-size: 19px auto;
	padding-right: 3.2rem;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.header-button-sp > a:hover > span{
	background: url(/recruit/assets/images/arrow-link-blue.svg) right center no-repeat;
	background-size: 19px auto;
}

@media screen and (max-width: 760px){
    /* header-button-sp */
    .header-button-sp{
        margin-top: 4rem;
        padding-left: 4rem;
        padding-right: 4rem;
    }
    .header-button-sp > a{
        line-height: 5.2rem;
        font-size: 1.9rem;
    }
}

/*========================================
contents layout
========================================*/
/* note */
.note{
    margin-left: 1em;
    display: block;
}
.note::before{
    content: '※';
    margin-left: -1em;
}

/* overflow-hidden */
.overflow-hidden{
    overflow: hidden;
}

/* contents-basic */
.contents-basic{
    padding-top: 12rem;
    padding-bottom: 20rem;
}

@media screen and (max-width: 1000px){
    /* contents-basic */
    .contents-basic{
        padding-bottom: 18rem;
    }
}

@media screen and (max-width: 760px){
    /* contents-basic */
    .contents-basic{
        padding-top: 8rem;
        padding-bottom: 12rem;
    }
}

/* contents-color */
.contents-color{
    background-color: #f4f5f9;
    padding: 25rem 6rem 20rem;
}

@media screen and (max-width: 1000px){
  /* contents-color */
  .contents-color{
    padding: 12rem 4rem 18rem;
  }
}

@media screen and (max-width: 760px){
  /* contents-color */
  .contents-color{
    padding: 8rem 2rem 12rem;
  }
}

/* contents-regular */
.contents-regular{
    padding-bottom: 20rem;
}

@media screen and (max-width: 1000px){
    /* contents-regular */
    .contents-regular{
        padding-bottom: 18rem;
    }
}

@media screen and (max-width: 760px){
    /* contents-regular */
    .contents-regular{
        padding-bottom: 12rem;
    }
}

/* basic-area */
.basic-area{
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
}

/* page-title */
.page-title{
    overflow: hidden;
    padding: 17rem 6rem 26rem;
    position: relative;
}
.page-title.-bg-color{
    margin-bottom: -13rem;
}
.page-title::before{
    content: "";
    width: 1060px;
    height: 260px;
    position: absolute;
    left: 50%;  
    bottom: 0;
    transform: translateX(-50%);
    background-color: #002584;
    opacity: 0.4;
    z-index: 1;
}
.page-title::after{
    content: "";
    width: 1060px;
    height: 260px;
    position: absolute;
    left: 50%;  
    bottom: 0;
    transform: translateX(-50%);
}
.page-title.-job::after{
    background: url(/recruit/assets/images/job/img-main-job.jpg) center center no-repeat;
    background-size: auto 260px;
}
.page-title.-keyword::after{
    background: url(/recruit/assets/images/keyword/img-main-keyword.jpg) center center no-repeat;
    background-size: auto 260px;
}
.page-title.-number::after{
    background: url(/recruit/assets/images/number/img-main-number.jpg) center center no-repeat;
    background-size: auto 260px;
}
.page-title > .-inner{
    max-width: 1060px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.page-title > .-inner::after{
    content: "";
    width: 400px;
    height: 400px;
    position: absolute;
    top: -4.2rem;
    right: -10rem;
    background: url(/recruit/assets/images/bg-page-title.svg) center center no-repeat;
    background-size: cover;
}
.page-title > .-inner > .-primary{
    padding-bottom: 8.2rem;
}
.page-title > .-inner > .-primary > .-en{
    font-size: 6rem;
    line-height: 1.05;
    letter-spacing: 0.05em;
    color: #002584;
    font-family: "Marcellus", serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 1.8rem;
}
.page-title > .-inner > .-primary > .-main{
    font-size: 2.1rem;
    line-height: 1;
    letter-spacing: 0.05em;
    white-space: nowrap;    
}

@media screen and (max-width: 1000px){
    /* page-title */
    .page-title{
        padding-left: 4rem;
        padding-right: 4rem;
    }
    .page-title.-bg-color{
        margin-bottom: 0;
    }
    .page-title > .-inner::after{
        left: 56.5rem;
        right: auto;
    }
}

@media screen and (max-width: 760px){
    /* page-title */
    .page-title{
        padding: 10rem 2rem 18rem;
    }
    .page-title::before{
        height: 180px;
    }
    .page-title::after{
        width: 100%;
        height: 180px;
    }
    .page-title.-job::after{
        background: url(/recruit/assets/images/job/img-main-job.jpg) center center no-repeat;
        background-size: cover;
    }
    .page-title.-keyword::after{
        background: url(/recruit/assets/images/keyword/img-main-keyword.jpg) center center no-repeat;
        background-size: cover;
    }
    .page-title.-number::after{
        background: url(/recruit/assets/images/number/img-main-number.jpg) center center no-repeat;
        background-size: cover;
    }
    .page-title > .-inner::after{
        left: auto;
        top: auto;
        right: -17rem;
        bottom: -15rem;
        width: 300px;
        height: 300px;
    }
    .page-title > .-inner > .-primary{
        padding-bottom: 6rem;
    }
    .page-title > .-inner > .-primary > .-en{
        font-size: 4.8rem;
        line-height: 1.05;
        white-space: normal;
    }
    .page-title > .-inner > .-primary > .-main{
        font-size: 1.8rem;
    }
}

/* page-title-two-column */
.page-title-two-column{
    padding: 11rem 6rem 12.5rem;
    overflow: hidden;
}
.page-title-two-column > .-inner{
    max-width: 1060px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.page-title-two-column > .-inner > .-primary{
    padding-right: 4rem;
    padding-bottom: 2rem;
    flex: 1;
}
.page-title-two-column > .-inner > .-primary > .-en{
    font-size: 6rem;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #002584;
    font-family: "Marcellus", serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 1.8rem;
}
.page-title-two-column > .-inner > .-primary > .-main{
    font-size: 2.1rem;
    line-height: 1.05;
    letter-spacing: 0.05em;  
}
.page-title-two-column > .-inner > .-img{
    width: 39.9057%;
    position: relative;
}
.page-title-two-column > .-inner > .-img::after{
    content: "";
    width: 118.2033%;
    height: auto;
    aspect-ratio: 1/1;
    position: absolute;
    top: -42.1456%;
    left: 5.6738%;
    background: url(/recruit/assets/images/bg-page-title-two-column.svg) center center no-repeat;
    background-size: contain;
}
.page-title-two-column > .-inner > .-img > img{
    width: 100%;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 1000px){
    /* page-title-two-column */
    .page-title-two-column{
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

@media screen and (max-width: 760px){
    /* page-title-two-column */
    .page-title-two-column{
        padding: 10rem 2rem 20%;
    }
    .page-title-two-column > .-inner{
        display: block;
    }
    .page-title-two-column > .-inner > .-primary{
        padding-right: 0;
        padding-bottom: 6rem;
    }
    .page-title-two-column > .-inner > .-primary > .-en{
        font-size: 4.8rem;
        line-height: 1.05;
        white-space: normal;
    }
    .page-title-two-column > .-inner > .-primary > .-main{
        font-size: 1.8rem;
    }
    .page-title-two-column > .-inner > .-img{
        width: 70%;
        margin-left: auto;
    }
}

/* page-title-basic */
.page-title-basic{
    padding: 11rem 6rem 12.5rem;
    /*overflow: hidden;*/
}
.page-title-basic > .-inner{
    max-width: 1060px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    /*align-items: center;*/
}
.page-title-basic > .-inner > .-primary{
    padding-right: 4rem;
    padding-bottom: 2rem;
    flex: 1;
}
.page-title-basic > .-inner > .-primary > .-en{
    font-size: 6rem;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #002584;
    font-family: "Marcellus", serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 1.8rem;
}
.page-title-basic > .-inner > .-primary > .-main{
    font-size: 2.1rem;
    line-height: 1.05;
    letter-spacing: 0.05em;  
}
.page-title-basic > .-inner > .-bg{
    width: 39.9057%;
    position: relative;
}
.page-title-basic > .-inner > .-bg::after{
    content: "";
    width: 118.2033%;
    height: auto;
    aspect-ratio: 1/1;
    position: absolute;
    /*top: -42.1456%;*/
    top: -11rem;
    left: 5.6738%;
    background: url(/recruit/assets/images/bg-page-title-two-column.svg) center center no-repeat;
    background-size: contain;
}
.page-title-basic > .-inner > .-bg > img{
    width: 100%;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 1000px){
    /* page-title-basic */
    .page-title-basic{
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

@media screen and (max-width: 760px){
    /* page-title-basic */
    .page-title-basic{
        padding: 10rem 2rem;
    }
    .page-title-basic > .-inner{
        /*display: block;*/
    }
    .page-title-basic > .-inner > .-primary{
        padding-right: 0;
        padding-bottom: 0;
    }
    .page-title-basic > .-inner > .-primary > .-en{
        font-size: 4.8rem;
        line-height: 1.05;
        white-space: normal;
    }
    .page-title-basic > .-inner > .-primary > .-main{
        font-size: 1.8rem;
    }
    .page-title-basic > .-inner > .-bg{
        width: 40%;
    }
    .page-title-basic > .-inner > .-bg::after{
        top: -10rem;
    }
}

/* intro-box */
.intro-box{
    padding-left: 6rem;
    padding-right: 6rem;
    margin-bottom: 5.2rem;
}
.intro-box > .-inner{
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 1000px){
    /* intro-box */
    .intro-box{
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

@media screen and (max-width: 760px){
    /* intro-box */
    .intro-box{
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* intro-box-text */
.intro-box-text > p{
    font-size: 1.6rem;
    line-height: 2;
}

/* page-nav */
.page-nav{
    padding-left: 6rem;
    padding-right: 6rem;
}
.page-nav > .-inner{
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 1000px){
    /* page-nav */
    .page-nav{
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

@media screen and (max-width: 760px){
    /* page-nav */
    .page-nav{
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* page-nav-list */
.page-nav-list{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 6rem;
}
.page-nav-list > .-item{
    font-size: 2rem;
    margin-right: 5rem;
    margin-bottom: 2rem;
    white-space: nowrap
}
.page-nav-list > .-item:last-child{
    margin-right: 0;
}
.page-nav-list > .-item > a{
    display: inline-block;
    line-height: 3.5rem;
    padding-right: 5.5rem;
    background: url(/recruit/assets/images/arrow-page-nav.svg) right center no-repeat;
    background-size: 3.5rem auto;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.page-nav-list > .-item > a:hover{
  color: #002584;
}
.page-nav-list > .-item > a > span{
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: relative;
}
.page-nav-list > .-item > a > span::after{
    content: "";
    display: block;
    height: 2px;
    width: 100%;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-delay: 0;
    transition-delay: 0;
    background: #002584;
    position: absolute;
    left: 0;
    bottom: -6px;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right top;
    transform-origin: right top;
}
.page-nav-list > .-item > a:hover > span::after{
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
}

@media screen and (max-width: 760px){
    /* page-nav-list */
    .page-nav-list{
        display: block;
    }
    .page-nav-list > .-item{
        margin-top: 2rem;
        margin-right: 0;
        padding-top: 2rem;
        border-top: 1px solid #eeeeee;
    }
    .page-nav-list > .-item:nth-child(1){
        margin-top: 0;
        padding-top: 0;
        border-top: none;
    }
    .page-nav-list > .-item > a{
        width: 100%;
        padding-left: 1rem;
        background: url(/recruit/assets/images/arrow-page-nav.svg) right 1rem center no-repeat;
        background-size: 3.5rem auto;
    }
    .page-nav-list > .-item > a > span::after{
        display: none;
    }
}

/* basic-box-field */
.basic-box-field > .-field{
    margin-top: 8rem;
}
.basic-box-field > .-field:nth-child(1){
    margin-top: 0;
}

/* basic-box */
.basic-box{
    margin-top: -10rem; 
    padding-top: 10rem; 
    padding-left: 6rem;
    padding-right: 6rem;
}
.basic-box > .-inner{
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 1000px){
    /* basic-box */
    .basic-box{
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

@media screen and (max-width: 760px){
    /* basic-box */
    .basic-box{
        margin-top: -8rem; 
        padding-top: 8rem; 
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* basic-box-two-column */
.basic-box-two-column{
    display: flex;
    justify-content: space-between;    
}
.basic-box-two-column > .-box{
    width: 47.5%;
    display: flex;
    flex-direction: column;
}
.basic-box-two-column > .-box > .basic-text{
    flex-grow: 1;
}
.basic-box-two-column > .-box > .-img{
    max-width: 372px;
    margin-top: 3.4rem;
    margin-left: auto;
    margin-right: auto;
}
.basic-box-two-column > .-box > .-img > img{
    width: 100%;
}

@media screen and (max-width: 760px){
    /* basic-box-two-column */
    .basic-box-two-column{
        display: block;
    }
    .basic-box-two-column > .-box{
        width: 100%;
        margin-top: 6rem;
    }
    .basic-box-two-column > .-box:nth-child(1){
        margin-top: 0;
    }
    .basic-img-box > .-sub{
        width: 100%;
        /*
        max-width: 420px;
        margin-top: 3.5rem;
        margin-left: auto;
        margin-right: auto;
        */
    }
}

/* basic-img-box */
.basic-img-box{
    display: flex;
    justify-content: space-between;
}
.basic-img-box > .-primary{
    width: 47.5%;
}
.basic-img-box > .-sub{
    width: 47.5%;
    /*width: 43.125%;*/
    /*padding-right: 4.375%;*/
}
.basic-img-box > .-sub > .-img{
    max-width: 372px;
    margin-left: auto;
    margin-right: auto;
}
.basic-img-box > .-sub > .-img > img{
    width: 100%;
}

@media screen and (max-width: 1000px){
    /* basic-img-box */
    /*
    .basic-img-box > .-primary{
        width: 50%;
    }
    .basic-img-box > .-sub{
        padding-right: 0;
    }
    */
}

@media screen and (max-width: 760px){
    /* basic-img-box */
    .basic-img-box{
        display: block;
    }
    .basic-img-box > .-primary{
        width: 100%;
    }
    .basic-img-box > .-sub{
        width: 100%;
        max-width: 420px;
        margin-top: 3.5rem;
        margin-left: auto;
        margin-right: auto;
    }
}

/* basic-field */
.basic-field{
    margin-top: 4rem;
}
.basic-field > .-field{
    margin-top: 8rem;
}
.basic-field > .-field:nth-child(1){
    margin-top: 0;
}

@media screen and (max-width: 760px){
    /* basic-field */
    .basic-field > .-field{
        margin-bottom: 6rem;
    }
}

/* basic-small-field */
.basic-small-field{
    margin-top: 4rem;
}
.basic-small-field > .-field{
    margin-top: 4rem;
}
.basic-small-field > .-field:nth-child(1){
    margin-top: 0;
}

/* basic-sub-field */
.basic-sub-field{
    margin-top: 1.5rem;
}
.basic-sub-field > .-field{
    margin-top: 1.5rem;
}
.basic-sub-field > .-field:nth-child(1){
    margin-top: 0;
}

/* basic-heading */
.basic-heading{
    background-color: #e5e8f1;
    border-left: 6px solid #002584;
    color: #002584;
    font-size: 2.6rem;
    line-height: 1.5;
    font-weight: 700;
    padding: 1rem 1.6rem;
}

@media screen and (max-width: 760px){
    /* basic-heading */
    .basic-heading{
        font-size: 2.2rem;
    }
}

/* basic-heading-middle */
.basic-heading-middle{
    font-size: 2.1rem;
    padding-left: 3.5rem;
    position: relative;
    font-weight: 700;
    line-height: 1.65;
}
.basic-heading-middle::before{
    width: 20px;
    height: 4px;
    background-color: #002584;
    content: "";
    position: absolute;
    top: 1.7rem;
    left: 0;
}

@media screen and (max-width: 760px){
    /* basic-heading-middle */
    .basic-heading-middle{
        font-size: 2rem;
        padding-left: 3rem;
    }
    .basic-heading-middle::before{
        width: 18px;
        height: 4px;
        top: 1.6rem;
    }
}

/* line-heading */
.line-heading{
    border-bottom: 1px solid #cccccc;
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 1.5;
    padding-bottom: 0.8rem;
    margin-bottom: 2.5rem;
    color: #002584;
}

@media screen and (max-width: 760px){
    /* line-heading */
    .line-heading{
        font-size: 2.1rem;
    }
}

/* basic-text */
.basic-text > p{
    font-size: 1.6rem;
    line-height: 2;
}
.basic-text > .-note{
    line-height: 2;
    margin-left: 1em;
    display: block;
    font-size: 1.2rem;
    margin-top: 1em;
}
.basic-text > .-note::before{
    content: '※';
    margin-left: -1em;
}

/* simple-link */
.simple-link{
    color: #002584;
    text-decoration: underline;
}
.simple-link:hover{
    text-decoration: none;
}

/* basic-img */
.basic-img > img{
    width: 100%;
}

/* basic-table */
.basic-table{
    width: 100%;
}
.basic-table > tbody > tr > th{
    width: 170px;
    padding-right: 2rem;
}
.basic-table > tbody > tr > th,
.basic-table > tbody > tr > td{
    border-bottom: 1px solid #cccccc;
    font-size: 1.6rem;
    line-height: 2;
    vertical-align: middle;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
}
.basic-table > tbody > tr > th{
    color: #002584;
}

@media screen and (max-width: 1000px){
    /* basic-table */
    .basic-table > tbody > tr > th{
        width: 150px;
    }
}

@media screen and (max-width: 760px){
    /* basic-table */
    .basic-table > tbody > tr > th,
    .basic-table > tbody > tr > td{
        width: 100%;
        display: block;
    }
    .basic-table > tbody > tr > th{
        padding-right: 0;
        padding-bottom: 0;
        border-bottom: none;
    }
    .basic-table > tbody > tr > td{
        padding-top: 0;
        
    }
}


/* img-border */
.img-border{
    border: 1px solid #cccccc;
}

/* back-button */
.back-button{
  text-align: center;
}
.back-button > a{
  display: inline-block;
  line-height: 35px;
  font-size: 1.4rem;
  white-space: nowrap;
  padding-right: 5.2rem;
  background: url(/recruit/assets/images/arrow-circle-blue.svg) right center no-repeat;
  background-size: 3.5rem auto;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.back-button > a:hover{
  color: #002584;
}
.back-button > a > span{
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: relative;
}
.back-button > a > span::after{
    content: "";
    display: block;
    height: 2px;
    width: 100%;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-delay: 0;
    transition-delay: 0;
    background: #002584;
    position: absolute;
    left: 0;
    bottom: -6px;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right top;
    transform-origin: right top;
}
.back-button > a:hover > span::after{
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
}

/* entry-box-adjust */
.entry-box-adjust{;
    margin-top: -10rem;
    padding-top: 10rem;
}

@media screen and (max-width: 760px){
    /* entry-box-adjust */
    .entry-box-adjust{;
        margin-top: -8rem;
        padding-top: 8rem;
    }
}

/* entry-box */
.entry-box{
    padding: 8rem 6rem;
	background-color: #e5e8f1;
}
.entry-box > .-inner{
    max-width: 1060px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 1000px){
    /* entry-box */
    .entry-box{
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

@media screen and (max-width: 760px){
    /* entry-box */
    .entry-box{
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* entry-box-heading */
.entry-box-heading{
	display: flex;
	align-items: flex-end;
	margin-bottom: 5.5rem;
}
.entry-box-heading > .-en{
    color: #002584;
    font-size: 4.8rem;
    letter-spacing: 0.1em;
    line-height: 1;
    font-family: "Marcellus", serif;
	font-weight: 400;
	font-style: normal;
}
.entry-box-heading > .-main{
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    line-height: 1;
	padding-bottom: 0.8rem;
	margin-left: 3.2rem;
}

@media screen and (max-width: 760px){
    /* entry-box-heading */
    .entry-box-heading{
        margin-bottom: 4rem;
    }
    .entry-box-heading > .-en{
        font-size: 4.6rem;
    }
    .entry-box-heading > .-main{
        margin-left: 2.8rem;
    }
}

/* entry-box-nav */
.entry-box-nav{
    display: flex;
    justify-content: space-between;
    column-gap: 2rem;
}
.entry-box-nav > .-item{
    width : calc(100%/3);
}
.entry-box-nav > .-item > a{
    width: 100%;
    display: block;
    background: #ffffff url(/recruit/assets/images/arrow-circle-blue.svg) right 10% center no-repeat;
    background-size: 36px auto;
    padding: 5rem 10%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.entry-box-nav > .-item > a:hover{
	background: #002584 url(/recruit/assets/images/arrow-circle-white.svg) right 10% center no-repeat;
    background-size: 36px auto;
}
.entry-box-nav > .-item > a.-window{
    background: #ffffff url(/recruit/assets/images/icon-window-blue.svg) right 10% center no-repeat;
    background-size: 28px auto;
}
.entry-box-nav > .-item > a.-window:hover{
	background: #002584 url(/recruit/assets/images/icon-window-white.svg) right 10% center no-repeat;
    background-size: 28px auto;
}
.entry-box-nav > .-item > a > .-en{
    font-family: "Marcellus", serif;
	font-weight: 400;
	font-style: normal;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    line-height: 1;
    color: #002584;
    margin-bottom: 1.8rem;
    white-space: nowrap;
	-webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.entry-box-nav > .-item > a:hover > .-en{
	color: #ffffff;
}
.entry-box-nav > .-item > a > .-main{
    font-size: 2.4rem;
    line-height: 1;
	color: #333333;
	font-weight: 700;
    white-space: nowrap;
	-webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.entry-box-nav > .-item > a:hover > .-main{
	color: #ffffff;
}
.entry-box-nav > .-item > a > .-main > br{
    display: none;
}

@media screen and (max-width: 1160px){
    /* entry-box-nav */
    .entry-box-nav{
        display: block;
    }
    .entry-box-nav > .-item{
        width: 100%;
        margin-top: 2rem;
    }
    .entry-box-nav > .-item:nth-child(1){
        margin-top: 0;
    }
    .entry-box-nav > .-item > a{
        padding: 50px;
        background: #ffffff url(/recruit/assets/images/arrow-circle-blue.svg) right 4rem center no-repeat;
        background-size: 36px auto;
    }
    .entry-box-nav > .-item > a:hover{
    	background: #002584 url(/recruit/assets/images/arrow-circle-white.svg) right 4rem center no-repeat;
        background-size: 36px auto;
    }
    .entry-box-nav > .-item > a.-window{
        background: #ffffff url(/recruit/assets/images/icon-window-blue.svg) right 4.4rem center no-repeat;
        background-size: 28px auto;
    }
    .entry-box-nav > .-item > a.-window:hover{
	    background: #002584 url(/recruit/assets/images/icon-window-white.svg) right 4.4rem center no-repeat;
        background-size: 28px auto;
    }
    .entry-box-nav > .-item > a > .-main{
        font-size: 2.5rem;
        letter-spacing: 0.05em;
    }
}

@media screen and (max-width: 1000px){
    /* entry-box-nav */
    .entry-box-nav > .-item > a{
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

@media screen and (max-width: 760px){
    /* entry-box-nav */
    .entry-box-nav{
        display: block;
    }
    .entry-box-nav > .-item{
        width: 100%;
        margin-top: 2rem;
    }
    .entry-box-nav > .-item:nth-child(1){
        margin-top: 0;
        padding-right: 0;
    }
    .entry-box-nav > .-item:nth-child(2){
        padding-left: 0;
    }
    .entry-box-nav > .-item > a{
        padding-left: 3.5rem;
        padding-right: 10.5rem;
        background: #ffffff url(/recruit/assets/images/arrow-circle-blue.svg) right 3.5rem center no-repeat;
        background-size: 36px auto;
    }
    .entry-box-nav > .-item > a:hover{
    	background: #002584 url(/recruit/assets/images/arrow-circle-white.svg) right 3.5rem center no-repeat;
        background-size: 36px auto;
    }
    .entry-box-nav > .-item > a.-window{
        background: #ffffff url(/recruit/assets/images/icon-window-blue.svg) right 3.9rem center no-repeat;
        background-size: 28px auto;
    }
    .entry-box-nav > .-item > a.-window:hover{
	    background: #002584 url(/recruit/assets/images/icon-window-white.svg) right 3.9rem center no-repeat;
        background-size: 28px auto;
    }
    .entry-box-nav > .-item > a > .-en{
        margin-bottom: 1.5rem;
    }
    .entry-box-nav > .-item > a > .-main{
        line-height: 1.35;
    }
}

@media screen and (max-width: 450px){
    /* entry-box-nav */
    .entry-box-nav > .-item > a > .-main > br{
        display: inline;
    }
}

/* entry-box-link */
.entry-box-link{
    text-align: center;
    padding-top: 3.8rem;
}
.entry-box-link > a{
    color: #002584;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    line-height: 1;
    white-space: nowrap;
    position: relative;
}
.entry-box-link > a::after{
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #002584;
    bottom: -6px;
    transform: scale(1, 1);
    transform-origin: left top;
    transition: transform 0.3s;
}
.entry-box-link > a:hover::after{
    transform: scale(0, 1);
    transform-origin: right top;
}
.entry-box-link > a > span{
    padding-right: 2.5rem;
    display: inline-block;
    background: url(/assets/images/arrow-link-orange.svg) right 4px center no-repeat;
    background-size: 14px auto;
}

@media screen and (max-width: 760px){
    /* entry-box-link */
    .entry-box-link{
        padding-top: 4rem;
    }
}

/*========================================
footer layout
========================================*/
/* site-footer */
.site-footer{
	padding: 8rem 6rem 6rem;
}
.site-footer > .-inner{
	max-width: 1060px;
	margin-left: auto;
	margin-right: auto;
}

@media print, screen and (max-width: 1000px){
	/* site-footer */
	.site-footer{
        padding-left: 4rem;
        padding-right: 4rem;
	}
}

@media print, screen and (max-width: 760px){
	/* site-footer */
	.site-footer{
        padding-left: 2rem;
        padding-right: 2rem;
	}
}

/* footer-primary */
.footer-primary{
	display: flex;
	justify-content: space-between;
	margin-bottom: 10rem;
}

@media print, screen and (max-width: 1000px){
	/* footer-primary */
	.footer-primary{
        display: block;
        margin-bottom: 8rem;
	}
}

@media print, screen and (max-width: 760px){
	/* footer-primary */
	.footer-primary{
		display: block;
	}
}

/* footer-company */
.footer-company{
	width: 37.7358%;
}

@media print, screen and (max-width: 1000px){
    /* footer-company */
    .footer-company{
        width: 400px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 8rem;
    }
}

@media print, screen and (max-width: 457px){
    /* footer-company */
    .footer-company{
        width: 100%;
    }
}

/* footer-name */
.footer-name > a{
	width: 100%;
	display: inline-block;
	-webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.footer-name > a:hover{
	opacity: 0.75;
}
.footer-name > a > .-logo{
}
.footer-name > a > .-logo > img{
	width: 100%;
}
.footer-name > a > .-type{
	margin-top: 1.6vw;
	width: 30%;
}
.footer-name > a > .-type > img{
	width: 100%;
}

@media print, screen and (max-width: 1000px){
    /* footer-name */
    .footer-name > a > .-type{
    	margin-top: 2.2rem;
    }
}

@media print, screen and (max-width: 457px){
    /* footer-name */
    .footer-name > a > .-type{
	    margin-top: 5vw;
    }
}

/* footer-button */
.footer-button{
    margin-top: 3rem;
}
.footer-button > a{
    width: 140px;
    line-height: 34px;
    font-size: 1.4rem;
	font-weight: 700;
    text-align: center;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease; 
	display: inline-block;
	border-radius: 9999px;
    border: 1px solid #002584;
    color: #002584;
}
.footer-button > a:hover{
    opacity: 0.75;
}
.footer-button > a > span{
	background: url(/recruit/assets/images/arrow-link-blue.svg) right center no-repeat;
	background-size: 1.4rem auto;
	padding-right: 2.2rem;
}

@media print, screen and (max-width: 1000px){
    /* footer-button */
    .footer-button{
        margin-top: 2.5rem;
        text-align: center;
    }
}

/* footer-nav */
.footer-nav{
	display: flex;
	justify-content: flex-end;
	width: 48.4906%;
	flex: 1;
}
.footer-nav > .-box{
	margin-right: 10.8491%;
}
.footer-nav > .-box:last-child{
	margin-right: 9.434%;
}

@media print, screen and (max-width: 1180px){
    /* footer-nav */
    .footer-nav > .-box:last-child{
    	margin-right: 0;
    }
}

@media print, screen and (max-width: 1000px){
	/* footer-nav */
	.footer-nav{
		width: 100%;
        justify-content: center;
	}
}

@media print, screen and (max-width: 540px){
	/* footer-nav */
	.footer-nav{
		display: block;
		width: 100%;
	}
	.footer-nav > .-box{
        margin-top: 4.8rem;
		margin-right: 0;
	}
    .footer-nav > .-box:nth-child(1){
        margin-top: 0;
    }
}

/* footer-nav-list */
.footer-nav-list{
	width: 100%;
}
.footer-nav-list > .-item{
	margin-top: 2rem;
}
.footer-nav-list > .-item:nth-child(1){
	margin-top: 0;
}
.footer-nav-list > .-item > a{
	color: #002584;
	font-size: 1.6rem;
	white-space: nowrap;
	line-height: 1;
	letter-spacing: 0.05em;
	-webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    position: relative;
}
.footer-nav-list > .-item > a::after{
    position: absolute;
    right: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #002584;
    bottom: -3px;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
}
.footer-nav-list > .-item > a:hover::after{
    transform: scale(1, 1);
    transform-origin: left top;
}

/* footer-nav-list-sub */
.footer-nav-list-sub-block > .footer-nav-list-sub{
	margin-top: 4.8rem;
}
.footer-nav-list-sub-block > .footer-nav-list-sub:nth-child(1){
	margin-top: 0;
}
.footer-nav-list-sub > .-item{
	margin-top: 1.7rem;
}
.footer-nav-list-sub > .-item:nth-child(1){
	margin-top: 0;
}
.footer-nav-list-sub > .-item > a{
	color: #333333;
	font-size: 1.4rem;
	white-space: nowrap;
	line-height: 1;
	letter-spacing: 0.05em;
	-webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.footer-nav-list-sub > .-item > a:hover{
	color: #002584;
}
.footer-nav-list-sub > .-item.-window > a{
    padding-right: 2.2rem;
    background: url(/recruit/assets/images/icon-window-black.svg) right top 5px no-repeat;
    background-size: 14px auto;
}
.footer-nav-list-sub > .-item.-window > a:hover{
    padding-right: 2.2rem;
    background: url(/recruit/assets/images/icon-window-blue.svg) right top 5px no-repeat;
    background-size: 14px auto;
}

/* copyright */
.copyright{
	font-size: 1.4rem;
	font-family: "Marcellus", serif;
  	font-weight: 400;
  	font-style: normal;
	color: #333333;
	line-height: 1.75;
}

/* page-top */
.page-top{
    display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
    z-index: 10;
    text-indent: -9999px;
}
.page-top > a{
    display: flex;
	width: 50px;
	height: 50px;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	background: #002584 url(/recruit/assets/images/arrow-page-top-white.svg) center center no-repeat;
	background-size: 13px auto;
    color: #ffffff;
}
.page-top a:hover{
    opacity: 0.75;
}

@media print, screen and (max-width: 760px){
    /* page-top */
    .page-top{
        bottom: 10px;
    	right: 10px;
    }
    .page-top > a{
    	width: 44px;
	    height: 44px;
    	background: #002584 url(/recruit/assets/images/arrow-page-top-white.svg) center center no-repeat;
	    background-size: 11px auto;
    }
    .page-top a:hover{
        opacity: 1;
    }
}
