@charset "utf-8";

/********** main.css **********/
/* 1. 공통 스타일 */
* {
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-Serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    color: inherit;
    line-height: 1.5;
    word-break: keep-all;
    transition: all 0.3s;
}

:root {
    --f14: clamp(14px, 0.729vw, 88px);
    --f16: clamp(14px, 0.833vw, 88px);
    --f18: clamp(14px, 0.938vw, 1.125rem);
    --f20: clamp(14px, 1.042vw, 1.25rem);
    --f22: clamp(14px, 1.146vw, 1.375rem);
    --f26: clamp(1rem, 1.354vw, 1.625rem);
    --f30: clamp(1.25rem, 1.563vw, 1.875rem);
    --f36: clamp(1.375rem, 2.083vw, 2.25rem);
    --f43: clamp(1.5rem, 2.25vw, 2.875rem);
    --f54: clamp(1.875rem, 2.64vw, 3.375rem);
}

button {
    appearance: none;
    border: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: none;
    outline: none;
    cursor: pointer;
}

.point {
    color: #7e170e !important;
}

img {
    display: block;
    max-width: 100%;
}

a {
    display: block;
    color: #000;
}

.wrap {
    max-width: 1440px;
    padding-inline: 1rem;
    margin: 0 auto;
}

.flex-reverse {
    display: flex;
    padding-left: 10%;
    margin-top: 5rem;
    flex-direction: row-reverse;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-block: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    z-index: 1000;
    transition: transform 0.5s ease;
}

header:hover {
    transition: 0.5s;
    background: rgba(255, 255, 255, 0.8);
}

header.hide {
    transform: translateY(-100%);
}

.header-wrap {
    display: flex;
    align-items: center;
    padding-inline: 1.25rem;
    justify-content: space-between;
    height: 70px;
    max-width: 1600px;
    margin: 0 auto;
}

header .logo {
    position: relative;
    z-index: 9999999;
}

header .logo a {
    display: flex;
    align-items: center;
    gap: 0.45vw;
}

header .logo a span {
    color: #7e170e;
    font-weight: 600;
    letter-spacing: -0.01vw;
    font-size: var(--f18);
}

.gnb>ul {
    display: flex;
    align-items: center;
}

.gnb>ul>li {
    position: relative;
}

.gnb>ul>li>a {
    display: block;
    padding: 1.5rem 1.2rem;
}

/* =========================
   2차메뉴 PC
========================= */

.depth2 {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #fff;
    border: 1px solid #eee;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    z-index: 100;
}

.depth2 li {
    width: 100%;
}

.depth2 li a {
    display: block;
    width: 100%;
    padding: 14px 18px;
    font-size: var(--f16);
    white-space: nowrap;
}

.depth2 li a:hover {
    background: #f5f5f5;
}

/* hover */
.gnb>ul>li:hover .depth2 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.gnb .call {
    padding: 2rem;
    width: 100%;
    display: none;
}

.gnb .call a {
    display: block;
    border: 1px solid #7e170e;
    color: #7e170e;
    font-weight: 500;
    align-content: center;
    text-align: center;
    padding: 1rem;
    border-radius: 1rem;
}

nav {
    display: flex;
    flex-direction: column;
}

nav>ul {
    display: flex;
    gap: 1rem;
}

nav>ul>li>a {
    padding: 1rem;
    font-weight: 500;
    color: #333;
    font-size: var(--f20);
}

nav>ul>li:hover>a {
    font-weight: 500;
    color: #7e170e;
}

.menu-btn {
    display: none;
    color: #111;
    font-size: 1.5rem;
    line-height: 1;
    z-index: 1100;
    position: relative;
    padding: 1rem;
    padding-right: 0;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.serif {
    font-weight: 400 !important;
    font-family: 'Noto Serif KR';
}

section {
    position: relative;
    overflow: hidden;
}

.flex-wrap {
    display: flex;
}

/* m1 */
.m1 {
    display: flex;
    justify-content: flex-end;
}

.hero {
    position: relative;
    width: 80%;
    height: 100vh;
    background: url(../img/m1-bg.jpg) no-repeat center / cover;
    background-attachment: fixed;
    border-bottom-left-radius: 15vw;
}

.hero::before {
    background: rgba(0, 0, 0, 0.1);
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
}

.hero .title {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
}

.hero .title p {
    opacity: 0;
    animation: fadein 2s 0.6s ease forwards;
}

.hero .title .imgbox {
    margin-bottom: 3rem;
}

.title>span {
    display: block;
    font-size: clamp(1rem, 1.563vw, 1.75rem);
    margin-block: 0.5rem 1rem;
    letter-spacing: -0.02vw;
}

.title h3 {
    font-weight: 700;
    color: #313131;
    display: block;
    font-size: var(--f36);
    line-height: 1.25;
    margin-bottom: 1rem;
    letter-spacing: -0.02vw;
}

.title h3>span {
    font-family: inherit;
    color: #7e170e;
    font-weight: inherit;
    font-size: inherit;
    display: inline-block;
}

.title p {
    line-height: 1.6;
    letter-spacing: -0.012vw;
    font-size: var(--f22);
}

.m2 {
    padding-block: 10rem;
    background: #fff;
}

.m2 .wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
}

.m2 .desc p {
    padding-top: 115%;
    text-align: right;
    line-height: 1.5;
}

.m3 {
    position: relative;
    padding-block: 6rem 10rem;
    background: #eee;
    z-index: 1;
}

.m3::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 200px;
    display: block;
    top: 0;
    left: 0;
    background: url(../img/m3-top.jpg) no-repeat top right / cover;
    z-index: -1;
}

.m3 .wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    justify-content: space-between;
}

.m3 .wrap .title {
    padding-top: 7%;
}

.m3 .wrap .imgbox {
    overflow: hidden;
}

.m3 .wrap .imgbox img {
    transition: 0.5s;
}

.m3 .wrap .imgbox:hover img {
    transition: 0.7s;
    scale: 1.1;
}

.ear {
    padding-block: 2rem;
    align-content: center;
    min-height: 200px;
    background: url(../img/ear.jpg) no-repeat center / cover;
}

.ear .flex-wrap {
    justify-content: space-between;
    align-items: center;
}

