/* add Pretendard font (CDN) */
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/variable/pretendardvariable.css');

/* 기본 CSS 리셋 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --basicWidth: 19.2;
    --mainColor: #003579;
    --subColor: #252426;
    --mainFont: 'Pretendard', Arial, sans-serif;
}
/* 스크롤바 커스터마이징 */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--mainColor);
}

::-webkit-scrollbar-thumb:hover {
    background: #003579;
}

::-webkit-scrollbar-track {
    background: #f9f9f9;
}
/* 스크롤바 위아래 화살표 제거 */
::-webkit-scrollbar-button {
    display: none;
    height: 0;
    width: 0;
}


/* Firefox용 */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--mainColor) #e4e4e4;
    /* overflow-x: hidden; */
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: var(--mainFont);
    font-size: 16px;
    color: #252426;
    line-height: 1.2;
    /* overflow-x: hidden; */
    width: 100%;
    max-width: 100vw;
}

strong, h1, h2, h3, h4, h5, h6 {
    font-family: var(--mainFont) !important;
    font-weight: 700;
}
span {
    font-family: var(--mainFont);
}
a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.mobile {
    display: none;
}
.pc {
    display: block;
}

/* header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: rgba(38, 38, 38, 0.2);
    z-index: 9999;
}
#header .header-inner {
    max-width: 1500px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#header .header-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 44px;
}
#header .header-menu li a { 
    font-size: 22px;
    font-weight: 400;
    color: #252426;
    position: relative;
}
#header .header-menu li a.active {
    color: var(--mainColor);
}
#header .header-menu li a.active:before {
    width: 100%;
    transition: width 0.3s ease;
}
#header .header-menu li a:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 12px;
    background-color:rgba(0, 53, 121, 0.4);
    transform: skewX(-25deg);
    
}
#header .header-menu li a:hover {
    color: var(--mainColor);
}
#header-logo svg {
    width: 264px;
    height: auto;
}

/* btn-menu-mobile */
#header .btn-menu-mobile {
    display: none;
    position: relative;
    width: 60px;
    height: 40px;
    cursor: pointer;
}
#header .btn-menu-mobile span {
    position: absolute;
}
.header-menu-mobile-wrap {
    display: none;
}

/* sidemenu */
.side-menu {
    position: fixed;
    bottom: 130px;
    right: 43px;
    width: 60px;
    height: auto;
    z-index: 9999;
    cursor: pointer;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.side-menu-popup {
    display: none;
    position: fixed;
    left: 0;
    top: 50%;
    width: 100%;
    height: auto;
    z-index: 99999;
    transform: translateY(-50%);
}
.side-menu-popup-wrap {
    max-width: 657px;
    height: 100%;
    max-height: 543px;
    margin: 0 auto;
    background-color: #fff;
    padding-top: 63px;
    padding-bottom: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    border: 1px solid #a0a0a0;
}
.side-menu-popup-logo {
    max-width: 428px;
    height: auto;
    margin-bottom: 52px;
}
.side-menu-popup-logo svg {
    width: 100%;
    height: auto;
}
.side-menu-popup-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}
.side-menu-popup-list li a {
    width: 170px;
    height: 170px;
    border-radius: 20px;
}
.side-menu-popup-wrap > p:nth-of-type(1) a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 44px;
    font-weight: 900;
    color: #252426;
    position: relative;
    &::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 100%;
        height: 10px;
        background-color: rgba(148, 183, 203, 0.4);
    }
}
.side-menu-popup-wrap > p:nth-of-type(2) {
    margin-top: 30px;
}

/* section 공통 */
section .section-title {
    font-size: clamp(58px, calc(55.2px + 0.875vw), 72px);
    font-weight: 700;
}
section .section-title strong {
    color: var(--mainColor);
}
section .section-title span {
    display: block;
    font-size: clamp(14px, 1.5vw, 20px);
    font-weight: 400;
    letter-spacing: 0.2em;    
    margin-bottom: 24px;
}
.btn-more, .btn-close {
    display: inline-block;
    /* margin-top: 20px; */
    padding: 10px 45px;
    background-color: var(--mainColor);
    border-radius: 10px;
    color: #fff;
    font-size: clamp(18px, 1.6vw, 24px);
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}
.btn-more a {
    color: #fff;
}
.btn-more:hover {
    background-color: #002855;    
}

/* section1 */
.section1 {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    padding-bottom: 130px;
    margin-top: 70px;
}
.section1 .swiper-container { width:100%; height:100%; }
.section1 .swiper-slide {
    display:flex;
    align-items:center;
    justify-content:center;
    position: relative;
    /* height: 100vh; */
}
.section1 .swiper-slide > article {
    position: absolute;
    left: 50%;
    top: 0;
    width: 100%;
    height: 100%;
    transform: translateX(-50%);
}
.section1 .swiper-slide article .title-slide {
    font-size: clamp(48px, 4vw, 72px);
    font-weight: 700;
    margin-bottom: 20px;
}
.section1 .swiper-slide article .title-slide strong {
    font-weight: 600;
}
.section1 .swiper-slide article .title-slide span {
    display: block;
    font-size: clamp(14px, 1.5vw, 20px);
    font-weight: 400;
    letter-spacing: 0.2em;
    margin-bottom: 24px;
}
.section1 .swiper-slide article p {
    font-size: clamp(25px, calc(22.4px + 0.813vw), 38px);;
    font-weight: 500;
}
.section1 .swiper-slide article p.btn-more {
    font-size: clamp(18px, 1.6vw, 24px);
    font-weight: 400;
}

.section1 .slide1-1 article {
    max-width: 1500px;
    height: 100%;
    padding-right: 170px;
    padding-bottom: 95px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    text-align: right;
}

