@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: 7.6px;
    color: #5a5a5a;
    margin-bottom: .2em;
}

.intro_banner .inner>span .m_color {
    color: #4475c1;
}

.intro_banner .inner strong {
    display: inline-block;
    padding: 21px 24px 26px 0;
    color: #000000;
    font-size: 79px;
    font-weight: bold;
    line-height: 0.71;
    letter-spacing: 1.25px;
}

.intro_banner .inner p {
    font-size: 79px;
    line-height: 1.57;
    letter-spacing: 8.6px;
    color: #1c1c1c;
}

.intro_banner .inner .sub-headline {
    font-size: 40px;
    color: #0C82FE;
    letter-spacing: -1px;
    line-height: 1.5;
    margin-top: 1em;
}

/* 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;
    /* 세로 중앙 정렬 */
    gap: 40px;
    /* 최소 간격을 보장 */
}

/* 왼쪽 텍스트 컨텐츠 영역 */
.definition .inner .text-content {
    flex-shrink: 0;
    /* 화면이 줄어들 때 텍스트 영역이 찌그러지는 것을 방지 */
    max-width: 55%;
    /* 너비가 너무 커지지 않도록 제한 */
}

.definition .inner .def-title {
    font-size: 70px;
    font-weight: 400;
    line-height: 1.4;
    color: #222;
    letter-spacing: -1.5px;
}

.definition .inner .def-title .def-highlight {
    font-weight: 700;
}

.definition .inner .def-explain {
    margin-top: 40px;
    font-size: 20px;
    line-height: 1.8;
    color: #555;
    letter-spacing: -0.5px;
}

.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: 22px;
    line-height: 1.7;
    color: #0C82FE;
}

.definition .inner .def-explain .def-blue-text strong {
    font-weight: 700;
    color: #0C82FE;
}

/* 오른쪽 말풍선 컨텐츠 영역 */
.definition .inner .bubble-content {
    flex-basis: 30%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.definition .inner .worry-bubble {
    border: 1px solid;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 가로 중앙 정렬 */
    text-align: center;
    /* 텍스트 중앙 정렬 */
}

.definition .inner .worry-bubble p {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.6;
    color: #333;
}

.definition .inner .tags-container {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.definition .inner .tags-container .tag {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
}

.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;
    color: #333;
    line-height: 1.5;
    letter-spacing: -1.5px;
}

/* '당신의 미소' 하이라이트 */
.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: 40px;
    font-weight: 700;
    color: #000;
    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), #4EB8FF);

    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* 설명 텍스트 */
.advantage .inner .adv-explain {
    margin-top: 25px;
    font-size: 34px;
    line-height: 1.8;
    color: #000000;
}

.advantage .inner .adv-explain .adv-bold-text {
    font-weight: 700;
    color: #333;
}

.advantage .inner .adv-explain p:first-of-type {
    margin-bottom: 2em;
    /* 기존의 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.5;
    color: #222;
    letter-spacing: -1.5px;
    padding-top: 50px;
    /* 위쪽 여백 */
    position: relative;
    padding-bottom: 50px;
    /* 아래쪽 여백 */
}

.compare .inner .comp-title strong {
    font-weight: 700;
}

/* 이미지를 담는 새로운 영역 */
.compare .inner .compare-image-area {
    /* (기존) 제목과 이미지 사이 간격을 위한 코드 (유지!) */
    margin-top: 40px;

    /* (추가) 오버레이 위치 기준점을 위한 코드 */
    position: relative;
    display: inline-block;
    font-size: 0;
}

.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: white;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
    pointer-events: none;
    /* 박스 자체의 클릭 이벤트를 막고 부모가 받게 함 */
}

/* (가장 중요) 각 오버레이 박스의 위치와 크기 지정 */
/* ※ 제공된 이미지 기준으로 계산된 값입니다. 필요 시 미세 조정하세요. */

.compare .inner .overlay-box.box-1 {
    top: 0;
    left: 50.5%;
    width: 50.5%;
    height: 23.2%;
}

.compare .inner .overlay-box.box-2 {
    top: 44.5%;
    left: 50.79%;
    width: 49.20%;
    height: 24%;
}

.compare .inner .overlay-box.box-3 {
    top: 68%;
    left: 50.79%;
    width: 49.20%;
    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.5;
    color: #222;
    letter-spacing: -1.5px;
    margin-bottom: 80px;
    /* 아래 내용과의 간격 */
}

