@charset "utf-8";
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Pretendard Variable";
    letter-spacing: -0.05rem;
}
body,section {
    width: 100vw;
    overflow-x: hidden;
}
section {
    height: 100vh;
    overflow: hidden;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
    color: #252426;
}
span, strong {
    display: inline-block;
}
img,video {
    width: 100%;
}

.pc {
    display: block;
}
.mo {
    display: none;
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #eceff8;
    display: flex;
    align-items: center;
    padding: 0 10vw;
    z-index: 99;
}
#header h1 {
    width: 280px;
    height: 100%;
    display: flex;
    align-items: center;
}
#header h1 a {
    display: block;
    width: 100%;
}
#header nav {
    width: 100%;
    margin-left: 7.29vw;
}
#header nav ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: relative;
}
#header nav ul li a {
    font-weight: 500;
    font-size: 25px;
}
#header nav ul li:last-child {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
}
#header nav ul li:last-child a {
    font-weight: 300;
    font-size: 20px;
}

#side {
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 99;
}
#side > div {
    width: 90px;
    height: 90px;
    cursor: pointer;
}
#side .contact {
    margin-bottom: 10px;
}

#inquiry {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #9098a8;
    background-color: #fff;
    position: fixed;
    bottom: 150px;
    right: 150px;
    width: 370px;
    display: none;
    z-index: 99;
}
#inquiry .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px 10px;
    border-bottom: 1px solid #9098a8;
    margin-bottom: 10px;
}
#inquiry .top span {
    width: 20px;
}
#inquiry .top a {
    font-size: 18px;
    font-weight: 700;
    color: #203a7b;
}
#inquiry .contact-form {
    padding: 0 10px;
}
#inquiry .contact-form label {
    display: inline-block;
    width: 70px;
    font-weight: 400;
    font-size: 16px;
    color: #203a7b;
    text-align: left;
    margin-bottom: 10px;
}
#inquiry .contact-form input,
#inquiry .contact-form textarea {
    width: 260px;
    height: 30px;
    border: 1px solid #9098a8;
    background-color: #f4f5fa;
    margin-bottom: 9px;
    padding: 5px;
    font-size: 16px;
    -webkit-appearance: none;
   -webkit-border-radius: 0;
}
#inquiry .contact-form textarea {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
#inquiry .contact-form input:focus,
#inquiry .contact-form textarea:focus {
    outline: none;
}
#inquiry .contact-form #btn_submit {
    width: 100% ;
    background-color: #203a7b;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    padding: 0;
    border: 0;
}
#inquiry .btn {
    display: flex;
    justify-content: center;
}
#inquiry .btn > div {
    width: 60px;
    margin: 0 15px;
}
#inquiry .btn a {
    display: block;
}
#inquiry .btn p {
    font-size: 13px;
    text-align: center;
    margin-top: 10px;
    white-space: nowrap;
}

/* section1 */
#main {
    padding-top: 160px;
    padding-left: 200px;
    background: url('/img/landing/1/1_mainback_ko.jpg') no-repeat center / cover;
}
#main strong {
    color: #203a7b;
}
#main h2 {
    display: flex;
    align-items: center;
    margin-bottom: 85px;
}
#main h2 > div {
    display: inline-block;
    width: 150px;
    margin-right: 20px;
    animation: rotate 10s linear infinite;
}
@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}
#main h2 span {
    font-size: 38px;
    font-weight: 400;
}
#main h2 strong {
    font-size: 94px;
}
#main ul li {
    margin-bottom: 60px;
}
#main ul li span {
    font-weight: 700;
    font-size: 30px;
    border: 2px solid #252426;
    margin-bottom: 20px;
    padding: 1px 5px;
}
#main ul li p {
    font-size: 24px;
}


