@charset "UTF-8";
/* 전역 변수 */
:root {
  --color-main: #2563EB;
  --color-sub: #1e293b;
  --color-error: #ef4444;
  --color-gray: #94a3b8;
  --color-base: #334155;
  --color-border: #e2e8f0;
  --color-grad: linear-gradient(135deg, #2563EB, #38BDF8);
}

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

.point {
  color: var(--color-error) !important;
}

.dim {
  color: var(--color-gray) !important;
}

.mb-1 {
  margin-bottom: 1rem;
}

/* ELLIPSIS */
/*
 * 파일명 : sub.scss
 * 역할   : 서브페이지 레이아웃
 */
.visual {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  background: radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.35), transparent 18%), radial-gradient(circle at 90% 65%, rgba(56, 189, 248, 0.38), transparent 24%), linear-gradient(135deg, #2563eb 0%, #1d4ed8 46%, #38bdf8 100%);
  padding: 5rem 0;
}
@media screen and (max-width: 1200px) {
  .visual {
    padding: 3rem 1rem;
  }
}
@media screen and (max-width: 767px) {
  .visual {
    padding: 2rem 1rem;
  }
}
.visual__inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 1200px) {
  .visual__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}
.visual__content {
  width: 60%;
  height: auto;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  .visual__content {
    width: 100%;
  }
}
.visual__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.visual__badge i {
  font-size: 0.85rem;
}
.visual__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 1200px) {
  .visual__title {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .visual__title {
    font-size: 1.8rem;
  }
}
.visual__title strong {
  font-weight: 800;
  color: #facc15;
}
.visual__desc {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  word-break: keep-all;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .visual__desc {
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
  }
}
.visual__cards {
  display: flex;
  gap: 12px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .visual__cards {
    flex-direction: column;
    gap: 8px;
  }
}
.visual__item {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 1.2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  backdrop-filter: blur(5px);
}
.visual__item .subject {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.visual__item .sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}
.visual__recom {
  width: 40%;
  height: auto;
}
@media screen and (max-width: 1200px) {
  .visual__recom {
    width: 100%;
  }
}
.visual__recom .inner {
  background-color: #fff;
  border-radius: 2rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15);
}
@media screen and (max-width: 767px) {
  .visual__recom .inner {
    padding: 2rem 1.5rem;
  }
}
.visual__recom .title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-sub);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2rem;
}
.visual__recom .title i {
  color: var(--color-main);
}
@media screen and (max-width: 767px) {
  .visual__recom .title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
}
.visual__recom .list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.visual__recom .list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #f8fafc;
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  box-sizing: border-box;
}
.visual__recom .list li .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  color: var(--color-main);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.visual__recom .list li .txt {
  font-weight: 700;
  color: var(--color-base);
  letter-spacing: -0.01em;
}
@media screen and (max-width: 767px) {
  .visual__recom .list li .txt {
    font-size: 0.9rem;
  }
}

