@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins:ital,wght@0,500;0,700;1,600;1,700&display=swap");
.anim {
  backface-visibility: hidden;
  will-change: transform;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.anim--slow {
  animation-duration: 1.75s !important;
}

.anim--delay {
  animation-delay: 1s !important;
}

.anim-hide {
  opacity: 0;
}

.anim-fadeIn {
  opacity: 0;
}
.anim-fadeIn.onAnim {
  animation: fadeIn 1.75s ease 0s 1 alternate forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.anim-fadeUp {
  opacity: 0;
}
.anim-fadeUp.onAnim {
  animation: fadeUp 1.75s ease 0s 1 alternate forwards;
}

@keyframes fadeLeft {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.anim-fadeLeft.onAnim {
  animation: fadeLeft 1.75s ease 0s 1 alternate forwards;
}

@keyframes fadeRight {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.anim-fadeRight.onAnim {
  animation: fadeRight 1.75s ease 0s 1 alternate forwards;
}

.main-content {
  max-width: 425px;
  margin: 0 auto;
}
@media all and (max-width: 1024px) {
  .main-content {
    margin-left: 0;
  }
}
@media all and (max-width: 640px) {
  .main-content {
    max-width: 100%;
  }
}

.mainHeader {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
}
@media all and (min-width: 641px) {
  .mainHeader {
    max-width: 425px;
    left: 0;
  }
}
@media all and (min-width: 641px) and (min-width: 1025px) {
  .mainHeader {
    right: auto;
    left: 50%;
    translate: -50% 0;
  }
}

.spBT {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 1.875rem;
  right: 0.9375rem;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  z-index: 999;
  padding: 0;
}
.spBT.top {
  opacity: 0;
  transition: all 0.3s ease 0.75s;
}
.spBT.top.loaded {
  opacity: 1;
}
.spBT__barWrap {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 0.125rem;
  translate: 0 -30%;
}
.spBT__barWrap span {
  height: 0.125rem;
  background-color: #000;
  width: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transition: all 0.2s ease 0s;
}
.spBT__barWrap span:hover {
  text-decoration: none;
}
.spBT__barWrap span:first-child {
  translate: 0 0.625rem;
}
.spBT__barWrap span:last-child {
  translate: 0 -0.625rem;
}
.spBT.active .spBT__barWrap span:first-child {
  translate: 0 0;
  rotate: 40deg;
}
.spBT.active .spBT__barWrap span:nth-child(2) {
  opacity: 0;
}
.spBT.active .spBT__barWrap span:last-child {
  translate: 0 0;
  rotate: -40deg;
}

.gNav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  z-index: 990;
  opacity: 0;
  transform: translateY(-102%);
  transition: opacity 0.4s ease 0s, transform 0s ease 0.4s;
}
.gNav.active {
  transition: opacity 0.4s ease 0s, transform 0s ease 0s;
  opacity: 1;
  transform: translateY(0%);
}
.gNav:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 3.125rem;
  left: 0;
  background-color: #FDDE24;
}
.gNav__logo {
  position: absolute;
  top: 2rem;
  left: 50%;
  translate: -50% 0;
  width: 15rem;
}
.gNav__inner {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 10;
  padding: 5rem 1.25rem 3.125rem;
  overflow: auto;
}
.gNav__content {
  margin: auto 0;
  width: 100%;
}
.gNav__mainNav {
  display: flex;
  width: 100%;
  flex-direction: column;
  padding: 0.9375rem 0;
  margin: 0 auto;
  max-width: 15.9375rem;
}
.gNav__mainNav__item {
  position: relative;
  font-weight: bold;
  font-size: 1.75rem;
}
.gNav__mainNav__item > a {
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.2s ease 0s;
  color: #000;
  font-weight: 900;
  padding: 0.625rem 0;
}
.gNav__mainNav__item > a:hover {
  text-decoration: none;
}
@media (hover: hover) {
  .gNav__mainNav__item > a:hover {
    background-color: #000;
    color: #FDDE24;
  }
}
.gNav__mainNav__item > a:active {
  background-color: #000;
  color: #FDDE24;
}
.gNav__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.875rem;
  gap: 2.5rem;
}
.gNav__footer .insta {
  width: 2.5rem;
  padding: 0.3125rem;
}
.gNav__footer .lang {
  display: flex;
}
.gNav__footer .lang li:first-child .glink:before {
  display: none;
}
.gNav__footer .lang .glink {
  padding: 0 0.6em;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9375rem;
  position: relative;
  font-weight: bold;
}
.gNav__footer .lang .glink:before {
  content: "";
  width: 0.125rem;
  height: 0.8em;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 50%;
  translate: -50% -45%;
  transform: skew(-15deg);
}
.gNav__footer .lang .glink img {
  display: none;
}

a {
  color: #000;
}
@media (hover: hover) {
  a:hover {
    text-decoration: underline;
  }
}

a[rel="noreferrer noopener"] {
  text-decoration: underline;
}

html {
  font-size: 16px;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}
@media all and (max-width: 640px) {
  html {
    font-size: 3.7328vw;
  }
}

body {
  font-size: 16px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 2;
  color: #000;
  overscroll-behavior: none;
  background-color: #fff;
}
body.hide {
  overflow: hidden;
}
body figure {
  margin: 0;
}
@media all and (max-width: 640px) {
  body {
    font-size: 3.7328vw !important;
  }
}

img {
  height: auto;
}

button,
select {
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
}

.o_sp {
  display: none !important;
}

.o_sp2 {
  display: none !important;
}

.hiddenBox {
  overflow: hidden;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

@media all and (min-width: 641px) {
  .text-right-pc {
    text-align: right;
  }
}

@media all and (max-width: 1024px) {
  body {
    font-size: 16px;
  }
}
@media all and (max-width: 1180px) {
  .o_large {
    display: none !important;
  }
}

@media all and (max-width: 1024px) {
  .o_pc {
    display: none !important;
  }
}

@media all and (max-width: 640px) {
  .o_sp {
    display: block !important;
  }
}
@media all and (max-width: 560px) {
  .o_sp2 {
    display: block !important;
  }
  .no_sp2 {
    display: none !important;
  }
}
.color-key {
  color: #FDDE24;
}

.color-white {
  color: #fff;
}

.box404 {
  padding: 8.125rem 0;
  background-color: #fff;
  position: relative;
  z-index: 5;
}

.inner {
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  position: relative;
  z-index: 5;
}

.common-bt {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.0625rem;
  line-height: 1.2;
  padding: 1.5em 1em;
  border: 0.0625rem solid #000;
  color: #000;
  transition: all 0.2s ease 0s;
}
.common-bt:hover {
  text-decoration: none;
}
@media (hover: none) {
  .common-bt {
    transition: none !important;
  }
}
@media (hover: hover) {
  .common-bt:hover {
    color: #fff;
    background-color: #000;
  }
}
.common-bt:active {
  color: #fff;
  background-color: #000;
}
.common-bt--white {
  border-color: #fff;
  color: #fff;
}
@media (hover: none) {
  .common-bt--white {
    transition: none !important;
  }
}
@media (hover: hover) {
  .common-bt--white:hover {
    color: #000;
    background-color: #fff;
  }
}
.common-bt--white:active {
  color: #000;
  background-color: #fff;
}

.slide-text-left {
  position: relative;
  left: -1.5625rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
  font-weight: bold;
  line-height: 1.4;
  font-size: 1.125rem;
}
.slide-text-left.small {
  font-size: 1.0625rem;
}
.slide-text-left.onAnim .slide-text-left__item:before {
  scale: 1 1;
}
.slide-text-left.onAnim .slide-text-left__item .text {
  opacity: 1;
}
.slide-text-left__item {
  padding: 0.55em 1.5625rem 0.65em;
  color: #fff;
  position: relative;
}
.slide-text-left__item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  transform-origin: left center;
  scale: 0 1;
  transition: scale 0.8s ease 0s;
}
.slide-text-left__item .text {
  position: relative;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.5s ease 0.5s;
}
.slide-text-left__item:nth-child(2):before {
  transition-delay: 0.5s;
}
.slide-text-left__item:nth-child(2) .text {
  transition-delay: 1s;
}
.slide-text-left__item:nth-child(3):before {
  transition-delay: 1s;
}
.slide-text-left__item:nth-child(3) .text {
  transition-delay: 1.5s;
}
.slide-text-left__item:nth-child(4):before {
  transition-delay: 1.5s;
}
.slide-text-left__item:nth-child(4) .text {
  transition-delay: 2s;
}

.slide-text-left {
  position: relative;
  left: -1.5625rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
  font-weight: bold;
  line-height: 1.4;
  font-size: 1.125rem;
}
.slide-text-left.onAnim .slide-text-left__item:before {
  scale: 1 1;
}
.slide-text-left.onAnim .slide-text-left__item .text {
  opacity: 1;
}
.slide-text-left__item {
  padding: 0.55em 1.5625rem 0.65em;
  color: #fff;
  position: relative;
}
.slide-text-left__item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  transform-origin: left center;
  scale: 0 1;
  transition: scale 0.8s ease 0s;
}
.slide-text-left__item .text {
  position: relative;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.5s ease 0.5s;
}
.slide-text-left__item:nth-child(2):before {
  transition-delay: 0.5s;
}
.slide-text-left__item:nth-child(2) .text {
  transition-delay: 1s;
}
.slide-text-left__item:nth-child(3):before {
  transition-delay: 1s;
}
.slide-text-left__item:nth-child(3) .text {
  transition-delay: 1.5s;
}
.slide-text-left__item:nth-child(4):before {
  transition-delay: 1.5s;
}
.slide-text-left__item:nth-child(4) .text {
  transition-delay: 2s;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.fz-lg {
  font-size: 3.25rem;
  line-height: 1.15;
}

.fz-lg2 {
  font-size: 2.875rem;
  line-height: 1.15;
}

.fz14 {
  font-size: 0.875em;
}

.fz20 {
  font-size: 1.25em;
}

.lh2 {
  line-height: 2;
}

.lh3 {
  line-height: 3;
}

.fw-normal {
  font-weight: normal;
}

.flex-start {
  display: flex;
  justify-content: flex-start;
}

.flex-end {
  display: flex;
  justify-content: flex-end;
}

.flex-center {
  display: flex;
  justify-content: center;
}

.right-img {
  overflow: hidden;
  border-radius: 1rem 0 0 1rem;
  position: relative;
  right: -1.5625rem;
  margin-left: auto;
  width: 18.125rem;
}
.right-img img {
  width: 100%;
}

.left-img {
  overflow: hidden;
  border-radius: 0 1rem 1rem 0;
  position: relative;
  left: -1.5625rem;
  margin-right: auto;
  width: 18.125rem;
}
.left-img img {
  width: 100%;
}

.mb-lg {
  margin-bottom: 3.125rem;
}

.mb-md {
  margin-bottom: 1.875rem;
}

.mb-min {
  margin-bottom: 1.25rem;
}

.toModalContent {
  display: none;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 999;
  display: none;
}
@media all and (min-width: 641px) {
  .modal {
    max-width: 425px;
  }
}
@media all and (min-width: 641px) and (min-width: 1025px) {
  .modal {
    right: auto;
    left: 50%;
    translate: -50% 0;
  }
}

.modal-wrap {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media all and (min-width: 641px) {
  .modal-wrap {
    max-width: 425px;
  }
}
@media all and (min-width: 641px) and (min-width: 1025px) {
  .modal-wrap {
    right: auto;
    left: 50%;
    translate: -50% 0;
  }
}

.modal-inner {
  background: white;
  width: calc(100% - 2.5rem);
  overflow: auto;
  display: flex;
  flex-direction: column;
  position: relative;
  max-height: calc(100vh - 10rem);
  padding: 1.25rem 0;
}

.modal-content-wrap {
  padding: 2.5rem 1.25rem 6.875rem;
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.modal-btm-close {
  all: unset;
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  display: block;
  width: 6.5625rem;
  color: #FDDE24;
  font-size: 0.75rem;
  border: 0.0625rem solid #FDDE24;
  padding: 0.25em;
  text-align: center;
  border-radius: 4em;
  z-index: 10;
  cursor: pointer;
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  translate: -50% 0;
}

p {
  font-size: 0.9375rem;
}

.top-fv {
  width: 100%;
  position: fixed;
  top: 0;
  overflow: hidden;
  z-index: 30;
  min-height: 25rem;
  height: calc(100vh + 5.625rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 3.75rem;
  transition: all 0s ease 0.75s;
  box-sizing: border-box;
  max-width: 425px;
}
@media all and (max-width: 1024px) {
  .top-fv {
    margin-right: 0;
  }
}
@media all and (max-width: 640px) {
  .top-fv {
    max-width: 100%;
  }
}
.top-fv__spacer {
  width: 100%;
  min-height: 25rem;
  height: calc(100vh + 5.625rem);
  padding-bottom: 3.75rem;
  box-sizing: border-box;
  max-width: 425px;
}
@media all and (max-width: 1024px) {
  .top-fv__spacer {
    margin-right: 0;
  }
}
@media all and (max-width: 640px) {
  .top-fv__spacer {
    max-width: 100%;
  }
}
.top-fv__logo {
  position: absolute;
  top: 2rem;
  left: 50%;
  translate: -50% 0;
  width: 15rem;
  opacity: 0;
  transition: opacity 0s ease 0.75s;
}
.top-fv__lead {
  text-align: center;
  font-size: 2.875rem;
  line-height: 1.2;
  margin-bottom: 0.3em;
  opacity: 0;
  transition: opacity 0s ease 0.75s;
}
.top-fv__text {
  font-size: 1.125rem;
  opacity: 0;
  transition: opacity 0s ease 0.75s;
}
.top-fv:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  top: 0;
  left: 0;
  transform: translateX(-105%);
  z-index: 50;
}
.top-fv.onAnim {
  background-color: #FDDE24;
}
.top-fv.onAnim:after {
  animation: slidePauseSlide 1.5s ease-in-out;
}
.top-fv.onAnim .top-fv__logo, .top-fv.onAnim .top-fv__lead, .top-fv.onAnim .top-fv__text {
  opacity: 1;
}

@keyframes slidePauseSlide {
  0% {
    transform: translateY(105%);
  }
  40% {
    transform: translateY(0);
  }
  60% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-105%);
  }
}
.top-content {
  position: relative;
  z-index: 50;
  font-weight: bold;
}
.top-content:before {
  content: "";
  height: calc(100% - 5.625rem);
  width: 100%;
  bottom: 0;
  left: 0;
  position: absolute;
  background-color: #FDDE24;
}

.top-about {
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
  margin-top: -5.625rem;
  position: relative;
}
.top-about:before {
  content: "";
  background-color: #fff;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  translate: 105% 0;
  transition: translate 0.5s ease 0s, border-radius 1s ease 0s;
}
.top-about.onAnim:before {
  translate: 0% 0;
  border-radius: 6.875rem 0 0 0;
}

.top-storyWrap__img {
  position: sticky;
  top: 0;
  left: 0;
}

.top-story {
  padding-top: 4.375rem;
  margin-top: -5.625rem;
  position: relative;
  z-index: 3;
}
.top-story:before {
  content: "";
  height: calc(100% - 6.25rem);
  width: 100%;
  bottom: 0;
  left: 0;
  position: absolute;
  background-color: #fff;
}
.top-story__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.top-story__bg:before {
  content: "";
  background-color: #FDDE24;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  translate: -105% 0;
  transition: translate 0.5s ease 0s, border-radius 1s ease 0s;
}
.top-story.onAnim .top-story__bg:before {
  translate: 0% 0;
  border-radius: 0 6.875rem 0 0;
}
.top-story__container {
  position: relative;
}
.top-story__next {
  z-index: 5;
  position: absolute;
  right: -0.625rem;
  line-height: 1;
  top: 10rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  transition: all 0.2s ease 0s;
  cursor: pointer;
  transition: all 0.2s ease 0s;
}
.top-story__next:hover {
  text-decoration: none;
}
.top-story__next:hover {
  text-decoration: none;
}
.top-story__next:after {
  content: "";
  width: 0.8125rem;
  height: 1.5625rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/common/ic_arrow.svg);
}
@media (hover: hover) {
  .top-story__next:hover {
    translate: 10% 0;
  }
}
.top-story__next:active {
  translate: 10% 0;
}
.top-story__prev {
  z-index: 5;
  position: absolute;
  left: -0.625rem;
  line-height: 1;
  top: 10rem;
  display: flex;
  align-items: center;
  text-align: right;
  gap: 0.625rem;
  transition: all 0.2s ease 0s;
  cursor: pointer;
  transition: all 0.2s ease 0s;
}
.top-story__prev:hover {
  text-decoration: none;
}
.top-story__prev:hover {
  text-decoration: none;
}
.top-story__prev:before {
  content: "";
  width: 0.8125rem;
  height: 1.5625rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/common/ic_arrow.svg);
  scale: -1 1;
}
@media (hover: hover) {
  .top-story__prev:hover {
    translate: -10% 0;
  }
}
.top-story__prev:active {
  translate: -10% 0;
}
.top-story__content {
  display: none;
}
.top-story__content.current {
  display: block;
  animation: fadeIn 0.5s ease 0s 1 alternate forwards;
}
.top-story__header {
  margin-bottom: 1.875rem;
}
.top-story__header .label {
  position: relative;
  left: -1.5625rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 0.9375rem;
}
.top-story__header .label.onAnim .item:before {
  scale: 1 1;
}
.top-story__header .label.onAnim .item .text {
  opacity: 1;
}
.top-story__header .label .item {
  padding: 0.35em 1.5625rem 0.45em;
  color: #fff;
  position: relative;
}
.top-story__header .label .item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  transform-origin: left center;
  scale: 0 1;
  transition: scale 0.8s ease 0s;
}
.top-story__header .label .item .text {
  position: relative;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.5s ease 0.5s;
  display: flex;
  align-items: baseline;
  gap: 0.9375rem;
}
.top-story__header .label .item .text .num {
  font-size: 2em;
  line-height: 1.3;
  translate: 0 5%;
}
.top-story__nav {
  position: relative;
}
.top-story__map {
  position: relative;
  pointer-events: none;
  margin: 0 auto;
  width: 22.5rem;
}
.top-story__map > img {
  width: 100%;
}
.top-story__map__name {
  text-align: center;
  font-size: 0.6875rem;
  line-height: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 5.625rem;
  height: 5.625rem;
  transform-origin: right bottom;
  scale: 0;
  transition: all 0.5s ease 0.5s;
}
.top-story__map__name:before {
  content: "";
  width: 110%;
  height: 110%;
  position: absolute;
  left: 0;
  top: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/top/map-balloon.svg);
}
.top-story__map__name span {
  position: relative;
  z-index: 5;
}
.top-story__map__name.kita-shinagawa {
  top: 47.5%;
  left: 34%;
}
.top-story__map.onAnim .top-story__map__name {
  scale: 1;
}
.top-story__sections {
  margin-bottom: 3.75rem;
}
.top-story__sections:last-child {
  margin-bottom: 9px;
}
.top-story__slide {
  width: calc(100% + 3.125rem);
  position: relative;
  left: -1.5625rem;
}
.top-story__slide .swiper-wrapper {
  transition-timing-function: linear !important;
}
.top-story__slide .swiper-slide {
  aspect-ratio: 80/53;
}
.top-story__slide .swiper-slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.top-story__movie {
  width: calc(100% + 3.125rem);
  position: relative;
  left: -1.5625rem;
}
.top-story__movie a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
@media (hover: none) {
  .top-story__movie a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .top-story__movie a:hover .img img {
    scale: 1.1;
    filter: brightness(0.8);
  }
}
.top-story__movie a:active .img img {
  scale: 1.1;
  filter: brightness(0.8);
}
.top-story__movie .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 5;
  color: #fff;
  gap: 1.25rem;
  font-size: 1.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  text-align: center;
}
.top-story__movie .content .heading {
  text-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
}
.top-story__movie .content .icon {
  width: 3.125rem;
  height: 3.75rem;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.top-story__movie .img {
  position: relative;
  aspect-ratio: 13/19;
  overflow: hidden;
}
.top-story__movie .img img {
  transition: all 0.2s ease 0s;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.top-story__movie .img img:hover {
  text-decoration: none;
}
.top-story__cast-and-staff__section {
  width: calc(100% + 3.125rem);
  position: relative;
  left: -1.5625rem;
  display: grid;
  grid-template-columns: 3rem 1fr;
  border-top: 0.0625rem solid #000;
  border-bottom: 0.0625rem solid #000;
  line-height: 1.75;
}
.top-story__cast-and-staff__section + .top-story__cast-and-staff__section {
  border-top: 0;
}
.top-story__cast-and-staff__section .heading {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
  border-right: 0.0625rem solid #000;
  font-size: 1.125em;
}
.top-story__cast-and-staff__section .heading span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  position: sticky;
  top: 1.875rem;
  margin-left: 0.55em;
}
.top-story__cast-and-staff__section .content {
  padding: 1.5625rem 0.9375rem;
  border-bottom: 0.0625rem solid #000;
}
.top-story__cast-and-staff__section .content:last-child {
  border-bottom: 0;
}
.top-story__cast-and-staff__section .name {
  font-size: 1.75rem;
  margin-bottom: 0.4em;
  line-height: 1.2;
}
.top-story__cast-and-staff__section .box {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0.9375rem;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.top-tourWrap__img {
  position: sticky;
  top: 0;
  left: 0;
}

.top-tour {
  padding-top: 4.375rem;
  margin-top: -5.625rem;
  position: relative;
  z-index: 3;
}
.top-tour__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.top-tour__bg:before {
  content: "";
  background-color: #fff;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  translate: 105% 0;
  transition: translate 0.5s ease 0s, border-radius 1s ease 0s;
}
.top-tour.onAnim .top-tour__bg:before {
  translate: 0% 0;
  border-radius: 6.875rem 0 0 0;
}
.top-tour__section {
  width: calc(100% + 3.125rem);
  position: relative;
  left: -1.5625rem;
  display: grid;
  grid-template-columns: 3rem 1fr;
  border-top: 0.0625rem solid #000;
  border-bottom: 0.0625rem solid #000;
  line-height: 2;
}
.top-tour__section + .top-tour__section {
  border-top: 0;
}
.top-tour__section .heading {
  padding-top: 1.5625rem;
  padding-bottom: 1.5625rem;
  border-right: 0.0625rem solid #000;
  font-size: 1.125em;
}
.top-tour__section .heading span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  position: sticky;
  top: 1.875rem;
  margin-left: 0.55em;
}
.top-tour__section .content {
  padding: 1.5625rem 1.5625rem 1.5625rem 0.9375rem;
  border-bottom: 0.0625rem solid #000;
}
.top-tour__section .content.has-img {
  padding-bottom: 0;
}
.top-tour__section .content:last-child {
  border-bottom: 0;
}
.top-tour__section .heading2 {
  padding: 0.55em 1.5625rem 0.65em 0.65em;
  width: calc(100% + 1.5625rem);
  color: #fff;
  position: relative;
  margin-bottom: 1rem;
  font-size: 1.125em;
}
.top-tour__section .heading2.onAnim:before {
  scale: 1 1;
}
.top-tour__section .heading2.onAnim span {
  opacity: 1;
}
.top-tour__section .heading2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  transform-origin: right center;
  scale: 0 1;
  transition: scale 0.8s ease 0s;
}
.top-tour__section .heading2 span {
  position: relative;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.5s ease 0.5s;
}
.top-tour__section .list {
  font-size: 0.9em;
}
.top-tour__section .list .row {
  display: flex;
}
.top-tour__section .list .row dt {
  flex-shrink: 0;
  min-width: 2.75em;
  margin-right: 0.5em;
  position: relative;
  padding-right: 0.3em;
}
.top-tour__section .list .row dt.en {
  min-width: 5.5em;
}
.top-tour__section .list .row dt:after {
  content: ":";
  position: absolute;
  right: 0;
}
.top-tour__section .images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 1.25rem;
  width: calc(100% + 2.5rem);
  position: relative;
  left: -0.9375rem;
}
.top-tour__section .images figure {
  position: relative;
  aspect-ratio: 1/1.28;
}
.top-tour__section .images figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.top-tour__section .images .img1 {
  border-top: 0.0625rem solid #000;
  border-right: 0.0625rem solid #000;
}
.top-tour__section .images .img2 {
  border-top: 0.0625rem solid #000;
  border-right: 0.0625rem solid #000;
}

