@charset "UTF-8";
body {
  line-height: 1.5;
  color: #333;
  font-family: "Noto Sans JP", "游ゴシック", "sans-serif";
  background: #F8FBFF;
	overflow-x: hidden;
}
/*--------------------------------------
base setting
--------------------------------------*/
a {
  color: #333;
  text-decoration: none;
  outline: none;
}
a:hover {
  color: #BBAF01;
}
img {
  max-width: 100%;
  height: auto;
  border: none;
}
/*--------------------------------------
utility class
--------------------------------------*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #001A2C;
  text-align: center;
  color: #fff;
}
/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 300px;
}
/* fadeUpをするアイコンの動き */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*--------------------------------------
btn
--------------------------------------*/
.openbtn {
  position: relative;
  cursor: pointer;
  width: 80px;
  height: 50px;
  display: block;
  z-index: 9999;
  pointer-events: auto;
}
.openbtn span {
  display: inline-block;
  transition: all.4s;
  position: absolute;
  left: 14px;
  height: 2px;
  background: #333333;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top: 11px;
}
.openbtn span:nth-of-type(2) {
  top: 23px;
}
.openbtn span:nth-of-type(3) {
  top: 35px;
}
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
@media (max-width: 768px) {
  .openbtn {
    position: absolute;
    right: 17px;
    top: 21px;
  }
}
@media (max-width: 480px) {
  .openbtn {
    right: 12px;
    width: 65px;
    top: 13px;
  }
  .openbtn span:nth-of-type(1) {
    top: 12px;
  }
  .openbtn span:nth-of-type(3) {
    top: 35px;
  }
}
/*========= ぼかしのためのCSS ===============*/
.mainblur {
  filter: blur(8px);
}
/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position: fixed;
  opacity: 0; /*はじめは透過0*/
  /*ナビの位置と形状*/
  top: 0;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: rgba(255, 255, 255, 0.8);
  /*動き*/
  transition: all 0.3s;
}
/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
  opacity: 1;
  pointer-events: auto;
}
/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  width: 100%;
  height: 100vh; /*表示する高さ*/
}
.target.is-hidden {
  display: none;
}
/*ナビゲーション*/
/*リストのレイアウト設定*/
.nav-inner {
  display: grid;
  align-content: center;
  margin: auto;
  padding: 130px 80px 0 80px;
}
.nav-group {
  display: flex;
  justify-content: space-between;
}
.nav-group a {
  transition: all 0.5s ease;
}
.nav-label {
	font-weight: 500;
}
.nav-list__item1 {
  border-bottom: 1px solid;
  padding-bottom: 5px;
	font-weight: 500;
}
.nav-list__item2 {
  border-bottom: 1px solid;
  padding: 25px 0 5px;
	font-weight: 500;
}
.nav-list__item3 {
  border-bottom: 1px solid;
  padding: 25px 0 5px;
	font-weight: 500;
}
.nav-list__item4 {
  border-bottom: 1px solid;
  padding: 25px 0 5px;
	font-weight: 500;
}
.nav-list-child__wrap {
  border-top: 1px solid;
  margin-top: 5px;
  width: 100%;
}
.nav-list__child {
  margin-top: 15px;
  font-size: 1.5vw;
	font-weight: 500;
}
.nav-cv {
  display: flex;
  margin-top: 100px;
  justify-content: center;
}
.nav-cv__account {
  margin-top: 16px;
  margin-left: 100px;
}
.nav-cv__account-link {
  transition: all 0.5s ease;
  font-size: 20px;
  box-sizing: border-box;
  display: flex;
}
.nav-cv__account-ico {
  height: 30px;
  width: 30px;
  margin-right: 14px;
}
.nav-list {
  width: 28%;
  margin-top: 30px;
  font-size: 2vw;
}
.nav-list span {
  margin-left: 18px;
  font-size: 1.2vw;
	font-weight: 500;
}
@media (max-width: 790px) {
  .nav-inner {
    padding: 110px 80px 0 80px;
  }
  .nav-group {
    display: block;
    margin-top: 20px;
  }
  .nav-list {
    margin-top: 0;
    font-size: 20px;
    width: 100%;
  }
  .nav-list__item2 {
    padding: 8px 0 5px;
  }
  .nav-list__item3 {
    padding: 8px 0 5px;
  }
  .nav-group {
    width: 100%;
  }
  .nav-list span {
    font-size: 14px;
  }
  .nav-list__child {
    font-size: 16px;
    margin-top: 8px;
  }
  .nav-list__item {
    padding: 5px 0 5px;
  }
  .nav-cv {
    display: block;
    margin: 25px auto 0;
  }
  .nav-cv__account {
    margin-top: 20px;
  }
  .experience-btn__link {
    font-size: 18px;
  }
  .tortuga-logo {
    height: 33px;
    width: 40px;
  }
  .nav-cv__account-link {
    font-size: 18px;
    justify-content: center;
  }
  .nav-cv__account {
    margin-top: 20px;
    margin-left: 0;
  }
  .nav-cv__account-ico {
    height: 30px;
    width: 30px;
    margin: -2px 14px 0 0px;
  }
  .nav-label {
    position: relative;
    display: block;
    cursor: pointer;
  }
  .nav-label::after {
    position: absolute;
    top: 50%;
    right: 0px;
    height: 100%;
    width: 40px;
    transform: translateY(-50%) rotate(0deg);
    color: #333;
    text-align: center;
    font-size: 1.5rem;
    content: '+';
  }
  .nav-list-child__wrap {
    height: 0;
    overflow: hidden;
    transition: all .5s;
    margin: 8px 0 5px;
  }
  .accordion-check:checked ~ .nav-list-child__wrap {
    height: auto;
    opacity: 1;
    padding-bottom: 5px;
  }
  .accordion-check:checked + .nav-label:after {
    transform: translateY(-50%) rotate(45deg);
  }
}
@media (max-width: 480px) {
  .nav-inner {
    padding: 90px 50px 0 50px;
  }
  .header-area-btn {
    min-width: 276px;
  }
}
.wrapper {
  max-width: 1920px;
  min-width: 375px;
  margin: 0 auto;
	overflow-x: hidden;
}

:root{
	scroll-padding: 100px;
	scroll-behavior: smooth;
}