@charset "UTF-8";


/*---------------------------------------------------------------*\
$underline
\*---------------------------------------------------------------*/

.page-content {
  position: relative;
}

.page-content::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  pointer-events: none;
  transition: background-color 0.2s ease, backdrop-filter 0.2s ease;
  opacity: 0;
}

.page-content.blur::after {
  background-color: rgba(0, 0, 0, 0.001);
  opacity: 1;
}


.test {
  width: 100%;
  padding: 40px 0 0;
}

/* buttons */
.test .buttons {
  gap: 20px;
}

.test .buttons .each_contact {
  width: 100%;
  border: solid 1px rgba(255, 255, 255, .1);
  padding: 10px 24px 10px 20px;
}

.test .buttons .each_contact a {
  width: 100%;
  height: 100%;
  gap: 24px;
}

.test .buttons .icon {
  width: 18px;
  flex-shrink: 0;
}

.test .buttons .subject {
  font-size: 16px;
  width: 100%;
}

.test .buttons .border {
  width: 1px;
  height: 48px;
  background-color: rgba(255, 255, 255, .1);
}

/* upper area */
.test .upper_area .menu_column {
  gap: 28px;
  padding: 32px 20px 0;
}

/* middle container */
.test .middle_container {
  padding: 48px 20px;
  border-top: solid 1px rgba(255, 255, 255, .2);
}

/* info container */
.test .info_container {
  width: 100%;
  justify-content: flex-start;
}

/* bottom area */
.test .bottom_area {
  border-top: solid 1px rgba(255, 255, 255, .2);
}

.test .bottom_area .left .copyright {
  color: #666;
}


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

  /* info container */
  .test .info_container {
    gap: 64px;
  }

  .test .info_container .menu_detail>ul {
    border-left: solid 1px rgba(255, 255, 255, .2);
    padding: 0 0 0 16px;
  }


  .test .info_container .each_detail a span {
    font-size: 15px;
  }

  .test .info_container .menu_column .icon {
    width: 15px;
  }
}


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

  .test {
    padding: 24px 0 0;
  }

  /* info container */
  .test .info_container .each_menu .subject {
    font-size: 15px;
  }

  .test .info_container .each_category_mag a span {
    font-size: 15px;
  }

  /* buttons */
  .test .buttons {
    flex-direction: column;
    gap: 16px;
  }

  .test .buttons .each_contact {
    width: 100%;
  }

  .test .buttons .subject {
    font-size: 14px;
  }

  .test .buttons .border {
    height: 40px;
  }
}


/*---------------------------------------------------------------*\
$modal menu
\*---------------------------------------------------------------*/

.modal_menu {
  padding: 100px 0 0;
  width: 100%;
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.modal_menu * {
  color: #fff;
}

/* modal overlay */
.modal_menu .modal__overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, .1);
  z-index: 10;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

/* modal container */
.modal_menu .modal__container {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 94%;
  max-height: 92%;
  z-index: 20;
  overflow: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background-color: rgba(0, 0, 0, .85);
  padding: 40px;
  gap: 24px;
}

.language_modal .modal__container {
  height: 180px;
}

.language_modal .modal__container .items {
  height: 100%;
  gap: 20px;
}

.language_modal .modal__container .each_item {
  position: relative;
}

.language_modal .modal__container .each_item:after {
  display: block;
  content: '';
  border-bottom: solid 1px rgba(255, 255, 255, .2);
  width: 100%;
  height: 1px;
  margin: 20px 0 0 0;
}

.language_modal .modal__container .each_item:last-of-type:after {
  display: none;
}

.language_modal .modal__container .each_item a {
  width: fit-content;
}

/* close button */
.modal__close {
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  right: 0;
  top: 0;
  cursor: pointer;
  position: absolute;
}

.square_btn {
  display: block;
  top: 24px;
  right: 24px;
  position: absolute;
  width: 20px;
  height: 20px;
  margin-left: auto;
  cursor: pointer;
}

.square_btn::before,
.square_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.5px;
  height: 20px;
  background-color: #fff;
}

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

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

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

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

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

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

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

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

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

/* .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);
} */

/* animation keyframes */


@keyframes mmfadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes mmslideIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  to {
    opacity: 0;
    transform: translateY(50px);
  }
}


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

  .modal_menu .modal__container {
    padding: 40px 28px;
  }
}


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

