html,
body {
    width: 100%;
}

body {
    font-family: var(--font-Pretendard);
    font-weight: 400;
    color: var(--color-black-01);
    background-color: #fff;
    letter-spacing: -0.02em;
    word-break: keep-all;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, strong, b {
    font-weight: 700;
}

br.br_640 {
    display: none;
}

br.br_768 {
    display: none;
}

br.br_864 {
    display: none;
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    max-width: 1280px;
    margin: 0 auto;
    box-sizing: border-box;
}

.container.type02{
    flex-direction: column;
}

.container.type03 {
    max-width: 1024px;
}

.container.type04 {
    max-width: 850px;
}

.blind {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

#wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    overflow: clip;
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 120px;
    background-color: transparent;
    transition: background-color 0.5s ease;
}

#header.scrolled {
    background-color: #fff;
}

#header::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 6px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.035), rgba(0, 0, 0, 0));
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

#header.scrolled::after {
    opacity: 1;
}

#header .header_container {
    height: 100%;
}

#header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

#header .header_logo h1 a {
    position: relative;
    display: block;
}

#header .header_logo h1 a img {
    display: block;
    width: auto;
    height: 42px;
    transition: opacity 0.5s ease;
}

#header .header_logo h1 a .logo_color {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

#header.scrolled .header_logo h1 a .logo_wh {
    opacity: 0;
}

#header.scrolled .header_logo h1 a .logo_color {
    opacity: 1;
}

#header.mob_open {
    background-color: #133F6C;
}

#header.mob_open .header_logo h1 a .logo_wh {
    opacity: 1;
}

#header.mob_open .header_logo h1 a .logo_color {
    opacity: 0;
}

#header .right {
    display: flex;
    align-items: center;
}

#pc_nav .floor1 {
    display: flex;
    align-items: center;
    gap: 44px;
}

#pc_nav .floor1 > li {
    display: flex;
    align-items: center;
}

#pc_nav .floor1 > li > a {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    letter-spacing: -0.012em;
    transition: color 0.5s ease;
}

#pc_nav .floor1 > li > a::before {
    content: attr(data-text);
    display: block;
    height: 0;
    font-weight: 700;
    visibility: hidden;
    overflow: hidden;
    pointer-events: none;
}



#header.scrolled #pc_nav .floor1 > li > a {
    color: #133F6C;
}

#pc_nav .floor1 > li > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    opacity: 0;
    transition: opacity 0.2s ease, background-color 0.5s ease;
}

#pc_nav .floor1 > li > a:hover{
    font-weight: 700;
}

#pc_nav .floor1 > li > a:hover::after,
#pc_nav .floor1 > li > a.active::after {
    opacity: 1;
}

#header.scrolled #pc_nav .floor1 > li > a::after {
    background-color: #133F6C;
}

#pc_nav .floor1 > li > a.active{
    font-weight: 700;
}

.header_util {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn_mobile_menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 24px;
    height: 24px;
}

.btn_mobile_menu span {
    display: block;
    width: 18px;
    height: 2px;
    background-color: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.5s ease;
}

#header.scrolled .btn_mobile_menu span {
    background-color: #133F6C;
}

#header.mob_open .btn_mobile_menu span {
    background-color: #fff;
}

#header.mob_open .btn_mobile_menu span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

#header.mob_open .btn_mobile_menu span:nth-child(2) {
    opacity: 0;
}

#header.mob_open .btn_mobile_menu span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile_nav {
    position: fixed;
    top: 120px;
    left: 0;
    z-index: 99;
    width: 100%;
    max-height: 0;
    background-color: #133F6C;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.mobile_nav.is_open {
    max-height: calc(100vh - 120px);
}

.mob_dim {
    position: fixed;
    top: 120px;
    left: 0;
    z-index: 98;
    width: 100%;
    height: calc(100vh - 120px);
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mob_dim.is_open {
    opacity: 1;
    pointer-events: auto;
}

.mobile_nav_inner {
}

.mob_menu > li {
    border-bottom: 1px solid #2A5C96;
}

.mob_menu > li:first-child {
    border-top: 1px solid #2A5C96;
}

.mob_menu > li:last-child{
    border-bottom: none;
}

.mob_menu > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
}

section{
    position: relative;
    width: 100%;
}

.sec_type01{
    padding: 160px 0;
}

.sec_type02{
    padding: 140px 0;
}

.sec_color02{
    background: #F8F8F8;
}

.sec_color03{
    background: #EDF1F5;
}

.sec_banner{
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0;
    overflow: clip;
    isolation: isolate;
    contain: layout paint;
}

.sec_inner{
    width: 100%;
}

