﻿@charset "utf-8";:root {
	--main-maxwidth: 1280px;
	--main-pd-tb: 80px;
	--color-base: #222;
	--color-point: #c7b199;
	--color-white: #fff;
	--color-black: #000;
	--font-base: 16rem
}

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;     
    }

	body {
    font-family: "pretend","Noto Sans KR",'Malgun Gothic',dotum,sans-serif;    
	}

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 0px;
      border-bottom: 1px solid #ddd;
      background-color: #fff;
      position: relative;
      max-width: var(--main-maxwidth);
      margin: 0 auto;
    }

    .logo {
      display: flex;
      align-items: center;
      font-weight: bold;
      color: #0066cc;
      font-size: 22px;
    }

    .logo i {
      margin-right: 6px;
      font-style: normal;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .nav-links a {
      text-decoration: none;
      color: #0066cc;
      font-size: 14px;
      font-weight: 700;
    }

    .search {
      font-size: 16px;
      cursor: pointer;
    }

    .login-btn {
      margin-left: 12px;
      padding: 8px 30px;
      border: 1px solid #0066cc;
      border-radius: 8px;
      background-color: white;
      color: #0066cc;
      font-weight: bold;
      cursor: pointer;
      font-size: 14px;
    }

    .login-btn:hover {
      background-color: #f0f8ff;
    }

    .hamburger {
      display: none;
      font-size: 22px;
      cursor: pointer;
    }

    /* 반응형 처리 */
    @media (max-width: 768px) {
      .nav-links {
        display: none;
        flex-direction: column;
        gap: 12px;
        position: absolute;
        top: 56px;
        right: 24px;
        background-color: white;
        border: 1px solid #ddd;
        padding: 12px;
        z-index: 10;
        box-shadow: 0 4px 8px rgba(0,0,0,0.05);
      }

      .nav-links.active {
        display: flex;
      }

      .hamburger {
        display: block;
        color: #0066cc;
      }
    }

	/*idx_vbs*/

.mainvbs {
  background-color: #f6f6fc;
  padding: 80px 20px;
  text-align: center;
}

.mainvbs-inner {
  max-width: 720px;
  margin: 0 auto;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 0;
  color: #0066cc;
}

.logo .service {
  color: #568efc;
  font-weight: 500;
  font-size: 18px;
  margin-left: 8px;
}

.title-black {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}

.title-blue {
  font-size: 26px;
  font-weight: 800;
  color: #3a7cfc;
  margin-bottom: 24px;
}

.desc {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 40px;
}

.main-btn {
  display: inline-block;
  background-color: #4c71ff;
  color: white;
  padding: 14px 32px;
  border-radius: 32px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: background-color 0.2s;
}

.main-btn:hover {
  background-color: #3a5ce0;
}

/* 반응형 추가 */
@media (max-width: 480px) {
  .logo {
    font-size: 22px;
  }

  .logo .service {
    font-size: 16px;
  }

  .title-black {
    font-size: 18px;
  }

  .title-blue {
    font-size: 22px;
  }

  .desc {
    font-size: 14px;
  }

  .main-btn {
    padding: 12px 24px;
    font-size: 13px;
  }
}


.idx_mainvb_a_style {
  background: #f5f9fc;
  padding: 80px 20px;
}

.idx_mainvb_a_style .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.idx_mainvb_a_style .content {
  flex: 1 1 400px;
}

.idx_mainvb_a_style .logo {
  display: inline-block;
  font-size: 50px;
  font-weight: 700;
  color: #0066cc;
}

.idx_mainvb_a_style h2 {
  font-size: 1.5rem;
  margin: 20px 0 40px;
  line-height: 1.4;
}

.idx_mainvb_a_style .btn {
  display: inline-block;
  padding: 12px 30px;
  background: #fff;
  border: 2px solid #0066cc;
  border-radius: 999px;
  color: #0066cc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.idx_mainvb_a_style .btn:hover {
  background: #0066cc;
  color: #fff;
}

.idx_mainvb_a_style .image {
  flex: 1 1 500px;
  text-align: center;
}

.idx_mainvb_a_style .image img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .idx_mainvb_a_style .container {
    flex-direction: column;
    text-align: center;
  }

  .idx_mainvb_a_style .content {
    flex: 1 1 100%;
  }

  .idx_mainvb_a_style .image {
    flex: 1 1 100%;
  }
}

