@charset "UTF-8";
/* Eric Meyer's Reset CSS v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*theme--------------------------*/
/*-------------------------------*/
/*breakpointes-------------------*/
/*-------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

body {
  font-size: 16px;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-style: normal;
  background-color: #FFFDE2;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

img, picture {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  font-size: 0;
  line-height: 0;
}

h2 {
  font-size: 2em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

section.section-default {
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  section.section-default {
    padding: 80px 0;
  }
}
section.section-default .section_inner {
  padding: 0 50px;
}
@media screen and (max-width: 768px) {
  section.section-default .section_inner {
    padding: 0 30px;
  }
}
section.section-default .section_inner .section_main {
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  section.section-default .section_inner .section_main {
    max-width: 500px;
  }
}

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

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

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

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

/*fixed_bg------------------------*/
.fixed_bg {
  z-index: -1;
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 200lvh;
  background-size: 100%;
  background-position: top center;
  top: 0;
  left: 0;
  background: linear-gradient(225deg, #fff4f4, #faffe0, #fff1bb, #ecffda);
  background-size: 800% 800%;
  animation: yellowGrad 20s ease infinite;
}
/*-------------------------------*/
/*loading------------------------*/
.loading {
  background-color: #fff;
  position: fixed;
  inset: 0;
  height: 100lvh;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader {
  max-width: 400px;
  width: 60%;
  position: relative;
  overflow: hidden;
}

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

.loader::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(0);
  will-change: height;
}

/* アニメ開始 */
.loading.is-anim .loader::after {
  animation: revealUp 1.2s steps(32) forwards;
}

@keyframes revealUp {
  0% {
    height: 100%;
  }
  10% {
    height: 80%;
  }
  20% {
    height: 77%;
  }
  30% {
    height: 50%;
  }
  40% {
    height: 46%;
  }
  50% {
    height: 41%;
  }
  60% {
    height: 32%;
  }
  70% {
    height: 24%;
  }
  80% {
    height: 20%;
  }
  90% {
    height: 10%;
  }
  100% {
    height: 0%;
  }
}
/*-------------------------------*/
/*nav----------------------------*/
/*-------------------------------*/
/*sharebtn-----------------------*/
/*sharebtn-----------------------*/
.shares {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 0px;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.25));
  gap: 10px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .shares {
    margin: 30px auto 0;
    gap: 5px;
  }
}

.share_btns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1;
  gap: 20px;
}
.share_btns li {
  height: 22px;
  overflow: hidden;
  border-radius: 5px;
  box-sizing: border-box;
  margin: 2px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.share_btns li img {
  height: 20px;
  width: auto;
}

.share_btns-square {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.share_btns-square::before {
  content: "";
  letter-spacing: 0.1em;
  padding-right: 10px;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-image: url(img/asset-light/share.svg);
  background-size: contain;
  background-position: center center;
}
.share_btns-square li {
  cursor: pointer;
  width: 24px;
}
.share_btns-square li img {
  transition: 0.2s;
}
.share_btns-square li img:hover {
  opacity: 0.5;
}

/*-------------------------------*/
/*noiseOverlay-------------------*/
@keyframes noise {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100px 800px;
  }
}
.noise_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(img/bg_l.webp);
  background-repeat: repeat;
  background-size: 200px;
  animation: noise 2s steps(10) infinite;
  line-height: 0;
  opacity: 0.4;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .noise_overlay {
    background-size: 200px;
  }
}

/*-------------------------------*/
/*-------------------------------*/
/*-------------------------------*/
@keyframes yellowGrad {
  0% {
    background-position: 93% 0%;
  }
  50% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 93% 0%;
  }
}
@keyframes fuwa {
  0%, 100% {
    transform: rotate(2deg);
  }
  50% {
    transform: rotate(-2deg);
  }
}
/*-inview------------------------*/
.fadeIn {
  opacity: 0;
  transition: 0.5s;
}
.fadeIn.is-inview {
  opacity: 1;
}

.fadeInUp {
  opacity: 0;
  transition: 1s;
  transform: translateY(5px);
}
.fadeInUp.is-inview {
  transform: translateY(0);
  opacity: 1;
}

.fadeFromLeft {
  opacity: 0;
  transition: 1s;
  transform: translateX(-20px);
}
.fadeFromLeft.is-inview {
  transform: translateX(0);
  opacity: 1;
}

/* 出現前 */
.rubberIn,
.wobbleIn {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transform-origin: center;
  will-change: transform, opacity;
}

