@charset "utf-8";
@import url('https://cdn.jsdelivr.net/npm/destyle.css@1.0.15/destyle.css');
@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');
/*font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
*/
/*font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
*/




@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..20');

.gicon:before,
.gicon:after{
  font-family: "Material Symbols Outlined";
  line-height: 1;
}

/* ------- LINK ---------------------------------------------- */
a:link {
  color: inherit;
  text-decoration: inherit;
}
a:visited {
  color: inherit;
  text-decoration: inherit;
}
a:hover {
  color: inherit;
  text-decoration: inherit;
}
a:active {
  color: inherit;
  text-decoration: inherit;
}

a.text-link{
  color: #3681A0;
  text-decoration: underline;
}

@media (hover: hover) and (pointer: fine){
  a.text-link:hover{
    text-decoration: none;
  }
}



/* ------- BODY ---------------------------------------------- */
html{
  font-size: 62.5%;
}
body {
  color: #000000;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 2;
  overflow-x: hidden;
  position: relative;
}

*{
  backface-visibility: hidden;/* animation時のにじみ防止 */
  -webkit-backface-visibility: hidden;/* animation時のにじみ防止 */
  -webkit-font-smoothing: antialiased/* animation時の文字にじみ防止 */
  -moz-osx-font-smoothing: grayscale;/* animation時の文字にじみ防止 */
  -webkit-font-smoothing: antialiased;
}

img {
  height: auto;
  max-width: 100%;
}


/* ------- RESPONSIVE ---------------------------------------------- */
@media print, screen and (min-width:1025px) {
  .pc-ver {
    display: block;
  }
  .sp-ver {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .pc-ver {
    display: none;
  }
  .sp-ver {
    display: block;
  }
}


/* ------- BODY ---------------------------------------------- */
body{
  background-color: #EAEAEA;
}
.en{
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.jp{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
}
@media print, screen and (min-width:1025px) {
	body{
    font-size: 1.5rem;
    padding-top: 100px;
	}
}
@media screen and (max-width: 1024px) {
  body{
    font-size: 1.5rem;
    padding-top: 70px;
	}
}
@media screen and (max-width: 780px) {
	body{
    font-size: 1.5rem;
	}
}






/* ------- HEADER ---------------------------------------------- */
#header-area{
  background-color: #FFF;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
}
#logo-main a{
  background-repeat: no-repeat;
  background-size: 100% auto;
  display: block;
}
#header-area .navi-entry{
  color: #FFF;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}
#header-area .navi-entry > li{
  line-height: 1;
}
#header-area .navi-entry > li > a{
  display: block;
}
#header-area .navi-entry .newgrad{
  background-color: #FD6925;
}
#header-area .navi-entry .career{
  background-color: #26BDE2;
}