.top-philosophy {
  padding-top: 4.375rem;
}
.top-philosophy__goals {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
  font-weight: bold;
  line-height: 1.4;
  margin: 0.625rem 0;
}
.top-philosophy__goals.onAnim .item:before {
  scale: 1 1;
}
.top-philosophy__goals.onAnim .item .text {
  opacity: 1;
}
.top-philosophy__goals .item {
  padding: 0.55em 0.5em 0.65em;
  position: relative;
  font-size: 0.9em;
}
.top-philosophy__goals .item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform-origin: left center;
  scale: 0 1;
  transition: scale 0.8s ease 0s;
}
.top-philosophy__goals .item .text {
  position: relative;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.5s ease 0.5s;
}
.top-philosophy__goals .item:nth-child(2):before {
  transition-delay: 0.25s;
}
.top-philosophy__goals .item:nth-child(2) .text {
  transition-delay: 0.75s;
}
.top-philosophy__goals .item:nth-child(3):before {
  transition-delay: 0.5s;
}
.top-philosophy__goals .item:nth-child(3) .text {
  transition-delay: 1s;
}
.top-philosophy__goals .item:nth-child(4):before {
  transition-delay: 0.75s;
}
.top-philosophy__goals .item:nth-child(4) .text {
  transition-delay: 1.25s;
}
.top-philosophy__goals .item:nth-child(5):before {
  transition-delay: 1s;
}
.top-philosophy__goals .item:nth-child(5) .text {
  transition-delay: 1.5s;
}
.top-philosophy__terms {
  display: flex;
  flex-direction: column;
  gap: 1em;
  font-size: 0.9375rem;
}
.top-philosophy__terms li {
  display: flex;
}
.top-philosophy__terms li:before {
  content: "";
  width: 1.75rem;
  height: 1.5625rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/common/ic_check.svg);
  flex-shrink: 0;
  margin-right: 0.5em;
  margin-top: 0.3em;
}
.top-philosophy__image-illust {
  width: calc(100% + 3.125rem);
  position: relative;
  left: -1.5625rem;
}