.main_visual_block {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding-top: 120px;
}

.main_visual_block .mv_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.main_visual_block .mv_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.main_visual_block .mv_bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.main_visual_block.no_dim .mv_bg::after {
    display: none;
}

.main_visual_block .mv_inner {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.main_visual_block .mv_container {
    display: flex;
    align-items: center;
}

.main_visual_block .mv_txt{
    display: flex;
    flex-direction: column;
    color: #fff;
    gap: 20px;
}

.main_visual_block .mv_txt h2{
    font-family: var(--font-NanumMyeongjo);
    font-weight: 400;
    font-size: 60px;
    line-height: 1.3;
    letter-spacing: -0.03em;
}

.main_visual_block .mv_txt p{
    font-weight: 400;
    font-size: 22px;
    line-height: 1.45;
    letter-spacing: -0.03em;
}

@keyframes mvFadeUp{
    from{
        opacity: 0;
        transform: translateY(40px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

.main_visual_block.mv_in .mv_txt h2,
.main_visual_block.mv_in .mv_txt p{
    opacity: 0;
    animation: mvFadeUp 1s ease 0.4s forwards;
}

.main_visual_block.mv_in .mv_txt p{
    animation-delay: 0.85s;
}

.sec_txt{
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
}

.sec_txt.type02{
    justify-content: center;
    text-align: center;
}

.sec_txt.mb02{
    margin-bottom: 80px;
}

.sec_txt.mb00{
    margin-bottom: 0;
}

.sec_txt h2{
    font-family: var(--font-NanumMyeongjo);
    font-size: 48px;
    line-height: 1.4;
    font-weight: 600;
    color: #133F6C;
    letter-spacing: -0.03em;
}

.sec_txt p{
    color: #555555;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

.sec_tit p.color02,
.sec_txt p.color02{
    color: #1d1d1d;
}

.sec_txt p b{
    font-weight: 700;
}

.sec_txt p.type01{
    margin-top: 28px;
}

.sec_tit p.mt_type02,
.sec_txt p.mt_type02{
    margin-top: 16px;
}

.sec_tit p.mt_type03,
.sec_txt p.mt_type03{
    margin-top: 40px;
}

.sec_txt p.type02{
    margin-top: 16px;
    font-weight: 700;
}

.txt_wh{
    margin-bottom: 0;
}

.txt_wh,
.txt_wh h2,
.txt_wh p,
.txt_wh *{
    color: #fff;
}

.txt_wh02 h2{
    color: #fff;
}

.txt_wh02 p{
    color: #D8D8D8;
}

.txt_wh03 h2{
    color: #fff;
}

.txt_wh03 p{
    color: #B4C4D6;
}

.sec_tit{
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.sec_tit.type02{
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
}

.sec_tit.mb00{
    margin-bottom: 0 !important;
}

.sec_tit.type03{
    justify-content: center;
    align-items: center;
    text-align: center;
}

.sec_tit.type03 h2{
    font-weight: 400;
    line-height: 1.6;
}

.sec_tit.type03 h2 b{
    font-weight: 700;
}

.sec_tit h2{
    font-family: var(--font-NanumMyeongjo);
    font-size: 48px;
    line-height: 1.4;
    font-weight: 600;
    color: #133F6C;
    letter-spacing: -0.03em;
}

.sec_tit p{
    margin-top: 28px;
    color: #555555;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

.txt_pt,
.txt_pt h2,
.txt_pt p,
.txt_pt *{
    color: #133F6C;
}

.exImg_list{
    width: 100%;
}

.exImg_list ul{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 60px 0;
}

.exImg_list ul li{
    width: calc(50% - 12px);
}

.exImg_list ul li figure{
    width: 100%;
    overflow: hidden;
    aspect-ratio: 630 / 400;
}

.exImg_list ul li figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exImg_list ul li .ba_label{
    width: 100%;
    padding: 14px 12px;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.exImg_list ul li .ba_label.before{
    background-color: #B4C4D6;
}

.exImg_list ul li .ba_label.after{
    background-color: #133F6C;
}

.surgery_target_imgList{
    width: 100%;
}

.surgery_target_imgList ul{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 24px;
}

.surgery_target_imgList ul li{
    width: calc((100% - 72px) / 4);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.surgery_target_imgList ul li figure{
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.surgery_target_imgList ul li figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.surgery_target_imgList ul li p{
    margin-top: 24px;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    color: #133F6C;
    letter-spacing: -0.02em;
}

.surgery_stage_desc{
    width: 100%;
    margin-top: 80px;
    padding: 60px;
    background: #fff;
}

.surgery_stage_desc ul{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.surgery_stage_desc ul li{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 60px;
}

.surgery_stage_desc ul li figure{
    flex-shrink: 0;
    width: 520px;
    aspect-ratio: 520 / 330;
    overflow: hidden;
    background-color: #ffffff;
}

.surgery_stage_desc ul li figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.surgery_stage_desc ul li .stage_txt{
    flex: 1;
    display: flex;
    flex-direction: column;
}

.surgery_stage_desc ul li .stage_txt h3{
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    color: #1d1d1d;
    letter-spacing: -0.03em;
}

.surgery_stage_desc ul li .stage_txt p{
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
    color: #555555;
    letter-spacing: -0.02em;
    margin-top: 14px;
}

.surgery_stage_desc ul li .stage_txt p.stage_target{
    margin-top: 40px;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    color: #133F6C;
    letter-spacing: -0.02em;
}

.surgery_stage_txt_area{
    width: 100%;
    border-top: 1px solid #133F6C;
}

.surgery_stage_txt_area ul{
    width: 100%;
}

.surgery_stage_txt_area ul li{
    display: flex;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid #B4C4D6;
    gap: 0 60px;
}

.surgery_stage_txt_area ul li .stage_time{
    flex-shrink: 0;
    width: 82px;
    text-align: right;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: #133F6C;
    letter-spacing: -0.02em;
}

.surgery_stage_txt_area ul li .stage_desc{
    flex: 1;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
    color: #1D1D1D;
    letter-spacing: -0.02em;
}

.surgery_stage_care{
    margin-top: 50px;
}

.surgery_stage_care p{
    text-align: center;
    font-family: var(--font-NanumMyeongjo);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: #133F6C;
}

.surgery_stage_care p b{
    font-weight: 600;
}

.compare_table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.compare_table .col_side {
    width: 38%;
}

.compare_table .col_label {
    width: 24%;
}

.compare_table th,
.compare_table td {
    text-align: center;
    vertical-align: middle;
    line-height: 1.4;
    letter-spacing: -0.02em;
}


.compare_table th{
    padding: 26px 20px;
}

.compare_table td{
    padding: 16px 20px;
    font-size: 22px;
}

.compare_table thead th {
    font-family: var(--font-NanumMyeongjo);
    font-weight: 700;
    color: #fff;
    font-size: 24px;
}

.compare_table thead .cell_left {
    background-color: #909090;
}

.compare_table thead .cell_left.type02 {
    background-color: #133F6C;
}

.compare_table thead .cell_label {
    background-color: transparent;
    border-bottom: none;
}

.compare_table thead .cell_right {
    background-color: #133F6C;
}

.compare_table tbody .cell_left {
    background-color: #F8F8F8;
    color: #888888;
    font-weight: 400;
    border-bottom: 1px solid #D8D8D8;
}

.compare_table_block.type02 tbody td{
    color: #1D1D1D;
    font-weight: 400;
}

.compare_table .cell_label {
    background-color: #99B0CB;
    color: #fff;
    font-weight: 600;
    font-size: 22px;
    border-bottom: 1px solid #D8D8D8;
}

.compare_table tbody .cell_right {
    background-color: #EDF1F5;
    color: #1D1D1D;
    font-weight: 600;
    border-bottom: 1px solid #D8D8D8;
}

.compare_table tbody tr:last-child th,
.compare_table tbody tr:last-child td {
    border-bottom: none;
}

.compare_table .info_tip {
    position: relative;
    display: inline-block;
    margin-left: 4px;
}

.compare_table .ico_info {
    display: inline-block;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    background: url('../img/common/info.svg') no-repeat center / 24px auto;
    font-size: 0;
    vertical-align: middle;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.compare_table .info_tip_box {
    position: absolute;
    left: 50%;
    top: calc(100% + 12px);
    z-index: 20;
    padding: 8px 14px;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.06);
    color: #555;
    font-family: var(--font-Pretendard);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.04em;
    white-space: nowrap;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.compare_table .info_tip_box::after {
    content: "";
    position: absolute;
    bottom: 96%;
    left: 50%;
    width: 14px;
    height: 14px;
    background-color: #fff;
    transform: translate(-50%, 50%) rotate(45deg);
}

.compare_table .info_tip.is_active .info_tip_box {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.compare_table_bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.compare_table_bg .section_bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: auto;
    max-width: none;
    opacity: 0.3;
}


.compare_table_bg.tint_navy::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1A2952;
    opacity: 0.9;
    mix-blend-mode: multiply;
}

.compare_table_block {
    position: relative;
    z-index: 1;
}

.compare_table_block .sec_inner {
    position: relative;
    z-index: 1;
}

.suture_detail {
    width: 100%;
}

.suture_detail img {
    width: 100%;
}

.mo_suture_detail {
    display: none;
    width: 100%;
}

.mo_suture_detail img {
    width: 100%;
}

.sec_banner .section_bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    overflow: clip;
    contain: layout paint;
}

.sec_banner .section_bg .bg_inner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    will-change: transform;
}

.sec_banner .section_bg .bg_inner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sec_banner .section_bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.37);
    z-index: 1;
    pointer-events: none;
}

.sec_banner .sec_inner {
    position: relative;
    z-index: 3;
}

.suture_system_block .left{
    width: 45%;
    display: flex;
    flex-direction: column;
    padding-right: 20px;
}

.suture_system_block .right{
    width: 55%;
    display: flex;
    flex-direction: column;
}

.suture_system_block .suture_sys_list{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.suture_system_block .suture_sys_list li{
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    background-color: #F8F8F8;
    border-radius: 8px;
}

.suture_system_block .suture_sys_list .ico{
    flex-shrink: 0;
    width: 60px;
}

.suture_system_block .suture_sys_list .ico img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.suture_system_block .suture_sys_list h3{
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    color: #1D1D1D;
    letter-spacing: -0.02em;
}

.suture_system_block .suture_sys_list p{
    margin-top: 12px;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
    color: #555555;
    letter-spacing: -0.02em;
}

.half_sec01{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.half_sec01 .left,
.half_sec01 .right{
    width: 50%;
}

.half_sec01 .left{
}

.half_sec01 .right{
    padding-left: 110px;
}

.tabMenu_type01{
    width: 100%;
}

.tabMenu_type01 .tab_nav{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 80px;
}

.tabMenu_type01 .tab_btn{
    min-width: 200px;
    padding: 12px 16px;
    border: 0;
    border-radius: 8px;
    background: rgba(228, 228, 228, 1);
    color: rgba(85, 85, 85, 1);
    font-family: var(--font-Pretendard);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.02em;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}

.tabMenu_type01 .tab_btn:hover{
    background: #DEE2E6;
    color: #133F6C;
}

.tabMenu_type01 .tab_btn.active{
    background: #133F6C;
    color: #ffffff;
}

.tabMenu_type01 .tab_panels{
    width: 100%;
    position: relative;
}

.tabMenu_type01 .tab_panel{
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.tabMenu_type01 .tab_panel.type02{
    gap: 0;
}

.tabMenu_type01 .tab_panel.active{
    display: grid;
}

.tabMenu_type01 .tab_panel .tab_img
.tabMenu_type01 .tab_panel .tab_txt{
    width: 50%;
}

.tabMenu_type01 .tab_panel .tab_img{
}

.tabMenu_type01 .tab_panel .tab_img figure{
    width: 100%;
    aspect-ratio: 640 / 432;
}

.tabMenu_type01 .tab_panel .tab_img figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tabMenu_type01 .tab_panel .tab_txt{
    padding: 40px 0px 40px 80px;
    display: flex;
    align-items: center;
}

.tabMenu_type01 .tab_panel .tab_txt p{
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: #133F6C;
    font-weight: 400;
}

.tabMenu_type01 .tab_panel .tab_txt p.type02{
    color: #555;
}

.tabMenu_type01 .tab_card{
    background: #ffffff;
    border: 1px solid #E5E8EB;
    padding: 40px;
}

.tabMenu_type01 .card_head{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.tabMenu_type01 .card_ico{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    color: #1D1D1D;
}

.tabMenu_type01 .card_ico img{
    width: 24px;
    height: auto;
    display: block;
}

.tabMenu_type01 .card_head h3{
    font-family: var(--font-Pretendard);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: #1D1D1D;
    letter-spacing: -0.02em;
}

.tabMenu_type01 .tab_card ul{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tabMenu_type01 .tab_card ul li{
    position: relative;
    font-family: var(--font-Pretendard);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
    color: #555555;
    letter-spacing: -0.02em;
}

.emergency_banner{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 70px 80px;
    background: #FDF2F3;
}

.emergency_banner .left{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.emergency_banner h2{
    font-family: var(--font-NanumMyeongjo);
    font-size: 40px;
    font-weight: 600;
    line-height: 1.4;
    color: #B9131E;
    letter-spacing: -0.03em;
}

.emergency_banner p{
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
    color: #555555;
    letter-spacing: -0.02em;
}

.emergency_banner .btn_call{
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 90px;
    min-width: 240px;
    padding: 17px 24px;
    background: #B9131E;
    color: #ffffff;
    font-family: var(--font-Pretendard);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.02em;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.emergency_banner .btn_call:hover{
    background: #971118;
}

.emergency_banner .btn_call .arrow,
.yt_link a .arrow{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.emergency_banner .btn_call .arrow img,
.yt_link a .arrow img{
    width: 24px;
    height: auto;
    display: block;
}

#main_section12{
    padding: 140px 0;
}

#main_section12 .sec_bg{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.3;
    pointer-events: none;
}

#main_section12 .sec_bg img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#main_section12 .logo_sev{
    width: 260px;
    margin: 0 auto;
}

#main_section12 .logo_sev img{
    display: block;
    width: 100%;
}

/* divide */

.care_diff_bg{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.care_diff_bg .section_bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
}

.care_diff_bg .section_bg img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#care_diff .sec_inner{
    position: relative;
    z-index: 1;
}

.care_diff_list{
    width: 100%;
}

.care_diff_list ul{
    --care-diff-item-height: auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 32px;
}

.care_diff_list ul li{
    width: 100%;
    display: flex;
    align-items: stretch;
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    min-height: var(--care-diff-item-height);
}

.care_diff_list ul li .ico{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    align-self: stretch;
    width: var(--care-diff-item-height);
    aspect-ratio: 1 / 1;
    background: #F8F8F8;
}

.care_diff_list ul li .ico img{
    width: 85px;
    height: 85px;
    object-fit: contain;
}

.care_diff_list ul li .txt{
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 40px 40px 40px 80px;
}

.care_diff_list ul li .txt h3{
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    color: #1D1D1D;
    letter-spacing: -0.02em;
}

.care_diff_list ul li .txt p{
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
    color: #555555;
    letter-spacing: -0.02em;
}

.care_method_list_area{
    width: 100%;
}

.care_method_list_area ul{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.care_method_list_area ul li{
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
}

.care_method_list_area ul li .img{
    width: 100%;
    aspect-ratio: 1256 / 800;
    overflow: hidden;
}

.care_method_list_area ul li .img img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.care_method_list_area ul li .txt{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 0 0 60px;
}

.care_method_list_area ul li .txt h3{
    font-family: var(--font-NanumMyeongjo);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    color: #133F6C;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.care_method_list_area ul li .txt p{
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
    color: #555555;
    letter-spacing: -0.02em;
}

#scar_care_beginning .sec_bg{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#scar_care_beginning .sec_bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.scar_surgery_area{
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 70px;
}

.scar_surgery_area .txt{
    display: flex;
    flex-direction: column;
}

.scar_surgery_area .txt h2{
    font-family: var(--font-NanumMyeongjo);
    font-size: 48px;
    font-weight: 600;
    line-height: 1.4;
    color: #133F6C;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.scar_surgery_area .txt p{
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
    color: #555555;
    letter-spacing: -0.02em;
}

.scar_surgery_area .txt .btn_more{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    margin-top: 40px;
    padding: 16px 24px;
    background: #133F6C;
    color: #ffffff;
    font-family: var(--font-Pretendard);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.02em;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.scar_surgery_area .txt .btn_more:hover{
    background: #0E2F52;
}

.scar_surgery_area .img{
    width: 100%;
    aspect-ratio: 628 / 400;
    overflow: hidden;
}

.scar_surgery_area .img img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scar_care_graph{
    width: 100%;
    padding: 50px 90px;
    background: rgba(255, 255, 255, 0.8);
}

.scar_care_graph img{
    width: 100%;
}

.scar_care_graph .scar_graph_img_mo{
    display: none;
}

.sub_outline_bg{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.5;
}

.sub_outline_bg img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#sub_outline .sec_tit p{
    color: #1d1d1d;
}

.yt_link{
    margin: 40px auto 80px auto;
}

.yt_link a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding: 16px 24px;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: -0.02em;
    background: #133F6C;
    color: #fff;
    border-radius: 8px;
}

.yt_area{
    position: relative;
    width: 100%;
    aspect-ratio: 840 / 473;
    overflow: hidden;
    cursor: pointer;
}

.yt_area.is_playing{
    cursor: default;
}

.yt_area.is_playing .yt_area_img,
.yt_area.is_playing .yt_play{
    display: none;
}

.yt_video{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.yt_area.is_playing .yt_video{
    display: block;
}

.yt_video iframe{
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.yt_area_img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.yt_area_img img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yt_play{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.yt_play img{
    display: block;
    width: 40px;
    height: auto;
}

.scar_cure_method_area{
    width: 100%;
    padding: 60px;
    display: flex;
    flex-wrap: wrap;
    background: #fff;
}

.scar_cure_method_area .img{
    width: 520px;
    aspect-ratio: 520 / 330;
    overflow: hidden;
}

.scar_cure_method_area .img img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.scar_cure_method_area .desc{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 0 0 60px;
}

.scar_cure_method_area .desc h3{
    font-size: 36px;
    line-height: 1.4;
    letter-spacing: -0.02em;
    font-family: var(--font-NanumMyeongjo);
    font-weight: 600;
    color: #133F6C;
}

.scar_cure_method_area .desc p{
    margin-top: 24px;
    font-size: 22px;
    color: #555;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

#navy_section{
    background: #1A2952;
}

/* include */

#director .director_portrait{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#director .left,
#director .right{
    width: calc(50% - 12px);
}

#director .left figure{
    width: 100%;
}

#director .left figure img{
    width: 100%;
    display: block;
}

#director .right{
    padding-left: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#director .right .role{
    font-family: var(--font-NanumMyeongjo);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    color: #222;
    letter-spacing: -0.02em;
}

#director .right .name{
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-top: 6px;
}

#director .right .name .kor{
    font-family: var(--font-NanumMyeongjo);
    font-weight: 600;
    font-size: 48px;
    line-height: 1;
    line-height: 1.4;
    color: #133F6C;
    letter-spacing: -0.04em;
}

#director .right .name .title{
    font-family: var(--font-NanumMyeongjo);
    font-size: 20px;
    font-weight: 400;
    color: #1D1D1D;
}

#director .right .career_main{
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

#director .right .career_main li{
    font-size: 22px;
    font-weight: 700;
    color: #133F6C;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

#director .right .career_sub{
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

#director .right .career_sub li{
    font-size: 22px;
    font-weight: 400;
    color: #555;
    line-height: 1.6;
    letter-spacing: -0.02em;
}

#director .director_article{
    width: 100%;
    margin-top: 60px;
    padding: 80px;
    background: #EDF1F5;
}

#director .article_title{
    font-family: var(--font-NanumMyeongjo);
    font-weight: 600;
    font-size: 36px;
    line-height: 1.3;
    color: #133F6C;
    text-align: center;
    letter-spacing: -0.02em;
}

#director .article_thumbs{
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin: 40px 0; 
    padding: 0 100px;
}

#director .article_thumbs li{
    width: calc(25% - 18px);
}

