@charset "UTF-8";
/* ========================================
   Fonts
======================================== */
@font-face {
  font-family: "Poppins";
  font-weight: 200;
  font-style: normal;
  src: url("../fonts/Poppins-ExtraLight.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  font-weight: 300;
  font-style: normal;
  src: url("../fonts/Poppins-Light.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/Poppins-Regular.ttf") format("truetype");
  font-display: swap;
}
/* ========================================
   Base
======================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #333;
  background: url(../images/bg-main.png) no-repeat center center/cover;
}

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

a {
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.7;
}

/* ========================================
   Layout
======================================== */
@media screen and (min-width: 768px) {
  .l-main {
    max-width: 1200px;
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media screen and (min-width: 768px) {
  .movie-wrapper {
    position: -webkit-sticky;
    position: sticky;
    left: calc((100vw - 1200px) / 2);
    top: 0;
    width: 43.5%;
    padding: 78px 0 30px;
    box-sizing: border-box;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
}
.movie-wrapper .movie-container {
  width: 100%;
  height: 100%;
}
.movie-wrapper .movie-container video {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  outline: none;
  border: none;
  background: #000;
  transform: translateZ(0);
}

.style-wrapper {
  padding: 65px 0 40px;
}
@media screen and (min-width: 768px) {
  .style-wrapper {
    width: 44%;
    padding: 200px 0 120px;
  }
}

/* ========================================
   Style Main
======================================== */
.style-main--title {
  max-width: 280px;
  width: 54.6666666667%;
  margin: 0 auto;
}

.style-main--list {
  display: grid;
  max-width: 356px;
  width: 68%;
  margin: 45px auto 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 20px;
}
@media screen and (min-width: 768px) {
  .style-main--list {
    width: 100%;
    margin: 100px auto 0;
    gap: 35px 30px;
  }
}
.style-main--list > li {
  max-width: 100px;
  justify-self: center;
  overflow: hidden;
  position: relative;
  aspect-ratio: 100/143;
}
.style-main--list > li > a {
  display: block;
  width: 100%;
  height: 100%;
}
.style-main--list > li > a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.style-main--list > li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  z-index: 1;
  pointer-events: none;
}
.style-main--list > li:hover img {
  transform: scale(1.1);
}
.style-main--list > li:hover::before {
  background: rgba(0, 0, 0, 0.5);
}

/* ========================================
   Style Sections
======================================== */
.style-shoulder {
  position: -webkit-sticky;
  position: sticky;
  top: 10px;
  margin-top: 35px;
  margin-left: auto;
  margin-bottom: -99px;
  margin-right: 10px;
  width: 30px;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .style-shoulder {
    width: 42px;
    margin-top: 130px;
    margin-bottom: -130px;
    margin-right: 0;
  }
}

.style-sec {
  position: relative;
  padding: 0 0 60px;
  background-color: #fff;
  z-index: 3;
}

@media screen and (min-width: 768px) {
  .style-sec {
    padding: 0 0 130px;
  }
}
.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  isolation: isolate;
  -webkit-backface-visibility: hidden;
}

.sticky .style-sec {
  padding: 0 0 30px;
}

.style-image {
  position: relative;
  z-index: 1;
}

.style-image__main {
  position: relative;
  z-index: 1;
}

.style-image__sub {
  position: relative;
  z-index: 1;
}

.style-images--toggle {
  position: relative;
  height: auto;
  aspect-ratio: 909/1399;
  z-index: 1;
}
.style-images--toggle img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}
.style-images--toggle img.active {
  opacity: 1;
}

.style-sec--list {
  position: relative;
  margin: 0 auto;
  padding: 4px 0 0;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .style-sec--list {
    padding: 16px 0 0;
  }
}
.style-sec--list li {
  list-style: none;
}
.style-sec--list li a {
  display: inline-block;
  color: #231815;
  text-decoration: none;
  font-family: "stevie-sans", sans-serif;
  font-size: 12px;
  line-height: 1.611;
}
@media screen and (min-width: 768px) {
  .style-sec--list li a {
    font-size: 15px;
  }
}
.style-sec--list li a span {
  font-size: 10px;
  font-weight: bold;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .style-sec--list li a span {
    font-size: 13px;
  }
}

/* Style01 */
.style-sec01 .style-images--toggle,
.style-sec01 .style-sec--list {
  width: 86.8320610687%;
}
.style-sec01 .style-images--toggle {
  margin: 0 auto;
  margin-top: 43px;
}
@media screen and (min-width: 768px) {
  .style-sec01 .style-images--toggle {
    margin-top: 70px;
  }
}

/* Style02 */
.style-sec02 .style-image__sub,
.style-sec02 .style-sec--list {
  width: 66.7938931298%;
}
.style-sec02 .style-image__sub {
  margin: 0 auto;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .style-sec02 .style-image__sub {
    margin-top: 36px;
  }
}

/* Style03 */
.style-sec03 {
  padding-bottom: 0;
}
.style-sec03 .style-image__sub.first {
  width: 77.2900763359%;
  margin-left: auto;
  margin-top: 45px;
}
@media screen and (min-width: 768px) {
  .style-sec03 .style-image__sub.first {
    margin-top: 70px;
  }
}
.style-sec03 .style-image__sub.second {
  width: 66.7938931298%;
  margin-right: auto;
  margin-top: 8px;
  margin-left: 30px;
}
@media screen and (min-width: 768px) {
  .style-sec03 .style-image__sub.second {
    margin-top: 20px;
    margin-left: 40px;
  }
}
.style-sec03 .style-sec--list {
  margin-left: 30px;
}
@media screen and (min-width: 768px) {
  .style-sec03 .style-sec--list {
    margin-left: 40px;
  }
}

/* Style04 */
.style-sec04 {
  padding: 72px 0 0 !important;
  z-index: 3;
}
.style-sec04 .style-image__main {
  width: 86.8320610687%;
  margin: 0 auto;
}
.style-sec04 .style-image__sub.first {
  padding-top: 24px;
}
@media screen and (min-width: 768px) {
  .style-sec04 .style-image__sub.first {
    padding-top: 40px;
  }
}
.style-sec04 .style-image__sub.second {
  position: relative;
  width: 82.0610687023%;
  margin-top: -8%;
}
.style-sec04 .style-sec--list {
  padding: 8px 35px 60px;
}
.style-sec04:after {
  position: absolute;
  width: 100%;
  height: 40%;
  left: 0;
  bottom: 0;
  background: url(../images/sec-bg04.png) no-repeat center center/cover;
  content: "";
}

/* Style05 */
.style-sec05 {
  padding-top: 100px;
}
@media screen and (min-width: 768px) {
  .style-sec05 {
    padding-top: 150px;
  }
}
.style-sec05 .style-image__main {
  width: 92.5572519084%;
  margin-left: auto;
}
.style-sec05 .style-image__sub {
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  .style-sec05 .style-image__sub {
    padding-top: 40px;
  }
}
.style-sec05 .style-sec--list {
  margin-left: 27px;
}
@media screen and (min-width: 768px) {
  .style-sec05 .style-sec--list {
    margin-left: 40px;
  }
}

/* Style06 */
.style-sec06 {
  position: relative;
  padding-bottom: 0;
}
.style-sec06 .style-image__main {
  width: 93.5114503817%;
  margin-right: auto;
}
.style-sec06 .style-image__sub {
  padding-top: 16px;
}
@media screen and (min-width: 768px) {
  .style-sec06 .style-image__sub {
    padding-top: 40px;
  }
}
.style-sec06 .style-sec--list {
  padding: 8px 35px 60px;
}
.style-sec06 .style06-bg {
  position: absolute;
  width: 100%;
  height: 40%;
  left: 0;
  bottom: 0;
  background: url(../images/sec-bg06.png) no-repeat center center/cover;
  z-index: 0;
}

.style-sec07 {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .style-sec07 {
    padding-top: 120px;
    padding-bottom: 130px;
  }
}
.style-sec07 .style-images--toggle {
  width: 92.3664122137%;
  margin: 0 auto;
  margin-top: 46px;
}
@media screen and (min-width: 768px) {
  .style-sec07 .style-images--toggle {
    margin-top: 70px;
  }
}
.style-sec07 .style-sec--list {
  width: 92.3664122137%;
}
.style-sec07 .style07-bg {
  position: absolute;
  width: 100%;
  height: 70%;
  left: 0;
  bottom: 0;
  background: url(../images/sec-bg07.png) no-repeat center center/cover;
  z-index: 0;
}

.style-sec08 {
  margin-top: 0 !important;
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .style-sec08 {
    padding-bottom: 130px;
  }
}
.style-sec08 .style-image__sub.first {
  padding-top: 50px;
}
.style-sec08 .style-image__sub.second {
  width: 66.7938931298%;
  margin-right: auto;
  margin-left: 40px;
  margin-top: -6%;
}
.style-sec08 .style-sec--list {
  margin-left: 40px;
}
.style-sec08 .style08-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: url(../images/sec-bg08.png) no-repeat center center/cover;
  z-index: 0;
}

