.header .wrapper ul li.home,
.header .wrapper ul li.solutions {
    color: #4D4D4D;
}
.visual {
    position: relative;
    padding-top: 90px;
    height: 998px;
}
.visual::before {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -100;
    width: 100%;
    height: 100%;
    background-color: var(--bgorange);
    content: "";
}
.visual::after {
    position: absolute;
    right: 12%;
    bottom: 0;
    z-index: -10;
    width: 481px;
    height: 481px;
    background: url(../img/patientdata/visual_bg01.png) no-repeat center center / contain;
    content: "";
}
.visual .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 95px;
}
.visual .wrapper .data_visual_photo_m {
    display: none;
}
.visual .wrapper .data_visual_photo {
    position: relative;
    width: 503px;
    height: 609px;
    border-radius: 30px;
    overflow: hidden;
    margin-right: 38px;
}
.visual .wrapper .data_visual_photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.visual .visial_title h2 {
    position: relative;
    font-size: 67px;
    margin-bottom: 29px;
    color: var(--mainbrown);
}
.visual .visial_title h2 em {
    color: var(--mainorange);
}
.visual .visial_title h2::before {
    position: absolute;
    left: -70px;
    top: -90px;
    z-index: -10;
    width: 206px;
    height: 204px;
    background: url(../img/patientdata/visual_bg02.png) no-repeat center center / contain;
    content: "";
}
.visual .visial_title p {
    font-size: 18px;
    line-height: 1.66;
    color: #7F756F;
    margin-bottom: 75px;
}
.visual .wrapper .visial_title .visual_input_box {
    position: relative;
    width: fit-content;
    margin-bottom: 29px;
}
.visual .wrapper .visial_title .visual_input_box input {
    font-size: 15px;
    width: 466px;
    height: 61px;
    padding-left: 36px;
    border-radius: 100px;
    border: 0px;
    background-color: var(--white);
    color: #333333;
    box-shadow: -12px 16px 45px rgba(239, 125, 11, 0.1), -50px 66px 82px rgba(239, 125, 11, 0.1);
}
.visual .wrapper .visial_title .visual_input_box button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 17px;
    width: 174px;
    height: 53px;
    border-radius: 100px;
    background-color: var(--mainorange);
    color: var(--white);
}
.visual .wrapper .visial_title .visual_input_box button.disabled:hover {
  background-color: var(--mainorange);
}
.visual .wrapper .visial_title .visual_input_box button:hover {
    background-color: var(--hoverorange);
}
.visual .wrapper .visial_title .visual_input_box input::placeholder {
    color: #9A9A9A;
}
.visual .wrapper .visial_title .m_request_demo_btn {
    display: none;
}
.clinic {
    position: relative;
    color: var(--white);
}
.clinic::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bgorange);
    content: "";
}
.clinic .swiper {
    position: relative;
}
.clinic .swiper .swiper-wrapper {
    transition-timing-function: linear;
}
.clinic .swiper .swiper-wrapper .swiper-slide {
    position: relative;
    width: fit-content;
    height: fit-content;
    /* transition: 1.5s; */
    /* opacity: 0.25; */
}
.clinic .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .photo {
    opacity: 1;
}
.clinic .swiper .swiper-wrapper .swiper-slide .photo {
    width: 1140px;
    height: 490px;
    border-radius: 40px;
    overflow: hidden;
    opacity: 0.25;
    transition: 1.5s;
}
.clinic .swiper .swiper-wrapper .swiper-slide .photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    
}
.clinic .swiper .swiper-wrapper .swiper-slide p {
    position: absolute;
    left: 65px;
    top: 50px;
    font-size: 26px;
    line-height: 1.53;
}
.clinic .swiper .swiper-wrapper .swiper-slide .sub_txt {
    position: absolute;
    right: 65px;
    bottom: 50px;
    text-align: right;
}
.clinic .swiper .swiper-wrapper .swiper-slide .sub_txt span {
    display: block;
    font-size: 43px;
}
.clinic .swiper .swiper-wrapper .swiper-slide .sub_txt strong {
    display: block;
    font-size: 24px;
    color: #FFC890;
}
.clinic .swiper-prev,
.clinic .swiper-next {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 93px;
    height: 93px;
    z-index: 10;
    border-radius: 100%;
    background-color: rgba(255, 249, 245, 0.55);
    box-shadow: 0 2px 12px -4px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}
