@charset "utf-8";

/* #content */
.img_box img {
  width: 100%;
}

.block {
  display: block;
}

.m_color {
  color: #0c82fe;
}

section .inner .title_text {
  font-weight: 700;
  font-size: 70px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #000;
}

section .inner .sub_text {
  font-weight: 700;
  font-size: 50px;
  line-height: 1.5em;
  padding: 50px 0;
  text-align: center;
  margin-top: 50px;
  position: relative;
}

section .inner .sub_text::before {
  content: "";
  display: block;
  width: 85px;
  height: 4px;
  background: #161718;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -42.5px;
}

section .inner .sub_explain p {
  font-weight: 300;
  font-size: 36px;
  line-height: 50px;
  letter-spacing: -1px;
  text-align: center;
  color: #505050;
  margin-bottom: 1em;
}

section .inner .sub_explain p:last-of-type {
  margin-bottom: 0;
}

section .inner .sub_explain p strong {
  font-weight: 500;
}

section > .inner {
  padding: 150px 16.66%;
  box-sizing: border-box;
}

.intro_banner {
  width: 100%;
  padding-top: calc(700 / 1920 * 100%);
  position: relative;
  background-image: url(../images/img_intro_banner.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.intro_banner .inner {
  width: auto;
  text-align: left;
  position: absolute;
  left: 30%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.intro_banner .inner > span {
  display: block;
  font-size: 22px;
  letter-spacing: 8px;
  color: rgba(0, 0, 0, 0.2);
  margin-bottom: 40px;
}

.intro_banner .inner > span .m_color {
  color: #4475c1;
}

.intro_banner .inner strong {
  color: #000000;
  font-size: 90px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.intro_banner .inner p {
  font-size: 90px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.intro_banner .inner .sub-headline {
  font-size: 40px;
  color: #0c82fe;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-top: 1em;
  font-weight: 300;
}

/* 2. sub-headline 내부 <strong> 태그의 스타일 덮어쓰기 (가장 중요) */
/* 기존 .intro_banner .inner strong 규칙(font-size: 90px, color: #000)을 덮어씁니다. */
.intro_banner .inner .sub-headline strong {
  /* 부모(.sub-headline)의 스타일을 그대로 상속받도록 설정 */
  font-size: inherit;
  /* 부모의 font-size(40px)를 따름 */
  color: inherit;
  /* 부모의 color(#0C82FE)를 따름 */
  line-height: inherit;
  /* 부모의 line-height를 따름 */
  letter-spacing: inherit;
  /* 부모의 letter-spacing을 따름 */

  /* strong 태그 고유의 스타일만 지정 */
  font-weight: bold;

  /* 기존 strong 규칙의 불필요한 스타일 초기화 */
  display: inline;
  padding: 0;
}

.definition .inner .title_text,
.definition .inner .sub_text,
.definition .inner .sub_explain {
  text-align: left;
}

/* 2단 레이아웃을 위한 Flexbox 컨테이너 */
.definition .inner .definition-layout {
  display: flex;
  justify-content: space-between;
  /* 양쪽 끝으로 배치하고 사이 공간을 만듬 */
  align-items: center;
  /* 세로 중앙 정렬 */

  /* 최소 간격을 보장 */
}

/* 왼쪽 텍스트 컨텐츠 영역 */
.definition .inner .text-content {
  flex-shrink: 0;
  /* 화면이 줄어들 때 텍스트 영역이 찌그러지는 것을 방지 */
  max-width: 55%;
  /* 너비가 너무 커지지 않도록 제한 */
}

.definition .inner .def-title {
  font-size: 70px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -1px;
  text-wrap: balance;
  word-break: keep-all;
}

.definition .inner .def-title .def-highlight {
  font-weight: 700;
}

.definition .inner .def-explain {
  margin-top: 40px;
  font-size: 34px;
  line-height: 1.4;
  letter-spacing: -1px;
}

.definition .inner .def-explain p {
  margin-bottom: 2em;
}

.definition .inner .def-explain p:last-child {
  margin-bottom: 0;
}

.definition .inner .def-explain strong {
  font-weight: 600;
  color: #222;
}

.definition .inner .def-explain .def-blue-text {
  font-size: 34px;
  line-height: 1.4;
  color: #0c82fe;
  font-weight: 600;
}

.definition .inner .def-explain .def-blue-text strong {
  font-weight: 700;
  color: #0c82fe;
}

/* 오른쪽 말풍선 컨텐츠 영역 */
.definition .inner .bubble-content {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.definition .inner .worry-bubble {
  border: 1px solid;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* 가로 중앙 정렬 */

  /* 텍스트 중앙 정렬 */
  justify-content: center;
}

.definition .inner .worry-bubble p {
  font-size: 34px;
  line-height: 1.4;
}

.definition .inner .tags-container {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.definition .inner .tags-container .tag {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 24px;
  font-weight: 700;
}

.definition .inner .worry-bubble.bubble-blue {
  border-color: #4eb8ff;
}

.definition .inner .worry-bubble.bubble-blue .tag {
  color: #4eb8ff;
  background-color: transparent;
  border: 1px solid #4eb8ff;
}

.definition .inner .worry-bubble.bubble-light-blue {
  border-color: #0c82fe;
}

.definition .inner .worry-bubble.bubble-light-blue .tag {
  color: #0c82fe;
  background-color: transparent;
  border: 1px solid #0c82fe;
}

.definition .inner .worry-bubble.bubble-mint {
  border-color: #29c8a8;
}

.definition .inner .worry-bubble.bubble-mint .tag {
  color: #29c8a8;
  background-color: transparent;
  border: 1px solid #29c8a8;
}

.advantage {
  background-color: #f7f7f7;
  position: relative;
  /* 자식 요소를 absolute로 배치하기 위한 기준점 */
  width: 100%;
  /* 이미지 비율(높이/너비)에 맞춰 padding-top 설정 (예: 900/1920) */
  padding-top: calc(600 / 1920 * 100%);
  background-image: url("../images/advantage.png");
  /* <<< 배경이미지 경로 */
  background-size: cover;
  /* 이미지가 영역을 꽉 채우도록 변경 */
  background-position: center;
  background-repeat: no-repeat;
}

/* 텍스트 콘텐츠를 담는 컨테이너 */
.advantage .inner .advantage-content-wrapper {
  position: absolute;
  width: 100%;
  /* 1. 기준점을 상단(top: 0)에서 세로 중앙(top: 50%)으로 변경합니다. */
  top: 55%;
  left: 0;
  /* 2. transform으로 위치를 미세 조정합니다. */
  transform: translateY(-60%);
  /* -50%가 정중앙이므로, -60%는 그보다 위쪽입니다. */

  /* Flexbox는 수평 정렬을 위해 그대로 사용합니다. */
  display: flex;
  flex-direction: column;
  align-items: center;
  /* 수평 중앙 정렬 유지 */
  /* justify-content: center; 속성은 삭제합니다. */
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

/* 메인 타이틀 */
.advantage .inner .adv-title {
  font-size: 70px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -1px;
}

/* '당신의 미소' 하이라이트 */
.advantage .inner .adv-title .adv-highlight {
  font-weight: 700;
  color: #000;
  position: relative;
  z-index: 1;
}

/* '당신의 미소' 밑줄 효과 */
.advantage .inner .adv-title .adv-highlight::after {
  content: "";
  display: block;
  width: 100%;
  height: 25px;
  background-color: #ddebff;
  position: absolute;
  bottom: 5px;
  left: 0;
  z-index: -1;
}

/* 서브 타이틀 '자신감은 미소에서부터' */
.advantage .inner .adv-subtitle {
  font-size: 48px;
  font-weight: 700;
  margin-top: 50px;
  position: relative;
  padding-top: 140px;
}

/* 서브 타이틀 위쪽의 짧은 라인 */
.advantage .inner .adv-subtitle::before {
  content: "";
  display: block;
  width: 2px;
  height: 120px;
  /* 1. 길이를 더 길게 수정 (값은 조절 가능) */

  /* 2. 단색 배경 대신 그라데이션 배경으로 변경 */
  background: linear-gradient(to bottom, rgba(78, 184, 255, 0), #0c82fe);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* 설명 텍스트 */
.advantage .inner .adv-explain {
  margin-top: 40px;
  font-size: 34px;
  line-height: 1.4;
  letter-spacing: -1px;
  font-weight: 300;
}

.advantage .inner .adv-explain .adv-bold-text {
  font-weight: 700;
}

.advantage .inner .adv-explain p:first-of-type {
  margin-bottom: 40px;
  /* 기존의 2em보다 더 큰 값으로 간격을 만듭니다. */
}

/* 
.advantage {background: #F7F7F7;}
.advantage .inner ul {display: flex; justify-content: center; align-items: stretch; flex-wrap: wrap; column-gap: 33px; row-gap: 89px; margin-top: 100px;}
.advantage .inner ul li {width: 31%; background: #fff; box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1); border-radius: 12px; 
    padding: 80px 2% 34px; box-sizing: border-box; text-align: center; position: relative;}
.advantage .inner ul li > span {display: inline-block; width: 100px; height: 100px; line-height: 100px;
    font-weight: 700; font-size: 40px; letter-spacing: -2.5px; color: #fff; background: #0C82FE; border-radius: 50%;
    position: absolute; top: -40px; left: 50%; transform: translateX(-50%);}
.advantage .inner ul li dl dt {font-weight: 700; font-size: 36px; line-height: 55px; letter-spacing: -1px; color: #161718; margin: .4em 0 .2em;}
.advantage .inner ul li dl dd {font-weight: 300; font-size: 26px; line-height: 1.5em; letter-spacing: -1px; color: #505050;} */

.compare {
  background-color: #ffffff;
  /* 섹션 전체 배경은 흰색 */
}

.compare .inner {
  text-align: center;
}

/* 메인 타이틀 */
.compare .inner .comp-title {
  font-size: 70px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -1px;

  /* 위쪽 여백 */
  position: relative;
  margin-bottom: 80px;
  /* 아래쪽 여백 */
}

.compare .inner .comp-title strong {
  font-weight: 700;
}
.compare_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: relative;
}
.compare_area .compare_box {
  position: relative;
}
.compare_area .compare_box.before::after {
  content: "";
  width: 70px;
  height: 70px;
  display: block;
  background: url(../images/ico_compare_arrow.svg) no-repeat center center;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(calc(50% + 10px), -50%);
  z-index: 1;
  background-size: contain;
}
.compare_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.compare_header .header_text {
  flex: 1;
  font-size: 34px;
  font-weight: 300;
  color: #fff;
  padding: 24px;
  background: #474a4d;
  line-height: 1;
}
.compare_header .header_text.after {
  background: #0c82fe;
}
.compare .inner .adv-subtitle {
  font-size: 48px;
  font-weight: 700;
  margin: 80px 0;
  position: relative;
  padding-top: 60px;
}

.compare .inner .adv-subtitle::before {
  content: "";
  display: block;
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(78, 184, 255, 0), #0c82fe);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.compare_note {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -1px;
  font-weight: 300;
  color: #505050;
  text-align: right;
  margin-top: 48px;
}
.compare .inner .login-overlay-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}

/* 각각의 검은색 오버레이 박스 공통 스타일 */
.compare .inner .overlay-box {
  position: absolute;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  /* pointer-events: none; */
  /* 박스 자체의 클릭 이벤트를 막고 부모가 받게 함 */
  cursor: pointer;
}

/* (가장 중요) 각 오버레이 박스의 위치와 크기 지정 */
/* ※ 제공된 이미지 기준으로 계산된 값입니다. 필요 시 미세 조정하세요. */

.compare .inner .overlay-box.box-1 {
  top: 0;
  left: calc(50% + 10px);
  width: calc(50% - 10px);
  height: 100%;
}

.compare .inner .overlay-box.box-2 {
  top: 44.5%;
  left: 50.79%;
  width: 49.2%;
  height: 24%;
}

.compare .inner .overlay-box.box-3 {
  top: 68%;
  left: 50.79%;
  width: 49.2%;
  height: 21.6%;
}

.compare .inner .compare-image-area img {
  width: 100%;
  /* 부모 너비에 맞게 꽉 채움 */
  max-width: 1400px;
  /* 이미지가 너무 커지는 것을 방지 (값 조절 가능) */
  height: auto;
  display: block;
  margin: 0 auto;
}

.point {
  background-color: #eff7ff;
}

.point .inner {
  text-align: center;
}

/* 메인 타이틀 */
.point .inner .point-title {
  font-size: 70px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -1px;
  margin-bottom: 80px;
  /* 아래 내용과의 간격 */
}

.point .inner .point-title strong {
  font-weight: 700;
}

/* 텍스트와 이미지를 담는 2단 레이아웃 */
.point .inner .point-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 9px;
  text-align: left;
}

/* 왼쪽 텍스트 영역 */
.point .inner .point-text-content {
  letter-spacing: -1px;
  flex: 1;
}

.point .inner .point-text-content h3 {
  font-size: 48px;
  font-weight: 400;
  /* <-- 700에서 400 (normal)으로 변경 */
}

.point .inner .point-text-content p {
  font-size: 34px;
  line-height: 1.4;
  text-wrap: balance;
  word-break: keep-all;
}

.point .inner .point-text-content .highlight {
  color: #0c82fe;
  font-weight: 500;
}

/* 오른쪽 이미지 영역 */
.point .inner .point-image-content {
  flex-basis: 40%;
}

.point .inner .point-image-content img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.point .inner .point-text-content .underline-highlight {
  background-image: linear-gradient(transparent 70%, #ddebff 70%);
  /* 밑줄 위치 조절 (70% 추천) */
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.point .inner .point-text-content .spaced-paragraph {
  margin-top: 50px;
  /* 원하는 간격으로 조정 */
  letter-spacing: -2px;
}

.feature {
  background: #0c82fe;
  text-align: center;
  position: relative;
}

/* 상단 타이틀 영역 */
.feature .inner .feature-top-content {
  color: #fff;
}
.feature .inner .feature-top-content {
  font-size: 70px;
  letter-spacing: -1px;
  margin-bottom: 80px;
}
.feature .inner .feature-top-content p {
  color: #a3cfff;
  font-weight: 300;
}

/* 중간의 빈 공간 영역 (flex-grow로 남는 공간을 모두 차지) */
.feature .inner .feature-image-area img:first-of-type {
  margin-bottom: 80px;
}

/* 하단 다크블루 배너 */
.feature .feature-bottom-banner {
  width: 100%;
  background: linear-gradient(90deg, #001b5e 0%, #0038c4 100%);
  padding: 20px;
}

.feature .feature-bottom-banner p {
  font-size: 42px;
  color: #fff;
}

.abutment {
  background-color: #deeeff;
}

.abutment .inner {
  text-align: center;
}

/* 상단 타이틀 */
.abutment .inner .abutment-top-title {
  margin-bottom: 80px;
  font-size: 70px;
  letter-spacing: -1px;
}

/* 2단 콘텐츠 행 */
.abutment .inner .abutment-content-row {
  display: flex;
  justify-content: center;
  /* 'space-between' 대신 'center'로 변경 */
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
  text-align: left;
}

.abutment .inner .abutment-content-row.reverse {
  flex-direction: row-reverse;
}

.abutment .inner .text-area {
  flex: 1;
  letter-spacing: -1px;
}

.abutment .inner .image-area {
  flex-basis: 40%;
}

.abutment .inner .text-area h3 {
  font-size: 48px;

  /* 또는 bold. 텍스트 전체를 굵게 만듭니다. */
  line-height: 1.2;
}

.abutment .inner .text-area h3 strong {
  font-weight: 700;
}

.abutment .inner .text-area p {
  margin-top: 40px;
  font-size: 34px;
  line-height: 1.4;
  letter-spacing: -2px;
  text-wrap: balance;
  word-break: keep-all;
}

.abutment .inner .image-area figure {
  margin: 0;
  position: relative;
}

/* 새로 추가하는 규칙 */
.abutment .inner .large-image img {
  width: 100%;
  /* 너비를 100%로 유지하여 반응형 대응 */
  /* max-width: 510px; */
  /* 최대 너비를 450px로 제한합니다. (값은 조절 가능) */
  display: block;
  /* margin: auto를 적용하기 위해 블록 요소로 변경 */
  margin: 0 auto;
  /* 이미지를 수평 중앙에 배치 */
}

.abutment .inner .image-area figcaption {
  position: absolute;
  bottom: -15px;
  /* left: 50%; */
  right: 0px;
  background-color: #0c82fe;
  color: #fff;
  padding: 10px 20px;
  font-size: 24px;
  font-weight: 500;
  border-radius: 10px;
  white-space: nowrap;
}

.abutment .inner .text-area .underline-highlight {
  /* 텍스트의 각 줄마다 배경이 적용되도록 box-decoration-break 사용 */
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background-image: linear-gradient(
    transparent 65%,
    rgba(12, 130, 254, 0.15) 65%
  );
  background-repeat: no-repeat;
  background-size: 100% 100%;

  /* 패딩으로 밑줄의 좌우 길이를 조절 */
  padding: 0 0.1em;
}

.abutment .inner .text-area p strong {
  font-weight: 600;
  /* 기존 굵기 유지 또는 'bold'로 변경 */
  color: #000000;
  /* 글자 색상을 검은색으로 지정 */
}

.recommend {
  background-color: #fff;
  /* 배경색을 흰색으로 변경 */
}

.recommend .inner {
  background-color: #f8f8f8;
  /* 내부 컨테이너 배경색 */
  padding-top: 80px;
  padding-bottom: 80px;
}

/* 상단 타이틀 */
.recommend .inner .recommend-top-title {
  text-align: center;
  margin-bottom: 80px;
  font-size: 70px;
}

.recommend .inner .highlight {
  /* 텍스트의 각 줄마다 배경이 적용되도록 box-decoration-break 사용 */
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background-image: linear-gradient(
    transparent 65%,
    rgba(12, 130, 254, 0.15) 65%
  );
  background-repeat: no-repeat;
  background-size: 100% 100%;

  /* 패딩으로 밑줄의 좌우 길이를 조절 */
  padding: 0 0.1em;
}

/* 2단 콘텐츠 행 */
.recommend .inner .recommend-content-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  text-align: left;
}

.recommend .inner .text-area {
  flex-basis: 55%;
}

.recommend .inner .image-area {
  flex-basis: 40%;
}

.recommend .inner .text-area h3 {
  font-size: 48px;
  line-height: 1.2;
  color: #000;
}

.recommend .inner .text-area h3 strong {
  font-weight: 700;
}

.recommend .inner .image-area figure {
  margin: 0;
  position: relative;
}

.recommend .inner .image-area img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.recommend .inner .image-area figcaption {
  position: absolute;
  bottom: -15px;
  /* left: 50%; */
  right: 0px;
  background-color: #0c82fe;
  color: #fff;
  padding: 10px 20px;
  font-size: 24px;
  font-weight: 500;
  border-radius: 10px;
  white-space: nowrap;
}

/* 숫자 리스트 스타일 */
.recommend .inner .step-list {
  list-style: none;
  padding-left: 0;
  margin-top: 40px;
  counter-reset: step-counter;
  /* 카운터 초기화 */
}

.recommend .inner .step-list li {
  position: relative;
  padding-left: 68px;
  margin-bottom: 30px;
}

.recommend .inner .step-list li:last-child {
  margin-bottom: 0;
}

.recommend .inner .step-list li::before {
  counter-increment: step-counter;
  content: "0" counter(step-counter);
  position: absolute;
  left: 0;
  top: -6px;
  font-size: 48px;
  font-weight: 500;
  color: #0c82fe;
}

.recommend .inner .step-list li strong {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  display: block;
  margin-bottom: 0.5em;
}

.recommend .inner .step-list li p {
  font-size: 34px;
  line-height: 1.4;
  text-wrap: balance;
  word-break: keep-all;
  letter-spacing: -1px;
}

.recommend .inner .image-area .recommend-figure img {
  width: 100%;
  /* max-width: 510px; */
  /* .abutment의 .large-image와 동일한 최대 너비 */
  display: block;
  margin: 0 auto;
  /* 수평 중앙 정렬 */
}

.benefits {
  background-color: #f0f8ff;
  /* 연한 하늘색 배경 */
}

.benefits .inner {
  text-align: center;
  position: relative;
  overflow: hidden;
  /* 하단 로고가 잘려보이도록 */
  padding-bottom: 300px;
}

/* 상단 타이틀 */
.benefits .inner .benefits-top-title {
  margin-bottom: 80px;
  font-size: 70px;
  letter-spacing: -1px;
}

.benefits .inner .benefits-top-title .sub {
  font-size: 48px;
  font-weight: 700;
  margin-top: 80px;
}

/* 중앙 원형 다이어그램 */
.benefits .inner .circular-diagram {
  position: relative;
  width: 600px;
  /* 다이어그램 전체 크기 */
  height: 600px;
  margin: 0 auto;
}

/* 배경 점선 원 */
.benefits .inner .dotted-circle-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  /* 바깥쪽 점선 원의 크기 */
  height: 90%;
  border: 3px dashed #d5eaff;
  /* 점선을 dashed로 변경하고 색상 연하게 */
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* ::before 가상 요소를 이용해 안쪽 실선 원 추가 */
.benefits .inner .dotted-circle-bg::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 75%;
  /* 안쪽 원의 크기 (바깥 원의 80%보다 작게) */
  height: 75%;

  /* 안쪽 원은 실선으로 설정 */
  border: 12px solid #d1e9ff;
  /* 두꺼운 실선과 색상 지정 */

  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  /* border 두께가 크기에 영향을 주지 않도록 */
}

/* 콘텐츠 원 아이템 */
.benefits .inner .circle-item {
  position: absolute;
  width: 260px;
  height: 260px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.benefits .inner .circle-item .highlight {
  color: #0c82fe;
  font-weight: 500;
  background: none;
}

/* 각 원의 위치 설정 */
.benefits .inner .item-1 {
  top: 0;
  left: -10%;
  transform: translateY(15%);
  z-index: 1;
  /* 중앙 원 위에 오도록 z-index 설정 */
}

.benefits .inner .item-2 {
  top: 0;
  right: -10%;
  transform: translateY(15%);
  z-index: 1;
  /* 중앙 원 위에 오도록 z-index 설정 */
}

.benefits .inner .item-3 {
  bottom: 0;
  left: 50%;
  top: 70%;
  transform: translateX(-50%);
  z-index: 1;
  /* 중앙 원 위에 오도록 z-index 설정 */
}

/* 중앙 원 */
.benefits .inner .center-item {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: 480px;
  background-color: #e5f2ff;
  font-size: 60px;
  color: #001b5e;

  /* === 아래 두 줄을 추가합니다 === */
  border: 30px solid #d5eaff;
  /* 10px 두께, #E5F2FF 색상의 실선 테두리 추가 */
  box-sizing: border-box;
  /* border 두께가 원의 전체 크기에 영향을 주지 않도록 설정 */
}
.benefits .inner .center-item::before {
  width: 370px; /* 380px - (30px * 2) - (여백 50px) -> 조정된 값 */
  height: 370px;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1; /* 콘텐츠보다 뒤에 위치 */
  background-color: #eaf6ff;
}

.benefits .inner .center-item strong {
  font-weight: 700;
}

/* 하단 로고 */
.benefits .inner .benefits-logo {
  width: calc(1234 / 1920 * 100%);
  padding-top: calc(145 / 1920 * 100%);
  background: url(../images/planlamit.png) no-repeat top center;
  background-size: contain;
  position: absolute;
  bottom: -12px;
  opacity: 0.2;
  left: 50%;
  transform: translate(-50%, 0);
}

.process .inner {
  text-align: center;
}

/* 상단 메인 타이틀 */
.process .inner .section-title {
  font-size: 70px;
  font-weight: 400;
  letter-spacing: -1px;
}

/* 중간의 전체 이미지 영역 */
.process .inner .process-image-area {
  margin: 80px 0;
  /* 위아래 제목과의 간격 */
}

.process .inner .process-image-area img {
  width: 100%;
  max-width: 1200px;
  /* 이미지가 너무 커지지 않도록 제한 */
  height: auto;

  margin: 0 auto;
}

/* 하단 서브 타이틀 */
.process .inner .section-subtitle {
  font-size: 70px;
  line-height: 1.5;
  display: inline-block;

  /* 라인 길이(50px) + 간격(20px) = 70px */
  padding-top: 150px;
  position: relative;
  font-weight: 400;
}

.process .inner .section-subtitle::before {
  content: "";
  display: block;
  width: 2px;

  /* 라인의 길이를 50px로 늘립니다. */
  height: 123px;
  background: linear-gradient(to bottom, rgba(78, 184, 255, 0), #0c82fe);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.process .inner .mo-img {
  display: none;
}

.highlight {
  background-image: linear-gradient(transparent 65%, #d1e9ff 65%);
  background-position: 0 91%;
  padding: 0 0.1em;
  margin: 0;
}

/* =================================================== */
/*       Section 2: 추천 대상 (Recommendation)         */
/* =================================================== */
.recommendation {
  background-color: #0c82fe;
  /* 전체 섹션 배경색 */
}

.recommendation .inner {
  text-align: center;
}

/* 메인 타이틀 */
.recommendation .inner .section-title {
  font-size: 70px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -1px;
}

/* 통 이미지를 배경으로 넣을 영역 */
.recommendation .inner .recommendation-image-area {
  width: 100%;
  margin-top: 60px;
  /* 제목과의 간격 */

  /* (가장 중요) 이미지의 비율(높이/너비)에 맞춰 padding-top 설정 */
  /* 예시: 이미지 높이가 600px, 너비가 1200px일 경우 */
  padding-top: calc(600 / 1200 * 100%);

  background-image: url("../images/recommendation-combined.png");
  /* <<< 6개 박스가 합쳐진 새 이미지 경로 */
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* =================================================== */
/*          Section 3: 사후 케어 (Aftercare)           */
/* =================================================== */
.aftercare {
  background-color: #deeeff;
  /* 전체 섹션 배경색 */
}

.aftercare .inner {
  text-align: center;
}

/* 메인 타이틀 */
.aftercare .inner .section-title {
  font-size: 70px;
  font-weight: 400;
  letter-spacing: -1px;
}

/* '독보적인 사후 케어' 부분에만 굵은 글씨와 형광펜 효과 적용 */
.aftercare .inner .section-title .highlight {
  font-weight: 700;
}

/* 통 이미지를 배경으로 넣을 영역 */
.aftercare .inner .aftercare-image-area {
  width: 100%;
  margin-top: 60px;
  /* 제목과의 간격 */

  /* (가장 중요) 이미지의 비율(높이/너비)에 맞춰 padding-top 설정 */
  /* 예시: 이미지 높이가 450px, 너비가 1200px일 경우 */
  padding-top: calc(450 / 1200 * 100%);

  background-image: url("../images/aftercare-combined.png");
  /* <<< 3개 카드가 합쳐진 새 이미지 경로 */
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* =================================================== */
/*         Section 1: 연구 결과 (Research)            */
/* =================================================== */
.research {
  background-color: #fff;
  /* 전체 섹션 배경은 흰색 */
}

.research .inner {
  text-align: center;
  position: relative;
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 100% 120px;
  /* 대각선 패턴의 높이 */
}

/* 메인 타이틀 */
.research .inner .section-title {
  font-size: 70px;
  font-weight: 400;
  letter-spacing: -1px;
}

/* 통 이미지를 배경으로 넣을 영역 */
.research .inner .research-image-area {
  width: 100%;
  margin-top: 60px;
  /* 제목과의 간격 */

  /* (가장 중요) 이미지의 비율(높이/너비)에 맞춰 padding-top 설정 */
  /* 예시: 이미지 높이가 550px, 너비가 1200px일 경우 */
  padding-top: calc(550 / 1200 * 100%);

  background-image: url("../images/research-combined.png");
  /* <<< 4개 박스가 합쳐진 새 이미지 경로 */
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* =================================================== */
/*         Section 2: 약속 (Promise)                */
/* =================================================== */
.promise {
  background-color: #eff7ff;
}

.promise .inner {
  text-align: center;
}

.promise .inner .section-title {
  font-size: 70px;
  font-weight: 400;
  letter-spacing: -1px;
}

.promise .inner .promise-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 40px;
  text-align: left;
}

.promise .inner .promise-item h3 {
  font-size: 32px;
  font-weight: 500;
  position: relative;
  padding-top: 15px;
  /* <-- padding-left를 padding-top으로 변경 */
  letter-spacing: -1px;
  text-wrap: balance;
  word-break: keep-all;
}

/* ::before를 h3의 위쪽에 배치합니다. */
.promise .inner .promise-item h3::before {
  content: "";
  position: absolute;
  top: 0;
  /* <-- h3의 맨 위로 위치 변경 */
  left: 0;
  /* <-- 왼쪽 정렬 유지 */
  transform: none;
  /* <-- 수직 중앙 정렬 transform 제거 */
  width: 25px;
  /* 라인의 너비 */
  height: 4px;
  /* 라인의 두께 */
  background-color: #0c82fe;
}

.promise .inner .promise-item p {
  margin-top: 15px;
  font-size: 24px;
  line-height: 1.4;
  color: #505050;
}

/* =================================================== */
/*         Section 3: 최종 배너 (Final Banner)        */
/* =================================================== */
.final-banner {
  width: 100%;
  /* 이미지 비율(높이/너비)에 맞춰 padding-top 설정 */
  padding-top: calc(800 / 1920 * 100%);
  background-image: url("../images/final-banner-image.png");
  /* <<< 최종 배너 이미지 경로 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.mo-br {
  display: none;
}

.pc-br {
  display: block;
}
@media screen and (max-width: 1680px) {
  section > .inner {
    padding: 150px 12.6%;
  }
}
/* PC (해상도 1440px ~ 1540px) */
@media screen and (max-width: 1540px) {
  section .inner .title_text {
    font-size: 44px;
  }

  section .inner .sub_text {
    font-size: 22px;
    padding: 30px 0;
    margin-top: 30px;
  }

  section .inner .sub_text::before {
    width: 60px;
    margin-left: -30px;
  }

  section .inner .sub_explain p {
    font-size: 22px;
    line-height: 1.5em;
  }

  section > .inner {
    padding: 150px 12%;
  }

  .intro {
    min-height: 740px;
  }

  .intro_banner .inner > span {
    font-size: 22px;
  }

  .intro_banner .inner strong {
    font-size: 55px;
    padding: 0.5em 0;
  }

  .intro_banner .inner p {
    font-size: 55px;
  }

  .intro_banner .inner .sub-headline {
    font-size: 25px;
  }

  /* ================== Intro Banner ================== */
  .intro_banner .inner > span {
    font-size: 22px;
  }

  .intro_banner .inner strong {
    font-size: 80px;
  }

  /* 1440px 구간보다 크게 */
  .intro_banner .inner p {
    font-size: 80px;
  }

  .intro_banner .inner .sub-headline {
    font-size: 32px;
  }

  /* ================== Definition ================== */
  .definition .inner .definition-layout {
    gap: 80px;
    /* 1440px 구간보다 넓게 */
  }

  .definition .inner .def-title {
    font-size: 40px;
    /* 1440px 구간보다 크게 */
  }

  .definition .inner .def-explain {
    font-size: 19px;
  }

  .definition .inner .worry-bubble p {
    font-size: 21px;
  }

  .definition .inner .tags-container .tag {
    font-size: 11px;
  }

  /* ================== Advantage ================== */
  .advantage .inner .adv-title {
    font-size: 58px;
  }

  .advantage .inner .adv-subtitle {
    font-size: 40px;
  }

  .advantage .inner .adv-explain {
    font-size: 30px;
  }

  /* ================== Point (수면 라미트) ================== */
  .point .inner .point-title {
    font-size: 58px;
  }

  .point .inner .point-text-content h3 {
    font-size: 44px;
  }

  .point .inner .point-text-content p {
    font-size: 30px;
  }

  /* ================== Abutment (4세대) ================== */
  .abutment .inner .abutment-top-title p,
  .abutment .inner .abutment-top-title h2 {
    font-size: 58px;
  }

  .abutment .inner .text-area h3 {
    font-size: 30px;
  }

  .abutment .inner .text-area p {
    font-size: 19px;
  }

  /* ================== Recommend (플러스 필름) ================== */
  .recommend .inner .recommend-top-title p {
    font-size: 58px;
  }

  .recommend .inner .recommend-top-title h2 {
    font-size: 58px;
  }

  .recommend .inner .text-area h3 {
    font-size: 32px;
  }

  .recommend .inner .step-list li strong {
    font-size: 21px;
  }

  .recommend .inner .step-list li p {
    font-size: 17px;
  }
  .benefits .inner .benefits-top-title {
    font-size: 58px;
  }
  /* ================== Process (치료 과정) ================== */
  .process .inner .section-title {
    font-size: 58px;
  }

  .process .inner .section-subtitle {
    font-size: 30px;
  }

  /* ================== Recommendation (추천 대상) ================== */
  .recommendation .inner .section-title {
    font-size: 58px;
  }

  /* ================== Aftercare (사후 케어) ================== */
  .aftercare .inner .section-title {
    font-size: 58px;
  }

  /* ================== Research (연구 결과) ================== */
  .research .inner .section-title {
    font-size: 58px;
  }

  /* ================== Promise (약속) ================== */
  .promise .inner .section-title {
    font-size: 58px;
  }

  .promise .inner .promise-item h3 {
    font-size: 28px;
  }

  .promise .inner .promise-item p {
    font-size: 21px;
  }
}

/* PC (해상도 1058px ~ 1440px) */
@media screen and (max-width: 1440px) {
  section > .inner {
    padding: 150px 8%;
  }

  .definition .inner .definition-layout {
    gap: 50px;
    /* 컬럼 간격을 줄여서 공간 확보 */
  }

  .definition .inner .def-title {
    font-size: 42px;
    /* 제목 폰트 크기 줄이기 */
  }

  .definition .inner .def-explain,
  .definition .inner .def-explain .def-blue-text {
    font-size: 18px;
    /* 설명 텍스트 폰트 크기 줄이기 */
  }

  .definition .inner .worry-bubble p {
    font-size: 18px;
    /* 말풍선 폰트 크기 줄이기 */
  }
  .definition .inner .bubble-content {
    width: 40%;
  }
  .definition .inner .worry-bubble {
    padding: 20px 30px;
    /* 말풍선 패딩 줄이기 */
    border-radius: 10px;
  }

  .definition .inner .tags-container {
    justify-content: flex-start;
    /* 왼쪽 정렬 (기본값) */
    flex-wrap: nowrap;
    /* <<< 자식 요소들이 줄바꿈되지 않도록 설정 */
  }

  .definition .inner .tags-container .tag {
    font-size: 14px;
    /* 태그 폰트 크기 줄이기 */
    padding: 6px 12px;
    /* 태그 패딩 줄이기 */
  }

  .advantage {
    /* 배경 이미지 비율에 맞춰 padding-top도 조정할 수 있습니다. (선택사항) */
    padding-top: calc(550 / 1920 * 100%);
  }

  .advantage .inner .advantage-content-wrapper {
    padding: 20px;
    /* 내부 여백도 살짝 줄여줍니다. */
  }

  /* 메인 타이틀 */
  .advantage .inner .adv-title {
    font-size: 38px;
    /* 폰트 크기 조정 */
  }

  /* '당신의 미소' 밑줄 효과 */
  .advantage .inner .adv-title .adv-highlight::after {
    height: 10px;
    /* 밑줄 두께 조정 */
  }

  /* 서브 타이틀 '자신감은 미소에서부터' */
  .advantage .inner .adv-subtitle {
    font-size: 26px;
    /* 폰트 크기 조정 */
    margin-top: 20px;
    /* 위쪽 요소와의 간격 조정 */
    padding-top: 50px;
    /* 라인과의 간격 조정 */
  }

  /* 서브 타이틀 위쪽의 짧은 라인 */
  .advantage .inner .adv-subtitle::before {
    height: 40px;
    /* 라인 길이 조정 */
  }

  /* 설명 텍스트 */
  .advantage .inner .adv-explain {
    margin-top: 21px;
    /* 위쪽 요소와의 간격 조정 */
    font-size: 18px;
    /* 폰트 크기 조정 */
  }
  .compare .inner .comp-title {
    font-size: 38px;
  }
  .point .inner .point-title {
    font-size: 38px;
    /* 제목 폰트 크기 줄이기 */
    margin-bottom: 60px;
    /* 아래 내용과의 간격 줄이기 */
  }
  .compare .inner .adv-subtitle {
    font-size: 26px;
    margin: 48px 0;
    padding-top: 40px;
  }
  .compare_header {
    gap: 12px;
  }
  .compare_header .header_text {
    font-size: 18px;
    padding: 14px;
  }

  .compare_area {
    gap: 12px;
  }
  .compare .inner .adv-subtitle::before {
    height: 28px;
  }
  .compare_area .compare_box.before::after {
    width: 48px;
    height: 48px;
  }

  .compare .inner .overlay-box.box-1 {
    left: calc(50% + 6px);
    width: calc(50% - 6px);
  }
  .compare_note {
    font-size: 12px;
    line-height: 1.6;
  }
  .feature .inner .feature-top-content p {
    font-size: 38px;
  }
  .point .inner .point-layout {
    gap: 50px;
    /* 텍스트와 이미지 사이 간격 줄이기 */
  }

  .point .inner .point-text-content h3 {
    font-size: 40px;
    /* 소제목 폰트 크기 줄이기 */
  }

  .point .inner .point-text-content p {
    font-size: 25px;
    /* 설명 텍스트 폰트 크기 줄이기 */
  }

  .abutment .inner .abutment-top-title {
    margin-bottom: 40px;
    /* 상단 타이틀 아래 여백 줄이기 */
  }

  .abutment .inner .abutment-top-title p {
    font-size: 38px;
    /* 폰트 크기 줄이기 */
  }

  .abutment .inner .abutment-top-title h2 {
    font-size: 38px;
    /* 폰트 크기 줄이기 */
  }

  .abutment .inner .abutment-content-row {
    gap: 60px;
    /* 콘텐츠 행 내부 간격 줄이기 */
    margin-bottom: 80px;
    /* 각 행 사이의 간격 줄이기 */
  }

  .abutment .inner .text-area h3 {
    font-size: 25px;
    /* 소제목 폰트 크기 줄이기 */
  }

  .abutment .inner .text-area p {
    font-size: 18px;
    /* 설명 텍스트 폰트 크기 줄이기 */
  }

  .abutment .inner .large-image img {
    max-width: 450px;
    /* 이미지 최대 너비 줄이기 */
  }

  .recommend .inner {
    padding-top: 60px;
    /* 내부 컨테이너 상단 여백 줄이기 */
    padding-bottom: 60px;
    /* 내부 컨테이너 하단 여백 줄이기 */
  }

  .recommend .inner .recommend-top-title {
    margin-bottom: 60px;
    /* 제목 아래 여백 줄이기 */
  }

  .recommend .inner .recommend-top-title p {
    font-size: 38px;
    /* 폰트 크기 줄이기 */
  }

  .recommend .inner .recommend-top-title h2 {
    font-size: 38px;
    /* 폰트 크기 줄이기 */
  }

  .recommend .inner .text-area h3 {
    font-size: 30px;
    /* 소제목 폰트 크기 줄이기 */
  }

  .recommend .inner .step-list {
    margin-top: 30px;
    /* 숫자 리스트 위쪽 여백 줄이기 */
  }

  .recommend .inner .step-list li strong {
    font-size: 20px;
    /* 숫자 리스트의 제목 폰트 크기 줄이기 */
  }

  .recommend .inner .step-list li p {
    font-size: 16px;
    /* 숫자 리스트의 설명 폰트 크기 줄이기 */
  }

  .recommend .inner .image-area .recommend-figure img {
    max-width: 450px;
    /* 이미지 최대 너비 줄이기 */
  }

  .process .inner .section-title {
    font-size: 38px;
    /* 메인 타이틀 폰트 크기 줄이기 */
  }

  .process .inner .process-image-area {
    margin: 50px 0;
    /* 이미지 위아래 여백 줄이기 */
  }

  .process .inner .section-subtitle {
    font-size: 38px;
    /* 서브 타이틀 폰트 크기 줄이기 */
    padding-top: 80px;
    /* 라인과의 간격 조정 */
    margin-top: 0;
    /* 불필요한 상단 마진 제거 */
  }

  .process .inner .section-subtitle::before {
    height: 60px;
    /* 라인 길이 조정 */
  }
  .benefits .inner .benefits-top-title {
    font-size: 38px;
  }
  .benefits .inner .benefits-top-title .sub {
    font-size: 32px;
  }

  .recommendation .inner .section-title {
    font-size: 38px;
    /* 제목 폰트 크기 줄이기 */
  }

  .aftercare .inner .section-title {
    font-size: 38px;
    /* 제목 폰트 크기 줄이기 */
  }

  .research .inner .section-title {
    font-size: 38px;
    /* 제목 폰트 크기 줄이기 */
  }

  .promise .inner .section-title {
    font-size: 38px;
    /* 메인 타이틀 폰트 크기 줄이기 */
  }

  .promise .inner .promise-grid {
    margin-top: 50px;
    /* 그리드 위쪽 여백 줄이기 */
    gap: 50px 30px;
    /* 그리드 행/열 간격 줄이기 */
  }

  .promise .inner .promise-item h3 {
    font-size: 26px;
    /* 각 항목의 제목 폰트 크기 줄이기 */
  }

  .promise .inner .promise-item p {
    font-size: 20px;
    /* 각 항목의 설명 폰트 크기 줄이기 */
  }

  .feature .inner .feature-top-content h2 {
    font-size: 38px;
    /* 폰트 크기 줄이기 */
  }
}

/* PC (해상도 1024px ~ 1058px) */
@media screen and (max-width: 1058px) {
  section > .inner {
    padding: 150px 6%;
  }
}

/* 태블릿 (해상도 769px ~ 1024px) */
@media screen and (max-width: 1024px) {
  /* content */
  section > .inner {
    padding: 80px 5%;
  }
  section .inner .title_text {
    font-size: 34px;
    letter-spacing: -1px;
  }

  section .inner .sub_text {
    font-size: 26px;
    padding: 20px 0;
    margin-top: 20px;
  }

  section .inner .sub_text::before {
    width: 32px;
    height: 2px;
    margin-left: -16px;
  }

  section .inner .sub_explain p {
    font-size: 16px;
    line-height: 22px;
  }

  /* section > .inner {padding: 80px 5%;} */

  .intro_banner {
    padding-top: calc(385 / 768 * 100%);
    background-image: url(../images/img_intro_banner_tab.png);
  }

  .intro_banner .inner > span {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 2em;
    letter-spacing: 4px;
  }

  .intro_banner .inner > span .m_color {
    color: #0c82fe;
  }

  .intro_banner .inner strong {
    display: inline-block;
    padding: 0;
    background-color: rgba(0, 0, 0, 0);
    font-size: 49px;
    line-height: 100%;
    letter-spacing: -1px;
  }

  .intro_banner .inner p {
    font-weight: 400;
    font-size: 50px;
    line-height: 1.3;
    letter-spacing: -1px;
  }
  .definition .inner .worry-bubble {
    padding: 20px 16px;
  }
.definition .inner .definition-layout{
  gap: 32px;
}
  .definition .inner .bubble-content{width:100%;}
  .definition .inner .def-title {
    font-size: 38px;
    /* 제목 폰트 크기 줄이기 */
  }
  .definition .inner .img_box {
    margin: 40px auto 12px;
  }

  .advantage {
    padding-top: calc(518/ 768 * 100%);
    background-image: url(../images/advantage_tab.png);
  }
 .advantage .inner{padding-bottom: 0;}
  .advantage .inner ul {
    width: 90%;
    gap: 16px;
    margin: 20px auto 0;
  }

  .advantage .inner ul li {
    width: 100%;
    border-radius: 50px;
    padding: 16px 4%;
    box-sizing: border-box;
    text-align: left;
    box-shadow: none;
    position: unset;
    display: flex;
    align-items: center;
  }

  .advantage .inner ul li > span {
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    font-size: 22px;
    letter-spacing: -1px;
    position: relative;
    top: 0;
    left: 0;
    transform: translateX(0);
    margin-right: 4%;
  }

  .advantage .inner ul li dl {
    width: calc(100% - 48px);
  }

  .advantage .inner ul li dl dt {
    font-size: 22px;
    line-height: 30px;
    margin: 0 0 0.2em;
  }

  .advantage .inner ul li dl dd {
    font-size: 16px;
    line-height: 22px;
  }

  .advantage .inner ul li dl dd .block {
    display: inline;
  }

  .advantage .inner ul li dl dd i {
    display: block;
  }

  .compare .inner .img_box {
    width: 90%;
    padding-top: calc(506 / 600 * 90%);
    background-image: url(../images/img_dentures_tab.png);
    margin: 20px auto 0;
  }

  .point .inner .point-title {
    font-size: 38px;
    /* 제목 폰트 크기 줄이기 */
    margin-bottom: 60px;
    /* 아래 내용과의 간격 줄이기 */
  }

  .point .inner .point-layout {
    gap: 50px;
    /* 텍스트와 이미지 사이 간격 줄이기 */
  }

  .point .inner .point-text-content h3 {
    font-size: 26px;
    /* 소제목 폰트 크기 줄이기 */
  }

  .point .inner .point-text-content p {
    font-size: 18px;
    /* 설명 텍스트 폰트 크기 줄이기 */
  }

  .feature .inner .feature-top-content {
    font-size: 38px;
    margin-bottom: 48px;
  }
  .feature .inner .feature-image-area img:first-of-type {
    margin-bottom: 48px;
  }
  .feature .feature-bottom-banner p {
    font-size: 24px;
  }

  .abutment {
    background: #eaf2ff;
  }

  .abutment .inner ul {
    gap: 16px;
    margin-top: 20px;
  }

  .abutment .inner ul li {
    border-radius: 10px;
  }

  .abutment .inner ul li .img_box img {
    border-radius: 10px 10px 0 0;
  }

  .abutment .inner ul li dl dt {
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: -1px;
    padding: 6px 0;
  }

  .abutment .inner ul li dl dd {
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -1px;
    padding: 9px 0;
    background: #fff;
  }

  .abutment .inner ul li dl dd:first-of-type .block {
    display: inline;
  }

  .abutment .inner .small-image img {
    width: 100%;
    max-width: 550px;
    /* 원하는 크기로 조절 (기본 이미지보다 작게) */
    display: block;
    margin: 0 auto;
  }

  .abutment .inner .image-area figcaption {
    transform: translateX(-0%);
    font-size: 14px;
  }

  .recommend .inner {
    padding: 60px 5%;
  }
  .recommendation .inner .recommendation-image-area {
    padding-top: calc(360 / 670 * 100%);
  }
  .recommend .inner .recommend-top-title {
    margin-bottom: 40px;
  }

  .recommend .inner .recommend-top-title p {
    font-size: 38px;
  }

  .recommend .inner .recommend-top-title h2 {
    font-size: 38px;
  }

  .recommend .inner .image-area figcaption {
    transform: translateX(-0%);
    font-size: 14px;
  }
  .benefits .inner {
    padding-bottom: 160px;
  }
  .benefits .inner .benefits-top-title {
    margin-bottom: 40px;
  }

  .benefits .inner .benefits-top-title p {
    font-size: 38px;
  }

  .benefits .inner .benefits-top-title h2 {
    font-size: 38px;
  }

  .benefits .inner .benefits-top-title .sub {
    font-size: 25px;
    margin-top: 40px;
  }

  .benefits .inner .circular-diagram {
    width: 430px;
    height: 430px;
  }
  .benefits .inner .circle-item {
    width: 143px;
    height: 144px;
    font-size: 22px;
  }
  .benefits .inner .center-item {
    width: 247px;
    height: 247px;
    font-size: 33px;
    border: 20px solid #d5eaff;
  }
  .benefits .inner .center-item::before {
    width: 200px;
    height: 200px;
  }
  .benefits .inner .dotted-circle-bg::before {
    width: 74%;
    height: 74%;
    border: 20px solid #d5eaff;
  }
  .benefits .inner .item-1 {
    top: 0;
    left: 5%;
    transform: translateY(25%);
    z-index: 1;
    /* 중앙 원 위에 오도록 z-index 설정 */
  }
  .research .inner .research-image-area {
    padding-top: calc(371 / 651 * 100%);
  }
  .benefits .inner .item-2 {
    right: 5%;
    transform: translateY(25%);
  }
  .promise .inner .promise-item h3 {
    font-size: 22px;
    /* 각 항목의 제목 폰트 크기 줄이기 */
  }

  .promise .inner .promise-item p {
    font-size: 16px;
    /* 각 항목의 설명 폰트 크기 줄이기 */
  }

  .final-banner {
    /* 이미지 비율(높이/너비)에 맞춰 padding-top 설정 */
    padding-top: calc(482 / 768 * 100%);
    background-image: url("../images/final-banner-image_tb.png");
  }
}

/* 모바일 가로, 모바일 세로 (해상도 375px ~ 768px)*/
@media screen and (max-width: 768px) {
  .wrap {
    min-width: 375px;
  }
  .block-mobile {
    display: block;
  }
  /* content */
  section .inner .title_text {
    font-size: 30px;
    letter-spacing: -1px;
  }

  section .inner .sub_text {
    font-size: 17px;
    padding: 20px 0;
    margin-top: 20px;
  }

  section .inner .sub_text::before {
    width: 32px;
    height: 2px;
    margin-left: -16px;
  }

  section .inner .sub_explain p {
    font-size: 14px;
    line-height: 22px;
  }

  section > .inner {
    padding: 50px 5%;
  }

  .intro_banner {
    padding-top: 0;
    /* 패딩 제거 */
    background: none;
    /* 배경색 제거 */
    position: relative;
    /* 자식 요소의 위치 기준점 */
    height: auto;
  }

  /* 텍스트를 담는 inner 컨테이너 */
  .intro_banner .inner {
    position: absolute;
    /* 배경 이미지 위에 띄움 */
    top: 10%;
    left: 5%;
    letter-spacing: -1.5px;
    width: auto;
    padding: 0;
    text-align: left;
    transform: none;
    /* 기존 transform 제거 */
  }

  /* "PLAN DENTAL..." 텍스트 */
  .intro_banner .inner > span {
    font-size: 12px;
    color: #aaa;
    letter-spacing: 4px;
  }

  /* "라미네이트의 기준이자 마침표" 텍스트 */
  .intro_banner .inner p,
  .intro_banner .inner strong {
    font-size: 32px;
    line-height: 1.3;
    letter-spacing: -1.5px;
    display: block;
    /* 각 요소가 한 줄씩 차지하도록 */
  }

  .intro_banner .inner p {
    color: #000;
    font-weight: 400;
  }

  .intro_banner .inner strong {
    color: #000;
    font-weight: 700;
  }

  /* "플란 라미트" 텍스트 */
  .intro_banner .inner .sub-headline {
    font-size: 16px;
    font-weight: 500;
    color: #0c82fe;
    margin-top: 0.8em;
  }

  .intro_banner .inner .sub-headline strong {
    font-weight: 700;
    font-size: 16px;
    /* 부모와 동일한 크기 명시 */
    color: #0c82fe;
  }

  /* 배경 이미지를 담는 mo_ver */
  .intro_banner .mo_ver {
    width: 100%;
    padding-top: calc(375 / 420 * 100%);
    /* (이미지 높이 / 너비 * 100%) */
    background-image: url("../images/img_intro_banner_mo.png");
    /* <<< 새 모바일 이미지 경로 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .definition .inner .definition-layout {
    flex-direction: column;
    /* 세로로 쌓기 */
    align-items: center;
    /* 중앙 정렬 */
    gap: 40px;
  }

  .definition .inner .text-content,
  .definition .inner .bubble-content {
    width: 100%;
    /* 너비를 꽉 채움 */
    max-width: none;
    /* PC에서 설정한 max-width 해제 */
    gap: 20px;
  }

  /* 폰트 크기 및 정렬 조정 */
  .definition .inner .text-content {
    text-align: center;
  }

  .definition .inner .def-title {
    font-size: 30px;
  }

  .definition .inner .def-explain {
    font-size: 15px;
    margin-top: 30px;
  }

  .definition .inner .def-blue-text {
    font-size: 16px;
  }

  .definition .inner .def-explain .def-blue-text {
    font-size: 19px;
  }

  .definition .inner .worry-bubble {
    padding: 20px;
  }

  .definition .inner .worry-bubble p {
    font-size: 16px;
  }

  .definition .inner .tags-container .tag {
    font-size: 14px;
  }

  .advantage {
    padding-top: calc(570 / 375 * 100%);
    background-image: url(../images/advantage_mo.png);
    background-size: cover;
    background-color: transparent;
    /* <<< 배경색을 투명하게 변경 */
    background-position: center;
    /* 이미지가 중앙에 오도록 명시 */
    background-repeat: no-repeat;
    /* 이미지가 반복되지 않도록 명시 */
  }
  .advantage .inner {
  }
  .advantage .inner .advantage-content-wrapper {
    top: 50px;
    /* 내부 여백 조정 */
    transform: translate(0, 50%);
  }

  .advantage .inner .adv-title {
    font-size: 30px;
    /* 폰트 크기 줄이기 */
  }
  /* 서브 타이틀 '자신감은 미소에서부터' */
  .advantage .inner .adv-subtitle {
    font-size: 18px;
  }
  .advantage .inner .adv-explain {
    font-size: 16px;
  }
  .compare {
  }

  .compare .inner .comp-title {
    font-size: 30px;
    /* 폰트 크기를 모바일에 맞게 대폭 줄입니다. */

    /* 제목 자체의 상단 패딩은 제거합니다. */

    /* 제목과 이미지 사이의 간격을 조정합니다. */
    margin-bottom: 20px;
  }

  .compare .inner .compare-image-area {
    padding: 0 16px;
    /* 기존 데스크탑용 마진을 제거하고, 제목의 padding-bottom으로 간격을 제어합니다. */
  }
  .compare_area {
    gap: 4px;
  }

  .compare .inner .overlay-box.box-1 {
    font-size: 12px;
    left: calc(50% + 2px);
    width: calc(50% - 2px);
  }
  .compare_area .compare_box.before::after {
    width: 18px;
    height: 18px;
    transform: translate(calc(50% + 2px), -50%);
  }
  .compare .inner .adv-subtitle {
    font-size: 18px;
    margin: 20px 0;
  }
  .compare_header {
    gap: 4px;
  }
  .compare_header .header_text {
    font-size: 12px;
    padding: 8px;
  }
  .compare_note {
    font-size: 8px;
    margin-top: 16px;
  }
  .point .inner .point-title {
    font-size: 33px;
    /* 폰트 크기 줄이기 */
    margin-bottom: 40px;
    /* 아래 내용과의 간격 줄이기 */
    line-height: 1.2;
    /* <-- 모바일에서도 줄 간격을 적절히 조절합니다. */
  }

  /* 2단 레이아웃을 세로 1단으로 변경 */
  .point .inner .point-layout {
    flex-direction: column;
    /* 세로로 쌓기 */
    gap: 30px;
    /* 위아래 간격 */
    text-align: center;
    /* 텍스트 중앙 정렬 */
  }

  /* 텍스트 영역 스타일 조정 */
  .point .inner .point-text-content h3 {
    font-size: 18px;
  }

  .point .inner .point-text-content p {
    font-size: 16px;

    /* p태그 간의 간격 조정 */
  }

  /* 이미지 영역은 너비 100%로 설정 */
  .point .inner .point-image-content {
    width: 100%;
    max-width: 400px;
    /* 이미지가 너무 커지지 않도록 제한 */
    margin-top: 20px;
    /* 위 텍스트와의 간격 */
  }

  .mo-br {
    display: block;
  }

  .pc-br {
    display: none;
  }

  .feature {
    /* 모바일 화면 비율에 맞게 padding-top 값 조정 */
    /* 예시: 모바일에서는 세로가 더 긴 느낌을 주려면 비율을 높입니다. */

    /* 배경 이미지는 데스크탑과 동일한 것을 사용하므로 수정하지 않음 */
  }

  /* 텍스트와 배너를 담는 전체 래퍼 */
  .feature .inner .feature-content-wrapper {
    /* position: absolute 등 데스크탑 속성 그대로 유지 */
    padding: 0 16px 0;
    /* 내부 여백만 모바일에 맞게 줄임 */
  }

  /* 상단 타이틀 영역 */
  .feature .inner .feature-top-content {
    margin-bottom: 20px;
  }
  .feature .inner .feature-top-content p {
    font-size: 30px;
    text-wrap: balance;
    word-break: keep-all;
  }
  .feature .inner .feature-top-content h2 {
    font-size: 30px;
  }

  .feature .inner .feature-image-area img:first-of-type {
    margin-bottom: 20px;
  }
  /* 하단 다크블루 배너 */
  .feature .feature-bottom-banner {
    margin: 0 -20px;
    /* 좌우 padding 값을 상쇄 */
    padding: 12px;
  }

  .feature .feature-bottom-banner p {
    font-size: 14px;
  }

  .abutment {
    background-color: #deeeff;
  }

  .abutment .inner {
    padding: 60px 20px;
  }

  /* 상단 타이틀 */
  .abutment .inner .abutment-top-title {
    margin-bottom: 40px;
  }

  .abutment .inner .abutment-top-title p,
  .abutment .inner .abutment-top-title h2 {
    font-size: 30px;
  }

  /* 2단 레이아웃을 세로 1단으로 변경 */
  .abutment .inner .abutment-content-row {
    display: flex;
    flex-direction: column;
    /* 모든 행을 세로로 쌓기 */
    gap: 30px;
    margin-bottom: 50px;
    text-align: center;
  }

  /* 두 번째 단락(.reverse)만 순서를 뒤집음 */

  .abutment .inner .text-area,
  .abutment .inner .image-area {
    flex-basis: auto;
    width: 100%;
  }

  /* 폰트 및 이미지 크기 조정 */
  .abutment .inner .text-area h3 {
    font-size: 17px;
  }

  .abutment .inner .text-area p {
    font-size: 15px;
    margin-top: 15px;
    letter-spacing: -1px;
  }

  .abutment .inner .large-image img,
  .abutment .inner .small-image img {
    max-width: 100%;
  }

  .abutment .inner .image-area figcaption {
    font-size: 12px;
  }

  .abutment .inner .abutment-content-row.reverse {
    flex-direction: column-reverse;
    /* 세로 배치에서 순서를 뒤집음 */
  }

  .abutment .inner .abutment-content-row.reverse .text-area {
    order: 2;
    /* 텍스트가 먼저 */
  }

  .abutment .inner .abutment-content-row.reverse .image-area {
    order: 1;
    /* 이미지가 나중에 */
  }

  .recommend .inner {
    padding: 40px 20px;
    background-color: #fff;
  }

  /* 점선 박스 스타일 제거 및 간격 조정 */
  .recommend .inner .recommend-box {
    border: none;
    /* 점선 테두리 제거 */
    padding: 0;
    /* 테두리가 없으므로 내부 패딩도 제거 */
    margin-bottom: 40px;
    /* 각 박스 사이의 간격을 margin으로 조절 */
  }

  .recommend .inner .recommend-box:last-child {
    margin-bottom: 0;
  }

  /* 상단 타이틀 */
  .recommend .inner .recommend-top-title {
    text-align: center;
    margin-bottom: 0;
  }

  .recommend .inner .recommend-top-title p {
    font-size: 30px;
  }

  .recommend .inner .recommend-top-title h2 {
    font-size: 30px;
  }

  /* 콘텐츠 행 (세로로 쌓기) */
  .recommend .inner .recommend-content-row {
    display: flex;
    flex-direction: column;
    gap: 30px;
    /* 텍스트와 이미지 사이 간격 */
    text-align: left;
  }

  .recommend .inner .text-area {
    margin-top: 30px;
    /* 위 제목과의 간격 */
  }

  .recommend .inner .image-area {
    text-align: center;
  }

  .recommend .inner .text-area h3 {
    font-size: 18px;
    text-align: center;
    /* 소제목은 중앙 정렬 */
  }

  /* 숫자 리스트 스타일 */
  .recommend .inner .step-list {
    margin-top: 25px;
  }

  .recommend .inner .step-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;

    /* === 아래 한 줄을 추가합니다 === */
    width: 80%;
    /* 또는 원하는 고정 너비 (예: 600px). %단위가 반응형에 유리합니다. */
    padding-left: 40px;
  }

  .recommend .inner .step-list li::before {
    font-size: 24px;
    top: 0;
  }

  .recommend .inner .step-list li strong {
    font-size: 16px;
  }

  .recommend .inner .step-list li p {
    font-size: 16px;
  }
  .recommend .inner .step-list li p br {
    display: none;
  }
  /* 이미지 스타일 */
  .recommend .inner .image-area .recommend-figure img {
    max-width: 100%;
  }

  .recommend .inner .image-area figcaption {
    transform: translateX(-0%);
  }
  .benefits .inner {
    padding-bottom: 40px;
  }
  /* 상단 타이틀 */
  .benefits .inner .benefits-top-title {
    margin-bottom: 0px;
    /* 다이어그램과의 간격 조정 */
  }

  .benefits .inner .benefits-top-title p {
    font-size: 30px;
  }

  .benefits .inner .benefits-top-title h2 {
    font-size: 30px;
  }

  .benefits .inner .benefits-top-title .sub {
    font-size: 18px;
  }

  /* 중앙 원형 다이어그램 크기 축소 */
  .benefits .inner .circular-diagram {
    width: 300px;
    /* 다이어그램 전체 크기를 300px로 줄임 */
    height: 300px;
  }

  /* 콘텐츠 원 아이템 크기 및 폰트 축소 */
  .benefits .inner .circle-item {
    width: 86px;
    height: 86px;
    font-size: 15px;
  }
  .benefits .inner .center-item::before {
    width: 120px;
    height: 120px;
  }
  .benefits .inner .dotted-circle-bg::before {
    width: 68%;
    height: 68%;
    border: 16px solid #d5eaff;
  }
  .benefits .inner .circle-item .highlight {
    font-size: 15px;
  }
  .benefits .inner .item-1 {
    top: 0;
    left: 10%;
    transform: translateY(50%);
    z-index: 1;
  }
  .research .inner .research-image-area {
    padding-top: calc(371 / 651 * 100%);
  }
  .benefits .inner .item-2 {
    right: 10%;
    transform: translateY(50%);
  }
  .benefits .inner .item-3 {
    top: 65%;
  }
  .benefits .inner .dotted-circle-bg {
    width: 66%;
    height: 66%;
    border-width: 1px;
  }
  .promise .inner .promise-item h3 {
    font-size: 22px;
    /* 각 항목의 제목 폰트 크기 줄이기 */
  }
  /* 중앙 원 크기 및 폰트 축소 */
  .benefits .inner .center-item {
    width: 160px;
    height: 160px;
    font-size: 22px;
    border: 8px solid #d5eaff;
    /* 테두리 두께도 함께 줄임 */
  }

  /* 하단 로고 폰트 크기 축소 */
  .benefits .inner .benefits-logo {
    bottom: 2px;
  }
  .process .inner .section-title {
    font-size: 30px;
  }
  .process .inner .pc-img {
    display: none;
  }
  .process .inner .section-subtitle {
    font-size: 30px;
    /* 서브 타이틀 폰트 크기 줄이기 */
    padding-top: 60px;
    /* 라인과의 간격 조정 */
    margin-top: 0;
    /* 불필요한 상단 마진 제거 */
  }
  /* 모바일에서는 모바일 이미지를 보여줌 */
  .process .inner .mo-img {
    display: block;
    /* img 태그는 기본적으로 inline이므로 block으로 변경 */
  }
  .process .inner .process-image-area {
    margin: 20px 0;
    /* 이미지 위아래 여백 줄이기 */
  }
  .process .inner .section-subtitle::before {
    height: 48px;
    /* 라인 길이 조정 */
  }

  .recommendation .inner .section-title {
    font-size: 30px;
    line-height: 1.4;
  }

  /* 통 이미지를 배경으로 넣을 영역 */
  .recommendation .inner .recommendation-image-area {
    margin-top: 40px;

    /* (가장 중요) 모바일 이미지 비율로 수정 */
    /* 예시: 모바일 이미지 크기가 가로 600px, 세로 900px일 경우 */
    padding-top: calc(370 / 295 * 100%);

    /* 모바일 전용 이미지로 교체 */
    background-image: url("../images/recommendation-combined_mo.png");
  }

  .aftercare {
    padding: 0px 20px;
  }

  .aftercare .inner .section-title {
    font-size: 30px;
    line-height: 1.4;
  }

  /* 통 이미지를 배경으로 넣을 영역 */
  .aftercare .inner .aftercare-image-area {
    margin-top: 20px;

    /* (가장 중요) 모바일 이미지 비율로 수정 */
    /* 예시: 모바일 이미지 크기가 가로 600px, 세로 900px일 경우 */
    padding-top: calc(160 / 295 * 100%);

    /* 모바일 전용 이미지로 교체 */
    background-image: url("../images/aftercare-combined_mo.png");
  }

  .research {
    padding: 0px 20px;
  }

  .research .inner .section-title {
    font-size: 30px;
    line-height: 1.4;
  }

  /* 통 이미지를 배경으로 넣을 영역 */
  .research .inner .research-image-area {
    margin-top: 40px;

    /* (가장 중요) 모바일 이미지 비율로 수정 */
    /* 예시: 모바일 이미지 크기가 가로 600px, 세로 900px일 경우 */
    padding-top: calc(205 / 295 * 100%);

    /* 모바일 전용 이미지로 교체 */
    background-image: url("../images/research-combined_mo.png");
  }

  .promise .inner .section-title {
    font-size: 30px;
    /* 메인 타이틀 폰트 크기 조정 */
    line-height: 1.4;
  }

  .promise .inner .promise-grid {
    /* 제목과 콘텐츠 사이 간격 조정 */

    /* 2단 그리드를 세로 1단으로 변경 */
    gap: 20px;
    /* grid의 gap 속성 초기화 */
    grid-template-columns: repeat(1, 1fr);
  }

  .promise .inner .promise-item:last-child {
    margin-bottom: 0;
    /* 마지막 항목의 하단 간격 제거 */
  }

  .promise .inner .promise-item h3 {
    font-size: 15px;
    /* 항목 제목 폰트 크기 조정 */
    padding-top: 12px;
    /* 파란색 라인과의 간격 조정 */
  }

  /* 파란색 라인의 크기는 그대로 유지해도 괜찮습니다. */
  .promise .inner .promise-item h3::before {
    width: 25px;
    height: 1px;
  }

  .promise .inner .promise-item p {
    margin-top: 10px;
    /* 제목과 내용 사이 간격 조정 */
    font-size: 12px;
    /* 내용 폰트 크기 조정 */
    line-height: 1.7;
    /* 줄 간격 조정 */
  }

  .final-banner {
    width: 100%;
    /* 이미지 비율(높이/너비)에 맞춰 padding-top 설정 */
    padding-top: calc(464 / 375 * 100%);
    background-image: url("../images/final-banner-image_mo.png");
    /* <<< 최종 배너 이미지 경로 */
  }
}

@media screen and (max-width: 500px){
    .advantage .inner .advantage-content-wrapper {
    top: 50px;
    /* 내부 여백 조정 */
    transform: translate(0, 0);
  }
}
