@charset "UTF-8";

/* 
Indivisible SemiBold Italic
font-family: "indivisible", sans-serif;
font-weight: 600;
font-style: italic;

Indivisible Bold
font-family: "indivisible", sans-serif;
font-weight: 700;
font-style: normal; 
*/

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=M+PLUS+1p:wght@100;300;400;500;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Noto+Sans+JP:wght@100..900&display=swap');

@media screen and (min-width: 897px) {

  .sp {
    display: none !important;
  }

  .pc {
    display: block;
  }
}

@media screen and (max-width: 896px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block;
  }
}

@media screen and (min-width: 501px) {

  .br-sp {
    display: none !important;
  }

  .br-pc {
    display: block;
  }
}

@media screen and (max-width: 500px) {
  .br-pc {
    display: none !important;
  }

  .br-sp {
    display: block;
  }
}

:root {
  --text-white: #FFFFFF;
  --bold: 700;
  --medium: 500;
  --e-text: "Bebas Neue", sans-serif;
  --dot-font: "dotgothic16", sans-serif;
  --pop-font: "corporate-logo-ver2", sans-serif;
  --main-black: #000000;
  --main-blue: #0000FF;
}

html {
  scroll-behavior: smooth;
}

body,
html {
  position: relative;
  margin: 0;
  padding: 0;
  height: 100%;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  color: var(--text-white);
  background: var(--main-blue);
}


img {
  width: 100%;
  height: auto;
  display: block;
}


.header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  background: #d5d5d5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000000;
  padding: 20px 32px;
  z-index: 98;
}

.header-logo {
  min-width: 150px;
}

.nav ul {
  display: flex;
  gap: 24px;
  font-weight: 800;
  color: var(--main-blue);
  text-decoration: underline;
  font-family: "Comic Neue", cursive;
  font-size: 18px;
  font-weight: 800;
  text-shadow: 2px 2px 6px #000000;
}

.nav ul a:hover {
  color: #ff00ff;
}

/* ハンバーガー初期は非表示 */
.hamburger {
  display: none;
  flex-direction: column;
  width: 28px;
  height: 21px;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--main-blue);
  border-radius: 2px;
  transition: 0.3s;
}



.cheack-content {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: var(--main-blue);
  background-image: url(../img/bgi.png);
  background-size: 70px;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.6s ease;

}

.cheack-content.hide {
  opacity: 0;
  pointer-events: none;
}

body.no-scroll {
  overflow: hidden;
}

.cheack-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  background: #EFEFEF;
  color: #000000;
  font-size: 18px;
  font-weight: 400;
  width: 90%;
  max-width: 500px;
  padding: 16px 20px;
  border-radius: 10px;
  border: 1px solid #A5A5A5;
  font-family: var(--dot-font);
}

.cheack-box div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cheack-box input {
  width: 24px;
  height: 24px;
}

.cheack-box img {
  max-width: 150px;
}

#top {
  background-image: url(../img/bgi.png);
  background-size: 70px;
}

.kv {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100vh;
  width: 90%;
  margin: 0 auto;
  min-height: 1000px;
}

.kv>div {
  width: 100%;
}

.kv-content {
  position: relative;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  margin: 150px auto 0;
}

.kv-post {
  width: 100%;
  max-width: 350px;
}

.kv-button-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.kv-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 56px;
  width: 100%;
  background: #ff00ff;
  color: var(--main-blue);
  text-decoration: underline;
  font-size: 18px;
  max-width: 300px;
  margin: 32px auto 24px;
  box-shadow: inset -3px -2px 0px 2px rgba(0, 0, 0, 0.3);
  font-weight: 900;
}

.kv-button:hover {
  color: #fff700;
}
/* 
.chara {
  background: #d5d5d5;
  border-radius: 100px;
} */

.chara-1 {
  position: absolute;
  bottom: 10%;
  right: 5%;
  max-width: 200px;
}

.chara-2 {
  position: absolute;
  bottom: 30%;
  left: 5%;
  max-width: 200px;
}

.chara-3 {
  position: absolute;
  top: 20%;
  right: 0;
  max-width: 200px;
}

.post {
  max-width: 350px;
  margin: 0 auto;
}

.kv-title-stop {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 0;
}

.airplane {
  position: absolute;
  right: 64px;
  max-width: 80px;
}

.kv-text {
  font-size: 14px;
  font-family: var(--dot-font);
  font-weight: 300;
  line-height: 150%;
  margin: 40px auto 0;
  padding: 0 10px;
  max-width: 540px;
}


/*
.kv-box {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 56px;
  width: 100%;
  max-width: 1400px;
}

.kv-box-left {
  width: 50%;
}

.kv-box-left p {
  font-family: var(--dot-font);
  font-weight: 300;
  line-height: 150%;
  margin-top: 40px;
}

.kv-box-right {
  width: 50%;
}

*/

.kv-title {
  position: absolute;
  top: 10%;
  width: 100%;
  max-width: 1600px;
  overflow: hidden;
  z-index: 1;
}

.marquee {
  display: flex;
  animation: marquee 30s linear infinite;
}

/* 画像に shrink:0 を必ずつける（必須） */
.marquee img {
  height: 150px;
  width: auto;
  /* ←比率維持のため必須 */
  flex-shrink: 0;
  /* ←これがないと重なる */
  margin-right: 60px;
  object-fit: contain;
  /* cover は NG */
}

