@charset "utf-8";

@import url("reset.css");

@font-face {
    font-family: 'NanumSquareNeo';
    src: url('/font/NanumSquareNeo-bRg.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'ONE-Mobile-Title';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2105_2@1.0/ONE-Mobile-Title.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
/* @font-face {
    font-family: 'ONE-Mobile';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2105_2@1.0/ONE-Mobile-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
} */
@font-face {
    font-family: 'KCC';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_one@1.0/KCC-eunyoung-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
    --mainFont: "NanumSquareNeo";
    --subFont: "ONE-Mobile-Title";
    /* --mainColor: #386546; */
    --mainColor: #595757;
    --gray: #535353;
    --fontSize: 25;
    --width: 19;
}

.pbr {
    display: block;
}
.mbr {
    display: none;
}

@media screen and (max-width: 1100px) {
    :root {
        --width: 11;
    }

    .pbr {
        display: none;
    }
    .mbr {
        display: block;
        padding: 0 !important;
    }
}

* {
    font-family: var(--mainFont);
    color: var(--gray);
}
html, body {
    /* font-size: var(--fontSize)px; */
    width: 100%;
    overflow-x: hidden;
}
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body::-webkit-scrollbar {
    width: 10px;
}
body::-webkit-scrollbar-thumb {
    /* background-color: var(--mainColor); */
    background-color: #333;
}
body::-webkit-scrollbar-track {
    background-color: var(--gray);
}

a {
    color: var(--gray);
    text-decoration: none;
}
strong {
    font-weight: bold;
}

.typing-wrap {
    background-color: var(--mainColor);
    color: white;
}
.typing-wrap strong {
    font-weight: bold;
}

#header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(34vw/var(--width));
    display: flex;
    gap: calc(45vw/var(--width));
    padding-left: calc(60vw/var(--width));
    padding-top: calc(48vw/var(--width));
    z-index: 99999;
}
#header h1 {
    width: calc(142vw/var(--width));
    position: relative;
    z-index: 9999;
}
#header .topMenu {
    display: flex;
    align-items: center;
}
#header .topMenu ul {
    display: flex;
    align-items: center;
    gap: calc(30vw/var(--width));
}
#header .topMenu ul li a {
    font-size: calc(16em/var(--width));
    position: relative;
}
#header .topMenu ul li a:before, #header .topMenu ul li a:after {
    content: '';
    border-bottom: solid 1px black;
    position: absolute;
    bottom: 0;
    width: 0;
}
  
#header .topMenu ul li a:before { left: 0; }
#header .topMenu ul li a:after { right: 0; }

#header .topMenu ul li a:hover {
    color: black;
}
#header .topMenu ul li a:hover:before, #header .topMenu ul li a:hover:after {
    width: 50%;
}

#header .topMenu ul li a:before, #header .topMenu ul li a:after {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
#header .topMenu .closeMenu {
    display: none;
}

@media screen and (max-width: 1100px) {
    #header h1 {
        width: calc(252vw/var(--width));
    }
    #header .topMenu {
        position: fixed;
        background-color: #e9e9e9;
        left: 100%;
        top: 0;
        width: 100%;
        height: 100vh;
        justify-content: center;
        transition: all 0.4s;
    }
    #header .topMenu ul {
        flex-direction: column;
        justify-content: center;
        gap: calc(120vw/var(--width));
    }
    #header .topMenu .closeMenu {
        position: fixed;
        z-index: 9999;
        right: calc(20vw/var(--width));
        top: calc(20vw/var(--width));
        display: block;
    }
    #header .topMenu .closeMenu .material-symbols-outlined {
        font-size: calc(120vw/var(--width));
    }

    #sideMenu {
        display: none;
    }
}
#sideMenu {
    position: fixed;
    right: calc(15vw/var(--width));
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: none;
}
#sideMenu ul li a {
    transition: all 0.4s;
}
#sideMenu ul li a svg {
    width: calc(32vw/var(--width));
    transition: all 0.4s;
}
#sideMenu ul li a span {
    font-size: 0;
    color: transparent;
}
#sideMenu ul li:nth-child(n+6) span {
    font-size: calc(32vw/var(--width));
    color: var(--gray);
}
#sideMenu ul li a:hover span {
    color: var(--mainColor);
}

