:root {
  --orange: #f7941d;
  --dark: #222;
  --medium: #444;
  --mild: #888;
  --border: #aaa;
  --bg: #f8f8f8;
  --blue: #0ad8f8;
  --green: #2cff5d;
}

.hide-default {
  display: none !important;
}

.blind {
  display: block;
  width: 0;
  height: 0;
  overflow: hidden;
  text-indent: -624.9375rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(3, 27, 47, 0)),
    color-stop(87%, #000e19)
  );
  background: linear-gradient(0deg, rgba(3, 27, 47, 0) 0%, #000e19 87%);
}
.header > .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 10rem;
}
.header.type2 {
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(240, 240, 240, 0)),
    color-stop(87%, #f0f0f0)
  );
  background: linear-gradient(0deg, rgba(240, 240, 240, 0) 0%, #f0f0f0 87%);
}
.header.type2 .gnb-depth1 {
  color: #031b2f;
}
.header.type2 .gnb-depth2 {
  background-color: #fff;
}
.header.type2 .gnb-depth2 a {
  color: #031b2f;
}
.header.type2 .header-lang button,
.header.type2 .header-lang a {
  color: #031b2f;
}
.header.type2 .header-lang button svg path,
.header.type2 .header-lang a svg path {
  stroke: #031b2f;
}

