#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 90px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  z-index: 500;
}
#header.for-sub {
  border-bottom: 1px solid black;
  background: white;
}
#header .container {
  position: relative;
  width: 95%;
  height: 100%;
  max-width: 1720px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#header .container #h-logo {
  flex: 0 0 auto;
  width: auto;
  height: 80%;
}
#header .container #h-logo > img {
  width: auto;
  height: 100%;
}
#header .container .h-global-nav {
  position: absolute;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
}
#header .container .h-global-nav > a {
  position: relative;
  flex: 0 0 auto;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 44px;
}
#header .container .h-global-nav > a > span {
  font-size: 20px;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
  text-align: center;
  font-weight: 700;
}
#header .container .m-menu-open {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
#header .container .m-menu-open > img {
  width: 100%;
  height: auto;
}

.inquiry-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  z-index: 700;
  transition: all 0.2s ease-in-out;
}
.inquiry-bg.active {
  opacity: 1;
  visibility: visible;
}

#quick-inquiry {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  height: auto;
  max-width: 480px;
  max-height: 90%;
  padding: 0 24px 24px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 16px -4px rgba(0, 0, 0, 0.5);
  z-index: 701;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}
#quick-inquiry.active {
  opacity: 1;
  visibility: visible;
}
#quick-inquiry .inq-head {
  width: 100%;
  height: 52px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
#quick-inquiry .inq-head .inq-close {
  width: 40px;
  height: 40px;
  cursor: pointer;
}
#quick-inquiry .inq-head .inq-close > svg {
  width: 100%;
  height: 100%;
  fill: black;
}
#quick-inquiry .inq-body {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
#quick-inquiry .inq-body .basic-fields {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
}
#quick-inquiry .inq-body .basic-fields .field {
  width: 100%;
  height: 48px;
  padding: 0 4%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
#quick-inquiry .inq-body .basic-fields .field:not(:last-child) {
  border-bottom: 1px solid #aaa;
}
#quick-inquiry .inq-body .basic-fields .field label {
  flex: 0 0 100px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
}
#quick-inquiry .inq-body .basic-fields .field > input {
  flex: 1 1 auto;
  font-size: 16px;
  border-radius: 0;
  border: none;
  background: white;
}
#quick-inquiry .inq-body .basic-fields .field > input::-moz-placeholder {
  color: #707070;
}
#quick-inquiry .inq-body .basic-fields .field > input::placeholder {
  color: #707070;
}
#quick-inquiry .inq-body .content-field {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
#quick-inquiry .inq-body .content-field label {
  padding-left: 4%;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
}
#quick-inquiry .inq-body .content-field textarea {
  width: 100%;
  height: auto;
  font-size: 16px;
  border-radius: 0;
  border: none;
  background: white;
  border: 1px solid #aaa;
  border-radius: 8px;
  resize: none;
}
#quick-inquiry .inq-body .submit-field {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
#quick-inquiry .inq-body .submit-field .agreement {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
#quick-inquiry .inq-body .submit-field .agreement label {
  flex: 0 1 auuto;
  font-size: 15px;
  line-height: 1.1;
  color: #3D3D3D;
  word-break: keep-all;
}
#quick-inquiry .inq-body .submit-field .buttons {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
#quick-inquiry .inq-body .submit-field .buttons > a {
  flex: 1 1 40%;
  height: 48px;
  padding: 0 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #4164B5;
  border-radius: 10px;
}
#quick-inquiry .inq-body .submit-field .buttons > a .icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 100000rem;
  background: #180E4B;
}
#quick-inquiry .inq-body .submit-field .buttons > a .icon > svg {
  width: 80%;
  height: 80%;
  fill: white;
}
#quick-inquiry .inq-body .submit-field .buttons > a > span {
  font-size: 16px;
  line-height: 1.1;
  color: white;
  word-break: keep-all;
}
#quick-inquiry .inq-body .submit-field .buttons > button {
  flex: 1 1 40%;
  height: 48px;
  padding: 0 10px;
  font-size: 16px;
  line-height: 1.1;
  color: white;
  word-break: keep-all;
  background: #180E4B;
  border: none;
  border-radius: 10px;
}

#footer {
  width: 100%;
  height: auto;
  padding: 60px 0 32px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: black;
}
#footer .container {
  width: 95%;
  height: auto;
  max-width: 1720px;
  display: flex;
  flex-direction: row;
  gap: 16px;
}
#footer .container .left, #footer .container .right {
  flex: 1 1 auto;
}
#footer .container .left {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
#footer .container .left .policy-links {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}
#footer .container .left .policy-links > a {
  font-size: 16px;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
}
#footer .container .left .policy-links .dev {
  flex: 0 0 auto;
  font-size: 14px;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
}
#footer .container .middle {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#footer .container .middle #f-logo {
  width: auto;
  height: 70px;
}
#footer .container .middle #f-logo > img {
  width: auto;
  height: 100%;
}
#footer .container .middle .f-names {
  margin: 24px 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
#footer .container .middle .f-names > b {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
  text-align: center;
}
#footer .container .middle .f-names > span {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
  word-break: keep-all;
  text-align: center;
  color: white;
}
#footer .container .middle .f-infos {
  margin-bottom: 16px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
#footer .container .middle .f-infos > span {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.2;
  word-break: keep-all;
  color: #ddd;
  text-align: center;
}
#footer .container .middle .f-infos > span > em {
  font-weight: 600;
}
#footer .container .middle .copyrights {
  font-size: 14px;
  line-height: 1.2;
  color: #707070;
  word-break: keep-all;
}
#footer .container .right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}
#footer .container .right .f-socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
#footer .container .right .f-socials > a {
  flex: 0 0 auto;
}
#footer .container .right .f-socials > a > img {
  width: 32px;
}
#footer .container .right .copyrights {
  font-size: 14px;
  line-height: 1.2;
  color: #707070;
  word-break: keep-all;
}/*# sourceMappingURL=common.css.map */