/*----------------------------------

reset

----------------------------------*/
/*----------------------------------

mixin

----------------------------------*/
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

*,
:after,
:before {
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

:after,
:before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

hr {
  overflow: visible;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden],
template {
  display: none;
}

abbr[title] {
  border-bottom: 1px dotted;
  text-decoration: none;
}

li,
ol {
  list-style: none;
}

a {
  background-color: transparent;
  text-decoration: underline;
}

a:active,
a:hover {
  outline-width: 0;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

b,
strong {
  font-weight: bolder;
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

[role=button],
[type=button],
[type=reset],
[type=submit],
button {
  cursor: pointer;
}

[disabled] {
  cursor: default;
}

[type=number] {
  width: auto;
}

[type=search] {
  -webkit-appearance: textfield;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: 0;
  padding: 0;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset],
[type=submit],
button,
html [type=button] {
  -webkit-appearance: button;
}

button,
select {
  text-transform: none;
}

button {
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

img {
  border-style: none;
  image-rendering: -webkit-optimize-contrast;
}

progress {
  vertical-align: baseline;
}

svg:not(:root) {
  overflow: hidden;
}

audio,
canvas,
progress,
video {
  display: inline-block;
}

@media screen {
  [hidden~=screen] {
    display: inherit;
  }
  [hidden~=screen]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}
[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled] {
  cursor: default;
}

/*----------------------------------

common

----------------------------------*/
/*----------------------------------

mixin

----------------------------------*/
html {
  font-size: 62.5%;
}

body {
  color: #000;
  font-size: 1.6rem;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  line-height: 1.5;
}

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

@media (min-width: 750px) {
  .sp {
    display: none !important;
  }
}

a {
  color: #000;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 750px) {
  a:hover {
    opacity: 0.7;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

svg {
  vertical-align: middle;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 50px 0;
  z-index: 5;
}
@media (max-width: 749px) {
  .header {
    padding: 20px 0;
  }
}
.header_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 50px;
}
@media (max-width: 749px) {
  .header_inner {
    padding: 0 20px;
  }
}
.header_logo {
  width: 120px;
}
@media (max-width: 749px) {
  .header_logo {
    width: 60px;
  }
}
.header_logo a {
  display: block;
}

/*----------------------------------

home

----------------------------------*/
/*----------------------------------

mixin

----------------------------------*/
.section {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  scroll-snap-align: start;
}
.section_01 {
  background-image: url(../img/section_01_bg.jpg);
}
@media (max-width: 749px) {
  .section_01 {
    background-image: url(../img/section_01_bg_sp.jpg);
  }
}
.section_02 {
  background-image: url(../img/section_02_bg.jpg);
}
@media (max-width: 749px) {
  .section_02 {
    background-image: url(../img/section_02_bg_sp.jpg);
  }
}
.section_03 {
  background-image: url(../img/section_03_bg.jpg);
}
@media (max-width: 749px) {
  .section_03 {
    background-image: url(../img/section_03_bg_sp.jpg);
  }
}
.section_04 {
  background-image: url(../img/section_04_bg.jpg);
}
@media (max-width: 749px) {
  .section_04 {
    background-image: url(../img/section_04_bg_sp.jpg);
  }
}
.section_05 {
  background-image: url(../img/section_05_bg.jpg);
}
@media (max-width: 749px) {
  .section_05 {
    background-image: url(../img/section_05_bg_sp.jpg);
  }
}
.section_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  max-width: 1060px;
  height: 100%;
  margin: 0 auto;
  padding: 0 50px;
}
@media (max-width: 749px) {
  .section_inner {
    padding: 0 20px;
  }
}
.section .scroll_button {
  position: absolute;
  bottom: 22px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 5;
}
.section .scroll_button_00 {
  width: 39px;
  height: 37px;
}
.section .scroll_button_01 {
  width: 295px;
  height: 84px;
}
.section .scroll_button_02 {
  width: 139px;
  height: 64px;
}
.section .scroll_button_03 {
  width: 39px;
  height: 37px;
}
.section .scroll_button_04 {
  width: 136px;
  height: 71px;
}
.section .scroll_button a {
  display: block;
}
.section .scroll_button a img {
  -webkit-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.62));
          filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.62));
}

#fullpage {
  height: 100vh;
  height: 100dvh;
  -webkit-scroll-snap-type: y mandatory;
      -ms-scroll-snap-type: y mandatory;
          scroll-snap-type: y mandatory;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.section .scroll_button {
  opacity: 1 !important;
  visibility: visible !important;
}
@media (max-width: 749px) {
  .section .scroll_button {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media (max-width: 749px) {
  .section .scroll_button img {
    display: block;
    width: 80%;
    margin: 0 auto;
  }
}

.section_00 {
  position: relative;
  overflow: hidden;
}
.section_00 video {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 177.77777778vh;
  height: 56.25vw;
  min-height: 100%;
  min-width: 100%;
}

.section_01_title {
  max-width: 960px;
  width: 56.229vw;
  position: relative;
  top: -120px;
}
@media (max-width: 749px) {
  .section_01_title {
    width: auto;
    max-width: auto;
    top: -37.3333333333vw;
  }
}
.section_01_title img {
  -webkit-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.62));
          filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.62));
}