.header-lang {
  position: absolute;
  width: 5.5rem;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(53.75rem, -1.25rem);
  transform: translate(53.75rem, -1.25rem);
  z-index: 2;
}
.header-lang::before {
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-left: 2px solid var(--green);
  border-right: 2px solid #f0f0f0;
  background-image: -webkit-gradient(
      linear,
      left top,
      right top,
      from(var(--green)),
      color-stop(48.5%, var(--blue)),
      color-stop(87%, #f0f0f0)
    ),
    -webkit-gradient(linear, left top, right top, from(var(--green)), color-stop(48.5%, var(--blue)), color-stop(87%, #f0f0f0));
  background-image: linear-gradient(
      90deg,
      var(--green) 0%,
      var(--blue) 48.5%,
      #f0f0f0 87%
    ),
    linear-gradient(90deg, var(--green) 0%, var(--blue) 48.5%, #f0f0f0 87%);
  background-size: 100% 2px;
  background-position: 0 100%, 0 0;
  background-repeat: no-repeat;
  background-clip: padding-box;
  border-radius: 0.5rem;
}
.header-lang button,
.header-lang a {
  width: 5rem;
  height: 2.5rem;
  color: #fff;
  padding-inline: 0.625rem 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 1.25rem;
  font-weight: 400;
}
.header-lang a {
  display: none;
}
.header-lang svg {
  width: 0.875rem;
  margin-left: auto;
}

.gnb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.gnb > div {
  position: relative;
}

.gnb-depth1 {
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
  padding: 22px;
}

.gnb-depth2 {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.4);
  padding: 1.25rem;
  border-radius: 0.9375rem;
  left: 50%;
  bottom: -1.375rem;
  -webkit-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
  display: none;
}
.gnb-depth2 a {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  display: block;
}
.gnb-depth2 a:not(:last-child) {
  margin-bottom: 1.25rem;
}
.gnb-depth2 a:hover {
  text-decoration: underline;
}

.header-logo {
  width: 15.625rem;
}
.header-logo img {
  width: 100%;
}

.footer {
  background-color: #031b2f;
  padding-top: 45px;
}
.footer.type2 {
  background-color: #f0f0f0;
}
.footer.type2 .top-btn {
  color: #031b2f;
}
.footer.type2 .top-btn span {
  background-image: url(/assets/images/common/ico_top-arrow02.svg);
}
.footer.type2 .footer-group .logo svg path {
  fill: #031b2f;
}
.footer.type2 .footer-group .desc h6,
.footer.type2 .footer-group .desc p {
  color: #031b2f;
}

.footer .top-btn {
  color: #fff;
  font-size: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5625rem;
  margin-left: auto;
}
.footer .top-btn span {
  display: inline-block;
  width: 2.1875rem;
  height: 2.1875rem;
  background-image: url(/assets/images/common/ico_top-arrow01.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.footer .footer-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 7.5rem;
  padding-block: 1.5625rem 3.75rem;
}
.footer .footer-group .logo {
  display: inline-block;
  width: 18.625rem;
}
.footer .footer-group .logo svg {
  width: 100%;
}
.footer .footer-group .desc {
  margin-right: 6.25rem;
}
.footer .footer-group .desc:first-of-type {
  margin-left: auto;
  margin-right: 5.5625rem;
}
.footer .footer-group .desc h6 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 1.3125rem;
}
.footer .footer-group .desc p {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.65;
}
.footer .footer-group .copyright {
  margin-top: 3.75rem;
  color: #aeb0b0;
  font-size: 1.125rem;
  font-weight: 300;
}
.footer .footer-group .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.875rem;
}
.footer .footer-bottom video {
  width: 100%;
}

.hamburger,
.header-menu {
  display: none;
}

.only-mob {
  display: none;
}

.only-pc {
  display: block;
}

@media all and (max-width: 720px) {
  .only-mob {
    display: block;
  }
  .only-pc {
    display: none;
  }
  .gnb {
    display: none;
  }
  .header > .inner {
    height: auto;
    margin-top: 2.7912rem;
  }
  .header-logo {
    width: 13.4331rem;
  }
  .header-lang {
    width: 5.8209rem;
    top: 50%;
    right: 7.1644rem;
    -webkit-transform: translate(0, -1.4552rem);
    transform: translate(0, -1.4552rem);
    z-index: 2;
  }
  .header-lang button,
  .header-lang a {
    width: 5.8209rem;
    height: 2.9104rem;
    padding-inline: 0.7837rem;
    font-size: 1.3433rem;
  }
  .hamburger {
    display: block;
    width: 2.6866rem;
  }
  .hamburger img:first-child {
    display: block;
  }
  .hamburger img:last-child {
    display: none;
  }
  .header-menu {
    display: none;
    opacity: 0;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    padding: 13.2088rem 0;
    background-color: #f0f0f0;
    overflow-y: auto;
  }
  .header-menu nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 4.4775rem;
  }
  .header-menu nav > div {
    width: 100%;
  }
  .header-menu nav > div.active .menu-depth1 svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .header-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header-menu .menu-address {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 5.5969rem;
    padding-top: 3.3581rem;
    border-top: 1px solid #031b2f;
    gap: 3.3581rem;
  }
  .header-menu .menu-address b {
    color: #031b2f;
    font-size: 1.3433rem;
    font-weight: 400;
    line-height: 1.66;
  }
  .header-menu .menu-address p {
    margin-top: 1.625rem;
    color: #031b2f;
    font-size: 1.3433rem;
    font-weight: 300;
    line-height: 1.5;
  }
  .header-menu .menu-sns {
    gap: 2.2388rem;
    margin-top: 2.2219rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .header-menu .menu-sns a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 2.2388rem;
    height: 2.2388rem;
  }
  button.menu-depth1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 21.3137rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  button.menu-depth1 svg {
    width: 1.4104rem;
    height: 0.7053rem;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .menu-depth1 {
    color: #031b2f;
    font-size: 2.2388rem;
    font-weight: 400;
  }
  .menu-depth2 {
    background-color: #fff;
    margin-top: 2.2388rem;
    padding: 3.3581rem 1.6794rem;
    border-radius: 0.5597rem;
    display: none;
  }
  .menu-depth2 a {
    display: block;
    color: #031b2f;
    font-size: 1.7911rem;
    font-weight: 400;
  }
  .menu-depth2 a:not(:last-child) {
    margin-bottom: 3.3581rem;
  }
  .header.menu-on .header-menu {
    display: block;
    -webkit-animation: fadeIn 0.3s forwards;
    animation: fadeIn 0.3s forwards;
  }
  .header.menu-on .header-lang {
    display: none;
  }
  .header.menu-on .header-logo {
    background-image: url(/assets/images/common/ico_logo02.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  .header.menu-on .header-logo img {
    opacity: 0;
  }
  .header.menu-on .hamburger img:first-child {
    display: none;
  }
  .header.menu-on .hamburger img:last-child {
    display: block;
  }
  .footer .footer-group {
    margin-top: 7.8356rem;
    padding-block: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .footer .footer-bottom {
    height: 11.1937rem;
  }
  .footer .footer-group .desc:first-of-type {
    margin-left: 0;
    margin-right: 0;
  }
  .footer .footer-group .logo {
    margin-bottom: 4.5rem;
  }
  .footer .footer-group .logo img {
    width: 13.4331rem;
  }
  .footer .footer-group .desc {
    margin: 0;
  }
  .footer .footer-group .logo,
  .footer .footer-group .sns {
    width: 100%;
  }
  .footer .footer-group .sns {
    margin-top: 4.375rem;
    gap: 2.2388rem;
  }
  .footer .footer-group .sns a {
    width: 2.2388rem;
    height: 2.2388rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .footer .top-btn {
    font-size: 1.3433rem;
    gap: 1.125rem;
  }
  .footer .top-btn span {
    width: 2.7985rem;
    height: 2.7985rem;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