#sideMenu ul li a .st0{transition: all 0.4s;}
#sideMenu ul li:nth-child(1) a:hover .st0{fill: #42D31A;}
#sideMenu ul li:nth-child(2) a:hover .st0{fill: #42D31A;}
#sideMenu ul li:nth-child(3) a:hover .st0{fill: #381E1D;}
#sideMenu ul li:nth-child(4) a:hover .st0{fill: #42D31A;}
#sideMenu ul li:nth-child(5) a:hover .st0{fill: #F43474;}


#main {
    /* blank */
}

.section1 {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.section1 .title > * {
    line-height: 1.4em;
}
.section1 .title > h1 {
    font-size: calc(170vw/var(--width));
    font-family: var(--subFont);
    /* transform: translateY(-10vh); */
    opacity: 0;
    animation: fade 1200ms 800ms ease-in-out forwards;
}
.section1 .title > h1 span {
    position: relative;
    display: inline-block;
}
.section1 .background {
    position: absolute;
    left: 50%;
    top: 0;
    z-index: -1;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    -webkit-mask-image: -webkit-radial-gradient(white, black);    
    -webkit-backface-visibility: hidden;    
    -moz-backface-visibility: hidden;
}
.section1 .background > video {
    width: 100%;
}
.section1 .scrollDownAni {
    position: absolute;
    bottom: calc(40vw/var(--width));
    animation: bounce2 .6s ease infinite alternate;
    display: none;
}
.section1 > p span:nth-of-type(1) {
    font-size: calc(19vw/var(--width));
}
.section1 > p span:nth-of-type(2) {
    font-size: calc(70vw/var(--width));
}
@media screen and (max-width: 1100px) {
    .section1 > p span:nth-of-type(1) {
        font-size: calc(33vw/var(--width));
    }
    .section1 > p span:nth-of-type(2) {
        font-size: calc(120vw/var(--width));
    }
    .section1 .background > video {
        width: auto;
        height: 100%;
        transform: translateX(-35%);
    }
}

@keyframes bounce2 {
    100% {
        bottom: calc(100vw/var(--width));
    }
}


.section2 {
    width: 100%;
    height: 110dvh;
    height: 110vh;
    padding-bottom: calc(10vw/var(--width));
}
.section2 .title {
    font-size: calc(70vw/var(--width));
    font-family: var(--subFont);
    text-align: center;
    color: var(--gray);
    padding-top: calc(210vw/var(--width));
}
.section2 .swiper-container {
    margin: 100px auto;
    padding-bottom: calc(10vw/var(--width));
    position: relative;
}

.section2 .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(75vw/var(--width));
    font-size: 22px;
    color: #fff;
    background-color: white;
    padding-bottom: calc(50vw/var(--width));
    position: relative;
}
.section2 .swiper-slide .img-doctor {
    width: calc(400vw/var(--width));
    background: url(../img/section/2/box.png) no-repeat center bottom / contain;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.3));
}
.section2 .swiper-slide img {
    width: 100%;
}
.section2 .swiper-slide .con-doctor {
    display: flex;
    flex-direction: column;
    gap: calc(60vw/var(--width));
}
.section2 .swiper-slide .con-doctor .name {
    position: relative;
}
.section2 .swiper-slide .con-doctor .name:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: calc(-25vw/var(--width));
    width: calc(64vw/var(--width));
    height: 3px;
    background-color: #595757;
}
.section2 .swiper-slide .con-doctor .name p:nth-child(1) {
    font-size: calc(20vw/var(--width));
}
.section2 .swiper-slide .con-doctor .name p:nth-child(2) {
    font-size: calc(22vw/var(--width));
    margin-top: calc(10vw/var(--width));
}
.section2 .swiper-slide .con-doctor .name p:nth-child(2) strong {
    font-size: calc(50vw/var(--width));
    font-weight: bold;
    font-family: var(--subFont);
}
.section2 .swiper-slide .con-doctor .copy {
    font-family: "KCC";
    font-size: calc(33vw/var(--width));
    font-weight: 100;
    line-height: 1.4em;
}
.section2 .swiper-slide .con-doctor .portfolio {
    display: flex;
    gap: calc(45vw/var(--width));
    position: relative;
}
.section2 .swiper-slide .con-doctor .portfolio ul li {
    position: relative;
    font-size: calc(18vw/var(--width));
    padding-left: calc(10vw/var(--width));
    margin-bottom: 1em;
    line-height: 1.3;
}
.section2 .swiper-slide .con-doctor .portfolio ul li:before {
    content: "·";
    position: absolute;
    left: 0;
    top: calc(2vw/var(--width));
    /* transform: translateY(-50%); */
    font-size: inherit;
}
/* .section2 .swiper-slide .con-doctor .portfolio .right li:nth-child(n+2):nth-child(-n+3) {
    height: 1em;
    margin-bottom: 2.7em;
    line-height: 1.3em;
} */
.section2 .swiper-slide .con-doctor .portfolio ul li strong {
    font-size: calc(16vw/var(--width));
    color: black;
    font-weight: 400;
}
.section2 .section2 .swiper-pagination {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: center;
}
.section2 .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    display: inline-block;
    background-color: var(--gray); /* pagination bullet의 색상 설정 */
    border-radius: 10px;
    margin: 0 5px; /* bullet 간격 조정 */
}
.section2 .swiper-pagination-bullet-active {
    background-color: var(--mainColor); /* 활성화된 pagination bullet의 색상 설정 */
}
@media screen and (max-width: 1100px) {
    .section2 .swiper-slide {
        flex-direction: column;
        gap: calc(100vw/var(--width));
        padding-bottom: calc(75vw/var(--width));
    }
    .section2 .swiper-slide .con-doctor .name p:nth-child(1) {
        font-size: calc(32vw/var(--width));
    }
    .section2 .swiper-slide .con-doctor .name p:nth-child(2) {
        font-size: calc(33vw/var(--width));
    }
    .section2 .swiper-slide .con-doctor .name p:nth-child(2) strong {
        font-size: calc(80vw/var(--width));
    }
    .section2 .swiper-slide .con-doctor .copy {
        font-size: calc(60vw/var(--width));
    }
    .section2 .swiper-slide .con-doctor .portfolio {
        flex-direction: column;
        gap: 0;
    }
    .section2 .swiper-slide .con-doctor .portfolio ul li {
        font-size: calc(30vw/var(--width));
    }
    .section2 .swiper-slide .con-doctor .portfolio ul li strong {
        font-size: calc(30vw/var(--width));
    }
}


