@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@100;200;300;400;500;600;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* *****************************************************************************
=01 reset style
=02 option style
=03 common style
=04 layout style
***************************************************************************** */
/*---------- =02 option style ----------*/
.tal{text-align:left!important;}
.tac{text-align:center!important;}
.tar{text-align:right!important;}
.mtNone{margin-top:0!important;}
.mbNone{margin-bottom:0!important;}
.mbShort{margin-bottom:1em!important;}
.mbMiddle{margin-bottom:2em!important;}
.mbLong{margin-bottom:3em!important;}
.bold{font-weight:700;}
.red{color:#;}
/*---------- //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: #000000;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  padding-top: 8rem;
  background-color: #f5f3ee;
}
a{
  color: #000000;
	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: 700;
}
::selection{
	background-color: #000000;
	color: #ffffff;
}
::-moz-selection {
	background-color: #000000;
	color: #ffffff;
}
.en{
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

@media print, screen and (max-width: 760px){
  body{
    padding-top: 6.4rem;
  }
}

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

/*---------- =04 layout style ----------*/
/*========================================
header layout
========================================*/
/* site-header */
.site-header{
  width: 100%;
  height: 80px;
  background-color: rgba(246,245,240,0.95);
  padding-left: 2rem;
  padding-right: 2rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.fixed .site-header{
  background-color: rgba(246,245,240,1);
}
.site-header > .-inner{
  height: 80px;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

/* site-name */
.site-name > a{
	display: flex;
	justify-content: space-between;
  align-items: center;
	-webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.site-name > a:hover{
  opacity: 0.75;
}
.site-name > a > .-logo{
	width: 84px;
}
.site-name > a > .-logo > img{
	width: 100%;
}
.site-name > a > .-text{
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  flex: 1;
  padding-left: 1.8rem;
}
.site-name > a > .-text > img{
	width: 100%;
}

@media screen and (max-width: 760px){
  /* site-name */
  .site-name > a > .-text{
    padding-left: 1.5rem;
  }
}

/* header-primary */
.header-primary{
	display: flex;
  align-items: center;
  margin-left: 3.2rem;
}

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

/* header-nav */
.header-nav > .-main{
  display: flex;
}
.header-nav > .-main > .-item{
	font-size: 1.6rem;
	font-weight: 700;
  line-height: 1;
	white-space: nowrap;
	letter-spacing: normal;
	margin-left: 3.2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.header-nav > .-main > .-item:nth-child(1){
	margin-left: 0;
}
.header-nav > .-main > .-item.-arrow{
  padding-right: 2rem;
  background: url(/assets/images/arrow-header-button-black.svg) right top 0.4rem no-repeat;
  background-size: 1.1rem auto;
}
.header-nav > .-main > .-item > a{
	-webkit-transition: all 0.2s ease;
  transition: all 0.2s ease; 
	position: relative;
	color: #000000;
}
.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: #000000;
  position: absolute;
  left: 0;
  bottom: -6px;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right top;
  transform-origin: right top;
}
.header-nav > .-main > .-item > a:hover::after{
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

/* header-button */
.header-button{
  margin-left: 4.2rem;
}
.header-button > a{
  color: #ffffff;
  background-color: #000000;
  line-height: 36px;
  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: 0.5rem;
  padding-left: 1.8rem;
  padding-right: 1.8rem;
  border: 2px solid #000000;
  /*
  padding-right: 1.5rem;
  */
}
.header-button > a:hover{
    background-color: #ffffff;
    color: #000000;
}
/*
.header-button > a > span{
	background: url(/assets/images/arrow-header-button-white.svg) right center no-repeat;
	background-size: 0.8rem auto;
  display: inline-block;
  width: 100%;
  padding-right: 2.3rem;
}
*/

/* 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: 0;
    right: 0;
    background-color: #000000;
    z-index: 11;
  }
  .fixed .hamburger-button{
    position: fixed;        
  }
  .hamburger-button span{
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: #ffffff;
    display: block;
    height: 2px;
    position: absolute;
    width: 26px;
  }
  .hamburger-button span:nth-child(1){
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: left top;
    transform-origin: left top;
    top: 26px;
    left: 27px;
  }
  .hamburger-button span:nth-child(2){
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    top: 34px;
    left: 27px;
  }
  .hamburger-button span:nth-child(3){
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    top: 42px;
    left: 27px;
  }
  .hamburger-button.is-open span{
    width: 27px;
  }
  .hamburger-button.is-open span:nth-child(1){
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 24px;
    left: 30px;
  }
  .hamburger-button.is-open span:nth-child(2){
    display: none;
  }
  .hamburger-button.is-open span:nth-child(3){
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 24px;
    left: 23px;
  }
  .hamburger-button > .-text{
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    line-height: 1;
    padding-bottom: 1.6rem;
    color: #ffffff;
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap;
    font-weight: 700;
  }
}

@media screen and (max-width: 760px){
  /* hamburger-button */
  .hamburger-button{
    width: 64px;
    height: 64px;
  }
  .hamburger-button span{
    width: 24px;
  }
  .hamburger-button span:nth-child(1){
    top: 20px;
    left: 20px;
  }
  .hamburger-button span:nth-child(2){
    top: 27px;
    left: 20px;
  }
  .hamburger-button span:nth-child(3){
    top: 34px;
    left: 20px;
  }
  .hamburger-button.is-open span{
    width: 25px;
  }
  .hamburger-button.is-open span:nth-child(1){
    top: 18px;
    left: 24px;
  }
  .hamburger-button.is-open span:nth-child(3){
    top: 18px;
    left: 17px;
  }
  .hamburger-button > .-text{
    font-size: 0.8rem;
    padding-bottom: 1.1rem;
  }
}

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

@media screen and (max-width: 1000px){
  /* hamburger-nav */
  .hamburger-nav{
    padding: 3.5rem 4rem 12rem;
    color: #ffffff;
    margin-top: 8rem;
    background: #000000;
    display: block;
    height: 100%;
    opacity: 0;
    overflow: auto;
    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.-home{
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

@media screen and (max-width: 760px){
  /* hamburger-nav */
  .hamburger-nav{
    margin-top: 6.4rem;
    padding: 1.5rem 2rem 10rem;
	}
  .hamburger-nav.-home{
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* .hamburger-nav-main */
.hamburger-nav-main{
  margin-bottom: 4rem;
}
.hamburger-nav-main > .-item{
  border-bottom: 1px solid #2e2e2e;
}
.hamburger-nav-main > .-item > a{
  width: 100%;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 700;
  color: #ffffff;
  display: block;
  padding: 2.5rem 6rem 2.5rem 0.5rem;
  background: url(/assets/images/arrow-link-white.svg) right 2rem center no-repeat;
  background-size: 1rem auto;
  white-space: nowrap;
}

@media screen and (max-width: 760px){
  /* .hamburger-nav-main */
  .hamburger-nav-main{
    margin-bottom: 2.5rem;
  }
}

/* accordion-button */
.accordion-button{
  width: 100%;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  display: block;
  position: relative;
  position: relative;
  padding: 2.5rem 6rem 2.5rem 0.5rem;
}
.accordion-button::before,
.accordion-button::after{
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  /*border-radius: 0.5rem;*/
  background: #ffffff;
  position: absolute;
  right: 0.8em;
  top: 50%;
  transform: translateY(-50%);
}
.accordion-button::after{
  background: #ffffff;
  transform: translateY(-50%) rotate(90deg);
  transition: 0.5s;
}
.accordion-button.accordion-active::after{
  transform: rotate(0);
  transition: 0.5s;
  opacity: 0;
}

@media print, screen and (max-width: 760px){
  /* accordion-button */
  .accordion-button{
    font-size: 1.6rem;
    padding-top: 20px 0 20px 5px;
  }
  .accordion-button > span{
    display: block;
    position: relative;
    padding-top: 22px;
    padding-bottom: 22px;
  }
  .accordion-button > span::before,
  .accordion-button > span::after{
    width: 16px;
    right: 6px;
  }
}

/* accordion-box */ 
.accordion-list > .-item > a{
  width: 100%;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 700;
  color: #ffffff;
  display: block;
  padding: 2.2rem 5rem 2.2rem 2rem;
  background: #1c1c1c url(/assets/images/arrow-circle-white.svg) right 2rem center no-repeat;
  background-size: 2.2rem auto;
  white-space: nowrap;
  border-top: 1px solid #2e2e2e;
}

@media print, screen and (max-width: 760px){
  /* accordion-box */ 
  .accordion-list > .-item > a{
    font-size: 1.4rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    background: #1c1c1c url(/assets/images/arrow-circle-white.svg) right 1.8rem center no-repeat;
    background-size: 2rem auto;
  }
}

/* hamburger-entry-box */
.hamburger-entry-box{
  margin-bottom: 15rem;
}
.hamburger-entry-box > .-heading{
  letter-spacing: -.4em;
}
.hamburger-entry-box > .-heading > .-en{
  font-size: 3.4rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  padding-right: 1.5rem;
  display: inline-block;
  letter-spacing: normal;
}
.hamburger-entry-box > .-heading > .-main{
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  letter-spacing: normal;
}
.hamburger-entry-box > .-main{
  margin-top: 4rem;
}

@media screen and (max-width: 760px){
  /* hamburger-entry-box */
  .hamburger-entry-box{
    margin-bottom: 12rem;
  }
  .hamburger-entry-box > .-heading > .-en{
    font-size: 2.9rem;
    padding-right: 1.1rem;
  }
  .hamburger-entry-box > .-heading > .-main{
    font-size: 1.3rem;
    margin-top: 2rem;
  }
  .hamburger-entry-box > .-main{
    margin-top: 2rem;
  }
}

/* hamburger-entry-nav */
.hamburger-entry-nav{
  display: flex;
  margin-top: 2rem;
}
.hamburger-entry-nav:nth-child(1){
  margin-top: 0;
}
.hamburger-entry-nav > .-title{
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 700;
  width: 160px;
  padding-top: 0.3rem;
  padding-right: 2rem;
  white-space: nowrap;
}
.hamburger-entry-nav > .-list{
  letter-spacing: -.4em;
  line-height: 1.8rem;
  flex: 1;
}
.hamburger-entry-nav > .-list > .-item{
  margin-right: 2.5rem;
  margin-bottom: 2rem;
  display: inline-block;
  letter-spacing: normal;
}
.hamburger-entry-nav > .-list > .-item:last-child{
  margin-right: 0;
}
.hamburger-entry-nav > .-list > .-item > a{
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.8rem;
  background: url(/assets/images/arrow-circle-white.svg) right center no-repeat;
  background-size: 1.8rem auto;
  display: inline-block;
  padding-right: 3.5rem;
  white-space: nowrap;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.hamburger-entry-nav > .-list > .-item > a:hover{
  opacity: 0.75;
}

@media screen and (max-width: 760px){
  /* hamburger-entry-nav */
  .hamburger-entry-nav{
    margin-top: 0.8rem;
  }
  .hamburger-entry-nav > .-title{
    font-size: 1.3rem;
    width: 110px;
    padding-right: 1rem;
  }
  .hamburger-entry-nav > .-list{
    line-height: 1.6rem;
  }
  .hamburger-entry-nav > .-list > .-item{
    margin-bottom: 1.2rem;
  }
  .hamburger-entry-nav > .-list > .-item > a{
    font-size: 1.2rem;
    padding-right: 2.5rem;
    background: url(/assets/images/arrow-circle-white.svg) right center no-repeat;
    background-size: 1.6rem auto;
    line-height: 1.6rem;
  }
}

@media screen and (max-width: 500px){
  /* hamburger-entry-nav */
  .hamburger-entry-nav > .-list > .-item.-break{
    margin-right: 0;
  }
}

/* header-button-sp */
.header-button-sp{
  margin-top: 4rem;
}
.header-button-sp > a{
  width: 100%;
  display: block;
  border-radius: 0.5rem;
  text-align: center;
  font-weight: 700;
  padding: 1.8rem 2rem;
  font-size: 1.8rem;
  line-height: 1;
  color: #000000;
  border: 3px solid #ffffff;
  background: #ffffff url(/assets/images/arrow-circle-black.svg) right 1.8rem center no-repeat;
  background-size: 2.4rem auto;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.header-button-sp > a:hover{
  background: #000000 url(/assets/images/arrow-circle-white.svg) right 1.8rem center no-repeat;
  background-size: 2.4rem auto;
  color: #ffffff;
}

@media print, screen and (max-width: 760px){
  /* header-button-sp */
  .header-button-sp{
    margin-top: 3.5rem;
  }
  .header-button-sp > a{
    font-size: 1.6rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    background: #ffffff url(/assets/images/arrow-circle-black.svg) right 1.2rem center no-repeat;
    background-size: 2.2rem auto;
  }
  .header-button-sp > a:hover{
    background: #000000 url(/assets/images/arrow-circle-white.svg) right 1.2rem center no-repeat;
    background-size: 2.2rem auto;
  }
}

/* dropdown-containe */
/*
.dropdown-container{
  position: relative;
  display: inline-block;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
*/

/* dropdown-trigger */
/*
.dropdown-trigger{
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease;
  margin-right: 3rem;
}
*/

/* dropdown-arrow */
/*
.dropdown-arrow{
  transition: transform 0.3s ease;
  width: 24px;
  height: 100%;
  aspect-ratio: 1/1;
  position: absolute;
  top: -0.1rem;
  right: 0;
  background: url(/assets/images/arrow-select.svg) center center no-repeat;
  background-size: 1.2rem auto;
}
.dropdown-container:hover .dropdown-arrow{
  transform: rotate(180deg);
}
*/

/* dropdown-menu */
/*
.dropdown-menu{
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0px 0px 10px -5px rgba(0, 0, 0, 0.65);
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  overflow: hidden;
}
.dropdown-menu li{
  margin: 0;
}
.dropdown-menu a{
  display: block;
  padding: 2rem 2rem;
  color: #000000;
  text-decoration: none;
  transition: background-color 0.2s ease;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease; 
}
.dropdown-menu a:hover{
  background-color: #000000;
  color: #ffffff;
}
.dropdown-container:hover .dropdown-menu{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
*/

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

/* basic-box */
.basic-box{
  padding-left: 6rem;
  padding-right: 6rem;
}
.basic-box > .-inner{
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

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

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

/* regular-box */
.regular-box{
  padding-left: 6rem;
  padding-right: 6rem;
}
.regular-box > .-inner{
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

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

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

/* basic-heading */
.basic-heading.-center{
    text-align: center;
}
.basic-heading.-white{
  color: #ffffff;
}
.basic-heading > .-en{
    font-size: 4.8rem;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: 1.25;
    margin-bottom: 0.8rem;
}
.basic-heading > .-main{
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.6;
}

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

/* basic-heading-link */
.basic-heading-link{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.basic-heading-link > .-heading{
  flex: 1;
  padding-right: 2rem;
}
.basic-heading-link > .-link{
  padding-bottom: 0.2rem;
}
.basic-heading-link-sp{
    display: none;
}

@media print, screen and (max-width: 760px){
  /* basic-heading-link */
  .basic-heading-link{
    display: block;
  }
  .basic-heading-link > .-heading{
    padding-right: 0;
  }
  .basic-heading-link > .-link{
    display: none;
  }
  .basic-heading-link-sp{
    margin-top: 6rem;
    display: block;
    text-align: center;
  }
}

/* regular-heading */
.regular-heading{
  font-size: 2.8rem;
  line-height: 1.55;
  font-weight: 700;
  color: #1d3166;
  margin-bottom: 4rem;
}

@media print, screen and (max-width: 760px){
  /* regular-heading */
  .regular-heading{
    font-size: 2.6rem;
    margin-bottom: 3.5rem;
  }
}

/* regular-heading-medium */
.regular-heading-medium{
  line-height: 1;
  font-size: 2.1rem;
  font-weight: 700;
  padding-left: 1.2rem;
  border-left: 3px solid #1d3166;
  margin-bottom: 3rem;
}

/* tag-heading */
.tag-heading{
  margin-bottom: 1.5rem;
}
.tag-heading > span{
  background-color: #1d3166;
  color: #ffffff;
  display: inline-block;
  line-height: 1;
  font-weight: 700;
  font-size: 1.8rem;
  padding: 0.5rem 0.6rem;
}

/* tag-heading-large */
.tag-heading-large{
  margin-bottom: 3.5rem;
}
.tag-heading-large > span{
  background-color: #1d3166;
  color: #ffffff;
  display: inline-block;
  line-height: 1;
  font-weight: 700;
  font-size: 2.4rem;
  padding: 0.5rem 0.6rem;
}

/* marker-heading */
.marker-heading{
  margin-bottom: 2.8rem;
}
.marker-heading > span{
  background-color: #1d3166;
  color: #ffffff;
  display: inline;
  line-height: 1.7857;
  font-weight: 700;
  font-size: 2.8rem;
  padding: 0.1rem 1rem;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

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

/* simple-marker-heading */
.simple-marker-heading > span{
  font-size: 2.4rem;
  line-height: 1.85;
  background-color: #1d3166;
  color: #ffffff;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0.1rem 0.7rem;
}

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

/* simple-list */
.simple-list > .-item{
  font-size: 1.6rem;
  line-height: 1.75;
  padding-left: 1em;
  position: relative;
}
.simple-list > .-item::before{
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #000000;
  position: absolute;
  top: 1rem;
  left: 0;
}

/* basic-number-list */
.basic-number-list{
  counter-reset: basic-number-list;
}
.basic-number-list > .-item{
  font-size: 1.6rem;
  line-height: 2;
  counter-reset: number 0;
  padding-left: 1.5em;
  position: relative;
}
.basic-number-list.-bold > .-item{
  font-weight: 700;
}
.basic-number-list > .-item::before{
  counter-increment: basic-number-list;
  content: counter(basic-number-list)'．';
  position: absolute;
  top: 0;
  left: 0;
}

/* basic-description-number-list */
.basic-description-number-list{
  counter-reset: basic-description-number-list;
}
.basic-description-number-list > .-item{
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 3.2rem;
}
.basic-description-number-list > .-item:nth-child(1){
  margin-top: 0;
}
.basic-description-number-list > .-item > .-heading{
  font-weight: 700;
  counter-reset: number 0;
  padding-left: 1.5em;
  position: relative;
}
.basic-description-number-list > .-item > .-heading::before{
  counter-increment: basic-description-number-list;
  content: counter(basic-description-number-list)'．';
  position: absolute;
  top: 0;
  left: 0;
}

/* basic-number-box */
.basic-number-box{
  counter-reset: basic-number-box;
  margin-top: 5rem;
}
.basic-number-box > .-item{
  margin-top: 4.8rem;
}
.basic-number-box > .-item:nth-child(1){
  margin-top: 0;
}
.basic-number-box > .-item > .-heading{
  position: relative;
  padding-left: 3.6rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.75;
}
.basic-number-box > .-item > .-heading::before{
  counter-increment: basic-number-box;
  content: counter(basic-number-box);
  position: absolute;
  top: 0.2rem;
  left: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.4rem;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 50%;
  color: #ffffff;
  background-color: #000000;
  z-index: 1;
}
.basic-number-box > .-item > .-primary{
  margin-top: 1.8rem;
}
.basic-number-box > .-item > .-primary > .-field{
  margin-top: 3.2rem;
}
.basic-number-box > .-item > .-primary > .-field:nth-child(1){
  margin-top: 0;
}

/* basic-number-box-text */
.basic-number-box-text{
  margin-top: 3rem;
}
.basic-number-box-text:nth-child(1){
  margin-top: 0;
}
.basic-number-box-text > p,
.basic-number-box-text > div{
  font-size: 1.6rem;
  line-height: 2;
}
.basic-number-box-text > p{
  margin-top: 2em;
}
.basic-number-box-text > p:nth-child(1){
  margin-top: 0;
}
.basic-number-box-text > .-link{
  font-weight: 700;
}
.basic-number-box-text > .-link > .-window{
  padding-right: 2.5rem;
  display: inline;
  background: url(/assets/images/icon-window-black.svg) right top 0.6rem no-repeat;
  background-size: 1.6rem auto;
}
.basic-number-box-text > .-link > a > span{
  position: relative;  
}
.basic-number-box-text > .-link > a > span::after{
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #000000;
  bottom: 0;
  transform: scale(1, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.basic-number-box-text > .-link > a:hover > span::after{
  transform: scale(0, 1);
  transform-origin: right top;
}

/* basic-link */
.basic-link > a{
  line-height: 3rem;
  font-size: 1.4rem;
  display: inline-block;
  white-space: nowrap;
  padding-right: 4.3rem;
  background: url(/assets/images/arrow-circle-black.svg) right center no-repeat;
  background-size: 3rem auto;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.basic-link.-white > a{
  color: #ffffff;
  background: url(/assets/images/arrow-circle-white.svg) right center no-repeat;
  background-size: 3rem auto;
}
.basic-link > a:hover{
  opacity: 0.75;
}

/* text-link-window */
.text-link-window{
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 700;
  margin-top: 4rem;
}
.text-link-window > a{
  display: inline-block;
  padding-right: 4.8rem;
  background: url(/assets/images/icon-window-black.svg) right top 0.1rem no-repeat;
  background-size: 1.6rem auto;
  position: relative;
}
.text-link-window > a::after{
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #000000;
  bottom: -1.4rem;
  transform: scale(1, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.text-link-window > a:hover::after{
  transform: scale(0, 1);
  transform-origin: right top;
}

/* basic-back */
.basic-back{
  margin-top: 6rem;
  text-align: center;
  padding-left: 2rem;
  padding-right: 2rem;
}
.basic-back > a{
  line-height: 3rem;
  font-size: 1.4rem;
  display: inline-block;
  white-space: nowrap;
  padding-left: 4.3rem;
  background: url(/assets/images/arrow-circle-back-black.svg) left center no-repeat;
  background-size: 3rem auto;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  color: #000000;
}
.basic-back > a:hover{
  opacity: 0.75;
}

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

/* basic-table */
.basic-table{
  border-bottom: 1px solid #d1d5e0;
  width: 100%;
}
.basic-table > tbody > tr > th{
  font-size: 1.6rem;
  line-height: 1.3125;
  font-weight: 700;
  width: 230px;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  padding-right: 4rem;
  border-top: 1px solid #d1d5e0;
  position: relative;
}
.basic-table > tbody > tr > th::before{
  content: "";
  width: 100px;
  height: 1px;
  position: absolute;
  top: -1px;
  left: 0;
  background-color: #1d3166;
  z-index: 1;
}
.basic-table > tbody > tr > td{
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 500;
  border-top: 1px solid #d1d5e0;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

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

@media print, screen and (max-width: 760px){
  /* basic-table */
  .basic-table > tbody > tr > th,
  .basic-table > tbody > tr > td{
    display: block;
  }
  .basic-table > tbody > tr > th{
    font-size: 1.8rem;
    width: 100%;
    padding-right: 0;
    padding-bottom: 0;
  }
  .basic-table > tbody > tr > th::before{
    width: 50px;
  }
  .basic-table > tbody > tr > td{
    border-top: none;
    padding-top: 1.5rem;
  }
}

/* job-career-section */
.job-career-section{
  margin-bottom: 12rem;
  padding-left: 6rem;
  padding-right: 6rem;
}
.job-career-section > .-inner{
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

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

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

/* job-career-box */
.job-career-box{
  background: url(/assets/images/img-job-visual.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
  border-radius: 5rem;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6rem 7.7369%;
}
.job-career-box::before{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.75);
}
.job-career-box > .-primary{
  flex: 1;
  position: relative;
  z-index: 1;
  color: #ffffff;
  padding-right: 6rem;
}
.job-career-box > .-primary > .-text{
  margin-top: 2rem;
}
.job-career-box > .-primary > .-text > p{
  font-size: 1.6rem;
  line-height: 1.75;
}
.job-career-box > .-link{
  position: relative;
  z-index: 1;
}

@media print, screen and (max-width: 760px){
  /* job-career-box */
  .job-career-box{
    border-radius: 2.5rem;
    display: block;
  }
  .job-career-box > .-primary{
    padding-right: 0;
  }
  .job-career-box > .-link{
    margin-top: 2.4rem;
  }
}

/* link-section */
.link-section{
  background-color: #000000;
  padding: 7rem 4rem;
  color: #ffffff;
}
.link-section > .-inner{
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.link-section a{
  color: #ffffff;    
}

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

@media print, screen and (max-width: 580px){
  /* link-section */
  .link-section{
    padding: 8rem 2rem;
  }
}

/* link-box */
.link-box{
  display: flex;
}
.link-box > .-item{
  width: 50%;
  padding-left: 3rem;
  padding-right: 3rem;
}

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

@media print, screen and (max-width: 580px){
  /* link-box */
  .link-box{
    display: block;
  }
  .link-box > .-item{
    width: 100%;
    padding-left: 0rem;
    padding-right: 0rem;
  }
  .link-box > .-item:nth-child(2){
    margin-top: 8rem;
  }
}

/* link-section-button */
.link-section-button{
    margin-top: 3rem;
    max-width: 205px;
    margin-left: auto;
    margin-right: auto;
}
.link-section-button > a{
  background-color: #ffffff;
  color: #000000;
  display: inline-block;
  text-align: left;
  width: 100%;
  border-radius: 0.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  white-space: nowrap;
  padding-left: 2rem;
  padding-right: 2rem;
  border: 2px solid #ffffff;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.link-section-button > a:hover{
  background-color: #000000;
  color: #ffffff;
}
.link-section-button > a > span{
  display: inline-block;
  width: 100%;
  background: url(/assets/images/arrow-circle-black.svg) right center no-repeat;
  background-size: 2.4rem auto;
  line-height: 5.6rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.link-section-button > a:hover > span{
  background: url(/assets/images/arrow-circle-white.svg) right center no-repeat;
  background-size: 2.4rem auto;
}

/* other-page-nav */
.other-page-nav{
  display: flex;
}
.other-page-nav > .-item{
  width: 50%;
}
.other-page-nav > .-item > a{
  width: 100%;
  height: 240px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-left: 5rem;
}
.other-page-nav > .-item:nth-child(1) > a{
  justify-content: flex-end;
}
.other-page-nav > .-item.-graduate > a::before{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.4;
  z-index: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: #f5f3ee;
}
.other-page-nav > .-item > a::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-duration: 0.5s;
}
.other-page-nav > .-graduate > a::after{
  background: url(/assets/images/img-page-graduate.jpg) center top no-repeat;
  background-size: cover;
}
.other-page-nav > .-career > a::after{
  background: url(/assets/images/img-page-career.jpg) left center no-repeat;
  background-size: cover;
}
.other-page-nav > .-item > a:hover::after{
  transform: scale(1.1);
  transition-duration: 0.5s;
}

@media print, screen and (max-width: 1160px){
  /* other-page-nav */
  .other-page-nav > .-item > a{
    padding-left: 3rem;
  }
}

@media print, screen and (max-width: 1000px){
  /* other-page-nav */
  .other-page-nav > .-item > a{
    padding-left: 2rem;
  }
}

@media print, screen and (max-width: 860px){
  /* other-page-nav */
  .other-page-nav{
    display: block;
  }
  .other-page-nav > .-item{
    width: 100%;
  }
  .other-page-nav > .-item:nth-child(1) > a{
    justify-content: flex-start;
  }
}

/* other-page-nav-text */
.other-page-nav-text{
  width: 100%;
  max-width: 520px;
  background: url(/assets/images/arrow-circle-black.svg) right 5rem center no-repeat;
  background-size: 4rem;
  position: relative;
  z-index: 1;
}
.other-page-nav-text > .-en{
  font-size: 4.8rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  white-space: nowrap;
  line-height: 1;
  margin-bottom: 1.4rem;
}
.other-page-nav-text > .-en > span{
  background-color: #000000;
  color: #ffffff;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  line-height: 4.6rem;
  display: inline-block;
}
.other-page-nav-text > .-main{
  font-size: 2.1rem;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
}
.other-page-nav-text > .-main > span{
  background-color: #000000;
  color: #ffffff;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  line-height: 3.1rem;
  display: inline-block;
}

@media print, screen and (max-width: 1160px){
  /* other-page-nav-text */
  .other-page-nav-text{
    background: url(/assets/images/arrow-circle-black.svg) right 3rem center no-repeat;
    background-size: 4rem;
  }
}

@media print, screen and (max-width: 1000px){
  /* other-page-nav-text */
  .other-page-nav-text{
    background: url(/assets/images/arrow-circle-black.svg) right 2rem center no-repeat;
    background-size: 4rem;
  }
  .other-page-nav-text > .-en{
    font-size: 4.2rem;
  }
}

@media print, screen and (max-width: 860px){
  /* other-page-nav-text */
  .other-page-nav-text{
    background: url(/assets/images/arrow-circle-black.svg) right 5rem center no-repeat;
    background-size: 4rem;
    max-width: none;
  }
  .other-page-nav-text > .-en{
    font-size: 4.8rem;
  }
}

@media print, screen and (max-width: 760px){
  /* other-page-nav-text */
  .other-page-nav-text{
    background: url(/assets/images/arrow-circle-black.svg) right 4rem center no-repeat;
    background-size: 4rem;
  }
}

@media print, screen and (max-width: 540px){
  /* other-page-nav-text */
  .other-page-nav-text{
    background: url(/assets/images/arrow-circle-black.svg) right 2rem center no-repeat;
    background-size: 4rem;
  }
  .other-page-nav-text > .-en{
    font-size: 8.9vw;
    margin-bottom: 2.7vw;
  }
  .other-page-nav-text > .-en > span{
    line-height: 1;
  }
  .other-page-nav-text > .-main{
    font-size: 3.9vw;
    line-height: 1;
  }
  .other-page-nav-text > .-main > span{
    line-height: 1.5;
  }
}

/* basic-entry-nav */
.basic-entry-nav{
  background-color: #000000;
  padding: 5rem 6rem 6rem;
}
.basic-entry-nav > .-inner{
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

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

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

/* basic-entry-nav-box */
.basic-entry-nav-box{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.basic-entry-nav-box > .-heading{
  padding-right: 4rem;
  width: 360px;
}
.basic-entry-nav-box > .-primary{
  flex: 1;
}

@media print, screen and (max-width: 1000px){
  /* basic-entry-nav-box */
  .basic-entry-nav-box{
    display: block;
  }
  .basic-entry-nav-box > .-heading{
    padding-right: 0;
  }
  .basic-entry-nav-box > .-primary{
    width: 100%;
  }
}

/* basic-entry-nav-list */
.basic-entry-nav-list > .-item{
  margin-top: 3rem;
}
.basic-entry-nav-list > .-item:nth-child(1){
  margin-top: 0;
}

@media print, screen and (max-width: 1000px){
  /* basic-entry-nav-list */
  .basic-entry-nav-list{
    margin-top: 5.2rem;
  }
}

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

/* basic-entry-nav-heading */
.basic-entry-nav-heading{
  color: #ffffff;
  line-height: 1;
  white-space: nowrap;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
}

/* basic-entry-nav-button */
.basic-entry-nav-button{
  display: flex;
  flex: 1;
}
.basic-entry-nav-button > .-item{
  width: calc(100%/2 - 4rem * 1 / 2);
  margin-right: 4rem;
}
.basic-entry-nav-button > .-item:nth-child(2){
  margin-right: 0;
}
.basic-entry-nav-button > .-item > a{
  background-color: #ffffff;
  color: #000000;
  text-align: left;
  width: 100%;
  border-radius: 0.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  white-space: nowrap;
  padding-left: 2rem;
  padding-right: 2rem;
  border: 2px solid #ffffff;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  height: 5.6rem;
  display: flex;
  align-items: center;
}
.basic-entry-nav-button > .-item > a:hover{
  background-color: #000000;
  color: #ffffff;
}
.basic-entry-nav-button > .-item > a > span{
  display: inline-block;
  width: 100%;
  background: url(/assets/images/arrow-circle-black.svg) right center no-repeat;
  background-size: 2.4rem auto;
  line-height: 1.25;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.basic-entry-nav-button > .-item > a:hover > span{
  background: url(/assets/images/arrow-circle-white.svg) right center no-repeat;
  background-size: 2.4rem auto;
}
.basic-entry-nav-button > .-item > a > span > .-letter-spacing{
  letter-spacing: -0.05em;
}

@media print, screen and (max-width: 1000px){
  /* basic-entry-nav-button */
  .basic-entry-nav-button{
    flex-wrap: wrap;
  }
  .basic-entry-nav-button > .-item{
    width: 50%;
    margin-top: 2rem;
    margin-right: 0;
  }
  .basic-entry-nav-button > .-item:nth-child(-n+2){
    margin-top: 0;
  }
  .basic-entry-nav-button > .-item:nth-child(odd){
    padding-right: 1rem;
  }
  .basic-entry-nav-button > .-item:nth-child(even){
    padding-left: 1rem;
  }
}

@media print, screen and (max-width: 600px){
  /* basic-entry-nav-button */
  .basic-entry-nav-button{
    display: block;
  }
  .basic-entry-nav-button > .-item{
    width: 100%;
  }
  .basic-entry-nav-button > .-item:nth-child(2){
    margin-top: 2rem;
  }
  .basic-entry-nav-button > .-item:nth-child(odd){
    padding-right: 0;
  }
  .basic-entry-nav-button > .-item:nth-child(even){
    padding-left: 0;
  }
}

/* faq-nav */
.faq-nav{
  padding: 5rem 6rem;
}
.faq-nav > .-inner{
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -8rem; 
  padding-top: 8rem;
}

@media print, screen and (max-width: 1000px){
  /* faq-nav */
  .faq-nav{
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .faq-nav > .-inner{
    max-width: none;
  }
}

@media print, screen and (max-width: 760px){
  /* faq-nav */
  .faq-nav{
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .faq-nav > .-inner{
    margin-top: -6.4rem; 
    padding-top: 6.4rem;
  }
}

/* faq-nav-box */
.faq-nav-box{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-nav-box > .-heading{
  width: 360px;
}
.faq-nav-box > .-primary{
  flex: 1;
}

@media print, screen and (max-width: 1000px){
  /* faq-nav-box */
  .faq-nav-box{
    display: block;
    
  }
  .faq-nav-box > .-heading{
    width: 100%;
  }
}

/* heading-row */
.heading-row{
  display: flex;
  align-items: center;
}
.heading-row.-center{
  justify-content: center;
}
.heading-row.-white{
  color: #ffffff;
}
.heading-row > .-en{
  font-size: 4.8rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  padding-right: 3.7rem;
}
.heading-row > .-main{
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
}

@media print, screen and (max-width: 1000px){
  /* heading-row */
  .heading-row.-center{
    justify-content: flex-start;
  }
}

/* faq-nav-button */
.faq-nav-button{
  display: flex;
  flex: 1;
}
.faq-nav-button > .-item{
  width: 50%;
}
.faq-nav-button > .-item:nth-child(1){
  padding-right: 2rem;
}
.faq-nav-button > .-item:nth-child(2){
  padding-left: 2rem;
}

@media print, screen and (max-width: 1000px){
  /* faq-nav-button */
  .faq-nav-button{
    margin-top: 3rem;
  }
  .faq-nav-button > .-item:nth-child(1){
    padding-right: 1rem;
  }
  .faq-nav-button > .-item:nth-child(2){
    padding-left: 1rem;
  }
}

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

/* nav-parts-button */
.nav-parts-button > a{
  background-color: #000000;
  color: #ffffff;
  text-align: left;
  width: 100%;
  border-radius: 0.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  white-space: nowrap;
  padding-left: 2rem;
  padding-right: 2rem;
  border: 2px solid #000000;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  height: 5.6rem;
  display: flex;
  align-items: center;
}
.nav-parts-button > a:hover{
  background-color: #f5f4ef;
  color: #000000;
}
.nav-parts-button > a > span{
  display: inline-block;
  width: 100%;
  background: url(/assets/images/arrow-circle-white.svg) right center no-repeat;
  background-size: 2.4rem auto;
  line-height: 1.25;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.nav-parts-button > a:hover > span{
  background: url(/assets/images/arrow-circle-black.svg) right center no-repeat;
  background-size: 2.4rem auto;
}
.nav-parts-button > a > span > .-letter-spacing{
  letter-spacing: -0.05em;
}
.nav-parts-button > a > span > .-block{
  display: block;
}

@media print, screen and (max-width: 1000px){
  /* nav-parts-button */
  .nav-parts-button > a > span > .-block{
    display: inline-block;
    padding-left: 1rem;
  }
  .nav-parts-button > a > span > .-block:nth-child(1){
    padding-left: 0;
  }
}

@media print, screen and (max-width: 800px){
  /* nav-parts-button */
  .nav-parts-button > a > span > .-block{
    display: block;
    padding-left: 0;
  }
}

@media print, screen and (max-width: 600px){
  /* nav-parts-button */
  .nav-parts-button > a > span > .-block{
    display: inline-block;
    padding-left: 1rem;
  }
}

@media print, screen and (max-width: 420px){
  /* nav-parts-button */
  .nav-parts-button > a > span > .-block{
    display: block;
    padding-left: 0;
  }
}

/*========================================
footer layout
========================================*/
/* site-footer-border */
.site-footer-border{
    border-top: 1px solid #eae8df;
    overflow: hidden;
}

/* footer-primary */
.footer-primary{
    padding-top: 6rem;
    padding: 6rem 6rem 4.5rem;
    background-color: #f6f5f0;
}
.footer-primary > .-inner{
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
}

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

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

/* footer-nav */
.footer-nav-wrap{
    display: flex;
    column-gap: 2rem;
}
.footer-nav{
    width: 25%;
    padding-top: calc(1em + 2.8rem);
}
.footer-nav.-home{
    padding-top: 0;
}
.footer-nav.-sp{
  display: none;
}
.footer-nav > .-item{
    font-size: 1.6rem;
    font-weight: 700;
    white-space: nowrap;
    line-height: 1;
    margin-top: 2.8rem;
}
.footer-nav > .-item:nth-child(1){
    margin-top: 0;
}
.footer-nav > .-item > a{
    color: #000000;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    position: relative;
    padding-left: 1.3rem;
    font-weight: 700;
}
.footer-nav > .-item > a:hover{
    opacity: 0.75;
}
.footer-nav > .-item > a::before{
    content: "";
    position: absolute;
    top: 0.8rem;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: #000000;
    border-radius: 50%;
}

@media print, screen and (max-width: 1000px){
    /* footer-nav */
    .footer-nav-wrap{
        flex-wrap: wrap;
        gap: 6rem 4rem;
    }
    .footer-nav{
        width: calc(50% - 2rem);
        padding-top: 0;
    }
    .footer-nav.-sp{
      display: block;
    }
    .footer-nav > .-item.-pc{
      display: none;
    }
}

@media print, screen and (max-width: 760px){
    /* footer-nav */
    .footer-nav-wrap{
        gap: 6rem 2rem;
    }
    .footer-nav{
        width: calc(50% - 1rem);
        padding-top: 0;
    }
}

/* footer-nav-sub */
.footer-nav-sub{
    padding-top: 0.8rem;
    margin-bottom: 3.5rem;
}
.footer-nav-sub > .-item{
    font-size: 1.4rem;
    font-weight: 500;
    white-space: nowrap;
    line-height: 1.75;
    margin-top: 1.2rem;
    padding-left: 1.6rem;
    position: relative;
}
.footer-nav-sub > .-item::before{
    content: "";
    position: absolute;
    top: 1rem;
    left: 0;
    width: 8px;
    height: 2px;
    background-color: #000000;
}
.footer-nav-sub > .-item > a{
    color: #000000;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.footer-nav-sub > .-item > a:hover{
    opacity: 0.75;
}
.footer-nav-sub > .-item > a > br{
    display: none;
}

@media print, screen and (max-width: 1000px){
  /* footer-nav-sub */
  .footer-nav-sub{
    margin-bottom: 0;
  }
}

/* footer-sub */
.footer-sub{
    background-color: #000000;
    width: 100%;
    padding: 3rem 6rem;
}
.footer-sub > .-inner{
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}

@media print, screen and (max-width: 1000px){
	/* footer-sub */
    .footer-sub{
        padding: 4rem;
    }
    .footer-sub > .-inner{
        display: block;
    }
}

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

@media print, screen and (max-width: 480px){
	/* footer-sub */
    .footer-nav-sub > .-item > a > br{
        display: inline;
    }
}

/* footer-other-nav */
.footer-other-nav{
    display: flex;
    align-items: center;
    padding-left: 6rem;    
}
.footer-other-nav > .-item{
    font-size: 1.2rem;
    line-height: 1;
    white-space: nowrap;
    margin-right: 3.7rem;
}
.footer-other-nav > .-item:last-child{
    margin-right: 0;
}
.footer-other-nav > .-item > a{
    color: #ffffff;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.footer-other-nav > .-item > a:hover{
    opacity: 0.75;
}
.footer-other-nav > .-item.-window > a{
  padding-right: 2.4rem;
  background: url(/assets/images/icon-window-white.svg) right center no-repeat;
  background-size: 1.6rem auto;
}

@media print, screen and (max-width: 1000px){
    /* footer-other-nav */
    .footer-other-nav{
        padding-left: 0;
        flex-wrap: wrap;
    }
    .footer-other-nav > .-item{
        margin-bottom: 1.5rem;
    }
}

/* copyright */
.copyright{
    font-size: 1.2rem;
    line-height: 1.75;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}
.copyright > br{
    display: none;
}

@media print, screen and (max-width: 1040px){
	/* copyright */
	.copyright > br{
        display: inline;
    }
}

@media print, screen and (max-width: 1000px){
	/* copyright */
    .copyright{
        margin-top: 0.5rem;
    }
	.copyright > br{
        display: none;
    }
}

@media print, screen and (max-width: 760px){
	/* copyright */
	.copyright > br{
        display: inline;
    }
}

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

@media print, screen and (max-width: 760px){
  /* fix-nav */
  .fix-nav{
    width: 100%;
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: stretch;
    z-index: 9;
    overflow: hidden;
  }
  .fix-nav > .-item{
    width: calc(100%/3);
    display: flex;
    align-items: stretch;
  }
  .fix-nav > .-item > a{
    width: 100%;
    display: block;
    line-height: 1.25;
    font-size: 1.4rem;
    font-weight: 700;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 6rem;
  }
  .fix-nav > .-item.-graduate > a{
    background-color: #1d3166;
    color: #ffe650;
  }
  .fix-nav > .-item.-graduate > a:hover{
    background-color: #ffe650;
    color: #1d3166;
  }
  .fix-nav > .-item.-career > a{
    background-color: #d92c25;
    color: #ffffff;
  }
  .fix-nav > .-item.-career > a:hover{
    background-color: #ffffff;
    color: #d92c25;
  }
  .fix-nav > .-item.-parttime > a{
    background-color: #eb6001;
    color: #ffffff;
  }
  .fix-nav > .-item.-parttime > a:hover{
    background-color: #ffffff;
    color: #eb6001;
  }
}

/*========================================
anime style
========================================*/
/* anime-box */
.anime-box{
  opacity: 0;
}

/* fadein */
.anime-box.fadein.is-animated{
  animation: fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadeIn{
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}

/* zoomin */
.anime-box.zoomin.is-animated{
  animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes zoomIn{
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* slidein */
.anime-box.slidein.is-animated {
  animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
 @keyframes slideIn {
  0% {
    transform: translateX(180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%,100% {
    opacity: 1;
  }
}

/* fadeup */
.anime-box.fadeup.is-animated{
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadeup{
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* .matrix */
.matrix .bg-wrap,
.matrix .bg-wrap .inn {
  display: block;
}
.matrix .bg-wrap {
  overflow: hidden;
  opacity: 0;
}
.matrix .bg-wrap + .bg-wrap{
  margin-top: 10px;
}
.matrix .bg-wrap .inn{
  opacity: 0;
  transform: matrix(1, 0, 0, 1, 0, 100);
  transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.matrix.is-animated .bg-wrap{
  opacity: 1;
}
.matrix.is-animated .bg-wrap .inn{
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, 0);
}