.point .inner .point-title strong {
    font-weight: 700;
}

/* 텍스트와 이미지를 담는 2단 레이아웃 */
.point .inner .point-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    text-align: left;
}

/* 왼쪽 텍스트 영역 */
.point .inner .point-text-content {
    flex-basis: 50%;
}

.point .inner .point-text-content h3 {
    font-size: 40px;
    font-weight: 400;
    /* <-- 700에서 400 (normal)으로 변경 */
    color: #000;
}

/* h3 안의 strong 태그만 굵게 설정 */
.point .inner .point-text-content h3 strong {
    font-weight: 700;
    /* <-- 굵은 글씨체(bold)를 여기에 적용 */
}

.point .inner .point-text-content p {
    margin-top: px;
    font-size: 34px;
    line-height: 1.8;
    color: #000000;
}

.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;
    /* 원하는 간격으로 조정 */
}


.feature {
    position: relative;
    /* 자식 요소를 absolute로 배치하기 위한 기준점 */
    width: 100%;

    /* (가장 중요) 이미지의 비율(높이/너비)에 맞춰 padding-top 설정 */
    /* 예시: 이미지 높이가 900px, 너비가 1920px일 경우 */
    padding-top: calc(2424 / 1920 * 100%);

    background-image: url(../images/feature-main-image1.png);
    /* <<< 전체가 합쳐진 새 이미지 경로 */
    background-size: cover;
    /* 이미지가 영역을 꽉 채우도록 함 */
    background-position: center;
    background-repeat: no-repeat;
}

/* 텍스트와 배너를 담는 전체 래퍼 */
.feature .inner .feature-content-wrapper {
    /* position: absolute로 부모(.feature) 영역 위에 띄웁니다. */
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

    /* 내부 요소를 위, 중간, 아래로 배치하기 위해 flex 사용 */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* 위, 중간, 아래로 간격을 균등하게 분배 */

    padding: 80px 40px 0;
    /* 상/하/좌/우 여백 (하단은 배너가 차지) */
    box-sizing: border-box;
    text-align: center;
}

/* 상단 타이틀 영역 */
.feature .inner .feature-top-content {
    color: #fff;
}

.feature .inner .feature-top-content p {
    font-size: 70px;
    font-weight: 400;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
}

.feature .inner .feature-top-content h2 {
    font-size: 70px;
    font-weight: 700;
    margin-top: 0.2em;
}

/* 중간의 빈 공간 영역 (flex-grow로 남는 공간을 모두 차지) */
.feature .inner .feature-image-area {
    flex-grow: 1;
}

/* 하단 다크블루 배너 */
.feature .inner .feature-bottom-banner {
    background-color: #0038C4;
    /* 하단 배너는 .feature-content-wrapper의 padding 바깥에 위치하도록 조정 */
    margin: 0 -40px;
    /* 좌우 padding 값을 상쇄 */
    padding: 20px;
}

.feature .inner .feature-bottom-banner p {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
}

.abutment {
    background-color: #DEEEFF;
}

.abutment .inner {
    text-align: center;
}

/* 상단 타이틀 */
.abutment .inner .abutment-top-title {
    margin-bottom: 80px;
}

.abutment .inner .abutment-top-title p {
    font-size: 70px;
    font-weight: 400;
    color: #333;
}

.abutment .inner .abutment-top-title h2 {
    font-size: 70px;
    font-weight: 700;
    color: #000;
    margin-top: 0.2em;
}

/* 2단 콘텐츠 행 */
.abutment .inner .abutment-content-row {
    display: flex;
    justify-content: center;
    /* 'space-between' 대신 'center'로 변경 */
    align-items: center;
    gap: 0px;
    margin-bottom: 100px;
    text-align: left;
}

.abutment .inner .abutment-content-row.reverse {
    flex-direction: row-reverse;

}

.abutment .inner .text-area {
    flex-basis: 47%;
}

.abutment .inner .image-area {
    flex-basis: 40%;
}

.abutment .inner .text-area h3 {
    font-size: 35px;
    font-weight: 700;
    /* 또는 bold. 텍스트 전체를 굵게 만듭니다. */
    line-height: 1.5;
    color: #000;
}

.abutment .inner .text-area h3 strong {
    font-weight: 700;
}

.abutment .inner .text-area p {
    margin-top: 25px;
    font-size: 23px;
    line-height: 1.8;
    color: #000;
}