#director .article_thumbs li img{
    width: 100%;
    display: block;
}

#director .article_list{
    display: flex;
    flex-direction: column;
    gap: 14px;
}

#director .article_list li{
    position: relative;
    padding-left: 18px;
    font-size: 18px;
    font-weight: 400;
    color: #333;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

#director .article_list li::before{
    content: "";
    position: absolute;
    left: 4px;
    top: 0.65em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #333;
}

#map{
    padding-bottom: 160px;
}

#map .map_area{
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
}

#map .map_left{
    flex-shrink: 0;
    height: 100%;
}

#map .map_left,
#map .map_right{
    width: calc(50% - 13px);
}

#map .map_left figure,
#map .map_left figure img{
    width: 100%;
    height: 100%;
    display: block;
}

#map .map_left figure img{
    object-fit: cover;
}

#map .map_right{
    display: flex;
    flex-direction: column;
    padding: 40px 0px;
}

#map .info_block{
    padding: 40px 0;
    border-bottom: 1px solid #E4E4E4;
}

#map .info_block:first-child{
    padding-top: 0;
}

#map .info_block:last-child{
    padding-bottom: 0;
    border-bottom: 0;
}

#map .info_title{
    font-family: var(--font-NanumMyeongjo);
    font-weight: 700;
    font-size: 36px;
    line-height: 1.3;
    color: #133F6C;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