.section3add {
    width: 100%;
    height: 100dvh;
    height: 100vh;
    background: url("../img/section/3additional/bg.jpg") no-repeat center center / cover;
    position: relative;
}
.section3add-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -80%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: calc(40vw/var(--width));
}
.section3add-wrap > p:nth-of-type(1) {
    font-size: calc(25vw/var(--width));
}
.section3add-wrap > p:nth-of-type(1) span {
    color: white;
    background-color: var(--mainColor);
    padding: 1px 2px;
    border-radius: 4px;
}
.section3add-wrap > p:nth-of-type(1) strong {
    color: white;
}
.section3add-wrap > p:nth-of-type(2) {
    font-size: calc(33vw/var(--width));
    font-family: var(--subFont);
}
.section3add-wrap > p:nth-child(3) {
    width: 100%;
    font-size: calc(53vw/var(--width));
    font-family: var(--subFont);
    display: flex;
    justify-content: space-between;
    letter-spacing: -0.03em;
}
.section3add-wrap > p:nth-child(3) span {
    color: black;
}
@media screen and (max-width:1100px) {
    .section3add-wrap {
        width: 80%;
        gap: calc(80vw/var(--width));
    }
    .section3add-wrap > p:nth-of-type(1) {
        font-size: calc(52vw/var(--width));
    }
    .section3add-wrap > p:nth-of-type(2) {
        font-size: calc(72vw/var(--width));
    }
    .section3add-wrap > p:nth-child(3) {
        font-size: calc(140vw/var(--width));
    }
}

.section3 {
    /* blank */
}
.section3-wrap {
    display: flex;
    padding: 0 calc(60vw/var(--width));
    padding-top: calc(174vw/var(--width));
}
.section3-wrap .left {
    width: 23.3%;
}
.section3-wrap .left > div > p:nth-of-type(1) {
    font-size: calc(16vw/var(--width));
    font-weight: bold;
}
.section3-wrap .left > div > h2 {
    display: flex;
    font-size: calc(70vw/var(--width));
    font-family: var(--subFont);
    margin-top: calc(21vw/(var(--width)));
    margin-bottom: calc(35vw/(var(--width)));
}
.section3-wrap .left > div > p:nth-of-type(2) {
    font-size: calc(21vw/var(--width));
    line-height: 1.6em;
}
.section3-wrap .left > div > p:nth-of-type(2) strong {
    font-size: calc(30vw/var(--width));
}
.section3-wrap .left > ul {
    margin-top: calc(40vw/var(--width));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: calc(14vw/var(--width));
}
.section3-wrap .left > ul li {
    width: 100%;
    background-color: #f7f7f7;
    border-radius: calc(20vw/var(--width));
    padding-left: calc(35vw/var(--width));
    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: space-between;
}
.section3-wrap .left > ul li .con-left > p:nth-of-type(1) {
    font-size: calc(16vw/var(--width));
}
.section3-wrap .left > ul li .con-left > h3 {
    font-size: calc(33vw/var(--width));
    font-weight: 900;
    margin-top: calc(13vw/var(--width));
    margin-bottom: calc(18vw/var(--width));
}
.section3-wrap .left > ul li .con-left > p:nth-of-type(2) {
    font-size: calc(19vw/var(--width));
    line-height: 1.3em;
    white-space: nowrap;
}