/* section2 */
#ortho {
    position: relative;
    display: flex; 
    color: #fff;
    background: url('/img/landing/2/2_back.jpg') no-repeat center / cover;
}
#ortho article {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    text-align: right;
}
#ortho article:first-child {
    padding-right: 75px;
}
.text-area > span {
    width: 430px;
    margin-bottom: 20px;
}
.text-area h2 {
    font-size: 56px;
}
.text-area h2 strong {
    color: #fff;
}
[data-aos="aos-color"].aos-animate {
    color: #83cfff;
}
.text-area .line {
    width: 1px;
    height: 150px;
    background-color: rgba(255,255,255,0.5);
    margin: 30px 0;
    transform-origin: top;
    transform: scaleY(0);
}
[data-aos="aos-line"].aos-animate {
    transform: scaleY(1);
}
.text-area p {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.4;
}
.text-area p strong.pc {
    display: inline-block;
}
.text-area p strong span {
    position: relative;
    font-weight: 700;
}
#ortho article p strong span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,-90%);
    width: 70px;
    height: 15px;
    background: url('/img/landing/2/2_five_star.png') no-repeat center / 100%;
}
#ortho article .video {
    margin-bottom: 40px;
}
#ortho article:last-child > div {
    border: 2px solid rgba(255,255,255,0.5);
}

/* section3 */
#white {
    padding-top: 100px;
    background-color: #f4f5fa;
}
#white h2 {
    text-align: center;
    font-size: 70px;
    color: #203a7b;
}
#white h2 span {
    display: block;
    font-size: 50px;
    opacity: 0.2;
    letter-spacing: 0.5rem;
    font-weight: 400;
}
#white .square span {
    display: block;
    margin: 30px auto;
    width: 16px;
    height: 16px;
    background-color: #009ff3;
    transform: rotate(45deg);
}
#white > p {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}
#white ul {
    display: flex;
    justify-content: center;
}
#white ul li {
    position: relative;
    width: 260px;
    margin-right: 20px;
    cursor: pointer;
}
#white ul li:last-child {
    margin-right: 0;
}
#white ul li .hover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}
#white ul li:hover .hover {
    opacity: 1;
}

/* section4 */
#implant {
    position: relative;
    display: flex;
    justify-content: flex-end;
    overflow: hidden;
    padding-bottom: 50px;
}
#implant .back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
#implant article {
    width: 50%;
    position: relative;
    z-index: 1;
    color: #fff;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

/* section5 */
#case {
    padding-top: 160px;
    height: 112vh;
    background: url('/img/landing/5/5_back.jpg') no-repeat center bottom / cover;
}
#case h2 {
    color: #203a7b;
    font-size: 70px;
    text-align: center;
    margin-bottom: 20px;
}
#case article {
    position: relative;
}
#case .case-slider {
    width: 1200px;
    height: 620px;
    margin: 0 auto;
}
#case .wrap {
    width: fit-content;
    margin: 0 auto;
}
#case .swiper-button-next:after, 
#case .swiper-button-prev:after {
    font-size: 0;
}
#case .swiper-button-prev {
    width: 50px;
    height: 80px;
    background: url('/img/landing/5/5_arrow_left.png') no-repeat center / 100%;
    left: 200px;
}
#case .swiper-button-next {
    width: 50px;
    height: 80px;
    background: url('/img/landing/5/5_arrow_right.png') no-repeat center / 100%;
    right: 200px;
}
#case .swiper-slide > p {
    width: fit-content;
    padding: 0 100px;
    height: 60px;
    background-color: #203a7b;
    font-size: 36px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    line-height: 60px;
    border-radius: 100px;
    margin: 0 0 80px auto;
    transform: translateX(50%);
}
#case .swiper-slide > p.op {
    opacity: 0;
}
#case .swiper-slide > p.ortho {
    margin: 0 0 30px auto;
}
#case .case-wrap {
    display: inline-block;
    margin: 0 35px;
}
#case .swiper-slide .wrap > p {
    width: fit-content;
    margin: 0 auto 10px;
    background-color: #f4f5fa;
    border: 2px solid #dbdfe6;
    padding: 0 80px;
    color: #203a7b;
    font-weight: 700;
    font-size: 22px;
}
#case .case-wrap .date {
    font-size: 20px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
#case .case-wrap .date .be span {
    color: #203a7b;
    border: 2px solid #203a7b;
}
#case .case-wrap .date .af span {
    color: #009ff3;
    border: 2px solid #009ff3;
}
#case .case-wrap .date > div span {
    padding: 3px 5px;
}
#case .case-wrap .date > div strong {
    margin: 0 10px;
    font-size: 18px;
}
#case .case-wrap .case {
    position: relative;
    width: 530px;
    height: 290px;
}
#case .case-wrap .case > div {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}
#case .case-wrap .case > .before {
    z-index: 1;
    width: 50%;
}
#case .case-wrap .case > div img {
    width: 530px;
    pointer-events: none;
}
#case .case-wrap .case .prog-bar {
    width: 110%;
    height: 100%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
