@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&family=Syncopate:wght@400;700&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:#c1272d;}
/*---------- //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%;
  text-size-adjust: 100%;
  font-feature-settings: "palt";
}
body{
  font-size: 1.6rem;
  line-height: 1.75;
  color: #ffffff;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  background-color: #000000;
}
a{
  color: #c1272d;
	text-decoration: none;
}
a:hover,
a:active{
	text-decoration: none;
}
img{
  height: auto;
	display: block;
}
img,a img{
	vertical-align: bottom;
}
b,
strong,
.bold{
    font-weight: bold;
}
::selection{
	background-color: #ffffff;
	color: #000000;
}
::-moz-selection{
	background-color: #ffffff;
	color: #000000;
}
.en{
  font-family: "Syncopate", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/*---------- //end common style ----------*/

/*---------- =04 layout style ----------*/
/*========================================
header layout
========================================*/
/* site-header */
.site-header{
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  height: 100px;
}
.site-header > .-inner{
	height: 100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-left: 5.5556%;
	padding-right: 4.8611%;
}

@media print, screen and (max-width: 1200px){
	/* site-header */
	.site-header > .-inner{
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
}

@media print, screen and (max-width: 760px){
	/* site-header */
	.site-header{
		height: 64px;
	}
  .site-header > .-inner{
    height: 64px;
    padding-left: 1.5rem;
		padding-right: 1.5rem;
  }
}

/* site-name */
.site-name{
  width: 312px;
}
.site-name > a{
	-webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  vertical-align: bottom;
  width: 100%;
  display: flex;
	justify-content: space-between;
	align-items: center;
  color: #ffffff;
}
.site-name > a:hover{
  opacity: 0.75;
}
.site-name > a > .-logo{
  width: 210px;
}
.site-name > a > .-logo > img{
  width: 100%;
}
.site-name > a > .-text{
  font-size: 1.6rem;
  line-height: 1;
  white-space: nowrap;
}

@media print, screen and (max-width: 1200px){
  /* site-name */
  .site-name{
    width: 300px;
  }
  .site-name > a > .-text{
    font-size: 1.5rem;
  }
}

@media print, screen and (max-width: 760px){
  /* site-name */
  .site-name{
    width: 205px;
  }
  .site-name > a > .-logo{
    width: 130px;
  }
  .site-name > a > .-text{
    font-size: 1.3rem;
  }
}


/* header-primary */
.header-primary{
	display: flex;
  align-items: center;
}

@media print, screen and (max-width: 1000px){
  /* header-primary */
  .header-primary{
    display: none;
  }
}

/* header-nav */
.header-nav > .-main{
	letter-spacing: -.4em;
	text-align: right;
}
.header-nav > .-main > .-item{
	font-size: 1.6rem;
	font-weight: 700;
	display: inline-block;
	white-space: nowrap;
	line-height: 1;
	letter-spacing: normal;
	margin-left: 2.8rem;
  font-family: "Syncopate", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.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: #ffffff;
}
.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: #ffffff;
  position: absolute;
  left: 0;
  bottom: -9px;
  -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;
}

@media print, screen and (max-width: 1200px){
  /* header-nav */
  .header-nav > .-main > .-item{
  	font-size: 1.5rem;
    margin-left: 2.4rem;
  }
}

/* header-button */
.header-button{
  margin-left: 4rem;
}
.header-button > a{
  background-color: #c1272d;
  color: #ffffff;
  width: 140px;
  line-height: 4rem;
  font-size: 1.8rem;
	font-family: "Syncopate", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease; 
	display: inline-block;
	border-radius: 9999px;
}
.header-button > a:hover{
  opacity: 0.75;
}

@media print, screen and (max-width: 1200px){
  /* header-button */
  .header-button{
    margin-left: 2.4rem;
  }
  .header-button > a{
    font-size: 1.7rem;
    width: 130px;
  }
}

/* hamburger-button */
.hamburger-button{
  display: none;
}