.idx_mainvb_0_style {
  background: #f2f2fa;
  text-align: center;
  padding: 100px 20px;
  padding-bottom: 110px;
}

.idx_mainvb_0_style .container {
  max-width: var(--main-maxwidth);
  margin: 0 auto;
  text-align: left;
}

.idx_mainvb_0_style .logo {
  font-size: 57px;
  font-weight: 700;
  color: #0066ff;
  margin-bottom: 25px;
  margin-top: 0;
  display: block;
}

.idx_mainvb_0_style .logo-main {
  color: #006dca;
}

.idx_mainvb_0_style .logo-sub {
  margin-left: 0px;
  font-size: 27px;
  color: #458fff;
}

.idx_mainvb_0_style h2 {
  font-size: 27px;
  font-weight: 800;
  margin: 20px 0 0px;
}

.idx_mainvb_0_style h3 {
  font-size: 34px;
  font-weight: 800;
  color: #458fff;
  margin-bottom: 25px;
  margin-top: 5px;
}

.idx_mainvb_0_style .desc {
  font-size: 13px;
  color: #555;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 35px;
}

.idx_mainvb_0_style .btn {
  display: inline-block;
  background: #458fff;
  color: #fff;
  padding: 13px 97px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.idx_mainvb_0_style .btn:hover {
  background: #0066ff;
}

@media (max-width: 768px) {
  .idx_mainvb_0_style {
    padding: 60px 20px;
  }

  .idx_mainvb_0_style .logo {
    font-size: 2rem;
  }

  .idx_mainvb_0_style h2 {
    font-size: 1.2rem;
  }

  .idx_mainvb_0_style h3 {
    font-size: 1.5rem;
  }

  .idx_mainvb_0_style .desc {
    font-size: 0.95rem;
  }
}

	/*idx_vbs*/
	/*idx_itembox*/

.feature-area {
  padding: 80px 20px;
  padding-top: var(--main-pd-tb);
  padding-bottom: var(--main-pd-tb);
  padding-bottom: 25px;
  background-color: #ffffff;
  text-align: center;
}

.feature-title {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 50px;
  line-height: 1.5;
  color: #000;
}

.feature-title .highlight {
  color: #3a7cfc;
  font-weight: 800;
}

.features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: var(--main-maxwidth);
  margin: 0 auto;
}

.feature-item {
  max-width: 25%;
  flex: 1 1 200px;
}

.feature-item img {
  width: 125px;
  height: 97px;
  margin-bottom: 20px;
}

.feature-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000;
}

.feature-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* 반응형 */
@media (max-width: 768px) {
  .features {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .feature-item {
    max-width: 100%;
  }

  .feature-title {
    font-size: 18px;
  }

  .feature-item img {
    width: 64px;
    height: 64px;
  }

  .feature-item h3 {
    font-size: 15px;
  }

  .feature-item p {
    font-size: 13px;
  }
}

	/*idx_itembox*/
	/*idx_conbox_a*/
	.idx_conbox_a {
  background-color: #f1f3ff;
  padding: 80px 20px;
  padding-top: var(--main-pd-tb);
  padding-bottom: var(--main-pd-tb);
  text-align: center;
}

.process-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #000;
}

.process-title .highlight {
  color: #3a7cfc;
  font-weight: 800;
}

.process-flow {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process-step {
  background-color: white;
  padding: 18px 30px;
  border-radius: 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  width: fit-content;
  max-width: 100%;
}

.process-step::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  width: 2px;
  height: 40px;
  background-color: #ccc;
  transform: translateX(-50%);
}

.process-step:last-child::before {
  display: none;
}

/* 반응형 스타일 */
@media (min-width: 768px) {
  .process-flow {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }

  .process-step {
    border-radius: 40px;
    white-space: nowrap;
  }

  .process-step::before {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    width: 40px;
    height: 2px;
    background-color: #ccc;
    transform: translateY(-50%);
  }

  .process-step:last-child::before {
    display: none;
  }
}
.process-flow > img {
    width: 661px;
}
	/*idx_conbox_a*/
	/*idx_conbox_b*/
	.idx_conbox_b {
  background-color: #ffffff;
  padding: 80px 20px;
  padding-top: var(--main-pd-tb);
  padding-bottom: var(--main-pd-tb);
  text-align: center;
}