.section1 .slide1-1 article div {
    max-width: 580px;
    border-radius: 10px;
    background-color: white;
    padding: 28px 21px;
    padding-right: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.section1 .slide1-1 article div p {
    display: flex;
    gap: 8px;
    font-size: clamp(12px, calc(10.8px + 0.375vw), 18px);
}
.section1 .slide1-1 article div p span:nth-child(1) {
    width: 120px;
    color: var(--mainColor);
    font-weight: 900;
}
.section1 .slide1-1 article div p span:nth-child(1) strong {
    color: #7993b5;
    font-weight: 900;
}

.section1 .slide1-1 article .btn-more {
    margin-top: 24px;
    margin-bottom: 82px;
}

.section1 .slide1-2 article {
    max-width: 571px;
    height: 600px;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: white;
}
.section1 .slide1-2 article p:nth-of-type(2) {
    background-color: #bebebe;
    color: white;
    margin-top: 42px;
    padding: 12px 0;
}
.section1 .slide1-2 article p {
    letter-spacing: -0.02em;
}
.section1 .slide1-2 article .btn-more {
    margin-top: 48px;
}
.section1 .slide1-3 article {
    display: flex;
    align-items: center;
    justify-content: center;
}
.section1 .slide1-3 article > div {
    max-width: 731px;
    height: 100%;
    aspect-ratio: 731/731;
    border-radius: 50%;
    /* background-color: rgba(255, 255, 255, 0.64); */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}
.section1 .slide1-3 article .btn-more {
    margin-top: 36px;
}

.section1 .slide1-4 article {
    width: 1500px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.section1 .slide1-4 article .btn-more {
    margin-top: 110px;
}

.section1 .slide1-5 article {
    width: 1500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.section1 .slide1-5 article > div > div {
    position: relative
}
.section1 .slide1-5 article .btn-more {
    position: absolute;
    left: 50%;
    bottom: 38px;
    transform: translateX(-50%);
}
.section1 .swiper-slide article .set-animate {
    opacity: 0;
    transform: translateY(60px);
}

.section1 .swiper-slide img { width:100%; height: 100%; object-fit:cover; }


/* section1 progressbar + controls layout */
.section1 .swiper-control-wrap {
    max-width: 1500px;
    width: 100%;
    height: 40px;
    position: absolute;
    bottom: 130px;
    left: calc(50% - 170px);
    transform: translateX(-50%);
    z-index: 50;
}
.section1 .swiper-controls {
    display:flex;
    align-items:center;
    position:absolute;
    right:0;
    bottom: 50px;
    z-index:50;
    pointer-events:auto;
    font-size:14px;
    width: 270px;
}

/* progressbar wrapper (Swiper가 내부에 .swiper-pagination-progressbar / .swiper-pagination-progressbar-fill 등을 생성) */
.section1 .custom-pagination {
    width: 55% !important;
    height: 3px !important;
    background:#afbac7;
    overflow:hidden;
    display:inline-block;
    vertical-align:middle;
    left: 34% !important;
    top: 50% !important;
    transform: translate(-50%, -50%);
}

/* 실제 채우는 부분 (Swiper가 생성하는 클래스 중 하나를 타겟) */
.section1 .custom-pagination .swiper-pagination-progressbar,
.section1 .custom-pagination .swiper-pagination-progressbar-fill {
    display:block;
    width:100%;
    height:100%;
    background: var(--mainColor);
    transform-origin:left center;
}

/* fraction (현재/총) */
.section1 .swiper-fraction {
    display: flex;
    width: 100%;
    max-width: 194px;
    justify-content: space-between;
    color:#000;
    font-weight:600;
    min-width:62px;
    text-align:center;
}

/* prev/next/play 버튼 스타일 (심플한 예) */
.section1 .swiper-button-prev,
.section1 .swiper-button-next,
.section1 .swiper-playpause {
    height: 100%;
    color:#7584a2;
    border:0;
    padding:0;
    border-radius:0;
    margin-top: 0;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    position: static;
}
.section1 .swiper-playpause {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color: white;
    background-color: #6b85a7;
}

.section1 .swiper-button-prev:after,
.section1 .swiper-button-next:after {
    font-size: 14px;
    font-weight: 900;
}

/* section2 */
.section2 {
    /* display: none; */
    padding: calc(130vw/var(--basicWidth)) 0;
}
.section2 .content-wrap {
    max-width: 1500px;
    margin: 0 auto;
    height: 100%;
    position: relative;
    z-index: 5;
}
.section2 .content-wrap .section-title {
    text-align: center;
    color: var(--mainColor);
}
.section2 .content-wrap > p {
    font-size: 24px;
    text-align: center;
    margin-top: 24px;
}
.section2 .case-swiper .swiper-slide {
    width: calc(1420vw / var(--basicWidth));
    margin: 0 auto;
    margin-top: calc(70vw/var(--basicWidth));
    display: flex;
    justify-content: center;
    gap: calc(64vw / var(--basicWidth));
}
.section2 .case-swiper .swiper-slide .case-comparison {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.section2 .case-swiper .swiper-slide .case-imgbox {
    width: calc(570vw/var(--basicWidth));
    height: calc(310vw / var(--basicWidth));
    overflow: hidden;
    position: relative;
}
.section2 .case-swiper .swiper-slide .case-imgbox img {
    width: 100%;
    height: 100%;
}
.section2 .case-swiper .swiper-slide .case-imgbox .img_a {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}
.section2 .case-swiper .swiper-slide .case-comparison .case-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(570vw / var(--basicWidth));
    font-size: calc(22vw / var(--basicWidth));
    font-weight: 700;
    color: #181818;
    margin-bottom: calc(10vw / var(--basicWidth));
}
.section2 .case-swiper .swiper-slide .case-comparison .case-top span:last-child {
    font-size: calc(19vw / var(--basicWidth));
    font-weight: 400;
}
.section2 .case-swiper .swiper-slide .case-comparison .case-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: calc(23vw / var(--basicWidth));
    width: calc(570vw / var(--basicWidth));
    height: calc(32vw / var(--basicWidth));
}
.section2 .case-swiper .swiper-slide .case-comparison .case-bottom .cb-txt {
    font-size: calc(19vw / var(--basicWidth));
    font-weight: 400;
    color: #052741;
}

.section2 .case-swiper .swiper-slide .case-comparison .slide-track {
    width: 100%;
}
.section2 .case-swiper .swiper-slide .case-comparison .slide-track .slider {
    -webkit-appearance: none;
    width: 90%;
    height: 1px;
    border-radius: 5px;
    background: #393939;
    outline: none;
    opacity: 1;
    -webkit-transition: .2s;
    transition: opacity .2s;
    box-shadow: none transparent;
}
.section2 .case-swiper .swiper-slide .case-comparison .slide-track .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: calc(28vw / var(--basicWidth));
    height: calc(28vw / var(--basicWidth));
    border: 0;
    border-radius: 50%;
    background-image: url('/theme/hu/images/section/2/btn-slider.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    cursor: pointer;
    box-shadow: none;
}
.section2 .case-swiper .swiper-slide .case-comparison .slide-track .slider::-moz-range-thumb {
    width: calc(70vw / var(--basicWidth));
    height: calc(70vw / var(--basicWidth));
    border: 0;
    border-radius: 50%;
    background-image: url('/theme/hu/images/section/2/btn-slider.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    cursor: pointer;
    box-shadow: none;
}
.section2 .swiper-button-prev, .section2 .swiper-button-next {
    top: 50%;
    margin-top: 0;
    
}
.section2 .swiper-button-prev:after, .section2 .swiper-button-next:after {
    content: none;
}

.section2 .swiper-pagination-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: calc(10vw/var(--basicWidth));
    position: relative;
    width: calc(214vw/var(--basicWidth));
    margin: 0 auto;
    margin-top: calc(64vw/var(--basicWidth));
}
.section2 .swiper-pagination-wrap .swiper-pagination {
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    width: calc(156vw/var(--basicWidth));
    height: calc(8vw/var(--basicWidth));
    background: #9ea2ad;
    border-radius: calc(10vw/var(--basicWidth));
    overflow: hidden;
}
.section2 .swiper-pagination .swiper-pagination-progressbar-fill {
    background: var(--mainColor);
    border-radius: calc(10vw/var(--basicWidth));
    transform: scale(1);
}
.section2 .content-wrap .notice {
    width: calc(1200vw/var(--basicWidth));
    margin: 0 auto;
    font-size: calc(16vw/var(--basicWidth));
    font-weight: 300;
    margin-top: calc(40vw/var(--basicWidth));
    line-height: 1.5;
}
.section2 .content-wrap .notice li {
    margin-bottom: 10px;
}
.section2 .content-wrap .notice li:last-child {
    padding-left: calc(19vw/var(--basicWidth));
    text-indent: calc(-19vw/var(--basicWidth));
}

/* section3 */
.section3 {
    background: url("/theme/hu/images/section/3/bg_3.png") no-repeat center center / cover;
    position: relative;
    height: 100vh;
}
.section3 .doctor{
    position: absolute;
    bottom: 0;
    left: 0;
}
.section3 .doctor img {
    object-fit: cover;
}
.section3 .doctor-profile-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10;
    display: none;
}
.section3 .doctor-profile-wrap .doctor-profile {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(0, -50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 10px;
    padding: 0 52px;
    padding-top: 58px;
    padding-bottom: 42px;
}
.section3 .doctor-profile h3 {
    font-size: 44px;
}
.section3 .doctor-profile ul {
    font-size: 16px;
    margin-top: 52px;    
}
.section3 .doctor-profile ul li {
    line-height: 1.5;
}
.section3 .doctor-profile ul li.lbr {
    margin-top: 12px;
}
.section3 .doctor-profile .btn-close {
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.section3 .content-wrap {
    max-width: 1500px;
    margin: 0 auto;
    padding-right: 45px;
    text-align: right;
    height: 100%;
    position: relative;
    z-index: 5;
}
.section3 .content-wrap > div {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 70px;
    height: 100%;
}
.section3 .content-wrap .section-title {
    text-align: center;
}
.section3 .content-wrap > div > p:nth-of-type(1) {
    font-size: 38px;
    text-align: center;
}

/* section4 */
.section4 {
    width: 100%;
    height: calc(100vh + 130px);
    position: relative;
    padding-bottom: 130px;
}
.section4 .section-title {
    position: absolute;
    left:50%;
    top: 155px;
    transform: translateX(-50%);
    z-index: 10;
    max-width: 1500px;
    width: 100%;
}
.section4 .section-title span:last-child {
    font-size: 38px;
    letter-spacing: -0.025em;
    margin-top: 12px;
}
.section4 .content-wrap {
    height: 100%;
}
.section4 .content-wrap .device-wrap {
    position: absolute;
    left: 0;
    top: 0%;
    width: 100%;
    height: 100%;
    background-color: #f3f3f3;
    overflow: hidden;
}
.section4 .content-wrap .device-wrap img {
    object-fit: cover;
}
.section4 .content-wrap .device-wrap p {
    position: absolute;
    left: 5%;
    top: 5%;
    width: 90%;
    height: 100%;
}
.section4 .content-wrap .device-wrap .device-01 {
    /* display: none; */
}
.section4 .content-wrap .device-wrap .device-02 {
    display: none;
}
.section4 .content-wrap .device-wrap .device-03 {
    display: flex;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 1500px;
    height: 100%;
    margin: 0 auto;
    padding-top: 205px;
}
.section4 .content-wrap .device-wrap .device-03 p {
    position: static;
    height: auto;
}
.section4 .content-wrap .device-wrap .device-03 p img {
    border-radius: 20px;
    background-color: white;
    box-shadow: 2px 4px 10px rgba(138, 138, 138, 0.51);
}
.section4 .content-wrap .device-wrap .device-03 p span {
    font-size: 32px;
    font-weight: 600;
    display: block;
    text-align: center;
    margin-top: 32px;
    height: 60px;
}
.section4 .content-wrap .device-wrap .device-03 p span.extra {
    font-size: 20px;
    font-weight: 400;
    margin-top: 0;
}

/* section5 */
.section5 {
    background: url("/theme/hu/images/section/5/bg.png") no-repeat center center / cover;
    position: relative;
    min-height: 100vh;
}
.section5 .content-wrap {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 150px;
}
.section5 .content-wrap .content-left {
    padding-top: 50px;
}
.section5 .content-wrap .content-left .section-title {
    color: var(--mainColor);
}
.section5 .content-wrap .content-left p {
    margin-top: 42px;
    font-size: 44px;
    font-weight: 700;
}
.section5 .content-wrap .content-left p:nth-of-type(2) {
    margin-top: 42px;
    font-size: clamp(18px, calc(13.333px + 0.972vw), 32px);
    font-weight: 400;
    color: white;
    background-color: var(--mainColor);
    display: inline-block;
    padding: 16px 32px;
}

.section5 .content-wrap .content-right {
    width: clamp(420px, calc(332px + 18.333vw), 684px);;
}

/* section6 */
.section6 .content-wrap {
    max-width: 1500px;
    margin: 0 auto;
    height: 180vh;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 150px;
    padding-bottom: 100px;
}

.section6 .content-wrap .content-left {
    max-width: 700px;
    /* width: 40%; */
}
.section6 .content-wrap .content-left .content-left-upper {
    display: flex;
    flex-direction: column;
    padding-top: 20px;
}
.section6 .content-wrap .content-left .section-title strong {
    display: block;
}
.section6 .content-wrap .content-left .content-left-upper > p {
    font-size:  clamp(18px, calc(13.333px + 0.972vw), 32px);
    font-weight: 500;
    margin-top: 32px;
}
.section6 .content-wrap .content-left ul {
    width: 100%;
    margin-top: 60px;
}
.section6 .content-wrap .content-left ul li {
    font-size: clamp(16px, calc(11.667px + 1.3vw), 30px);
    margin-bottom: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.17);
    padding: 18px 14px;
}
.section6 .content-wrap .content-left ul li span:nth-child(1) {
    display: inline-block;
    width: 64px;
    height: 72px;
    background-color: #8ec2ce;
    font-size: 34px;
    font-weight: 700;
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section6 .content-wrap .content-left .content-left-lower {
    opacity: 0;
}
.section6 .content-wrap .content-left .content-left-lower-img {
    display: flex;
    justify-content: space-between;
}
.section6 .content-wrap .content-left .content-left-lower-img p {
    width: clamp(240px, calc(207.667px + 6.736vw), 337px);
    box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.17);
    border-radius: 10px;
}

.section6 .content-wrap .content-right {
    max-width: 754px;
    width: 50%;
    position: sticky;
    top: 100px;
}
.section6 .content-wrap .content-right div {
    padding: 24px 28px;
    border-radius: 10px 10px 0 0;
    background-color: #000840;
    position: relative;
}
.section6 .content-wrap .content-right ul {
    width: 92%;
    display: flex;
    flex-wrap: wrap;
    height: 177px;
    position: absolute;
    left: 50%;
    top: 11%;
    transform: translateX(-50%);
}
.section6 .content-wrap .content-right ul li {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(14px, calc(10px + 0.833vw), 26px);
}
.section6 .content-wrap .content-right video {
    width: 100%;
    border-radius: 0 0 10px 10px;
}

/* section7 */
.section7 {
    background: url("/theme/hu/images/section/7/bg.png") no-repeat center center / cover;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}
.section7 .content-wrap {
    max-width: 1500px;
    margin: 0 auto;
    padding: 150px 0;
    display: flex;
    justify-content: space-between;
}
.section7 .content-wrap .content-left .section-title span{
    margin-bottom: 40px;
}
.section7 .content-wrap .section-right ul li {
    margin-bottom: 12px;
    filter: drop-shadow(2px 4px 13px rgba(138, 138, 138, 0.51));
}

/* section8 */
.section8 {
    background-color: #f3f3f3;
}
.section8 .content-wrap {
    width: 100%;
    height: auto;
}
.section8 .content-wrap img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* section9 */
.section9 {
    background-color: #bfe1f5;
}
.section9 .content-wrap {
    width: 100%;
    height: auto;
}
.section9 .content-wrap img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* section10 */
.section10 {
    background-color: #f3f3f3;
}
.section10 .content-wrap {
    position: relative;
}
.section10 .content-wrap .content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1500px;
}
.section10 .content-wrap .content > p {
    font-size:  clamp(18px, calc(13.333px + 0.972vw), 32px);
    font-weight: 500;
    margin-top: 60px;
    line-height: 1.4;
}
.section10 .content-wrap .content > ul {
    margin-top: 60px;
}
.section10 .content-wrap .content > ul li {
    font-size: clamp(24px, calc(19.333px + 0.972vw), 38px);
    font-weight: 500;
    border-radius: 10px;
    box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.17);
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 566px;
    height: 78px;
    background-color: white;
    margin-bottom: 20px;
    padding-left: 24px;
}
.section10 .content-wrap .img-popup-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.17);
    /* display: flex; */
    align-items: center;
    justify-content: center;
    display: none;
    cursor: pointer;
}