@keyframes togglefade {
   0% {
     opacity: 0;
   }
   100% {
     opacity: 1;
   }
}
@media print, screen and (min-width:1025px) {
  #header-area{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    width: 100%;
  }
  #logo-main{
    margin-left: 1.5625%;
    margin-right: auto;
    width: 23.494%;
    max-width: 437px;
  }
  #logo-main > a{
    background-image: url("../img/logo_main_pc.png");
    padding-bottom: 9.302325%;
  }
  #header-area .navi-entry{
		height: 100%;
    display: flex;
		align-items: center;
    margin-left: 0;
    margin-right: 0;
  }
  #header-area .navi-entry > li{
    font-size: min(1.3vw,1.7rem);
		padding: 24px 0;
    white-space: nowrap;
		position: relative;
  }
  #header-area .navi-entry > li:nth-child(n + 2){
    margin-left: 0.52083vw;
  }
  #header-area .navi-entry > li > a,
	#header-area .navi-entry > li > span{
    border-radius: 50px;
    padding: 18px 1.5625vw;
    transition: .3s;
  }
  @media (hover: hover) and (pointer: fine){
    #header-area .navi-entry > li > a:hover,
		#header-area .navi-entry > li.toggle:hover span{
      background-color: #0068FE;
    }
  }
	#header-area .navi-entry > li:first-child > a,
  #header-area .navi-entry > li:first-child > span{
    position: relative;
  }
  #header-area .navi-entry > li > a,
  #header-area .navi-entry > li > span{
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 100%;
  }
  #header-area .navi-entry > li.toggle:before{
    background-image: url("../img/bg_navi_balloonl2.svg");
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    display: block;
    height: 15px;
    width: 18px;
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translate(-50%,100%);
    opacity: 0;
  }
  #header-area .navi-entry > li.toggle.open:before{
    animation-name: togglefade;
    animation-duration: .5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  #header-area .navi-entry > li.toggle > ul{
    background-color: #FD6925;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .20);
    border-radius: 10px;
    font-size: min(1.3vw,1.8rem);
    text-align: left;
    padding: 20px;
    position: absolute;
		left: 50%;
    bottom: 6px;
		transform: translate(-50%,100%);
    opacity: 0;
    pointer-events: none;
  }
  #header-area .navi-entry > li.toggle.open > ul{
    pointer-events: all;
    animation-name: togglefade;
    animation-duration: .3s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  #header-area .navi-entry > li > ul > li{
    line-height: 2;
  }
  #header-area .navi-entry > li > ul > li > a{
    background-image: url("../img/ic_navi_arrow_pc.svg");
    background-repeat: no-repeat;
    background-position: right 7px center;
    display: block;
    padding: 0 50px 0 7px;
		transition: .3s;
  }
	@media (hover: hover) and (pointer: fine){
    #header-area .navi-entry > li > ul > li > a:hover{
      opacity: .7;
    }
  }
  #logo-group{
    margin-right: 1.5625vw;
    margin-left: 2.083vw;
    width: min(7.447916vw,143px);
  }
}
@media screen and (min-width: 1025px) and (max-width: 1480px) {
  #logo-main{
    width: 40%;
    max-width: 156px;
  }
  #logo-main > a{
    background-image: url("../img/logo_main_sp.png");
    padding-bottom: 23.9747%;
  }
}
@media screen and (max-width: 1024px) {
  #header-area{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
  }
  #logo-main{
    margin-left: 2.5%;
    margin-right: 2.5%;
    width: 40%;
    max-width: 156px;
  }
  #logo-main > a{
    background-image: url("../img/logo_main_sp.png");
    padding-bottom: 23.9747%;
  }
  #header-area .navi-entry{
    display: flex;
    margin-left: auto;
  }
  #header-area .navi-entry > li{
    font-size: 1.5rem;
    line-height: 1.5;
    font-weight: 700;
    display: flex;
    text-align: center;
    height: 70px;
    width: 160px;
    position: relative;
  }
  #header-area .navi-entry > li:first-child > a,
  #header-area .navi-entry > li:first-child > span{
    position: relative;
  }
  #header-area .navi-entry > li > a,
  #header-area .navi-entry > li > span{
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 100%;
  }
  #header-area .navi-entry > li.toggle:before{
    background-image: url("../img/bg_navi_balloonl2.svg");
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    display: block;
    height: 15px;
    width: 18px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%,100%);
    opacity: 0;
  }
  #header-area .navi-entry > li.toggle.open:before{
    animation-name: togglefade;
    animation-duration: .5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  #header-area .navi-entry > li.toggle > ul{
    background-color: #FD6925;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .20);
    border-radius: 10px;
    font-size: 1.6rem;
    text-align: left;
    padding: 20px;
    position: fixed;
    left: 8%;
    right: 8%;
    top: 82px;
    opacity: 0;
    pointer-events: none;
  }
  #header-area .navi-entry > li.toggle.open > ul{
    pointer-events: all;
    animation-name: togglefade;
    animation-duration: .3s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  #header-area .navi-entry > li > ul > li{
    line-height: 2;
  }
  #header-area .navi-entry > li > ul > li > a{
    background-image: url("../img/ic_navi_arrow.svg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 30px auto;
    display: block;
  }
  #logo-group{
    display: none;
    margin-right: 5.1282%;
    margin-left: auto;
    width: 20.76923%;
    max-width: 82px;
  }
}
@media screen and (max-width: 780px) {
  #header-area .navi-entry > li{
    font-size: 1rem;
    width: 67px;
  }
  #header-area .navi-entry > li > a,
  #header-area .navi-entry > li > span{
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    width: 100%;
  }
  #header-area .navi-entry > li > a > b,
  #header-area .navi-entry > li > span > b{
    font-size: 1.3rem;
  }
}



