.blind {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
}

.inner {
}

.ellipsis-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 400px;
  line-height: 1.4em;
  /* 줄 높이 */
  max-height: calc(1.4em * 2);
  /* 최대 높이 (2줄 기준) */
}
.ellipsis-5 {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  /* 두 줄로 제한 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* 스와이퍼 버튼 초기화 */
.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

.main-tit {
  font-size: 34px;
  font-weight: var(--font-eb) !important;
  line-height: 1.2;
}

.main-subtit {
  font-size: 18px;
  font-weight: var(--font-b) !important;
  color: var(--fc-subtit);
  line-height: 1.2;
}

.bold_18 {
  font-weight: var(--font-b) !important;
  font-size: 18px !important;
}

/* common */

.lo-hover {
  transform: translateY(-3px);
}

.lo-shadow {
  box-shadow: rgba(0, 0, 0, 0.25) -2px 3px 90px -20px !important;
}

.z-index1 {
  z-index: 1 !important;
}

.z-index2 {
  z-index: 2 !important;
}

.z-index3 {
  z-index: 3 !important;
}

.z-indexMax {
  z-index: 1000000 !important;
}

.d-md-none {
  display: none !important;
}

.d-md-inline {
  display: inline !important;
}

.d-md-block {
  display: block !important;
}

.d-md-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-md-grid {
  display: grid !important;
}

.d-md-table {
  display: table !important;
}

.over-h {
  overflow: hidden;
}

.color_gray {
  background: #f7f7f7;
}

.defalt_link {
  text-decoration: dashed !important;
  color: var(--primary-blue);
}
.fa-bars {
  display: inline-block;
  width: 20px;
  font-size: 20px;
  text-align: center;
}
/* text color */
.color-white {
  color: #fff;
}
.color-caution {
  color: #5f6975;
}
.color-call_btn {
  color: #f23e37;
}
/* bg color */
.bg-red {
  background: #d60800;
}
/* font-size */
.fz-50 {
  font-size: 50px;
}
.fz-24 {
  font-size: 24px;
}
.fz-22 {
  font-size: 22px;
}
.fz-20 {
  font-size: 20px;
}
.fz-18 {
  font-size: 18px;
}
.fz-16 {
  font-size: 16px;
}
.fz-15 {
  font-size: 15px;
}
.fz-14 {
  font-size: 14px;
}
.fz-12 {
  font-size: 12px;
}
/* font-weight */
.fw-700,
strong {
  font-weight: 700;
}
.fw-600 {
  font-weight: 600;
}
.fw-500 {
  font-weight: 500;
}
/* margin */
.mb-5 {
  margin-bottom: 5px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-15 {
  margin-bottom: 15px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-50 {
  margin-bottom: 50px;
}

.mt-10 {
  margin-top: 10px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-50 {
  margin-top: 50px;
}
.mt-60 {
  margin-top: 60px;
}
.mt-70 {
  margin-top: 70px;
}
.mt-80 {
  margin-top: 80px;
}
/* padding */
.pl-20 {
  padding-left: 20px;
}
.pl-30 {
  padding-left: 30px;
}
.pt-20 {
  padding-top: 20px;
}
.pb-20 {
  padding-bottom: 20px;
}
.pt-30 {
  padding-top: 30px;
}
.pb-30 {
  padding-bottom: 30px;
}
.pt-40 {
  padding-top: 40px;
}
.pb-40 {
  padding-bottom: 40px;
}

/* line-hight */

.lh-17 {
  line-height: 1.7;
}

@media screen and (max-width: 1400px) {
  .d-none {
    display: none !important;
  }

  .d-inline {
    display: inline !important;
  }

  .d-inline-flex {
    display: inline-flex !important;
  }

  .d-block {
    display: block !important;
  }

  .d-flex {
    display: flex !important;
  }

  .d-grid {
    display: grid !important;
  }

  .d-table {
    display: table !important;
  }
}

/* arrow 애니메이션 */
@keyframes firstArrowOut {
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes secondArrowIn {
  to {
    transform: translateX(0%);
    opacity: 1;
  }
}

@keyframes firstArrowIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0%);
    opacity: 1;
  }
}

@keyframes secondArrowOut {
  from {
    transform: translateX(0%);
    opacity: 1;
  }

  to {
    transform: translateX(-100%);
    opacity: 0;
  }
}

@media screen and (min-width: 993px) {
  .section {
    padding: 100px 0;
  }
}

@media screen and (max-width: 992px) {
  .section {
    padding: 50px 0px;
  }

  .main-tit {
    font-size: 28px;
  }

  .main-subtit {
    font-size: 16px;
  }

  .bold_18 {
    font-size: 14px !important;
  }

  .more--block span {
    display: none;
  }

  .inner {
    padding: 0 15px;
  }

  .about_wrapper .inner {
    padding: 0 10px;
  }

  .section_header--block {
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 30px;
  }

  .mt100 {
    margin-top: 50px;
  }

  .mt50 {
    margin-top: 25px;
  }
}

body {
  font-size: 15px;
}
h1 {
  font-size: 22px;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 19px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 17px;
}

h6 {
  font-size: 16px;
}

p {
  font-size: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}