.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;
    transform: translateX(-39%);
    background-color: #0C82FE;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    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%, #d1e9ff 65%);
    background-repeat: no-repeat;
    background-size: 100% 100%;

    /* 패딩으로 밑줄의 좌우 길이를 조절 */
    padding: 0 0.3em;
    margin: 0 -0.3em;
}

.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;
}

.recommend .inner .recommend-top-title p {
    font-size: 70px;
    font-weight: 400;
    color: #333;
}

.recommend .inner .highlight {
    background-image: linear-gradient(transparent 65%, #d1e9ff 65%);
    background-position: 0 90%;

    /* 좌우 패딩으로 밑줄 길이를 늘립니다. */
    padding: 0 0.3em;

    /* 늘어난 패딩만큼 음수 마진으로 공간을 되돌립니다. */
    margin: 0 -0.3em;
}

.recommend .inner .recommend-top-title h2 {
    font-size: 70px;
    font-weight: 700;
    color: #000;
    margin-top: 0.2em;
}

/* 2단 콘텐츠 행 */
.recommend .inner .recommend-content-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    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: 40px;
    font-weight: 400;
    line-height: 1.5;
    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;
    transform: translateX(-30%);
    background-color: #0C82FE;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    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: 50px;
    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: 34px;
    font-weight: 700;
    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: 18px;
    line-height: 1.7;
    color: #000000;
}

.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;
    /* 하단 로고가 잘려보이도록 */
}

/* 상단 타이틀 */
.benefits .inner .benefits-top-title {
    margin-bottom: 80px;
}

.benefits .inner .benefits-top-title p {
    font-size: 70px;
    font-weight: 400;
    color: #000;
}

.benefits .inner .benefits-top-title h2 {
    font-size: 70px;
    font-weight: 700;
    color: #000;
    margin-top: 0.2em;
}

.benefits .inner .benefits-top-title .sub {
    font-size: 40px;
    font-weight: 500;
    color: #000;
    margin-top: 1em;
}

/* 중앙 원형 다이어그램 */
.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: 80%;
    /* 바깥쪽 점선 원의 크기 */
    height: 80%;
    border: 2px dashed #e0f0ff;
    /* 점선을 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: 220px;
    height: 220px;
    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;
    color: #555;
    line-height: 1.5;
}

.benefits .inner .circle-item .highlight {
    color: #0C82FE;
    font-weight: 700;
    font-size: 40px;
}

/* 각 원의 위치 설정 */
.benefits .inner .item-1 {
    top: 0;
    left: 0;
    transform: translateY(15%);
    z-index: 1;
    /* 중앙 원 위에 오도록 z-index 설정 */

}

.benefits .inner .item-2 {
    top: 20%;
    right: 0;
    transform: translateX(10%);
    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: 335px;
    height: 335px;
    background-color: #eaf6ff;
    font-size: 60px;
    color: #001B5E;

    /* === 아래 두 줄을 추가합니다 === */
    border: 10px solid #E5F2FF;
    /* 10px 두께, #E5F2FF 색상의 실선 테두리 추가 */
    box-sizing: border-box;
    /* border 두께가 원의 전체 크기에 영향을 주지 않도록 설정 */
}

.benefits .inner .center-item strong {
    font-weight: 700;
}

/* 하단 로고 */
.benefits .inner .benefits-logo {
    margin-top: 80px;
    font-size: 100px;
    font-weight: 800;
    color: #9ECCFF;
    letter-spacing: 5px;
    user-select: none;
    /* 텍스트 선택 방지 */
}

.process {
    background-color: #f8fbff;
}

.process .inner {
    text-align: center;
}

/* 상단 메인 타이틀 */
.process .inner .section-title {
    font-size: 70px;
    font-weight: 400;
    line-height: 1.5;
    color: #222;
}

.process .inner .section-title strong {
    font-weight: 700;
}

/* 중간의 전체 이미지 영역 */
.process .inner .process-image-area {
    margin: 60px 0;
    /* 위아래 제목과의 간격 */
}

.process .inner .process-image-area img {
    width: 100%;
    max-width: 1200px;
    /* 이미지가 너무 커지지 않도록 제한 */
    height: auto;

    margin: 0 auto;
}