#case .case-wrap .prog-bar input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 100%;
    background: transparent;
    outline: none;
    touch-action: none;
}
#case .case-wrap .prog-bar input[type="range"]:focus {
	outline: none;
    border: none; 
}
#case .case-wrap .prog-bar input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 60px;
    height: 100%;
    box-shadow: none;
    background: url("/img/landing/5/5_linearrow.png") no-repeat center center / 100% 100%;
    cursor: pointer;
}
#case .case-wrap .period {
    position: relative;
    margin-top: 20px;
}
#case .case-wrap .period::before,
#case .case-wrap .period::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 25%;
    height: 1px;
    background-color: #203a7b;
}
#case .case-wrap .period::after {
    left: auto;
    right: 0;
}
#case .case-wrap .period .period-wrap {
    position: relative;
    z-index: 2;
    width: 250px;
    /* background-color: #ffffff; */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
#case .case-wrap .period .period-wrap span {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    background-color: #203a7b;
    width: 96px;
    height: 30px;
    text-align: center;
    line-height: 30px;  
    margin-right: 10px; 
    border-radius: 100px;
}
#case .case-wrap .period .period-wrap strong {
    font-size: 24px;
    color: #203a7b;
}
#case > ul {
    width: 1200px;
    margin: 0 auto;
}
#case > ul li {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
}
#case > ul li p {
    line-height: 1.2;
}

/* section6 */
#info {
    padding-top: 160px;
    background-color: #f4f5fa;
}
#info h2 {
    text-align: center;
    color: #203a7b;
    font-size: 70px;
    margin-bottom: 20px;
}
#info > span {
    display: block;
    width: 430px;
    margin: 0 auto 40px;
}
#info article {
    display: flex;
    height: 480px;
    justify-content: center;
}
#info article .map {
    width: 665px;
    height: 100%;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#info article .map > div:first-child {
    height: 385px;
    background-color: #323232;
}
#info article .map .address {
    background-color: #009ff3;
    padding: 2px;
}
#info article .map .address span {
    width: 100%;
    height: 100%;
    border: 1px solid #fff;
    padding: 10px 0;
}
#info article .map .address span p {
    color: #fff;
    text-align: center;
    font-size: 22px;
}
#info article .time {
    padding: 20px 30px;
    background-color: #fff;
    border: 2px solid #009ff3;
}
#info article .time h3 {
    font-size: 34px;
    color: #009ff3;
    margin-bottom: 20px;
}
#info article .time .week {
    display: flex;
    padding-right: 50px;
    margin-bottom: 20px;
    border-bottom: 3px solid rgba(144,152,168,0.5);
}
#info article .time .week ul {}
#info article .time .week ul:first-child {
    margin: 0 30px;
    width: 95px;
}
#info article .time .week ul:first-child li {
    font-weight: 700;
    display: flex;
    justify-content: space-between;
}
#info article .time .week ul li {
    margin-bottom: 20px;
    font-size: 22px;
}
#info article .time .week ul li strong {
    color: #203a7b;
}
#info article .time .week ul li em {
    font-style: normal;
    font-size: 17px;
    color: #fff;
    font-weight: 700;
    background-color: #203a7b;
    border-radius: 3px;
    padding: 0 5px;
    margin-left: 5px;
}
#info article .time > p {
    font-size: 22px;
    margin-bottom: 10px;
    margin-left: 30px;
    position: relative;
}
#info article .time > p span {
    font-size: 15px;
    color: #009ff3;
    margin-right: 10px;
}
#info article .time .tel {
    margin-top: 20px;
}
#info article .time .tel span {
    display: block;
    width: 60%;
    margin: 0 auto 10px;
    font-size: 22px;
    color: #fff;
    text-align: center;
    background-color: #009ff3;
    border-radius: 100px;
}
#info article .time .tel a {
    font-size: 40px;
    font-weight: 700;
    color: #009ff3;
    display: block;
    text-align: center;
}