/* ------- HUMBERGER ---------------------------------------------- */
#humberger {
	background-color: #0068FE;
	text-align: center;
	cursor: pointer;
  position: relative;
  transition: .3s;
}
#humberger .trigger, #humberger .trigger > span, #humberger .trigger > span > span {
	transition: ease-out .2s;
	box-sizing: border-box;
}
#humberger .trigger{
	position: absolute;
}
#humberger .trigger > span {
	position: absolute;
	right: 0;
	width: 100%;
	height: 1px;
	background-color: #FFF;
}
#humberger .trigger > span:nth-of-type(1) {
	top: 0px;
}
#humberger .trigger > span:nth-of-type(3) {
	bottom: 0;
}
#humberger.active .trigger > span:nth-of-type(2) {
	-webkit-transform: rotate(0);
	transform: rotate(0);
	opacity: 0;
}
@media print, screen and (min-width: 1025px) {
  #humberger{
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  #humberger{
    height: 70px;
    width: 67px;
  }
  #humberger .trigger{
    width: 20px;
    height: 16px;
    right: 24px;
    top: 26px;
  }
  #humberger .trigger > span:nth-of-type(2) {
    top: 7.5px;
  }
  #humberger.active .trigger > span:nth-of-type(1) {
    -webkit-transform: translateY(7.5px) rotate(45deg);
    transform: translateY(7.5px) rotate(45deg);
  }
  #humberger.active .trigger > span:nth-of-type(3) {
    -webkit-transform: translateY(-7.5px) rotate(-45deg);
    transform: translateY(-7.5px) rotate(-45deg);
  }
}


/* ------- NAVI GLOBAL ---------------------------------------------- */
#navi-global > ul > li > div,
#navi-global > ul > li > a{
  cursor: pointer;
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  line-height: 1;
}
#navi-global > ul > li > ul > li{
  color: #FFF;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  white-space: nowrap;
}
@media print, screen and (min-width:1025px) {
  #navi-global{
    margin-right: 1.0416vw;
    margin-left: auto;
    display: block !important;
  }
  #navi-global > ul{
    display: flex;
  }
  #navi-global > ul > li{
    position: relative;
    transition: .8s;
  }
  @media (hover: hover) and (pointer: fine){
    #navi-global > ul > li:hover,
    #navi-global > ul > li:hover{
      color: #275AF7;
    }
  }
  #navi-global > ul > li:nth-child(1) > ul,
  #navi-global > ul > li:nth-child(2) > ul{
    display: none;
  }
  #navi-global > ul > li > div,
  #navi-global > ul > li > a{
    font-size: min(1.3vw,1.8rem);
    display: block;
    padding: 35px 1.0416vw;
  }
  #navi-global > ul > li > ul{
    background-color: #275AF7;
    border-radius: 10px;
    font-size: min(1.3vw,1.8rem);
    padding: 6px 16px 6px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
    transition: .3s;
  }
  #navi-global > ul > li > ul:before{
    background-image: url("../img/bg_navi_balloonl.svg");
    content: "";
    display: block;
    height: 15px;
    width: 18px;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%,-100%);
  }
  #navi-global > ul > li > ul > li{
    border-bottom: 1px dashed rgba(255,255,255,.50);
  }
  #navi-global > ul > li > ul > li > a{
    background-image: url("../img/ic_navi_arrow_pc.svg");
    background-repeat: no-repeat;
    background-position: right 7px center;
    display: block;
    padding: 20px 50px 20px 7px;
    transition: .3s;
  }
  @media (hover: hover) and (pointer: fine){
    #navi-global > ul > li > ul > li > a:hover{
      opacity: .7;
    }
  }
  #navi-global > ul > li > ul > li:last-child{
    border-bottom: none;
  }
  #navi-global > ul > li:hover > ul{
    opacity: 1;
    pointer-events: all;
  }
	
	/* 既存の表示設定を「no-dropdown以外」に限定する */
  #navi-global > ul > li:not(.no-dropdown):hover > ul,
  #navi-global > ul > li:not(.no-dropdown).open > ul {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
  }

  /* SPECIAL, TALK はホバーしても色を変えない、または別設定にする場合 */
  #navi-global > ul > li.no-dropdown > ul {
    display: none !important; /* 強制的に出さない */
  }
}
@media screen and (max-width: 1024px) {
  #navi-global{
    background-color: #0068FE;
    display: none;
    height: calc(100vh - 70px);
    height: calc(100dvh - 70px);
    width: 100%;
    position: fixed;
    left: 0;
    top: 70px;
  }
  #navi-global > ul{
    padding-bottom: 50px;
    width: 100%;
    overflow-y: auto;
  }
  #navi-global > ul > li{
    border-bottom: 1px solid #66A5FF;
    display: flex;
  }
  #navi-global > ul > li > div,
  #navi-global > ul > li > a{
    align-self: center;
    font-size: 1.2rem;
    line-height: 1.66;
    color: #FFF;
    padding-left: 5%;
    width: 25.641%;
  }
  #navi-global > ul > li > ul{
    width: calc(100% - 25.641%);
  }
  #navi-global > ul > li > ul > li{
    font-size: 1.6rem;
    line-height: 1.5;
  }
  #navi-global > ul > li > ul > li > a{
    background-image: url("../img/ic_navi_arrow.svg");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 29px auto;
    border-bottom: 1px solid #66A5FF;
    display: block;
    padding: 20px 24.1379% 20px 0;
  }
  #navi-global > ul > li > ul > li:last-child > a{
    border-bottom: none;
  }
}