/* アニメーション */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


.section {
  padding: 96px 0;
  text-align: center;
}

.section-white {
  background: #FFFFFF;
  color: #000000;
  padding: 96px 0;
}

.content {
  width: 90%;
  margin: 0 auto;
}

.content-box {
  max-width: 1000px;
  margin: 0 auto;
}

.content-box iframe {
  aspect-ratio: 16/9;
}

.mg-t {
  margin-top: 40px;
}

.h2 {
  font-family: var(--e-text);
  text-align: left;
  max-width: 1200px;
  font-size: 24px;
  margin: 0 auto 40px;
}

.h2-black {
  color: #000000;
}

.ep-box {
  display: flex;
  gap: 40px;
  width: 100%;
}

.ep-box div {
  width: 50%;
}

.ep-box ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  margin-top: 24px;
  font-size: 20px;
  font-weight: 500;
}

.butoon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  max-width: 1000px;
  margin: 32px auto 0;
  background: #FF5352;
  width: 100%;
  transition: all 0.2s ease;
}

.butoon:hover {
  filter: brightness(0.8);
}


.footer {
  padding: 40px 0 14px;
  background: #FFFFFF;
}

.footer-logo {
  max-width: 200px;
  margin: 0 auto;
}

.sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 32px auto 40px;
}

.sns-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: all 0.2s ease;
}

.sns-link a:hover {
  opacity: 0.5;
}

.sns-link a img {
  object-fit: contain;
}

.link-youtube {
  height: 32px !important;
}

.copy {
  text-align: center;
  font-weight: 200;
  color: #FFFFFF;
}



@media screen and (max-width:1000px) {
  .kv-box {
    flex-direction: column;
  }

  .kv-box {
    gap: 40px;
  }

  .kv-box-right {
    max-width: 600px;
  }

  .kv-title {
    top: 10%;
  }
}


@media screen and (max-width:896px) {
  .kv {
    width: 100%;
  }

  .h2 {
    text-align: center;
  }


  .kv-title {
    top: 8%;
  }

  .kv-box-left {
    width: 90%;
  }

  .kv-box-left p {
    font-size: 14px;
    margin-top: 10px;
  }

  .ep-box {
    flex-direction: column;
  }

  .ep-box div {
    width: 100%;
  }


  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #d5d5d5;
    padding: 80px 32px;
    font-size: 24px;
    transition: right 0.4s ease;
    z-index: 97;
  }

  .nav ul {
    flex-direction: column;
    gap: 24px;
  }

  .hamburger {
    display: flex;
    z-index: 99;
  }

  /* メニューが開いたとき */
  .nav.active {
    right: 0;
  }

  /* ハンバーガーのアニメーション */
  .hamburger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .kv-content {
    margin: 100px auto 0;
  }

  .kv {
    padding: 80px 10px 24px;
    height: 100%;
  }

  .kv-title-stop {
    max-width: 300px;
    margin: 0 auto 0;
  }

  .post {
    max-width: 250px;
  }

  .kv-button {
    font-size: 16px;
    height: 48px;
    margin: 24px auto 20px;
  }

  .chara-1 {
    max-width: 100px;
    bottom: 0;
  }

  .chara-2 {
    max-width: 100px;
    top: 50%;
    height: 96px;
  }

  .chara-3 {
    max-width: 100px;
    top: 10%;
  }
}



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

  .cheack-box {
    flex-direction: column-reverse;
  }

  .kv {
    min-height: 700px;
  }

  .header-nav {
    padding: 64px 0;
  }

  .humberger-open {
    top: 24px;
    right: 16px;
    max-width: 40px;
    z-index: 98;
  }

  .humberger-close {
    top: 20px;
    right: 20px;
    max-width: 32px;
    z-index: 100;
  }

  .header-nav-ul {
    font-size: 32px;
    gap: 24px;
  }

  .header-nav-ul li:nth-child(5),
  .header-nav-ul li:nth-child(6) {
    font-size: 24px;
    margin-top: -18px;
    white-space: nowrap;
  }

  .section {
    padding: 64px 0;
  }


  .airplane {
    position: absolute;
    right: 24px;
    max-width: 80px;
  }

  #top {
    background-size: 125px;
  }

  .cheack-content {
    background-size: 125px;
  }


  .kv-box-left {
    width: 90%;
  }

  .kv-box-right {
    width: 90%;
  }

  .kv-title {
    top: 9%;
  }

  .marquee img {
    height: 100px;
  }

  .kv {
    padding: 80px 10px 24px;
    height: 100%;
  }

  .kv-title-stop {
    max-width: 300px;
    margin: 0 auto 0;
  }

  .post {
    max-width: 250px;
  }

  .kv-button {
    font-size: 16px;
    height: 48px;
    margin: 24px auto 20px;
  }


  .chara-1 {
    max-width: 60px;
    bottom: 20%;
    right: 15%;
  }

  .chara-2 {
    max-width: 60px;
    top: 50%;
    height: 60px;
    width: 70px;
  }

  .chara-3 {
    max-width: 60px;
    top: 35%;
    right: 5%;
    display: block;
  }

}

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

  .kv {
    min-height: 750px;
  }

  .marquee span {
    font-size: 56px;
  }

  .kv-title {
    top: 9%;
  }

  .marquee img {
    height: 80px;
  }
}