.style-sec09 {
  margin-top: 0 !important;
}
.style-sec09 .style-image__sub.first {
  width: 77.2900763359%;
  margin-right: auto;
  margin-left: 40px;
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .style-sec09 .style-image__sub.first {
    margin-top: 70px;
  }
}
.style-sec09 .style-image__sub.second {
  width: 66.7938931298%;
  margin-left: auto;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .style-sec09 .style-image__sub.second {
    margin-top: 20px;
  }
}
.style-sec09 .style-sec--list {
  width: 66.7938931298%;
  margin-left: auto;
  margin-right: 0;
}
.style-sec09 .style09-bg {
  position: absolute;
  width: 100%;
  height: 80%;
  left: 0;
  top: 0;
  background: url(../images/sec-bg09.png) no-repeat center center/cover;
  z-index: 0;
}

/* ========================================
   Animation Classes
======================================== */
.fadeup_trigger {
  opacity: 0;
}

.fadeup_trigger--offset {
  opacity: 0;
}

.fadeupOffset {
  -webkit-animation-name: fadeUpAnimeOffset;
          animation-name: fadeUpAnimeOffset;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
}

.fadeup {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  opacity: 0;
}

/* 時間差アニメーション */
.fadeup_trigger--delay {
  opacity: 0;
}

