/* color */
.app-content-container {
  margin: 0 auto;
}

.app-header-wrapper {
  position: fixed;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, #141619 0%, rgba(4, 4, 5, 0.4) 100%);
  z-index: 100;
}
.app-header-wrapper .header-container {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  height: 100%;
  padding: 0 164px;
}
.app-header-wrapper .header-logo {
  position: absolute;
  left: 164px;
  top: 50%;
  transform: translateY(-50%);
}
.app-header-wrapper .header-logo a {
  display: block;
}
.app-header-wrapper .header-logo .pc-logo {
  width: 367px;
  height: 30px;
}
.app-header-wrapper .header-logo .mobile-logo {
  display: none;
}
.app-header-wrapper .header-logo .smallest-mobile-logo, .app-header-wrapper .header-logo .smallest-mobile-en-logo {
  display: none;
}
.app-header-wrapper .btn-info {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  position: relative;
  height: 40px;
  padding: 0 20px;
  font-size: 12px;
  font-weight: 700;
  color: #dadfe3;
  background: #33363b;
  border-radius: 999px;
  transition: all 0.2s;
}
.app-header-wrapper .btn-info:not(.disabled):hover {
  color: #ffffff;
  background: #6d767e;
}
.app-header-wrapper .btn-info:not(.disabled):active {
  color: #ffffff;
  background: #33363b;
}
.app-header-wrapper .btn-info.disabled {
  color: #33363b;
  background: #141619;
  pointer-events: none;
  cursor: not-allowed;
}
.app-header-wrapper .btn-info:nth-of-type(n + 2) {
  margin-left: 20px;
}
.app-header-wrapper .btn-info:nth-of-type(n + 2)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  width: 1px;
  height: 100%;
  background: #33363b;
}
.app-header-wrapper .lang-container {
  position: relative;
  width: 96px;
  height: 40px;
  margin-left: 41px;
  transition: all 0.2s;
}
.app-header-wrapper .lang-container .lang-txt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 96px;
  height: 40px;
  padding: 10px 8px 10px 16px;
  font-size: 12px;
  font-weight: 700;
  color: #dadfe3;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.app-header-wrapper .lang-container .lang-txt svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: #9ba2aa;
  transition: all 0.2s;
}
.app-header-wrapper .lang-container .lang-txt:hover {
  color: #ffffff;
  background: #141619;
  border-color: #33363b;
}
.app-header-wrapper .lang-container .lang-txt:hover svg {
  fill: #ffffff;
}
.app-header-wrapper .lang-container .lang-txt.on {
  background: #141619;
  border-color: #33363b;
}
.app-header-wrapper .lang-container .lang-txt.on svg {
  fill: #ffffff;
  transform: rotate(180deg);
}
.app-header-wrapper .lang-container .lang-section {
  position: absolute;
  left: 0;
  top: calc(100% + 2px);
  height: 0;
  overflow: hidden;
}
.app-header-wrapper .lang-container .lang-section .lang-txt {
  position: relative;
  color: #6d767e;
  background: #141619;
  border-color: #33363b;
}
.app-header-wrapper .lang-container .lang-section .lang-txt.cur {
  color: #ffffff;
}
.app-header-wrapper .lang-container .lang-section .lang-txt:nth-child(2) {
  margin-top: -2px;
}
.app-header-wrapper .lang-container .lang-section .lang-txt:hover {
  color: #ffffff;
  background: #33363b;
}

.contact-wrapper {
  padding: 140px 0;
  background: no-repeat center/contain;
  background-image: url("../assets/images/map.png"), radial-gradient(circle, rgb(33, 36, 39) 0%, rgba(4, 4, 5, 0.4) 60%);
}
.contact-wrapper .contact-section {
  margin: 0 auto;
}
.contact-wrapper .contact-section .contact-title {
  font-family: "Syncopate";
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}
.contact-wrapper .contact-section .contact-title .thin-title {
  font-weight: 400;
}
.contact-wrapper .contact-section .email-btn {
  display: flex;
  align-items: center;
  width: 500px;
  height: 56px;
  padding: 19px 20px;
  margin: 60px auto 0;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid #33363b;
  transition: all 0.2s;
}
.contact-wrapper .contact-section .email-btn svg {
  width: 18px;
  height: 18px;
  fill: #FF5A3C;
}
.contact-wrapper .contact-section .email-btn span {
  display: block;
  margin-left: 10px;
  font-weight: 500;
  font-size: 14px;
}
.contact-wrapper .contact-section .email-btn:hover, .contact-wrapper .contact-section .email-btn:active {
  border-color: #FF5A3C;
}
.contact-wrapper .contact-address {
  width: 500px;
  padding: 0 30px;
  margin: 40px auto 0;
}
.contact-wrapper .contact-address .address.address-us {
  margin-top: 40px;
}
.contact-wrapper .contact-address .address .address-title {
  padding: 10px 0;
  font-size: 12px;
  font-weight: 700;
  color: #868e96;
  border-bottom: 1px solid #868e96;
}
.contact-wrapper .contact-address .address .office {
  margin-top: 20px;
  font-size: 14px;
}
.contact-wrapper .contact-address .address .office p {
  font-weight: 500;
  color: #f2f4f7;
}
.contact-wrapper .contact-address .address .office span {
  display: block;
  margin-top: 8px;
  color: #868e96;
}