.section3-wrap .right {
    width: 76.7%;
    display: flex;
    align-items: center;
    padding-top: calc(160vw/var(--width));
}
.section3-wrap .right video {
    width: 100%;
}

@media screen and (max-width: 1100px) {
    .section3-wrap {
        flex-direction: column-reverse;
    }
    .section3-wrap .left {
        width: 100%;
    }
    .section3-wrap .right {
        width: 100%;
        padding-bottom: calc(160vw/var(--width));
    }
    .section3-wrap .right video {
        width: 180%;
        transform: translateX(-18%);
    }
    .section3-wrap .left > div {
        text-align: center;
    }
    .section3-wrap .left > div > p:nth-of-type(1) {
        font-size: calc(21vw/var(--width));
    }
    .section3-wrap .left > div > h2 {
        display: block;
        font-size: calc(90vw/var(--width));
    }
    .section3-wrap .left > div > p:nth-of-type(2) {
        font-size: calc(32vw/var(--width));
    }
    .section3-wrap .left > div > p:nth-of-type(2) strong {
        font-size: calc(39vw/var(--width));
    }    
    .section3-wrap .left > ul {
        margin-top: calc(80vw/var(--width));
    }
    .section3-wrap .left > ul li {
        padding: 0 calc(72vw/var(--width));
        font-size: calc(21vw/var(--width));
    }
    .section3-wrap .left > ul li .con-left > p:nth-of-type(1) {
        font-size: calc(23vw/var(--width));
    }
    .section3-wrap .left > ul li .con-left > h3 {
        font-size: calc(73vw/var(--width));                                                                                                                                                                                                                                                                                                                                                                                                               
        margin-top: calc(23vw/var(--width));
        margin-bottom: calc(23vw/var(--width));
    }
    .section3-wrap .left > ul li .con-left > p:nth-of-type(2) {
        font-size: calc(28vw/var(--width));
    }
    .section3-wrap .left > ul li .con-right {
        width: 50%;
    }
    .section3-wrap .left > ul li .con-right img {
        width: 100%;
    }

}


.section4 {
    margin-top: calc(400vw/var(--width));
}
.section4 .swiper-slide {
    display: flex;
    margin-bottom: calc(300vw/var(--width));
}
.section4 .swiper-slide:nth-child(2n) {
    flex-direction: row-reverse;
}
.section4 .swiper-slide .left {
    width: 36.5%;
    padding-top: calc(140vw/var(--width));
    padding-left: calc(60vw/var(--width));
    /* background-color: #e9e9e9; */
}
.section4 .swiper-slide .left .left-wrap > p:nth-of-type(1) {
    font-size: calc(16vw/var(--width));
}
.section4 .swiper-slide .left .left-wrap > h3 {
    font-family: var(--subFont);
    font-size: calc(33vw/var(--width));
    margin-top: calc(27vw/var(--width));
}
.section4 .swiper-slide .left .left-wrap > p:nth-of-type(2) {
    font-size: calc(21vw/var(--width));
    margin-top: calc(27vw/var(--width));
    line-height: 1.5em;
}
.section4 .swiper-slide .left .left-wrap > p:nth-of-type(3) {
    font-size: calc(19vw/var(--width));
    margin-top: calc(66vw/var(--width));
    display: flex;
    gap: calc(25vw/var(--width));
}