/* 하단 서브 타이틀 */
.process .inner .section-subtitle {
    font-size: 70px;
    font-weight: 700;
    line-height: 1.5;
    color: #000;
    position: relative;
    display: inline-block;
    margin-top: 60px;

    /* 라인 길이(50px) + 간격(20px) = 70px */
    padding-top: 150px;
}

.process .inner .section-subtitle::before {
    content: '';
    display: block;
    width: 2px;

    /* 라인의 길이를 50px로 늘립니다. */
    height: 100px;

    background: linear-gradient(to bottom, rgba(78, 184, 255, 0), #4EB8FF);
    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 90%;
    padding: 0 0.3em;
    margin: 0 -0.3em;
}

/* =================================================== */
/*       Section 2: 추천 대상 (Recommendation)         */
/* =================================================== */
.recommendation {
    background-color: #007BFF;
    /* 전체 섹션 배경색 */
    padding: 100px 0;
}

.recommendation .inner {
    text-align: center;
}

/* 메인 타이틀 */
.recommendation .inner .section-title {
    font-size: 70px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    letter-spacing: -1px;
}

.recommendation .inner .section-title strong {
    font-weight: 700;
}

/* 통 이미지를 배경으로 넣을 영역 */
.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: #f0f8ff;
    /* 전체 섹션 배경색 */
    padding: 100px 0;
}

.aftercare .inner {
    text-align: center;
}

/* 메인 타이틀 */
.aftercare .inner .section-title {
    font-size: 70px;
    font-weight: 400;
    line-height: 1.5;
    color: #222;
    letter-spacing: -1px;
}

/* '독보적인 사후 케어' 부분에만 굵은 글씨와 형광펜 효과 적용 */
.aftercare .inner .section-title .highlight {
    font-weight: 700;
    background-image: linear-gradient(transparent 65%, #d1e9ff 65%);
    background-position: 0 90%;
    padding: 0 0.3em;
    margin: 0 -0.3em;
}

/* 통 이미지를 배경으로 넣을 영역 */
.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;
    line-height: 1.5;
    color: #222;
    /* padding-top: 50px;  */
}

.research .inner .section-title strong {
    font-weight: 700;
}

/* 통 이미지를 배경으로 넣을 영역 */
.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;
    line-height: 1.5;
    color: #222;
}

.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: 700;
    color: #000;
    position: relative;
    padding-top: 15px;
    /* <-- padding-left를 padding-top으로 변경 */
}