@media screen and (max-width: 1000px){
  /* hamburger-button */
  .hamburger-button{
    display: block;
    position: absolute;
    width: 80px;
    height: 80px;
    cursor: pointer;
    top: 1rem;
    right: 1rem;
    background-color: #c1272d;
    z-index: 11;
  }
  .fixed .hamburger-button{
    position: fixed;        
  }
  .hamburger-button > .-line{
    position: absolute;
    top: 21px;
    left: 27px;
  }
  .hamburger-button > .-line > span{
    background-color: #ffffff;
    display: block;
    width: 26px;
    height: 2px;
    transition: 0.4s;
    margin: 5px 0;
  }
  .hamburger-button.is-open span:nth-child(1){
    transform: rotate(45deg) translate(4px, 4px);
  }
  .hamburger-button.is-open span:nth-child(2){
    opacity: 0;
  }
  .hamburger-button.is-open span:nth-child(3){
    transform: rotate(-45deg) translate(6px, -6px);
  }
  .hamburger-button > .-text{
    font-size: 1rem;
    color: #ffffff;
    text-align: center;
    position: absolute;
    left: 0;
    bottom: 13px;
    width: 80px;
  }
}

@media screen and (max-width: 760px){
  /* hamburger-button */
  .hamburger-button{
    width: 64px;
    height: 64px;
    top: 0;
    right: 0;
  }
  .hamburger-button > .-line{
    top: 15px;
    left: 20px;
  }
  .hamburger-button > .-line > span{
    width: 24px;
  }
  .hamburger-button > .-text{
    font-size: 0.8rem;
    bottom: 9px;
    width: 64px;
  }
}

/* hamburger-nav */
.hamburger-nav{
  display: none;
}

