@charset "UTF-8";
/* Variable Definitions */
@import url("https://fonts.googleapis.com/css2?family=Anton&family=UnifrakturMaguntia&family=Oi&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Ceviche+One&family=Dela+Gothic+One&family=DotGothic16&family=Nova+Round&family=Oi&display=swap");
html {
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 14px;
    line-height: 1.5;
  }
}
html a:hover {
  opacity: 0.7;
  transition: 0.5s;
}

.snslogo {
  max-width: 1.5rem;
}
.snslogo img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.button1 {
  background-color: #419FD9;
  padding: 0.75rem 1.25rem;
  border-radius: 40px;
  font-weight: bold;
  color: #FFF;
}
@media screen and (max-width: 768px) {
  .button1 {
    display: none;
  }
}

.button2 {
  background-color: #FFF;
  padding: 0.75rem 5.5rem;
  border: 1px solid #07060D;
  font-family: "Nova Round", system-ui;
}

.button3 {
  padding: 0.5rem 8rem;
  font-size: 2rem;
  border-radius: 40px;
  font-weight: bold;
  border: 2px solid #FFF;
  color: #FFF;
}
@media screen and (max-width: 768px) {
  .button3 {
    padding: 0.5rem 3rem;
    font-size: 1.5rem;
  }
}

.scroll-anime {
  position: absolute;
  left: 3%;
  top: 40%;
  font-weight: 700;
  writing-mode: vertical-rl;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
.scroll-anime::after {
  content: "";
  position: absolute;
  bottom: -120px; /* 文字の下端からの距離（線の長さに合わせて調整） */
  left: 50%; /* 縦書き文字の中央に配置 */
  width: 1px; /* 線の太さ */
  height: 100px; /* 線の最大長 */
  background-color: #333; /* 線の色 */
  transform: translateX(-50%); /* 中央寄せの補正 */
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  /* アニメーションの指定 */
  animation: scroll-line 2.5s cubic-bezier(1, 0, 0, 1) infinite;
}
.scroll-anime {
  /* 伸びて消えるアニメーション */
}
@keyframes scroll-line {
  0% {
    transform: scaleY(0) translateX(-50%);
    transform-origin: top;
  }
  45% {
    transform: scaleY(1) translateX(-50%);
    transform-origin: top;
  }
  55% {
    transform: scaleY(1) translateX(-50%);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0) translateX(-50%);
    transform-origin: bottom;
  }
}

.contents-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

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

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

.header {
  padding: 1.5rem;
  border-bottom: 1px solid #F4F4F4;
  width: 100%;
  font-size: 0.85rem;
  background-color: #FFF;
  position: fixed;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .header {
    width: 100%;
  }
}
.header .inner {
  display: flex;
  max-width: 1600px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
}
.header .logo {
  max-width: 128px;
}
.header .logo img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
.header .menu {
  display: flex;
}
.header .menu ul {
  display: flex;
  padding: 0.5rem 2.5rem;
  color: #419FD9;
  border-radius: 40px;
  align-items: center;
  background-color: #F4F4F4;
  gap: 1.5rem;
  font-weight: bold;
}
.header .menu ul a {
  display: flex;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .header .menu ul {
    display: none;
  }
}
.header .hamburger {
  display: none;
  z-index: 1000;
  position: relative;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .header .hamburger {
    display: block;
  }
}
.header .hamburger span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #07060D;
  transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.header .hamburger span:nth-child(1) {
  top: 0;
}
.header .hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header .hamburger span:nth-child(3) {
  bottom: 0;
}
.header {
  /* --- 開いた時のボタン（X印にする） --- */
}
.header .hamburger.is-active span {
  background-color: #FFF;
}
.header .hamburger.is-active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.header .hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.header .hamburger.is-active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}
.header {
  /* --- スマホ用メニューのスタイル --- */
}
.header .sp-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: #07060D;
  opacity: 0.8;
  transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .sp-nav.is-active {
  right: 0;
}
.header .sp-nav ul {
  text-align: center;
}
.header .sp-nav ul li {
  margin: 2rem 0;
}
.header .sp-nav ul li a {
  color: #FFF;
  font-size: 1.5rem;
  font-weight: bold;
}

.mv {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: -1;
}
.mv .mv-bg__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
  filter: blur(2px);
}
.mv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* 黒の40%透明 */
  z-index: -1;
}
.mv .catch {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #419FD9;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
  .mv .catch {
    width: 100%;
    padding: 0 1rem;
  }
}
.mv .catch h2 {
  font-weight: bold;
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .mv .catch h2 {
    text-align: center;
    font-size: 2.5rem;
  }
}
.mv .catch p {
  text-align: end;
}
@media screen and (max-width: 768px) {
  .mv .catch p {
    text-align: center;
  }
}

