@charset "UTF-8";
/* 인풋스타일*/
input::-moz-placeholder {
  font-size: inherit;
}
input::placeholder {
  font-size: inherit;
}

/*
공통 */
.inner {
  position: relative;
  margin: 0 auto;
  padding: 0 4rem;
  width: 100%;
  max-width: 160rem;
}

@media all and (max-width: 47.9375rem) {
  .inner {
    padding: 0 2rem;
  }
}
/* 스킵메뉴 */
.skip-nav {
  z-index: 5100;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: -100%;
  width: 100%;
}
.skip-nav.active {
  top: 0;
}
.skip-nav .skip {
  padding: 1rem;
  flex-basis: 50%;
  text-align: center;
  background-color: #fff;
}
.skip-nav .skip:focus {
  color: #fff;
  background-color: #a7a7a7;
}

.header-wrap {
  z-index: 5000;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background-color: transparent;
  transition: background-color, 0.3s, 1s;
  -webkit-transition: background-color, 0.3s, 1s;
  -moz-transition: background-color, 0.3s, 1s;
  -ms-transition: background-color, 0.3s, 1s;
  -o-transition: background-color, 0.3s, 1s;
}
.header-wrap::before {
  position: absolute;
  top: 10rem;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: background-color 0.6s 0.2s;
  -webkit-transition: background-color 0.6s 0.2s;
  -moz-transition: background-color 0.6s 0.2s;
  -ms-transition: background-color 0.6s 0.2s;
  -o-transition: background-color 0.6s 0.2s;
  opacity: 0.2;
}
.header-wrap.active {
  min-height: 20rem;
  height: auto;
  background-color: rgb(255, 255, 255);
  transition: background-color, 0.3s, 0.3s;
  -webkit-transition: background-color, 0.3s, 0.3s;
  -moz-transition: background-color, 0.3s, 0.3s;
  -ms-transition: background-color, 0.3s, 0.3s;
  -o-transition: background-color, 0.3s, 0.3s;
}
.header-wrap.active::before {
  background-color: #EAECEC;
  opacity: 1;
}
.header-wrap.active .header .logo a img {
  content: url("/static/img/common/logo_og.png");
}
.header-wrap.active .header .gnb > li > a {
  color: #000;
}
.header-wrap.active .header .gnb > li.active > a {
  color: #0081CC;
}
.header-wrap.active .header .login-wrap .icon img {
  content: url("../img/common/login.png");
}
.header-wrap.active .header .login-wrap .login {
  color: #839099;
}
.header-wrap.active .header .login-wrap::before {
  background: #5F90B1;
}
.header-wrap.active .gnb {
  gap: 7rem;
  transition: gap 0.4s;
  -webkit-transition: gap 0.4s;
  -moz-transition: gap 0.4s;
  -ms-transition: gap 0.4s;
  -o-transition: gap 0.4s;
}
.header-wrap.active .gnb > li > a {
  color: #000;
}
.header-wrap.active .lang-wrap {
  background-color: #fff !important;
}
.header-wrap.active .lang-wrap li a {
  color: #000000;
}
.header-wrap.active .lang-wrap li.selected a {
  color: #0081CC;
  text-align: center;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.75;
  /* 175% */
  border-bottom: 1px solid #0081CC;
}
.header-wrap.scroll {
  background-color: #fff;
  transition: background-color, 0.3s, 0s;
  -webkit-transition: background-color, 0.3s, 0s;
  -moz-transition: background-color, 0.3s, 0s;
  -ms-transition: background-color, 0.3s, 0s;
  -o-transition: background-color, 0.3s, 0s;
}

.header {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  align-items: flex-start;
  padding: 0 4rem 0;
  max-width: 168rem;
  width: 100%;
  height: auto;
  min-height: 10rem;
}
.header .logo {
  width: 16.6rem;
  margin-top: 3rem;
}
.header .logo > a {
  display: block;
}
.header .nav {
  overflow: visible;
}
.header .gnb {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  width: inherit;
  gap: 6rem;
  transition: gap 0.4s;
  -webkit-transition: gap 0.4s;
  -moz-transition: gap 0.4s;
  -ms-transition: gap 0.4s;
  -o-transition: gap 0.4s;
  position: relative;
}
.header .gnb > li {
  display: flex;
  font-size: calc(var(--fs-md-0.1rem));
  font-weight: 700;
  text-align: center;
}
.header .gnb > li > a {
  z-index: 1;
  display: inline-block;
  padding: 3.5rem 0;
  position: relative;
  text-align: center;
  font-weight: inherit;
  color: #fff;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.5;
}
.header .gnb > li.active > a::before {
  transform: scaleX(1);
  transition: all 0.4s 0.2s;
  -webkit-transition: all 0.4s 0.2s;
  -moz-transition: all 0.4s 0.2s;
  -ms-transition: all 0.4s 0.2s;
  -o-transition: all 0.4s 0.2s;
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
}
.header .lnb {
  z-index: 2;
  display: flex;
  overflow: hidden;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  z-index: 2;
  position: absolute;
  top: 9rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 4rem 0 4rem;
  text-align: left;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}
