@charset "UTF-8";


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

.modal_menu .footer {
  width: 100%;
  margin: 40px auto 0;
}


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

  /* middle content */
  .modal_menu .footer .middle_content .wrap_sub_menu {
    height: auto;
    padding: 64px 0 0 0;
    border: none;
  }

  .modal_menu .footer .middle_content .sub_menu {
    flex-direction: column;
  }

  .modal_menu .footer .middle_content .back_top {
    display: none;
  }

  /* SP content */
  .modal_menu .footer .sp_content {
    display: flex;
    padding: 56px 0 0 0;
  }

  .modal_menu .footer .sp_content .sns {
    gap: 56px;
    position: relative;
  }
}


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

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

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

/* 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(0.73, 0.26, 0.25, 1.62) forwards;
}


/* 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 {
  width: calc(100% - 56px);
  max-width: 1500px;
  z-index: 20;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  right: 0;
  left: 0;
}

header .content {
  width: 100%;
}

header .logo_header {
  width: 140px;
}

header .menu_header {
  gap: 12px;
  position: fixed;
  right: 28px;
}

header .button_header {
  width: 210px;
  height: 64px;
  font-size: 17px;
  border-radius: 80px;
  -webkit-transition: all .15s;
  transition: all .15s;
  transition: opacity .1s, transform .1s;
  background-color: rgba(0, 0, 0, .6);
  border: solid 1px rgba(255, 255, 255, .4);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);

  &:hover {
    opacity: .9;
  }

  &:active {
    transform: scale(.9);
  }
}

header .menu_icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 10px;
  cursor: pointer;
  background-color: rgba(0, 0, 0, .6);
  border: solid 1px rgba(255, 255, 255, .4);
  -webkit-backdrop-filter: blur(36px);
  backdrop-filter: blur(36px);
}

header .inner_menu_icon {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
}

header .menu_icon_bar {
  width: 24px;
  margin: auto;
  height: 2px;
  background-color: #fff;
}


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

  header {
    width: calc(100% - 32px);
    margin: 16px auto 0;
  }

  header .menu_header {
    right: 16px;
  }

  header .menu_icon_bar {
    width: 20px;
  }

  header .logo_header {
    width: 120px;
  }

  header .menu_icon {
    width: 36px;
    height: 36px;
    display: flex;
  }

  header .inner_menu_icon {
    gap: 4px;
  }

  header .button_header {
    width: 120px;
    height: 40px;
    font-size: 13px;
  }
}