/* 1200px未満(SP/Tablet) */
.sp {
  background-color: var(--sky-navy);
  overflow: hidden;
  width: 390px;
}

/* 初回ローディング */
.logo-motion {
  background-color: var(--sky-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100dvh;
  width: 100vw;
}
.logo-motion .logo-motion-animation {
  height: 230px;
  object-fit: cover;
  width: 320px;
}
.logo-tagline {
  background-color: var(--sky-navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 64px;
  height: 100dvh;
}

.logo-tagline .logo-tagline-img {
  align-self: center;
  height: 178px;
  margin-left: 0.06px;
  width: 196px;
}

/* アニメーション */
#loader {
  position: fixed;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--sky-navy);
  z-index: 9999;
  animation: fadeOut 2s ease forwards;
  animation-delay: 6s; /* 6秒後にフェードアウト開始 */
}
#loader2 {
  position: fixed;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--sky-navy);
  z-index: 9998;
  animation: fadeOut 2s ease forwards;
  animation-delay: 9s; /* 9秒後にフェードアウト開始 */
}
@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
/* ヘッダーロゴ */
.logotype_glay {
  /* align-self: flex-start; */
  cursor: pointer;
  height: 16px;
  z-index: 9997;
  /* 色を変更 */
  filter: brightness(0) saturate(100%) invert(83%) sepia(5%) saturate(114%)
    hue-rotate(169deg) brightness(88%) contrast(97%);
}
.log-coloro-white {
  transition: opacity 1s ease-in-out;
  filter: brightness(0) invert(1);
}

/* screen - topu95all-2-all-breakpoints SP */
.opening-members {
  align-self: flex-end;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 146px;
  width: 100%;
  align-items: center;
  justify-content: center;
  background-color: var(--sky-navy);
  margin: 0px 0px 70px 0px;
  z-index: 9995;
}
.star {
  height: 30px;
  width: 30px;
  background-image: url(../img/zzz_star.svg);
  margin-bottom: 30px;
}
.opening-members-img {
  width: 100%;
  margin-bottom: 100px;
}

/* ヘッダー(sp) */
header {
  position: fixed;
  z-index: 9997;
  top: 0;
  right: 0;
  left: 0;
  /* margin: 0 20px; */
}
.header-item {
  display: flex;
  justify-content: space-between;
  margin: 20px 20px;
  align-items: center;
}
/* ハンバーガーメニュー */
.hamburger {
  cursor: pointer;
  min-height: 22px;
  width: 30px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 20px;
  z-index: 9997;
}
/* メニュー初期状態（非表示） */
.nav-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--sky-navy);
  backdrop-filter: blur(23spx);
  -webkit-backdrop-filter: blur(23px);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}
.nav-menu ul {
  list-style: none;
  padding: 20px;
  margin: 0;
}
.nav-menu ul li {
  margin-top: 35px;
  text-align: center;
}
.nav-menu ul li:hover,
.nav-menu ul li:focus {
  opacity: 0.5;
}
.nav-menu ul li a {
  color: #fff;
  text-decoration: none;
}
/* メニュー表示状態 */
.nav-menu.active {
  right: 0;
  opacity: 1;
  backdrop-filter: blur(23px);
  -webkit-backdrop-filter: blur(23px);
  z-index: 9996;
  /* background: var(--sky-navy); */
  background: rgb(16 19 38 / 50%);
  pointer-events: auto;
}
/* ハンバーガー開閉アニメ */
.hamburger.active img:nth-child(1) {
  transform: rotate(45deg) translate(9px, 3px);
  opacity: 1;
}
.hamburger.active img:nth-child(2) {
  opacity: 0;
}
.hamburger.active img:nth-child(3) {
  transform: rotate(-45deg) translate(12px, -5px);
  opacity: 1;
}
.hamburger-line {
  width: 28px;
}
/* 応募はこちらボタン */
.application-btn {
  bottom: -96px;
  left: 0;
  right: 0;
  margin: 0;
  position: fixed;
  width: 100%;
  z-index: 9995;
  pointer-events: auto;
  background-color: rgba(255, 255, 255, 0.6);
  height: 96px;
  vertical-align: middle;
  display: grid;
  align-items: center;
  grid-auto-flow: column;
  /* padding: 0px 34px 0px 36px; */
  border-top: 1px solid var(--sky-navy);
  transition: bottom 0.8s ease, opacity 0.8s ease;
}
.arrow-img-sp {
  height: 20px;
  width: 20px;
  position: absolute;
  bottom: 37px;
  right: 21px;
}
.application-btn-bg {
  width: 100%;
  max-width: 430px;
  min-width: 390px;
  height: 96px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: fixed;
  bottom: -96px;
  z-index: 9995;
  transition: bottom 0.8s ease, opacity 0.8s ease;
}
.btn-show {
  bottom: 0px;
  opacity: 1;
}
.screen a div.text-application:hover {
  opacity: 1;
}

/* スマホ〜タブレットサイズ対応 */
@media screen and (max-width: 1199px) {
  .sp,
  .top_all,
  .application-overview-group,
  footer,
  .overlap-group2 {
    /* min-width: 390px; */
    max-width: 430px;
    width: 100%;
  }
  .fixed-btn-area {
    height: 95px;
    width: 100%;
    background: var(--white);
  }
}
/* タブレットの時の応募ボタン */
@media screen and (min-width: 441px) and (max-width: 1199px) {
  .application-btn {
    border-radius: 80px;
    /* bottom: 25px; */
    bottom: -111px;
    left: 0;
    right: 0;
    margin: auto;
    position: fixed;
    width: 390px;
    z-index: 9995;
    pointer-events: auto;
    background-color: rgba(255, 255, 255, 0.6);
    height: 74px;
    display: grid;
    justify-content: center;
    align-items: center;
    grid-auto-flow: column;
    padding: 0px 34px 0px 36px;
    border: 1px solid var(--sky-navy);
  }
  .application-btn-bg {
    width: 390px;
    height: 74px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    z-index: 9995;
    /* bottom: 25px; */
    bottom: -111px;
    border-radius: 80px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .arrow-img-sp {
    height: 20px;
    width: 20px;
    position: absolute;
    bottom: 27px;
    right: 21px;
  }
  .screen a div.text-application:hover {
    opacity: 1;
  }
  .btn-show {
    bottom: 25px;
  }
}