/* ------- CONTENTS ---------------------------------------------- */
@media print, screen and (min-width:781px) {
  #contents-area{
    
  }
  .inner{
    margin-left: auto;
    margin-right: auto;
    max-width: 1380px;
    width: 90%;
  }
}
@media screen and (max-width: 780px) {
  .inner{
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }
}



/* ------- FOOTER ---------------------------------------------- */
#footer-area{
  background-color: #FFF;
}
.footer-entry{
  background-image: url("../img/bg_footer_entry.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #FFF;
}
.footer-entry .entry-catch{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  line-height: 1.78;
}
.footer-entry .navi-entry{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.footer-entry .navi-entry > li{
  line-height: 1.6;
}
.footer-entry .navi-entry > li > a{
  background-image: url("../img/ic_navi_arrow.svg");
  background-repeat: no-repeat;
  border: 1px solid #FFF;
  display: block;
  transition: .3s;
}
.footer-main .copyright{
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  display: block;
  text-align: center;
}
#btn-pagetop{
  position: fixed;
  z-index: 98;
}
#btn-pagetop > a{
  background-color: #26BDE2;
  background-image: url("../img/ic_pagetop.svg");
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 50%;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .footer-entry .navi-entry .newgrad:hover {
    border-color: #FD6925;
    background-color: #FD6925;
    box-shadow: 8px 8px 16px rgba(0, 0, 0, .16);
  }
  .footer-entry .navi-entry .career:hover {
    border-color: #26BDE2;
    background-color: #26BDE2;
    box-shadow: 8px 8px 16px rgba(0, 0, 0, .16);
  }
}
@media print, screen and (min-width:1025px) {
  #footer-area{
    margin-top: 180px;
  }
  .footer-entry-inner{
    padding: 110px 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 1380px;
    width: 90%;
  }
  .footer-entry .entry-catch{
    font-size: clamp(1.8rem, -0.808rem + 5.34vw, 3.8rem);
  }
  .footer-entry .navi-entry{
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
  }
  .footer-entry .navi-entry > li{
    font-size: clamp(1.8rem, 0.235rem + 3.21vw, 3rem);
    text-align: center;
    width: 48.55%;
  }
  .footer-entry .navi-entry > li > a{
    background-position: right 30px center;
    border-radius: 20px;
    padding: 70px 90px;
  }
  .footer-main{
    padding: 80px 0 100px;
  }
  .footer-main .logo-footer{
    margin-left: auto;
    margin-right: auto;
    width: 260px;
  }
  .footer-main .copyright{
    font-size: clamp(1rem, 0.739rem + 0.53vw, 1.2rem);
    margin-top: 30px;
  }
  #btn-pagetop{
    width: 80px;
    right: 30px;
  }
  #btn-pagetop > a{
    bottom: 30px;
    height: 80px;
  }
}
@media screen and (max-width: 1024px) {
  #footer-area{
    margin-top: 90px;
  }
  .footer-entry-inner{
    padding: 50px 0;
  }
  .footer-entry .entry-catch{
    font-size: clamp(1.8rem, 1.2rem + 2.46vw, 2.4rem);
  }
  .footer-entry .navi-entry{
    margin: 30px 5% 0;
  }
  .footer-entry .navi-entry > li{
    font-size: clamp(1.6rem, 1rem + 2.46vw, 2.2rem);
    margin-top: 20px;
  }
  .footer-entry .navi-entry > li > a{
    background-position: right 20px center;
    background-size: 30px auto;
    border-radius: 20px;
    padding: 35px 70px 35px 20px;
  }
  .footer-main{
    padding: 30px 0 90px;
  }
  .footer-main .logo-footer{
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    max-width: 143px;
  }
  .footer-main .copyright{
    font-size: clamp(0.8rem, 0.6rem + 1.23vw, 0.9rem);
    margin-top: 20px;
  }
  #btn-pagetop{
    width: 50px;
    right: 15px;
  }
  #btn-pagetop > a{
    background-size: 20px auto;
    height: 50px;
  }
}