.cs {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  background-color: #f8fafc;
  padding: 3rem 0;
}
@media screen and (max-width: 1200px) {
  .cs {
    padding: 2.5rem 1rem;
  }
}
@media screen and (max-width: 767px) {
  .cs {
    padding: 1.5rem 1rem;
  }
}
.cs__inner {
  width: 100%;
  max-width: 1200px;
}
.cs__inner .inner {
  background-color: #fff;
  border: 2px solid var(--color-main);
  border-radius: 2rem;
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.08);
}
@media screen and (max-width: 1200px) {
  .cs__inner .inner {
    padding: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .cs__inner .inner {
    border-radius: 1rem;
  }
}
.cs__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-main);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .cs__title {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
  }
}
.cs {
  /* 규칙 반영: Grid를 배제하고 Flex와 가로폭 수치로만 제어 */
}
.cs__form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .cs__form {
    gap: 16px 12px;
  }
}
@media screen and (max-width: 767px) {
  .cs__form {
    gap: 12px 0;
  }
}
.cs__form .group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: calc((100% - 60px) / 6);
}
@media screen and (max-width: 1200px) {
  .cs__form .group {
    width: calc((100% - 24px) / 3);
  }
}
@media screen and (max-width: 767px) {
  .cs__form .group {
    width: 100%;
  }
}
.cs__form .label {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-sub);
  padding-left: 2px;
}
.cs__form .input-wrap {
  width: 100%;
}
.cs__form .input-wrap input {
  width: 100%;
  height: 48px;
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  padding: 0 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-sub);
  box-sizing: border-box;
  background-color: #fff;
  transition: border-color 0.2s;
}
@media screen and (max-width: 767px) {
  .cs__form .input-wrap input {
    height: 44px;
    padding: 0 0.6rem;
    font-size: 0.85rem;
  }
}
.cs__form .input-wrap input:focus {
  border-color: var(--color-main);
  outline: none;
}
.cs__form .radio-box {
  display: flex;
  gap: 6px;
  width: 100%;
}
.cs__form .radio-box .radio {
  flex: 1;
  cursor: pointer;
}
.cs__form .radio-box .radio input {
  display: none;
}
.cs__form .radio-box .radio span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #94a3b8;
  background-color: #fff;
  transition: all 0.2s ease;
}
@media screen and (max-width: 767px) {
  .cs__form .radio-box .radio span {
    height: 44px;
    font-size: 0.85rem;
  }
}
.cs__form .radio-box .radio input:checked + span {
  background: var(--color-main);
  border-color: var(--color-main);
  color: #fff;
}
.cs__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .cs__foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .cs__foot {
    margin-top: 1.2rem;
    gap: 1.2rem;
  }
}
.cs__agree {
  display: flex;
  align-items: center;
  gap: 6px;
}
@media screen and (max-width: 767px) {
  .cs__agree {
    width: 100%;
    justify-content: space-between;
  }
}
.cs__agree .check-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.cs__agree .check-label input {
  display: none;
}
.cs__agree .check-label .custom-check {
  width: 18px;
  height: 18px;
  border: 2px solid var(--color-gray);
  border-radius: 4px;
  position: relative;
  transition: all 0.2s;
}
.cs__agree .check-label .custom-check::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  display: none;
}
.cs__agree .check-label input:checked + .custom-check {
  background-color: var(--color-main);
  border-color: var(--color-main);
}
.cs__agree .check-label input:checked + .custom-check::after {
  display: block;
}
.cs__agree .check-label .txt {
  font-size: 0.88rem;
  font-weight: 700;
  color: #475569;
}
@media screen and (max-width: 767px) {
  .cs__agree .check-label .txt {
    font-size: 0.8rem;
  }
}
.cs__agree .btn-link {
  background: none;
  border: none;
  color: var(--color-main);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .cs__agree .btn-link {
    font-size: 0.8rem;
  }
}
.cs__buttons {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 1200px) {
  .cs__buttons {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .cs__buttons {
    flex-wrap: wrap;
    gap: 8px;
  }
}
.cs__buttons .btn-submit {
  height: 54px;
  padding: 0 1.8rem;
  border: none;
  border-radius: 1rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.15s;
}
@media screen and (max-width: 1200px) {
  .cs__buttons .btn-submit {
    flex: 1;
  }
}
@media screen and (max-width: 767px) {
  .cs__buttons .btn-submit {
    width: 100%;
    height: 48px;
    flex: auto;
    font-size: 0.9rem;
    padding: 0 1rem;
  }
}
.cs__buttons .btn-submit:active {
  transform: scale(0.98);
}
.cs__buttons .btn-submit--dark {
  background-color: #475569;
  box-shadow: 0 4px 15px rgba(71, 85, 105, 0.2);
}
.cs__buttons .btn-submit--kakao {
  background-color: #fee500;
  color: #191919;
  box-shadow: 0 4px 15px rgba(254, 229, 0, 0.25);
}

.coverage {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  background-color: #f8fafc;
  padding: 5rem 0;
}
@media screen and (max-width: 1200px) {
  .coverage {
    padding: 4rem 1rem;
  }
}
@media screen and (max-width: 767px) {
  .coverage {
    padding: 3rem 1rem;
  }
}
.coverage__inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
@media screen and (max-width: 767px) {
  .coverage__inner {
    gap: 2rem;
  }
}
.coverage__head {
  text-align: center;
}
.coverage__head .badge {
  display: inline-block;
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--color-main);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.coverage__head .title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-sub);
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .coverage__head .title {
    font-size: 1.4rem;
    word-break: keep-all;
    text-wrap: balance;
  }
}
.coverage__head .desc {
  font-size: 1.05rem;
  color: var(--color-gray);
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .coverage__head .desc {
    font-size: 0.9rem;
    word-break: keep-all;
    text-wrap: balance;
  }
}
.coverage__cards {
  width: 100%;
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 1200px) {
  .coverage__cards {
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .coverage__cards {
    flex-direction: column;
    gap: 14px;
  }
}
.coverage__cards .item {
  width: calc((100% - 48px) / 3);
  background-color: #fff;
  border-radius: 2rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media screen and (max-width: 1200px) {
  .coverage__cards .item {
    width: calc((100% - 32px) / 3);
    padding: 2rem 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .coverage__cards .item {
    width: 100%;
    padding: 1.8rem 1.5rem;
  }
}
.coverage__cards .item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.06);
}
.coverage__cards .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: rgba(37, 99, 235, 0.08);
  border-radius: 12px;
  color: var(--color-main);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .coverage__cards .icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}
