@charset "UTF-8";

/*++++++++++++ body ++++++++++++*/
body {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 10px !important;
  color: #000;
  /*overflow: hidden;*/
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}
a {
  display: inline-block;
  width: 100%;
  text-decoration: none !important;
  margin: 0;
  padding: 0;
  border: 0;
}
img {
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}
h1,h2,h3,h4,h5 {
  margin: 0;
  padding: 0;
  border: 0;
}
p {
  margin: 0;
  padding: 0;
  border: 0;
  line-height: 1em;
}

/*++++++++++++ FONT ++++++++++++*/

/*----- AG_Gothic -----*/
.N_Sans_light {
font-family: noto-sans, sans-serif;
font-weight: 300;
font-style: normal;
}

.N_Sans_medium {
font-family: noto-sans, sans-serif;
font-weight: 500;
font-style: normal;
}

.N_Sans_bold {
font-family: noto-sans, sans-serif;
font-weight: 700;
font-style: normal;
}

/*----- AG_Gothic -----*/
.AG_Gothic {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.AG_Gothic_m {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.AG_Gothic_b {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
}



/*++++++++++++++++++*/
/*++              ++*/
/*++++++++++++++++++*/



/*++++++++++++ ローディング ++++++++++++*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999999;
  text-align:center;
  color:#fff;
}

#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

#splash-logo .t_a {
  display: inline-block;
  font-size: 5em;
  animation-name: txtanime_A;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  /*margin-right: 30%;*/
}
@keyframes txtanime_A {
  0% {
    margin-right: 25%;
    opacity: 0;
  }
  77% {
    margin-right: -1%;
    opacity: 1;
  }
  100% {
    margin-right: 0%;
    opacity: 1;
  }
}

#splash-logo .t_s {
  display: inline-block;
  font-size: 5em;
  margin: 0 auto;
}

#splash-logo .t_g {
  display: inline-block;
  font-size: 5em;
  animation-name: txtanime_G;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  /*margin-left: 30%;*/
}
@keyframes txtanime_G {
  0% {
    margin-left: 25%;
    opacity: 0;
  }
  77% {
    margin-left: -1%;
    opacity: 1;
  }
  100% {
    margin-left: 0%;
    opacity: 1;
  }
}

/*========= 画面遷移のためのCSS ===============*/

/*画面遷移アニメーション*/
.splashbg{
    display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg{
  display: block;
  content: "";
  position:fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transform: scaleY(0);
  background-color: #000;/*伸びる背景色の設定*/
  animation-name:PageAnime;
  animation-duration:1.2s;
  animation-timing-function:ease-in-out;
  animation-fill-mode:forwards;

}

@keyframes PageAnime{
  0% {
    transform-origin:bottom;
    transform:scaleY(0);
  }
  50% {
    transform-origin:bottom;
    transform:scaleY(1);
  }
  50.001% {
    transform-origin:top;
  }
  100% {
    transform-origin:top;
    transform:scaleY(0);
  }
}

/*画面遷移の後現れるコンテンツ設定*/

#container{
  opacity: 0;/*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container{
  animation-name:PageAnimeAppear;
  animation-duration:1s;
  animation-delay: 0.8s;
  animation-fill-mode:forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear{
  0% {
  opacity: 0;
  }
  100% {
  opacity: 1;
  }
}

@media screen and (max-width: 428px) {
  #splash-logo .t_a {
    display: inline-block;
    font-size: 3.8em;
  }
  @keyframes txtanime_A {
    0% {
      margin-right: 25%;
      opacity: 0;
    }
    77% {
      margin-right: -2.6%;
      opacity: 1;
    }
    100% {
      margin-right: 0%;
      opacity: 1;
    }
  }

  #splash-logo .t_s {
    display: inline-block;
    font-size: 3.8em;
    margin: 0 auto;
  }

  #splash-logo .t_g {
    display: inline-block;
    font-size: 3.8em;
  }
  @keyframes txtanime_G {
    0% {
      margin-left: 25%;
      opacity: 0;
    }
    77% {
      margin-left: -2.6%;
      opacity: 1;
    }
    100% {
      margin-left: 0%;
      opacity: 1;
    }
  }
}

/*++++++++++++++++++*/
/*++              ++*/
/*++++++++++++++++++*/



/*++++++++++++ .pc-none ++++++++++++*/
.pc-none {
  display: none;
}
@media screen and (max-width: 428px) {
  .pc-none {
    display: block;
  }
  .sp-none {
    display: none;
  }
}

br.sp {
  display: none;
}
@media screen and (max-width: 428px) {
  br.sp {
    display: block;
  }
  br.sp_no {
    display: none;
  }
}



/*++++++++++++++++++*/
/*++              ++*/
/*++++++++++++++++++*/



/*++++++++++++ .TF テキストモーション ++++++++++++*/
.TF {}
.TF span.smoothText {
  overflow: hidden;
  display: block;
}

/* アニメーションで傾斜がついている文字列を水平に戻す*/
.TF span.smoothTextTrigger{
  transition: .7s ease-in-out;
  transform: translate3d(0,100%,0) skewY(12deg);
  transform-origin: left;
  display: block;
}
.TF span.smoothTextTrigger.smoothTextAppear{
    transform: translate3d(0,0,0) skewY(0);
}

@media screen and (max-width: 428px) {}



/*++++++++++++++++++*/
/*++              ++*/
/*++++++++++++++++++*/



/*++++++++++++ .page-container ++++++++++++*/
header#H_area {}
#H_area .N_box {
  position: relative;
  padding: 22px 0;
}
#H_area .N_box .logo {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translate(-50%, -50%);
  width: 4.5%;
}
#H_area .N_box .logo a {}
#H_area .N_box .h_navigation {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12%;
  width: 50%;
  margin: 0 auto;
}
#H_area .N_box .h_navigation .navi {}
#H_area .N_box .h_navigation .navi a {
  font-size: 1.4em;
  color: #000;
  transition: all .3s;
}
#H_area .N_box .h_navigation .navi a:hover {
  color: #8b8a8a;
}

