@media (max-width: 768px) {
  body {
    padding-bottom: 60px;
  }
}

.simple-inquiry-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  height: auto;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 24px 32px;
  border: 1px solid #ddd;
  background: white;
  opacity: 0;
  visibility: hidden;
  z-index: 105;
  transition: all 0.2s ease-in-out;
}
.simple-inquiry-modal.active {
  opacity: 1;
  visibility: visible;
}
.simple-inquiry-modal .modal-head {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.simple-inquiry-modal .modal-head > img {
  flex: 0 1 auto;
  height: 35px;
}
.simple-inquiry-modal .modal-head .si-close {
  width: 35px;
  height: 35px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.simple-inquiry-modal .modal-head .si-close > svg {
  width: 80%;
  height: 80%;
  fill: black;
}
.simple-inquiry-modal .modal-body {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.simple-inquiry-modal .modal-body .modal-title-wrap {
  width: 100%;
  height: auto;
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid #213555;
}
.simple-inquiry-modal .modal-body .modal-title-wrap > h1 {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.2;
  color: #213555;
  word-break: keep-all;
}
.simple-inquiry-modal .modal-body .modal-title-wrap > p {
  font-size: 18px;
  line-height: 1.4;
  word-break: keep-all;
  color: #213555;
}
.simple-inquiry-modal .modal-body .simple-inquiry {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.simple-inquiry-modal .modal-body .simple-inquiry > input, .simple-inquiry-modal .modal-body .simple-inquiry > select {
  width: 100%;
  height: 48px;
  margin-bottom: 14px;
  padding: 0 20px;
  background: white;
  border: 1px solid #aaa;
  border-radius: 12px;
}
.simple-inquiry-modal .modal-body .simple-inquiry .date-wrap {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
.simple-inquiry-modal .modal-body .simple-inquiry .date-wrap > input {
  flex: 1 1 40%;
  height: 48px;
  padding: 0 12px;
  background: white;
  border: 1px solid #aaa;
  border-radius: 12px;
}
.simple-inquiry-modal .modal-body .simple-inquiry .agree-wrap {
  margin: 24px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.simple-inquiry-modal .modal-body .simple-inquiry .agree-wrap #agree-privacy {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}
.simple-inquiry-modal .modal-body .simple-inquiry .agree-wrap > p {
  font-size: 16px;
  line-height: 1.2;
  word-break: keep-all;
  color: #707070;
}
.simple-inquiry-modal .modal-body .simple-inquiry .agree-wrap > p > span {
  text-decoration: underline;
  cursor: pointer;
}
.simple-inquiry-modal .modal-body .simple-inquiry > button {
  width: 100%;
  height: 56px;
  padding: 0 1rem;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  word-break: keep-all;
  text-align: center;
  color: white;
  background: #213555;
  border: none;
  border-radius: 12px;
}

#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 90px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  z-index: 100;
}
@media (max-width: 1280px) {
  #header {
    height: 60px;
  }
}
#header .container {
  width: 95%;
  height: 100%;
  max-width: 1720px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
#header .container .h-left {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
@media (max-width: 1280px) {
  #header .container .h-left {
    gap: 1rem;
  }
}
#header .container .h-left #h-logo {
  flex: 0 0 auto;
  width: auto;
  height: 48px;
}
@media (max-width: 1280px) {
  #header .container .h-left #h-logo {
    height: 32px;
  }
}
#header .container .h-left #h-logo > img {
  width: auto;
  height: 100%;
  max-width: 100%;
}
#header .container .h-left .h-phone {
  padding: 8px 12px 0;
  line-height: 1;
  font-size: 28px;
  font-weight: 700;
  color: white;
  border: 1px solid white;
  border-radius: 10000rem;
}
@media (max-width: 1280px) {
  #header .container .h-left .h-phone {
    padding: 4px 12px 0;
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  #header .container .h-left .h-phone {
    padding: 6px 8px 0;
    font-size: 1rem;
  }
}
#header .container .h-right {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}
#header .container .h-right .h-global-nav {
  position: relative;
  flex: 0 1 auto;
  height: 100%;
}
@media (max-width: 1280px) {
  #header .container .h-right .h-global-nav {
    display: none;
  }
}
#header .container .h-right .h-global-nav .depth-1 {
  height: 100%;
  display: flex;
  flex-direction: row;
}
#header .container .h-right .h-global-nav .depth-1 > a {
  flex: 0 0 auto;
  width: 140px;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  color: white;
  text-align: center;
}
#header .container .h-right .h-global-nav .depth-2 {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: auto;
  max-height: 0;
  display: flex;
  flex-direction: row;
  background: rgba(0, 0, 0, 0.6);
  transition: all 0.2s ease-in-out;
  overflow: hidden;
}
#header .container .h-right .h-global-nav .depth-2 .each-depth {
  flex: 1 1 10%;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