.about {
  background: linear-gradient(to right, #1E1F28 0%, #252733 77%, #686D8E 100%);
  padding: 5.5rem;
  color: #FFF;
}
@media screen and (max-width: 768px) {
  .about {
    padding: 3.5rem 1rem;
  }
}
.about .title {
  font-family: "Oi", serif;
  font-size: 3rem;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  transform: skewX(-10deg) rotate(-2deg); /* 傾けて少し回転 */
  color: #fff;
  /* 激しいネオン風の影 */
  text-shadow: 0 0 10px rgba(65, 159, 217, 0.8), 5px 5px 0px #000;
}
.about .contents-inner {
  color: #FFF;
}
.about .contents {
  margin-top: 5.5rem;
  display: flex;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .about .contents {
    flex-direction: column-reverse;
    gap: 5rem;
    margin-top: 3rem;
  }
}
.about .left {
  width: 50%;
  height: 500vh;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about .left {
    width: 100%;
    height: 250vh;
  }
}
.about .left .slide-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .about .left .slide-wrapper {
    align-items: center;
    top: 10%;
    height: 70vh;
  }
}
.about .left .slide-item {
  position: absolute;
  width: 100%;
  max-width: 500px;
  border-radius: 30px;
  overflow: hidden;
  background-color: #FFF;
}
@media screen and (max-width: 768px) {
  .about .left .slide-item {
    max-width: 280px;
  }
}
.about .left .slide-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .left .slide-item.item1 {
  z-index: 1;
  opacity: 1;
  transform: rotate(-15deg) translateX(-40px);
}
@media screen and (max-width: 768px) {
  .about .left .slide-item.item1 {
    opacity: 0;
  }
}
.about .left .slide-item.item2 {
  z-index: 2;
  opacity: 0;
  transform: translateY(300px) rotate(0deg);
}
@media screen and (max-width: 768px) {
  .about .left .slide-item.item2 {
    transform: translateY(300px) rotate(0deg);
  }
}
.about .left .slide-item.item3 {
  z-index: 3;
  opacity: 0;
  transform: translateY(100px) rotate(10deg);
}
.about .right {
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  position: sticky;
  top: 0;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .about .right {
    width: 100%;
    text-align: center;
    height: auto;
    position: absolute;
  }
}
.about .right .sticky-text {
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
.about .right .main {
  padding: 1rem 0;
  font-size: 1.5rem;
  font-weight: bold;
  border-bottom: 1px solid #FFF;
}
.about .right .sub {
  margin-top: 1rem;
  font-size: 1.25rem;
}

.event {
  padding: 5.5rem;
}
@media screen and (max-width: 768px) {
  .event {
    padding: 3.5rem 1rem;
  }
}
.event .title {
  font-family: "Oi", serif;
  font-size: 3rem;
  text-align: center;
}
.event .event1 .contents {
  display: flex;
  gap: 1rem;
  padding: 2rem;
}
@media screen and (max-width: 768px) {
  .event .event1 .contents {
    flex-direction: column-reverse;
  }
}
.event .event1 .left {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.event .event1 .left .event-title {
  font-family: "Nova Round", system-ui;
  font-size: 3rem;
}
.event .event1 .left .event-title span {
  font-family: "DotGothic16", sans-serif;
}
@media screen and (max-width: 768px) {
  .event .event1 .left .event-title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .event .event1 .left {
    width: 100%;
    text-align: center;
  }
}
.event .event1 .right {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .event .event1 .right {
    width: 100%;
  }
}
.event .event1 .right .event-img {
  overflow: hidden;
}
.event .event1 .right .event-img img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
.event .event1 .button-wrap {
  display: flex;
  justify-content: center;
}
.event .partition {
  height: 6rem;
  width: 100%;
  background-color: #419FD9;
  display: block;
  margin: 5.5rem 0;
}
.event .rev {
  flex-direction: row-reverse;
}

.calender {
  padding: 5.5rem;
}
@media screen and (max-width: 768px) {
  .calender {
    padding: 3.5rem 1rem;
  }
}
.calender .title {
  font-family: "Oi", serif;
  font-size: 3rem;
  text-align: center;
}
.calender-bg {
  width: 100%;
  border-radius: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .calender-bg {
    height: 32rem;
  }
}
@media screen and (max-width: 768px) {
  .calender .g-calender {
    width: 100%;
    height: 100%;
  }
}

.cta {
  padding: 5.5rem;
  background-image: url("../img/common/cta-bg.png");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .cta {
    padding: 3.5rem 1rem;
  }
}
.cta h3 {
  font-size: 2rem;
  color: #FFF;
  text-align: center;
  font-weight: bold;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .cta h3 {
    font-size: 1.25rem;
  }
}
.cta .button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .cta .button-wrap {
    margin-top: 2rem;
  }
}

.footer {
  padding: 3rem 0 1rem 0;
}
.footer .contents-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer .footer-nav ul {
  display: flex;
  gap: 2rem;
  justify-content: center;
  font-weight: bold;
}
.footer .sns-logo {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
.footer .sns-logo a {
  display: flex;
  align-items: center;
}
.footer .copyright {
  justify-content: center;
  display: flex;
}/*# sourceMappingURL=style.css.map */