.faq-list__q {
  margin-top: 1.875rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.625rem;
  line-height: 1.4;
  font-size: 0.925em;
  border-bottom: 0.0625rem solid #000;
  padding-bottom: 0.2em;
  cursor: pointer;
  transition: all 0.2s ease 0s;
}
.faq-list__q:hover {
  text-decoration: none;
}
.faq-list__q:first-child {
  margin-top: 0;
}
@media (hover: none) {
  .faq-list__q {
    transition: none !important;
  }
}
@media (hover: hover) {
  .faq-list__q:hover {
    background-color: rgba(0, 0, 0, 0.06);
  }
}
.faq-list__q:active {
  background-color: rgba(0, 0, 0, 0.06);
}
.faq-list__q .q {
  flex-shrink: 0;
  font-size: 1.75em;
}
.faq-list__q .text {
  flex: 1;
}
.faq-list__q .arrow {
  transition: all 0.2s ease 0s;
  flex-shrink: 0;
  width: 1.625rem;
  height: 1rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/common/ic_down.svg);
}
.faq-list__q .arrow:hover {
  text-decoration: none;
}
.faq-list__q.active .arrow {
  scale: 1 -1;
}
.faq-list__a {
  padding-top: 0.8em;
  display: none;
}

.top-application {
  padding-top: 5rem;
  padding-bottom: 8.125rem;
}

