@font-face {
  font-family: "anton";
  src: url("../font/Anton-Regular.ttf");
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
}

.active-fade-left {
  transition: 1s ease;
  opacity: 1;
  transform: translateX(0);
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
}

.active-fade-up {
  transition: 1s ease;
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 835px) {
  .fade-left {
    opacity: 0;
    transform: translateX(-5.128vw);
  }

  .active-fade-left {
    opacity: 1;
    transform: translateX(0);
  }

  .fade-up {
    opacity: 0;
    transform: translateY(5.128vw);
  }

  .active-fade-up {
    opacity: 1;
    transform: translateY(0);
  }
}

/* リキャプチャの削除 */
.grecaptcha-badge {
  visibility: hidden;
}

.scrollLock {
  overflow: hidden !important;
}

.pc-none {
  display: none;
}

.sp-none {
  display: block;
}

html {
  scroll-behavior: smooth;
}

header {
  width: 100%;
  position: fixed;
  background: rgba(14, 11, 32, 0.8);
  backdrop-filter: blur(10px);
  z-index: 5;
  transition: 0.3s ease-in-out;
}

.header-wrapper {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 15px 40px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

.header-wrapper > a {
  display: block;
  width: 153px;
}

.header-wrapper > a > img {
  width: 100%;
  height: auto;
}

.header-wrapper > nav {
  width: 850px;
}

.header-nav-list {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}

.header-nav-list > li > a,
.footer-nav-list > li > a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  line-height: 24px;
  position: relative;
  display: block;
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.header-nav-list > li > a::before,
.footer-nav-list > li > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.header-nav-list > li > a:hover,
.footer-nav-list > li > a:hover {
  color: #fff;
}

.header-nav-list > li > a:hover::before,
.footer-nav-list > li > a:hover::before {
  transform: scaleX(1);
}

.transparent {
  background-color: transparent !important;
}

footer {
  width: 100%;
  background: #0e0b21;
}

.footer-wrapper {
  width: 100%;
  padding: 40px 70px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 60px;
  margin: 0 auto;
}

.footer-wrapper > a {
  width: 135px;
  display: block;
  margin-right: auto;
}

.footer-wrapper > a > img {
  width: 100%;
  height: auto;
}

.footer-wrapper > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 50px;
}

.footer-nav-list {
  display: flex;
  flex-direction: row;
  width: 700px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 40px;
  row-gap: 20px;
}

.sns-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 210px;
}

.sns-list > a {
  display: block;
}

.sns-list > a > img {
  width: auto;
  height: 40px;
}

.footer-wrapper small {
  color: #fff;
  font-size: 15px;
  line-height: 20px;
  font-family: "industry", sans-serif;
  font-weight: 500;
  font-style: normal;
}

/* 下層ページ タイトル */
.under-page_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 7px;
}

.under-page_title > h1 {
  color: #696969;
  font-family: "industry", sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 50px;
  padding-bottom: 5px;
}

.under-page_title > p {
  color: #7a7a7a;
  font-size: 20px;
  line-height: 30px;
}

@media screen and (min-width: 836px) and (max-width: 1440px) {
  .pc-none {
    display: none;
  }

  .header-wrapper {
    padding: 1.04vw 2.778vw;
  }

  .header-wrapper > a {
    width: 10.625vw;
  }

  .header-wrapper > nav {
    width: 59.028vw;
  }

  .header-nav-list > li > a,
  .footer-nav-list > li > a {
    font-size: 1.389vw;
    line-height: 1.667vw;
  }

  .header-nav-list > li > a::before,
  .footer-nav-list > li > a::before {
    height: 1px;
  }

  .footer-wrapper {
    padding: 2.778vw 4.861vw;
    row-gap: 4.167vw;
  }

  .footer-wrapper > a {
    width: 9.375vw;
  }

  .footer-wrapper > div {
    row-gap: 3.472vw;
  }

  .footer-nav-list {
    width: 48.611vw;
    column-gap: 2.778vw;
    row-gap: 1.389vw;
  }

  .sns-list {
    width: 14.583vw;
  }

  .sns-list > a > img {
    width: auto;
    height: 2.78vw;
  }

  .footer-wrapper small {
    font-size: 1.042vw;
    line-height: 1.389vw;
  }

  /* 下層ページ タイトル */
  .under-page_title {
    row-gap: 0.486vw;
  }

  .under-page_title > h1 {
    font-size: 2.778vw;
    line-height: 3.472vw;
    padding-bottom: 0.347vw;
  }

  .under-page_title > p {
    font-size: 1.389vw;
    line-height: 2.083vw;
  }
}

