@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@700&display=swap");
@keyframes downUp {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spanUp {
  0% {
    opacity: 0;
    transform: translateY(200px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes mainImg {
  0% {
    opacity: 0;
    transform: translateY(200px);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
    color: #222222;
  }
  51% {
    color: #fff;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    color: #fff;
  }
}
@keyframes scaleUp {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes backUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100px, 0) scale(0.6);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes textRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes textLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes width100 {
  0% {
    width: 0;
    height: 0;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
@keyframes width1200 {
  0% {
    width: 1200px;
  }
  100% {
    width: 100%;
  }
}
@keyframes zIndex {
  0% {
    z-index: 999;
  }
  100% {
    z-index: 0;
  }
}
@keyframes arrow {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes floating {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.7);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@font-face {
  font-family: "Pretendard";
  font-weight: 900;
  font-display: swap;
  src: local("Pretendard Black"), url("../fonts/Pretendard-Black.woff2") format("woff2"), url("../fonts/Pretendard-Black.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 800;
  font-display: swap;
  src: local("Pretendard ExtraBold"), url("../fonts/Pretendard-ExtraBold.woff2") format("woff2"), url("../fonts/Pretendard-ExtraBold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 700;
  font-display: swap;
  src: local("Pretendard Bold"), url("../fonts/Pretendard-Bold.woff2") format("woff2"), url("../fonts/Pretendard-Bold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 600;
  font-display: swap;
  src: local("Pretendard SemiBold"), url("../fonts/Pretendard-SemiBold.woff2") format("woff2"), url("../fonts/Pretendard-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 500;
  font-display: swap;
  src: local("Pretendard Medium"), url("../fonts/Pretendard-Medium.woff2") format("woff2"), url("../fonts/Pretendard-Medium.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 400;
  font-display: swap;
  src: local("Pretendard Regular"), url("../fonts/Pretendard-Regular.woff2") format("woff2"), url("../fonts/Pretendard-Regular.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 300;
  font-display: swap;
  src: local("Pretendard Light"), url("../fonts/Pretendard-Light.woff2") format("woff2"), url("../fonts/Pretendard-Light.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 200;
  font-display: swap;
  src: local("Pretendard ExtraLight"), url("../fonts/Pretendard-ExtraLight.woff2") format("woff2"), url("../fonts/Pretendard-ExtraLight.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 100;
  font-display: swap;
  src: local("Pretendard Thin"), url("../fonts/Pretendard-Thin.woff2") format("woff2"), url("../fonts/Pretendard-Thin.woff") format("woff");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #222222;
  font-family: "Pretendard", sans-serif;
}

a {
  color: #222222;
  text-decoration: none;
  font-family: "Pretendard", sans-serif;
}

ul, li, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background-color: transparent;
}

h1 {
  display: block;
  /*font-size: 3.4375rem;*/
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
  white-space: nowrap;
}

h2 {
  font-size: 3.4375rem;
}

h3 {
  font-size: 3rem;
}
@media all and (max-width: 1024px) {
  h3 {
    font-size: 5.5vw;
  }
}

span {
  font-size: 1.125rem;
}

header {
  width: 100%;
  background-color: #fff;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 99;
  padding: 0 20px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.number_font {
  font-family: "Rajdhani", "Pretendard", sans-serif;
}

.logo {
  display: block;
  width: 120px;
}
@media all and (max-width: 1024px) {
  .logo {
    width: 80px;
  }
}
.logo img {
  max-width: 120px;
  width: 100%;
}

.header {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  height: 94px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media all and (max-width: 1024px) {
  .header {
    height: 60px;
  }
}
.header .mo-menu-btn {
  display: none;
  width: 30px;
  position: relative;
  cursor: pointer;
  height: 30px;
}
.header .mo-menu-btn .line {
  transition: 0.4s ease;
  display: bock;
  width: 21px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  height: 1px;
  background-color: #555;
}
.header .mo-menu-btn .line:first-child {
  top: calc(50% - 6px);
}
.header .mo-menu-btn .line:last-child {
  top: calc(50% + 6px);
}
.header .mo-menu-btn.active .line {
  display: bock;
  width: 21px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  height: 1px;
  background-color: #555;
}
.header .mo-menu-btn.active .line:first-child {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.header .mo-menu-btn.active .line:nth-child(2) {
  display: none;
}
.header .mo-menu-btn.active .line:last-child {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.header .nav-bg {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.45);
}
.header .nav-bg.active {
  display: block;
}
.header_menu {
  font-size: 18px;
  font-weight: 700;
  gap: 60px;
}
@media all and (max-width: 1024px) {
  .header_menu {
    margin-top: 80px;
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
  }
}
.header_menu li:hover a {
  color: #F44336;
}
.header_menu li.active a {
  color: #F44336;
}
.header .number {
  left: 36px;
  position: absolute;
  bottom: 44px;
}
.header .number p {
  color: #707070;
  font-size: 14px;
}
.header .number button {
  color: #707070;
  margin-top: 4px;
  font-size: 22px;
  font-weight: 600;
}
@media all and (max-width: 1024px) {
  .header .mo-menu-btn {
    display: block;
    z-index: 11;
  }
  .header nav {
    transition: 0.4s ease;
    position: fixed;
    right: -100%;
    top: 0;
    height: 100vh;
    background-color: #fff;
    z-index: 10;
    width: 320px;
    padding-left: 36px;
  }
  .header nav.active {
    right: 0;
  }
}

footer {
  border-top: 1px solid #D4D4D4;
  width: 100%;
  background-color: #fff;
}

.footer {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 45px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media all and (max-width: 1024px) {
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer_left {
  display: flex;
  gap: 48px;
}
@media all and (max-width: 1024px) {
  .footer_left {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 15px;
  }
}
.footer_text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  padding: 7px 0 0;
}
.footer_text::before {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: -24px;
  height: 32px;
  border-left: 1px solid #9D9D9D;
}
.footer_text > ul {
  display: flex;
  gap: 18px;
  font-size: 12px;
}
@media all and (max-width: 1024px) {
  .footer_text > ul {
    gap: 12px;
    flex-wrap: wrap;
  }
  .footer_text > ul li:first-child {
    width: 100%;
  }
}
.footer .copyright {
  color: #9D9D9D;
}

.sub_section {
  padding: 105px 0 135px;
}

.pc-show {
  display: block;
}
@media all and (max-width: 1024px) {
  .pc-show {
    display: none;
  }
}

.mo-show {
  display: none;
}
@media all and (max-width: 1024px) {
  .mo-show {
    display: block;
  }
}

.sub_section {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  padding-bottom: 180px;
}
.sub_section-title-box {
  display: flex;
  text-align: center;
  flex-direction: column;
  gap: 12px;
  margin-top: 60px;
  margin-bottom: 90px;
}
@media all and (max-width: 1024px) {
  .sub_section-title-box {
    margin-bottom: 60px;
  }
}
.sub_section-title-box h4 {
  font-size: 45px;
  font-weight: 500;
}
@media all and (max-width: 1024px) {
  .sub_section-title-box h4 {
    font-size: 26px;
    font-weight: 700;
  }
}
.sub_section-sub-title {
  color: #707070;
  font-size: 20px;
  font-weight: 500;
}
.sub_section > article {
  display: flex;
  position: relative;
  gap: 10%;
}
.sub_section .service-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 55px;
}
.sub_section .service-form .form-btn {
  max-width: 200px;
  height: 55px;
  width: 100%;
  background-color: #c62828;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin: 0 auto;
}
.sub_section .service-box {
  width: 100%;
}
.sub_section .service-box-title-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  line-height: 1.4;
}
@media all and (max-width: 1024px) {
  .sub_section .service-box-title-row {
    margin-bottom: 10px;
  }
}
.sub_section .service-box-title {
  font-size: 20px;
  font-weight: 700;
}
@media all and (max-width: 1024px) {
  .sub_section .service-box-title {
    font-size: 18px;
  }
}
.sub_section .service-box-tip {
  color: #707070;
  font-size: 18px;
  font-weight: 500;
}
@media all and (max-width: 1024px) {
  .sub_section .service-box-tip {
    font-size: 12px;
  }
}
.sub_section .service-box-tip .required {
  color: #F44336;
}
.sub_section .service-input {
  display: flex;
  align-items: center;
  padding-right: 10%;
  flex: 1;
  position: relative;
}
@media all and (max-width: 1024px) {
  .sub_section .service-input {
    padding-right: 0;
  }
  .sub_section .service-input::after {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    top: calc(100% + 12px);
    height: 1px;
    background-color: #E0E0E0;
  }
}
.sub_section .service-input.one-input .service-input-title {
  min-width: 18%;
}
@media all and (max-width: 1024px) {
  .sub_section .service-input.one-input .service-input-title {
    min-width: 30%;
  }
}
.sub_section .service-input.one-input .service-input-inner {
  max-width: 27%;
}
@media all and (max-width: 1024px) {
  .sub_section .service-input.one-input .service-input-inner {
    min-width: 70%;
  }
}
.sub_section .service-input.address .service-input-title {
  min-width: 18%;
}
@media all and (max-width: 1024px) {
  .sub_section .service-input.address .service-input-title {
    min-width: 30%;
  }
}
.sub_section .service-input.address .service-input-inner {
  flex-direction: column;
  gap: 10px;
}
.sub_section .service-input.address .service-input-inner-address {
  display: flex;
}
.sub_section .service-input.address .service-input-inner-address:nth-child(1) {
  max-width: 45%;
}
@media all and (max-width: 1024px) {
  .sub_section .service-input.address .service-input-inner-address:nth-child(1) {
    min-width: 100%;
  }
}
.sub_section .service-input.address .service-input-inner-address input:nth-child(2) {
  margin-left: 12px;
}
.sub_section .service-input-box {
  border-top: 1.5px solid #222;
}
.sub_section .service-input-row {
  padding: 20px 0;
  border-bottom: 1px solid #E0E0E0;
  display: flex;
}
@media all and (max-width: 1024px) {
  .sub_section .service-input-row {
    flex-direction: column;
    gap: 24px;
    padding: 12px 0;
  }
}
.sub_section .service-input-title {
  min-width: 40%;
  line-height: 1.4;
  font-size: 18px;
  font-weight: 500;
}
@media all and (max-width: 1024px) {
  .sub_section .service-input-title {
    min-width: 30%;
    font-size: 14px;
  }
}
.sub_section .service-input-title.required::after {
  content: "*";
  color: #F44336;
}
.sub_section .service-input-inner {
  flex: 1;
  line-height: 50px;
  gap: 6px;
  display: flex;
}
@media all and (max-width: 1024px) {
  .sub_section .service-input-inner {
    line-height: 32px;
  }
}
.sub_section .service-input-inner input {
  width: 33.3%;
}
.sub_section .service-input-id {
  max-width: 38% !important;
}
@media all and (max-width: 1024px) {
  .sub_section .service-input-id {
    max-width: 100% !important;
  }
}

input:not([tpye=checkbox]) {
  outline: none;
  background-color: #f6f6f6;
  border: none;
  height: 50px;
  padding: 0 15px;
  flex: 1;
}
@media all and (max-width: 1024px) {
  input:not([tpye=checkbox]) {
    height: 32px;
  }
}

select {
  outline: none;
  background-color: #f6f6f6;
  border: none;
  height: 50px;
  padding: 0 15px;
  flex: 1;
}
@media all and (max-width: 1024px) {
  select {
    height: 32px;
  }
}

form .g-btn {
  max-width: 126px;
  background-color: #aaacab;
  height: 50px;
  width: 100%;
  color: #fff;
  font-size: 18px;
}
@media all and (max-width: 1024px) {
  form .g-btn {
    height: 32px;
    width: 80px;
    font-size: 14px;
  }
}

/* start : 2024.10.14 서비스 신청 리뉴얼 */
.service-section {
  max-width:calc(1280px + (70px * 2)); /* <- 컨텐츠 영역 + 패딩 영역 */
  margin:0 auto;
  margin-top:50px;
  padding:0 70px 76px;
}

.service-title {
  color:#292a2b;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
}

.service-title-desc-wrap {
  margin-top:21px;
  text-align:center;
}

.service-title-desc-wrap.--type-01 .service-title-desc {
  color: #84898d;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 136%;
  letter-spacing: -1.08px;
}

.service-title-desc-wrap.--type-02 {
  padding:18px 0 20px;
  background: #f5f7f9;
}

.service-title-desc-wrap.--type-02 .service-title-desc {
  color: #292a2b;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 138.132%;
}

.service-title-desc-wrap .--spot-blue {
  color: #65acff;
  font-size: 18px;
  font-weight: 500;
  line-height: 138.132%;
}

.service-article {
  margin-top:87px;  
}

.service-article-box {
  padding:51px 56px 40px;
  background: #f5f7f9;
}

.service-article-box + .service-article-box {
  margin-top:14px;
}

.service-detail-wrap + .service-detail-wrap {
  margin-top:44px;
}

.service-detail-title {
  display:inline-block;
  position:relative;
  color: #292a2b;
  font-size: 18px;
  font-weight: 500;
  line-height: 125%;
  letter-spacing: -1.08px;
}

.service-detail-title.--required:after {
  position:absolute;
  top:0; right:-13px;
  display:block;
  content:'*';
  color: #ed4135;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
}

.service-detail-group .service-detail-title.--required:after {
  top:0; right:-19px;
}

.service-input-list {
  display:flex;
  justify-content: flex-start;
  align-items: center;
  margin-top:15px;
  padding-left:24px;
}

.service-input-item {
  display:flex;
  justify-content: flex-start;
  align-items: center;
}

.service-input-list.--type-checkbox {
  max-width:818px;
}

.service-input-list.--type-checkbox .service-input-item {
  width:calc(100% / 4);
  margin-left:0;
}

.service-input-item + .service-input-item {
  margin-left:49px;
}

/* input type = radio */
.service-input[type="radio"] {
  display:none;
}

.service-input[type="radio"] + .service-alt-icon {
  position:relative;
  width:22px;
  height:22px;
  background:#fff;
  border:1px solid #a9afb3;
  border-radius:100%;
  box-sizing:border-box;
  cursor:pointer;
}

.service-input[type="radio"] + .service-alt-icon:after {
  content:'';
  position:absolute;
  top:50%; left:50%;
  width:12px;
  height:12px;
  transform:translate(-50%, -50%);
  background:#a9afb3;
  border-radius:100%;
}

.service-input[type="radio"]:checked + .service-alt-icon {
  border:1px solid #3391ff;
}

.service-input[type="radio"]:checked + .service-alt-icon:after {
  background:#3391ff;
}

/* input type = checkbox */
.service-input[type="checkbox"] {
  display:none;
}

.service-input[type="checkbox"] + .service-alt-icon {
  flex-shrink: 0;
  width:22px;
  height:22px;
  background:url('../img/icons/icon-service-check.svg') no-repeat center center / contain;
  cursor:pointer;
}

.service-input[type="checkbox"]:checked + .service-alt-icon {
  background:url('../img/icons/icon-service-check-on.svg') no-repeat center center / contain;
}

/* input type type = text */
.service-detail-wrap.--type-text {
  display:flex;
  flex-wrap:wrap;
  width:100%;
}

.service-detail-group {
  width:calc(50% - (41px / 2));
}

.service-detail-group.--full-size {
  width:100%;
}

.service-detail-group:nth-child(2n) {
  margin-left:41px;
}

.service-detail-group:nth-child(n+3) {
  margin-top:24.5px;
}

.service-detail-group:first-child {
  margin-top:0;
}

.service-detail-group.--full-size {
  width: 100%;
  margin-bottom: 20px;
}

.service-input-wrap {
  width: 100%;
}

.service-textarea {
  width: 100%;
  min-height: 150px;
  padding: 15px;
  border: none;
  background-color: #fff;
  font-size: 14px;
  line-height: 1.5;
  resize: vertical;
}

.service-textarea::placeholder {
  color: #aaa;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.service-textarea:focus {
  outline: none;
  background-color: #fff;
  /*box-shadow: 0 0 0 2px rgba(0,123,255,0.25);*/
}

.service-input-wrap {
  margin-top:5.5px;
  padding:11px 15px 11px;
  border-radius: 5px;
  border: 1px solid #dfe2e5;
  background: #fff;
}

.service-detail-title {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}

.service-input[type="text"] {
  padding:0;
  width:100%;
  height:auto;
  background:none;
}

.service-input[type="text"]::placeholder {
  color: #aaa;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.service-input + .service-alt-icon + .service-label {
  padding-left:8px;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  cursor:pointer;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none
}

.service-btn-wrap {
  margin-top:65px;
  text-align:center;
}

.service-btn {
  display:flex;
  justify-content: center;
  align-items: center;
  padding:16px 10px;
  min-width:340px;
  margin:0 auto;
  border-radius: 50px;
  background: linear-gradient(39deg, #4e31ff 7.02%, #4eaae4 59.69%, #2ed2e9 110%);
}

.service-btn-text {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
}

/* mo */
@media all and (max-width:1024px) {
  .service-section {
    max-width:100%;
    margin:0 auto;
    margin-top:58px;
    padding:0 13px;
    padding-bottom:62px;
  }

  .service-title {
    font-size:24px;
    line-height: normal;
  }

  .service-title-desc-wrap {
    padding:0 27px;
    margin-top:13px;    
  }

  .service-title-desc-wrap.--type-02 {
    padding:22px 21px 27px;
    margin-top:29px;
  }

  .service-title-desc-wrap.--type-01 .service-title-desc {
    font-size: 16px;
    letter-spacing: -0.96px;
  }

  .service-title-desc-wrap.--type-02 .service-title-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 138.132%;
  }

  .service-title-desc-wrap .--spot-blue {
    font-size: 16px;
    font-weight: 500;
    line-height: 138.132%;
  }

  .service-article {
    margin-top:93px;
  }

  .service-article-box {
    padding:38px 21px 46px;
  }

  .service-detail-wrap + .service-detail-wrap {
    margin-top:49.5px;
  }

  .service-detail-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 125%;
    letter-spacing: -1.08px;
  }

  .service-input-list {
    margin-top:16px;
    padding-left:0;
  }

  .service-input-list:nth-of-type(2) {
    margin-top:20px;
  }

  .service-input-item + .service-input-item {
    margin-left:23px;
  }

  .service-input-list.--type-checkbox {
    max-width:100%;
    flex-wrap:wrap;
  }

  .service-input-list.--type-checkbox .service-input-item {
    width:calc(100% / 2);
  }

  .service-input-list.--type-checkbox .service-input-item:nth-child(n+3) {
    margin-top:20px;
  }

  .service-input-list.--mo-column {
    flex-wrap:wrap;
  }

  .service-input-list.--mo-column .service-input-item {
    width:100%;
    margin-left:0;
  }

  .service-input-list.--mo-column .service-input-item + .service-input-item {
    margin-top:20px;
  }

  .service-detail-group {
    width:100%;
  }

  .service-detail-group:nth-child(2n) {
    margin-left:0;
  }
  
  .service-detail-group:nth-child(n+3) {
    margin-top:0;
  }
  
  .service-detail-group:first-child {
    margin-top:0;
  }

  .service-detail-group + .service-detail-group {
    margin-top:30px;
  }

  .service-input-wrap {
    padding:11px;
  }

  .service-article-box + .service-article-box {
    margin-top:17px;
  }

  .service-btn-wrap {
    margin-top:29px;
  }
}

/* 줄바꿈 style */
.--hidden-p {
  display:none;
}

.--hidden-m {
  display:block;
}

@media all and (max-width:1024px) {
  .--hidden-p {
    display:block;
  }
  
  .--hidden-m {
    display:none;
  }
}
/* end : 2024.10.14 서비스 신청 리뉴얼 */