.section4 .swiper-slide .right {
    width: 63.5%;
    border-radius: calc(25vw/var(--width));
    overflow: hidden;
}
.section4 .swiper-slide .right img {
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 1100px) {
    .section4 {
        margin-top: calc(200vw/var(--width));
    }
    .section4 .swiper-slide {
        flex-direction: column;
        gap: calc(30vw/var(--width));
    }
    .section4 .swiper-slide:nth-child(2n) {
        flex-direction: column;
    }
    .section4 .swiper-slide:nth-child(2n) .left {
        justify-content: flex-end;
    }
    .section4 .swiper-slide .left {
        width: 100%;
        padding-left: 0;
    }
    .section4 .swiper-slide .left-wrap {
        text-align: center;
    }
    .section4 .swiper-slide .left .left-wrap > p:nth-of-type(1) {
        font-size: calc(23vw/var(--width));
    }
    .section4 .swiper-slide .left .left-wrap > h3 {
        font-size: calc(42vw/var(--width));
    }
    .section4 .swiper-slide .left .left-wrap > p:nth-of-type(2) {
        font-size: calc(32vw/var(--width));
    }
    .section4 .swiper-slide .left .left-wrap > p:nth-of-type(3) {
        justify-content: center;
        font-size: calc(28vw/var(--width));
    }
    .section4 .swiper-slide .right {
        width: 100%;
        text-align: center;
    }
    .section4 .swiper-slide .right img {
        width: 90%;
        height: auto;
        border-radius: calc(25vw/var(--width));
    }
}

@keyframes fade {
    0% {
      filter:blur(15px);
      opacity:0;
    }
    50% {
      filter:blur(10px);
      opacity:0.9;
    }
    100% {
      filter:blur(0px);
      opacity:1;
    }  
}

#bone {
    position: relative;
    overflow-x: hidden;
    width: 100%;
    margin-bottom: -5px;
}
#bone video {
    width: 100%;
    -webkit-mask-image: -webkit-radial-gradient(white, black);    
    -webkit-backface-visibility: hidden;    
    -moz-backface-visibility: hidden;
}
#bone p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
    font-size: 20px;
    text-align: center;
    line-height: 1.8;
}
#bone p span {
    font-weight: 700;
}
#bone p strong {
    font-size: 45px;
    opacity: 0;
}
[data-aos="fade-blur"] {
    &.aos-animate {
        animation: fade 800ms 500ms ease-in-out forwards;
    }
}

@media screen and (max-width: 1100px) {
    #bone video {
        width: 200%;
        transform: translateX(-25%);
    }
    #bone p {
        font-size: 2.7vw;
    }
    #bone p strong {
        font-size: 6vw;
    }
}


.section5 {
    padding-top: calc(160vw/var(--width));
}
.section5 .graft-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.section5 .graft-wrap > div {
    width: calc(1076vw/var(--width));
    background: url("../img/section/5/boneGraft.png") no-repeat center calc(-40vw/var(--width)) / cover;
    padding-bottom: calc(640vw/var(--width));
}
.section5 .graft-wrap > div > h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(30vw/var(--width));
}
.section5 .graft-wrap > div > h2 span:nth-child(1) {
    font-size: calc(16vw/var(--width));
}
.section5 .graft-wrap > div > h2 span:nth-child(2) {
    font-family: var(--subFont);
    font-size: calc(70vw/var(--width));
}
.section5 .graft-wrap > div > p {
    margin-top: calc(52vw/var(--width));
    line-height: 1.5em;
    font-size: calc(19vw/var(--width));
    text-align: center;
}
.section5 .graft-wrap > ul {
    width: calc(888vw/var(--width));
}
.section5 .graft-wrap > ul li {
    border-bottom: 1px solid #d0d0d0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s;
}
.section5 .graft-wrap > ul li:hover p:nth-child(1) {
    background-color: #e0e0e0;
}
.section5 .graft-wrap > ul li:hover > p:nth-child(1) span {
    color: var(--gray);
}
.section5 .graft-wrap > ul li:nth-child(1) {
    border-top: 1px solid #d0d0d0;
}
.section5 .graft-wrap > ul li > p:nth-child(1) {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    gap: calc(5vw/var(--width));
    padding: calc(32vw/var(--width)) 0;
    font-size: calc(21vw/var(--width));
}
.section5 .graft-wrap > ul li > p:nth-child(1) span {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);

    color: #d0d0d0;
    font-size: calc(40vw/var(--width));
    transition: all 0.4s;
}

.section5 .graft-wrap > ul li .detailCon{
    display: none;
    padding: calc(120vw/var(--width)) calc(20vw/var(--width));    
}
.section5 .graft-wrap > ul li .detailCon img {
    width: 100%;
}

