@charset "UTF-8";
:root{
  --main-width: 1024px;
  --default-fontfamily: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  /*-----header-----*/
  --header-z-index: 1000;
  --header-height: 90px;
  --header-nav-bgcolor: rgba(0, 0, 0, 0.3);
  --header-font: 'Quicksand', sans-serif;
  --header-font-size: 22px;
  --header-font-color: #fff;
  --header-hover-bar: 100px;
}
*,
*::before,
*::after{
  box-sizing: border-box;
}
html{
  font-size: 62.5%;
}
body{
  font-family: var(--default-fontfamily);
}
a{
  text-decoration: none;
  cursor: pointer;
}
.forsp{
  display: none;
}

/*-----header-----*/
header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: var(--header-z-index);
}
header .header-bar{
  display: flex;
  justify-content: space-between;
  align-items: center;

  height: var(--header-height);
  padding: 0 5%;

  background-color: var(--header-nav-bgcolor);
}
header .logo{
  width: auto;
  height: var(--header-height);
}
header input[type="checkbox"]{
  display: none;
}
header .hum-label{
  position: fixed;
  top:15px;
  right: 8%;
  z-index: 1002;

  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  padding: 20px 5px;

  font-size: 40px;
  color: #fff;

  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
  border: solid 2px #aaa;
  border-radius: 8%;

  transition: 0.2s all;
}
#humbtn:checked ~ .hum-label{
  border: solid 3px #aaa;
  border-radius: 50%;
}
.hum-label span,
.hum-label span::before,
.hum-label span::after{
  content: '';
  display: block;
  height: 4px;
  width: 40px;
  border-radius: 4px;
  background-color: #ffffff;
  position: absolute;

  transition: 0.3s all;
}
#humbtn:checked ~ .hum-label span{
  background-color: transparent;
}
.hum-label span::before{
  top: -12px;
}
#humbtn:checked ~ .hum-label span::before{
  top: 0;
  transform: rotate(45deg);
}
.hum-label span::after{
  top: 12px;
}
#humbtn:checked  ~ .hum-label span::after{
  top: 0;
  transform: rotate(-45deg);
}

/*-----フルスクリーンナビゲーション-----*/
.globalmenu-wrap{
  position: fixed;
  z-index: 1001;
  top:0;
  left:0;

  width: 100%;
  height: 100vh;

  display: none;
}
#humbtn:checked ~ .globalmenu-wrap{
  display: block;
}
.globalmenu{
  position: relative;

  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #1C2321;
}
.globalmenu nav{
  padding-left: 10%;
}
.globalmenu nav > ul{
  display: flex;
  flex-direction: column;
  gap: 24px;

  color: #ccc;
  font-size: 40px;
  line-height: 56px;
  font-family: var(--header-font);
  font-weight: 400;
  letter-spacing: 5px;
  text-shadow: 0px 0px 10px rgba(5,5,5,0.3);
  text-transform: uppercase;
}
.globalmenu nav a{
  color: #ccc;
}
/*-----メニューホバーアニメーション-----*/
.globalmenu nav a,
.globalmenu nav .menu-child a{
  position: relative;
}
.globalmenu nav a::after,
.globalmenu nav .menu-child a::after{
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;

  background: linear-gradient(90deg, rgb(255, 1, 81) 0%, rgb(0, 213, 255) 100%);
  background-size: 200% 200%;

  transition: 0.3s ease-in-out;

  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s;
}
.globalmenu nav a:hover::after,
.globalmenu nav .menu-child a:hover::after{
  transform: scaleX(1);
  transform-origin: left center;
}
/*-----子メニュー-----*/
.menu-child{
  font-size: 24px;
  line-height: 40px;
  padding-left: 4rem;
}
/*-----子メニューattr-----*/
.menu-child::after{
  content: attr(data-text);
  padding-left: 10px;

  font-size: 14px;
  color: #746F72;
  letter-spacing: 2px;
  opacity: 0.7;
}
.globalmenu nav .menu-child a{
  color: #888;
}
/*-----one用-----*/
.fontcolor-orange{
  color: coral;
  font-weight: 700;
}

/*hero*/
#hero{
  position: relative;
  width: 100%;
  height: 100vh;
}
#hero .bg{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}


/*footer*/
footer{
  display: flex;
  flex-direction: column;
  align-items: center;

  width: 100%;
  padding: 32px 0px 0px;

  background: linear-gradient(to bottom, #232b29, #1C2321);

  --padding-footer-horizon: 80px;
  --color-footer-nav-title: #F4F4F9;
  --color-footer-nav-item: #D8D8D8;
}
footer a{
  color: #fff;
}
footer .logo{
  width: 150px;
  height: auto;
  margin-bottom: 50px;
}
footer nav{
  display: flex;
  gap: 50px;

  width: 100%;
  max-width: 1300px;
  padding: 0px 32px 48px;
}
nav .column{
  min-width: 200px;
}
nav .column .title{
  display: inline-block;
  margin-bottom: 16px;

  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-footer-nav-title);
}
nav .column .colorbar{
  width: 50px;
  height: 4px;
  margin-bottom: 24px;

  background-color: #E3170A;
}
nav .column ul{
  display: flex;
  flex-direction: column;
  gap: 24px;

  padding-left: 0.8rem;

  font-size: 1.6rem;
}
nav .column ul a{
  color: var(--color-footer-nav-item);
}
nav .column ul a::after{
  content: attr(data-text);
  padding-left: 1rem;

  font-size: 1.4rem;
  color: #746F72;
  opacity: 0.7;
}

footer .copyright-band{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  width: 100%;
  padding: 30px var(--padding-footer-horizon);

  font-size: 1.6rem;
  color: var(--color-footer-nav-item);
  background-color: #1C2321;
}
footer .copyright-band .snsicon{
  display: flex;
  gap: 10px;

  font-size: 1.6rem;
}
footer .copyright-band .snsicon a{
  font-size: 3.5rem;
  color: #fff;
}
footer .copyright-band .copyright{
  float: right;
}

.fadeUpTrigger,
.fadeLeftTrigger{
  opacity: 0;
}

.fadeUp{
  animation-name:fadeUpAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
}
@keyframes fadeUpAnime{
  from {
      opacity: 0;
    transform: translateY(100px);
  }
  
  to {
      opacity: 1;
    transform: translateY(0);
  }
}

.fadeLeft{
  animation-name:fadeLeftAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
}
@keyframes fadeLeftAnime{
  from {
      opacity: 0;
    transform: translateX(100px);
  }
  
  to {
      opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width:1080px){
  footer nav{
    flex-wrap: wrap;
    width: 100%;
  }
}
@media (max-width:599px){
  body{
    background-size: 200%;
  }
  .forsp{
    display: block;
  }
  #hero{
    height: 100vh;
    height: calc(var(--spvh, vh) * 100);
  }
  .globalmenu nav {
    padding-left: 5%;
}
  .globalmenu nav > ul{
    gap: 12px;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 3px;
  }
  .menu-child{
    font-size: 16px;
    line-height: 32px;
    padding-left: 10px;
  }
  .menu-child::after{
    padding-left: 5px;
  
    font-size: 12px;
    letter-spacing: 1px;
  }
  footer nav{
    display: flex;
    flex-direction: column;
    gap: 50px;
  
    padding: 0px 32px 48px;
  }
}