#map .hours_list{
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 32px;
    row-gap: 20px;
    align-items: center;
}

#map .hours_list li{
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
    color: #333;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

#map .hours_list .day{
    flex-shrink: 0;
    min-width: 140px;
    padding: 4px 20px;
    background-color: #F2F4F8;
    border-radius: 999px;
    font-size: 20px;
    font-weight: 600;
    color: #1D1D1D;
    text-align: center;
}

#map .hours_list .time{
    font-size: 20px;
    font-weight: 400;
    color: #555;
    letter-spacing: -0.012em;
}

#map .hours_list .note{
    font-size: 16px;
    font-weight: 400;
    color: #555555;
}

#map .address,
#map .route,
#map .parking{
    font-size: 18px;
    font-weight: 400;
    color: #444;
    line-height: 1.6;
    letter-spacing: -0.02em;
}

#map .route{
    margin-top: 8px;
}

#footer{
    width: 100%;
    background-color: #E6E7E8;
    padding: 80px 0;
}

#footer .footer_inner{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    box-sizing: border-box;
}

#footer .footer_left{
    display: flex;
    flex-direction: column;
}

#footer .footer_logo a{
    display: inline-block;
}

#footer .footer_logo img{
    display: block;
    height: 42px;
    width: auto;
}

#footer .footer_info{
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