@media screen and (max-width: 1100px) {
    .section5 .graft-wrap > div > h2 span:nth-child(1) {
        font-size: calc(25vw/var(--width));
    }
    .section5 .graft-wrap > div > h2 span:nth-child(2) {
        font-size: calc(90vw/var(--width));
    }
    .section5 .graft-wrap > div > p {
        font-size: calc(28vw/var(--width));
    }
    .section5 .graft-wrap > div {
        width: 90%;
        padding-bottom: calc(470vw/var(--width));
    }
    .section5 .graft-wrap > ul {
        width: 80%;
    }
    .section5 .graft-wrap > ul li > p:nth-child(1) {
        font-size: calc(30vw/var(--width));
    }
}


#trans {
    margin-top: calc(300vw/var(--width));
}
#trans article:first-child {
    width: 100%;
    height: calc(558vw/var(--width));
    background: url("../img/section/trans/bg.jpg") no-repeat center center / cover;
    background-attachment: fixed;
}
#trans article:last-child {
    padding: 250px 0;
}
#trans article h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.7;
}
#trans article h2 strong {
    font-family: var(--subFont);
    font-weight: 400;
    display: block;
    font-size: 45px;
    text-shadow: 13px 13px 13px rgba(126,126,126,0.33);
}
#trans article .line {
    height: 270px;
    padding: 30px 0;
}
#trans article .line span {
    display: block;
    margin: 0 auto;
    width: 2px;
    height: 100%;
    background: #e4e4e4;
    transform-origin: top;
    transition: all .8s ease-in-out;
}
#trans article > p {
    font-size: 16px;
    text-align: center;
    line-height: 2;
}
#trans article > p span {
    font-size: 20px;
}
[data-aos="line"] {
    transform: scaleY(0);
    transition-property: transform;
    &.aos-animate {
        transform: scaleY(1);
    }
}

@media screen and (max-width: 1100px) {
    #trans article:first-child {
        background-attachment: scroll;
    }
    #trans article:last-child {
        padding: 33vw 0;
    }
    #trans article h2 {
        font-size: 3.8vw;
    }
    #trans article h2 strong {
        font-size: 6vw;
    }
    #trans article .line {
        height: 38.33vw;
        padding: 5vw 0;
    }
    #trans article .line span {
        width: 0.2vw;
    }
    #trans article > p {
        font-size: 2.6vw;
        line-height: 1.6;
    }
    #trans article > p span {
        font-size: 3vw;
        display: inline-block;
        margin-bottom: 1.85vw;
    }
}


#slide ul {
    position: relative;
    width: 100%;
    height: 100vh;
}
#slide ul li {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#slide ul li:nth-child(1) {
    background: url('../img/section/slide/bg_1.jpg') no-repeat center center / cover;
    z-index: 4;
}
#slide ul li:nth-child(2) {
    background: url('../img/section/slide/bg_2.jpg') no-repeat center center / cover;
    z-index: 3;
}
#slide ul li:nth-child(3) {
    background: url('../img/section/slide/bg_3.jpg') no-repeat center center / cover;
    z-index: 2;
}
#slide ul li:nth-child(4) {
    background: url('../img/section/slide/bg_4.jpg') no-repeat center center / cover;
    z-index: 1;
}
#slide ul li p {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
    font-weight: bold;
    color: #fff;
}

@media screen and (max-width: 1100px) {
    #slide ul li p {
        font-size: 6.5vw;
    }
}


#graftImplant {
    position: relative;
}
#graftImplant article {
    display: flex;
}
#graftImplant article > div {
    width: 50%;
    overflow: hidden;
}
#graftImplant article > div h3 {
    font-size: 2.34vw;
    font-weight: 400;
}
#graftImplant article > div p {
    font-size: 1.04vw;
}
#graftImplant article .text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#graftImplant article .text h3 {
    width: 31.4vw;
    line-height: 1.3;
}
#graftImplant article .text p {
    margin-top: 40px;
}

#graftImplant .line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 78%;
    background: #e4e4e4;
}

@media screen and (max-width: 1100px) {
    #graftImplant article {
        flex-direction: column;
    }
    #graftImplant article > div {
        width: 100%;
    }
    #graftImplant article > div h3 {
        font-size: 5.6vw;
    }
    #graftImplant article > div p {
        font-size: 2.6vw;
    }
    #graftImplant article img {
        width: 100%;
    }
    #graftImplant article:first-child {
        padding-bottom: 29.62vw;
    }
    #graftImplant article .text {
        padding: 20vw 0;
    }
    #graftImplant article .text h3 {
        text-align: center;
        width: 100%;
        line-height: 1.4;
    }
    #graftImplant article .text h3 p {
        margin-top: 60px;
    }
    #graftImplant article.last .text {
        height: 100%;
    }
    #graftImplant article h2 {
        font-size: 7.4vw;
    }
    #graftImplant article h2 span {
        letter-spacing: 0.2vw;
        font-size: 2.8vw;
    }
    #graftImplant .line {
        display: none;
    }
}


