@charset "UTF-8";
/* --------------------------------------------------
media
-------------------------------------------------- */
/*
画面サイズで変更する場合
  @media (max-width: 768px) {

デバイス（PCとその他）で変更する場合
  @media (hover: none), (pointer: coarse) {
*/

/* --------------------------------------------------
fonts
-------------------------------------------------- */
/* Inter */
/* .inter {
  font-family: "Inter", Noto Sans JP, sans-serif;
  font-weight: 400;
  font-style: normal;
} */


/* --------------------------------------------------
teaser base
-------------------------------------------------- */
html {
	font-size: 10px;
  padding: 0;
}
@media (max-width: 1440px) {
	html { font-size: 0.6944444444444444vw; }
}
@media (max-width: 768px) {
  html { font-size: 2.667vw; }
}

* {
	box-sizing: border-box;
}

.lg {
  display: block !important;
}

.sm {
  display: none !important;
}

@media (max-width: 768px) {
  .lg {
    display: none !important;
  }

  .sm {
    display: block !important;
  }
}

.bold {
  font-weight: 700;
}

/* --------------------------------------------------
teaser animation
-------------------------------------------------- */
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* --------------------------------------------------
teaser style
-------------------------------------------------- */
body {
  font-family: "Inter", Noto Sans JP, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 1.2rem;
  font-style: normal;
  color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  transition: background 0.01s ease;
  height: 100svh;
  margin: 0;
  overflow: hidden;
  cursor: pointer;

  @media (max-width: 768px) {
    background-size: auto 103.3%;
  }

  @media (max-width: 768px) and (orientation: landscape) {
    font-size: .5rem;
    height: 100vh;
  }
}

.bg1 {
  background-image: url('/assets/2026/img/teaser/bg1.webp');
  @media (max-width: 768px) {
    background-position: calc(50% + -8.2rem) calc(50% - 0rem);
  }
  @media (max-width: 768px) and (orientation: landscape) {
    background-position: center;
  }
}

.bg2 {
  background-image: url('/assets/2026/img/teaser/bg2.webp');
  @media (max-width: 768px) {
    background-position: calc(50% - 13rem) 0;
  }
  @media (max-width: 768px) and (orientation: landscape) {
    background-position: center;
  }
}

.bg3 {
  background-image: url('/assets/2026/img/teaser/bg3.webp');
  @media (max-width: 768px) {
    background-position: calc(50% - -30.6%) 0;
  }
  @media (max-width: 768px) and (orientation: landscape) {
    background-position: center;
  }
}

.bg4 {
  background-image: url('/assets/2026/img/teaser/bg4.webp');
  @media (max-width: 768px) {
    background-position: calc(50% - -29.6%) 0;
  }
  @media (max-width: 768px) and (orientation: landscape) {
    background-position: center;
  }
}

.bg5 {
  background-image: url('/assets/2026/img/teaser/bg5.webp');
  @media (max-width: 768px) {
    background-position: calc(50% - 32.4%) 0;
  }
  @media (max-width: 768px) and (orientation: landscape) {
    background-position: center;
  }
}

/* PCのみマウス追従 */
.mouse-follower {
  position: fixed;
  top: 2rem;
  left: 2rem;
  pointer-events: none;
  transform: translate(0, -100%);
  transition: transform 0.2s ease-out;
  width: 4rem;
  height: 4rem;

  @media (hover: none), (pointer: coarse) {
    display: none;
  }
}

/* logo */
.logo {
  position: absolute;
  bottom: 0.1rem;
  right: 8.5rem;
  width: 34rem;
  
  @media (hover: none), (pointer: coarse) {
    top: 1.6rem;
    bottom: unset;
    right: unset;
    width: 100%;
    padding: 0 1.8rem;
  }
  @media (max-width: 768px) {
    top: 1.6rem;
    bottom: unset;
    right: unset;
    width: 100%;
    padding: 0 1.8rem;
  }
  @media (max-width: 768px) and (orientation: landscape) {
    top: 1.5rem;
    padding: 0 1.5rem;
  }

  > img {
    @media (hover: none), (pointer: coarse) {
      margin: 0 auto;
      max-width: 340px;
    }
    @media (max-width: 768px) and (orientation: landscape) {
      margin: auto 0 0 auto;
    }
  }
}

/* container -----*/
.container {
  position: absolute;
  bottom: 0;
  margin: .8rem;
  line-height: 1.3;
  cursor: none;
}

/* star */
.star {
  display: none;
  @media (hover: none), (pointer: coarse) {
    display: block!important;
    position: absolute;
    top: -6.8rem;
    left: -.8rem;
    animation: rotation 15s linear infinite;
    width: 5rem;
    height: 5rem;
  }
  @media (max-width: 768px) and (orientation: landscape) {
    top: -3.8rem;
    width: 3rem;
    height: 3rem;
  }
}

/* info */
.info {
  dd {
    margin-top: 1.6rem;
    @media (max-width: 768px) and (orientation: landscape) {
      margin-top: .8rem;
    }
  }
}

.copyright {
  margin-top: 2.4rem;
  @media (max-width: 768px) and (orientation: landscape) {
    margin-top: 1rem;
  }
}