.m-menu-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  visibility: hidden;
  opacity: 0;
  z-index: 600;
  transition: all 0.2s ease-in-out;
}
.m-menu-bg.on {
  visibility: visible;
  opacity: 1;
}

.m-menu {
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  width: 100%;
  height: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  background: white;
  z-index: 601;
  transition: all 0.2s ease-in-out;
}
.m-menu.on {
  transform: translateX(0);
}
.m-menu .m-head {
  flex: 0 0 auto;
  width: 100%;
  height: 50px;
  padding: 0 16px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
}
.m-menu .m-head .m-menu-close {
  width: 36px;
  height: 36px;
  cursor: pointer;
}
.m-menu .m-head .m-menu-close > svg {
  width: 100%;
  height: 100%;
  fill: black;
}
.m-menu .m-body {
  flex: 1 1 auto;
}
.m-menu .m-body .m-global-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.m-menu .m-body .m-global-nav > a {
  width: 100%;
  height: 40px;
  padding: 0 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #2F8569;
}

body {
  padding-top: 210px;
}
@media (max-width: 1280px) {
  body {
    padding-top: 130px;
  }
}
@media (max-width: 1024px) {
  body {
    padding-top: 70px;
  }
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 16px -10px black;
  background: white;
  z-index: 450;
}
.header .h-top {
  width: 100%;
  height: 130px;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  border-bottom: 1px solid #f0f0f0;
}
@media (max-width: 1280px) {
  .header .h-top {
    height: 70px;
  }
}
.header .h-top .container {
  width: 100%;
  height: 100%;
  max-width: 1720px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header .h-top .container .go-to-startup {
  flex: 0 0 auto;
  height: 60%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
@media (max-width: 1024px) {
  .header .h-top .container .go-to-startup {
    display: none;
  }
}
@media (max-width: 768px) {
  .header .h-top .container .go-to-startup {
    gap: 8px;
  }
}
.header .h-top .container .go-to-startup > img {
  flex: 0 0 auto;
  width: auto;
  height: 100%;
}
.header .h-top .container .go-to-startup .startup-bubble {
  position: relative;
}
.header .h-top .container .go-to-startup .startup-bubble > img {
  width: auto;
  height: 40px;
}
@media (max-width: 1280px) {
  .header .h-top .container .go-to-startup .startup-bubble > img {
    height: 32px;
  }
}
.header .h-top .container .go-to-startup .startup-bubble .startup-text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding-left: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  color: white;
}
@media (max-width: 1280px) {
  .header .h-top .container .go-to-startup .startup-bubble .startup-text {
    padding-left: 25px;
    font-size: 14px;
  }
}
.header .h-top .container .h-logo {
  display: inline-block;
  width: auto;
  height: 70%;
}
.header .h-top .container .h-logo > img {
  width: auto;
  height: 100%;
}
.header .h-top .container .go-to-colab {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
@media (max-width: 1024px) {
  .header .h-top .container .go-to-colab {
    display: none;
  }
}
@media (max-width: 768px) {
  .header .h-top .container .go-to-colab {
    gap: 8px;
  }
}
.header .h-top .container .go-to-colab > img {
  width: auto;
  height: 45px;
}
@media (max-width: 1280px) {
  .header .h-top .container .go-to-colab > img {
    height: 36px;
  }
}
@media (max-width: 768px) {
  .header .h-top .container .go-to-colab > img {
    height: 24px;
  }
}
.header .h-top .container .go-to-colab .colab-text {
  display: flex;
  flex-direction: column;
}
.header .h-top .container .go-to-colab .colab-text > span {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: black;
}
@media (max-width: 768px) {
  .header .h-top .container .go-to-colab .colab-text > span {
    font-size: 13px;
  }
}
.header .h-top .container .go-to-colab .colab-text > b {
  font-size: 32px;
  line-height: 1;
  color: black;
}
@media (max-width: 1280px) {
  .header .h-top .container .go-to-colab .colab-text > b {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .header .h-top .container .go-to-colab .colab-text > b {
    font-size: 20px;
  }
}
.header .h-top .container .m-menu-open {
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .header .h-top .container .m-menu-open {
    display: block;
  }
}
.header .h-top .container .m-menu-open > svg {
  width: 100%;
  height: 100%;
  fill: black;
}
.header .h-bottom {
  width: 100%;
  height: 80px;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 1280px) {
  .header .h-bottom {
    height: 60px;
  }
}
@media (max-width: 1024px) {
  .header .h-bottom {
    display: none;
  }
}
@media (max-width: 768px) {
  .header .h-bottom {
    height: 48px;
  }
}
.header .h-bottom .container {
  width: 100%;
  height: 100%;
  max-width: 1720px;
}
.header .h-bottom .container .h-global-nav {
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
}
.header .h-bottom .container .h-global-nav > a {
  position: relative;
  flex: 0 0 auto;
  width: 200px;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  line-height: 1;
  color: black;
  text-align: center;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1280px) {
  .header .h-bottom .container .h-global-nav > a {
    width: 120px;
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .header .h-bottom .container .h-global-nav > a {
    width: 90px;
    font-size: 16px;
  }
}
.header .h-bottom .container .h-global-nav > a:hover {
  background: #D7F9EE;
}

.footer {
  width: 100%;
  height: 230px;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #032318;
}
@media (max-width: 1280px) {
  .footer {
    height: 200px;
  }
}
@media (max-width: 1024px) {
  .footer {
    height: auto;
    padding: 40px 20px;
  }
}
.footer .container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 1024px) {
  .footer .container {
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }
}
.footer .container .left {
  flex: 0 0 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
}
@media (max-width: 1440px) {
  .footer .container .left {
    flex: 0 0 60%;
  }
}
@media (max-width: 1280px) {
  .footer .container .left {
    gap: 30px;
  }
}
@media (max-width: 1024px) {
  .footer .container .left {
    flex-direction: column;
    gap: 20px;
  }
}
.footer .container .left .f-logo {
  display: inline-block;
  width: auto;
  height: auto;
}
.footer .container .left .f-logo > img {
  width: auto;
  height: 80px;
}
@media (max-width: 1280px) {
  .footer .container .left .f-logo > img {
    height: 60px;
  }
}
@media (max-width: 768px) {
  .footer .container .left .f-logo > img {
    height: 40px;
  }
}
.footer .container .left .f-infos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px 0;
}
@media (max-width: 1024px) {
  .footer .container .left .f-infos {
    justify-content: center;
  }
}
.footer .container .left .f-infos .item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
@media (max-width: 1280px) {
  .footer .container .left .f-infos .item {
    gap: 8px;
  }
}
.footer .container .left .f-infos .item:not(:last-of-type) {
  padding-right: 12px;
  margin-right: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}
@media (max-width: 1280px) {
  .footer .container .left .f-infos .item:not(:last-of-type) {
    padding-right: 8px;
    margin-right: 8px;
  }
}
.footer .container .left .f-infos .item .name {
  flex: 0 0 auto;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: white;
}
@media (max-width: 1280px) {
  .footer .container .left .f-infos .item .name {
    font-size: 14px;
  }
}
.footer .container .left .f-infos .item .con {
  flex: 0 0 auto;
  font-size: 18px;
  line-height: 1;
  color: white;
}
@media (max-width: 1280px) {
  .footer .container .left .f-infos .item .con {
    font-size: 14px;
  }
}
.footer .container .right {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}
@media (max-width: 1024px) {
  .footer .container .right {
    align-items: center;
    gap: 12px;
  }
}
.footer .container .right .social-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.footer .container .right .social-nav > a {
  display: inline-block;
}
.footer .container .right .social-nav > a > img {
  width: 30px;
  height: 30px;
}
.footer .container .right .copyright {
  font-size: 13px;
  font-weight: 300;
  line-height: 1;
  color: white;
  opacity: 0.7;
}

.policy-modal-background {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  visibility: hidden;
  opacity: 0;
  z-index: 900;
  transition: 0.2s all ease-in-out;
}
.policy-modal-background.on {
  visibility: visible;
  opacity: 1;
}

.policy-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  max-width: 0;
  max-height: 0;
  padding: 50px 30px;
  background: white;
  border: 2px solid black;
  opacity: 0;
  visibility: hidden;
  z-index: 901;
  transition: 0.2s all ease-in-out;
}
.policy-modal.on {
  max-width: 80vw;
  max-height: 80vh;
  opacity: 1;
  visibility: visible;
}
.policy-modal .container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.policy-modal .container .modal-title-area {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.policy-modal .container .modal-title-area > img {
  width: auto;
  height: 28px;
}
.policy-modal .container .modal-title-area > h1 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  color: black;
  word-break: keep-all;
}
.policy-modal .container .modal-content-area {
  position: relative;
  width: 100%;
  flex: 1 1 auto;
  overflow: hidden;
}
.policy-modal .container .modal-content-area > p {
  width: 100%;
  height: 100%;
  padding: 10px;
  overflow: auto;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  word-break: keep-all;
}
.policy-modal .container .modal-content-area > p > em {
  font-weight: 600;
  font-size: 17px;
  color: #2B7FBB;
}
.policy-modal .container .modal-content-area > p > span {
  position: relative;
  padding-left: 16px;
}
.policy-modal .container .modal-content-area > p > span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 9px;
  height: 9px;
  border: 3px solid #2B7FBB;
  border-radius: 500rem;
  background: transparent;
}
.policy-modal .container .modal-content-area::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 100%;
  width: 100%;
  height: 5px;
  background: transparent;
  box-shadow: 0 0 13px 0 rgba(0, 0, 0, 0.3);
}
.policy-modal .container .modal-content-area::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 5px;
  background: transparent;
  box-shadow: 0 0 13px 0 rgba(0, 0, 0, 0.3);
}
.policy-modal .container .confirm-close-modal {
  padding: 10px 25px;
  border: 2px solid black;
  background: white;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: black;
  border-radius: 500rem;
  transition: 0.2s all ease-in-out;
}
.policy-modal .container .confirm-close-modal:hover {
  background: black;
  color: white;
}

@media (max-width: 1280px) {
  .policy-modal {
    width: 90%;
    height: 90%;
  }
  .policy-modal.on {
    max-width: 90vw;
    height: 90vh;
  }
}
@media (max-width: 768px) {
  .policy-modal {
    padding: 30px 16px;
  }
  .policy-modal .container .modal-title-area > img {
    height: 22px;
  }
  .policy-modal .container .modal-title-area > h1 {
    font-size: 22px;
  }
  .policy-modal .container .modal-content-area > p {
    font-size: 13px;
  }
  .policy-modal .container .confirm-close-modal {
    padding: 6px 18px;
    font-size: 14px;
  }
}/*# sourceMappingURL=common.css.map */