#footer .footer_info li{
    font-size: 18px;
    font-weight: 400;
    color: #8E8E8E;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

#footer .footer_right{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

#footer .footer_policy{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

#footer .footer_policy li a{
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
    color: #1d1d1d;
    letter-spacing: -0.02em;
    transition: opacity 0.2s ease;
}

#footer .footer_policy li a:hover{
    opacity: 0.7;
}

.btn_emergency_fixed{
    position: fixed;
    right: 20px;
    bottom: 40px;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: #B9131E;
    color: #ffffff;
    font-family: var(--font-Pretendard);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease;
}

.btn_emergency_fixed:hover{
    background: #971118;
}

.btn_emergency_fixed.is_hidden{
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#reserv_area .rsv_container{
    justify-content: space-between;
}

#reserv_area .left{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

#reserv_area .right{
    width: 40%;
    align-self: flex-start;
    position: sticky;
    top: calc(var(--header-height) + 20px);
    max-height: calc(100vh - var(--header-height) - 40px);
    max-height: calc(100dvh - var(--header-height) - 40px);
    overflow-y: auto;
    overscroll-behavior: contain;
}

#reserv_area .rsv_summary{
    display: flex;
    flex-direction: column;
    padding: 40px;
    background: rgba(237, 241, 245, 1);
}