/* 出現後：ここで“消えない”ように固定 */
.is-inview.rubberIn,
.is-inview.wobbleIn {
  opacity: 1;
}

/* rubber */
.is-inview.rubberIn {
  transform-origin: bottom center;
  animation: rubberIn 900ms cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes rubberIn {
  0% {
    transform: translate3d(0, 20px, 0) scale3d(1, 0.8, 1);
    opacity: 0;
  }
  40% {
    transform: translate3d(0, 0, 0) scale3d(1.2, 0.8, 1);
    opacity: 1;
  }
  60% {
    transform: translate3d(0, 0, 0) scale3d(0.9, 1.1, 1);
    opacity: 1;
  }
  75% {
    transform: translate3d(0, 0, 0) scale3d(1.05, 0.95, 1);
    opacity: 1;
  }
  100% {
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    opacity: 1;
  }
}
/* wobble */
.is-inview.wobbleIn {
  animation: wobbleIn 900ms ease-out both;
}

@keyframes wobbleIn {
  0% {
    transform: translate3d(0, 20px, 0) rotate(0deg);
    opacity: 0;
  }
  30% {
    transform: translate3d(0, 0, 0) rotate(0deg);
    opacity: 1;
  }
  45% {
    transform: translate3d(-12px, 0, 0) rotate(-2deg);
    opacity: 1;
  }
  60% {
    transform: translate3d(10px, 0, 0) rotate(1.5deg);
    opacity: 1;
  }
  75% {
    transform: translate3d(-6px, 0, 0) rotate(-1deg);
    opacity: 1;
  }
  90% {
    transform: translate3d(3px, 0, 0) rotate(0.5deg);
    opacity: 1;
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
    opacity: 1;
  }
}
/* ===== 共通：初期状態 ===== */
.arcInLeft,
.arcInRight {
  opacity: 0;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

/* ===== 左から弧 ===== */
.arcInLeft {
  transform: translate3d(-80px, 40px, 0) rotate(-8deg) scale(0.98);
  transform-origin: center;
}

.is-inview.arcInLeft {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  transition: opacity 220ms linear, transform 1100ms cubic-bezier(0.17, 1.7, 0.32, 1);
}

/* ===== 右から弧 ===== */
.arcInRight {
  transform: translate3d(80px, 40px, 0) rotate(8deg) scale(0.98);
  transform-origin: center;
}

.is-inview.arcInRight {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  transition: opacity 220ms linear, transform 1100ms cubic-bezier(0.17, 1.7, 0.32, 1);
}

.tadaIn {
  opacity: 0;
  transform: scale3d(0.9, 0.9, 1);
  transform-origin: center;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.is-inview.tadaIn {
  opacity: 1;
  animation: tadaIn 1050ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes tadaIn {
  0% {
    transform: scale3d(0.9, 0.9, 1) rotate(0deg);
    opacity: 0;
  }
  25% {
    transform: scale3d(1.1, 1.1, 1) rotate(0deg);
    opacity: 1;
  }
  35% {
    transform: scale3d(1.2, 1.2, 1) rotate(-2deg);
  }
  45% {
    transform: scale3d(1.2, 1.2, 1) rotate(2deg);
  }
  55% {
    transform: scale3d(1.2, 1.2, 1) rotate(-1.5deg);
  }
  65% {
    transform: scale3d(1.2, 1.2, 1) rotate(1.5deg);
  }
  100% {
    transform: scale3d(1, 1, 1) rotate(0deg);
    opacity: 1;
  }
}
.heartBeatIn {
  opacity: 0;
  transform: scale3d(0.96, 0.96, 1);
  transform-origin: center;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.is-inview.heartBeatIn {
  opacity: 1;
  animation: heartBeatIn 1200ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heartBeatIn {
  0% {
    transform: scale3d(0.96, 0.96, 1);
    opacity: 0;
  }
  20% {
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
  35% {
    transform: scale3d(1.1, 1.1, 1);
  } /* ドクン */
  50% {
    transform: scale3d(1, 1, 1);
  }
  65% {
    transform: scale3d(1.06, 1.06, 1);
  } /* ドクン(小) */
  80% {
    transform: scale3d(1, 1, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}
/*nav----------------------------*/
.sns-nav {
  z-index: 101;
  position: fixed;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 5px;
  opacity: 0;
  transition: 0.5s;
  transform: translateY(-10px);
}
.sns-nav.active {
  transform: translateY(0);
  opacity: 1;
}
.sns-nav li a {
  display: block;
  background-color: #9A6625;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  transform: scale(1);
  transition: 0.2s;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.25));
}
@media screen and (max-width: 768px) {
  .sns-nav li a {
    width: 40px;
    height: 40px;
  }
}
.sns-nav li a:hover {
  transform: scale(0.9);
}

.top_btn {
  z-index: 99;
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 10px;
  right: 10px;
  opacity: 0;
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transform: scale(1, 0.6);
  color: #9A6625;
  cursor: pointer;
}
.top_btn.active {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .top_btn.active {
    opacity: 1;
  }
}
.top_btn:hover {
  transform: scale(1, 0.6) translateY(2px);
  opacity: 0.5;
}

/*-------------------------------*/
footer .footer {
  position: relative;
  background-color: #FFF100;
  padding: 40px 40px 60px;
}
@media screen and (max-width: 768px) {
  footer .footer {
    padding: 40px 20px 60px;
  }
}
footer .footer .footer_inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  footer .footer .footer_inner {
    max-width: 400px;
    margin: 0 auto;
  }
}
footer .footer .footer_inner .title {
  position: relative;
  width: 80%;
  max-width: 528px;
  margin: 0 auto;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.25));
}
footer .footer .footer_inner .release {
  position: absolute;
  width: 16%;
  max-width: 100px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.25));
}

#top {
  position: relative;
  height: 52vw;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #top {
    height: 242vw;
  }
}
#top .main_bg {
  position: relative;
  overflow: hidden;
}
#top .main_bg .main_bg-inner {
  position: relative;
  overflow: visible;
  opacity: 0;
  transition: 0.4s;
  transform: scale(1.5) rotate(10deg);
}
#top .main_bg .main_bg-inner.active {
  opacity: 1;
  transform: scale(1) rotate(0);
}
#top .copy {
  position: absolute;
  width: 21.77%;
  top: 29.53%;
  left: 7.08%;
}
@media screen and (max-width: 768px) {
  #top .copy {
    width: 57.6%;
    top: 6.95%;
    left: 21.07%;
  }
}
#top .copy {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transform-origin: center;
  will-change: transform, opacity;
}
#top .copy.active {
  transform-origin: bottom center;
  animation: rubberIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