.coverage__cards .subject {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-sub);
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 767px) {
  .coverage__cards .subject {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
}
.coverage__cards .txt {
  font-size: 0.95rem;
  color: var(--color-base);
  line-height: 1.6;
  font-weight: 500;
  word-break: keep-all;
}
@media screen and (max-width: 767px) {
  .coverage__cards .txt {
    font-size: 0.85rem;
  }
}

.compare {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  background-color: #fff;
  padding: 5rem 0;
}
@media screen and (max-width: 1200px) {
  .compare {
    padding: 4rem 1rem;
  }
}
@media screen and (max-width: 767px) {
  .compare {
    padding: 3rem 1rem;
  }
}
.compare__inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .compare__inner {
    gap: 1.8rem;
  }
}
.compare .compare__head {
  text-align: center;
}
.compare .compare__head .badge {
  display: inline-block;
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--color-main);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.compare .compare__head .title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-sub);
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .compare .compare__head .title {
    font-size: 1.4rem;
    word-break: keep-all;
    text-wrap: balance;
  }
}
.compare .compare__head .desc {
  font-size: 1.05rem;
  color: var(--color-gray);
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .compare .compare__head .desc {
    font-size: 0.85rem;
  }
}
.compare {
  /* 테이블 제어 보드 */
}
.compare .compare__board {
  width: 100%;
  background-color: #fff;
  border: 1px solid var(--color-border);
  border-radius: 2rem;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.03);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .compare .compare__board {
    overflow-x: auto;
    border-radius: 1rem;
    -webkit-overflow-scrolling: touch;
  }
}
.compare .compare__board table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  table-layout: fixed;
}
@media screen and (max-width: 1200px) {
  .compare .compare__board table {
    min-width: 600px;
  }
}
@media screen and (max-width: 767px) {
  .compare .compare__board table {
    min-width: 400px;
    table-layout: auto;
  }
}
.compare .compare__board table thead {
  background-color: #f0f7ff;
  border-bottom: 1px solid rgba(37, 99, 235, 0.15);
}
.compare .compare__board table thead th {
  padding: 1.2rem 1.5rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-main);
  letter-spacing: -0.01em;
}
@media screen and (max-width: 767px) {
  .compare .compare__board table thead th {
    min-width: 100px;
    font-size: 0.85rem;
    padding: 1rem;
  }
}
.compare .compare__board table tbody tr {
  border-bottom: 1px solid var(--color-border);
  transition: background-color 0.15s;
}
.compare .compare__board table tbody tr:last-child {
  border-bottom: none;
}
.compare .compare__board table tbody tr:hover {
  background-color: #f8fafc;
}
.compare .compare__board table tbody th {
  padding: 1.2rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-sub);
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .compare .compare__board table tbody th {
    font-size: 0.85rem;
    padding: 1rem;
  }
}
.compare .compare__board table tbody td {
  padding: 1.2rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-base);
  word-break: keep-all;
}
@media screen and (max-width: 767px) {
  .compare .compare__board table tbody td {
    padding: 1rem;
    font-size: 0.85rem;
  }
}

