@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=LINE+Seed+JP:wght@100;400;700;800&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:var(--color-red);}
/*---------- //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: #141e28;
  font-family: YakuHanJP, "LINE Seed JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #f8f8f8;
}
a{
  color: #141e28;
	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: #141e28;
	color: #f8f8f8;
}
::-moz-selection{
	background-color: #141e28;
	color: #f8f8f8;
}

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

/*---------- =04 layout style ----------*/
/*========================================
header layout
========================================*/
/* site-header */
.site-header{
  width: 100%;
  overflow: hidden;
  position: sticky;
  top: 0;
  left: 0;
  padding-top: env(safe-area-inset-top);
  z-index: 10;
  background-color: #f8f8f8;
}
.site-header > .-inner{
	width: 100%;
  height: 140px;
  display: flex;
	justify-content: space-between;
	align-items: center;
	padding-left: 5.5556%;
	padding-right: 5.5556%;
}

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

@media print, screen and (max-width: 1280px){
  .site-header > .-inner{
		padding-left: 2rem;
	  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: 264px;
}
.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: 176px;
}
.site-name > a > .-logo > img{
  width: 100%;
}
.site-name > a > .-text{
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-red);
  white-space: nowrap;
}

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

@media print, screen and (max-width: 1280px){
  /* site-name */
  .site-name{
    width: 220px;
  }
  .site-name > a > .-logo{
    width: 140px;
  }
  .site-name > a > .-text{
    font-size: 1.8rem;
  }
}

/* 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{
  display: flex;
}
.header-nav > .-main > .-item{
	font-size: 1.6rem;
	font-weight: 700;
	white-space: nowrap;
	line-height: 1;
  margin-left: 3.2rem;
  font-weight: 700;
}
.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: #141e28;
}
.header-nav > .-main > .-item > a:hover{
  color: var(--color-red);
}
.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: var(--color-red);
  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: 1280px){
  /* header-nav */
  .header-nav > .-main > .-item{
    font-size: 1.6rem;
  }
}

/* header-button */
.header-button{
  margin-left: 4rem;
}
.header-button > a{
  background-color: var(--color-red);
  color: #ffffff;
  width: 220px;
  line-height: 4.6rem;
  font-size: 1.6rem;
  font-weight: 700;
  white-space: nowrap;
  text-align: center;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease; 
	display: inline-block;
	border-radius: 9999px;
  border: 2px solid var(--color-red);
}
.header-button > a:hover{
  background-color: #ffffff;
  color: var(--color-red);
}

@media print, screen and (max-width: 1280px){
  /* header-button */
  .header-button > a{
    width: 210px;
  }
}

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