.clinic .swiper-prev {
    left: calc(50% - 570px);
    transform: translate(-50%, -50%);
}
.clinic .swiper-next {
    right: calc(50% - 570px);
    transform: translate(50%, -50%);
}
.clinic .swiper-prev::after {
    position: absolute;
    left: calc(50% - 2px);
    top: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 17px;
    background: url(../img/icon/clinic_swiper_prev.svg) no-repeat center center / contain;
    content: "";
}
.clinic .swiper-next::after {
    position: absolute;
    left: calc(50% + 2px);
    top: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 17px;
    background: url(../img/icon/clinic_swiper_next.svg) no-repeat center center / contain;
    content: "";
}
.clinic .swiper-prev:hover,
.clinic .swiper-next:hover {
    background-color: rgba(255, 249, 245, 1);
}

.data_effect {
    position: relative;
    padding: 192px 0 164px 0;
    overflow: hidden;
}
.data_effect::before {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -100;
    width: 100%;
    height: 100%;
    background-color: var(--bgorange);
    content: "";
}
.data_effect ul li {
    display: flex;
    align-items: center;
    min-height: 530px;
}
.data_effect ul li:nth-child(1) {
    padding-left: calc(50% - 600px);
}
.data_effect ul li .detail .e_ico {
    width: 53px;
    height: 53px;
    margin-bottom: 27px;
}
.data_effect ul li .detail .e_ico img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.data_effect ul li .detail h2 {
    font-size: 38px;
    color: #453E39;
    margin-bottom: 27px;
}
.data_effect ul li .detail h2 em {
    color: var(--mainorange);
}
.data_effect ul li .detail p {
    font-size: 17px;
    line-height: 1.58;
    color: #4C4C4C;
    width: 550px;
}
.data_effect ul li .detail {
    width: 550px;
}
.data_effect ul li .photo_r {
    position: relative;
    height: 530px;
    width: 100%;
    margin-left: 180px;
    overflow: hidden;
}
.data_effect ul li .photo_r::before {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -10;
    width: 300%;
    height: 100%;
    border-radius: 40px 0 0 40px;
    background: linear-gradient(45deg, rgba(177, 139, 103, 1), rgba(30, 18, 5, 1));
    content: "";
}
.data_effect ul li .photo_r .data_effect01_01 {
    position: absolute;
    top: 133px;
    left: 42px;
    width: 661px;
    height: 221px;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(250, 126, 0, 0.75);
}
.data_effect ul li .photo_r .data_effect01_02 {
    position: absolute;
    top: 69px;
    left: 200px;
    z-index: -5;
    width: 812px;
    height: 475px;
    border-radius: 20px;
}
.data_effect ul li .photo_l {
    position: relative;
    width: calc(50% - 110px);
    height: 530px;
    margin-right: 110px;
    overflow: hidden;
}
.data_effect ul li .photo_l::before {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -10;
    width: 300%;
    height: 100%;
    border-radius: 0 40px 40px 0;
    background: linear-gradient(-130deg, rgba(177, 139, 103, 1), rgba(30, 18, 5, 1));
    content: "";
}
.data_effect ul li .photo_l .data_effect02_01 {
    position: absolute;
    right: 36px;
    top: 48px;
    width: 411px;
    height: 373px;
    border-radius: 22px;
    box-shadow: 0 0 40px rgba(250, 126, 0, 0.75), 0 4px 4px rgba(0, 0, 0, 0.25);
}
.data_effect ul li .photo_l .data_effect02_02 {
    position: absolute;
    right: 110px;
    top: 215px;
    z-index: -5;
    width: 569px;
    height: 337px;
}

