@charset "UTF-8";
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
optgroup:focus:not(:focus-visible),
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible) {
  outline: 0; /* キーボード操作"以外"でフォーカスされた際はoutlineを消す */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove arrow in IE10 & IE11
 */
select::-ms-expand {
  display: none;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable] {
  outline: none;
}

/* Table */
/* ============================================ */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* Misc */
/* ============================================ */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

html,
body {
  scroll-behavior: auto;
  overscroll-behavior: none;
}

main {
  position: relative;
}
main img {
  width: 100%;
  height: 100%;
}

.l-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #ebffb8;
  z-index: -1;
}
@media screen and (min-width: 1080px) {
  .l-bg {
    background-image: url(../img/bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 100%;
  }
}
.l-bg img {
  object-fit: contain;
}
.l-bg--01 {
  width: 38.3333333333%;
  max-width: 522px;
  aspect-ratio: 960/871;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1079px) {
  .l-bg--01 {
    display: none;
  }
}
.l-bg--02 {
  width: 36.9444444444%;
  max-width: 532px;
  aspect-ratio: 961/871;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 1079px) {
  .l-bg--02 {
    display: none;
  }
}

.c-swipe-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 2.3427331887%;
  width: 9.2521202776%;
  aspect-ratio: 59.74/78.08;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  transition-property: opacity, visibility;
  pointer-events: none;
  z-index: 5;
}
.c-swipe-icon.-active {
  opacity: 1;
  visibility: visible;
}
.c-swipe-icon.-active .c-swipe-dot {
  animation: none;
  animation: swipe 1.5s ease-out infinite 0.3s;
}
.c-swipe-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.c-swipe-icon .c-swipe-dot {
  animation: swipe 1.5s ease-out infinite;
  transform-box: view-box;
  transform-origin: center center;
}
@keyframes swipe {
  0% {
    transform: translateY(0%);
  }
  70% {
    transform: translateY(-28.7%);
  }
  100% {
    transform: translateY(-28.7%);
  }
}

.c-expansion-btn {
  position: absolute;
  bottom: 8px;
  right: 6px;
  width: 8%;
  aspect-ratio: 1;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.25));
}
@media screen and (min-width: 1080px) {
  .c-expansion-btn {
    bottom: 12px;
    right: 12px;
  }
}
.c-expansion-btn img {
  width: 100%;
  height: auto;
}

.l-scroll {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  position: relative;
  z-index: 2;
}
.l-scroll__section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  height: 100dvh;
}
@media screen and (min-width: 1080px) {
  .l-scroll__section {
    height: 100vh;
    height: 100dvh;
  }
}
.l-scroll__section:has(.is-active) {
  background-color: rgba(0, 0, 0, 0.6);
}

.c-page-wrapper {
  position: relative;
}
.c-page-wrapper > figure {
  margin: auto;
  width: 100%;
  height: 100%;
  max-height: 96vh;
  max-height: 96dvh;
  aspect-ratio: 1297/2305;
  overflow: hidden;
}
@media screen and (min-width: 1080px) {
  .c-page-wrapper > figure {
    max-width: 48vw;
    max-height: 92vh;
    max-height: 92dvh;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  }
}