/* section11 */
.section11 {
    background-color: #dee5f2;
}
.section11 .content-wrap {
    max-width: 1500px;
    margin: 0 auto;
    padding: 150px 0;
}
.section11 .content-wrap .section-title {
    color: var(--mainColor);
    text-align: center;
}
.section11 .content-wrap > ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 60px;
    justify-content: space-between;
    gap: 30px;
    margin-top: 96px;
}
.section11 .content-wrap > ul li {
    text-align: center;
    max-width: 322px;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}
.section11 .content-wrap > ul li img {
    transition: all 0.3s ease;
    &:hover {
        transform: scale(1.05);
    }
}


/* section12 */
.section12 {
    background: url("/theme/hu/images/section/12/bg.png") no-repeat center center / cover;
}
.section12 .content-wrap {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 50px;
    padding: 150px 0;
}
.section12 .content-wrap article {
    max-width: 631px;
    aspect-ratio: 631/747;
    width: 48%;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.17);
    text-align: center;
}
.section12 .content-wrap .content-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.section12 .content-wrap .content-left .time-table {
    width: 80%;
}
.section12 .content-wrap .content-left .time-table li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    border-bottom: 1px solid #e4e4e4;
    padding: 16px 0;
}
.section12 .content-wrap .content-left .time-table li span:nth-child(1) {
    font-size: 30px;
    font-weight: 700;
}
.section12 .content-wrap .content-left .time-table li:nth-child(5) span:nth-child(1) {
    font-size: 23px;
}
.section12 .content-wrap .content-left .time-table li span:nth-child(2) strong {
    font-size: 30px;
    display: inline-block;
    width: 100px;
}
.section12 .content-wrap .content-left .time-table li .color {
    color: var(--mainColor);
}
.section12 .content-wrap .content-left .time-table li:last-child {
    border-bottom: none;
    flex-direction: column;
    gap: 10px;
    font-size: 24px;
}
.section12 .content-wrap .content-left > div {
    width: 80%;
    text-align: center;
    color: white;
    background-color: var(--mainColor);
    border-radius: 10px;
    padding: 20px 0;
}
.section12 .content-wrap .content-left > div strong {
    display: block;
    font-size: 32px;
    font-weight: 700;
}
.section12 .content-wrap .content-left > div p {
    font-size: 30px;
}