@media screen and (max-width: 1000px){
  /* hamburger-nav */
  .hamburger-nav{
    background-color: #000000;
    display: block;
    height: 100%;
    opacity: 0;
    overflow: auto;
    padding-top: 12rem;
    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 #717171;
    font-size: 2.2rem;
    line-height: 1;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  .hamburger-nav-main > li > a{
    background: url(/assets/images/arrow-link-white.svg) right 15px center no-repeat;
    background-size: 28px auto;
    color: #ffffff;
    display: block;
    padding: 3.2rem 0.5rem;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease; 
  }
  .hamburger-nav-main > li > a:hover{
    opacity: 0.75;
  }  
}

@media screen and (max-width: 760px){
  /* hamburger-nav */
  .hamburger-nav{
		padding-top: 8rem;
	}
  .hamburger-nav-main > li{
    margin-left: 2rem;
    margin-right: 2rem;
    font-size: 2rem;
  }
  .hamburger-nav-main > li > a{
    padding-top: 3rem;
    padding-bottom: 3rem;
    background: url(/assets/images/arrow-link-white.svg) right 15px center no-repeat;
    background-size: 26px auto;
  }
  .hamburger-nav-main > li > a:hover{
    opacity: 1;
  }  
}

/* 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: 6.4rem;
  color: #ffffff;
  background-color: #c1272d;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-size: 2.4rem;
  font-family: "Syncopate", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  white-space: nowrap;
	border-radius: 9999px;
}

@media screen and (max-width: 760px){
  /* header-button-sp */
  .header-button-sp{
    margin-top: 3.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .header-button-sp > a{
    line-height: 6rem;
    font-size: 2.3rem;
  }
}

/*========================================
contents layout
========================================*/
/* note */
.note{
    margin-left: 1em;
    display: block;
}
.note::before{
    content: '※';
    margin-left: -1em;
}

/* visual-page */
.visual-page{
  height: calc(600px + 100px);
}

@media screen and (max-width: 760px){
  /* visual-page */
  .visual-page{
    height: calc(400px + 64px);
  }
}

/* page-title */
.page-title{
  height: 600px;
  padding-left: 6rem;
  padding-right: 6rem;
  display: flex;
  align-items: center;
}
.page-title.-no-image{
  display: flex;
  align-items: center;
}
.page-title > .-inner{
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  
}
.page-title > .-inner > .-primary{
  /*margin-top: 17.2rem;*/
}
.page-title.-no-image > .-inner > .-primary{
  margin-top: 0;
}
.page-title > .-inner > .-primary > .-en{
  font-size: 4.8rem;
  line-height: 1;
  font-family: "Syncopate", sans-serif;
  font-weight: 700;
  font-style: normal;
  white-space: nowrap;
  margin-bottom: 3.2rem;
}
.page-title > .-inner > .-primary > .-main{
  font-weight: 700;
  line-height: 1;
  font-size: 2rem;
  white-space: nowrap;
}
.page-title > .-inner > .-primary > .-main > span{
  background-color: #000000;
  color: #ffffff;
  line-height: 3rem;
  display: inline-block;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
}

@media screen and (max-width: 1000px){
  /* page-title */
  .page-title{
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media screen and (max-width: 760px){
  /* page-title */
  .page-title{
    height: 400px;
    padding-left: 2rem;
    padding-right: 2rem;
    display: flex;
    align-items: center;
  }
  .page-title > .-inner > .-primary{
    margin-top: 0;
  }
  .page-title > .-inner > .-primary > .-en{
    margin-bottom: 2rem;
    font-size: 3.8rem;
  }
}

@media screen and (max-width: 480px){
  /* page-title */
  .page-title > .-inner > .-primary > .-en{
    font-size: 7.9vw;
    margin-bottom: 4.3vw;
  }
  .page-title > .-inner > .-primary > .-main{
    font-size: 4.15vw;
  }
  .page-title > .-inner > .-primary > .-main > span{
    line-height: 6.35vw;
    padding-left: 1.7vw;
    padding-right: 1.7vw;
  }
}

/* contents */
.contents{
  margin-top: 10rem;
  margin-bottom: 12rem;
}

@media print, screen and (max-width: 1000px){
  /* contents */
.contents{
    margin-top: 4rem;
    margin-bottom: 10rem;
  }
}

@media print, screen and (max-width: 760px){
  /* contents */
  .contents{
    margin-top: 0;
    margin-bottom: 8rem;
  }
}

/* page-contents */
.page-contents{
  padding-left: 6rem;
  padding-right: 6rem;
  margin-bottom: 10rem;
}
.page-contents > .-primary{
  background-color: #ffffff;
  color: #000000;
  border-radius: 1rem;
  padding: 8rem 7rem;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
}
.page-contents > .-primary ::selection{
	background-color: #000000;
	color: #ffffff;
}
.page-contents > .-primary ::-moz-selection{
	background-color: #000000;
	color: #ffffff;
}

@media print, screen and (max-width: 1000px){
  /* page-contents */
  .page-contents{
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .page-contents > .-primary{
    padding: 6rem 4rem 8rem;
  }
}

@media print, screen and (max-width: 760px){
  /* page-contents */
  .page-contents{
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 8rem;
  }
  .page-contents > .-primary{
    border-radius: 0;
    padding-top: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* basic-contents */
.basic-contents{
  margin-bottom: 12rem;
}

@media print, screen and (max-width: 760px){
  /* basic-contents */
  .basic-contents{
    margin-bottom: 10rem;
  }
}

@media print, screen and (max-width: 760px){
  /* basic-contents */
  .basic-contents{
    margin-bottom: 8rem;
  }
}

/* basic-contents-area */
.basic-contents-area{
  padding-left: 4rem;
  padding-right: 4rem;
  margin-bottom: 10rem;
}
.basic-contents-area > .-inner{
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

@media print, screen and (max-width: 760px){
  /* basic-contents-area */
  .basic-contents-area{
    padding-left: 2rem;
    padding-right: 2rem;
    margin-bottom: 8rem;
  }
}

/* basic-field */
.basic-field > .-field{
  margin-top: 12rem;
}
.basic-field > .-field:nth-child(1){
  margin-top: 0;
}

@media screen and (max-width : 760px){
  /* basic-field */
  .basic-field > .-field{
    margin-top: 8rem;
  }
}

/* basic-sub-field */
.basic-sub-field{
  margin-top: 4.2rem;
}
.basic-sub-field > .-field{
  margin-top: 6rem;
}
.basic-sub-field > .-field:nth-child(1){
  margin-top: 0;
}

@media screen and (max-width : 760px){
  /* basic-sub-field */
  .basic-sub-field{
    margin-top: 3.5rem;
  }
}

/* section-heading */
.section-heading{
  color: #ffffff;
}
.section-heading > .-en{
  margin-bottom: 2.2rem;
  font-family: "Syncopate", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  font-size: 3.6rem;
  white-space: nowrap;
}
.section-heading > .-main{
  font-size: 1.6rem;
  line-height: 1;
  white-space: nowrap;
  padding-left: 1.6rem;
  position: relative;
}
.section-heading > .-main::before{
  border-radius: 50%;
  content: "";
  background-color: #c1272d;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 0.5rem;
  left: 0;
}

@media print, screen and (max-width: 760px){
  /* section-heading */
  .section-heading > .-en{
    font-size: 2.8rem;
  }
}

/* basic-heading */
.basic-heading{
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.55;
  position: relative;
  padding-top: 2rem;
}
.basic-heading::before{
  content: "";
  width: 80px;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #c1272d;
}

@media print, screen and (max-width: 760px){
  /* basic-heading */
  .basic-heading{
    font-size: 2.4rem;
  }
  .basic-heading::before{
    width: 60px;
  }
}

/* basic-heading-middle */
.basic-heading-middle{
  font-size: 2.1rem;
  line-height: 1.55;
  font-weight: 700;
  position: relative;
  padding-left: 3.2rem;
}
.basic-heading-middle::before{
  content: "";
  position: absolute;
  top: 1.4rem;
  left: 0;
  width: 16px;
  height: 4px;
  background-color: #c1272d;
}

/* point-heading */
.point-heading{
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 700;
  position: relative;
  padding-left: 3.2rem;
}
.point-heading::before{
  content: "";
  position: absolute;
  top: 1.5rem;
  left: 0;
  width: 16px;
  height: 4px;
  background-color: #c1272d;
}

/* basic-catch */
.basic-catch > p{
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 700;
}

@media print, screen and (max-width: 760px){
  /* basic-catch */
  .basic-catch > p{
    font-size: 2.1rem;
  }
}

/* section-text */
.section-text > p{
  font-size: 1.6rem;
  line-height: 1.75;
}

/* basic-text */
.basic-text{
  font-size: 1.6rem;
  line-height: 1.75;
}
.basic-text > p{
  margin-top: 2.5rem;
}
.basic-text > p:nth-child(1){
  margin-top: 0;
}

/* basic-img */
.basic-img{
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 0.5rem;
  overflow: hidden;
}
.basic-img > img{
  width: 100%;
}

/* basic-table */
.basic-table{
  width: 100%;
  border-top: 1px solid #c8c8c8;
}
.basic-table > tbody > tr > th,
.basic-table > tbody > tr > td{
  border-bottom: 1px solid #c8c8c8;
  font-size: 1.6rem;
  line-height: 1.75;
}
.basic-table > tbody > tr > th{
  width: 160px;
  padding: 2.5rem 2rem;
  font-weight: 700;
}
.basic-table > tbody > tr > td{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

@media print, screen and (max-width: 760px){
  /* basic-table */
  .basic-table > tbody > tr > th{
    width: 140px;
  }
}

@media print, screen and (max-width: 640px){
  /* basic-table */
  .basic-table > tbody > tr > th,
  .basic-table > tbody > tr > td{
    display: block;
  }
  .basic-table > tbody > tr > th{
    width: 100%;
    border-bottom: none;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .basic-table > tbody > tr > td{
    padding-top: 0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

/* section-entry */
.section-entry{
  padding-left: 11.8rem;
  padding-right: 11.8rem;
}
.section-entry > .-inner{
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media print, screen and (max-width: 1451px){
  /* section-entry */
  .section-entry{
    padding-left: 8.2173%;
    padding-right: 8.2173%;
  }
}

@media print, screen and (max-width: 1000px){
  /* section-entry */
  .section-entry{
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media print, screen and (max-width: 760px){
  /* section-entry */
  .section-entry{
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* section-entry-box */
.section-entry-box{
  display: flex;
  justify-content: space-between;
}
.section-entry-box > .-heading{
  padding-right: 4.8rem;
}
.section-entry-box > .-primary{
  max-width: 784px;
  flex: 1;
}

@media screen and (max-width: 900px){
  /* section-entry-box */
  .section-entry-box{
    display: block;
  }
  .section-entry-box > .-heading{
    padding-right: 0;
  }
  .section-entry-box > .-primary{
    max-width: none;
    margin-top: 4rem;
  }
}

/* entry-box-nav */
.section-entry-nav{
  display: flex;
  justify-content: space-between; 
}
.section-entry-nav > .-item{
  width: 46.9388%;
}
.section-entry-nav > .-item > a{
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 5px;
  height: 96px;
  display: flex;
  align-items: center;
  padding-left: 8.1522%;
  padding-right: 8.1522%;
}
.section-entry-nav > .-item.-graduate > a{
  background: #ffffff url(/recruit/assets/images/arrow-circle-black.svg) right 8.1522% center no-repeat;
  background-size: 3rem auto;
  color: #000000;
  border: 2px solid #ffffff;
}
.section-entry-nav > .-item.-graduate > a:hover{
  background: #000000 url(/recruit/assets/images/arrow-circle-white.svg) right 8.1522% center no-repeat;
  background-size: 3rem auto;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.section-entry-nav > .-item.-career > a{
  background: #c1272d url(/recruit/assets/images/arrow-circle-white.svg) right 8.1522% center no-repeat;
  background-size: 3rem auto;
  color: #ffffff;
  border: 2px solid #c1272d
}
.section-entry-nav > .-item.-career > a:hover{
  color: #c1272d;
  background: #ffffff url(/recruit/assets/images/arrow-circle-red.svg) right 8.1522% center no-repeat;
  background-size: 3rem auto;
  border: 2px solid #ffffff;
}
.section-entry-nav > .-item > a > .-text{
  width: 100%;
}
.section-entry-nav > .-item > a > .-text > .-en{
  font-family: "Syncopate", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 1.4rem;
  white-space: nowrap;
}
.section-entry-nav > .-item > a > .-text > .-main{
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
}

@media screen and (max-width: 1000px){
  /* entry-box-nav */
  .section-entry-nav > .-item{
    width: 50%;
  }
  .section-entry-nav > .-item:nth-child(1){
    padding-right: 1.5rem;
  }
  .section-entry-nav > .-item:nth-child(2){
    padding-left: 1.5rem;
  }
}

@media screen and (max-width: 760px){
  /* entry-box-nav */
  .section-entry-nav > .-item:nth-child(1){
    padding-right: 1rem;
  }
  .section-entry-nav > .-item:nth-child(2){
    padding-left: 1rem;
  }
}

@media screen and (max-width: 580px){
  /* entry-box-nav */
  .section-entry-nav{
    display: block;
  }
  .section-entry-nav > .-item{
    width: 100%;
  }
  .section-entry-nav > .-item:nth-child(1){
    padding-right: 0;
  }
  .section-entry-nav > .-item:nth-child(2){
    margin-top: 2rem;
    padding-left: 0;
  }
  .section-entry-nav > .-item > a{
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .section-entry-nav > .-item.-graduate > a{
    background: #ffffff url(/recruit/assets/images/arrow-circle-black.svg) right 3rem center no-repeat;
    background-size: 3rem auto;
  }
  .section-entry-nav > .-item.-graduate > a:hover{
    background: #000000 url(/recruit/assets/images/arrow-circle-white.svg) right 3rem center no-repeat;
    background-size: 3rem auto;
  }
  .section-entry-nav > .-item.-career > a{
    background: #c1272d url(/recruit/assets/images/arrow-circle-white.svg) right 3rem center no-repeat;
    background-size: 3rem auto;
  }
  .section-entry-nav > .-item.-career > a:hover{
    background: #ffffff url(/recruit/assets/images/arrow-circle-red.svg) right 3rem center no-repeat;
    background-size: 3rem auto;
  }
}

/* interview-list */
.interview-list{
  display: flex;
  flex-wrap: wrap;
}

@media print, screen and (max-width: 680px){
  /* interview-list */
  .interview-list{
    display: block;
  }
}

/* job-list-box */
.job-list-box{
  width: 50%;
  margin-top: 6rem;
}
.job-list-box:nth-child(-n+2){
  margin-top: 0;
}
.job-list-box:nth-child(odd){
  padding-right: 2rem;
}
.job-list-box:nth-child(even){
  padding-left: 2rem;
}
.job-list-box > a{
  display: flex;
  justify-content: space-between;
  width: 100%;
  color: #000000;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.job-list-box > a:hover{
  color: #c1272d;
}
.job-list-box > a > .-primary{
  /*padding-top: 1%;*/
  width: 65.9091%;
}
.job-list-box > a > .-img{ 
  width: 27.2727%;
}
.job-list-box > .-inner{
  display: flex;
  justify-content: space-between;  
}
.job-list-box > .-inner > .-primary{
  /*padding-top: 1%;*/
  width: 65.9091%;
}
.job-list-box > .-inner > .-img{ 
  width: 27.2727%;
}

@media print, screen and (max-width: 1000px){
  /* job-list-box */
  .job-list-box:nth-child(odd){
    padding-right: 1rem;
  }
  .job-list-box:nth-child(even){
    padding-left: 1rem;
  }
}

@media print, screen and (max-width: 680px){
  /* job-list-box */
  .job-list-box{
    width: 100%;
  }
  .job-list-box:nth-child(2){
    margin-top: 6rem;
  }
  .job-list-box:nth-child(odd){
    padding-right: 0;
  }
  .job-list-box:nth-child(even){
    padding-left: 0;
  }
  .job-list-box > a > .-primary{
    flex: 1;
    width: auto;
    padding-left: 2rem;
  }
  .job-list-box > .-inner > .-primary{
    flex: 1;
    width: auto;
    padding-left: 2rem;
  }
}

/* job-list-box-img */
.job-list-box-img{
  overflow: hidden;
  border-radius: 0.36rem;
  width: 100%;
  display: block;
}
.job-list-box-img > img{
  width: 100%;
  -ms-transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.job-list-box > a:hover > .-img > .job-list-box-img > img{
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/* job-list-box-main */
.job-list-box-main > .-heading{
  padding-left: 2rem;
  position: relative;
  font-size: 1.8rem;
  line-height: 1.55;
  font-weight: 700;
}
.job-list-box-main > .-heading::before{
  border-radius: 50%;
  content: "";
  background-color: #c1272d;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 0.9rem;
  left: 0;
}
.job-list-box-main > .-heading > span{
  display: inline-block;
  padding-right: 5rem;
  background: url(/assets/images/arrow-circle-red.svg) right top no-repeat;
  background-size: 2.4rem auto;
}
.job-list-box-main > .-text{
  margin-top: 1.3rem;
}
.job-list-box-main > .-text > p{
  font-size: 1.4rem;
  line-height: 1.7857;
}
.job-list-box-main > .-button{
  background-color: #c1272d;
  border-radius: 9999px;
  text-align: center;
  color: #ffffff;
  margin-top: 1.8rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-size: 1.6rem;
}
.job-list-box > a:hover .-button{
  opacity: 0.75;
}
.job-list-box-main > .-button > span{
  display: inline-block;
  line-height: 3.6rem;
  padding-left: 12.4138%;
  background: url(/recruit/assets/images/icon-interview-white.svg) left 1rem no-repeat;
  background-size: 2rem auto;
}

@media print, screen and (max-width: 1000px){
  /* job-list-box-main */
  .job-list-box-main > .-button{
    font-size: 1.4rem;
  }
  .job-list-box-main > .-button > span{
    background: url(/recruit/assets/images/icon-interview-white.svg) left 1rem no-repeat;
    background-size: 1.8rem auto;
    padding-left: 12%;
  }
  .job-list-box-main > .-button > span > .-tablet{
    display: none;
  }
}

@media print, screen and (max-width: 680px){
  /* job-list-box-main */
  .job-list-box-main > .-button > span{
    padding-left: 3rem;
  }
  .job-list-box-main > .-button > span > .-tablet{
    display: inline;
  }
}

@media print, screen and (max-width: 420px){
  /* job-list-box-main */
  .job-list-box-main > .-button > span > .-tablet{
    display: none;
  }
}

/*========================================
footer layout
========================================*/
/* site-footer */
.site-footer{
  padding-left: 6rem;
  padding-right: 6rem;
  background-color: #000000;
}
.site-footer > .-inner{
	max-width: 1280px;
	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-top */
.footer-top{
  display: flex;
	justify-content: space-between;
	align-items: center;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.footer-top > .-base{
  padding-left: 6rem;
}

@media print, screen and (max-width: 1240px){
  /* footer-top */
  .footer-top{
    display: block;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .footer-top > .-base{
    margin-top: 4rem;
    padding-left: 0;
  }
}

@media print, screen and (max-width: 760px){
  /* footer-top */
  .footer-top > .-base{
    margin-top: 3rem;
  }
}

/* site-name-footer */
.site-name-footer{
  width: 312px;
}
.site-name-footer > a{
  width: 100%;
  display: flex;
	justify-content: space-between;
	align-items: center; 
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.site-name-footer > a:hover{
  opacity: 0.75;
}
.site-name-footer > a > .-logo{
  width: 210px;
}
.site-name-footer > a > .-logo > img{
  width: 100%;
}
.site-name-footer. > a > .-text{
  font-size: 1.6rem;
  line-height: 1;
  font-weight: bold;
  color: #ffffff;
}

@media print, screen and (max-width: 760px){
  /* site-name-footer */
  .site-name-footer{
   width: 260px;
  }
  .site-name-footer > a{
    display: flex;
  }
  .site-name-footer > a > .-logo{
    width: 180px;
  }
  .site-name-footer > a > .-text{
    font-size: 1.3rem;
  }
}

@media print, screen and (max-width: 350px){
  /* site-name-footer */
  .site-name-footer{
    width: 180px;
  }
  .site-name-footer > a{
    display: block;
  }
  .site-name-footer > a > .-text{
    margin-top: 1rem;
  }
}

/* footer-base */
.footer-base{
  font-size: 1.4rem;
  line-height: 1.75;
}
.footer-base > .-item{
  display: flex;
}
.footer-base > .-item{
  margin-top: 0.5rem;
}
.footer-base > .-item:nth-child(1){
  margin-top: 0;
}
.footer-base > .-item > .-name{
  white-space: nowrap;
  width: 140px;
  padding-right: 1em;
}
.footer-base > .-item > .-detail{
  display: flex;
}
.footer-base > .-item > .-detail > .-data{
  display: flex;
  width: 350px;
}
.footer-base > .-item > .-detail > .-data > .-post{
  padding-right: 1em;
  white-space: nowrap;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.footer-base > .-item > .-detail > .-contact{
  display: flex;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.footer-base > .-item > .-detail > .-contact > .-tel{
  padding-right: 1em;
}

@media print, screen and (max-width: 1380px){
  /* footer-base */
  .footer-base > .-item{
    display: block;
    margin-top: 2rem;
  }
  .footer-base > .-item > .-detail{
    margin-top: 0.5rem;
  }
}

@media print, screen and (max-width: 760px){
  /* footer-base */
  .footer-base > .-item > .-detail{
    display: block;
  }
  .footer-base > .-item > .-detail > .-data{
    width: 100%;
  }
}

@media print, screen and (max-width: 400px){
  /* footer-base */
  .footer-base > .-item > .-detail > .-data,
  .footer-base > .-item > .-detail > .-contact{
    display: block;
  }
  .footer-base > .-item > .-detail > .-contact{
    margin-top: 0.5rem;
  }
}

/* footer-bottom */
.footer-bottom{
  border-top: 1px solid #ffffff;
  display: flex;
	justify-content: space-between;
	align-items: center;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.footer-bottom > .-nav{
  flex: 1;
  margin-right: 4rem;
}

@media print, screen and (max-width: 760px){
  /* footer-bottom */
  .footer-bottom{
    display: block;
  }
  .footer-bottom > .-copyright{
    margin-top: 2rem;
  }
}

/* footer-nav */
.footer-nav{
  letter-spacing: -.4em;
}
.footer-nav > .-item{
  display: inline-block;
  letter-spacing: normal;
  font-size: 1.2rem;
  margin-top: 0.5rem;
  margin-right: 2.5rem;
  margin-bottom: 0.5rem;
}
.footer-nav > .-item:last-child{
  margin-right: 0;
}
.footer-nav > .-item.-corporate{
  border-left: 1px solid #ffffff;
  padding-left: 2.5rem;
}
.footer-nav > .-item > a{
	color: #ffffff;
	font-size: 1.4rem;
	white-space: nowrap;
	line-height: 1;
	-webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: relative;
}
.footer-nav > .-item > a:hover{
  color: #c1272d;
}
.footer-nav > .-item.-corporate > a{
  padding-right: 2.8rem;
  position: relative;
}
.footer-nav > .-item.-corporate > a::after{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1.6rem;
  height: 1.6rem;
  background: url(/recruit/assets/images/icon-window-nav-white.svg) center center no-repeat;
  background-size: 1.6rem auto;
	-webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.footer-nav > .-item.-corporate > a:hover::after{
  background: url(/recruit/assets/images/icon-window-nav-red.svg) center center no-repeat;
  background-size: 1.6rem auto;
}

@media print, screen and (max-width: 1120px){
  /* footer-nav */
  .footer-nav{
    max-width: 400px;
  }
}

@media print, screen and (max-width: 760px){
  /* footer-nav */
  .footer-nav{
    max-width: none;
  }
  .footer-nav > .-item > a:hover{
    color: #ffffff;
  }
  .footer-nav > .-item.-corporate > a:hover::after{
    background: url(/recruit/assets/images/icon-window-nav-white.svg) center center no-repeat;
    background-size: 1.6rem auto;
  }
}

/* copyright */
.copyright{
	font-size: 1.2rem;
	font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
	line-height: 1.6667;
}
