@charset "UTF-8";


/*---------------------------------------------------------------*\
$header menu
\*---------------------------------------------------------------*/

/* header menu - modal settings */
.header_menu .modal__overlay {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, .7);
  z-index: 100;
}

.header_menu .modal__container {
  width: 88%;
  max-width: 960px;
  max-height: auto;
  z-index: 200;
  position: relative;
  border-radius: 40px;
}

.header_menu .modal__content {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header_menu .micromodal-slide[aria-hidden="false"] .modal__close {
  animation: fadeIn;
  animation-delay: 0.5s;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

.modal__close {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  cursor: pointer;
}

.square_btn {
  display: block;
  position: relative;
  width: 32px;
  height: 32px;
}

.square_btn::before, .square_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 32px;
  border-radius: 80px;
  background-color: #13C6FF;
}

.square_btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.square_btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}


.micromodal-slide {
  visibility: hidden;
  padding: 0;
}

.micromodal-slide.is-open {
  visibility: visible;
}


.micromodal-slide .menu_top,
.micromodal-slide .menu_vision,
.micromodal-slide .menu_crew,
.micromodal-slide .menu_title,
.micromodal-slide .menu_movie {
  opacity: 0;
  transform: translate3d(0, 100%, 0);
}


.micromodal-slide[aria-hidden="false"] .menu_top {
  animation: fadeInUp;
  animation-delay: 0.2s;
  animation-duration: .5s;
  animation-fill-mode: forwards;
}

.micromodal-slide[aria-hidden="true"] .menu_top {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.micromodal-slide[aria-hidden="false"] .menu_vision {
  animation: fadeInUp;
  animation-delay: 0.4s;
  animation-duration: .5s;
  animation-fill-mode: forwards;
}

.micromodal-slide[aria-hidden="true"] .menu_vision {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.micromodal-slide[aria-hidden="false"] .menu_crew {
  animation: fadeInUp;
  animation-delay: 0.6s;
  animation-duration: .5s;
  animation-fill-mode: forwards;
}

.micromodal-slide[aria-hidden="true"] .menu_crew {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.micromodal-slide[aria-hidden="false"] .menu_title {
  animation: fadeInUp;
  animation-delay: 0.8s;
  animation-duration: .5s;
  animation-fill-mode: forwards;
}

.micromodal-slide[aria-hidden="true"] .menu_title {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.micromodal-slide[aria-hidden="false"] .menu_movie {
  animation: fadeInUp;
  animation-delay: 1.0s;
  animation-duration: .5s;
  animation-fill-mode: forwards;
}

.micromodal-slide[aria-hidden="true"] .menu_movie {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
  animation: mmfadeIn 0.6s cubic-bezier(0.34, 0.07, 0.095, 0.995);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
  animation: mmfadeOut 0.6s cubic-bezier(0.34, 0.07, 0.095, 0.995);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
  animation: mmslideIn 0.4s cubic-bezier(0.73, 0.26, 0.25, 1.62);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
  animation: mmslideOut 0.4s cubic-bezier(.37, .41, .04, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

/* animation */
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes mmslideIn {
  from {
    opacity: 0;
    transform: scale(1.3);
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes mmslideOut {
  from {
    opacity: 1;
    transform: scale(1);
  }

  to {
    opacity: 0;
    transform: scale(1.3);
  }
}


@media screen and (max-width: 600px) {

  .header_menu .modal__container {
    border-radius: 28px;
  }

  .square_btn {
    width: 20px;
    height: 20px;
  }

  .square_btn::before, .square_btn::after {
    height: 20px;
    width: 3px;
  }
}



/*---------------------------------------------------------------*\
$header 
\*---------------------------------------------------------------*/

header {
  width: 100%;
  position: absolute;
  z-index: 2;
  margin: 0 auto;
  right: 0;
  left: 0;
}

/* menu icon */
header .menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 230px;
  aspect-ratio: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  background: linear-gradient(45deg, #A52036, #A52036);
  z-index: 2;
}

header .menu .menu_icon {
  cursor: pointer;
  width: fit-content;
  gap: 10px;
  position: absolute;
  right: 28px;
  top: 28px;
  margin: auto;
}

header .menu .border {
  width: 64px;
  height: 6px;
}


@media screen and (max-width: 960px) {

  /* menu icon */
  header .menu {
    width: 180px;
  }

  header .menu .menu_icon {
    gap: 9px;
    top: 22px;
    right: 22px;
  }

  header .menu .border {
    width: 56px;
    height: 5px;
  }

  header .menu .text {
    font-size: 18px;
  }
}


@media screen and (max-width: 600px) {

  /* menu icon */
  header .menu {
    width: 100px;
  }

  header .menu .menu_icon {
    gap: 4px;
    top: 20px;
    right: 12px;
  }

  header .menu .border {
    width: 28px;
    height: 3px;
  }

  header .menu .text {
    font-size: 10px;
    scale: .85;
  }
}



/*---------------------------------------------------------------*\
$inside menu
\*---------------------------------------------------------------*/

#inside {
  width: calc((100% - 32px));
  margin: 16px auto;
  padding: 48px;
  position: relative;
  border-radius: 32px;
}

/* upper content */
#inside .upper_content {
  width: calc((96% - 130px));
}

#inside .upper_content .logo {
  max-width: 300px;
  width: 80%;
}

/* middle content */
#inside .middle_content {
  width: calc((96% - 130px));
  border-top: solid 1px #2EA7EA;
  border-bottom: solid 1px #2EA7EA;
  padding: 64px 0;
  margin: 20px 0 0;
  gap: 40px;
}

#inside .middle_content .each_menu {
  gap: 16px;
  width: 180px;
}

#inside .middle_content .menu_jp {
  font-size: 20px;
}

#inside .middle_content .menu_en {
  font-size: 14px;
}

/* bottom content */
#inside .bottom_content {
  width: calc((96% - 130px));
  gap: 28px;
  margin: 40px 0;
}