.section10 {
    height: 100dvh;
    height: calc(830vw/var(--width));
    margin-top: calc(300vw/var(--width));
}
.section10-wrap {
    width: 100%;
    height: 100%;
    background: url("../img/section/10/bg.jpg") no-repeat center center / cover;
    background-attachment: fixed;
    position: relative;
}
.section10-wrap .title {
    position: absolute;
    left: 24%;
    top: 28%;
    display: flex;
    flex-direction: column;
    gap: calc(20vw/var(--width));
    font-size: calc(40vw/var(--width));
    font-family: var(--subFont);
}
.section10-wrap .title span:nth-child(2) {
    color: black;
}
.section10-wrap .title span strong {
    border-bottom: 2px solid black;
    font-weight: 300;
    color: inherit;
    display: inline-block;
}
.section10-wrap > p {
    position: absolute;
    left: 50%;
    bottom: 0;
}
.section10-wrap > p img {
    width: calc(443vw/var(--width));
}
@media screen and (max-width: 1100px) {
    .section10-wrap {
        background-attachment: scroll;
    }
    .section10-wrap .title {
        left: 6%;
    }
}


.addGradient {
    width: 100%;
    height: calc(400vw/var(--width));
    background: linear-gradient(180deg, #fff, #f5f5f5);
}


.section11 {
    width: 100%;
    height: 100vh;
}
.section11-wrap {
    width: 100%;
    height: 100%;
    background: url("../img/section/11/bg.jpg") no-repeat center top / cover;
    position: relative;
}
.section11-wrap .title {
    display: flex;
    flex-direction: column;
    gap: calc(14vw/var(--width));
    align-items: center;
    position: absolute;
    left: 50%;
    top: 36%;
    transform: translateX(-50%);
}
.section11-wrap .title span {
    &:nth-child(1) {
        font-size: calc(18vw/var(--width));
    }
    &:nth-child(2) {
        font-size: calc(25vw/var(--width));
    }
    &:nth-child(3) {
        font-family: var(--subFont);
        font-size: calc(51vw/var(--width));
        margin-top: calc(10vw/var(--width));
    }
}

@media screen and (max-width: 1100px) {
    .section11-wrap .title {
        width: 80%;
        gap: calc(28vw/var(--width));
    }
    .section11-wrap .title span {
        &:nth-child(1) {
            font-size: calc(32vw/var(--width));
        }
        &:nth-child(2) {
            font-size: calc(50vw/var(--width));
        }
        &:nth-child(3) {
            font-size: calc(70vw/var(--width));
        }
    }
}


.section_last {
    width: 100%;
    height: calc(818vw/var(--width));
    position: relative;
    margin-top: calc(400vw/var(--width));
}
.section_last .map-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.section_last .map-wrap #map {
    width: 100%;
    height: 100%;
}