#reserv_area .summary_block{
    position: relative;
    padding: 28px 0;
}

#reserv_area .summary_block::after{
    content: "";
    position: absolute;
    left: -40px;
    right: -40px;
    bottom: 0;
    height: 1px;
    background: #B4C4D6;
}

#reserv_area .summary_block:first-child{
    padding-top: 0;
}

#reserv_area .summary_dl{
    display: flex;
    flex-direction: column;
    gap: 14px;
}

#reserv_area .summary_dl li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

#reserv_area .summary_dl .dt{
    font-size: 20px;
    line-height: 1.5;
    font-weight: 600;
    color: #1D1D1D;
    letter-spacing: -0.02em;
}

#reserv_area .summary_dl .dd{
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
    color: #1D1D1D;
    letter-spacing: -0.02em;
}

#reserv_area .summary_dl .dd.is_set{
    color: #133F6C;
    font-weight: 600;
}

#reserv_area .radio_group{
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
}

#reserv_area .rdo{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

#reserv_area .rdo input{
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

#reserv_area .rdo .rdo_box{
    position: relative;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    box-sizing: border-box;
    border: 1px solid #C9D2DC;
    border-radius: 50%;
    background: #fff;
    transition: border-color 0.2s ease;
}

#reserv_area .rdo .rdo_box::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #133F6C;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.15s ease;
}