.header {
  display: flex;
  align-items: center;
  position: fixed;
  margin: auto;
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: solid 1px rgba(255, 255, 255, .2);
  padding: 12px 16px;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.header .wrap_content {
  width: 100%;
  height: auto;
  position: relative;
}

/* logo */
.header .logo_header {
  width: 150px;
}

/* PC menu nav */
.header .nav>ul {
  gap: 16px;
}

.header .each_menu {
  width: fit-content;
  height: 20px;
  cursor: pointer;
}

.header .inner_each_menu {
  position: relative;
}

.header .title {
  font-size: 15px;
}

.header .icon {
  width: 20px;
  aspect-ratio: 1/1;
}

/* triangle icon */
.header .triangle {
  width: 0;
  height: 0;
  margin-left: 8px;
  border-style: solid;
  border-width: 7px 4px 0 4px;
  border-color: #000 transparent transparent transparent;
}

/* language */
.header .language_pc .icon,
.header .language_sp .icon {
  margin: 0 6px 0 0;
}

/* language PC */
.header .language_pc .content_menu_services {
  width: 200px;
  right: 20%;
}

/* language SP */
.header .language_sp {
  display: none;
}

/* buttons */
.header .wrap_buttons {
  gap: 12px;
  margin: 0 0 0 4px;
}

/* button PC */
.header .button_pc {
  width: 180px;
  height: 52px;
}

.header .button_pc .subject {
  font-size: 15px;
}

/* menu SP */
.header .menu_header_sp {
  display: none;
  margin: auto;
  gap: 7px;
  cursor: pointer;
}

.header .menu_header_sp .dot {
  width: 22px;
  height: 3px;
  border-radius: 10px;
}

/* menu PC - hovered */
.header .drop_down_services:hover .content_menu_services {
  visibility: visible;
  opacity: 1;
}

.header .content_menu_services {
  width: 1000px;
  top: 100px;
  position: fixed;
  gap: 80px;
  right: 20px;
  margin: auto;
  box-shadow: 0px 40px 20px rgba(0, 0, 0, .3);
  padding: 40px;
  background-color: rgba(0, 0, 0, .9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 28px;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
}

.header .content_menu_services .wrap_heading {
  width: 200px;
  flex-shrink: 0;
  gap: 16px;
}

.header .content_menu_services .subtitle_header {
  font-size: 13px;
  color: #939393;
}

.header .content_menu_services .heading {
  font-size: 32px;
}

.header .content_menu_services .wrap_items {
  width: 100%;
  gap: 20px;
}

.header .content_menu_services .grid.column_4fr {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

header .content_menu_services .grid.column_3fr {
  grid-template-columns: 1fr 1fr 1fr;
}

.header .content_menu_services .thumbnail {
  object-fit: contain;
}

.header .content_menu_services .column_4fr .thumbnail {
  aspect-ratio: 1 / .85;
}

.header .content_menu_services .column_3fr .thumbnail {
  aspect-ratio: 1 / .5;
}

/* text only menu */
.header .content_menu_services.simple .wrap_items {
  grid-template-columns: unset;
  gap: 28px;
}

.header .content_menu_services.simple .each_item {
  border-bottom: solid 1px rgba(255, 255, 255, .2);
  padding: 0 0 28px 0;
  font-size: 16px;
}

.header .content_menu_services.simple .each_item:last-child {
  border-bottom: none;
  padding: 0;
}

.header .content_menu_services.simple .title_menu {
  font-size: 16px;
}

.header .each_item {
  gap: 8px;
  position: relative;
}

.header .each_item>a {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.header .content_menu_services .title_menu {
  font-size: 15px;
  font-weight: 560;
}

.header .content_menu_services .each_item:hover .title_menu {
  color: #23e000;
}


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

  header .button_pc {
    width: 150px !important;
  }
}


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

  /* PC menu nav */
  .header .each_menu:nth-of-type(1),
  .header .each_menu:nth-of-type(2),
  .header .each_menu:nth-of-type(3),
  .header .each_menu:nth-of-type(4),
  .header .each_menu:nth-of-type(5) {
    display: none;
  }

  /* SP menu icon */
  .header .menu_header_sp {
    display: flex;
  }

  .header .menu_header_sp .dots {
    gap: 4px;
  }

  /* language PC */
  .header .language_pc {
    display: none;
  }

  /* language SP */
  .header .language_sp {
    display: flex;
  }
}


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

  .header {
    padding: 16px;
  }

  /* buttons PC */
  .header .buttons_pc {
    display: none;
  }
}


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

  .header {
    padding: 12px;
  }

  .header .wrap_content {
    height: 24px;
  }

  /* logo */
  .header .logo_header {
    width: 120px;
  }

  .header .title {
    font-size: 13px;
  }

  .header .icon {
    width: 18px;
  }
}


/*---------------------------------------------------------------*\
$hover effect
\*---------------------------------------------------------------*/

.hover_motion {
  display: inline-flex;
  position: relative;
}

.hover_motion,
.hover_motion_white {
  position: relative;
}

.hover_motion:after {
  position: absolute;
  bottom: -8px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #3c3a3a;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
}

.hover_motion_white:after {
  position: absolute;
  bottom: -8px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
}

.hover_effect:hover .hover_motion:after,
.hover_effect:hover .hover_motion_white:after {
  transform-origin: left top;
  transform: scale(1, 1);
}