.app-footer-wrapper {
  padding: 32px 0;
  background: #0e1012;
}
.app-footer-wrapper .app-content-container {
  width: 1283px;
  max-width: none;
}
.app-footer-wrapper .app-content-container .footer-section-logo {
  display: flex;
  align-items: center;
}
.app-footer-wrapper .app-content-container .footer-section-logo svg {
  width: 18px;
  height: 18px;
  padding: 1.8px 0;
  flex-shrink: 0;
}
.app-footer-wrapper .app-content-container .footer-section-logo span {
  display: block;
  margin-left: 10px;
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  color: #dadfe3;
}
.app-footer-wrapper .app-content-container .footer-section-info {
  display: flex;
  justify-content: space-between;
}
.app-footer-wrapper .app-content-container .footer-section-info .footer-section-address {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  line-height: 18px;
  font-style: normal;
  color: #6d767e;
}
.app-footer-wrapper .app-content-container .footer-section-info .footer-section-address [class^=footer_info_] {
  display: none;
}
.app-footer-wrapper .app-content-container .footer-section-info .footer-section-address [class^=footer_info_]:nth-child(1) {
  display: block;
}
.app-footer-wrapper .app-content-container .footer-section-info .footer-section-address .term-btn {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin-top: 2px;
}
.app-footer-wrapper .app-content-container .footer-section-info .footer-section-address .term-btn a {
  font-weight: 600;
  transition: 0.2s color;
}
.app-footer-wrapper .app-content-container .footer-section-info .footer-section-address .term-btn a:hover {
  color: #FF5A3C;
}
.app-footer-wrapper .app-content-container .footer-section-info .footer-section-address .term-btn a:nth-child(n+2) {
  position: relative;
  margin-left: 21px;
}
.app-footer-wrapper .app-content-container .footer-section-info .footer-section-address .term-btn a:nth-child(n+2)::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 12px;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  background: #868e96;
  opacity: 0.5;
}
.app-footer-wrapper .app-content-container .footer-section-sns {
  display: flex;
  align-items: flex-end;
}
.app-footer-wrapper .app-content-container .footer-section-sns .footer-btn-section, .app-footer-wrapper .app-content-container .footer-section-sns .sns-list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.app-footer-wrapper .app-content-container .footer-section-sns .footer-btn-section a, .app-footer-wrapper .app-content-container .footer-section-sns .sns-list a {
  display: block;
  transition: all 0.2s;
}
.app-footer-wrapper .app-content-container .footer-section-sns .footer-btn-section .footer-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 20px;
  padding: 0 12px;
  margin-right: 26px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  color: #0e1012;
  background: #868e96;
  border-radius: 10px;
}
.app-footer-wrapper .app-content-container .footer-section-sns .footer-btn-section .footer-btn:hover {
  background: #FF5A3C;
}
.app-footer-wrapper .app-content-container .footer-section-sns .footer-btn-section .footer-btn:last-child::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -25px;
  width: 1px;
  height: 18px;
  background: #868e96;
  opacity: 0.5;
}
.app-footer-wrapper .app-content-container .footer-section-sns .sns-list li {
  width: 20px;
  height: 20px;
  margin-left: 26px;
}
.app-footer-wrapper .app-content-container .footer-section-sns .sns-list li svg {
  fill: #868e96;
  width: 100%;
  height: 100%;
  transition: all 0.2s;
}
.app-footer-wrapper .app-content-container .footer-section-sns .sns-list li a:hover svg {
  fill: #FF5A3C;
}