#reserv_area .rdo input:checked + .rdo_box{
    border-color: #133F6C;
}

#reserv_area .rdo input:checked + .rdo_box::after{
    transform: translate(-50%, -50%) scale(1);
}

#reserv_area .rdo input:focus-visible + .rdo_box{
    outline: 2px solid #133F6C;
    outline-offset: 2px;
}

#reserv_area .rdo .rdo_txt{
    font-size: 18px;
    font-weight: 500;
    color: #1D1D1D;
    letter-spacing: -0.02em;
}

#reserv_area .input_group{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#reserv_area .rsv_input{
    width: 100%;
    box-sizing: border-box;
    padding: 12px 16px;
    border: 1px solid #C6C6C6;
    border-radius: 8px;
    background: #fff;
    font-family: var(--font-Pretendard);
    font-size: 20px;
    line-height: 1.4;
    font-weight: 400;
    color: #1D1D1D;
    letter-spacing: -0.02em;
}

#reserv_area .rsv_input::placeholder{
    color: #717171;
}

#reserv_area .rsv_input:focus{
    outline: none;
    border-color: #133F6C;
}

#reserv_area .agree_group{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#reserv_area .agree_row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

#reserv_area .agree_detail{
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 400;
    color: #717171;
    text-decoration: underline;
    text-underline-offset: 2px;
    letter-spacing: -0.02em;
}

#reserv_area .agree_detail:hover{
    color: #133F6C;
}