.ear .flex-wrap a {
    color: #fff;
    font-size: var(--f22);
}

.medic {
    padding-block: 10rem;
    background: #eee;
}

.medic .title h3 {
    margin-bottom: 3rem;
}

.medic .flex-wrap {
    display: flex;
    align-items: center;
    gap: 7vw;
    justify-content: space-between;
}

.medic .flex-wrap .desc {
    text-align: right;
}

.medic .desc ul {
    position: relative;
    margin-top: 6rem;
}

.medic .desc ul::after {
    position: absolute;
    right: -1.5rem;
    z-index: -1;
    transform: translateX(-50%);
    top: 0;
    width: 1px;
    height: 100%;
    content: '';
    display: block;
    background-image: linear-gradient(to top, #7e170e60 50%, transparent 50%);
    background-size: 1px 7px;
}

.medic .desc ul li {
    margin-bottom: 2.75rem;
}

.medic .desc ul li h4 {
    position: relative;
    font-size: var(--f26);
    color: #7e170e;
    margin-bottom: 0.25rem;
}

.medic .desc ul li h4::after {
    position: absolute;
    right: -1.75rem;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    width: 0.75rem;
    display: inline-block;
    aspect-ratio: 1;
    margin-left: 1rem;
    background: #7e170e;
    border-radius: 50%;
}

.medic .desc ul li p {
    font-size: var(--f18);
}

.medic-banner {
    width: 100%;
    padding-block: 10rem 5rem;
    color: #fff;
    text-align: center;
    background: url(../img/medic-banner.jpg) no-repeat center / cover;
}

.medic-banner h3 {
    font-weight: 400;
    color: #fff;
    margin-bottom: 5rem;
}

.medic-banner h3>span {
    font-weight: 700;
    color: #fff;
}

.medic-banner .desc {
    padding-bottom: 5rem;
}

.medic-banner h4 {
    font-weight: 400;
    margin-bottom: 1rem;
    font-size: var(--f26);
}

.medic-banner h4>b:first-of-type {
    color: #daa8a4;
}

.medic-banner p {
    font-weight: 400;
    font-size: var(--f18);
}

.m4 {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 3rem;
    padding-block: 7rem 10rem;
    background: #eee;
}

.m4 .title>span {
    margin: 0;
}

.m4 ul {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.m4 ul li a {
    padding: 2rem;
    background: #fff;
}

.m4 ul li a>span {
    font-family: 'Edensor', sans-Serif;
    font-size: clamp(1.375rem, 1.563vw, 1.875rem);
    color: #7e170e;
    font-weight: 400;
    margin-bottom: 1rem;
    display: block;
    text-transform: capitalize;
}

.m4 ul li a .imgbox {
    position: relative;
    overflow: hidden;
}


.m4 ul li a img {
    margin: 0 auto;
}

.m4 ul li a .icon {
    transform: translateY(-50%);
    transition: 0.5s;
}

.m4 ul li a .desc {
    position: absolute;
    inset: 0;
    top: 50%;
    opacity: 0;
    text-align: center;
    transform: translateY(-50%);
    z-index: 2;
}

.m4 ul li a .desc h5 {
    font-size: var(--f26);
    color: #fff;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.m4 ul li a .desc p {
    font-size: var(--f18);
    color: #fff;
    letter-spacing: -0.01vw;
}

.m4 ul li a h4 {
    font-size: var(--f30);
    letter-spacing: -0.02vw;
}

.m4 ul li>p {
    color: #7d7d7d;
}

.m4 ul li:hover {
    transform: translateY(-5%);
    transition: 0.5s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.m4 ul li:hover .desc {
    opacity: 1;
}

.m4 ul li:hover .imgbox img {
    filter: brightness(0.5);
    transition: 0.7s;
    scale: 1.1;
}

.m4 ul li:hover .icon {
    scale: 1.03;
    transition: 0.7s;
}

/* m5 */
.m5 .swiper {
    overflow: hidden;
}

.m5 .swiper-slide .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    overflow: hidden;
    flex-wrap: wrap;
}

.m5 .swiper-slide .wrap .title {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.m5 .swiper-slide .wrap .title * {
    line-height: 1.2;
    text-align: right;
}

.m5 .swiper-slide .wrap .title p {
    line-height: 1.5;
}

.m5 .swiper-slide .wrap .title .border {
    width: 2rem;
    display: block;
    background: #b3776b;
    height: 5px;
    text-align: right;
    margin-block: 0.625rem 1.75rem;
}

.m5 .swiper-slide>img {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.m5 .swiper-slide .eq img {
    max-height: 500px;
}

.btn-wrap .swiper-button-next {
    color: #cb5c5c;
    right: 3% !important;
}

.btn-wrap .swiper-button-prev {
    color: #cb5c5c;
    left: 3% !important;
}

footer {
    background: #313131;
    color: #e5e5e5;
    padding-block: 4rem;
}

.footer-wrap {
    padding-inline: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer .f-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding-block: 2rem;
}

footer .f-logo span {
    font-size: var(--f18);
    font-weight: 500;
}

footer ul {
    display: flex;
    align-items: center;
}

footer ul li:first-of-type a {
    color: #cb5c5c;
}

footer ul li:last-of-type a {
    border: none;
}

footer ul li a {
    font-size: 1rem;
    color: #e5e5e5;
    border-right: 1px solid #e5e5e5e3;
    padding-inline: 1rem;
}

footer .footer-wrap>p {
    font-size: 1rem;
    margin-block: 3rem 2rem;
    letter-spacing: -0.01vw;
}

footer .footer-wrap>span {
    display: block;
    color: #707070;
}

/* main responsive */
@media screen and (max-width:768px) {
    h1 {
        max-width: 3.5rem;
    }

    .menu-btn {
        display: block;
    }

    .gnb {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        min-height: 100vh;
        height: auto;
        background: #fff;
        padding-top: 100px;
        transition: 0.4s ease;
    }

    .gnb .call {
        display: block;
    }

    .gnb>ul {
        width: 100%;
        flex-direction: column;
        gap: 0;
    }

    .gnb>ul>li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .gnb>ul>li a {
        position: relative;
        display: flex;
        padding: 20px;
        color: #111;
        border-bottom: 1px solid #eee;
    }

    .gnb>ul>li:has(.depth2)>a::after {
        content: '+';
        position: absolute;
        right: 5%;
        line-height: 0;
        top: 50%;
        transform: translate(0, -50%);
        font-size: 2rem;
        font-weight: 100;
        color: #707070;
        display: block;
        transition: 0.5s;
    }

    .gnb>ul>li.active:has(.depth2)>a::after {
        rotate: 45deg;
        transform-origin: top;
    }

    .gnb.active {
        right: 0;
    }

    /* 모바일 2차메뉴 */

    .depth2 {
        position: static;
        border: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: #f8f8f8;
    }

    .depth2 li a {
        padding: 16px 30px;
        border-top: 1px solid #eaeaea;
    }

    /* 열렸을 때 */
    .gnb>ul>li.active .depth2 {
        display: block;
    }

    header {
        padding-block: 0.5rem;
        background: #fff;
    }

    .header-wrap {
        height: auto;
    }

    header .logo a {
        gap: 4px;
    }

    /* 섹션 */
    .m1 .hero {
        width: 100%;
        border-radius: 0;
    }

    .m1 .hero::before {
        background: rgba(0, 0, 0, 0.3);
        opacity: 1;
    }

    .m1 .hero .title {
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }

    .m1 .title h3 {
        margin-bottom: 1.25rem;
    }

    .hero .title .imgbox {
        margin: 0 auto;
        max-width: 42vw;
        padding-bottom: 3rem;
    }

    .m2 {
        padding-block: 5rem;
    }

    .m2 .wrap {
        flex-direction: column;
        align-items: center;
    }

    .m2 .desc p {
        padding-top: 2rem;
        text-align: center;
    }

    .m3 {
        padding-bottom: 5rem;
    }

    .m3::before {
        display: none;
    }

    .m3 .wrap {
        flex-direction: column-reverse;
        text-align: center;
    }

    .m3 .wrap .title {
        padding-top: 0;
    }

    .m3 .wrap .title h3 {
        margin-bottom: 0.25rem;
    }

    .m3 .wrap .title p {
        text-wrap-style: pretty;
    }

    .ear .flex-wrap {
        text-align: center;
        gap: 1rem;
    }

    .medic {
        padding-bottom: 7rem;
    }

    .medic .title h3 {
        margin-bottom: 2rem;
    }

    .medic .flex-wrap {
        gap: 2.5rem;
    }

    .medic .desc ul {
        margin-top: 4rem;
    }

    .medic-banner {
        padding-block: 6rem 3rem;
        padding-inline: 2rem;
    }

    .medic .desc ul::after,
    .medic .desc ul li h4::after {
        display: none;
    }

    .m4 {
        gap: 1rem;
        padding-bottom: 7rem;
    }

    .m4 ul {
        padding-top: 1rem;
    }

    .m4 ul li a {
        padding-bottom: 3rem;
    }

    .m4 ul li a>p {
        font-size: 14px;
        margin-top: 1rem;
    }

    .m4 ul li:hover {
        transform: translateY(-12px);
    }

    .m4 ul li a .desc h5 {
        margin-bottom: 1.25rem;
    }

    .m5 .swiper-slide .wrap {
        gap: 1rem;
        justify-content: center;
        align-items: center;
        padding-block: 5rem 0;
        flex-direction: column-reverse;
    }

    .m5 .swiper-slide .wrap .title * {
        text-align: center;
    }

    .m5 .swiper-slide .wrap .title {
        align-items: center;
    }

    .m5 .swiper-slide .eq img {
        max-height: 380px;
        max-width: 80%;
        margin: 0 auto;
    }

    .m5 .swiper-slide .wrap .title p {
        line-height: 1.6;
        max-width: 86%;
        text-wrap-style: balance;
        height: 100px;
    }

    .m5 .swiper-slide .wrap .title .border {
        display: none;
    }

    .btn-wrap div {
        height: 2rem;
    }

    footer * {
        font-size: 12px;
    }

    footer .f-logo {
        padding-block: 1rem 2rem;
    }

    footer .f-logo img {
        max-width: 3rem;
    }

    .footer-wrap>ul {
        margin-top: 1rem;
        display: grid;
        gap: 1rem;
        grid-template-columns: 1fr 1fr;
        justify-content: center;
    }

    footer ul li a {
        border: none;
        font-size: 13px;
    }

    footer .footer-wrap>span {
        letter-spacing: -0.01vw;
    }

    footer .footer-wrap>p {
        font-size: 13px;
    }
}

@keyframes fadein {
    to {
        opacity: 1;
    }
}

/********** sub.css **********/
/* 2. 서브 스타일 */
.sub-title h4 {
    font-size: var(--f30);
    display: block;
}

.sub-title p {
    font-size: var(--f20);
    font-weight: 400;
    color: #313131;
}

.sub-title p.point {
    color: #7e170e;
    font-weight: 500;
    letter-spacing: 0.1vw;
    display: block;
    margin-block: 1.5rem;
    text-transform: uppercase;
}

.sp-hero {
    position: relative;
    height: 100vh;
}

.sp-hero .title>h3 {
    margin-bottom: 1.375rem;
    font-size: var(--f43);
}

.bg {
    position: absolute;
    inset: 0;
    filter: brightness(0.9);
}

.bg video {
    filter: brightness(0.8);
}

.sp-hero:has(.bg) .title h3 {
    color: #fff;
}

.sp-hero:has(.bg) .title h3>span {
    font-weight: 600;
    color: #fff;
}

.sp-hero:has(.bg) .title p {
    color: #fff;
    opacity: 0.9;
}

.sp-hero .imgbox {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.sp-hero .title {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
}

.sp1-hero {
    background: url(../img/sub/sp1-hero.jpg) no-repeat center / cover;
    background-attachment: fixed;
    height: 100vh;
}

.sp1-hero .title {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    position: absolute;
    top: 50%;
    text-align: center;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sp1-2 {
    padding-block: 8rem;
    background: url(../img/sub/sp1-s2-bg.png) no-repeat center / cover;
}

.sp-banner {
    font-size: var(--f22);
    letter-spacing: 0.7vw;
    text-align: center;
    background: #7e170e;
    color: #fff;
    padding-block: 5rem;
    padding-inline: 1rem;
    text-transform: capitalize;
}

.sp-banner-cont {
    padding-block: 7rem 0;
}

.sp-banner-cont .flex-wrap {
    display: flex;
    align-items: center;
    gap: 6vw;
}

.sp-banner-cont ul {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding-inline: 1rem;
}

.sp-banner-cont ul li {
    display: flex;
    gap: 2rem;
}

.sp-banner-cont ul li>span {
    color: #fff;
    margin-top: 3px;
    background: #7e170e;
    display: block;
    height: fit-content;
    padding: 0.625rem 1.75rem;
    border-radius: 50rem;
    font-size: var(--f16);
    font-weight: 600;
}

.sp-banner-cont ul li .title {
    text-align: left;
}

.sp-banner-cont ul li .title h4 {
    margin-bottom: 0.5rem;
}

.sp-banner2 {
    text-align: center;
    padding-block: 8rem;
    background: #fff;
}

.sp-banner2>.title {
    padding-inline: 1rem;
}

.sp-banner2 .title h3 {
    color: #7e170e;
    margin-bottom: 1.5rem;
    font-size: var(--f43);
}

.sp-banner2:has(.sp-banner-cont) {
    background: #F9F9F9;
}

.sp1-2 .circle {
    background: #7e170e;
    aspect-ratio: 1;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    align-content: center;
    max-width: 640px;
    margin: 0 auto;
}

.sp1-2 .circle h4 {
    margin-top: 1.5rem;
    font-size: var(--f30);
}

.sp1-2 .circle span {
    display: block;
    letter-spacing: 0.1vw;
    margin-block: 1rem;
    font-size: var(--f20);
}

.sp1-2 .circle p {
    font-size: var(--f20);
}

.sp1-2 .circle img {
    margin: 0 auto;
}

.sp1-3 {
    padding-block: 10rem;
}

.sp1-3 .desc>img {
    margin-bottom: 1rem;
}

.sp1-3 .flex-wrap {
    display: flex;
    align-items: center;
    gap: 7vw;
}

.sp1-3 .desc {
    flex-basis: 50%;
}

.sp1-3 .desc h4 {
    display: block;
    border-top: 1px solid #d3d3d3;
    padding-top: 2.5rem;
    width: 100%;
    margin-right: 1rem;
    color: #313131;
    font-weight: 700;
    font-size: var(--f36);
}

.sp1-3 .desc h4>span {
    border-left: 1px solid #7e170e;
    color: #757474;
    display: inline-block;
    font-weight: 500;
    padding-left: 0.5rem;
    margin-left: 0.5rem;
    font-size: var(--f22);
}

.sp1-3 ul {
    margin-top: 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.sp1-3 ul li {
    font-size: var(--f18);
    margin-bottom: 1rem;
}

.sp1-4 {
    padding-bottom: 10rem;
}

.sp1-4 .sub-title {
    position: relative;
    min-height: 280px;
    width: 100%;
    color: #fff;
    background: url(../img/sub/sp1-s4-bg.jpg) no-repeat center / cover;
}

.sp1-4 .sub-title .title {
    position: absolute;
    right: 15%;
    top: 15%;
}

.sp1-4 .sub-title h4 {
    margin-bottom: 2rem;
    color: #fff;
}

.sp1-4 .sub-title p {
    color: #fff;
    margin-bottom: 2rem;
}

.sp1-4 .flex-wrap {
    display: flex;
    gap: 5vw;
}

.sp1-4 ul {
    width: 100%;
    gap: 2rem;
    padding-right: 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.sp1-4 ul li {
    display: flex;
    text-align: center;
    gap: 1rem;
    background: #f6f5f4;
    flex-direction: column;
    align-items: center;
    padding: 3rem 0;
    border-radius: 5rem;
}

.sp1-4 ul li img {
    max-width: 28vw;
}

.sp1-4 ul li:first-child {
    text-align: left;
    gap: 2.25rem;
    grid-area: 1 / 3 / 1 / 1;
    flex-direction: row;
    justify-content: center;
}

.sp1-4 ul li span {
    color: #7e170e;
    display: block;
    margin-bottom: 1rem;
    font-weight: 300;
    font-size: var(--f26);
    font-family: 'Noto Serif KR';
}

.sp1-4 ul li p {
    color: #313131;
    font-size: var(--f18);
}

.sp1-5 .flex-wrap {
    display: flex;
}

.sp1-5 .flex-wrap>div {
    flex-basis: 50%;
}

.root_daum_roughmap {
    width: 100% !important;
}

.root_daum_roughmap .wrap_map {
    min-height: 740px;
    /* height: 100% !important; */
}

.root_daum_roughmap_landing {
    background: #313131 !important;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.root_daum_roughmap .cont {
    display: none !important;
}

.sp1-5 .info {
    padding: 4%;
    background: #f8f3f3;
}

.sp1-5 .info>p {
    font-size: var(--f16);
}

.sp1-5 .info li:first-child h4 {
    font-size: var(--f30);
}

.sp1-5 .info li {
    padding-bottom: 1.75rem;
}

.sp1-5 .info li span {
    color: #7e170e;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: var(--f22);
    display: block;
}

.sp1-5 .info li h4 {
    font-weight: 700;
    font-size: var(--f26);
}

.sp1-5 .info .links {
    display: grid;
    max-width: 80%;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 3rem;
}

.sp1-5 .info .links a {
    padding: 1rem 1.5rem;
    width: 100%;
    height: 100%;
    display: block;
    font-size: var(--f16);
    font-weight: 500;
    background: #928b8bd2;
    color: #fff;
    border-radius: 4px;
}

.sp1-5 .info .links a:hover {
    background: #7e170e;
}

.sp2-hero {
    background: url(../img/sub/sp2-hero.jpg) no-repeat center / cover;
    height: 100vh;
}

.sp2-2 {
    padding-block: 10rem;
    background: url(../img/sub/sp2-s2-bg.jpg) no-repeat center / cover;
}

.sp2-2 .flex-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7vw;
}

.sp2-2 .title h3 {
    font-size: var(--f43);
    margin-bottom: 2rem;
}

.sp2-2-2 {
    background: #fff;
    padding-block: 10rem 5rem;
}

.sp2-2-2 .flex-wrap {
    text-align: right;
    justify-content: center;
    align-items: center;
    gap: 5rem;
}

.sp2-2-2 .desc {
    display: flex;
    justify-content: flex-end;
    margin-top: 7rem;
}

.sp2-2-2 .desc img {
    max-width: 80%;
}

.sp2-3 {
    padding-block: 10rem;
}

.sp2-3 .title {
    text-align: center;
    color: #313131;
}

.sp2-3 .tablist {
    display: flex;
    justify-self: center;
}

.sp2-3 .tablist li {
    padding-inline: 2rem;
    cursor: pointer;
    font-size: var(--f20);
    color: #313131;
    border-right: 1px solid #313131;
}

.sp2-3 .tablist li:last-child {
    border: none;
}

.sp2-3 .tablist li.active {
    font-weight: 700;
    color: #7e170e;
}

.sp2-3 .tablist {
    margin-top: 3rem;
}

.sp2-swiper {
    margin: 3rem auto;
    position: relative;
    overflow: hidden;
}

.sp2-swiper .swiper-slide {
    display: flex;
    justify-content: center;
}

.sp2-swiper .swiper-slide .imgbox img {
    width: 100%;
}

.sp2-swiper .swiper-slide .desc {
    background: #7e170e;
    align-content: center;
    padding: 5%;
}

.sp2-swiper .swiper-slide h5 {
    font-size: var(--f26);
    color: #fff;
    font-weight: 400;
    font-family: 'Noto Serif KR';
    margin-bottom: 2rem;
}

.sp2-swiper .swiper-slide p {
    font-size: var(--f18);
    color: #fff;
    font-family: 'Noto Serif KR';
    line-height: 1.8;
    opacity: 0.9;
}

.sp2-swiper .swiper-slide>div {
    width: 100%;
}

.sp2-swiper .btn-wrap .swiper-button-next {
    color: #fff;
    opacity: 0.8;
}

.sp2-swiper .btn-wrap .swiper-button-prev {
    color: #fff;
    opacity: 0.8;
}

.sp2-4 .title {
    text-align: center;
}

.sp2-4 .title h3 {
    line-height: 1.5;
    font-size: var(--f43);
    margin-bottom: 1.75rem;
}

.sp2-4 .title b {
    font-family: 'Noto Serif KR';
}

.sp2-4 .title p:last-of-type {
    color: var(--f16);
    color: #7e170e;
    font-style: italic;
    font-weight: 500;
    margin-top: 1rem;
    letter-spacing: -0.1vw;
}

.sp2-4 .title p:last-of-type {
    color: var(--f16);
    color: #7e170e;
    font-style: italic;
    font-weight: 500;
    margin-top: 1rem;
    letter-spacing: -0.1vw;
}

.sp2-4 article {
    width: 100%;
    margin-top: 11%;
    background: #7e170e;
}

.sp2-4 ul {
    margin: 0 auto;
    display: flex;
    justify-self: center;
    gap: 3vw;
    width: 100%;
}

.sp2-4 ul li {
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
    background: #fff;
    border-radius: 6vw;
    padding: 2rem;
    min-width: 380px;
    margin: 0 auto;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
}

.sp2-4 ul li>img {
    margin: 0 auto;
}

.sp2-4 ul li>span {
    color: #7e170e;
    font-weight: 700;
    font-size: var(--f26);
    letter-spacing: 0.1vw;
    display: block;
    margin-block: 1.25rem 1rem;
}

.sp2-4 ul li>p {
    font-size: var(--f22);
}

.sp2-4 .desc {
    width: 100%;
    padding: 3rem 5%;
    display: flex;
    gap: 7vw;
    margin: 0 auto;
    color: #fff;
    border-bottom: 1px solid #ebebeb;
}

.sp2-4 .desc dt {
    font-family: 'Noto Serif KR';
    font-weight: 200;
    font-size: var(--f30);
    line-height: 2;
    width: 40%;
}

.sp2-4 .desc dt>span {
    font-weight: 400;
    font-family: 'Noto Serif KR';
}

.sp2-4 .desc dd>span {
    font-weight: 500;
    display: block;
    margin-bottom: 1rem;
    font-size: var(--f22);
}

.sp2-4 .desc dd p {
    font-size: var(--f18);
}

.sub-swiper {
    width: 100%;
}

.sub-swiper .swiper-slide {
    width: 100%;
    height: auto;
    display: flex;
}

.sub-swiper .swiper-slide>* {
    flex-basis: 50%;
}

.sub-swiper .swiper-slide .desc {
    padding: 5% 2rem 5% 10%;
    background: #7e170e;
    color: #fff;
}

.sub-swiper .swiper-slide .desc .title {
    position: relative;
}

.sub-swiper .next-btn {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    padding: 1rem;
}

.sub-swiper .swiper-slide .desc h3 {
    color: #fff;
    display: block;
    margin-bottom: 2rem;
}

.sub-swiper .swiper-slide .desc h4 {
    font-weight: 400;
}

.sub-swiper .swiper-slide .imgbox {
    align-content: center;
}

.sp3-swiper .next-btn img {
    scale: 0.9;
}

.sp3-swiper .swiper-slide:nth-of-type(1) .imgbox {
    background: url(../img/sub/ssp3-eq-bg1.jpg) no-repeat center / cover;
}

.sp3-swiper .swiper-slide:nth-of-type(2) .imgbox {
    background: url(../img/sub/ssp3-eq-bg2.jpg) no-repeat center / cover;
}

.sp3-swiper .swiper-slide:nth-of-type(3) .imgbox {
    background: url(../img/sub/ssp3-eq-bg3.jpg) no-repeat center / cover;
}

.sp3-swiper .swiper-slide:nth-of-type(4) .imgbox {
    background: url(../img/sub/ssp3-eq-bg4.jpg) no-repeat center / cover;
}

.sp3-swiper .swiper-slide .imgbox img {
    margin: 0 auto;
}

.sp3-swiper .swiper-slide ul {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.sp3-swiper .swiper-slide ul::before {
    width: 105%;
    content: '';
    display: block;
    height: 1px;
    background: #ebebeb;
    position: absolute;
    top: 50%;
    transform: translateY(50%);
}

.sp3-swiper .swiper-slide ul li {
    padding: 2rem;
    padding-left: 0;
}

.sp3-swiper .swiper-slide ul li h5 {
    font-size: clamp(1rem, 1.146vw, 1.375rem);
    font-weight: 600;
    margin-block: 1rem 1.5rem;
}

.sp3-swiper .swiper-slide ul li p {
    font-size: var(--f18);
    font-weight: 300;
}

.category {
    position: relative;
    background: #313131;
    padding-block: 10rem;
}

.category p {
    font-size: var(--f20) !important;
}

.category .flex-wrap {
    position: relative;
    display: flex;
    align-items: flex-start;
    padding-inline: 10%;
    justify-content: space-between;
}

.category .flex-wrap>.title {
    position: sticky;
    top: 20%;
    height: fit-content;
    color: #fff;
}

.category .flex-wrap>.title span {
    color: #AF0E00;
}

.category .flex-wrap>.title h3 {
    color: #fff;
    font-size: var(--f43);
}

.category .flex-wrap>.title p {
    margin-top: 2rem;
    opacity: 0.8;
}

.category ul {
    display: grid;
    padding-block: 5rem;
    gap: 4rem;
    grid-template-columns: 1fr 1fr;
}

.category ul li {
    transition: 0.5s;
    max-width: 25rem;
    padding: 3rem 2rem 5rem;
    background: #fff;
    border-radius: 1.25rem;
}

.category ul li:hover {
    background: #7e170e;
}

.category ul li h4 {
    margin-block: 1.75rem 1rem;
}

.category ul li * {
    color: #212121;
}

.category ul li:hover * {
    color: #fff;
}

.category ul li:nth-of-type(even) {
    transform: translateY(25%);
}

.category ul li .imgbox {
    transition: 0.5s;
    overflow: hidden;
    border-radius: 0.75rem;
}

.category ul li:hover .imgbox img {
    scale: 1.05;
}

.sp3-4 {
    padding-block: 10rem;
}

.vidbox {
    position: relative;
    border-radius: 50rem;
    overflow: hidden;
    max-height: 68vh;
    margin: 2.5rem auto;
    width: 100%;
}

.vidbox .desc {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    color: #fff;
    justify-content: center;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
}

.vidbox .desc h4 {
    font-size: var(--f36);
}

.vidbox video {
    margin: 0 auto;
    aspect-ratio: 16 / 9;
}

.sp3-4 {
    text-align: center;
}

.sp3-5 ul {
    padding-top: 5rem;
    display: flex;
    justify-content: space-between;
}

.sp3-5 ul li {
    flex: 1;
    position: relative;
    text-align: center;
    aspect-ratio: 1;
    padding: 5%;
}

.sp3-5 ul li::before {
    content: '';
    display: block;
    width: 150%;
    height: 150%;
    z-index: -1;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0%);
    top: -10%;
    border-radius: 50rem;
    background: linear-gradient(to bottom, rgba(126, 23, 14, 0.2), #fff);
}

.sp3-5 ul li h5 {
    font-size: var(--f22);
    letter-spacing: 0.1vw;
    color: #7e170e;
    margin-bottom: 3rem;
}

.sp3-5 ul li p {
    font-size: var(--f22);
    color: #313131;
    line-height: 1.6;
}

.sp4-2 .flex-wrap {
    display: flex;
    justify-content: space-between;
}

.sp4-2 .flex-wrap>div {
    flex: 1;
}

.sp4-2 .desc {
    align-content: center;
    padding-left: 10%;
    background: #7e170e;
}

.sp4-2 .desc .title h3 {
    font-size: var(--f43);
    color: #fff;
    margin-bottom: 3rem;
}

.sp4-2 .desc .title p {
    color: #fff;
}

.sp4-2 .card {
    justify-content: space-between;
    display: flex;
    align-items: center;
    padding-left: 7%;
}

.sp4-2 .card:nth-of-type(2) {
    flex-direction: row-reverse;
    text-align: right;
    padding-right: 7%;
    padding-left: 0;
}

.sp4-3 {
    background: url(../img/sub/sp4-3-bg.jpg) no-repeat top / 100%;
}

.sp4-3 .imgbox>img {
    margin-top: 3rem;
}

.sp5-2 .desc .title h5 {
    font-size: var(--f26);
    font-weight: 500;
}

.sp5-2 .desc .title p {
    color: #fff;
    margin-top: 2rem;
}

.sp5-swiper .swiper-slide .desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sp5-swiper .swiper-slide .desc>.title {
    margin-bottom: 5rem;
}

.sp5-swiper .swiper-slide img {
    width: 100%;
}

.ear-hero {
    background: url(../img/sub/ear-hero.jpg) no-repeat center / cover;
}

.ear-hero .title * {
    color: #fff;
}

.ear-sp2 {
    padding-block: 10rem;
}

.ear-sp2 .flex-wrap {
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.ear-sp2>.title span {
    margin-bottom: 0.25rem;
}

.ear-sp2>.title p {
    margin-top: 2rem;
}

.ear-sp2 ul {
    display: flex;
    gap: 2rem;
    margin-top: 7.5rem;
}

.ear-sp2 ul li p {
    margin-top: 0.5rem;
}

.ear-sp2 ul>li>.title {
    padding: 1.5rem 10%;
}

.ear-sp3 {
    position: relative;
    height: 360px;
    background: url(../img/sub/ear-sp3.jpg) no-repeat center / cover;
}

.ear-sp3 .title {
    color: #fff;
    position: absolute;
    right: 13%;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

.ear-sp4 {
    padding-block: 10rem;
}

.ear-sp4 .title {
    text-align: center;
}

.ear-sp4 .imgbox {
    margin-block: 7rem;
}

.effect {
    background: #fff;
    padding: 10rem 10%;
}

.effect ul {
    margin-top: 1.5rem;
}

.effect ul li {
    padding-block: 4rem;
    border-bottom: 1px solid #DDDDDD;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.effect ul li:last-of-type {
    border: none;
}

.effect ul li .title span {
    color: #fff;
    display: block;
    width: fit-content;
    padding: 1rem;
    font-size: var(--f16);
    line-height: 1;
    border-radius: 50rem;
    aspect-ratio: 1;
    background: #7e170e;
}

.effect ul li .title h4 {
    margin-bottom: 1rem;
}



/* 260608 추가 */
.spl_box_add {
    margin-top: 5rem;
}


/* 헤더 서브메뉴 추가 */
.depth3 {
    position: absolute;
    left: 100%;
    top: 0px;
    min-width: 180px;
    transform: translateY(10px);
    background: #ffff;
    border: 1px solid #eee;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    z-index: 100;
}
.gnb>ul>li:hover .depth2 > li:hover > .depth3 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* 브래드크럼 */
.breadcrumb {
    margin-bottom: 15px;
}
.breadcrumb ul {
    display: flex;
    gap:3rem;
    align-items: center;
}
.breadcrumb ul li {
    position: relative;
}
.breadcrumb ul li::after {
    content:'';  
    filter: invert(0);  
    position: absolute; 
    top:50%; 
    transform: translate(-50%,-50%); 
    right: -2rem; 
    width: 0.5rem; 
    height: 3rem; 
    background-image: url(../img/sub/arrow_forward.svg);  
    background-repeat: no-repeat; 
    background-position: center;
}
.breadcrumb ul li:last-child:after {
    display: none;
}
.breadcrumb ul li a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

/* 양방면역 암치료 */
.immune_care_hero {
    background: url(../img/sub/immune_care_hero.jpg) no-repeat center / cover;
}
.immune_care_hero > .title h3, .immune_care_hero > .title {
    color: #fff;
}
.immune_care_cate {
    border-bottom: 1px solid #ddd;
}
.immune_care_cate ul {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    position: relative;
    padding-inline: 1.25rem;
}
.immune_care_cate ul li {
    flex: 1;
    text-align: center;
}
.immune_care_cate ul li a {
    padding: 1.3rem 0;
    font-size: var(--f20);
    font-weight: 600;
    opacity: .4;
    letter-spacing: -0.5px;
}
.immune_care_cate ul li.active a, .immune_care_cate ul li:hover a {
    opacity: 1;
}
.immune_care_cate ul li.active, .immune_care_cate ul li:hover {
    border-bottom: 3px solid;
}


.sec_st {
    padding: 8rem 1.25rem;
}
.container {
    max-width: 1420px;
    margin: 0 auto;
}
.detail_cont_sec .container {
    overflow: hidden;
    position: relative;
}
.detail_cont_sec .container .cont_wrap {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}
.detail_cont_sec .container .cont_wrap .rt_txt {
    width: 710px;
}
.detail_cont_sec .container .cont_wrap .rt_txt .sub_title .title {
    font-size: var(--f54);
    line-height: 1.4;
    letter-spacing: -1px;
    font-weight: 400;
    color: #313131;
}
.detail_cont_sec .container .cont_wrap .rt_txt .sub_title .title b {
    color: #7E170E
}
.detail_cont_sec .container .cont_wrap .rt_txt .sub_title .desc {
    font-size: var(--f20);
    margin: 1.8rem 0;
    color: #313131;
    letter-spacing: -0.5px;
}
.detail_cont_sec .cont_wrap .lt_title li .line {
    width: 100%;
    height: 1px;
    background: #ddd;
    position: relative;
}
.detail_cont_sec .cont_wrap .lt_title li .line span {
    width: 0;
    height: 1px;
    background: #7E170E;
    position: absolute;
    left: 0;
    inset: 0%;
    transition: width 1s;
}
.detail_cont_sec .cont_wrap .lt_title li.active .line span {
    width: 100%;
}

.sec_st .con_tit {
    font-size: var(--f30);
    letter-spacing: -1px;
    font-weight: 600;
}
.detail_cont_sec .cont_wrap .lt_title li .title {
    color: #999;
    font-weight: 400;
    padding: 1.5rem 1.2rem;
    position: relative;
}
.detail_cont_sec .cont_wrap .lt_title li .detail {
    padding: 0 1.2rem 1.5rem;
    transition: none;
}
.sec_st .con_txt {
    font-size: var(--f18);
    color: #313131;
    font-weight: 500;
}
.detail_cont_sec .cont_wrap .lt_title li.active .title {
    color: #111;
    font-weight: 600;
    padding: 1.5rem 1.2rem 0.8rem;
}
.detail_cont_sec .cont_wrap .lt_title li .detail .chk_txt {
    display: flex;
    align-items: center;
    font-size: var(--f18);
    color: #7E170E;
    letter-spacing: -0.5px;
    margin-top: 20px;
    font-weight: 500;
}
.detail_cont_sec .cont_wrap .lt_title li .detail .chk_txt span {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #7E170E;
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
}
.detail_cont_sec .cont_wrap .lt_title .title:after {
    display: inline-block;
    content: '';
    width: 18px;
    height: 18px;
    mask: url(/img/sub/add_plus_icon.svg) center center no-repeat;
    mask-size: 16px;
    background-color: #999;
    position: absolute;
    right: 23px;
    top: 35px;
    transition: .3s;
}
.detail_cont_sec .cont_wrap .lt_title li.active .title:after {
    transform: rotate(180deg);
    background-color: #7E170E;
}
.detail_cont_sec .cont_wrap .lt_title li:last-child {
    border-bottom: 1px solid #ddd;
}

.detail_cont_sec .container .cont_wrap .rt_img {
    width: 620px;
    height: 740px;
    position: relative;
    overflow: hidden;
}
.detail_cont_sec .cont_wrap .rt_img li {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(.5, 0, .3, 1), transform 0.8s cubic-bezier(.5, 0, .3, 1);
    transform: scale(1.02);
}
.detail_cont_sec .cont_wrap .rt_img li.active {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
}

/* 양반면역 암치료 장점 */
.advantage_cont_sec {
    background: #F9F9F9;
}
.advantage_cont_sec h4 {
    font-size: var(--f43);
    margin-bottom: 2.5rem;
}
.advantage_detail {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}
.advantage_detail .box {
    background: #fff;
    border: 1px solid #ddd;
    padding: 2rem 3rem;
    border-radius: 1.2rem;
}
.advantage_detail .box span.point_num {
    background: #7E170E;
    color: #fff;
    border-radius: 2rem;
    padding: 0.3rem 1rem;
    display: inline-block;
    margin-bottom: 1.2rem;
}
.advantage_cont_sec .advantage_detail .con_txt {
    padding: 0.8rem 0 1.5rem;
}
.advantage_feature li {
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 10px;
    max-width: 70%;
    color: #666;
    font-size: 18px;
    letter-spacing: -0.5px;
}
.advantage_feature li:last-child {
    margin-top: 10px;
}
.advantage_feature li span {
    margin-right: 10px;
}


/* sub responsive */
@media screen and (max-width:768px) {
    .sp-hero:not(.sp1-hero) .title {
        left: 5%;
        right: 8%;
    }

    section>.title {
        padding-inline: 1rem;
    }

    .flex-wrap {
        flex-direction: column;
    }

    .flex-reverse {
        flex-direction: column;
    }

    .flex-wrap>div {
        flex-basis: 100% !important;
    }

    .sp1-2 {
        padding-inline: 1rem;
    }

    .sp-banner {
        padding-block: 4rem;
    }

    .sp-banner-cont {
        padding-top: 3rem;
    }

    .sp-banner-cont .flex-wrap {
        gap: 5rem;
    }

    .sp-banner-cont ul li>span {
        padding: 0.425rem 1rem;
    }

    .sp1-2 .circle img {
        display: none;
    }

    .sp1-3 .flex-wrap {
        gap: 2.5rem;
    }

    .spl_box_add .desc {
        padding: 0 10%;
    }

    .sp1-3 ul {
        gap: 1.25rem;
        margin-top: 2rem;
    }

    .sp1-3 .doctor2 {
        padding-right: 2rem;
    }

    .sp1-3 ul li {
        margin-bottom: 0.2rem;
    }

    .sp1-4 {
        padding-bottom: 5rem;
    }

    .sp1-4 ul {
        padding-inline: 1rem;
        padding-block: 3rem;
        gap: 2.5rem;
        grid-template-columns: 1fr;
    }

    .sp1-4 ul li:first-child {
        text-align: center;
        flex-direction: column;
        grid-area: auto;
    }

    .sp1-5 .flex-wrap {
        flex-direction: column-reverse;
    }

    .root_daum_roughmap .wrap_map {
        min-height: 400px;
    }

    .sp1-5 .info {
        padding-block: 5rem;
        border-top: 1px solid #dfdbdb;
    }

    .sp1-5 .info .links {
        display: grid;
        max-width: 100%;
        grid-template-columns: 1fr 1fr;
        gap: 0.25rem;
    }

    .sp1-5 .info .links a {
        padding: 0.75rem;
    }

    .sp2-hero .imgbox {
        display: none;
    }

    .sp2-2 .flex-wrap {
        flex-direction: column-reverse;
        gap: 3rem;
    }

    .sp2-2 .imgbox {
        padding-inline: 2rem;
    }

    .sp2-2 {
        padding-block: 7rem;
        background: #eeeeee;
    }

    .sp2-2-2 {
        padding-top: 8rem;
    }

    .sp2-2-2 .flex-wrap {
        text-align: center;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        gap: 3rem;
    }

    .sp2-2-2 .desc {
        display: flex;
        justify-content: center;
        margin-top: 5rem;
    }

    .sp2-3 {
        padding-block: 7rem;
    }

    .sp2-3 .tablist {
        margin-top: 3.5rem;
    }

    .sp2-3 .tablist li {
        text-align: center;
        padding-inline: 1rem;
    }

    .sp2-swiper .swiper-slide {
        flex-direction: column;
    }

    .sp2-swiper .swiper-slide .desc {
        padding: 2rem;
        padding-bottom: 3rem;
    }

    .sp2-4 ul {
        padding-top: 5rem;
        gap: 1.375rem;
        flex-direction: column;
    }

    .sp2-4 ul li {
        transform: none;
    }

    .sp2-4 .desc {
        flex-direction: column;
    }

    .sp2-4 .desc dt {
        width: 100%;
    }

    .sub-swiper .swiper-slide {
        flex-direction: column-reverse;
    }

    .sub-swiper .swiper-slide>* {
        flex-basis: 100%;
    }

    .sub-swiper .swiper-slide .desc {
        padding: 5rem 2rem 3rem;
    }

    .sub-swiper .next-btn img {
        max-width: 2rem;
    }

    .sp3-swiper .swiper-slide ul li {
        padding: 0;
        margin-block: 2rem;
    }

    .sp3-swiper .swiper-slide ul li img {
        max-width: 3rem;
    }

    .vidbox {
        overflow: hidden;
        border-radius: 0;
    }

    .sp3-5 ul {
        flex-direction: column;
    }

    .sp3-5 ul li {
        padding-top: 0;
        align-content: center;
    }

    .sp4-2 .desc {
        padding-block: 5rem;
    }

    .sub-swiper .next-btn {
        right: 0;
    }

    .sub-swiper .next-btn img {
        max-width: 2rem;
    }

    .sp4-2 .cards {
        padding-block: 1rem 4rem;
    }

    .sp4-2 .card {
        padding-block: 4rem 2rem;
        flex-direction: column;
        padding-left: 0;
        gap: 2rem;
    }

    .sp4-2 .card:nth-of-type(2) {
        flex-direction: column;
    }

    .sp4-2 .card .sub-title p.point {
        margin-block: 0 0.75rem;
    }

    .sp4-2 .card .imgbox {
        overflow: hidden;
        max-height: 20rem;
    }

    .ear-sp2 ul {
        flex-direction: column;
    }

    .ear-sp3 {
        align-content: center;
    }

    .ear-sp3 .title {
        position: static;
        transform: none;
    }

    .category .flex-wrap>.title {
        position: static;
    }

    .category ul {
        grid-template-columns: 1fr;
    }

    .category ul li:nth-of-type(even) {
        transform: none;
    }

    .effect {
        padding-inline: 2rem;
    }

    .effect ul li {
        flex-direction: column;
        gap: 2rem;
    }

    .effect ul li .title span {
        padding: 0.625rem;
    }
}