.fadeup_trigger--delay.fadeup {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUpAnimeOffset {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeUpAnimeOffset {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ========================================
   Footer
======================================== */
footer {
  background: url(../images/footer-bg.png) no-repeat center center/cover;
  color: #fff;
  padding: 90px 0 30px;
}
footer .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .logo {
  width: 118px;
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  footer .logo {
    width: 188px;
  }
}
footer .link-store {
  position: relative;
  margin: 20px 0 0;
  text-align: center;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 12px;
  text-decoration: none;
  line-height: 1;
  padding-bottom: 6px;
}
@media screen and (min-width: 768px) {
  footer .link-store {
    margin: 30px 0 0;
    font-size: 19px;
  }
}
footer .link-store:after {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  left: 0;
  bottom: 0;
  content: "";
}
@media screen and (min-width: 768px) {
  footer .link-store:after {
    height: 3px;
  }
}
footer .follow-text {
  font-size: 1rem;
  margin: 35px 0 0;
  font-family: "stevie-sans", sans-serif;
}
@media screen and (min-width: 768px) {
  footer .follow-text {
    margin: 50px 0 0;
    font-size: 1.4rem;
  }
}
footer .icon_box {
  display: flex;
  margin: 15px 0 0;
  gap: 15px;
}
footer .icon_box a {
  width: 28px;
}
@media screen and (min-width: 768px) {
  footer .icon_box a {
    width: 46px;
  }
}
footer .icon_box a:hover {
  opacity: 0.7;
}
footer .f_nav {
  margin: 35px 0 0;
}
@media screen and (min-width: 768px) {
  footer .f_nav {
    margin: 50px 0 0;
  }
}
footer .f_nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
footer .f_nav ul li a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  footer .f_nav ul li a {
    font-size: 16px;
  }
}
footer .link-top {
  display: block;
  width: 28px;
  margin: 30px auto 0;
}
@media screen and (min-width: 768px) {
  footer .link-top {
    width: 46px;
    margin: 80px auto 0;
  }
}
footer .copyright {
  margin: 25px 0 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 200;
  font-family: "Poppins", sans-serif;
}
@media screen and (min-width: 768px) {
  footer .copyright {
    margin: 35px 0 0;
  }
}
/*# sourceMappingURL=style.css.map */