@media screen and (max-width: 835px) {
  .pc-none {
    display: block;
  }

  .sp-none {
    display: none;
  }

  /* header */
  /* -------------------------------- */
  .mobile-none {
    display: none !important;
  }

  .header-wrapper-sp {
    width: fit-content;
    display: block;
  }

  .header-logo-sp {
    position: fixed;
    padding: 4.103vw 2.564vw;
    z-index: 5;
  }

  .header-logo-sp img {
    width: 38.462vw;
  }

  #headerlogoSp1 {
    display: block;
  }

  #headerlogoSp2 {
    display: none;
  }

  .headerlogo-none {
    display: none !important;
  }

  .headerlogo-block {
    display: block !important;
  }

  .hamburger-menu {
    width: fit-content;
    padding: 4.615vw;
    background-color: #0e0b21;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 10;
    border-radius: 0 0 0 5.128vw;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
  }

  .hamburger-menu-inner {
    display: block;
    position: relative;
    width: 6.41vw;
    height: 6.41vw;
    padding: 0;
  }

  .hamburger-menu span:first-of-type {
    display: block;
    height: 1.026vw;
    width: 1.026vw;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.4s;
  }

  .hamburger-menu span:nth-of-type(2) {
    display: block;
    height: 0.513vw;
    width: 100%;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .hamburger-menu span:last-of-type {
    display: block;
    height: 1.026vw;
    width: 1.026vw;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
    transition: 0.4s;
  }

  .header-nav-list-sp {
    opacity: 0;
    visibility: hidden;
    transition: 0.4s linear;
  }

  .header-nav-list-sp-active {
    opacity: 1;
    visibility: visible;
    transition: 0.4s linear;
  }

  .hamburger-animation1 {
    transform: translateX(21px);
  }

  .hamburger-animation2 {
    transform: translateX(-21px);
  }

  .header-nav-list-sp {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(32, 30, 44, 0.95);
  }

  .header-nav-list-sp > ul {
    margin-top: 25.641vw;
    margin-left: 7.692vw;
    display: flex;
    flex-direction: column;
    row-gap: 7.692vw;
  }

  .header-nav-list-sp > ul > li > a {
    font-family: "industry", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #fff;
    font-size: 5.641vw;
  }

  .footer-nav-list > li > a {
    font-size: 5.13vw;
    line-height: 6.92vw;
  }

  .footer-nav-list > li > a::before {
    height: 1px;
  }

  /* footer */
  /* -------------------------------- */
  footer {
    width: 100vw;
  }

  .footer-wrapper {
    flex-direction: column;
    width: 73.333vw;
    padding: 8.974vw 0 4.103vw;
    row-gap: 17.949vw;
  }

  .footer-wrapper > a {
    width: 28.718vw;
    margin: 0 auto;
  }

  .footer-wrapper > div {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    row-gap: 0;
  }

  .footer-nav-list {
    flex-direction: column;
    width: fit-content;
    align-items: baseline;
    padding: 0;
    row-gap: 5.128vw;
  }

  .sns-list {
    display: flex;
    flex-direction: column;
    width: fit-content;
    row-gap: 7.692vw;
    align-items: center;
  }

  .sns-list > a > img {
    width: 10.256vw;
    height: auto;
  }

  .footer-wrapper small {
    font-size: 3.846vw;
    line-height: 3.846vw;
  }

  /* 下層ページ タイトル */
  .under-page_title {
    row-gap: 1.795vw;
  }

  .under-page_title > h1 {
    font-size: 7.179vw;
    line-height: 8.974vw;
    padding-bottom: 1.282vw;
  }

  .under-page_title > p {
    font-size: 4.615vw;
    line-height: 5.128vw;
  }
}