.popup-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  max-height: 100vh;
  max-height: 100dvh;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  transition: 0.3s;
  transition-property: opacity, visibility;
  -webkit-overflow-scrolling: touch;
  touch-action: auto;
  transform: translateZ(0);
}
.popup-wrapper.is-active {
  opacity: 1;
  visibility: visible;
}
.popup-wrapper.-expansion .popup-inner {
  margin: auto;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: auto;
  transform: translateZ(0);
  backface-visibility: hidden;
}
@media screen and (min-width: 1080px) {
  .popup-wrapper.-expansion .popup-inner {
    width: auto;
    height: 100vh;
    height: 100dvh;
  }
}
.popup-wrapper.-expansion .popup-inner figure .img-scroll {
  width: 150%;
  min-width: 150%;
}
.popup-wrapper.-expansion .popup-inner figure .img-scroll img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  pointer-events: auto;
}
.popup-wrapper.-popup .popup-inner figure {
  position: relative;
  margin: auto;
  width: 100%;
  height: 100%;
  max-height: 96vh;
  max-height: 96dvh;
  aspect-ratio: 1297/2305;
  overflow: hidden;
}
@media screen and (min-width: 1080px) {
  .popup-wrapper.-popup .popup-inner figure {
    max-width: 48vw;
    max-height: 92vh;
    max-height: 92dvh;
  }
}
.popup-wrapper .c-close-btn {
  position: absolute;
  width: 18.5042405551%;
  height: 3.9045553145%;
  left: 40.7093292213%;
}
.popup-wrapper .c-close-btn.-expansion {
  top: auto;
  left: auto;
  bottom: 5%;
  right: 2%;
  width: max(3.7037037037vw, 40px);
  aspect-ratio: 1;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.25));
}
.popup-wrapper .c-close-btn.-expansion img {
  width: 100%;
  height: auto;
}
.popup-wrapper .c-close-btn.-page3.-popup1 {
  top: 72.6681127983%;
}
.popup-wrapper .c-close-btn.-page4.-popup1 {
  top: 91.6702819957%;
}
.popup-wrapper .c-close-btn.-page5.-popup1 {
  top: 80.9544468547%;
}
.popup-wrapper .c-close-btn.-page7.-popup1 {
  top: 90.6724511931%;
}
.popup-wrapper .c-close-btn.-page8.-popup1 {
  top: 91.6702819957%;
}
.popup-wrapper .c-close-btn.-page8.-popup2 {
  top: 91.6702819957%;
}
.popup-wrapper .c-close-btn.-page8.-popup3 {
  top: 91.6702819957%;
}

.c-page-btn {
  position: absolute;
  display: block;
  z-index: 2;
}
.c-page-btn.-page3.-popup1 {
  width: 27.7563608327%;
  height: 3.9045553145%;
  left: 36.0832690825%;
  top: 91.1062906725%;
}
.c-page-btn.-page4.-popup1 {
  width: 27.7563608327%;
  height: 3.9045553145%;
  left: 36.0832690825%;
  top: 91.1062906725%;
}
.c-page-btn.-page5.-popup1 {
  width: 27.7563608327%;
  height: 3.9045553145%;
  left: 69.0824980725%;
  top: 84.9023861171%;
}
.c-page-btn.-page7.-popup1 {
  width: 18.5042405551%;
  height: 3.9045553145%;
  left: 74.5566692367%;
  top: 83.9913232104%;
}
.c-page-btn.-page8 {
  width: 27.7563608327%;
  height: 3.9045553145%;
}
.c-page-btn.-page8.-popup1 {
  left: 4.4718581342%;
  top: 50.4121475054%;
}
.c-page-btn.-page8.-popup2 {
  left: 67.1549730146%;
  top: 72.9718004338%;
}
.c-page-btn.-page8.-popup3 {
  left: 4.4718581342%;
  top: 92.5813449024%;
}

.c-page-link {
  position: absolute;
  display: block;
  z-index: 2;
}
.c-page-link.-page10 {
  width: 48.4194294526%;
  height: 11.5401301518%;
  left: 26.2143407864%;
  top: 71.453362256%;
}

.c-movie-link {
  position: absolute;
  display: block;
  z-index: 2;
}
.c-movie-link.-page2 {
  width: 79.7224363917%;
  height: 25.1626898048%;
  left: 10.2544333076%;
  top: 45.9002169197%;
}
.c-movie-link.-page9 {
  width: 73.2459521974%;
  height: 23.1670281996%;
  left: 11.8735543562%;
  top: 70.5422993492%;
}

.js-movie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  z-index: 9999;
}

.js-movie-close {
  position: absolute;
  top: 25px;
  right: 30px;
  max-width: 100px;
  width: 15.4202004626%;
}
.js-movie-close svg {
  width: 100%;
  height: auto;
}

.js-movie-modal.is-active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.movie-inner {
  width: 100%;
  max-width: 960px;
  position: relative;
}

.movie-box {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.movie-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/*# sourceMappingURL=style.css.map */