/* ------- COMMON ---------------------------------------------- */
.indent-list > li,
.note-list > li{
  text-indent: -1em;
  padding-left: 1em;
}


.box-corners{
  background-color: #FFF;
}
.info-list > div > dt{
  font-weight: 400;
}


a.mail-link{
  color: #275AF7;
  display: flex;
  align-items: center;
  margin-top: 10px;
  transition: .3s;
}
a.mail-link:before{
  content: "\e158";
  font-family: "Material Symbols Outlined";
  font-variation-settings:
  'FILL' 0,
  'wght' 300,
  'GRAD' 0,
  'opsz' 20;
  font-size: 2.6rem;
  line-height: 1;
  display: block;
  margin-right: 10px;
}
@media (hover: hover) and (pointer: fine){
  a.mail-link:hover{
    color: #26BDE2;
  }
}

/* PAGE HEADING */
.page-heading .en{
  color: #275AF7;
  font-weight: 700;
  line-height: 1.4;
}
.page-heading .jp{
  font-weight: 500;
  line-height: 1.4;
}

.heading-text{
  font-weight: 500;
}
@media print, screen and (min-width:1025px) {
  .note-list > li{
    font-size: 1.3rem;
  }
  
  
  
  
  .box-corners{
    border-radius: 30px;
    margin-top: 90px;
    padding: 6%;
  }
  .info-list > div{
    display: flex;
    justify-content: space-between;
  }
  .info-list > div > dt,
  .info-list > div > dd{
    border-bottom: 1px solid #C6C6C6;
    padding: 30px 10px;
  }
  .info-list > div:first-child > dt,
  .info-list > div:first-child > dd{
    padding-top: 0;
  }
  .info-list > div:last-child > dt,
  .info-list > div:last-child > dd{
    border-bottom: none;
    padding-bottom: 0;
  }
  .info-list > div > dt{
    display: flex;
    align-items: center;
    width: 200px;
  }
  .info-list > div > dd{
    width: calc(100% - 200px - 30px);
  }
  
  
  
  /* PAGE HEADING */
  .page-heading{
    margin-top: 95px;
  }
  .page-heading .en{
    font-size: clamp(1.4rem, 1.142rem + 0.72vw, 2rem);
  }
  .page-heading .jp{
    font-size: clamp(2.8rem, 1.368rem + 2.86vw, 4.8rem);
    margin-top: 20px;
  }
  
  
  .heading-text{
    font-size: clamp(1.8rem, 0.855rem + 1.79vw, 2.4rem);
    margin-top: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .note-list > li{
    font-size: 1.3rem;
  }
  
  
  
  
  .box-corners{
    border-radius: 10px;
    margin-top: 30px;
    padding: 5%;
  }
  .info-list > div > dt{
    color: #0068FE;
    padding-top: 25px;
  }
  .info-list > div:first-child > dt{
    padding-top: 0;
  }
  .info-list > div > dd{
    border-bottom: 1px solid #C6C6C6;
    margin-top: 15px;
    padding-bottom: 25px;
  }
  .info-list > div:last-child > dd{
    border-bottom: none;
    padding-bottom: 0;
  }
  
  
  
  /* PAGE HEADING */
  .page-heading{
    margin-top: 40px;
  }
  .page-heading .en{
    font-size: clamp(1.4rem, 1rem + 1.64vw, 1.8rem);
  }
  .page-heading .jp{
    font-size: clamp(2rem, 1rem + 4.1vw, 3rem);
    margin-top: 15px;
  }
  
  .heading-text{
    font-size: 1.8rem;
    margin-top: 40px;
  }
}



.page-list{
  counter-reset: number 0;
}
.page-item .image{
  overflow: hidden;
  position: relative;
}
.page-item .image:before{
  background-image: url("../img/ic_navi_arrow.svg");
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
}
.page-item .ttl{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  display: flex;
  align-items: center;
}
.page-item .ttl > div{
  display: flex;
  flex-direction: column;
}
.page-item .ttl:before{
  color: #26BDE2;
  counter-increment: number 1;
  content: counter(number,decimal-leading-zero);
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  line-height: 1;
}
@media print, screen and (min-width:1025px) {
  .page-list{
    display: flex;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    margin-top: 165px;
    width: 89.5833%;
  }
  .page-item{
    margin-right: 3.48837333%;
    width: 22.38372%;
  }
  .page-item:nth-child(4n){
    margin-right: 0;
  }
  .page-item .image{
    border-radius: 15px;
  }
  .page-item .image:before{
    height: 40px;
    width: 40px;
    right: 20px;
    bottom: 20px;
  }
  .page-item .image img{
    transition: .5s;
  }
  @media (hover: hover) and (pointer: fine){
    .page-item:hover .image img{
      transform: scale(1.04);
    }
  }
  .page-item .ttl{
    font-size: clamp(1.4rem, 0.943rem + 0.71vw, 1.8rem);
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 25px;
  }
  .page-item .ttl:before{
    font-size: clamp(2rem, -0.286rem + 3.57vw, 4rem);
    margin-right: 15px;
  }
  .page-item .ttl > div > span{
    font-size: clamp(1.2rem, 0.809rem + 0.8vw, 1.5rem);
  }
}
@media screen and (max-width: 1024px) {
  .page-list{
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
    width: 90%;
  }
  .page-item:nth-child(n + 2){
    margin-top: 50px;
  }
  .page-item .image{
    border-radius: 10px;
  }
  .page-item .image:before{
    height: 30px;
    width: 30px;
    right: 15px;
    bottom: 15px;
  }
  .page-item .ttl{
    font-size: 1.6rem;
    margin-top: 20px;
  }
  .page-item .ttl:before{
    font-size: 4.0rem;
    margin-right: 15px;
  }
  .page-item .ttl > div > span{
    font-size: 1.3rem;
  }
}





/* ------- ANIMATION PARTS ---------------------------------------------- */
.fade-in {
  opacity: 0;
  transition-duration: 1s;
  transition-property: opacity, transform;
}
.fade-in-up {
  transform: translate(0, 30px);
}

.fade-in-down {
  transform: translate(0, -30px);
}

.fade-in-left {
  transform: translate(-30px, 0);
}

.fade-in-right {
  transform: translate(30px, 0);
}
.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}