.mainFooter {
  background-color: #000;
  padding: 1.875rem 0;
  position: relative;
  z-index: 40;
  color: #fff;
}
.mainFooter a {
  color: #fff;
}
.mainFooter__logo {
  margin: 0 auto 3.4375rem;
  width: 15rem;
}
.mainFooter__nav {
  margin-bottom: 1.875rem;
}
.mainFooter__nav__list {
  display: flex;
  flex-direction: column;
  gap: 0.95em;
  line-height: 1.2;
  font-size: 1.1em;
}
.mainFooter__nav__list a {
  color: #fff;
  transition: all 0.2s ease 0s;
}
.mainFooter__nav__list a.insta {
  display: flex;
  width: 2.25rem;
  filter: invert(1);
}
.mainFooter__nav__list a:hover {
  text-decoration: none;
}
@media (hover: none) {
  .mainFooter__nav__list a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .mainFooter__nav__list a:hover {
    opacity: 0.8;
  }
}
.mainFooter__nav__list a:active {
  opacity: 0.8;
}
.mainFooter__lang ul {
  margin-right: -0.4em;
  display: flex;
  justify-content: flex-end;
}
.mainFooter__lang ul li:first-child .glink:before {
  display: none;
}
.mainFooter__lang ul .glink {
  padding: 0 0.6em;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9375rem;
  position: relative;
  font-weight: bold;
  color: #fff;
}
.mainFooter__lang ul .glink:before {
  content: "";
  width: 0.125rem;
  height: 0.8em;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  translate: -50% -45%;
  transform: skew(-15deg);
}
.mainFooter__lang ul .glink img {
  display: none;
}
.mainFooter__info {
  margin-top: 2.5rem;
  margin-bottom: 1.875rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 0.85rem;
  gap: 0.9375rem;
  color: #fff;
}
.mainFooter__info a {
  color: #fff;
}
.mainFooter__info .logo {
  width: 10.625rem;
}
.mainFooter__info .text {
  font-size: 0.9em;
}
.mainFooter__info .nav {
  display: flex;
  justify-content: flex-start;
  gap: 1.5em;
}
.mainFooter__info .nav a {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.mainFooter__info .nav a:after {
  content: "";
  width: 0.9em;
  aspect-ratio: 1/1;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/common/ic_external.svg);
}
.mainFooter__credit {
  text-align: center;
  font-size: 0.75rem;
  margin-top: 0.9375rem;
  display: block;
}