.process-title {
  font-size: 22px;
  font-weight: 500;
  color: #000;
  margin-bottom: 25px;
  line-height: 1.5;
}

.process-title .highlight {
  color: #3a7cfc;
  font-weight: 600;
}

.process-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  max-width: var(--main-maxwidth);
  margin: 0 auto;
}

.process-card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  padding: 30px 20px;
  width: calc(25% - 45px);
  text-align: center;
  position: relative;
  flex-shrink: 0;
}

.card-top {
  background-color: #3a7cfc;
  color: white;
  font-weight: 400;
  font-size: 21px;
  padding: 20px 0;
  border-radius: 20px 20px 0 0;
  margin: -30px -20px 20px -20px;
}

.card-icon {
  font-size: 32px;
  margin-top: 43px;
  margin-bottom: 36px;
}

.card-icon > img {
    width: 37px;
}

.card-title {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #000;
}

.card-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-top: 0;
  letter-spacing: -1px;
}

.arrow {
  display: flex;
  align-items: center;
  font-size: 22px;
  color: #3a7cfc;
}

/*  반응형 */
@media (max-width: 768px) {
  .process-cards {
    flex-direction: column;
    align-items: center;
  }

  .arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }
}
	/*idx_conbox_b*/
	/*idx_conbox_c*/
	.idx_conbox_c {
  background: url(/eisoft_data/solution/eisoft_easyw/compb/userdata/bg_idx_conbox_c_conimg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 0px;
  padding-top: var(--main-pd-tb);
  padding-bottom: var(--main-pd-tb);
  text-align: center;
  padding-bottom: 0;
  padding-top: 0;
}

.top-intro .subtitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.keyword-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.keyword-badges span {
  background: #fff;
  border-radius: 999px;
  padding: 8px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  font-weight: 600;
  color: #333;
}

.top-intro .desc {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
}

.top-intro .desc .highlight {
  color: #2978f8;
  font-weight: bold;
}

.feature-section {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.feature-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-img img {
  max-width: 320px;
  width: 100%;
  height: auto;
}

.feature-text {
  max-width: 500px;
}

.feature-text h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}

.feature-text p {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-text .btn {
  display: inline-block;
  background: #2978f8;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

/* ✅ 반응형 */
@media (max-width: 768px) {
  .feature-row,
  .feature-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .feature-img img {
    max-width: 240px;
  }

  .feature-text {
    max-width: 100%;
  }
}


.idx_conbox_c_a {
  background: transparent;
  padding: 80px 20px;
  padding-bottom: 0;
  text-align: center;
  color: #111845;
}

.idx_conbox_c_a h2 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 30px;
}

.idx_conbox_c_a h2 strong {
  color: #111845;
}

.bubble-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.bubble-list span {
  background: #fff;
  border-radius: 999px;
  padding: 12px 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  font-size: 18px;
  color: #444;
  white-space: nowrap;
}

.bottom-msg {
  font-size: 22px;
  line-height: 1.6;
  color: #111845;
  margin-bottom: 0;
}

.bottom-msg strong {
  color: #2f7cf6;
  font-weight: 700;
  font-size: 29px;
}

/* 반응형 */
@media (max-width: 768px) {
  .idx_conbox_c_a h2 {
    font-size: 18px;
  }

  .bubble-list span {
    font-size: 14px;
    padding: 10px 16px;
  }

  .bottom-msg {
    font-size: 16px;
  }
}

.idx_conbox_c_b {
  background: #fff;
  padding: 80px 20px;
}

.idx_conbox_c_b .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.idx_conbox_c_b .img-area img {
  max-width: 400px;
  width: 100%;
  height: auto;
}

.idx_conbox_c_b .text-area {
  flex: 1;
  min-width: 300px;
  color: #111845;
}

.idx_conbox_c_b .text-area h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
}

.idx_conbox_c_b .text-area p {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 24px;
}

.idx_conbox_c_b .btn {
  display: inline-block;
  padding: 12px 24px;
  background: #2978f8;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}

/* 반응형 */
@media (max-width: 768px) {
  .idx_conbox_c_b .container {
    flex-direction: column;
    text-align: center;
  }

  .idx_conbox_c_b .img-area img {
    max-width: 300px;
    margin: 0 auto;
  }

  .idx_conbox_c_b .text-area h2 {
    font-size: 20px;
  }

  .idx_conbox_c_b .text-area p {
    font-size: 14px;
  }
}
.idx_conbox_c_b {
  background: transparent;
  padding: 80px 20px;
  /* padding-top: 0; */
}

.idx_conbox_c_b .container {
  max-width: var(--main-maxwidth);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.idx_conbox_c_b .img-area img {
  max-width: 400px;
  width: 100%;
  height: auto;
}

.idx_conbox_c_b .text-area {
  flex: 1;
  min-width: 300px;
  text-align: left;
  color: #111845;
}

.idx_conbox_c_b .text-area h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
}

.idx_conbox_c_b .text-area p {
  font-size: 12px;
  color: #444;
  font-weight: 600;
  line-height: 16px;
  margin-bottom: 24px;
}

.idx_conbox_c_b .btn {
  display: inline-block;
  padding: 12px 69px;
  background: #2978f8;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}

img.idx_conboxc_img_b {
    position: relative;
    left: -100px;
}

/* 반응형 */
@media (max-width: 768px) {

	img.idx_conboxc_img_b {
    position: relative;
    left: 0px;
}
	
  .idx_conbox_c_b .container {
    flex-direction: column;
    text-align: center;
  }

  .idx_conbox_c_b .img-area img {
    max-width: 300px;
    margin: 0 auto;
  }

  .idx_conbox_c_b .text-area h2 {
    font-size: 20px;
  }

  .idx_conbox_c_b .text-area p {
    font-size: 14px;
  }
}

.idx_conbox_c_b .container > .img-area {
    flex: 1;
}

.idx_conbox_c_b:nth-child(2n) .container {
    flex-direction: row-reverse;
}

	/*idx_conbox_c*/
	/*idx_formbox_a*/
	.idx_formbox_a {
  background-color: #fefefe;
  padding: 80px 20px;
  padding-top: var(--main-pd-tb);
  padding-bottom: var(--main-pd-tb);
  font-family: 'sans-serif';
}

.form-title {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 90px;
  color: #222;
  border-bottom: 0;
  display: block;
  padding-bottom: 0;
  position: relative;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.form-left,
.form-right {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

label {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 4px;
  color: #9b9999;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  background-color: white;
}

textarea {
  resize: vertical;
  font-family: inherit;
}

.required {
  color: red;
  margin-left: 4px;
}

.check-wrap {
  font-size: 13px;
  color: #444;
}

.check-wrap p {
	font-weight: 700;
}

.check-wrap label {
  display: flex;
  margin: 8px 0;
}

button[type="submit"] {
  background-color: #3a7cfc;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 26px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s;
}

button[type="submit"]:hover {
  background-color: #2a65db;
}

/* 반응형 */
@media (max-width: 768px) {
  .form-wrap {
    flex-direction: column;
  }

  .form-left,
  .form-right {
    width: 100%;
  }
}

.check-wrap label > input[type="checkbox"] {
    flex: initial;
    width: 22px;
}

.check-wrap label > span.checkbox_a {
    flex: auto;
}

.check-wrap label b {
    color: #3a7cfc;
}

.form-title::after {
    content: "";
    display: block;
    width: 104px;
    height: 1px;
    background: #ccc;
    margin: 0 auto;
    position: relative;
    top: 28px;
}

	/*idx_formbox_a*/
	/*idx_itembox_a*/
.idx_itembox_a {
  text-align: center;
  padding: 60px 20px;
}

.idx_itembox_a h2 {
  font-size: 30px;
  FONT-WEIGHT: 400;
  margin-bottom: 80px;
}

.idx_itembox_a h2 strong {
  font-weight: 700;
}

.idx_itembox_a .steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.idx_itembox_a .step {
  flex: 1 1 250px;
  max-width: 300px;
}

.idx_itembox_a .step img {
  width: 60px;
  height: 55px;
  margin-bottom: 20px;
}

.idx_itembox_a .step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.idx_itembox_a .step p {
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .idx_itembox_a .steps {
    flex-direction: column;
    align-items: center;
  }
}
	/*idx_itembox_a*/
	/*idx_itembox_b*/
	.idx_itembox_b {
  text-align: center;
  padding: 60px 20px;
}

.idx_itembox_b .container {
  max-width: 1000px;
  margin: 0 auto;
}

.idx_itembox_b h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.idx_itembox_b .subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
}

.idx_itembox_b .steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.idx_itembox_b .step {
  flex: 1 1 250px;
  max-width: 300px;
  text-align: left;
  margin-left: 56px;
}

.idx_itembox_b .step .icon {
  width: 12px;
  height: 12px;
  background: radial-gradient(circle at center, #f00, #f0f);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: none;
}

.idx_itembox_b .step h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.idx_itembox_b .step p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
}

@media (max-width: 768px) {
  .idx_itembox_b .steps {
    flex-direction: column;
    align-items: center;
  }
}
	/*idx_itembox_b*/
	/*footer*/
.footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  font-size: 14px;
}

.footer-awards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-awards img {
  height: ㅁ;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-logo img {
  height: 40px;
  margin-bottom: 8px;
}

.footer-logo .slogan {
  font-size: 13px;
  color: #ccc;
  margin-bottom: 20px;
}

.footer-info {
  color: #ccc;
  margin-bottom: 15px;
  line-height: 1.6;
}

.footer-info a {
  color: #ccc;
  text-decoration: none;
}

.footer-links {
  margin-top: 10px;
  font-weight: 600;
}

.footer-links a {
  color: #fff;
  margin: 0 5px;
  text-decoration: none;
  display: block;
}

.footer-links a:hover {
  text-decoration: underline;
}

/*  반응형 */
@media (max-width: 600px) {
  .footer-awards {
    gap: 20px;
  }

  .footer-info {
    font-size: 13px;
  }

  .footer-links {
    font-size: 13px;
  }
}
.footer-links > a.wekfnt {
    margin-top: 5px;
    color: #ccc;
    font-weight: 300;
}
	/*footer*/

section.idx_conbox_c {}

section.idx_conbox_c > img {
    width: 1440px;
    margin: 0 auto;
}
/*idx_conbox_ytb*/
.idx_conbox_ytb {
  background: #f2f3f7;
  padding: 80px 20px;
  padding-top: 40px;
}

.idx_conbox_ytb .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.idx_conbox_ytb .ytb-left {
  flex: 1 1 500px;
}

.idx_conbox_ytb .ytb-box {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #ccc;
}

.idx_conbox_ytb .ytb-box iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

.idx_conbox_ytb .ytb-right {
  flex: 1 1 400px;
}

.idx_conbox_ytb h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.idx_conbox_ytb p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 24px;
}

.idx_conbox_ytb .logo-list {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.idx_conbox_ytb .logo-list img {
  height: 40px;
  max-width: 100%;
}

/* 반응형 */
@media (max-width: 768px) {
  .idx_conbox_ytb .container {
    flex-direction: column;
  }

  .idx_conbox_ytb h2 {
    font-size: 18px;
    text-align: center;
  }

  .idx_conbox_ytb p {
    text-align: center;
  }

  .idx_conbox_ytb .logo-list {
    justify-content: center;
  }
}

.idx_conbox_ytb .logo-list > img {
    width: 131px;
    height: auto;
}

/*idx_conbox_ytb*/

/*idx_pntsbox*/
section.idx_pntsbox {
    max-width: var(--main-maxwidth);
    margin: 0 auto;
    padding-top: var(--main-pd-tb);
    padding-bottom: var(--main-pd-tb);
}

section.idx_pntsbox > img {
    width: 100%;
}
/*idx_pntsbox*/
/*det update*/
font.a {
    font-size: 20px;
}

font.a.r {color: #3a7cfc;}
/*det update*/
@media (max-width: 780px) {

.process-flow > img {
    width: 100%;
}

.footer-awards > img {
    width: 100%;
}

.process-card {
    width: calc(100% - 45px);
}

section.idx_itembox_a_iconr {}

section.idx_itembox_a_iconr > img {
    width: 100% !important;
    padding: 10px;
    border: 1px solid #eee;
}

.idx_itembox_b .step {
    flex: 1 1 0px;
}

section.idx_itembox_b {padding-bottom: 0;}

.form-title {
    word-break: keep-all;
}

.idx_conbox_ytb .ytb-left {
    flex: 1 1 0px;
}

.idx_conbox_ytb .ytb-right {
    flex: 1 1 0px;
}

}