.section12 .content-wrap .content-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.section12 .content-wrap .content-right #map {
    width: 95%;
    height: 384px;
    border-radius: 10px;
    border: 2px solid #898989;
}
.section12 .content-wrap .content-right p {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.4;
}
.section12 .content-wrap .content-right p:nth-of-type(2) {
    font-size: 50px;
    font-weight: 700;
}
.section12 .content-wrap .content-right p:nth-of-type(2) a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.section12 .content-wrap .content-right p:nth-of-type(2) a img {
    margin-left: 16px;
    width: 36px;
    height: auto;
}
.section12 .content-wrap .content-right p:nth-of-type(2) span {
    color: #898989;
}


/* footer */
#footer {
    background-color: #efefef;
    padding-top: calc(30vw/var(--basicWidth));
    padding-bottom: calc(26vw/var(--basicWidth));
}
#footer .footer-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: calc(20vw/var(--basicWidth));
}
#footer .footer-wrapper .footer-logo {
    width: calc(240vw/var(--basicWidth));
    height: auto;
}
#footer .footer-wrapper .footer-logo svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
#footer .footer-wrapper .footer-info p {
    font-size: calc(19vw/var(--basicWidth));
    text-align: center;
    color: #686868;
    margin-bottom: calc(10vw/var(--basicWidth));
}
#footer .footer-wrapper .footer-info p:last-child {
    font-size: calc(15vw/var(--basicWidth));
    font-weight: 300;
}