#inside .bottom_content .sub_menu {
  font-size: 14px;
  gap: 6px;
}

#inside .bottom_content .icon_arrow {
  width: 14px;
}

/* right content */
#inside .right_content {
  position: absolute;
  width: 165px;
  height: 100%;
  top: 0;
  right: 0;
  flex-shrink: 0;
}

#inside .right_content .contact {
  width: 85px;
  height: 240px;
  border-radius: 80px;
  margin: 40px auto 0;
  gap: 8px;
}

#inside .right_content .icon_contact {
  width: 24px;
  margin: 0 auto;
}

#inside .right_content .text_contact {
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  font-size: 18px;
  margin: 0 4px 0 0;
}

#inside .right_content .page_top {
  width: 100%;
  height: 140px;
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 32px 0 0 0;
  gap: 8px;
}

#inside .right_content .page_top:before {
  position: absolute;
  display: block;
  content: '';
  background-image: url('../img/corner_radius_white_right_bottom.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 32px;
  aspect-ratio: 1/1;
  top: -32px;
  right: 0;
}

#inside .right_content .page_top:after {
  position: absolute;
  display: block;
  content: '';
  background-image: url('../img/corner_radius_white_right_bottom.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 32px;
  aspect-ratio: 1/1;
  bottom: 0px;
  left: -32px;
}


@media screen and (max-width: 960px) {}


@media screen and (max-width: 760px) {

  #inside .right_content {
    width: 135px;
  }

  #inside .right_content .page_top {
    height: 110px;
  }
}


@media screen and (max-width: 600px) {

  #inside {
    width: calc((100% - 14px));
    margin: 7px auto;
    padding: 28px;
    border-radius: 22px;
  }

  /* upper content */
  #inside .upper_content {
    width: calc((100% - 88px));
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  #inside .upper_content .logo {
    width: 90px;
  }

  /* middle content */
  #inside .middle_content {
    width: calc((100% - 88px));
    padding: 48px 0;
    gap: 32px;
  }

  #inside .middle_content .each_menu {
    gap: 12px;
  }

  #inside .middle_content .menu_jp {
    font-size: 15px;
  }

  #inside .middle_content .menu_en {
    font-size: 12px;
  }

  /* bottom content */
  #inside .bottom_content {
    width: calc((100% - 88px));
    flex-direction: column;
    align-items: start;
    margin: 40px 0 10px;
    gap: 20px;
  }

  #inside .bottom_content .sub_menu {
    font-size: 12px;
  }

  /* right content */
  #inside .right_content {
    width: 86px;
  }

  #inside .right_content .contact {
    width: 56px;
    height: 160px;
    margin: 16px auto 0;
  }

  #inside .right_content .icon_contact {
    width: 18px;
  }

  #inside .right_content .text_contact {
    font-size: 14px;
  }

  #inside .right_content .page_top {
    height: 80px;
    border-radius: 20px 0 0 0;
  }

  #inside .right_content .page_top:before {
    width: 20px;
    top: -20px;
  }

  #inside .right_content .page_top:after {
    width: 20px;
    left: -20px;
  }
}