.pc-left {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 20;
  width: calc((100% - 425px) / 2);
  display: flex;
  font-size: min(16px, 2.25vh);
  overflow: hidden;
}
@media (max-width: 1280px) {
  .pc-left {
    font-size: min(14px, 2.25vh);
  }
}
@media all and (max-width: 1024px) {
  .pc-left {
    display: none;
  }
}
@media all and (max-width: 640px) {
  .pc-left {
    display: none;
  }
}
.pc-left__inner {
  max-width: 28.25rem;
  width: 100%;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  padding: 5.625rem 1.5625rem 3.75rem;
  position: relative;
  justify-content: space-between;
  grid-auto-flow: 2.5rem;
}
@media all and (max-width: 1024px) {
  .pc-left__inner {
    margin-right: auto;
  }
}
.pc-left__inner > * {
  position: relative;
  z-index: 5;
}
.pc-left__lead {
  max-height: 70vh;
  display: flex;
}
.pc-left__lead img {
  width: auto;
  height: 100%;
}
.pc-left__logo {
  display: flex;
}

.pc-right {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  z-index: 20;
  width: calc((100% - 425px) / 2);
  display: flex;
  font-size: min(16px, 2.25vh);
  overflow: hidden;
}
@media (max-width: 1280px) {
  .pc-right {
    font-size: min(14px, 2.25vh);
  }
}
@media all and (max-width: 1024px) {
  .pc-right {
    width: calc(100% - 425px);
  }
}
@media all and (max-width: 640px) {
  .pc-right {
    display: none;
  }
}
.pc-right__inner {
  justify-content: flex-end;
  max-width: 28.25rem;
  width: 100%;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 5.625rem 2.1875rem 3.75rem;
  position: relative;
}
.pc-right__inner > * {
  position: relative;
  z-index: 5;
}
.pc-right__main {
  width: 100%;
  max-width: 16.5rem;
}
.pc-right__nav {
  margin-bottom: 1.875rem;
}
.pc-right__nav__list {
  display: flex;
  flex-direction: column;
  gap: 1.15em;
  line-height: 1.2;
  font-size: 1.15em;
}
.pc-right__nav__list a {
  color: #fff;
  transition: all 0.2s ease 0s;
}
.pc-right__nav__list a.insta {
  display: flex;
  width: 1.875rem;
  filter: invert(1);
}
.pc-right__nav__list a:hover {
  text-decoration: none;
}
@media (hover: none) {
  .pc-right__nav__list a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .pc-right__nav__list a:hover {
    opacity: 0.8;
  }
}
.pc-right__nav__list a:active {
  opacity: 0.8;
}
.pc-right__btWrap {
  max-width: 100%;
  width: 264px;
  font-weight: bold;
}
@media all and (max-width: 1024px) {
  .pc-right__btWrap {
    width: 100%;
  }
}
.pc-right__lang {
  position: absolute;
  top: 2.5rem;
  right: 1.875rem;
}
.pc-right__lang ul {
  margin-right: -0.4em;
  display: flex;
  justify-content: flex-end;
}
.pc-right__lang ul li:first-child .glink:before {
  display: none;
}
.pc-right__lang ul .glink {
  padding: 0 0.6em;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9375rem;
  position: relative;
  font-weight: bold;
  color: #fff;
}
.pc-right__lang ul .glink:before {
  content: "";
  width: 0.125rem;
  height: 0.8em;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  translate: -50% -45%;
  transform: skew(-15deg);
}
.pc-right__lang ul .glink img {
  display: none;
}

.pc-movie {
  position: fixed;
  background-color: #000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pc-movie:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.pc-movie iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
@media all and (max-width: 1024px) {
  .pc-movie iframe {
    transform: translate(-25%, -50%);
  }
}
@media all and (max-width: 640px) {
  .pc-movie iframe {
    display: none;
  }
}
@media all and (max-width: 640px) {
  .pc-movie {
    display: none;
  }
}