#header .container .h-right .h-global-nav .depth-2 .each-depth > a {
  width: 100%;
  height: 48px;
  padding: 0 8px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  color: white;
  text-align: center;
}
#header .container .h-right .h-global-nav:hover .depth-2 {
  max-height: 300px;
}
#header .container .h-right .m-menu-open {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: none;
  cursor: pointer;
}
@media (max-width: 1280px) {
  #header .container .h-right .m-menu-open {
    display: flex;
  }
}
#header .container .h-right .m-menu-open > svg {
  width: 100%;
  height: 100%;
  fill: white;
}

.m-menu-background {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2 ease-in-out;
  z-index: 300;
}
.m-menu-background.active {
  visibility: visible;
  opacity: 1;
}

.m-menu {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 100%;
  height: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  filter: brightness(1.2);
  box-shadow: inset 0 0 8px -3px white;
  transition: all 0.2s ease-in-out;
  z-index: 301;
}
.m-menu.active {
  transform: translateX(0);
}
.m-menu .m-head {
  flex: 0 0 auto;
  width: 100%;
  height: 48px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
.m-menu .m-head .m-menu-close {
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.m-menu .m-head .m-menu-close > svg {
  width: 100%;
  height: 100%;
  fill: white;
}
.m-menu .m-body {
  flex: 1 1 auto;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.m-menu .m-body .m-global-nav {
  width: 100%;
  height: auto;
}
.m-menu .m-body .m-global-nav .depth-1 {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.m-menu .m-body .m-global-nav .depth-1 > li {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.m-menu .m-body .m-global-nav .depth-1 > li .m-d1-link {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  color: white;
  word-break: keep-all;
}

#footer {
  width: 100%;
  height: auto;
  padding: 60px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: #333;
}
@media (max-width: 1280px) {
  #footer {
    padding: 32px 0;
  }
}
#footer .container {
  width: 95%;
  height: auto;
  max-width: 1440px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 768px) {
  #footer .container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
#footer .container .f-info-list {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 1280px) {
  #footer .container .f-info-list {
    gap: 8px;
  }
}
@media (max-width: 768px) {
  #footer .container .f-info-list {
    align-items: center;
  }
}
#footer .container .f-info-list .item {
  font-size: 15px;
  line-height: 1.2;
  color: #707070;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  #footer .container .f-info-list .item {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  #footer .container .f-info-list .item {
    text-align: center;
  }
}
#footer .container .f-right-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 44px;
}
@media (max-width: 1280px) {
  #footer .container .f-right-wrap {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  #footer .container .f-right-wrap {
    gap: 20px;
    align-items: center;
  }
}
#footer .container .f-right-wrap > a {
  width: auto;
  height: auto;
  display: flex;
}
#footer .container .f-right-wrap > a > img {
  width: auto;
  height: 48px;
}
@media (max-width: 1280px) {
  #footer .container .f-right-wrap > a > img {
    height: 32px;
  }
}
#footer .container .f-right-wrap .copyright {
  font-size: 15px;
  line-height: 1.2;
  color: #aaa;
  word-break: keep-all;
  text-align: right;
}
@media (max-width: 1280px) {
  #footer .container .f-right-wrap .copyright {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  #footer .container .f-right-wrap .copyright {
    text-align: center;
  }
}

.mobile-fixed-call {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60px;
  display: none;
  flex-direction: row;
  z-index: 5;
}
@media (max-width: 768px) {
  .mobile-fixed-call {
    display: flex;
  }
}
.mobile-fixed-call > a {
  flex: 1 1 40%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  text-align: center;
  background: #223656;
}
.mobile-fixed-call > a:link, .mobile-fixed-call > a:visited {
  color: white;
}
@media (max-width: 480px) {
  .mobile-fixed-call > a {
    font-size: 20px;
    font-weight: 600;
  }
}
.mobile-fixed-call > a:nth-of-type(2) {
  background: #fbe300;
}
.mobile-fixed-call > a > img {
  width: auto;
  height: 80%;
}/*# sourceMappingURL=common.css.map */