#top .copy img {
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.25));
}
#top .by {
  position: absolute;
  width: 12%;
  top: 31%;
  left: 66.5%;
}
@media screen and (max-width: 768px) {
  #top .by {
    width: 30%;
    top: 44%;
    left: 35%;
  }
}
#top .by {
  opacity: 0;
  transition: 0.5s;
  transform: scale(1.1) translateY(10px);
}
#top .by.active {
  opacity: 1;
  transform: scale(1) translateY(0px);
}
#top .title {
  position: absolute;
  width: 48%;
  top: 32%;
  left: 50%;
  z-index: 2;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  #top .title {
    width: 90%;
    top: 45%;
    left: 5%;
  }
}
#top .title {
  opacity: 0;
  transform: scale3d(0.9, 0.9, 1);
  transform-origin: center;
  will-change: transform, opacity;
  backface-visibility: hidden;
}
#top .title.active {
  animation: tadaIn 1500ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
#top .title img {
  animation: fuwa linear 10s infinite;
}
#top .release {
  position: absolute;
  width: 11.56%;
  top: 75%;
  left: 60.73%;
  transform: rotate(-5.5deg);
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.25));
}
@media screen and (max-width: 768px) {
  #top .release {
    width: 28%;
    top: 60%;
    left: 36%;
    transform: rotate(0deg);
  }
}
#top .release img {
  opacity: 0;
  transition: 0.5s;
  transform: scale(1.1) translateY(10px);
}
#top .release img.active {
  opacity: 1;
  transform: scale(1) translateY(0px);
}
#top .theater_btn {
  position: absolute;
  width: 24%;
  top: 69%;
  left: 73%;
  transform: rotate(3deg);
}
@media screen and (max-width: 768px) {
  #top .theater_btn {
    width: 92%;
    top: 73%;
    left: 4%;
    transform: rotate(0deg);
  }
}
#top .theater_btn {
  opacity: 0;
  transition: 0.5s;
  transform: scale(1.1) translateY(10px);
}
#top .theater_btn.active {
  opacity: 1;
  transform: scale(1) translateY(0px);
}
@media screen and (max-width: 768px) {
  #top .theater_btn .theater_btn-pc {
    display: none;
  }
}
#top .theater_btn .theater_btn-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  #top .theater_btn .theater_btn-sp {
    display: block;
  }
}
#top .theater_btn .btn_theater-base {
  position: relative;
}
#top .theater_btn .btn_theater-over {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.2s;
  transform: scale(1);
}
#top .theater_btn:hover .btn_theater-over {
  transform: scale(1.05) rotate(4deg);
  filter: brightness(120%);
}
#top .credit {
  position: absolute;
  width: 10%;
  top: 93%;
  left: 73%;
  transform: rotate(7deg);
}
@media screen and (max-width: 768px) {
  #top .credit {
    width: 34%;
    top: 66.5%;
    left: 33%;
    transform: rotate(0deg);
  }
}
#top .credit img {
  opacity: 0;
  transition: 0.5s;
  transform: scale(1.1) translateY(10px);
}
#top .credit img.active {
  opacity: 1;
  transform: scale(1) translateY(0px);
}
#top .company {
  position: absolute;
  width: 10%;
  top: 95%;
  left: 85%;
  transform: rotate(7deg);
}
@media screen and (max-width: 768px) {
  #top .company {
    width: 32%;
    top: 69%;
    left: 34%;
    transform: rotate(0deg);
  }
}
#top .company img {
  opacity: 0;
  transition: 0.5s;
  transform: scale(1.1) translateY(10px);
}
#top .company img.active {
  opacity: 1;
  transform: scale(1) translateY(0px);
}