@media (max-width: 1439px) {
  .app-header-wrapper .header-container {
    max-width: 1200px;
    padding: 0 64px 0 80px;
  }
  .app-header-wrapper .header-logo {
    left: 80px;
  }
  .contact-wrapper {
    background: no-repeat center/contain;
    background-image: url("../assets/images/map.png"), radial-gradient(circle, rgb(33, 36, 39) 0%, rgba(4, 4, 5, 0.4) 60%);
  }
  .contact-wrapper .contact-section {
    padding: 140px 0;
    margin: 0 auto;
  }
  .contact-wrapper .contact-section .contact-title {
    font-family: "Syncopate";
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
  }
  .contact-wrapper .contact-section .contact-title .thin-title {
    font-weight: 400;
  }
  .contact-wrapper .contact-section .email-btn {
    display: flex;
    width: 500px;
    height: 56px;
    padding: 19px 20px;
    margin: 60px auto 0;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid #33363b;
    transition: all 0.2s;
  }
  .contact-wrapper .contact-section .email-btn svg {
    width: 18px;
    height: 18px;
    fill: #FF5A3C;
  }
  .contact-wrapper .contact-section .email-btn span {
    display: block;
    margin-left: 10px;
    font-size: 14px;
    line-height: 18px;
  }
  .contact-wrapper .contact-section .email-btn:hover, .contact-wrapper .contact-section .email-btn:active {
    border-color: #FF5A3C;
  }
  .contact-wrapper .contact-address .address .address-title {
    padding: 10px 0;
    font-size: 12px;
    font-weight: 700;
    color: #868e96;
    border-bottom: 1px solid #868e96;
  }
  .contact-wrapper .contact-address .address .office {
    margin-top: 20px;
    font-size: 14px;
  }
  .contact-wrapper .contact-address .address .office p {
    font-weight: 500;
    color: #f2f4f7;
  }
  .contact-wrapper .contact-address .address .office span {
    display: block;
    margin-top: 8px;
    color: #868e96;
  }
  .app-footer-wrapper .app-content-container {
    width: 1121px;
  }
  .app-footer-wrapper .app-content-container .footer-section-info .footer-section-address {
    white-space: inherit;
    word-break: keep-all;
    line-height: 18px;
  }
  .app-footer-wrapper .app-content-container .footer-section-info .footer-section-address [class^=footer_info_]:nth-child(1) {
    display: none;
  }
  .app-footer-wrapper .app-content-container .footer-section-info .footer-section-address [class^=footer_info_]:nth-child(2) {
    display: block;
  }
}
@media (max-width: 1199px) {
  .app-header-wrapper .header-container {
    max-width: 768px;
    padding: 0 40px;
  }
  .app-header-wrapper .header-logo {
    left: 40px;
  }
  .app-header-wrapper .header-logo a {
    height: 24px;
  }
  .app-header-wrapper .header-logo .pc-logo {
    width: 338px;
    height: 24px;
  }
  .app-header-wrapper .btn-info {
    height: 35px;
  }
  .app-header-wrapper .btn-info:nth-of-type(n + 2) {
    margin-left: 16px;
  }
  .app-header-wrapper .btn-info:nth-of-type(n + 2)::after {
    display: none;
  }
  .app-header-wrapper .lang-container {
    height: 35px;
  }
  .contact-wrapper {
    padding: 132px 0;
    background: no-repeat center/contain;
    background-image: url("../assets/images/map.png"), radial-gradient(50% 50% at 50% 50%, #1D1F21 0%, #000000 100%);
  }
  .app-footer-wrapper {
    padding: 48px 0;
  }
  .app-footer-wrapper .app-content-container {
    width: 591px;
  }
  .app-footer-wrapper .app-content-container .footer-section-info {
    flex-direction: column;
  }
  .app-footer-wrapper .app-content-container .footer-section-info .footer-section-address [class^=footer_info_]:nth-child(2) {
    display: none;
  }
  .app-footer-wrapper .app-content-container .footer-section-info .footer-section-address [class^=footer_info_]:nth-child(3) {
    display: block;
  }
  .app-footer-wrapper .app-content-container .footer-section-sns {
    margin-top: 50px;
  }
  .app-footer-wrapper .app-content-container .footer-section-sns .footer-btn-section .footer-btn {
    height: 20px;
    padding: 0 10px;
    margin-right: 30px;
    font-size: 11px;
  }
  .app-footer-wrapper .app-content-container .footer-section-sns .footer-btn-section .footer-btn:last-child {
    margin-right: 53px;
  }
  .app-footer-wrapper .app-content-container .footer-section-sns .sns-list {
    justify-content: space-between;
    width: 260px;
    margin-top: 0;
  }
  .app-footer-wrapper .app-content-container .footer-section-sns .sns-list li {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .app-header-wrapper {
    height: 60px;
  }
  .app-header-wrapper .header-container {
    padding: 0 28px 0 30px;
  }
  .app-header-wrapper .header-logo {
    left: 30px;
  }
  .app-header-wrapper .header-logo a {
    height: 20px;
  }
  .app-header-wrapper .header-logo .pc-logo {
    display: none;
  }
  .app-header-wrapper .header-logo .mobile-logo {
    display: block;
    width: 98px;
    height: 20px;
  }
  .app-header-wrapper .btn-info {
    height: 28px;
  }
  .app-header-wrapper .btn-info:nth-of-type(n + 2) {
    margin-left: 10px;
  }
  .app-header-wrapper .lang-container {
    margin-left: 10px;
    width: 70px;
    height: 28px;
    font-size: 10px;
    background: #141619;
  }
  .app-header-wrapper .lang-container .lang-txt {
    width: 70px;
    height: 28px;
    font-size: 10px;
    padding: 5px 5px 5px 12px;
    border: 1px solid #33363b;
  }
  .app-header-wrapper .lang-container .lang-txt svg {
    width: 18px;
    height: 18px;
    fill: #dadfe3;
  }
  .contact-wrapper {
    padding: 75px 0;
    background: none;
  }
  .contact-wrapper .contact-section .contact-title {
    font-size: 20px;
  }
  .contact-wrapper .contact-section .email-btn {
    width: 280px;
    height: 45px;
    padding: 13px 12px;
    margin: 43px auto 0;
  }
  .contact-wrapper .contact-address {
    width: 414px;
    padding: 0 67px;
    margin: 40px auto 0;
  }
  .contact-wrapper .contact-address .address.address-us {
    margin-top: 37px;
  }
  .contact-wrapper .contact-address .address .address-title {
    padding: 6px 0;
    font-size: 11px;
  }
  .contact-wrapper .contact-address .address .office {
    font-size: 12px;
  }
  .contact-wrapper .contact-address .address .office span {
    margin-top: 5px;
    font-size: 11px;
  }
  .app-footer-wrapper {
    padding: 25px 0;
  }
  .app-footer-wrapper .app-content-container {
    width: 366px;
    text-align: center;
  }
  .app-footer-wrapper .app-content-container .footer-section-logo {
    justify-content: center;
  }
  .app-footer-wrapper .app-content-container .footer-section-info {
    flex-direction: column;
  }
  .app-footer-wrapper .app-content-container .footer-section-info .footer-section-address [class^=footer_info_]:nth-child(3) {
    display: none;
  }
  .app-footer-wrapper .app-content-container .footer-section-info .footer-section-address [class^=footer_info_]:nth-child(4) {
    display: block;
  }
  .app-footer-wrapper .app-content-container .footer-section-info .footer-section-address .term-btn {
    justify-content: center;
  }
  .app-footer-wrapper .app-content-container .footer-section-sns {
    flex-direction: column;
    align-items: center;
    margin-top: 26px;
  }
  .app-footer-wrapper .app-content-container .footer-section-sns .footer-btn-section {
    justify-content: center;
  }
  .app-footer-wrapper .app-content-container .footer-section-sns .footer-btn-section .footer-btn {
    height: 20px;
    padding: 0 10px;
    margin-right: 0;
    font-size: 11px;
  }
  .app-footer-wrapper .app-content-container .footer-section-sns .footer-btn-section .footer-btn:last-child {
    margin-left: 30px;
    margin-right: 0;
  }
  .app-footer-wrapper .app-content-container .footer-section-sns .footer-btn-section .footer-btn:last-child::after {
    display: none;
  }
  .app-footer-wrapper .app-content-container .footer-section-sns .sns-list {
    justify-content: space-between;
    width: 252px;
    margin-top: 26px;
  }
  .app-footer-wrapper .app-content-container .footer-section-sns .sns-list li {
    margin-left: 0;
  }
}
@media (max-width: 413px) {
  .app-header-wrapper .header-container {
    justify-content: space-between;
    max-width: 320px;
    padding: 0 8px;
  }
  .app-header-wrapper .header-logo {
    position: initial;
    margin-top: 12px;
  }
  .app-header-wrapper .header-logo a {
    height: 16px;
  }
  .app-header-wrapper .header-logo .mobile-logo {
    display: none;
  }
  .app-header-wrapper .header-logo .smallest-mobile-logo {
    display: block;
    width: 78px;
    height: 16px;
  }
  .app-header-wrapper .header-logo .smallest-mobile-en-logo {
    height: 16px;
    margin-left: 6px;
  }
  .app-header-wrapper .btn-info {
    padding: 0 18px;
    margin-left: 0;
    font-size: 10px;
  }
  .app-header-wrapper .btn-info:nth-of-type(n + 2) {
    margin-left: 0;
  }
  .app-header-wrapper .lang-container {
    margin-left: 0;
  }
  .contact-wrapper {
    padding: 54px 0 74px;
  }
  .contact-wrapper .contact-address {
    width: 320px;
    padding: 0 20px;
  }
  .app-footer-wrapper {
    padding: 36px 0;
  }
  .app-footer-wrapper .app-content-container {
    width: 290px;
  }
  .app-footer-wrapper .app-content-container .footer-section-info .footer-section-address {
    font-size: 11px;
  }
  .app-footer-wrapper .app-content-container .footer-section-sns .sns-list {
    width: 220px;
  }
}/*# sourceMappingURL=app.css.map */