@media screen and (max-width: 1024px) {
    :root {
        --basicWidth: 10.24;
    }
    
    .pc {
        display: none;
    }
    .mobile {
        display: block;
    }
    html, body {
        overflow-x: hidden;
    }
    #header {
        height: calc(130vw / var(--basicWidth));
    }
    #header .header-menu {
        display: none;
    }
    #header .header-inner {
        width: 91%;
        margin: 0 auto;
    }
    #header-logo svg {
        width: calc(388vw / var(--basicWidth));
    }
    #header .btn-menu-mobile {
        display: block;
        width: calc(60vw / var(--basicWidth));
        height: calc(40vw / var(--basicWidth));
    }
    #header .btn-menu-mobile span {
        display: none;
        &.active {
            display: block;
        }
    }

    /* 상단메뉴 모바일 */
    .header-menu-mobile-wrap {
        /* display: block; */
        position: fixed;
        top: calc(130vw/var(--basicWidth));
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.3);
        z-index: 9999;
    }
    .header-menu-mobile-wrap .header-menu-mobile {
        position: absolute;
        top: 0;
        right: 0;
        width: 60%;
        height: 100%;
        background-color: white;
        border-top: 1px solid #e4e4e4;
        padding-top: calc(130vw/var(--basicWidth));
        padding-left: calc(74vw/var(--basicWidth));

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: calc(90vw/var(--basicWidth));
    }
    .header-menu-mobile-wrap .header-menu-mobile li {
        position: relative;
        padding-left: calc(42vw/var(--basicWidth));
    }
    .header-menu-mobile-wrap .header-menu-mobile li:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: calc(10vw/var(--basicWidth));
        height: 100%;
        background-color: #009ff3;
    }
    .header-menu-mobile-wrap .header-menu-mobile li a {
        font-size: calc(44vw/var(--basicWidth));
        font-weight: 400;
        color: #252426;
    }

    /* sidemenu */
    .side-menu {
        width: calc(85vw/var(--basicWidth));
        bottom: calc(80vw/var(--basicWidth));
        right: calc(50vw/var(--basicWidth));
    }
    .side-menu-popup-wrap {
        width: calc(985vw/var(--basicWidth));
        height: 100%;
        padding-top: calc(96vw/var(--basicWidth));
        padding-bottom: calc(50vw/var(--basicWidth));
        border-radius: calc(15vw/var(--basicWidth));
        background-color: #fff;
    }
    .side-menu-popup-logo {
        max-width: calc(643vw/var(--basicWidth));
        margin-bottom: calc(75vw/var(--basicWidth));
    }
    .side-menu-popup-list {
        gap: calc(24vw/var(--basicWidth));
        margin-bottom: calc(55vw/var(--basicWidth));
        padding: 0 calc(84vw/var(--basicWidth));
    }
    .side-menu-popup-list li a {
        width: calc(255vw/var(--basicWidth));
        height: calc(255vw/var(--basicWidth));
        border-radius: calc(20vw/var(--basicWidth));
    }
    .side-menu-popup-wrap > p:nth-of-type(1) a {
        gap: calc(24vw/var(--basicWidth));
        font-size: calc(66vw/var(--basicWidth));
        &::before {
            bottom: calc(-26vw/var(--basicWidth));
            height: calc(15vw/var(--basicWidth));
        }
    }
    .side-menu-popup-wrap > p:nth-of-type(2) {
        margin-top: calc(60vw/var(--basicWidth));
    }

    section .section-title {
        font-size: calc(105vw/var(--basicWidth));
    }
    section .section-title span {
        font-size: calc(30vw/var(--basicWidth));
        margin-bottom: calc(35vw/var(--basicWidth));
    }
    .btn-more, .btn-close {
        padding: calc(15vw/var(--basicWidth)) calc(66vw/var(--basicWidth));
        border-radius: calc(10vw/var(--basicWidth));
        font-size: calc(36vw/var(--basicWidth));
    }

    /* section1 */
    .section1 {
        width: 100%;
        height: calc(2000vw/var(--basicWidth));
        padding-bottom: calc(120vw/var(--basicWidth));
        margin-top: calc(130vw/var(--basicWidth));
    }
    .section1 .swiper-slide article .title-slide {
        font-size: calc(111vw/var(--basicWidth));
        margin-bottom: calc(40vw/var(--basicWidth));
    }
    .section1 .swiper-slide article .title-slide span {
        font-size: calc(30vw/var(--basicWidth));
    }
    .section1 .swiper-slide article p {
        font-size: calc(52vw/var(--basicWidth));
    }
    .section1 .swiper-slide article p.btn-more {
        font-size: calc(36vw/var(--basicWidth));
        padding: calc(15vw/var(--basicWidth)) calc(66vw/var(--basicWidth));
        border-radius: calc(10vw/var(--basicWidth));
    }

    .section1 .slide1-1 article {
        width: 91%;
        margin: 0 auto;
        /* height: 100%; */
        padding-right: 0;
        padding-bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-start;
        text-align: right;
        padding-top: calc(130vw/var(--basicWidth));
    }

    .section1 .slide1-1 article div {
        max-width: calc(868vw/var(--basicWidth));
        padding: calc(44vw/var(--basicWidth)) calc(19vw/var(--basicWidth));
        margin: 0 auto;
        gap: calc(20vw/var(--basicWidth));
    }
    .section1 .slide1-1 article div p {
        gap: calc(24vw/var(--basicWidth));
        font-size: calc(26vw/var(--basicWidth));
        text-align: left;
    }
    .section1 .slide1-1 article div p span:nth-child(1) {
        width: calc(160vw/var(--basicWidth));
    }

    .section1 .slide1-1 article .btn-more {
        margin-top: calc(70vw/var(--basicWidth));
        margin-bottom: calc(70vw/var(--basicWidth));
    }

    .section1 .slide1-2 article {
        max-width: calc(856vw/var(--basicWidth));
        margin: 0 auto;
        height: auto;
        padding-top: calc(120vw/var(--basicWidth));
        padding-bottom: calc(90vw/var(--basicWidth));
        background-color: rgba(255, 255, 255, 0.79);
    }
    .section1 .slide1-2 article p:nth-of-type(2) {
        margin-top: calc(64vw/var(--basicWidth));
        padding: calc(20vw/var(--basicWidth)) 0;
    }
    .section1 .slide1-2 article p {
        letter-spacing: -0.02em;
    }
    .section1 .slide1-2 article .btn-more {
        margin-top: 48px;
    }
    .section1 .slide1-3 article > div {
        width: calc(1096vw/var(--basicWidth));
        height: calc(1096vw/var(--basicWidth));
        padding-top: calc(40vw/var(--basicWidth));
        background-color: rgba(255, 255, 255, 0.64);
    }
    .section1 .slide1-3 article .btn-more {
        margin-top: calc(50vw/var(--basicWidth));
    }

    .section1 .slide1-4 article {
        width: 91%;
        justify-content: flex-start;
        padding-top: calc(130vw/var(--basicWidth));
    }
    .section1 .slide1-4 article .title-slide {
        font-size: calc(100vw/var(--basicWidth));
        letter-spacing: -0.02em;
    }
    .section1 .slide1-4 article .btn-more {
        margin-top: calc(70vw/var(--basicWidth));
    }

    .section1 .slide1-5 article {
        width: 91%;
        padding-top: calc(130vw/var(--basicWidth));
        justify-content: flex-start;
    }
    .section1 .slide1-5 article .title-slide {
        font-size: calc(100vw/var(--basicWidth));
        letter-spacing: -0.02em;
    }
    .section1 .slide1-5 article > div > div {
        margin-top: calc(120vw/var(--basicWidth));
    }
    .section1 .slide1-5 article .btn-more {
        bottom: calc(58vw/var(--basicWidth));
    }

    .section1 .swiper-slide img { width:100%; height: 100%; object-fit:cover; }


    /* section1 progressbar + controls layout */
    .section1 .swiper-control-wrap {
        max-width: calc(1080vw/var(--basicWidth));
        bottom: 0;
        left: 0;
        transform: none;
    }
    .section1 .swiper-controls {
        right:50%;
        bottom: calc(25vw/var(--basicWidth));
        transform: translateX(50%);
        z-index:50;
        font-size: calc(36vw/var(--basicWidth));
        width: calc(542vw/var(--basicWidth));
    }

    /* progressbar wrapper (Swiper가 내부에 .swiper-pagination-progressbar / .swiper-pagination-progressbar-fill 등을 생성) */
    .section1 .custom-pagination {
        width: 57% !important;
        left: 35% !important;
    }

    /* 실제 채우는 부분 (Swiper가 생성하는 클래스 중 하나를 타겟) */
    .section1 .custom-pagination .swiper-pagination-progressbar,
    .section1 .custom-pagination .swiper-pagination-progressbar-fill {
        display:block;
        width:100%;
        height:100%;
        background: var(--mainColor);
        transform-origin:left center;
    }

    /* fraction (현재/총) */
    .section1 .swiper-fraction {
        display: flex;
        width: 100%;
        max-width: 194px;
        justify-content: space-between;
        color:#000;
        font-weight:600;
        min-width:62px;
        text-align:center;
    }

    /* prev/next/play 버튼 스타일 (심플한 예) */
    .section1 .swiper-playpause {
        display: flex;
        justify-content: center;
        align-items: center;
        width: calc(80vw/var(--basicWidth));
        height: calc(80vw/var(--basicWidth));
        background-color: transparent;
    }

    .section1 .swiper-button-prev:after,
    .section1 .swiper-button-next:after {
        font-size: calc(35vw/var(--basicWidth));
    }

    /* section2 */
    .section2 {
        padding-top: calc(212vw/var(--basicWidth));
        padding-bottom: calc(54vw/var(--basicWidth));
        background-color: #f3f3f3;
    }
    .section2 .content-wrap {
        width: 91%;
    }

    .section2 .content-wrap > p {
        font-size: calc(36vw/var(--basicWidth));
        text-align: center;
        margin-top: calc(40vw/var(--basicWidth));
    }
    .section2 .case-swiper .swiper-slide {
        width: calc(855vw / var(--basicWidth));
        margin-top: calc(94vw/var(--basicWidth));
        flex-direction: column;
        align-items: center;
        gap: calc(90vw / var(--basicWidth));
    }
    .section2 .case-swiper .swiper-slide .case-comparison {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .section2 .case-swiper .swiper-slide .case-imgbox {
        width: 100%;
        height: calc(464vw/var(--basicWidth));
    }
    .section2 .case-swiper .swiper-slide .case-comparison .case-top {
        font-size: calc(33vw / var(--basicWidth));
        margin-bottom: calc(15vw / var(--basicWidth));
    }
    .section2 .case-swiper .swiper-slide .case-comparison .case-top span:last-child {
        font-size: calc(28vw / var(--basicWidth));
    }
    .section2 .case-swiper .swiper-slide .case-comparison .case-bottom {
        margin-top: calc(32vw / var(--basicWidth));
        width: 100%;
        height: calc(50vw / var(--basicWidth));
    }
    .section2 .case-swiper .swiper-slide .case-comparison .case-bottom .cb-txt {
        font-size: calc(28vw / var(--basicWidth));
    }

    .section2 .case-swiper .swiper-slide .case-comparison .slide-track {
        width: 100%;
    }
    .section2 .case-swiper .swiper-slide .case-comparison .slide-track .slider::-webkit-slider-thumb {
        width: calc(42vw / var(--basicWidth));
        height: calc(42vw / var(--basicWidth));
    }
    .section2 .case-swiper .swiper-slide .case-comparison .slide-track .slider::-moz-range-thumb {
        width: calc(42vw / var(--basicWidth));
        height: calc(42vw / var(--basicWidth));
    }
    .section2 .swiper-control-wrap {
        width: calc(640vw/var(--basicWidth));
        height: calc(65vw/var(--basicWidth));
        margin: 0 auto;
        margin-top: calc(145vw/var(--basicWidth));
        position: relative;
        display: flex;
        align-items: center;
    }
    .section2 .swiper-button-prev, .section2 .swiper-button-next {
        width: calc(36vw/var(--basicWidth));
        transform: translateY(-50%);        
    }

    .section2 .swiper-pagination-wrap {
        width: calc(430vw/var(--basicWidth));
        margin-top: 0;
    }
    .section2 .swiper-pagination-wrap .swiper-pagination {
        width: calc(312vw/var(--basicWidth));
        height: calc(16vw/var(--basicWidth));
    }
    .section2 .content-wrap .notice {
        width: 91%;
        margin: 0 calc(17vw/var(--basicWidth));
        font-size: calc(24vw/var(--basicWidth));
        margin-top: calc(96vw/var(--basicWidth));
    }
    .section2 .content-wrap .notice li {
        margin-bottom: calc(15vw/var(--basicWidth));
    }

    /* section3 */
    .section3 {
        background: #f3f3f3 url("/theme/hu/images/section/3/bg_3m.png") no-repeat center bottom / contain;
        position: relative;
        height: calc(2200vw/var(--basicWidth));
    }
    .section3 .doctor-profile-wrap {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 10;
        /* display: none; */
    }
    .section3 .doctor-profile-wrap .doctor-profile {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-radius: calc(10vw/var(--basicWidth));
        padding: 0 calc(78vw/var(--basicWidth));
        padding-top: calc(86vw/var(--basicWidth));
        padding-bottom: calc(92vw/var(--basicWidth));
        transform: translate(-50%, -50%);
        width: calc(858vw/var(--basicWidth));
    }
    .section3 .doctor-profile h3 {
        font-size: calc(52vw/var(--basicWidth));
    }
    .section3 .doctor-profile ul {
        font-size: calc(24vw/var(--basicWidth));
        margin-top: calc(75vw/var(--basicWidth));
    }
    
    .section3 .doctor-profile ul li.lbr {
        margin-top: calc(50vw/var(--basicWidth));
    }
    .section3 .doctor-profile .btn-close {
        right: calc(35vw/var(--basicWidth));
        bottom: calc(35vw/var(--basicWidth));
    }

    .section3 .content-wrap {
        width: 91%;
        padding-right: 0;
        text-align: center;
        height: 100%;
        padding-top: calc(240vw/var(--basicWidth));
    }
    .section3 .content-wrap > div {
        justify-content: flex-start;
        gap: calc(112vw/var(--basicWidth));
    }
    .section3 .content-wrap > div > p:nth-of-type(1) {
        font-size: calc(52vw/var(--basicWidth));
    }

    /* section4 */
    .section4 {
        height: calc(2000vw/var(--basicWidth));
        min-height: 100vh;
        padding-top: calc(220vw/var(--basicWidth));
        background-color: #f3f3f3;
    }
    .section4 .section-title {
        position: static;
        transform: translateX(0);
        width: 91%;
        margin: 0 auto;
    }
    .section4 .section-title span:last-child {
        font-size: calc(52vw/var(--basicWidth));
        margin-top: calc(40vw/var(--basicWidth));
    }
    .section4 .content-wrap.mobile {
        width: 100%;
        margin: 0 auto;
    }
    .section4 .content-wrap.mobile .mobile-device-swiper {
        /* display: none; */
        width: 91%;
    }
    .section4 .content-wrap.mobile .swiper-button-prev:after, .section4 .content-wrap.mobile .swiper-button-next:after {
        content: none;
    }
    .section4 .content-wrap.mobile .swiper-control-wrap {
        position: relative;
        z-index: 10;
        width: calc(640vw/var(--basicWidth));
        height: calc(65vw/var(--basicWidth));
        margin: 0 auto;
    }
    .section4 .content-wrap.mobile .swiper-controls {
        height: 100%;
    }
    .section4 .content-wrap.mobile .swiper-pagination-progressbar {
        background-color: #9ea2ad;
        width: calc(312vw/var(--basicWidth));
        height: calc(16vw/var(--basicWidth));
        left: 50%;
        top: 50%;   
        transform: translate(-50%, -50%);
        border-radius: calc(4vw/var(--basicWidth));
        overflow: hidden;
    }
    .section4 .content-wrap.mobile .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
        background-color: #001b40;
    }
    .section4 .content-wrap.mobile .swiper-fraction {
        display: flex;
        align-items: center;
        width: calc(432vw/var(--basicWidth));
        height: 100%;
        justify-content: space-between;
        color: #052741;
        font-size: calc(32vw/var(--basicWidth));
        font-weight: 700;
        margin: 0 auto;
    }
    .section4 .content-wrap.mobile .swiper-control-wrap .swiper-button-prev, .section4 .content-wrap.mobile .swiper-control-wrap .swiper-button-next {
        width: calc(36vw/var(--basicWidth));
        height: calc(64vw/var(--basicWidth));
        top: 0;
        margin-top: 0;
    }

    .section4 .content-wrap.mobile .mobile-device-02 {
        /* display: none; */
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
        /* margin-top: calc(130vw/var(--basicWidth)); */
    }
    .section4 .content-wrap.mobile .mobile-device-02 p {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        width: 49%;
        gap: calc(50vw/var(--basicWidth));
    }
    .section4 .content-wrap.mobile .mobile-device-02 p:nth-child(n+3) {
        margin-top: calc(50vw/var(--basicWidth));
    }
    .section4 .content-wrap.mobile .mobile-device-02 p:nth-child(2n-1) {
        border-top-right-radius: calc(10vw/var(--basicWidth));
        border-bottom-right-radius: calc(10vw/var(--basicWidth));
    }
    .section4 .content-wrap.mobile .mobile-device-02 p:nth-child(2n) {
        border-top-left-radius: calc(10vw/var(--basicWidth));
        border-bottom-left-radius: calc(10vw/var(--basicWidth));
    }

    .section4 .content-wrap.mobile .mobile-device-02 p img {
        width: 100%;
        height: auto;
        object-fit: contain;
        filter: drop-shadow(0px 1px 4px rgba(138, 138, 138, 0.51));
    }
    .section4 .content-wrap.mobile .mobile-device-02 p span {
        font-size: calc(48vw/var(--basicWidth));
        font-weight: 700;
        text-align: center;
    }
    .section4 .content-wrap.mobile .mobile-device-02 p span.extra {
        font-size: calc(26vw/var(--basicWidth));
        font-weight: 400;
        text-align: center;
    }


    /* section5 */
    .section5 {
        background: url("/theme/hu/images/section/5/bg_m.png") no-repeat center center / cover;
        padding-top: calc(230vw/var(--basicWidth));
        height: calc(2000vw/var(--basicWidth));
        min-height: 100vh;
    }
    .section5 .content-wrap {
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: calc(150vw/var(--basicWidth));
    }
    .section5 .content-wrap .content-left {
        width: 91%;
        margin: 0 auto;
        padding: 0 calc(40vw/var(--basicWidth));
        padding-top: 0;
    }
    .section5 .content-wrap .content-left .section-title {
        font-size: calc(130vw/var(--basicWidth));
    }
    .section5 .content-wrap .content-left p {
        margin-top: calc(70vw/var(--basicWidth));
        font-size: calc(66vw/var(--basicWidth));
    }
    .section5 .content-wrap .content-left p:nth-of-type(2) {
        display: block;
        text-align: center;
        margin-top: calc(60vw/var(--basicWidth));
        font-size: calc(38vw/var(--basicWidth));
        padding: calc(30vw/var(--basicWidth));
    }

    .section5 .content-wrap .content-right {
        width: 95%;
        margin: 0 auto;
    }

    /* section6 */
    .section6 .content-wrap {
        width: 100%;
        height: calc(3500vw/var(--basicWidth));
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: calc(223vw/var(--basicWidth));
    }

    .section6 .content-wrap .content-left {
        width: 100%;
        /* width: 40%; */
    }
    .section6 .content-wrap .content-left .content-left-upper {
        display: flex;
        flex-direction: column;
        padding-top: 0;
    }
    .section6 .content-wrap .content-left .section-title {
        width: 91%;
        margin: 0 auto;
    }
    .section6 .content-wrap .content-left .section-title strong {
        display: block;
    }
    .section6 .content-wrap .content-left .content-left-upper > p {
        font-size:  calc(48vw/var(--basicWidth));

        width: 91%;
        margin: 0 auto;
        margin-top: calc(70vw/var(--basicWidth));
    }
    .section6 .content-wrap .content-left ul {
        width: 100%;
        margin-top: calc(90vw/var(--basicWidth));
    }
    .section6 .content-wrap .content-left ul li {
        font-size: calc(42vw/var(--basicWidth));
        margin-bottom: calc(35vw/var(--basicWidth));
        border-radius: calc(10vw/var(--basicWidth));
        gap: calc(24vw/var(--basicWidth));
        padding: calc(28vw/var(--basicWidth)) calc(22vw/var(--basicWidth));
    }
    .section6 .content-wrap .content-left ul li span:nth-child(1) {
        width: calc(96vw/var(--basicWidth));
        height: calc(108vw/var(--basicWidth));
        font-size: calc(50vw/var(--basicWidth));
        font-weight: 700;
        border-radius: calc(10vw/var(--basicWidth));
    }
    .section6 .content-wrap .content-left .content-left-lower {
        opacity: 1;
    }
    .section6 .content-wrap .content-left .content-left-lower ul {
        margin-top: 0;
    }
    .section6 .content-wrap .content-left .content-left-lower-img {
        display: flex;
        justify-content: space-around;
        margin-top: calc(32vw/var(--basicWidth));
    }
    .section6 .content-wrap .content-left .content-left-lower-img p {
        width: calc(475vw/var(--basicWidth));
        border-radius: calc(10vw/var(--basicWidth));
    }

    .section6 .content-wrap .content-right {
        width: 100%;
        position: static;
        margin-top: calc(84vw/var(--basicWidth));
    }
    .section6 .content-wrap .content-right div {
        padding: calc(30vw/var(--basicWidth)) calc(35vw/var(--basicWidth));
        border-radius: 0;
    }
    .section6 .content-wrap .content-right ul {
        width: 93%;
        height: calc(249vw/var(--basicWidth));
        top: 10%;
    }
    .section6 .content-wrap .content-right ul li {
        font-size: calc(39vw/var(--basicWidth));
    }
    .section6 .content-wrap .content-right video {
        width: 100%;
        border-radius: 0;
        position: relative;
        top: -2px;
    }

    /* section7 */
    .section7 {
        background: url("/theme/hu/images/section/7/bg_m.png") no-repeat center center / cover;
        height: calc(2000vw/var(--basicWidth));
        min-height: 100vh;
        padding-top: calc(263vw/var(--basicWidth));
    }
    .section7 .content-wrap {
        width: 91%;
        margin: 0 auto;
        padding: 0 calc(50vw/var(--basicWidth));
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: calc(120vw/var(--basicWidth));
    }
    .section7 .content-wrap .content-left {
        width: 100%;
    }
    .section7 .content-wrap .content-left .section-title {
        font-size: calc(130vw/var(--basicWidth));
    }
    .section7 .content-wrap .content-left .section-title span{
        margin-bottom: calc(70vw/var(--basicWidth));
    }
    .section7 .content-wrap .section-right ul li {
        margin-bottom: calc(20vw/var(--basicWidth));
    }

    /* section10 */
    .section10 {
        height: auto;
    }
    .section10 .content-wrap {
        
    }
    .section10 .content-wrap .content {
        top: calc(200vw/var(--basicWidth));
        transform: translate(-50%, 0%);
        width: 91%;
    }
    .section10 .content-wrap .content .section-title {
        font-size: calc(95vw/var(--basicWidth));
    }
    .section10 .content-wrap .content > p {
        font-size:  calc(42vw/var(--basicWidth));
        margin-top: calc(55vw/var(--basicWidth));
    }
    .section10 .content-wrap .content > ul {
        margin-top: calc(55vw/var(--basicWidth));
    }
    .section10 .content-wrap .content > ul li {
        font-size: calc(50vw/var(--basicWidth));
        border-radius: calc(10vw/var(--basicWidth));
        gap: calc(24vw/var(--basicWidth));
        width: calc(846vw/var(--basicWidth));
        height: calc(117vw/var(--basicWidth));
        background-color: white;
        margin-bottom: calc(20vw/var(--basicWidth));
        padding-left: calc(24vw/var(--basicWidth));
    }
    .section10 .content-wrap .content > ul li span img {
        width: calc(73vw/var(--basicWidth));
        aspect-ratio: 73/73;
    }
    .section10 .content-wrap .content > p.btn-more {
        font-size: calc(42vw/var(--basicWidth));
        text-align: center;
        margin-top: calc(50vw/var(--basicWidth));
        padding: calc(20vw/var(--basicWidth)) calc(40vw/var(--basicWidth));
        border-radius: calc(10vw/var(--basicWidth));
    }

    /* section11 */
    .section11 {
        background-color: #dee5f2;
    }
    .section11 .content-wrap {
        width: 91%;
        margin: 0 auto;
        padding: calc(200vw/var(--basicWidth)) 0 calc(100vw/var(--basicWidth)) 0;
    }
    .section11 .content-wrap .section-title {
        font-size: calc(130vw/var(--basicWidth));
    }
    .section11 .content-wrap > ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: calc(30vw/var(--basicWidth));
        margin: 0 calc(36vw/var(--basicWidth));
        margin-top: calc(72vw/var(--basicWidth));
    }
    .section11 .content-wrap > ul li {
        text-align: center;
        width: calc(414vw/var(--basicWidth));
    }


    /* section12 */
    .section12 {
        background: url("/theme/hu/images/section/12/bg_m.png") no-repeat center center / cover;

    }
    .section12 .content-wrap {
        width: 91%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: calc(40vw/var(--basicWidth));
        padding: calc(223vw/var(--basicWidth)) calc(65vw/var(--basicWidth)) calc(120vw/var(--basicWidth)) calc(65vw/var(--basicWidth));
    }
    .section12 .content-wrap .section-title {
        font-size: calc(80vw/var(--basicWidth));
    }
    .section12 .content-wrap article {
        width: 100%;
    }
    .section12 .content-wrap .content-left {
        gap: calc(55vw/var(--basicWidth));
        padding-top: calc(75vw/var(--basicWidth));
        padding-bottom: calc(50vw/var(--basicWidth));
    }
    .section12 .content-wrap .content-left .time-table {
        width: 71%;
    }
    .section12 .content-wrap .content-left .time-table li {
        font-size: calc(27vw/var(--basicWidth));
        padding: calc(18vw/var(--basicWidth)) calc(40vw/var(--basicWidth));
    }
    .section12 .content-wrap .content-left .time-table li span:nth-child(1) {
        font-size: calc(40vw/var(--basicWidth));
    }
    .section12 .content-wrap .content-left .time-table li:nth-child(5) span:nth-child(1) {
        font-size: calc(30vw/var(--basicWidth));
    }
    .section12 .content-wrap .content-left .time-table li span:nth-child(2) strong {
        font-size: calc(40vw/var(--basicWidth));
        width: calc(130vw/var(--basicWidth));
    }
    .section12 .content-wrap .content-left .time-table li:last-child {
        gap: calc(20vw/var(--basicWidth));
        font-size: calc(32vw/var(--basicWidth));
        margin-top: calc(50vw/var(--basicWidth));
    }
    .section12 .content-wrap .content-left > div {
        width: 86%;
        border-radius: calc(10vw/var(--basicWidth));
        padding: calc(30vw/var(--basicWidth)) 0;
    }
    .section12 .content-wrap .content-left > div strong {
        font-size: calc(43vw/var(--basicWidth));
    }
    .section12 .content-wrap .content-left > div p {
        font-size: calc(40vw/var(--basicWidth));
    }

    .section12 .content-wrap .content-right {
        gap: calc(40vw/var(--basicWidth));
        padding-top: calc(75vw/var(--basicWidth));
        padding-bottom: calc(50vw/var(--basicWidth));
    }
    .section12 .content-wrap .content-right #map {
        width: 95%;
        height: calc(517vw/var(--basicWidth));
        border-radius: calc(10vw/var(--basicWidth));
        border: 1px solid #898989
    }
    .section12 .content-wrap .content-right p {
        font-size: calc(40vw/var(--basicWidth));
    }
    .section12 .content-wrap .content-right p:nth-of-type(2) {
        font-size: calc(81vw/var(--basicWidth));
    }
    .section12 .content-wrap .content-right p:nth-of-type(2) a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: calc(32vw/var(--basicWidth));
    }
    .section12 .content-wrap .content-right p:nth-of-type(2) a img {
        margin-left: calc(32vw/var(--basicWidth));
        width: calc(57vw/var(--basicWidth));
    }

    /* footer */
    #footer {
        padding-top: calc(28vw/var(--basicWidth));
        padding-bottom: calc(20vw/var(--basicWidth));
    }
    #footer .footer-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: calc(25vw/var(--basicWidth));
    }
    #footer .footer-wrapper .footer-logo {
        width: calc(360vw/var(--basicWidth));
    }
    #footer .footer-wrapper .footer-info p {
        font-size: calc(25vw/var(--basicWidth));
        margin-bottom: calc(14vw/var(--basicWidth));
    }
    #footer .footer-wrapper .footer-info p:last-child {
        font-size: calc(23vw/var(--basicWidth));
    }
}