@media screen and (max-width: 1200px){
  /* hamburger-button */
  .hamburger-button{
    display: block;
    position: absolute;
    width: 80px;
    height: 80px;
    cursor: pointer;
    top: 3rem;
    right: 1rem;
    background-color: var(--color-red);
    z-index: 11;
  }
  .fixed .hamburger-button{
    position: fixed;        
  }
  .hamburger-button > .-line{
    position: absolute;
    top: 19px;
    left: 27px;
  }
  .hamburger-button > .-line > span{
    background-color: #ffffff;
    display: block;
    width: 26px;
    height: 2px;
    transition: 0.4s;
    margin: 6px 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(7px, -7px);
  }
  .hamburger-button > .-text{
    font-size: 1rem;
    color: #ffffff;
    text-align: center;
    position: absolute;
    left: 0;
    bottom: 13px;
    width: 80px;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}

@media screen and (max-width: 760px){
  /* hamburger-button */
  .hamburger-button{
    width: 64px;
    height: 64px;
    top: 0;
    right: 0;
  }
  .hamburger-button > .-line{
    top: 13px;
    left: 20px;
  }
  .hamburger-button > .-line > span{
    width: 24px;
    margin: 5px 0;
  }
  .hamburger-button.is-open span:nth-child(3){
    transform: rotate(-45deg) translate(6px, -6px);
  }
  .hamburger-button > .-text{
    font-size: 0.9rem;
    bottom: 7px;
    width: 64px;
  }
}

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

@media screen and (max-width: 1200px){
  /* hamburger-nav */
  .hamburger-nav{
    background-color: rgba(255,255,255,0.95);
    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{
    font-size: 2.9rem;
    line-height: 1;
    font-weight: 700;
    margin-top: 6rem;
    margin-bottom: 6rem;
  }
  .hamburger-nav-main > li:nth-child(1){
    margin-top: 0;
  }
  .hamburger-nav-main > li > a{
    color: #141e28;
    display: block;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease; 
  }
  .hamburger-nav-main > li > a:hover{
    color: var(--color-red);
  }
}

@media screen and (max-width: 760px){
  /* hamburger-nav */
  .hamburger-nav-main > li{
    font-size: 2.4rem;
    margin-top: 4.5rem;
    margin-bottom: 4.5rem;
  }
  .hamburger-nav-main > li > a{
  }
  .hamburger-nav-main > li > a:hover{
    color: #141e28;
  }  
}

/* hamburger-nav-adjust */
.hamburger-nav-adjust{
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 6%;
  padding-right: 6%;
}

@media screen and (max-width: 760px){
  /* hamburger-nav-adjust */
  .hamburger-nav-adjust > .-inner{
    width: 100%;
  }
}

/* header-button-sp */
.header-button-sp > a{
  display: inline-block;
  width: 100%;
  line-height: 6.4rem;
  color: #ffffff;
  background-color: var(--color-red);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
	border-radius: 9999px;
  padding-left: 6rem;
  padding-right: 6rem;
  border: 2px solid var(--color-red);
}
.header-button-sp > a:hover{
  background-color: #ffffff;
  color: var(--color-red);
}

@media screen and (max-width: 760px){
  /* header-button-sp */
  .header-button-sp{
    width: 100%;
    max-width: 300px;
  }
  .header-button-sp > a{    
    line-height: 6.4rem;
    font-size: 2rem;
    padding-left: 0;
    padding-right: 0;
  }
  .header-button-sp > a:hover{
    color: #ffffff;
    background-color: var(--color-red);
  }
}

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

/* breadcrumbs-list */
.breadcrumbs-list{
  padding-left: 5.5556%;
  padding-right: 5.5556%;
  margin-bottom: 0.5rem;
}
.breadcrumbs-list > .-main{
  display: flex;
  flex-wrap: wrap;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}
.breadcrumbs-list > .-main > .-item{
  font-size: 1.2rem;
  border-left: 1px solid var(--color-text-gray);
  line-height: 1;
  padding-left: 1.7rem;
  margin-right: 1.7rem;
  white-space: nowrap;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
}
.breadcrumbs-list > .-main > .-item:nth-child(1){
  margin-left: 0;
  padding-left: 0;
  border-left: none;
}  
.breadcrumbs-list > .-main > .-item > a{
  color: var(--color-text-gray);
  position: relative;
}
.breadcrumbs-list > .-main > .-item > a::after{
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  content: '';
  width: 100%;
  height: 1px;
  background: var(--color-text-gray);
  transform: scale(1, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.breadcrumbs-list > .-main > .-item > a:hover::after{
  transform: scale(0, 1);
  transform-origin: right top;
}

@media print, screen and (max-width: 1400px){
  /* breadcrumbs-list */
  .breadcrumbs-list{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

@media screen and (max-width : 760px){
  /* breadcrumbs-list */
  .breadcrumbs-list{
    display: none;
  }
}

/* page-title */
.page-title{
  padding-left: 5.5556%;
  padding-right: 5.5556%;
}
.page-title.-detail{
  /*padding-top: 1.8rem;*/
  border: 5px solid #f00;
}
.page-title > .-inner{
  padding-left: 5.5556%;
  padding-right: 5.5556%;
}
.page-title > .-inner > .-primary{
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

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

@media screen and (max-width: 760px){
  /* page-title */
  .page-title{
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .page-title > .-inner{
    padding-left: 0;
  }
}

@media screen and (max-width: 580px){
  /* page-title */
  /*
  .page-title.-detail{
    padding-top: 3.1034vw;
  }
  */
}

/* page-title-main */
.page-title-main{
  font-weight: 700;
  height: 285px;
  display: flex;
  align-items: center;
}
.page-title-main > .-inner > .-en,
.page-title-main > .-inner > .-sub{
  color: var(--color-red);
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 2.5rem;
}
.page-title-main > .-inner > .-main{
  font-size: 4.4rem;
  line-height: 1.4;
  white-space: nowrap;
}
.page-title-main > .-inner > .-main.-long{
  display: flex;
  align-items: baseline;
}
.page-title-main > .-inner > .-main.-long > .-small{
  font-size: 2.8rem;
  margin-left: 0.5em;
}
.page-title-main > .-inner > .-main > br{
  display: none;
}

@media screen and (max-width: 1000px){
  /* page-title-main */
  .page-title-main > .-inner > .-main > br{
    display: inline
  } 
}

@media screen and (max-width: 760px){
  /* page-title-main */
  .page-title-main > .-inner > .-main{
    font-size: 4.2rem;
  }
  .page-title-main > .-inner > .-main.-long{
    display: block;
  }
  .page-title-main > .-inner > .-main.-long > .-small{
    font-size: 2.4rem;
    margin-left: 0;
  }
}

@media screen and (max-width: 640px){
  /* page-title-main -long */
  .page-title-main > .-inner > .-main.-long{
    font-size: 6.5625vw;
  }
}

@media screen and (max-width: 580px){
  /* page-title-main */
  .page-title-main{
    height: 49vw;
  }
  .page-title-main > .-inner > .-en,
  .page-title-main > .-inner > .-sub{
    font-size: 3.1vw;
    margin-bottom: 4.3vw;
  }
  .page-title-main > .-inner > .-main{
    font-size: 7.2414vw;
  }
}

/* page-title-img */
.page-title-img{
  padding-left: 5.5556%;
  padding-right: 5.5556%;
  z-index: 1;
  position: relative;
}
.page-title-img > .-inner{
  padding-left: 5.5556%;
  padding-right: 5.5556%;  
}
.page-title-img > .-inner > .-primary{
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 0.6rem;
  overflow: hidden;
  aspect-ratio: 1100/360;
  margin-bottom: calc(((min(100vw - 12rem, 1100px))*360/1100)/-2);
}
.page-title-img > .-inner > .-primary > img{
  width: 100%;
}
.page-title-img > .-inner > .-primary > img.-sp{
  display: none;
}

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

@media screen and (max-width: 760px){
  /* page-title-img */
  .page-title-img{
    padding-left: 0;
    padding-right: 0;
  }
  .page-title-img > .-inner{
    padding-left: 0;
    padding-right: 0;
  }
  .page-title-img > .-inner > .-primary{
    border-radius: 0;
    margin-bottom: 0;
    aspect-ratio: auto;
  }
  .page-title-img > .-inner > .-primary > img.-pc{
    display: none;
  }
  .page-title-img > .-inner > .-primary > img.-sp{
    display: inline;
  }
}

/* page-title-plain */
.page-title-plain{
  padding-left: 6rem;
  padding-right: 6rem;
}
.page-title-plain > .-inner{
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

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

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

/* page-title-detail */
.page-title-detail{
  padding-left: 6rem;
  padding-right: 6rem;
}
.page-title-detail > .-inner{
  max-width: 910px;
  margin-left: auto;
  margin-right: auto;
}

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

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

/* contents-basic */
.contents-basic{
  padding-left: 5.5556%;
  padding-right: 5.5556%;
  margin-bottom: 10rem;
  position: relative;
  z-index: 0;
}
.contents-basic::after{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: #ffffff;
}
.contents-basic > .-inner{
  padding-top: calc(((min(100vw - 12rem, 1100px)) * 360 / 1100) / 2);
  background-color: #ffffff;
  border-top-left-radius: 4.8rem;
  border-bottom-left-radius: 4.8rem;
  position: relative;
  z-index: 1;
  padding-left: 5.5556%;
  padding-right: 5.5556%;
}
.contents-basic > .-inner.-interview{
  padding-top: 8.4rem;
}
.contents-basic > .-inner.-not-overlap{
  padding-top: 0;
}
.contents-basic > .-inner > .-primary{
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10rem;
  padding-bottom: 12rem;
}

@media print, screen and (max-width: 1000px){
  /* contents-basic */
  .contents-basic{
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .contents-basic > .-inner{
    padding-left: 4rem;
    padding-right: 0;
  }
  .contents-basic > .-inner.-interview{
    padding-top: 5.5vw;
  }
}

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

/* contents-plain */
.contents-plain{
  padding-left: 6rem;
  padding-right: 6rem;
  margin-bottom: 16rem;
}
.contents-plain > .-inner{
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1000px){
  /* contents-plain */
  .contents-plain{
    padding-left: 4rem;
    padding-right: 4rem;
    margin-bottom: 12rem;
  }
}

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

/* contents-detail */
.contents-detail{
  padding-left: 6rem;
  padding-right: 6rem;
  margin-bottom: 16rem;
}
.contents-detail > .-inner{
  max-width: 910px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1000px){
  /* contents-detail */
  .contents-detail{
    padding-left: 4rem;
    padding-right: 4rem;
    margin-bottom: 12rem;
  }
}

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

/* basic-two-column */
.basic-two-column{
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-start;
}

@media print, screen and (max-width: 760px){
  /* basic-two-column */
  .basic-two-column{
    display: block;
  }
}

/* basic-two-column-mian */
.basic-two-column-mian{
  flex: 1;
  padding-right: 6.4rem;
}
.basic-two-column-mian > .-box{
  margin-top: 10rem;
}
.basic-two-column-mian > .-box:nth-child(1){
  margin-top: 0;
}
.basic-two-column-mian > .-box-last{
  margin-top: 8rem;
}

@media print, screen and (max-width: 1000px){
  /* basic-two-column-mian */
  .basic-two-column-mian{
    padding-right: 4rem;
  }
}

@media print, screen and (max-width: 760px){
  /* basic-two-column-mian */
  .basic-two-column-mian{
    padding-right: 0;
  }
  .basic-two-column-mian > .-box{
    margin-top: 8rem;
  }
  .basic-two-column-mian > .-box-last{
    margin-top: 6rem;
  }
}

/* fix-side */
.fix-side{
  position: sticky;
  top: 140px;
  right: 0;
  width: 227px;
}
.fix-side > .-item{
  margin-top: 6rem;
}
.fix-side > .-item:nth-child(1){
  margin-top: 0;
}

@media print, screen and (max-width: 1000px){
  /* fix-side */
  .fix-side{
    width: 200px;
  }
}

@media print, screen and (max-width: 760px){
  /* fix-side */
  .fix-side{
    display: none;
  }
}

/* fix-page-nav-heading */
.fix-page-nav-heading{
  font-weight: 700;
  line-height: 1;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--color-red);
  white-space: nowrap;
  border-bottom: 1px solid var(--color-red);
  padding-top: 1.8rem;
  padding-bottom: 1.8rem;
  margin-bottom: 3.5rem;
}

/* fix-page-nav */
.fix-page-nav{
  list-style: none;
  counter-reset: nav-counter;
}
.fix-page-nav.-zero{
  list-style: none;
  counter-reset: nav-counter -1;  /* -1にすることで00からスタート */
}
.fix-page-nav > .-item{
  counter-increment: nav-counter;
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 1rem;
  line-height: 1.4;
}
.fix-page-nav > .-item:nth-child(1){
  margin-top: 0;
}
.fix-page-nav > .-item > a{
  display: flex;
  align-items: baseline;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.fix-page-nav > .-item > a.is-active {
  color: var(--color-red);
}
.fix-page-nav > .-item > a::before{
  content: counter(nav-counter, decimal-leading-zero) ".";
  width: 2.8rem;
  flex-shrink: 0;
}
.fix-page-nav > .-item > a:hover{
  color: var(--color-red);
}

/* fix-side-heading */
.fix-side-heading{
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  line-height: 1.4;
  padding-left: 1.6rem;
  position: relative;
  margin-bottom: 1.5rem;
}
.fix-side-heading::before{
  content: "";
  position: absolute;
  background-color: var(--color-red);
  top: 0.9rem;
  left: 0;
  width: 1rem;
  height: 0.2rem;
}

/* fix-side-nav */
.fix-side-nav > .-item{
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 0.8rem;
  line-height: 1.4;
}
.fix-side-nav > .-item:nth-child(1){
  margin-top: 0;
}
.fix-side-nav > .-item > a{
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.fix-side-nav > .-item > a:hover{
  color: var(--color-red);
}
.fix-side-nav > .-item > a > .-small{
  font-size: 1.1rem;
}

/* current-page */
.current-page > a{
  color: var(--color-red);
}

/* contents-normal */
.contents-normal{
  padding-top: 10rem;
  padding-bottom: 8rem;
  max-width: 809px;
  margin-left: auto;
  margin-right: auto;
}

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

/* basic-tag-heading */
.basic-tag-heading > .-tag{
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 2.2rem;
}
.basic-tag-heading > .-tag > span{
  background-color: var(--color-red);
  color: #ffffff;
  padding: 0.5rem 1rem;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.basic-tag-heading > .-main{
  color: var(--color-red);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4286;
}

@media print, screen and (max-width: 1270px){
  /* basic-tag-heading */
  .basic-tag-heading > .-main > .-break-1270{
    display: none;
  }
}

@media print, screen and (max-width: 1250px){
  /* basic-tag-heading */
  .basic-tag-heading > .-main > .-break-1250{
    display: none;
  }
}

@media print, screen and (max-width: 1230px){
  /* basic-tag-heading */
  .basic-tag-heading > .-main > .-break-1230{
    display: none;
  }
}

@media print, screen and (max-width: 1220px){
  /* basic-tag-heading */
  .basic-tag-heading > .-main > .-break-1220{
    display: none;
  }
}

@media print, screen and (max-width: 1180px){
  /* basic-tag-heading */
  .basic-tag-heading > .-main > .-break-1180{
    display: none;
  }
}

@media print, screen and (max-width: 1160px){
  /* basic-tag-heading */
  .basic-tag-heading > .-main > .-break-1160{
    display: none;
  }
}

@media print, screen and (max-width: 1150px){
  /* basic-tag-heading */
  .basic-tag-heading > .-main > .-break-1150{
    display: none;
  }
}

@media print, screen and (max-width: 1130px){
  /* basic-tag-heading */
  .basic-tag-heading > .-main > .-break-1130{
    display: none;
  }
}

@media print, screen and (max-width: 1120px){
  /* basic-tag-heading */
  .basic-tag-heading > .-main > .-break-1120{
    display: none;
  }
}

@media print, screen and (max-width: 1070px){
  /* basic-tag-heading */
  .basic-tag-heading > .-main > .-break-1070{
    display: none;
  }
}

@media print, screen and (max-width: 1050px){
  /* basic-tag-heading */
  .basic-tag-heading > .-main > .-break-1050{
    display: none;
  }
}

@media print, screen and (max-width: 1040px){
  /* basic-tag-heading */
  .basic-tag-heading > .-main > .-break-1040{
    display: none;
  }
}

@media print, screen and (max-width: 800px){
  /* basic-tag-heading */
  .basic-tag-heading > .-main > .-break-870{
    display: none;
  }
}

@media print, screen and (max-width: 870px){
  /* basic-tag-heading */
  .basic-tag-heading > .-main > .-break-870{
    display: none;
  }
}

@media print, screen and (max-width: 840px){
  /* basic-tag-heading */
  .basic-tag-heading > .-main > .-break-840{
    display: none;
  }
}

@media print, screen and (max-width:800px){
  /* basic-tag-heading */
  .basic-tag-heading > .-main > .-break-800{
    display: none;
  }
}

@media print, screen and (max-width: 790px){
  /* basic-tag-heading */
  .basic-tag-heading > .-main > .-break-790{
    display: none;
  }
}

@media print, screen and (max-width: 760px){
  /* basic-tag-heading */
  .basic-tag-heading > .-main{
    font-size: 2.4rem;
  } 
  .basic-tag-heading > .-main > .-break-790,
  .basic-tag-heading > .-main > .-break-800,
  .basic-tag-heading > .-main > .-break-840,
  .basic-tag-heading > .-main > .-break-870,
  .basic-tag-heading > .-main > .-break-1040,
  .basic-tag-heading > .-main > .-break-1050,
  .basic-tag-heading > .-main > .-break-1070,
  .basic-tag-heading > .-main > .-break-1120,
  .basic-tag-heading > .-main > .-break-1130,
  .basic-tag-heading > .-main > .-break-1150,
  .basic-tag-heading > .-main > .-break-1160,
  .basic-tag-heading > .-main > .-break-1180,
  .basic-tag-heading > .-main > .-break-1220,
  .basic-tag-heading > .-main > .-break-1230,
  .basic-tag-heading > .-main > .-break-1250,
  .basic-tag-heading > .-main > .-break-1270{
    display: inline;
  }
}

@media print, screen and (max-width: 660px){
  /* basic-tag-heading */
  .basic-tag-heading > .-main > .-break-1270{
    display: none;
  }
}

@media print, screen and (max-width: 650px){
  /* basic-tag-heading */
  .basic-tag-heading > .-main > .-break-1250{
    display: none;
  }
}

@media print, screen and (max-width: 630px){
  /* basic-tag-heading */
  .basic-tag-heading > .-main > .-break-1230{
    display: none;
  }
}

@media print, screen and (max-width: 620px){
  /* basic-tag-heading */
  .basic-tag-heading > .-main > .-break-1220{
    display: none;
  }
}

@media print, screen and (max-width: 600px){
  /* basic-tag-heading */
  .basic-tag-heading > .-main > .-break-1180{
    display: none;
  }
}

@media print, screen and (max-width: 580px){
  /* basic-tag-heading */
  .basic-tag-heading > .-main > .-break-1150,
  .basic-tag-heading > .-main > .-break-1160{
    display: none;
  }
}

@media print, screen and (max-width: 560px){
  /* basic-tag-heading */
  .basic-tag-heading > .-main > .-break-1120,
  .basic-tag-heading > .-main > .-break-1130{
    display: none;
  }
}

@media print, screen and (max-width: 520px){
  /* basic-tag-heading */
  .basic-tag-heading > .-main > .-break-1070{
    display: none;
  }
}

@media print, screen and (max-width: 510px){
  /* basic-tag-heading */
  .basic-tag-heading > .-main > .-break-1050{
    display: none;
  }
}

@media print, screen and (max-width: 500px){
  /* basic-tag-heading */
  .basic-tag-heading > .-main > .-break-1040{
    display: none;
  }
}

@media print, screen and (max-width: 450px){
  /* basic-tag-heading */
  .basic-tag-heading > .-main > .-break-840{
    display: none;
  }
}

@media print, screen and (max-width: 480px){
  /* basic-tag-heading */
  .basic-tag-heading > .-main > .-break-870{
    display: none;
  }
}

@media print, screen and (max-width: 420px){
  /* basic-tag-heading */
  .basic-tag-heading > .-main > .-break-800{
    display: none;
  }
}

@media print, screen and (max-width: 410px){
  /* basic-tag-heading */
  .basic-tag-heading > .-main > .-break-790{
    display: none;
  }
}

@media print, screen and (max-width: 380px){
  /* basic-tag-heading */
  .basic-tag-heading > .-main > .-break-380{
    display: none;
  }
}

@media print, screen and (max-width: 350px){
  /* basic-tag-heading */
  .basic-tag-heading > .-main > .-break-350{
    display: none;
  }
}

@media print, screen and (max-width: 340px){
  /* basic-tag-heading */
  .basic-tag-heading > .-main > .-break-340{
    display: none;
  }
}

/* basic-number-heading */
.basic-number-heading{
  display: flex;
  align-items: baseline;
  border-bottom: 1px solid var(--color-red);
  font-size: 2.7rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  line-height: 1.4;
  padding-bottom: 1.2rem;
  margin-bottom: 3.2rem;
}
.basic-number-heading > .-number{
  white-space: nowrap;
  flex-shrink: 0;
  color: var(--color-red);
  padding-right: 0.7rem;
}
.basic-number-heading > .-text{
  flex: 1;
}

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

/* basic-line-heading */
.basic-line-heading{
  border-bottom: 1px solid var(--color-red);
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.4;
  padding-bottom: 1.2rem;
  margin-bottom: 3.2rem;  
}

/* basic-heading-middle */
.basic-heading-middle{
  color: var(--color-red);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.5;
  margin-bottom: 2.5rem;
}

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

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

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

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

/* detail-field */
.detail-field{
  margin-top: 2.8rem;
}
.detail-field > .-field{
  margin-top: 7.2rem;
}
.detail-field > .-field:nth-child(1){
  margin-top: 0;
}

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

/* basic-catch */
.basic-catch{
  font-size: 2.7rem;
  line-height: 1.2857;
  font-weight: 700;
  margin-bottom: 2.8rem;
}

@media print, screen and (max-width: 1210px){
  /* basic-catch */
  .basic-catch > .-break-1210{
    display: none;
  }
}

@media print, screen and (max-width: 1150px){
  /* basic-catch */
  .basic-catch > .-break-1150{
    display: none;
  }
}

@media print, screen and (max-width: 1100px){
  /* basic-catch */
  .basic-catch > .-break-1100{
    display: none;
  }
}

@media print, screen and (max-width: 840px){
  /* basic-catch */
  .basic-catch > .-break-840{
    display: none;
  }
}

@media print, screen and (max-width: 760px){
  /* basic-catch */
  .basic-catch{
    font-size: 2.2rem;
    line-height: 1.35;
  }
  .basic-catch > .-break-840,
  .basic-catch > .-break-1100,
  .basic-catch > .-break-1150,
  .basic-catch > .-break-1210{
    display: inline;
  }
}

@media print, screen and (max-width: 600px){
  /* basic-catch */
  .basic-catch > .-break-1210{
    display: none;
  }
}

@media print, screen and (max-width: 560px){
  /* basic-catch */
  .basic-catch > .-break-1150{
    display: none;
  }
}

@media print, screen and (max-width: 520px){
  /* basic-catch */
  .basic-catch > .-break-1100{
    display: none;
  }
}

@media print, screen and (max-width: 420px){
  /* basic-catch */
  .basic-catch > .-break-420,
  .basic-catch > .-break-840{
    display: none;
  }
}

/* basic-catch-middle */
.basic-catch-middle{
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
}
.basic-catch-middle.-center{
  text-align: center;
}

@media print, screen and (max-width: 1100px){
  /* basic-catch-middle */
  .basic-catch-middle > p > .-break-1100{
    display: none;
  }
}

@media print, screen and (max-width: 1000px){
  /* basic-catch-middle */
  .basic-catch-middle > p > .-break-1100{
    display: inline;
  }
}

@media print, screen and (max-width: 940px){
  /* basic-catch-middle */
  .basic-catch-middle > p > .-break-1100{
    display: none;
  }
}

@media print, screen and (max-width: 840px){
  /* basic-catch-middle */
  .basic-catch-middle > p > .-break-840{
    display: none;
  }
}

@media print, screen and (max-width: 760px){
  /* basic-catch-middle */
  .basic-catch-middle > p > .-break-840,
  .basic-catch-middle > p > .-break-1100{
    display: inline;
  }
}

@media print, screen and (max-width: 620px){
  /* basic-catch-middle */
  .basic-catch-middle > p > .-break-1100{
    display: none;
  }
}

@media print, screen and (max-width: 520px){
  /* basic-catch-middle */
  .basic-catch-middle > p > .-break-840{
    display: none;
  }
}

/* basic-text */
.basic-text > p{
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 2em;
}
.basic-text > p:nth-child(1){
  margin-top: 0;
}
.basic-text > p > strong{
  font-weight: 700;
  color: var(--color-red);
}
.basic-text > p > a{
  color: var(--color-red);
  text-decoration: underline;
}
.basic-text > p > a:hover{
  text-decoration: none;
}

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

/* basic-img */
.basic-img-full{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 0.6rem;
  overflow: hidden;
}
.basic-img-full > img{
  width: 100%;
}

/* basic-definition-list */
.basic-definition-list > .-item{
  margin-top: 2.4rem;
}
.basic-definition-list > .-item:nth-child(1){
  margin-top: 0;
}
.basic-definition-list > .-item > .-term{
  color: var(--color-red);
  font-weight: 700;
  font-size: 2.4rem;
}
.basic-definition-list > .-item > .-desc{
  margin-top: 1rem;
}
.basic-definition-list > .-item > .-desc > p{
  font-size: 1.6rem;
  line-height: 2;
}

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

/* basic-number-list-box */
.basic-number-list-box{
  counter-reset: basic-number-list-box;
}
.basic-number-list-box > .-item{
  counter-increment: basic-number-list-box;
  margin-top: 2rem;
}
.basic-number-list-box > .-item:nth-child(1){
  margin-top: 0;
}
.basic-number-list-box > .-item > .-term{
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  display: flex;
  align-items: baseline;
}
.basic-number-list-box > .-item > .-term::before{
  content: counter(basic-number-list-box, decimal) ".";
  margin-right: 1.5rem;
  color: var(--color-red);
  margin-right: 1.5rem;
}
.basic-number-list-box > .-item > .-desc{
  margin-top: 0.5rem;
}
.basic-number-list-box > .-item > .-desc > p{
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 1em;
}
.basic-number-list-box > .-item > .-desc > p:nth-child(1){
  margin-top: 0;
}

@media print, screen and (max-width: 760px){
  /* basic-number-list-box */
  .basic-number-list-box > .-item > .-term{
    font-size: 1.8rem;
  }
}

/* basic-number-list-img */
.basic-number-list-img{
  counter-reset: basic-number-list-img;
}
.basic-number-list-img > .-item{
  counter-increment: basic-number-list-img;
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
}
.basic-number-list-img > .-item:nth-child(1){
  margin-top: 0;
}
.basic-number-list-img > .-item > .-primary{
  width: 66.9962%;
}
.basic-number-list-img > .-item > .-primary > .-term{
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  display: flex;
  align-items: baseline;
}
.basic-number-list-img > .-item > .-primary > .-term.-tight{
  letter-spacing: -0.05em;
}
.basic-number-list-img > .-item > .-primary > .-term::before{
  content: counter(basic-number-list-img, decimal) ".";
  margin-right: 1.5rem;
  color: var(--color-red);
  flex-shrink: 0;
}
.basic-number-list-img > .-item > .-primary > .-desc{
  margin-top: 0.5rem;
}
.basic-number-list-img > .-item > .-primary > .-desc > p{
  font-size: 1.6rem;
  line-height: 1.75;
}
.basic-number-list-img > .-item > .-img{
  width: 28.0594%;
}
.basic-number-list-img > .-item > .-img > img{
  width: 100%;
  border-radius: 0.6rem;
}

@media print, screen and (max-width: 1400px){
  /* basic-number-list-img */
  .basic-number-list-img > .-item > .-primary > .-term.-tight{
    letter-spacing: 0;
  }
}

@media print, screen and (max-width: 1320px){
  /* basic-number-list-img */
  .basic-number-list-img > .-item{
    align-items: stretch;
  }
}

@media print, screen and (max-width: 900px){
  /* basic-number-list-img */
  .basic-number-list-img > .-item{
    display: block;
  }
  .basic-number-list-img > .-item > .-primary{
    width: 100%;
  }
  .basic-number-list-img > .-item > .-img{
    width: 100%;
    margin-top: 1.5rem;
  }
}

@media print, screen and (max-width: 760px){
  /* basic-number-list-img */
  .basic-number-list-img > .-item{
    display: flex;
  }
  .basic-number-list-img > .-item > .-primary{
    width: 66.9962%;
  }
  .basic-number-list-img > .-item > .-primary > .-term{
    font-size: 1.8rem;
  }
  .basic-number-list-img > .-item > .-img{
    width: 28.0594%;
    margin-top: 0;
  }
}

@media print, screen and (max-width: 640px){
  /* basic-number-list-img */
  .basic-number-list-img > .-item{
    display: block;
  }
  .basic-number-list-img > .-item > .-primary{
    width: 100%;
  }
  .basic-number-list-img > .-item > .-img{
    width: 100%;
    margin-top: 1.5rem;
  }
}

/* color-number-list */
.color-number-list{
  counter-reset: color-number-list;
}
.color-number-list > .-item{
  counter-increment: color-number-list;
  margin-top: 2rem;
}
.color-number-list > .-item:nth-child(1){
  margin-top: 0;
}
.color-number-list > .-item > .-term{
  color: var(--color-red);
  font-weight: 700;
  font-size: 2rem;
  display: flex;
  align-items: baseline;
}
.color-number-list > .-item > .-term.-black{
  color: var(--color-black);
}
.color-number-list > .-item > .-term.-gray{
  color: var(--color-gray);
}
.color-number-list > .-item > .-term::before{
  content: counter(color-number-list, decimal) ".";
  margin-right: 1.5rem;
  flex-shrink: 0;
}
.color-number-list > .-item > .-desc{
  margin-top: 0.5rem;
}
.color-number-list > .-item > .-desc > p{
  font-size: 1.6rem;
  line-height: 1.75;
}

/* basic-check-list */
.basic-check-list{
  background-color: #f0f0f0;
  padding: 4rem;
}
.basic-check-list > .-item{
  font-size: 1.8rem;
  line-height: 1.667;
  padding-left: 4rem;
  background: url(/recruit/assets/images/icon-check-red.svg) left top 0.5rem no-repeat;
  background-size: 2.3rem auto;
  margin-top: 2rem;
}
.basic-check-list > .-item:nth-child(1){
  margin-top: 0;
}

@media print, screen and (max-width: 760px){
  /* basic-check-list */
  .basic-check-list{
    padding: 3.5rem 2rem;
  }
  .basic-check-list > .-item{
    font-size: 1.7rem;
    background: url(/recruit/assets/images/icon-check-red.svg) left top 0.4rem no-repeat;
    background-size: 2rem auto;
    padding-left: 3.5rem;
  }
}

/* basic-img-two-column */
.basic-img-two-column{
  display: flex;
  flex-wrap: wrap;
  gap: 3.2rem;
}
.basic-img-two-column.-space{
  padding-top: 2.8rem;
}
.basic-img-two-column > .-item{
  width: calc((100% - 3.2rem) / 2);
  border-radius: 0.6rem;
  overflow: hidden;
}
.basic-img-two-column > .-item > img{
  width: 100%;
}

@media print, screen and (max-width: 1000px){
  /* basic-img-two-column */
  .basic-img-two-column{
    gap: 3rem;
  }
  .basic-img-two-column > .-item{
    width: calc((100% - 3rem) / 2);
  }
}

@media print, screen and (max-width: 760px){
  /* basic-img-two-column */
  .basic-img-two-column.-space{
    padding-top: 1.5rem;
  }
  .basic-img-two-column{
    gap: 2rem;
  }
  .basic-img-two-column > .-item{
    width: calc((100% - 2rem) / 2);
  }
}

@media print, screen and (max-width: 480px){
  /* basic-img-two-column */
  .basic-img-two-column{
    gap: 1rem;
  }
  .basic-img-two-column > .-item{
    width: calc((100% - 1rem) / 2);
  }
  
  .basic-img-two-column.-one-colum-sp{
    display: block;
  }
  .basic-img-two-column.-one-colum-sp > .-item{
    width: 100%;
    margin-top: 2rem;
  }
  .basic-img-two-column.-one-colum-sp > .-item:nth-child(1){
    margin-top: 0;
  }
}

/* basic-narrow-box */
.basic-narrow-box{
  padding-left: 11.9901%;
  padding-right: 11.9901%;
}
.basic-narrow-box > .-field{
  margin-top: 3.8rem;
}
.basic-narrow-box > .-field:nth-child(1){
  margin-top: 0;
}

@media print, screen and (max-width: 1200px){
  /* basic-narrow-box */
  .basic-narrow-box{
    padding-left: 5%;
    padding-right: 5%;
  }
}

/* pickup-box */
.pickup-box{
  background-color: #f0f0f0;
  padding: 4rem;
}
.pickup-box > .-title > .-en{
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 2;
  white-space: nowrap;
  font-weight: 700;
  margin-bottom: 0.8em;
  color: var(--color-red);
  padding-left: 3rem;
  background: url(/recruit/assets/images/icon-check-red.svg) left center no-repeat;
  background-size: 2rem;
}
.pickup-box > .-title > .-main{
  font-size: 2.3rem;
  line-height: 1.2857;
  font-weight: 700;
  color: var(--color-red);
}
.pickup-box > .-text{
  margin-top: 1.1rem;
}
.pickup-box > .-text > p{
  font-size: 1.6rem;
  line-height: 1.75;
  margin-top: 2em;
}
.pickup-box > .-text > p:nth-child(1){
  margin-top: 0;
}

@media print, screen and (max-width: 760px){
  /* pickup-box */
  .pickup-box{
    padding: 3.5rem 2rem;
  }
  .pickup-box > .-title > .-main{
    font-size: 2.1rem;
  }
}

/* basic-link-box */
.basic-link-box > a{
  border: 1px solid var(--color-gray-light);
  display: flex;
  justify-content: space-between;
  border-radius: 0.6rem;
  padding: 2rem 3rem 2rem 2rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.basic-link-box > a:hover{
  background-color: var(--color-red);
  border: 1px solid var(--color-red);
  color: var(--color-white);
}
.basic-link-box > a > .-primary{
  flex: 1;
  padding-right: 5%;
}
.basic-link-box > a > .-primary > .-label{
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-left: 1.7rem;
  line-height: 1.4;
  position: relative;
  margin-bottom: 0.5rem;
}
.basic-link-box > a > .-primary > .-label::before{
  content: "";
  position: absolute;
  top: 0.9rem;
  left: 0;
  width: 1rem;
  height: 0.2rem;
  background-color: var(--color-red);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.basic-link-box > a:hover > .-primary > .-label::before{
  background-color: var(--color-white);
}
.basic-link-box > a > .-primary > .-heading{
  font-size: 2.3rem;
  font-weight: 700;
}
.basic-link-box > a > .-primary > .-heading > span{
  padding-right: 4.5rem; 
  line-height: 1.4;
  position: relative;
  display: inline-block;
}
.basic-link-box > a > .-primary > .-heading > span::after{
  content: "";
  width: 3rem;
  height: 3rem;
  position: absolute;
  top: 0;
  right: 0;
  background: url(/recruit/assets/images/arrow-link-box-red.svg) right center no-repeat;
  background-size: 3rem auto;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.basic-link-box > a:hover > .-primary > .-heading > span::after{
  background: url(/recruit/assets/images/arrow-link-box-white.svg) right center no-repeat;
  background-size: 3rem auto;
}
.basic-link-box > a > .-primary > .-heading > span > .-sub{
  font-size: 1.5rem;
}
.basic-link-box > a > .-primary > .-text{
  margin-top: 0.2rem;
}
.basic-link-box > a > .-primary > .-text > p{
  font-size: 1.6rem;
  line-height: 1.75;
  color: var(--color-text-gray);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.basic-link-box > a:hover > .-primary > .-text > p{
  color: var(--color-white);
}
.basic-link-box > a > .-img{
  width: 30.7895%;
}

@media print, screen and (max-width: 760px){
  /* basic-link-box */
  .basic-link-box > a > .-primary > .-heading{
    font-size: 2.1rem;
  }
  .basic-link-box > a > .-primary > .-heading > span::after{
    top: -0.2rem;
  }
}

@media print, screen and (max-width: 540px){
  /* basic-link-box */
  .basic-link-box > a{
    display: block;
  }
  .basic-link-box > a > .-primary{
    padding-right: 0;
  }
  .basic-link-box > a > .-img{
    margin-top: 2rem;
    width: 100%;
  }
}

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

/* basic-button */
.basic-button{
  text-align: center;
}
.basic-button > a{
  background-color: var(--color-red);
  color: #ffffff;
  display: inline-block;
  border-radius: 9999px;
  font-size: 1.6rem;
  font-weight: 700;
  white-space: nowrap;
  line-height: 4.6rem;
  padding-left: 3rem;
  padding-right: 3rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  min-width: 200px;
  text-align: left;
  border: 2px solid var(--color-red);
}
.basic-button > a:hover{
  background-color: #ffffff;
  color: var(--color-red);
}
.basic-button > a > span{
  display: inline-block;
  width: 100%;
  padding-right: 4.2rem;
  background: url(/recruit/assets/images/arrow-link-white.svg) right center no-repeat;
  background-size: 1.6rem auto;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.basic-button > a:hover > span{
  background: url(/recruit/assets/images/arrow-link-red.svg) right center no-repeat;
  background-size: 1.6rem auto;
}

/* basic-back-link */
.basic-back-link{
  text-align: center;
  margin-top: 8rem;
}
.basic-back-link > a{
  line-height: 5rem;
  font-size: 1.6rem;
  font-weight: 700;
  display: inline-block;
  white-space: nowrap;
  padding-right: 7.5rem;
  background: url(/recruit/assets/images/arrow-circle-white.svg) right center no-repeat;
  background-size: 5rem auto;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  color: var(--color-red);
}
.basic-back-link > a:hover{
  background: url(/recruit/assets/images/arrow-circle-red.svg) right center no-repeat;
  background-size: 5rem auto;
}
.basic-back-link > a > span{
  position: relative;
}
.basic-back-link > a > span::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: var(--color-red);
  position: absolute;
  left: 0;
  bottom: -9px;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right top;
  transform-origin: right top;
}
.basic-back-link > a:hover > span::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: 760px){
  /* basic-back-link */
  .basic-back-link{
    margin-top: 4rem;
  }
}

/* local-nav */
.local-nav{
  display: flex;
  flex-wrap: wrap;
  gap: 3.8rem;
}
.local-nav > .-item{
  width: calc((100% - 3.8rem) / 2);
}
.local-nav > .-item > a{
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 0.1rem solid #c3c6c8;
  border-radius: 0.6rem;
  padding: 3.2rem 4rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.local-nav > .-item > a:hover{
  background-color: var(--color-red);
  color: #ffffff;
  border: 0.1rem solid var(--color-red);
}
.local-nav > .-item > a > .-title{
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
}
.local-nav > .-item > a > .-text{
  margin-top: 1.8rem;
  font-size: 1.6rem;
  line-height: 1.75;
  color: var(--color-text-gray);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.local-nav > .-item > a:hover > .-text{
  color: #ffffff;
}
.local-nav > .-item > a > .-link{
  text-align: right;
  font-weight: 700;
  white-space: nowrap;
  margin-top: 1rem;
}
.local-nav > .-item > a > .-link > span{
  display: inline-block;
  padding-right: 4.8rem;
  line-height: 3rem;
  background: url(/recruit/assets/images/arrow-list-red.svg) right center no-repeat;
  background-size: 3rem auto;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.local-nav > .-item > a:hover > .-link > span{
  background: url(/recruit/assets/images/arrow-list-white.svg) right center no-repeat;
  background-size: 3rem auto;
}

@media print, screen and (max-width: 1000px){
  /* local-nav */
  .local-nav{
    gap: 3rem;
  }
  .local-nav > .-item{
    width: calc((100% - 3rem) / 2);
  }
  .local-nav > .-item > a{
    padding: 3rem 3.5rem;
  }
}

@media print, screen and (max-width: 760px){
  /* local-nav */
  .local-nav{
    gap: 2rem;
  }
  .local-nav > .-item{
    width: calc((100% - 2rem) / 2);
  }
  .local-nav > .-item > a{
    padding: 3rem;
  }
  .local-nav > .-item > a > .-title{
    font-size: 2rem;
  }
}

@media print, screen and (max-width: 640px){
  /* local-nav */
  .local-nav{
    display: block;
  }
  .local-nav > .-item{
    width: 100%;
    margin-top: 2rem;
  }
  .local-nav > .-item:nth-child(1){
    margin-top: 0;
  }
}

/* special-box */
.special-box-wrap{
  max-width: 910px;
  margin-left: auto;
  margin-right: auto;
}
.special-box{
  margin-top: 4rem;
}
.special-box:nth-child(1){
  margin-top: 0;
}
.special-box > a{
  background-color: #ffffff;
  display: flex;
  border-radius: 0.6rem;
  box-shadow: 4px 4px 7px rgba(159, 160, 160, 0.4);
  min-height: 220px;
  position: relative;
  top: 0;
  transition: .2s ease-in-out;
  overflow: hidden;
}
.special-box > a:hover{
  top: 4px;
  box-shadow: 0 0 0 rgba(159, 160, 160, 0.4);
  color: var(--color-red);
}
.special-box > a::after{
  position: absolute;
  content: "";
  width: 16px;
  height: 12px;
  right: 2rem;
  bottom: 2rem;
  background: url(/recruit/assets/images/arrow-link-red.svg) center center no-repeat;
  background-size: 16px auto;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.special-box > a:hover::after{
  background: url(/recruit/assets/images/arrow-link-white.svg) center center no-repeat;
  background-size: 16px auto;  
}
.special-box > a > .-img{
  width: 41.7582%;
}
.special-box > a > .-img1{
  background: url(/recruit/assets/images/special/img-special-list-event.jpg) center center no-repeat;
  background-size: cover;
}
.special-box > a > .-img2{
  background: url(/recruit/assets/images/special/img-special-list-b-studio.jpg) center center no-repeat;
  background-size: cover;
}
.special-box > a > .-img > img{
  display: none;
}
.special-box > a > .-primary{
  flex: 1;
  display: flex;
  align-items: center;
  padding: 3rem 2.4rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.special-box > a:hover > .-primary{
  background-color: var(--color-red);
}

@media print, screen and (max-width: 1000px){
  /* special-box */
  .special-box > a > .-img{
    width: 50%;
  }
}

@media print, screen and (max-width: 900px){
  /* special-box */
  .special-box > a{
    display: block;
  }
  .special-box > a:hover{
    top: 0;
    box-shadow: 4px 4px 7px rgba(159, 160, 160, 0.4);
  }
  .special-box > a > .-img{
    width: 100%
  }
  .special-box > a > .-img > img{
    display: inline;
    width: 100%;
  }
}

@media print, screen and (max-width: 760px){
  /* special-box */
  .special-box > a > .-primary{
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* special-box-text */
.special-box-text > .-catch{
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 2rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.special-box > a:hover .special-box-text > .-catch{
  color: #ffffff;
}
.special-box-text > .-catch > .-sub{
  display: block;
  font-size: 1.7rem;
  line-height: 1.7778;
  margin-top: 0.2rem;
}
.special-box-text > .-text{
  margin-top: 1.6rem;
}
.special-box-text > .-text > p{
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: var(--color-text-gray);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.special-box > a:hover .special-box-text > .-text > p{
  color: #ffffff;
}

/* section-entry */
.section-entry{
  background-color: #19273b;
  padding: 6rem 6rem 6.8rem;
  overflow: hidden;
}
.section-entry > .-inner{
  max-width: 910px;
  margin-left: auto;
  margin-right: auto;
}

@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;
    padding-bottom: 6rem;
  }
}

/* section-entry-heading */
.section-entry-heading{
  font-weight: 700;
}
.section-entry-heading.-center{
  text-align: center;
}
.section-entry-heading > .-en{
  font-size: 1.8rem;
  line-height: 1;
  white-space: nowrap;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.section-entry-heading > .-main{
  font-size: 3.4rem;
  line-height: 1.35;
  color: #ffffff;
}

@media print, screen and (max-width: 760px){
  /* section-entry-heading */
  .section-entry-heading.-center{
    text-align: left;
  }
  .section-entry-heading > .-en{
    margin-bottom: 1.6rem;
  }
  .section-entry-heading > .-main{
    font-size: 3rem;
  }
}

/* section-entry-text */
.section-entry-text{
  margin-top: 2.5rem;
  margin-bottom: 3.5rem;
}
.section-entry-text > p{
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #ffffff;
}

/* section-entry-button */
.section-entry-button > a{
  background-color: var(--color-red);
  color: #ffffff;
  display: inline-block;
  border-radius: 9999px;
  font-size: 1.6rem;
  font-weight: 700;
  white-space: nowrap;
  line-height: 5rem;
  padding-left: 3rem;
  padding-right: 3rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.section-entry-button > a:hover{
  background-color: #ffffff;
  color: var(--color-red);
}
.section-entry-button > a > span{
  display: inline-block;
  width: 100%;
  padding-right: 4.2rem;
  background: url(/recruit/assets/images/arrow-link-white.svg) right center no-repeat;
  background-size: 1.6rem auto;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.section-entry-button > a:hover > span{
  background: url(/recruit/assets/images/arrow-link-red.svg) right center no-repeat;
  background-size: 1.6rem auto;
}

/*========================================
footer layout
========================================*/
/* footer-top */
.footer-top{
  padding: 6rem 2rem 4rem;
}

@media print, screen and (max-width: 1000px){
  /* footer-top */
  .footer-top{
    padding-top: 5rem;
  }
}

@media print, screen and (max-width: 760px){
  /* footer-top */
  .footer-top{
    padding-top: 4rem;
  }
}

/* footer-nav */
.footer-nav{
  display: flex;
  justify-content: center;
}
.footer-nav > .-item{
  font-size: 1.8rem;
	font-weight: 700;
	line-height: 1;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  border-right: 2px solid #141e28;
  white-space: nowrap;
}
.footer-nav > .-item:nth-child(1){
  padding-left: 0;
}
.footer-nav > .-item:last-child{
  border-right: none;
  padding-right: 0;
}
.footer-nav > .-item > a{
  color: #141e28;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: relative;
}
.footer-nav > .-item > a:hover{
  color: var(--color-red);
}
.footer-nav > .-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: var(--color-red);
  position: absolute;
  left: 0;
  bottom: -9px;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right top;
  transform-origin: right top;
}
.footer-nav > .-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: 1000px){
  /* footer-nav */
  .footer-nav{
    flex-wrap: wrap;
  }
  .footer-nav > .-item{
    width: calc(100%/3);
    border-right: none;
    margin-top: 1.2rem;
    margin-bottom: 1.2rem;
  }
  .footer-nav > .-item:nth-child(1){
    padding-left: 2.5rem;
  }
  .footer-nav > .-item:last-child{
    padding-right: 2.5rem;
  }
}

@media print, screen and (max-width: 760px){
  /* footer-nav */
  .footer-nav > .-item{
    font-size: 1.7rem;
    padding: 0;
    white-space: normal;
    line-height: 1.65;
  }
  .footer-nav > .-item:nth-child(1){
    padding-left: 0;
  }
  .footer-nav > .-item:last-child{
    padding-right: 0;
  }
}

@media print, screen and (max-width: 640px){
  /* footer-nav */
  .footer-nav > .-item{
    width: 50%;
  }
}

/* footer-nav-corporate */
.footer-nav-corporate{
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}
.footer-nav-corporate > .-item{
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: var(--color-text-gray);
  white-space: nowrap;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  line-height: 1;
  border-left: 1px solid var(--color-text-gray);
}
.footer-nav-corporate > .-item:nth-child(1){
  border-left: none;
}
.footer-nav-corporate > .-item > a{
  background: url(/recruit/assets/images/icon-window-gray.svg) right center no-repeat;
  background-size: 1.2rem auto;
  padding-right: 2rem;
  display: inline-block;
  position: relative;
}
.footer-nav-corporate > .-item > a::after{
  content: "";
  display: block;
  height: 1px;
  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: var(--color-text-gray);
  position: absolute;
  left: 0;
  bottom: -7px;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right top;
  transform-origin: right top;
}
.footer-nav-corporate > .-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: 1000px){
  /* footer-nav-corporate */
  .footer-nav-corporate > .-item{
    white-space: nowrap;
    padding-left: 1.8rem;
    padding-right: 1.8rem;
    border-left: none;
  }
}

@media print, screen and (max-width: 760px){
  /* footer-nav-corporate */
  .footer-nav-corporate{
    display: block;
  }
  .footer-nav-corporate > .-item{
    padding-left: 0;
    padding-right: 0;
    margin-top: 2rem;
  }
  .footer-nav-corporate > .-item:nth-child(1){
    margin-top: 0;
  }
  .footer-nav-corporate > .-item > a::after{
    bottom: -6px;
  }
}

/* privacy-mark */
.privacy-mark{
  margin-left: auto;
  margin-right: auto;
  max-width: 580px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
  margin-top: 5rem;
}
.privacy-mark > .-text{
  flex: 1;
  padding-left: 3.5rem;
}
.privacy-mark > .-text > p{
  font-size: 1.2rem;
  line-height: 1.5;
}
.privacy-mark > .-mark{
  max-width: 100px;
  width: 100%;
}
.privacy-mark > .-mark > img{
  width: 100%;
}

@media print, screen and (max-width: 760px){
  /* privacy-mark */
  .privacy-mark{
    margin-top: 5.2rem;
  }
}

@media print, screen and (max-width: 640px){
  /* privacy-mark */
  .privacy-mark > .-text{
    width: 76.7241%;
    padding-left: 6.0345%;
  }
  .privacy-mark > .-mark{
    width: 17.2414%;
  }
}

@media print, screen and (max-width: 620px){
  .privacy-mark > .-text > p > br:nth-child(1){
    display: none;
  }
}

@media print, screen and (max-width: 590px){
  .privacy-mark > .-text > p > br:nth-child(2){
    display: none;
  }
}

@media print, screen and (max-width: 580px){
  /* privacy-mark */
  .privacy-mark{
    display: block;
  }
  .privacy-mark > .-text{
    width: 100%;
    padding-left: 0;
  }
  .privacy-mark > .-mark{
    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 80px;
  }
}

/* footer-bottom */
.footer-bottom{
  background-color: #111d29;
  color: #ffffff;
  padding-left: 4rem;
  padding-right: 4rem;
}
.footer-bottom > .-inner{
	max-width: 1100px;
  height: 70px;
	margin-left: auto;
	margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

@media print, screen and (max-width: 580px){
  /* footer-bottom */
  .footer-bottom > .-inner{
    padding-top: 3rem;
    padding-bottom: 3rem;
    display: block;
    height: auto;
  }
}

/* privacy-nav */
.privacy-nav{
  display: flex;
  align-items: center;
}
.privacy-nav > .-item{
  font-size: 1.2rem;
  line-height: 1;
  white-space: nowrap;
  font-weight: 700;
  margin-left: 1.5rem;
  padding-left: 1.5rem;
  border-left: 1px solid #ffffff;
}
.privacy-nav > .-item:nth-child(1){
  margin-left: 0;
  padding-left: 0;
  border-left: none;
}
.privacy-nav > .-item > a{
  display: inline-block;
  color: #ffffff;
  background: url(/recruit/assets/images/icon-window-white.svg) right center no-repeat;
  background-size: 1.2rem auto;
  padding-right: 1.6rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.privacy-nav > .-item > a > span{
  position: relative;
}
.privacy-nav > .-item > a > span::after{
  content: "";
  display: block;
  height: 1px;
  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: -8px;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right top;
  transform-origin: right top;
}
.privacy-nav > .-item > a:hover > span::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: 580px){
  /* privacy-nav */
  .privacy-nav{
    margin-bottom: 2.5rem;
  }
}

/* copyright */
.copyright{
	font-size: 1.2rem;
  font-weight: 700;
	line-height: 1;
  color: #ffffff;
}