#reserv_area .rsv_submit{
    width: 100%;
    margin-top: 28px;
    padding: 22px 24px;
    border: 0;
    border-radius: 8px;
    background: #133F6C;
    color: #ffffff;
    font-family: var(--font-Pretendard);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    cursor: pointer;
    transition: background 0.2s ease;
    line-height: 1.5;
}

#reserv_area .rsv_submit:hover{
    background: #0E2F52;
}

#reserv_area .rsva_inner{
    width: 100%;
}

#reserv_area .rsv_step{
    display: flex;
    flex-direction: column;
}

#reserv_area .rsv_step:not(:has(.time_field)){
    border-bottom: 1px solid #D8D8D8;
    padding-bottom: 60px;
}

#reserv_area .rsv_tit{
    font-family: var(--font-NanumMyeongjo);
    font-size: 36px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.03em;
    color: #133F6C;
    margin-bottom: 28px;
}

#reserv_area .rsv_label{
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: #1D1D1D;
    margin-bottom: 20px;
}

#reserv_area .rsv_field + .rsv_field{
    margin-top: 40px;
}

#reserv_area .chk_group{
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
}

#reserv_area .chk{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

#reserv_area .chk input{
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

#reserv_area .chk .chk_box{
    position: relative;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    box-sizing: border-box;
    border: 1px solid #717171;
    border-radius: 5px;
    background: #fff;
    transition: background 0.2s ease, border-color 0.2s ease;
}

#reserv_area .chk .chk_box::after{
    content: "";
    position: absolute;
    top: 1px;
    left: 6px;
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.15s ease;
}

#reserv_area .chk input:checked + .chk_box{
    background: #133F6C;
    border-color: #133F6C;
}

#reserv_area .chk input:checked + .chk_box::after{
    opacity: 1;
}

#reserv_area .chk input:focus-visible + .chk_box{
    outline: 2px solid #133F6C;
    outline-offset: 2px;
}

#reserv_area .chk .chk_txt{
    width: max-content;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: #1D1D1D;
}

#reserv_area .calendar{
    width: calc(100% + 12px);
    margin: 0 -6px;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
}

#reserv_area .calendar caption{
    caption-side: top;
}

#reserv_area .cal_head{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

#reserv_area .cal_title{
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.023em;
    color: rgba(29, 29, 29, 1);
}

#reserv_area .cal_nav{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(29, 29, 29, 1);
    cursor: pointer;
    transition: color 0.2s ease;
}

#reserv_area .cal_nav:hover{
    color: #133F6C;
}

#reserv_area .cal_nav:disabled{
    opacity: 0.3;
    cursor: default;
}

#reserv_area .cal_nav svg{
    height: 12px;
}

#reserv_area .cal_dow .dow{
    padding: 0;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: rgba(29, 29, 29, 1);
}

#reserv_area .cal_dow .dow span{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1 / 1;
}

#reserv_area .cal_dow .dow.sun{
    color: #E0555F;
}

#reserv_area .cal_days tr{
    height: 20%;
}

#reserv_area .cal_days td{
    padding: 0;
    font-size: 20px;
    vertical-align: top;
}

#reserv_area .cal_day{
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    box-sizing: border-box;
    border: 0;
    border-radius: 8px;
    background: transparent;
    font-family: var(--font-Pretendard);
    color: #1D1D1D;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

#reserv_area .cal_day:hover{
    background: #EDF1F5;
    color: #133F6C;
}

#reserv_area .cal_day.is_sun{
    color: #E0555F;
}

#reserv_area .cal_day.is_other,
#reserv_area .cal_day.is_disabled{
    color: rgba(142, 142, 142, 1);
    background: transparent;
    cursor: default;
    pointer-events: none;
}

#reserv_area .cal_day.is_selected{
    background: #133F6C;
    color: #ffffff;
    font-weight: 600;
}

#reserv_area .time_field + .time_field{
    margin-top: 20px;
}

#reserv_area .time_group{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

#reserv_area .time_slot{
    padding: 16px 10px;
    box-sizing: border-box;
    border: 1px solid rgba(216, 216, 216, 1);
    border-radius: 8px;
    background: #ffffff;
    font-family: var(--font-Pretendard);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.012em;
    color: rgba(29, 29, 29, 1);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

#reserv_area .time_slot:hover{
    border-color: #133F6C;
    color: #133F6C;
}

#reserv_area .time_slot.is_selected{
    background: #133F6C;
    border-color: #133F6C;
    color: #ffffff;
    font-weight: 600;
}

#reserv_area .time_slot.is_disabled{
    border-color: rgba(216, 216, 216, 1);
    color: rgba(142, 142, 142, 1);
    cursor: default;
    pointer-events: none;
}

.onlyMap #main_section12,
.onlyMap #director{
    display: none;
}