.section_02 {
  overflow: hidden;
}
.section_02_title {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 450px;
}
@media (max-width: 749px) {
  .section_02_title {
    max-width: auto;
    top: 64px;
  }
}
@media (max-width: 749px) {
  .section_02_title img {
    display: block;
    width: 80%;
    margin: 0 auto;
  }
}
.section_02 .section_inner {
  position: relative;
}
@media (min-width: 750px) {
  .section_02 .door_scroller {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 63.5416666667vw;
  }
}
@media (max-width: 749px) {
  .section_02 .door_scroller {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: calc(100% + 40px);
    height: 100%;
    margin-left: -20px;
    margin-right: -20px;
    padding: 0 13.3333333333vw;
    overflow-x: auto;
  }
}
.section_02 .door_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 8.3333333333vw;
}
@media (max-width: 749px) {
  .section_02 .door_list {
    gap: 0;
    width: 220vw;
  }
}
.section_02 .door_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 15.625vw;
  max-width: 300px;
  z-index: 5;
  cursor: pointer;
}
@media (max-width: 749px) {
  .section_02 .door_item {
    width: 67vw;
    max-width: unset;
  }
}
.section_02 .door_item_letter img {
  width: auto;
  height: 5.5vw;
  max-height: 75px;
}
@media (max-width: 749px) {
  .section_02 .door_item_letter img {
    height: 17.0666666667vw;
    max-height: 64px;
  }
}
.section_02 .door_item_door {
  position: relative;
  width: 100%;
  padding-bottom: 23.0729166667vw;
}
@media (max-width: 749px) {
  .section_02 .door_item_door {
    width: 54.1333333333vw;
    max-width: 480px;
    margin-top: -10px;
    padding-bottom: 80vw;
  }
}
.section_02 .door_item_frame {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 2;
}
.section_02 .door_item_board {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transform-origin: left;
          transform-origin: left;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.section_02 .door_item_bottom {
  width: 100%;
  margin-top: -1.1458333333vw;
}
.section_02 .door_item_bottom img {
  width: 100%;
  -webkit-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.62));
          filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.62));
}
@media (max-width: 749px) {
  .section_02 .door_item_bottom img {
    display: block;
    width: 88%;
    margin: 0 auto;
  }
}

.section_03_title {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 749px) {
  .section_03_title {
    top: 64px;
  }
}
.section_03_title img {
  -webkit-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.62));
          filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.62));
}
.section_03_movie {
  position: relative;
  width: 100%;
  margin-top: 52px;
  padding-bottom: 56.25%;
  overflow: hidden;
}
@media (max-width: 749px) {
  .section_03_movie {
    margin-top: 10px;
  }
}
.section_03_movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section_03_movie_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 63.5416666667vw;
}
@media (max-width: 749px) {
  .section_03_movie_wrap {
    top: 55%;
    width: 89.335vw;
  }
}
.section_03_movie_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0 50px;
}
@media (max-width: 749px) {
  .section_03_movie_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.section_03_movie_items {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 26px;
}
@media (max-width: 749px) {
  .section_03_movie_items {
    width: 100%;
    gap: 5px;
  }
}
@media (max-width: 749px) {
  .section_03_movie_items img {
    display: block;
    width: 15%;
    margin: 0 auto;
  }
}

.section_04 .credit {
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  margin: auto;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  z-index: 5;
}
@media (max-width: 749px) {
  .section_04 .credit {
    bottom: 10px;
  }
}

@media (min-width: 750px) {
  .section_05 .door_scroller {
    top: 52%;
  }
}
@media (max-width: 749px) {
  .section_05 .door_scroller {
    margin-top: 20px;
  }
}
.section_05 .door_item06 .door_item_bottom img {
  height: 80%;
}
@media (max-width: 749px) {
  .section_05 .door_item06 .door_item_bottom img {
    height: 75%;
  }
}

.door_item_movie {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.2);
          transform: scale(0.2);
  z-index: 50;
}
.door_item_movie_container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1060px;
  height: 100vh;
  margin: 0 auto;
  padding: 0 50px;
}
.door_item_movie .movie_box {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}
.door_item_movie .movie_box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.door_item_movie .movie_close {
  width: 36px;
  margin: 32px auto 0;
  cursor: pointer;
}