.data_effect ul li .photo_r .data_effect01_01 img,
.data_effect ul li .photo_r .data_effect01_02 img,
.data_effect ul li .photo_l .data_effect02_01 img,
.data_effect ul li .photo_l .data_effect02_02 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.achievement {
    position: relative;
    min-height: 835px;
    color: var(--white);
    padding: 202px 0 152px 0;
    overflow: hidden;
}
.achievement::before {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -100;
    width: 100%;
    height: 100%;
    background-color: var(--mainorange);
    content: "";
}
.achievement::after {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1768px;
    height: 1146px;
    z-index: -10;
    background: url(../img/patientdata/achievement_bg.png) no-repeat center center / contain;
    content: "";
}
.achievement .wrapper h2 {
    font-size: 52px;
    text-align: center;
    margin-bottom: 58px;
}
.achievement .wrapper .list {
    display: flex;
    align-items: center;
}
.achievement .wrapper .list > li {
    width: 33.33%;
    min-height: 295px;
    margin-right: 16px;
    padding: 35px 0;
    border-radius: 24px;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 4px 40px rgba(248, 129, 10, 1), inset 2px -4px 14px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(115px);
    -webkit-backdrop-filter: blur(115px);
}
.achievement .wrapper .list > li:last-child {
    margin-right: 0;
}
.achievement .wrapper .list > li h3 {
    font-size: 29px;
    text-align: center;
    margin-bottom: 19px;
}
.achievement .wrapper .list > li .detail {
    padding: 0 30px 0 43px;
}
.achievement .wrapper .list > li .detail li {
    position: relative;
    font-size: 16px;
    line-height: 1.5;
    padding-left: 24px;
    margin-bottom: 13px;
}
.achievement .wrapper .list > li .detail li::before {
    position: absolute;
    left: 0;
    top: 4px;
    width: 13px;
    height: 13px;
    background: url(../img/icon/check_circle_w.svg) no-repeat center center / contain;
    content: "";
}
.achievement .wrapper .list > li .detail li:last-child {
    margin-bottom: 0;
}
@media screen and (max-width: 1280px) {
    .visual {
        height: auto;
    }
    .visual::after {
        top: 200px;
        bottom: auto;
    }
    .visual .wrapper .visial_title {
        padding-bottom: 150px;
        width: 100%;
    }
    .visual .wrapper .data_visual_photo {
        display: none;
    }
    .visual .wrapper .data_visual_photo_m {
        display: block;
        width: 100%;
        height: 500px;
        border-radius: 30px;
        overflow: hidden;
        margin-bottom: 50px;
    }
    .visual .wrapper .data_visual_photo_m img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .clinic .swiper-prev,
    .clinic .swiper-next  {
        top: auto;
        bottom: -100px;
        z-index: 200;
        background-color: var(--white);
    }
    .clinic .swiper-prev {
        left: calc(50% - 70px);
    }
    .clinic .swiper-next {
        right: calc(50% - 70px);
    }
    .clinic .swiper .swiper-wrapper .swiper-slide {
        width: calc(100% - 120px);
    }
    .clinic .swiper .swiper-wrapper .swiper-slide .photo {
        width: 100%;
        height: 490px;
    }
    .clinic .swiper .swiper-wrapper .swiper-slide .photo img {
        object-fit: cover;
    }
    .data_effect ul li {
        position: relative;
        align-items: flex-start;
        flex-direction: column;
        padding: 0 60px;
    }
    .data_effect ul li:nth-child(1) {
        padding: 0 60px;
    }
    .data_effect ul li .detail {
        margin-bottom: 50px;
    }
    .data_effect ul li .photo_r {
        width: 100%;
        margin: 0 0 150px 0;
    }
    .data_effect ul li .photo_r::before,
    .data_effect ul li .photo_l::before  {
        width: 100%;
        border-radius: 40px;
    }
    .data_effect ul li .photo_l {
        position: absolute;
        left: 60px;
        bottom: 0;
        width: calc(100% - 120px);
    }
    .data_effect ul li .detail_r {
        padding-bottom: 530px;
    }
    .data_effect ul li .photo_l .data_effect02_01 {
        right: calc(50% - 50px);
        transform: translate(50%, 0);
    }
    .data_effect ul li .photo_l .data_effect02_02 {
        right: calc(50% + 50px);
        transform: translate(50%, 0);
    }
    .achievement .wrapper .list {
        flex-direction: column;
    }
    .achievement .wrapper .list > li {
        width: 100%;
        min-height: auto;
        margin: 0 0 20px 0;
    }
}
@media screen and (max-width: 768px) {
    .visual .wrapper {
        padding-top: 10px;
    }
    .visual .wrapper .data_visual_photo_m {
        height: 317px;
        border-radius: 30px;
        margin-bottom: 33px;
    }
    .visual .wrapper .visial_title  {
        padding-bottom: 100px;
    }
    .visual .wrapper .visial_title h2 {
        font-size: 33px;
        margin-bottom: 11px;
    }
    .visual .wrapper .visial_title p {
        font-size: 15px;
        color: #2F2E2D;
        margin-bottom: 38px;
    }
    .visual .visial_title .visual_input_box {
        display: none;
    }
    .visual .wrapper .visial_title .m_request_demo_btn {
        display: block;
        font-size: 15px;
        color: var(--white);
        background-color: var(--mainorange);
        border-radius: 100px;
        min-width: 162px;
        line-height: 48px;
        cursor: pointer;
    }
    .clinic .swiper .swiper-wrapper .swiper-slide {
        width: calc(100% - 80px);
        /* transition: 1.5s; */
    }
    .clinic .swiper .swiper-wrapper .swiper-slide .photo {
        height: 406px;
    }
    .clinic .swiper .swiper-wrapper .swiper-slide p {
        font-size: 17px;
        left: 20px;
        top: 50px;
        width: calc(100% - 30px);
    }
    .clinic .swiper .swiper-wrapper .swiper-slide p br {
        display: none;
    }
    .clinic .swiper .swiper-wrapper .swiper-slide .sub_txt span {
        font-size: 20px;
    }
    .clinic .swiper .swiper-wrapper .swiper-slide .sub_txt strong {
        font-size: 15px;
    }
    .clinic .swiper .swiper-wrapper .swiper-slide .sub_txt {
        right: 20px;
        bottom: 50px;
    }
    .clinic .swiper-prev,
    .clinic .swiper-next  {
        width: 64px;
        height: 64px;
        bottom: -60px;
    }
    .clinic .swiper-prev {
        left: calc(50% - 40px);
    }
    .clinic .swiper-next {
        right: calc(50% - 40px);
    }
    .clinic .swiper-next::after,
    .clinic .swiper-prev::after {
        width: 6px;
        height: 10px;
    }
    .data_effect {
        padding: 100px 0;
    }
    .data_effect ul li {
        padding: 0 20px;
    }
    .data_effect ul li:nth-child(1) {
        padding: 0 20px;
    }
    .data_effect ul li .detail {
        width: 100%;
    }
    .data_effect ul li .detail h2 {
        font-size: 26px;
        margin-bottom: 21px;
    }
    .data_effect ul li .detail p {
        font-size: 16px;
        width: 100%;
    }
    .data_effect ul li .detail p br {
        display: none;
    }
    .data_effect ul li .photo_r {
        height: 287px;
    }
    .data_effect ul li .photo_l {
        left: 20px;
        width: calc(100% - 40px);
        height: 287px;
    }
    .data_effect ul li .detail {
        margin-bottom: 40px;
    }
    .data_effect ul li .detail_r {
        padding-bottom: 287px;
    }
    .data_effect ul li .photo_r .data_effect01_01 {
        top: 70px;
        left: 50%;
        transform: translate(-50%, 0);
        width: 309px;
        height: 105px;
    }
    .data_effect ul li .photo_r .data_effect01_02 {
        top: 40px;
        left: 70px;
        width: 390px;
        height: 228px;
    }
    .data_effect ul li .photo_l .data_effect02_01 {
        top: 20px;
        right: calc(50% - 40px);
        width: 230px;
        height: 208px;
    }
    .data_effect ul li .photo_l .data_effect02_02 {
        top: 150px;
        right: 50%;
        width: 266px;
        height: 160px;
    }
    .data_effect ul li .photo_r::before,
    .data_effect ul li .photo_l::before {
        border-radius: 15px;
    }
    .data_effect ul li .photo_r::before {
        background: linear-gradient(145deg, rgba(177, 139, 103, 1), rgba(30, 18, 5, 1));
    }
    .data_effect ul li .photo_l::before {
        background: linear-gradient(45deg, rgba(97, 90, 83, 1), rgba(178, 140, 130, 1));
    }
    .achievement {
        min-height: auto;
        padding: 80px 0;
    }
    .achievement .wrapper h2 {
        font-size: 27px;
        margin-bottom: 35px;
    }
    .achievement .wrapper .list > li {
        margin-bottom: 19px;
    }
    .achievement .wrapper .list > li h3 {
        font-size: 21px;
        margin-bottom: 14px;
    }
    .achievement .wrapper .list > li .detail li {
        font-size: 15px;
        padding-left: 24px;
        margin-bottom: 10px;
    }
}