/* ::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.8;
    color: #555;
}

/* =================================================== */
/*         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;
}

/* 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: 62px;
    }

    .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: 30px;
    }

    .recommend .inner .recommend-top-title h2 {
        font-size: 40px;
    }

    .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;
    }

    /* ================== Process (치료 과정) ================== */
    .process .inner .section-title {
        font-size: 38px;
    }

    .process .inner .section-subtitle {
        font-size: 30px;
    }

    /* ================== Recommendation (추천 대상) ================== */
    .recommendation .inner .section-title {
        font-size: 40px;
    }

    /* ================== Aftercare (사후 케어) ================== */
    .aftercare .inner .section-title {
        font-size: 40px;
    }

    /* ================== Research (연구 결과) ================== */
    .research .inner .section-title {
        font-size: 40px;
    }

    /* ================== Promise (약속) ================== */
    .promise .inner .section-title {
        font-size: 62px;
    }

    .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 {
        font-size: 18px;
        /* 설명 텍스트 폰트 크기 줄이기 */
    }

    .definition .inner .worry-bubble p {
        font-size: 18px;
        /* 말풍선 폰트 크기 줄이기 */
    }

    .definition .inner .worry-bubble {
        padding: 20px 30px;
        /* 말풍선 패딩 줄이기 */
    }

    .definition .inner .tags-container {
        justify-content: flex-start;
        /* 왼쪽 정렬 (기본값) */
        flex-wrap: nowrap;
        /* <<< 자식 요소들이 줄바꿈되지 않도록 설정 */
    }

    .definition .inner .tags-container .tag {
        font-size: 9px;
        /* 태그 폰트 크기 줄이기 */
        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: 36px;
        /* 폰트 크기 조정 */
    }

    /* '당신의 미소' 밑줄 효과 */
    .advantage .inner .adv-title .adv-highlight::after {
        height: 10px;
        /* 밑줄 두께 조정 */
    }

    /* 서브 타이틀 '자신감은 미소에서부터' */
    .advantage .inner .adv-subtitle {
        font-size: 20px;
        /* 폰트 크기 조정 */
        margin-top: 20px;
        /* 위쪽 요소와의 간격 조정 */
        padding-top: 50px;
        /* 라인과의 간격 조정 */
    }

    /* 서브 타이틀 위쪽의 짧은 라인 */
    .advantage .inner .adv-subtitle::before {
        height: 40px;
        /* 라인 길이 조정 */
    }

    /* 설명 텍스트 */
    .advantage .inner .adv-explain {
        margin-top: 21px;
        /* 위쪽 요소와의 간격 조정 */
        font-size: 18px;
        /* 폰트 크기 조정 */
    }

    .point .inner .point-title {
        font-size: 56px;
        /* 제목 폰트 크기 줄이기 */
        margin-bottom: 60px;
        /* 아래 내용과의 간격 줄이기 */
    }

    .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: 46px;
        /* 폰트 크기 줄이기 */
    }

    .abutment .inner .abutment-top-title h2 {
        font-size: 46px;
        /* 폰트 크기 줄이기 */
    }

    .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: 28px;
        /* 폰트 크기 줄이기 */
    }

    .recommend .inner .recommend-top-title h2 {
        font-size: 44px;
        /* 폰트 크기 줄이기 */
    }

    .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: 30px;
        /* 메인 타이틀 폰트 크기 줄이기 */
    }

    .process .inner .process-image-area {
        margin: 50px 0;
        /* 이미지 위아래 여백 줄이기 */
    }

    .process .inner .section-subtitle {
        font-size: 30px;
        /* 서브 타이틀 폰트 크기 줄이기 */
        padding-top: 50px;
        /* 라인과의 간격 조정 */
        margin-top: 0;
        /* 불필요한 상단 마진 제거 */
    }

    .process .inner .section-subtitle::before {
        height: 40px;
        /* 라인 길이 조정 */
    }

    .recommendation {
        padding: 80px 0;
        /* 상하 여백 줄이기 */
    }

    .recommendation .inner .section-title {
        font-size: 40px;
        /* 제목 폰트 크기 줄이기 */
    }

    .aftercare {
        padding: 80px 0;
        /* 상하 여백 줄이기 */
    }

    .aftercare .inner .section-title {
        font-size: 40px;
        /* 제목 폰트 크기 줄이기 */
    }

    .research {
        padding: 80px 0;
        /* 상하 여백 줄이기 */
    }

    .research .inner .section-title {
        font-size: 40px;
        /* 제목 폰트 크기 줄이기 */
    }

    .promise {
        padding-bottom: 80px;
        /* 섹션 하단 여백 줄이기 */
    }

    .promise .inner .section-title {
        font-size: 56px;
        /* 메인 타이틀 폰트 크기 줄이기 */
    }

    .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-content-wrapper {
        padding: 60px;
        /* 내부 여백 줄이기 */
    }

    .feature .inner .feature-top-content p {
        font-size: 50px;
        /* 폰트 크기 줄이기 */
    }

    .feature .inner .feature-top-content h2 {
        font-size: 50px;
        /* 폰트 크기 줄이기 */

    }

}

/* 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 .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(238/768 *100%);
        background-image: url(../images/img_intro_banner_tab.png);
    }

    .intro_banner .inner>span {
        font-size: 23px;
        font-weight: 300;
        letter-spacing: -1px;
        color: #1c1c1c;
        margin-bottom: .2em;
    }

    .intro_banner .inner>span .m_color {
        color: #0C82FE;
    }

    .intro_banner .inner strong {
        display: inline-block;
        padding: 0;
        background-color: rgba(0, 0, 0, 0);
        color: #0C82FE;
        font-size: 42px;
        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 .img_box {
        margin: 40px auto 12px;
    }

    .advantage {
        padding-top: calc(238/768 *100%);
        background-image: url(../images/advantage_tab.png);
    }

    .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 .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 {
        background: #EAF2FF;
    }

    .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: 46px;
        /* 제목 폰트 크기 줄이기 */
        margin-bottom: 60px;
        /* 아래 내용과의 간격 줄이기 */
    }

    .point .inner .point-layout {
        gap: 50px;
        /* 텍스트와 이미지 사이 간격 줄이기 */
    }

    .point .inner .point-text-content h3 {
        font-size: 30px;
        /* 소제목 폰트 크기 줄이기 */
    }

    .point .inner .point-text-content p {
        font-size: 20px;
        /* 설명 텍스트 폰트 크기 줄이기 */
    }

    .feature .inner .feature-content-wrapper {
        padding: 20px;
        /* 내부 여백 줄이기 */
    }

    .feature .inner .feature-top-content p {
        font-size: 50px;
    }

    .feature .inner .feature-top-content h2 {
        font-size: 50px;
        font-weight: 700;
        margin-top: 0.1em;
    }

    .feature .inner .feature-bottom-banner {
        margin: -20px -40px;
    }

    ;


    .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%);
    }

    .recommend .inner {
        padding: 60px 5%;
    }

    .recommend .inner .recommend-top-title {
        margin-bottom: 40px;
    }

    .recommend .inner .recommend-top-title p {
        font-size: 45px;
    }

    .recommend .inner .recommend-top-title h2 {
        font-size: 45px;
    }

    .recommend .inner .image-area figcaption {
        transform: translateX(-0%);
    }

    .benefits .inner .benefits-top-title {
        margin-bottom: 40px;
    }

    .benefits .inner .benefits-top-title p {
        font-size: 45px;
    }

    .benefits .inner .benefits-top-title h2 {
        font-size: 45px;
    }

    .benefits .inner .benefits-top-title .sub {
        font-size: 35px;
        margin-top: 10px;
    }
}