#info {
  padding: 20px 50px 40px;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 768px) {
  #info {
    padding: 20px 20px 20px;
  }
}
#info .btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
}
#info .btns li {
  max-width: 220px;
  position: relative;
}
#info .btns li a {
  transition: 0.2s;
}
#info .btns li a:hover {
  opacity: 0.7;
}
#info .mvtk #mvtk-widgets-container {
  margin: 0 auto 30px;
}

/*trailer------------------------*/
#trailer .section_inner {
  max-width: 940px;
  width: 60%;
  margin: 0 auto;
  padding: 0px;
}
@media screen and (max-width: 768px) {
  #trailer .section_inner {
    width: 100%;
    max-width: 500px;
    padding: 0px;
  }
}
#trailer .section_inner .section_main {
  margin: 0 auto;
  width: 100%;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.25));
}
#trailer .section_inner .section_main h2 {
  margin: 0 auto -4px;
  width: 40%;
  max-width: 360px;
}
@media screen and (max-width: 768px) {
  #trailer .section_inner .section_main h2 {
    width: 70%;
  }
}

.youtube_embed {
  border: solid 10px #006AB7;
  margin: 0 auto;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 14px;
  background-color: #006AB7;
}
@media screen and (max-width: 768px) {
  .youtube_embed {
    border: solid 5px #006AB7;
  }
}
.youtube_embed iframe {
  border-radius: 6px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.trailer_tabs {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}
.trailer_tabs li {
  border: 1px solid #666;
  border-radius: 3px;
  width: 50%;
  margin-top: 2px;
  height: 3em;
  width: 100%;
  display: block;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 900;
  background-color: #3a3a3a;
  color: #FEFEFE;
}
@media screen and (max-width: 768px) {
  .trailer_tabs li {
    height: 3em;
  }
}
.trailer_tabs .tab.active {
  background-color: #161616;
  pointer-events: none;
}
.trailer_tabs .tab.active:hover {
  transition: 0.4s;
}

/*-------------------------------*/
#intro {
  padding-top: 40px;
  overflow: hidden;
}
#intro .section_inner .section_main {
  position: relative;
}
#intro .section_inner .section_main h2 {
  display: none;
}
#intro .section_inner .section_main .bg_intro {
  position: relative;
}
#intro .section_inner .section_main .bg_intro img {
  filter: drop-shadow(0px -2px 2px rgba(0, 0, 0, 0.25));
}
#intro .section_inner .section_main .copy_intro {
  position: absolute;
  top: 0;
  left: 3%;
  width: 54%;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.25));
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main .copy_intro {
    width: 100%;
    left: 0;
    top: 48.5%;
    z-index: 2;
  }
}
#intro .section_inner .section_main .copy_intro img {
  animation: fuwa linear 10s infinite;
}
#intro .section_inner .section_main .body_intro {
  position: absolute;
  width: 35%;
  top: 30%;
  left: 13%;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.8));
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main .body_intro {
    width: 100%;
    top: unset;
    left: unset;
    filter: none;
    position: relative;
    background-color: #FFF100;
    text-align: center;
    padding: 14% 6% 5%;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.25));
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #intro .section_inner .section_main .body_intro .body_intro-inner {
    margin: 0 auto;
  }
}/*# sourceMappingURL=style.css.map */