.guide {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  background-color: #f8fafc;
  padding: 5rem 0;
}
@media screen and (max-width: 1200px) {
  .guide {
    padding: 4rem 1rem;
  }
}
@media screen and (max-width: 767px) {
  .guide {
    padding: 3rem 1rem;
  }
}
.guide__inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  gap: 2.5rem;
  align-items: stretch;
}
@media screen and (max-width: 1200px) {
  .guide__inner {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.guide {
  /* 좌측 하이라이트 그라데이션 보드 */
}
.guide .guide__board {
  width: 50%;
  background: linear-gradient(135deg, #2563EB, #38BDF8);
  border-radius: 2rem;
  padding: 3rem 2.5rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 18px 50px rgba(37, 99, 235, 0.18);
}
@media screen and (max-width: 1200px) {
  .guide .guide__board {
    width: 100%;
    padding: 2.5rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .guide .guide__board {
    padding: 2rem 1.2rem;
    border-radius: 1rem;
  }
}
.guide .guide__board .title {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 767px) {
  .guide .guide__board .title {
    font-size: 1.35rem;
    word-break: keep-all;
    text-wrap: balance;
  }
}
.guide .guide__board .desc {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 2rem;
  word-break: keep-all;
}
@media screen and (max-width: 767px) {
  .guide .guide__board .desc {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }
}
.guide .guide__board .list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.guide .guide__board .list li {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #f8fafc;
  color: var(--color-sub);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}
@media screen and (max-width: 767px) {
  .guide .guide__board .list li {
    padding: 0.8rem 1.2rem;
    gap: 8px;
  }
}
.guide .guide__board .list .icon {
  color: #08255C;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .guide .guide__board .list .icon {
    font-size: 0.95rem;
  }
}
.guide .guide__board .list .txt {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .guide .guide__board .list .txt {
    font-size: 0.85rem;
  }
}
.guide {
  /* 우측 기본 화이트 보드 */
}
.guide .guide__info {
  width: 50%;
  background-color: #fff;
  border: 1px solid var(--color-border);
  border-radius: 2rem;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}
@media screen and (max-width: 1200px) {
  .guide .guide__info {
    width: 100%;
    padding: 2.5rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .guide .guide__info {
    padding: 2rem 1.2rem;
    border-radius: 1rem;
  }
}
.guide .guide__info .badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: rgba(37, 99, 235, 0.08);
  border-radius: 10px;
  color: var(--color-main);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .guide .guide__info .badge-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}
.guide .guide__info .title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-sub);
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 767px) {
  .guide .guide__info .title {
    font-size: 1.25rem;
    word-break: keep-all;
    text-wrap: balance;
  }
}
.guide .guide__info .desc {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-base);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  word-break: keep-all;
}
@media screen and (max-width: 767px) {
  .guide .guide__info .desc {
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
  }
}
.guide .guide__info .sub-desc {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-gray);
  line-height: 1.6;
  word-break: keep-all;
}
@media screen and (max-width: 767px) {
  .guide .guide__info .sub-desc {
    font-size: 0.85rem;
  }
}