.header .gnb > li.active .lnb {
  max-height: 500px;
  opacity: 1;
}
.header .lnb > li {
  min-width: auto;
  width: auto;
  flex-shrink: 0;
  text-align: left;
}
.header .lnb > li:hover > a {
  color: #0081CC;
  position: relative;
}
.header .lnb > li:hover > a::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #0081CC;
  position: absolute;
  top: 100%;
  left: 0;
}
.header .lnb > li .s-3dep li:hover a {
  color: #0081CC;
  position: relative;
}
.header .lnb > li .s-3dep li:hover a::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #0081CC;
  position: absolute;
  top: 100%;
  left: 0;
}
.header .lnb > li:hover > .s-2dep {
  color: #3C3C3C;
}
.header .lnb > li:hover > .s-2dep::after {
  display: none;
}
.header .lnb > li > a {
  display: block;
  white-space: nowrap;
  color: #959FA1;
  font-family: "Pretendard", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.75;
  /* 175% */
}
.header .s-2deps {
  display: flex;
  flex-direction: column;
}
.header .s-2deps:after {
  display: none;
}
.header .s-3dep {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.2rem;
  color: #959FA1;
  font-family: Pretendard;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.75;
  /* 175% */
}
.header .s-3dep li:hover {
  color: #0081CC;
}
.header .lang-wrap {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 4.1rem;
}
.header .lang-wrap .fi img {
  display: block;
  content: url("../img/common/lang-w.png");
}
.header .lang-wrap li a {
  color: #fff;
  opacity: 0.5;
}
.header .lang-wrap li.selected a {
  opacity: 1;
  font-weight: 600;
  border-bottom: 1px solid #FFF;
}
.header .mobile-btn {
  margin-top: 1.2rem;
  margin-left: auto;
  display: none;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
}
.header .mobile-btn span {
  position: absolute;
  left: 0.25rem;
  width: 2.5rem;
  height: 0.2rem;
  border-radius: 0.2rem;
  background-color: #ffffff;
  -webkit-border-radius: 0.2rem;
  -moz-border-radius: 0.2rem;
  -ms-border-radius: 0.2rem;
  -o-border-radius: 0.2rem;
}
.header .mobile-btn span:nth-of-type(1) {
  top: 0.35rem;
  transform: rotate(0);
  transform-origin: right center;
  transition: transform 0.6s;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  -webkit-transition: transform 0.6s;
  -moz-transition: transform 0.6s;
  -ms-transition: transform 0.6s;
  -o-transition: transform 0.6s;
}
.header .mobile-btn span:nth-of-type(2) {
  opacity: 1;
  top: 1.3rem;
  transition: opacity 0.7s;
  -webkit-transition: opacity 0.7s;
  -moz-transition: opacity 0.7s;
  -ms-transition: opacity 0.7s;
  -o-transition: opacity 0.7s;
}
.header .mobile-btn span:nth-of-type(3) {
  top: 2.2rem;
  transform: rotate(0);
  transform-origin: right center;
  transition: transform 0.6s;
  -webkit-transition: transform 0.6s;
  -moz-transition: transform 0.6s;
  -ms-transition: transform 0.6s;
  -o-transition: transform 0.6s;
}
.header .mobile-btn.active span {
  background-color: #000;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}
.header .mobile-btn.active span:nth-of-type(1) {
  top: 0.4rem;
  transform: rotate(-45deg);
  transition: all 0.6s;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}
.header .mobile-btn.active span:nth-of-type(2) {
  opacity: 0;
  transition: all 0s;
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -ms-transition: all 0s;
  -o-transition: all 0s;
}
.header .mobile-btn.active span:nth-of-type(3) {
  transform: rotate(45deg);
  transition: all 0.6s;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

@media all and (max-width: 85.375rem) {
  .header-wrap {
    min-height: 9rem;
  }
  .header-wrap::before {
    display: none;
  }
  .header-wrap .nav {
    display: none;
  }
  .header-wrap.active {
    height: 100%;
    background-color: #fff;
  }
  .header-wrap.active .header .nav {
    display: block;
    width: 100%;
  }
  .header-wrap.active .header .lang-wrap {
    display: flex;
  }
  .header {
    padding: 1.4rem 4rem 0;
    min-height: 9rem;
  }
  .header .logo {
    margin-top: 0;
  }
  .header .lang-wrap {
    display: none;
    position: absolute;
    right: 10rem;
    padding-top: 1.7rem;
    margin-top: 0;
  }
  .header .nav {
    position: absolute;
    left: 50%;
    top: 9rem;
    padding-right: 0;
    padding-top: 0;
    width: 100%;
    height: calc(100% - 9rem);
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  .header .nav .gnb {
    position: absolute;
    left: 50%;
    padding-top: 9%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  .header .nav .gnb > li > a {
    margin-bottom: 0;
    padding: 2rem 0;
  }
  .header .nav .gnb > li > a::before {
    top: 6rem;
  }
  .header .nav .gnb > li.active::after {
    height: calc(100% - 6rem);
    transition: background-color 1s 0.2s;
    -webkit-transition: background-color 1s 0.2s;
    -moz-transition: background-color 1s 0.2s;
    -ms-transition: background-color 1s 0.2s;
    -o-transition: background-color 1s 0.2s;
  }
  .header .lnb {
    display: block;
    top: 0;
    margin-bottom: 0;
  }
  .header .mobile-btn {
    display: block;
  }
}
@media all and (max-width: 63.9375rem) {
  .header .nav {
    overflow-y: scroll;
  }
  .header .nav::-webkit-scrollbar {
    width: 0;
  }
  .header .gnb {
    display: block;
    top: 0;
    text-align: center;
  }
  .header .gnb > li {
    width: 100% !important;
    height: auto;
    display: block;
  }
  .header .gnb > li > a {
    padding: 1rem 1rem 0;
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 2rem;
    line-height: 1.3;
  }
  .header .lnb {
    display: block;
    background-color: transparent;
  }
  .header .lnb > li {
    text-align: center;
  }
  .header .lnb > li > a {
    display: inline-block;
  }
  .header .lnb > li:hover > a::after {
    content: "";
    display: none;
  }
  .header .mobile-btn {
    margin-top: 1.2rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .header-wrap {
    min-height: 7rem;
  }
  .header-wrap::before {
    top: 7rem;
  }
  .header {
    padding: 1.2rem 2rem 0;
    min-height: 7rem;
  }
  .header .logo {
    width: 13.6rem;
  }
  .header .logo img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .header .nav .gnb > li {
    padding-bottom: 0;
  }
  .header .lang-wrap {
    z-index: 10;
    right: 0rem;
    top: 0.5rem;
  }
  .header .mobile-btn {
    margin-top: 0.5rem;
  }
}
/* dim */
.privacy-dim {
  position: fixed;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  border: 1px solid #000;
}
.privacy-dim.active {
  opacity: 1;
  visibility: visible;
  display: block;
}

/* modal */
.privacy-modal {
  display: none;
  position: fixed;
  bottom: 0;
  left: 50%;
  z-index: 9100;
  transform: translate(-50%, -50%);
  width: 72rem;
  max-width: calc(100% - 4rem);
  min-height: 50rem;
  padding: 3.2rem;
  background: #fff;
  border-radius: 1.6rem;
  box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.25);
}
.privacy-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
  display: block;
}
.privacy-modal {
  /* title */
}
.privacy-modal .tit {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.privacy-modal {
  /* content */
}
.privacy-modal .content {
  max-height: 42vh;
  overflow-y: auto;
  padding-right: 0.8rem;
  font-size: 1.4rem;
  line-height: 1.7;
  color: #333;
}
.privacy-modal .content p {
  margin-bottom: 1.6rem;
}
.privacy-modal .content {
  /* scrollbar */
}
.privacy-modal .content::-webkit-scrollbar {
  width: 0.6rem;
}
.privacy-modal .content::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 0.4rem;
}
.privacy-modal {
  /* close */
}
.privacy-modal .btn-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  font-size: 2.2rem;
  cursor: pointer;
  color: #666;
  transition: color 0.2s;
}
.privacy-modal .btn-close:hover {
  color: #000;
}

@media all and (max-width: 85.375rem) {
  .header .lnb {
    z-index: 2;
    display: block;
    position: static;
    gap: 2.4rem;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    width: 100%;
    padding: 3rem 0 4rem;
    height: 100%;
    text-align: center;
    font-size: 0.9em;
    opacity: 1;
  }
  .header .s-3dep {
    display: block;
    position: static;
    text-align: center;
  }
  .s-3dep li a {
    padding: 0;
  }
}
@media all and (max-width: 63.9375rem) {
  .nav {
    position: fixed;
    top: 9rem;
    left: 0;
    width: 100%;
    height: calc(100vh - 9rem);
    background: #fff;
    display: none;
    overflow-y: auto;
    z-index: 4000;
  }
  .nav.b {
    background-color: transparent;
    top: 45%;
    height: 100%;
  }
  .header-wrap.active {
    min-height: 100vh;
  }
  .header-wrap.active .nav {
    display: block;
  }
  .gnb {
    display: block;
    padding: 2rem 0;
  }
  .gnb > li {
    border-bottom: 1px solid #eee;
  }
  .gnb > li > a.dep-01 {
    display: block;
    padding: 2rem 3rem;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
  }
  .header .lnb {
    padding: 0 0 2rem;
  }
  /* 2Depth */
  .lnb {
    display: none;
    position: static;
    opacity: 1;
    border: 0;
  }
  .lnb > li > a {
    display: block;
    padding: 1.6rem 4rem 1rem;
    font-size: 1.6rem;
    color: #555;
  }
  /* 3Depth */
  .s-3dep {
    display: none;
  }
  .s-3dep li a {
    padding: 1.4rem 5.5rem;
    font-size: 1.5rem;
    color: #777;
  }
  .s-3dep li a:hover {
    color: #0081CC;
  }
  .header .s-3dep {
    margin-top: 0;
    font-size: 1.4rem;
  }
  /* active states */
  li.open > .lnb {
    display: block;
  }
  .header .lnb > li > .s-2deps {
    pointer-events: none;
  }
  .s-2deps.open > .s-3dep {
    display: block;
  }
  .header > .right-wrap {
    position: absolute;
    right: 5rem;
    top: -0.5rem;
  }
  .header .lnb > li .s-3dep li:hover a::after {
    display: none;
  }
}
.footer-wrap {
  width: 100%;
}

.footer {
  width: 100%;
  background: #fff;
  padding: 6rem 0;
  border-top: 1px solid #EAECEC;
  background: #FFF;
}
.footer .top-inner {
  width: 100%;
  margin: 0 auto;
}
.footer .flex-wrapper {
  max-width: 152rem;
  padding: 0 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
  margin-bottom: 6rem;
}
.footer .left {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.footer .left .slogan {
  color: var(--bk, #3C3C3C);
  font-family: "Pretendard", sans-serif;
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}
.footer .right .footer-sitemap {
  display: flex;
  gap: 6rem;
}
.footer .right .footer-sitemap .footer-col strong {
  display: block;
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #3C3C3C;
  font-family: "Pretendard", sans-serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.555;
  /* 155.5% */
}
.footer .right .footer-sitemap .footer-col ul li {
  margin-bottom: 0.6rem;
}
.footer .right .footer-sitemap .footer-col ul li.bold a {
  font-weight: 600;
  color: #111;
  pointer-events: none;
}
.footer .right .footer-sitemap .footer-col ul li.bold a:hover {
  color: #111;
}
.footer .right .footer-sitemap .footer-col ul li.bold a:hover:after {
  display: none;
}
.footer .right .footer-sitemap .footer-col ul li.bold.b {
  margin-top: 1.2rem;
}
.footer .right .footer-sitemap .footer-col ul li a {
  transition: color 0.2s;
  color: #959FA1;
  font-family: "Pretendard", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.75;
  position: relative;
  /* 175% */
}
.footer .right .footer-sitemap .footer-col ul li a:hover {
  color: #0081CC;
}
.footer .footer-bottom {
  width: 100%;
  border-top: 1px solid #EAECEC;
  padding: 2.4rem 0 0;
  margin: 0 auto;
}
.footer .footer-bottom .bottom-inner {
  max-width: 152rem;
  padding: 0 4rem;
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
.footer .footer-bottom .f-info {
  text-align: left;
  color: #959FA1;
  /* p-14 */
  font-family: "Pretendard", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.42857;
  /* 142.857% */
  letter-spacing: -0.28px;
}
.footer .footer-bottom .f-info dl {
  display: flex;
  margin-bottom: 0.6rem;
  gap: 1.2rem;
}
.footer .footer-bottom .f-info dl dt {
  color: #959FA1;
  padding-right: 0.6rem;
  /* p-14-SB */
  font-family: "Pretendard", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
}
.footer .footer-bottom .f-info p {
  margin-bottom: 0.6rem;
}
.footer .footer-bottom .f-info .copy a {
  margin-left: 1rem;
  color: #777;
}
.footer .footer-bottom .f-info .address {
  display: flex;
}
.footer .footer-bottom .btn-link {
  padding: 1.2rem 3rem;
  background: #9fa4a5;
  color: #fff;
  border-radius: 3rem;
  font-size: 1.4rem;
  white-space: nowrap;
}
.footer .footer-bottom .btn-privacy {
  text-decoration: underline;
}
.footer .footer-bottom .btn-business {
  position: relative;
  color: #fff;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  display: flex;
  padding: 1rem 2.6rem;
  border-radius: 50px;
  border-radius: 999px;
  background: #959FA1;
  color: #fff;
  height: 4.8rem;
  align-items: center;
  z-index: 10;
}
.footer .footer-bottom .btn-business:hover {
  border-radius: 999px;
  background: var(--main-logo, #0081CC);
}
.footer .bot {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer .copy {
  color: #839099;
  font-size: var(--ss-f);
  font-weight: 400;
  line-height: 2.2rem;
}

.business-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.business-menu {
  position: absolute;
  bottom: 3rem;
  right: 0rem;
  width: 20rem;
  padding: 2.4rem 2.4rem 4.8rem 2.4rem;
  background: #fff;
  border: 1px solid #a8b0b3;
  border-radius: 24px;
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
  opacity: 0;
  transform: translateY(20px);
  transition: 0.3s ease;
  visibility: hidden;
}
.business-menu .group + .group {
  margin-top: 2.4rem;
}
.business-menu strong {
  display: block;
  margin-bottom: 6px;
  color: #0081cc;
  font-size: 2rem;
  font-weight: 700;
  color: var(--main-logo, #0081CC);
  /* p-16-SB */
  font-family: Pretendard;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.75;
  /* 175% */
}
.business-menu ul {
  display: flex;
  flex-direction: column;
}
.business-menu a {
  text-decoration: none;
  color: #3C3C3C;
  font-family: "Pretendard", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  /* 150% */
}
.business-menu a:hover {
  text-decoration: underline;
}

.business-wrap.active .business-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media all and (max-width: 64rem) {
  .footer .right .footer-sitemap {
    gap: 3rem;
  }
  .footer .flex-wrapper, .footer .footer-bottom .bottom-inner {
    padding: 0 2rem;
  }
}
@media all and (max-width: 63.9375rem) {
  .footer {
    padding: 5rem 0 4rem;
  }
  .footer .right {
    width: 50%;
  }
  .footer .right .footer-sitemap {
    display: block;
  }
  .footer .right .footer-sitemap .footer-col {
    display: flex;
    gap: 2rem;
  }
  .footer .left .slogan {
    font-size: 2.4rem;
  }
  .footer .list {
    width: 100%;
  }
  .footer .footer-bottom .inner {
    display: block;
  }
  .footer .footer-bottom .bottom-inner {
    max-width: 100%;
    display: block;
  }
}
@media all and (max-width: 47.9375rem) {
  .footer .inner {
    padding: 0 2rem;
  }
  .footer .left {
    width: 100%;
    gap: 2rem;
    text-align: left;
    display: block;
  }
  .footer .bot {
    gap: 0;
  }
  .footer .flex-wrapper {
    flex-direction: column;
    gap: 2rem;
  }
  .footer .right {
    width: 100%;
  }
  .footer .right .footer-sitemap {
    display: block;
    text-align: left;
  }
  .footer .right .footer-sitemap .footer-col {
    display: block;
  }
  .footer .list li {
    font-size: 1.2rem;
    line-height: 1.2;
  }
  .footer .footer-bottom .f-info dl {
    display: block;
  }
  .footer .footer-bottom .inner {
    align-items: flex-start;
  }
  .footer .footer-bottom .f-info .copy a {
    margin-left: 0;
  }
  .footer .footer-bottom .bottom-inner {
    max-width: 100%;
    display: block;
  }
  .footer .footer-bottom .btn-wrapper {
    margin-top: 2;
  }
}
@media (max-width: 1280px) {
  .footer .flex-wrapper {
    flex-direction: column;
    gap: 4rem;
    align-items: flex-start;
  }
  .footer .right {
    width: 100%;
  }
  .footer .right .footer-sitemap {
    justify-content: space-between;
    gap: 3rem;
  }
}
@media (max-width: 1024px) {
  .footer .left .logo img {
    max-width: 180px;
  }
  .footer .left .slogan {
    font-size: 2.6rem;
  }
  .footer .right .footer-sitemap {
    flex-wrap: wrap;
    gap: 4rem;
  }
  .footer .footer-bottom .bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
  }
  .footer .footer-bottom .btn-wrapper {
    width: 100%;
  }
  .footer .footer-bottom .btn-business {
    width: -moz-fit-content;
    width: fit-content;
  }
}/*# sourceMappingURL=layout.css.map */