/* 모바일 가로, 모바일 세로 (해상도 375px ~ 768px)*/
@media screen and (max-width:768px) {
    .wrap {
        min-width: 375px;
    }

    /* 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: 14px;
        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 해제 */
    }

    /* 폰트 크기 및 정렬 조정 */
    .definition .inner .text-content {
        text-align: center;
    }

    .definition .inner .def-title {
        font-size: 28px;
    }

    .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: contain;
        background-color: transparent;
        /* <<< 배경색을 투명하게 변경 */
        background-position: center;
        /* 이미지가 중앙에 오도록 명시 */
        background-repeat: no-repeat;
        /* 이미지가 반복되지 않도록 명시 */
    }

    .advantage .inner .advantage-content-wrapper {
        top: 43%;
        /* 내부 여백 조정 */
    }

    .advantage .inner .adv-title {
        font-size: 30px;
        /* 폰트 크기 줄이기 */
    }



    .compare {
        padding-top: 60px;
        /* 섹션 자체의 상단 여백을 줄입니다. */
        padding-bottom: 60px;
        /* 하단 여백도 함께 조절 */
        background-color: #FFFFFF;
        /* 배경색을 #f7f7f7로 변경 */
    }

    .compare .inner .comp-title {
        font-size: 33px;
        /* 폰트 크기를 모바일에 맞게 대폭 줄입니다. */
        padding-top: 0;
        /* 제목 자체의 상단 패딩은 제거합니다. */
        padding-bottom: 30px;
        /* 제목과 이미지 사이의 간격을 조정합니다. */
    }

    .compare .inner .compare-image-area {
        margin-top: 0;
        /* 기존 데스크탑용 마진을 제거하고, 제목의 padding-bottom으로 간격을 제어합니다. */
    }


    .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: 30px;
    }

    .point .inner .point-text-content p {
        font-size: 15px;
        margin-top: 10px;
        /* 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 값 조정 */
        /* 예시: 모바일에서는 세로가 더 긴 느낌을 주려면 비율을 높입니다. */
        padding-top: calc(642 / 375 * 100%);
        /* 배경 이미지는 데스크탑과 동일한 것을 사용하므로 수정하지 않음 */
    }

    /* 텍스트와 배너를 담는 전체 래퍼 */
    .feature .inner .feature-content-wrapper {
        /* position: absolute 등 데스크탑 속성 그대로 유지 */
        padding: 25px 20px 0;
        /* 내부 여백만 모바일에 맞게 줄임 */
    }

    /* 상단 타이틀 영역 */
    .feature .inner .feature-top-content p {
        font-size: 20px;
    }

    .feature .inner .feature-top-content h2 {
        font-size: 20px;
    }

    /* 하단 다크블루 배너 */
    .feature .inner .feature-bottom-banner {
        margin: 0 -20px;
        /* 좌우 padding 값을 상쇄 */
        padding: 15px;
    }

    .feature .inner .feature-bottom-banner p {
        font-size: 16px;
    }

    .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: 36px;
    }

    /* 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;
    }

    .abutment .inner .large-image img,
    .abutment .inner .small-image img {
        max-width: 100%;
    }

    .abutment .inner .image-area figcaption {
        transform: translateX(-0%);
    }

    .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: 38px;
    }

    .recommend .inner .recommend-top-title h2 {
        font-size: 38px;
    }

    /* 콘텐츠 행 (세로로 쌓기) */
    .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: 22px;
        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). %단위가 반응형에 유리합니다. */
    }

    .recommend .inner .step-list li::before {
        font-size: 20px;
        top: 0;
    }

    .recommend .inner .step-list li strong {
        font-size: 16px;
    }

    .recommend .inner .step-list li p {
        font-size: 16px;
    }

    /* 이미지 스타일 */
    .recommend .inner .image-area .recommend-figure img {
        max-width: 100%;
    }

    .recommend .inner .image-area figcaption {
        transform: translateX(-0%);
    }

    .benefits {
        padding: 60px 20px;
        /* 섹션 전체 여백 조정 */
    }

    /* 상단 타이틀 */
    .benefits .inner .benefits-top-title {
        margin-bottom: 60px;
        /* 다이어그램과의 간격 조정 */
    }

    .benefits .inner .benefits-top-title p {
        font-size: 42px;
    }

    .benefits .inner .benefits-top-title h2 {
        font-size: 42px;
    }

    .benefits .inner .benefits-top-title .sub {
        font-size: 18px;
    }

    /* 중앙 원형 다이어그램 크기 축소 */
    .benefits .inner .circular-diagram {
        width: 300px;
        /* 다이어그램 전체 크기를 300px로 줄임 */
        height: 300px;
    }

    /* 콘텐츠 원 아이템 크기 및 폰트 축소 */
    .benefits .inner .circle-item {
        width: 110px;
        height: 110px;
        font-size: 15px;
    }

    .benefits .inner .circle-item .highlight {
        font-size: 18px;
    }

    /* 중앙 원 크기 및 폰트 축소 */
    .benefits .inner .center-item {
        width: 150px;
        height: 150px;
        font-size: 22px;
        border-width: 8px;
        /* 테두리 두께도 함께 줄임 */
    }

    /* 하단 로고 폰트 크기 축소 */
    .benefits .inner .benefits-logo {
        margin-top: 60px;
        font-size: 41px;
    }

    .process .inner .pc-img {
        display: none;
    }

    /* 모바일에서는 모바일 이미지를 보여줌 */
    .process .inner .mo-img {
        display: block;
        /* img 태그는 기본적으로 inline이므로 block으로 변경 */
    }

    .recommendation {
        padding: 60px 20px;
    }

    .recommendation .inner .section-title {
        font-size: 39px;
        line-height: 1.4;
    }

    /* 통 이미지를 배경으로 넣을 영역 */
    .recommendation .inner .recommendation-image-area {
        margin-top: 40px;

        /* (가장 중요) 모바일 이미지 비율로 수정 */
        /* 예시: 모바일 이미지 크기가 가로 600px, 세로 900px일 경우 */
        padding-top: calc(900 / 600 * 100%);

        /* 모바일 전용 이미지로 교체 */
        background-image: url('../images/recommendation-combined_mo.png');
    }

    .aftercare {
        padding: 0px 20px;
    }

    .aftercare .inner .section-title {
        font-size: 39px;
        line-height: 1.4;
    }

    /* 통 이미지를 배경으로 넣을 영역 */
    .aftercare .inner .aftercare-image-area {
        margin-top: 40px;

        /* (가장 중요) 모바일 이미지 비율로 수정 */
        /* 예시: 모바일 이미지 크기가 가로 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: 40px;
        /* 메인 타이틀 폰트 크기 조정 */
        line-height: 1.4;
    }

    .promise .inner .promise-grid {
        margin-top: 40px;
        /* 제목과 콘텐츠 사이 간격 조정 */
        margin-left: 10%;
        ;
        display: block;
        /* 2단 그리드를 세로 1단으로 변경 */
        gap: 0;
        /* grid의 gap 속성 초기화 */
    }

    .promise .inner .promise-item {
        margin-bottom: 40px;
        /* 각 항목 사이의 세로 간격 */
    }

    .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: 4px;
    }

    .promise .inner .promise-item p {
        margin-top: 10px;
        /* 제목과 내용 사이 간격 조정 */
        font-size: 13px;
        /* 내용 폰트 크기 조정 */
        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');
        /* <<< 최종 배너 이미지 경로 */
    }
}