.section_last .info-wrap {
    width: 50%;
    height: 100%;
    background-color: rgba(33, 33, 33, 0.9);

    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
}
.section_last .info {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: calc(460vw/var(--width));
    height: 100%;
}
.section_last .info > h3 {
    font-family: var(--subFont);
    font-size: calc(51vw/var(--width));
    color: white;
}
.section_last .info > ul {
    display: flex;
    width: 100%;
    margin-top: calc(50vw/var(--width));
    margin-bottom: calc(68vw/var(--width));
}
.section_last .info > ul li {
    width: 50%;
    text-align: center;
    transition: all 0.4s;
}
.section_last .info > ul li:nth-child(1) {
    background-color: rgba(128, 128, 128, 0.5);
}
.section_last .info > ul li:nth-child(2) {
    background-color: rgba(255, 255, 255, 0.5);
}
.section_last .info > ul li:nth-child(1):hover {
    background-color: rgba(196, 196, 196, 0.5);
}
.section_last .info > ul li:nth-child(2):hover {
    background-color: rgba(255, 255, 255, 0.8);
}
.section_last .info > ul li a {
    color: white;
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: calc(20vw/var(--width)) 0;
    box-sizing: border-box;
    transition: all 0.4s;
}
.section_last .info > ul li a:hover {
    color: var(--mainColor);
}
.section_last .info > ul li:nth-child(1) a:hover {
    color: black;
}
.section_last .info > h4 {
    width: 100%;
    font-size: calc(30vw/var(--width));
    font-weight: bold;
    color: var(--mainColor);
    border-bottom: 2px solid var(--mainColor);
    padding-bottom: calc(5vw/var(--width));
    margin-bottom: calc(30vw/var(--width));
}
.section_last .info > div {
    display: flex;
    width: 100%;
}
.section_last .info > div > p {
    width: 10.8%;
    text-align: center;
}
.section_last .info > div > p svg {
    width: calc(26vw/var(--width));
}
.section_last .info > div > ul {
    width: 89.2%;
}
.section_last .info > div > ul * {
    color: white;
    font-size: calc(20vw/var(--width));
}
.section_last .info > div:nth-of-type(2) {
    margin: calc(20vw/var(--width)) 0;
}
.section_last .info > div:nth-of-type(2) ul li a {
    font-size: calc(33vw/var(--width));
    font-weight: bold;
    color: var(--mainColor);
}
.section_last .info > div:nth-of-type(3) ul li {
    display: flex;
    margin-bottom: calc(7vw/var(--width));
}
.section_last .info > div:nth-of-type(3) ul li p:nth-child(1) {
    width: calc(90vw/var(--width));
}
.section_last .info > div:nth-of-type(3) ul li p:nth-child(2) {
    font-size: calc(19vw/var(--width));
    color: #bdbdbd;
}
@media screen and (max-width: 1100px) {
    .section_last {
        height: auto;
    }
    .section_last .info-wrap {
        width: 100%;
        position: static;
        /* padding: calc(50vw/var(--width)); */
        height: calc(800vw/var(--width));
    }
    .section_last .info {
        width: 60%;
    }
    .section_last .info > h4 {
        font-size: calc(42vw/var(--width));
    }
    .section_last .info > div > p svg {
        width: calc(40vw/var(--width));
    }
    .section_last .info > div > ul * {
        font-size: calc(30vw/var(--width));
    }
    .section_last .info > div:nth-of-type(2) ul li a {
        font-size: calc(42vw/var(--width));
    }
    .section_last .info > div:nth-of-type(3) ul li {
        margin-bottom: calc(15vw/var(--width));
    }
    .section_last .info > div:nth-of-type(3) ul li p:nth-child(1) {
        width: calc(160vw/var(--width));
    }
    .section_last .info > div:nth-of-type(3) ul li p:nth-child(2) {
        font-size: calc(27vw/var(--width));
    }
    .section_last .map-wrap {
        position: static;
        height: calc(800vw/var(--width));
    }

    [data-aos="fade-blur"].aos-animate {
        animation: fade 800ms 500ms ease-in-out forwards;
    }

    [data-aos="line"] {
        transform: scaleY(0);
        transition-property: transform;
    }
    [data-aos="line"].aos-animate {
        transform: scaleY(1);
    }
}



#footer {
    background-color: #383838;
    padding-top: calc(10vw/var(--width));
}
#footer .footer-wrap {
    width: calc(1500vw/var(--width));
    margin: 0 auto;
    padding-top: calc(50vw/var(--width));
    padding-bottom: calc(125vw/var(--width));
    display: flex;
    gap: calc(40vw/var(--width));
    border-top: 1px solid #4e4e4e;
}
#footer .footer-wrap .footer-logo svg {
    width: calc(143vw/var(--width));
}
#footer .footer-wrap .footer-info p {
    color: #bdbdbd;
    font-size: calc(16vw/var(--width));
    margin-top: calc(10vw/var(--width));
}
#footer .footer-wrap .footer-info p:nth-child(1) {
    margin-top: 0;
}
#footer .footer-wrap .footer-info p:nth-child(3) {
    margin-top: calc(24vw/var(--width));
}

#footer .maker {
    font-family: var(--mainFont);
    color: white;
    transition: all 0.4s;
}
#footer .maker:hover {
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.7), 0 0 8px rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 1100px) {
    #footer .footer-wrap {
        width: 80%;
        flex-direction: column;
        align-items: center;
    }
    #footer .footer-wrap .footer-info {
        text-align: center;
    }
    #footer .footer-wrap .footer-logo svg {
        width: calc(243vw/var(--width));
    }
    #footer .footer-wrap .footer-info p {
        font-size: calc(23vw/var(--width));
    }
}