@media screen and (max-width:1080px) {
*{
    letter-spacing: 0rem;
} 
.pc {
    display: none;
}
.mo {
    display: block;
}

section {
    height: auto;
}

    #header {
        height: 12vw;
        padding: 0;
        justify-content: center;
        background-color: #fff;
        border-bottom: 2px solid #bfbfbf;
    }
    #header h1 {
        width: 27vw;
    }
    #header .hamberger {
        position: absolute;
        top: 50%;
        right: 4.6vw;
        transform: translateY(-50%);
        width: 5.5vw;
        height: 4.16vw;
    }
    #header .hamberger span {
        position: absolute;
        width: 100%;
        height: 0.6vw;
        background-color: #333333;
        border-radius: 0.6vw;
        transition: all 0.4s;
        top: 0;
        right: 0;
    }
    #header .hamberger span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }
    #header .hamberger span:last-child {
        top: 3.7vw;
    }
    #header .hamberger.active span:first-child {
        top: 1vw;
        width: 50%;
        transform: rotate(40deg);
    }
    #header .hamberger.active span:nth-child(2) {
        right: 0.185vw;
    }
    #header .hamberger.active span:last-child {
        top: 2.685vw;
        width: 50%;
        transform: rotate(-40deg);
    }

    nav {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        width: 50vw;
        background-color: #fff;
        border-left: 0.2vw solid #bfbfbf;
        padding-top: 23vw;
        padding-left: 6.48vw;
        z-index: 98;
        transform: translateX(100%);
        transition: all 0.4s;
    }
    nav.active {
        transform: translateX(0%);
    } 
    nav ul li {
        border-left: 1vw solid #009ff3;
        padding-left: 3.7vw;
        font-weight: 500;
        font-size: 3.88vw;
        margin-bottom: 7.4vw;
    }
    nav ul li:last-child {
        border-left: none;
        font-weight: 300;
        font-size: 3.2vw;
        padding-left: 0;
    }

    #inquiry {
        display: block;
        width: 100vw;
        right: 0;
        bottom: 0;
        border-radius: 2.77vw 2.77vw 0 0;
        box-shadow: 0 0 1.38vw #c7ccd4;
        padding: 4.6vw 11.1vw;
        border: 0;
        transform: translateY(100%);
        transition: all 0.4s;
    }
    #inquiry.active {
        transform: translateY(0%);
    }
    #inquiry .top {
        display: none;
    }
    #inquiry .contact-form {
        padding: 0;
    }
    #inquiry .contact-form label {
        width: 17.59vw;
        font-size: 3.7vw;
        margin-bottom: 1.85vw;
    }
    #inquiry .contact-form input,
    #inquiry .contact-form textarea {
        width: 59.8vw;
        height: 7.5vw;
        border: 1px solid #9098a8;
        margin-bottom: 1.85vw;
        font-size: 3.3vw;
        padding: 1vw;
        
    }
    #inquiry .contact-form #btn_submit {
        font-size: 4.6vw;
    }
    #inquiry .btn {
        margin-top: 2.3vw;
        justify-content: space-around;
    }
    #inquiry .btn > div {
        width: 16.66vw;
        margin: 0 5.55vw 0 0;
    }
    #inquiry .btn > div:last-child {
        margin-right: 0;
    }
    #inquiry .btn p {
        font-size: 3.5vw;
    }
    #inquiry .contact-btn {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%,-100%);
        border: 2px solid #fff;
        border-bottom: 0;
        background-color: #009ff3;
        color: #fff;
        font-size: 5.55vw;
        border-radius: 2.77vw 2.77vw 0 0;
        padding: 1.85vw 5.55vw;
        box-shadow: 0 0 vw #c7ccd4;
    }


    
    /* section1 */
    #main {
        padding-top: 18.5vw;
        padding-left: 0;
        padding-bottom: 25.9vw;
        background: #f4f5ff url('/img/landing/1/m1_mainback_ko.jpg') no-repeat center / 100%;
    }
    #main h2 {
        display: block;
        width: fit-content;
        margin: 0 auto 54vh;
    }
    #main h2 > div {
        display: block;
        width: 21.29vw;
        margin-right: 0;
    }
    #main h2 span {
        font-size: 5.55vw;
        margin-top: 5.55vw;
    }
    #main h2 strong {
        font-size: 13.6vw;
        margin-top: 5.55vw;
    }
    #main ul {
        width: 92vw;
        margin: 0 auto;
        background-color: #fff;
        border: 0.5vw solid #203a7b;
        padding: 6.48vw 4vw;
    }
    #main ul li {
        margin-bottom: 7.4vw;
    }
    #main ul li:last-child {
        margin-bottom: 0;
    }
    #main ul li span {
        font-size: 4.25vw;
        border: 0.4vw solid #252426;
        margin-bottom: 1.85vw;
        padding: 0.4vw 0.9vw;
    }
    #main ul li p {
        font-size: 3.2vw;
        white-space: nowrap;
    }

    /* section2 */
    #ortho {
        background: url('/img/landing/2/2_back.jpg') no-repeat center / 150% 100%;
    }
    #ortho article {
        width: 80%;
        text-align: left;
        align-items: flex-start;
        padding-bottom: 13.88vw;
    }
    #ortho article:first-child {
        width: 90%;
        padding: 13.88vw 0 15.88vw 9.25vw;
        margin-right: -60vw;
    }
    .text-area > span {
        width: 55vw;
        margin-bottom: 2.77vw;
    }
    .text-area h2 {
        font-size: 6.48vw;
    }
    .text-area .line {
        width: 0.2vw;
        height: 83.3vw;
        margin: 6.48vw 0;
    }
    [data-aos="aos-line"].aos-animate {
        transform: scaleY(1);
    }
    .text-area p {
        font-size: 3.4vw;
        margin-bottom: 4.6vw;
    }
    .text-area p strong.pc {
        display: none;
    }

    #ortho article p strong span::before {
        width: 10.185vw;
        height: 1.85vw;
    }
    #ortho article .video {
        margin-bottom: 3.7vw;
    }
    #ortho article:last-child > div {
        border: 0.2vw solid rgba(255,255,255,0.5);
    }

    /* section3 */
    #white {
        padding: 19.44vw 0;
    }
    #white h2 {
        font-size: 7.4vw;
    }
    #white h2 span {
        display: block;
        font-size: 5.55vw;
        letter-spacing: 0.5rem;
    }
    #white .square span {
        margin: 2.8vw auto;
        width: 2.6vw;
        height: 2.6vw;
    }
    #white > p {
        font-size: 3.7vw;
        margin-bottom: 12.96vw;
        text-align: center;
    }
    #white ul {
        align-items: center;
        flex-direction: column;
    }
    #white ul li {
        position: relative;
        width: 87vw;
        margin-right: 0px;
        margin-bottom: 2.77vw;
    }
        
    /* section4 */
    #implant {
        justify-content: flex-start;
        padding: 41.66vw 0 44.44vw 9.25vw;
    }
    #implant .back {
        position: absolute;
        left: 50%;
        transform: translateX(-120%);
        width: 100%;
        height: 100%;
    }
    #implant .back video {
        width: auto;
        height: 100%;
    }
    #implant article {
        width: 100%;
    }
    #implant .text-area .line {
        height: 36.11vw;
    }

    /* section5 */
    #case {
        padding: 24vw 0;
        height: auto;
        background: url('/img/landing/5/m_5_back.jpg') no-repeat center bottom / cover;
    }
    #case h2 {
        font-size: 8.33vw;
        text-align: center;
        margin-bottom: 3.7vw;
    }
    #case .case-slider {
        width: 100%;
        height: 88vw;
    }
    #case .swiper-button-prev {
        width: 4.6vw;
        height: 7.87vw;
        left: 4.6vw;
    }
    #case .swiper-button-next {
        width: 4.6vw;
        height: 7.87vw;
        right: 4.6vw;
    }
    #case .swiper-pagination-bullet {
        width: 2.4vw;
        height: 2.4vw;
        border: 0.3vw solid #c7cbd3;
        opacity: 1;
        background-color: transparent;
        margin: 0 0.8vw;
    }
    #case .swiper-pagination-bullet-active {
        border: 0;
        background-color: #203a7b;
    }
    #case .swiper-slide > p {
        padding: 0 9vw;
        height: 7.4vw;
        background-color: #203a7b;
        font-size: 4.44vw;
        line-height: 7.4vw;
        border-radius: 9.25vw;
        margin: 0 auto 11.11vw;
        transform: translateX(0%);
    }
    #case .swiper-slide > p.op {
        opacity: 1;
    }
    #case .swiper-slide > p.ortho {
        margin: 0 auto 3.5vw;
    }
    #case .case-wrap {
        margin: 0 auto;
    }
    #case .swiper-slide .wrap > p {
        margin: 0 auto 2.77vw;
        border: 0.3vw solid #dbdfe6;
        padding: 0 10vw;
        font-size: 3.5vw;
    }
    #case .case-wrap .date {
        font-size: 3.33vw;
        margin-bottom: 2.77vw;
    }
    #case .case-wrap .date .be span {
        border: 0.3vw solid #203a7b;
    }
    #case .case-wrap .date .af span {
        border: 0.3vw solid #009ff3;
    }
    #case .case-wrap .date > div span {
        padding: 0.2vw 0.3vw;
    }
    #case .case-wrap .date > div strong {
        margin: 0 1.38vw;
        font-size: 2.9vw;
    }
    #case .case-wrap .case {
        position: relative;
        width: 67.59vw;
        height: 37vw;
    }
    #case .case-wrap .case > div img {
        width: 67.59vw;
    }
    #case .case-wrap .prog-bar {
        width: 109%;
        height: 100%;
    }
    #case .case-wrap .prog-bar input[type="range"]::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 6.944vw;
    }
    #case .case-wrap .period {
        margin-top: 4.6vw;
    }
    #case .case-wrap .period::before,
    #case .case-wrap .period::after {
        width: 0%;
    }
    #case .case-wrap .period .period-wrap {
        position: relative;
        width: fit-content;
    }
    #case .case-wrap .period .period-wrap span {
        font-size: 3.7vw;
        width: 21.29vw;
        height: 5.55vw;
        line-height: 5.55vw;  
        margin-right: 2.77vw; 
        border-radius: 100px;
    }
    #case .case-wrap .period .period-wrap strong {
        font-size: 4.166vw;
    }
    #case > ul {
        width: auto;
        margin-top: 12.96vw;
        padding-left: 9.25vw;
    }
    #case > ul li {
        font-size: 2.6vw;
        margin-bottom: 1vw;
    }

    /* section6 */
    #info {
        padding: 18.5vw 0;
    }
    #info h2 {
        font-size: 8.33vw;
        margin-bottom: 1.85vw;
    }
    #info > span {
        width: 61.11vw;
        margin: 0 auto 7.87vw;
    }
    #info article {
        height: auto;
        flex-direction: column;
        width: 90.74vw;
        margin: 0 auto;
    }
    #info article .map {
        width: 100%;
        margin-right: 0px;
        margin-bottom: 9.25vw;
    }
    #info article .map > div:first-child {
        height: 51.85vw;
        margin-bottom: 2.77vw;
        background-color: #323232;
    }
    #info article .map .address {
        padding: 0.2vw;
    }
    #info article .map .address span {
        border: 0.2vw solid #fff;
        padding: 1.85vw 0;
    }
    #info article .map .address span p {
        font-size: 3.7vw;
    }
    #info article .time {
        padding: 5.55vw 2.77vw;
        border: 0.3vw solid #009ff3;
    }
    #info article .time h3 {
        font-size: 5.55vw;
        margin-bottom: 3.7vw;
        padding-left: 8vw;
    }
    #info article .time .week {
        justify-content: center;
        padding-right: 0px;
        margin-bottom: 3.7vw;
        border-bottom: 0.3vw solid rgba(144,152,168,0.5);
    }
    #info article .time .week ul:first-child {
        margin: 0 5.55vw;
        width: 16.66vw;
    }
    #info article .time .week ul li {
        margin-bottom: 3.24vw;
        font-size: 3.7vw;
    }
    #info article .time .week ul li em {
        font-size: 3.148vw;
        border-radius: 0.9vw;
        padding: 2px 0.9vw;
        margin-left: 5px;
    }
    #info article .time > p {
        font-size: 3.7vw;
        margin-bottom: 1.388vw;
        margin-left: 6.48vw;
    }
    #info article .time > p span {
        font-size: 1.94vw;
        margin-right: 1.85vw;
    }
    #info article .time .tel {
        margin-top: 4.16vw;
    }
    #info article .time .tel span {
        width: 50%;
        margin: 0 auto 2.77vw;
        font-size: 3.7vw;
        border-radius: 9.25vw;
    }
    #info article .time .tel a {
        font-size: 6.48vw;
    }
}