/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn{
  /*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
  /*position: relative;
  cursor: pointer;
  width: 50px;
  height:50px;
  border-radius: 5px;*/
  position: fixed;
  z-index: 9999;
  top: 7px;
  right: 10px;
  cursor: pointer;
  width: 70px;
  height: 50px;
}

/*ボタン内側*/
.openbtn span{
  display: inline-block;
  transition: all .4s;/*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 2px;
  /*border-radius: 2px;*/
  background: #000;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top:15px;
}

.openbtn span:nth-of-type(2) {
  top:23px;
}

.openbtn span:nth-of-type(3) {
  top:31px;
}

/*activeクラスが付与されると線が回転して×に*/

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
  background: #fff;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;/*真ん中の線は透過*/
  background: #fff;
}

.openbtn.active span:nth-of-type(3){
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
  background: #fff;
}

#g-nav {
  position: fixed;
  z-index: 999;
  top: -100%;
  left: 0;
  /*right: -100%;*/
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, .9);
  transition: all 0.6s;
}

#g-nav.panelactive {
  top: 0;
}

#g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#g-nav ul {
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10%;
}
#g-nav li {
  list-style: none;
  text-align: center;
  width: 40%;
  margin-top: 25px;
}
#g-nav li a {
  color: #fff;
  font-size: 3em;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  border-bottom: solid 1px #fff;
  padding-bottom: 25px;
  transition: all .5s;
}
#g-nav li a:hover {
  color: #9b9a9a;
  border-bottom: solid 1px #9b9a9a;
}


@media screen and (max-width: 428px) {
  #H_area .N_box {
    position: relative;
    padding: 0;
    height: 56px;
  }
  #H_area .N_box .logo {
    position: absolute;
    top: 53%;
    left: 3%;
    transform: translate(0%, -50%);
    width: 15%;
  }
  #H_area .N_box .logo a {}
  #H_area .N_box .h_navigation {
    display: none;
  }
  #H_area .N_box .h_navigation .navi {}
  #H_area .N_box .h_navigation .navi a {
    font-size: 1.4em;
    color: #000;
  }
  #H_area .N_box .h_navigation .navi a:hover {
    color: #8b8a8a;
  }

  /*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
  .openbtn{
    /*ボタン内側の基点となるためrelativeを指定。
  追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
    /*position: relative;
    cursor: pointer;
    width: 50px;
    height:50px;
    border-radius: 5px;*/
    position: fixed;
    z-index: 9999;
    top: 5px;
    right: 3%;
    cursor: pointer;
    width: 8%;
    height: 50px;
  }

  /*ボタン内側*/
  .openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 0;
    height: 2px;
    /*border-radius: 2px;*/
    background: #000;
    width: 100%;
  }

  .openbtn span:nth-of-type(1) {
    top:15px;
  }

  .openbtn span:nth-of-type(2) {
    top:23px;
  }

  .openbtn span:nth-of-type(3) {
    top:31px;
  }

  /*activeクラスが付与されると線が回転して×に*/

  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 0;
    transform: translateY(6px) rotate(-45deg);
    width: 70%;
    background: #fff;
  }

  .openbtn.active span:nth-of-type(2) {
    opacity: 0;/*真ん中の線は透過*/
    background: #fff;
  }

  .openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 0;
    transform: translateY(-6px) rotate(45deg);
    width: 70%;
    background: #fff;
  }

  #g-nav {
    position: fixed;
    z-index: 999;
    top: -130%;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .9);
    transition: all 0.6s;
  }

  #g-nav.panelactive {
    top: 0;
  }

  #g-nav.panelactive #g-nav-list {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  #g-nav ul {
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -58%);
    width: 90%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10%;
    padding: 0;
    box-sizing: border-box;
    border-top: solid 1px #fff;
  }
  #g-nav li {
    list-style: none;
    text-align: center;
    width: 100%;
    margin-top: 15px;
  }
  #g-nav li a {
    color: #fff;
    font-size: 2.5em;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    border-bottom: solid 1px #fff;
    padding-bottom: 25px;
    transition: all .5s;
    box-sizing: border-box;
  }
  #g-nav li a:hover {
    color: #2FCE2F;
    border-bottom: solid 1px #2FCE2F;
  }
}


/*++++++++++++++++++*/
/*++      END     ++*/
/*++++++++++++++++++*/