@charset "utf-8";
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

/* CSS reset */
*,
*:before,
*:after {
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

html,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
a,
blockquote,
th,
td,
footer {
    margin: 0;
    padding: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset,
images {
    border: 0;
}

input {
    margin: 0;
    padding: 0;
    border: none;
}

ol,
ul,
li {
    list-style: none;
}

img {
    vertical-align: middle;
}

a,
address {
    text-decoration: none;
    font-style: normal;
}

body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    letter-spacing: -0.03em;
    position: relative;
    font-family: 'Pretendard', sans-serif;
    word-break: keep-all;
}

header {
    position: fixed;
    z-index: 3;
    width: 100%;
    top: 0;
    transition: all .6s;
    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    -ms-transition: all .6s;
    -o-transition: all .6s;
}

header.fixed {
    background-color: #fff;
}

header.fixed #header-wrap #logo a {
    background-image: url(../images/logo_ov.png);
}

header #header-wrap {
    max-width: 1720px;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}

header #header-wrap #logo a {
    display: block;
    width: 210px;
    height: 40px;
    background-image: url(../images/logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    font-size: 0;
    position: relative;
    z-index: 11;
}

header #gnb {
    margin-left: auto;
    max-width: 320px;
    width: 100%;
    height: 100%;
}

header #gnb>ul {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    position: relative;
}

header #gnb>ul>li {
    position: relative;
    height: 100%;
}

header #gnb>ul>li>a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    letter-spacing: normal;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    height: 100%;
    box-sizing: border-box;
    padding-left: 30px;
    padding-right: 10px;
    position: relative;
}

header #gnb>ul>li>a:after {
    content: "";
    width: 6px;
    height: 6px;
    display: block;
    position: absolute;
    border: solid;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    right: -13px;
}

header #gnb>ul>li:last-child>a:after {
    display: none;
}

header #gnb ul li .sub-menu {
    width: 100%;
    background-color: #fff;
    box-sizing: content-box;
    padding: 12px 20px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    position: absolute;
    top: 80px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.25);
}

header #gnb ul li .sub-menu li {
    text-align: center;
    width: 100%;
}

header #gnb ul li .sub-menu>li>a {
    color: #666;
    padding: 4px 0;
    line-height: 20px;
    display: block;
    font-size: 14px;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

footer {
    position: relative;
    height: 240px;
    background-color: #000;
}

footer #footer-wrap {
    max-width: 1300px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

footer #footer-wrap>div {
    margin-left: 230px;
}

footer #footer-wrap .footer-nav {
    display: flex;
    margin-bottom: 10px;
}

footer #footer-wrap .footer-nav a,
footer #footer-wrap .footer-nav span {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    display: block;
    margin-right: 30px;
}

footer #footer-wrap address {
    color: #888;
    font-size: 14px;
    line-height: 20px;
}

footer #footer-wrap address div:nth-child(1) span {
    margin-right: 10px;
}

#container {
    overflow: hidden;
}

#container .section .inner {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
}

#container .section .inner .title p {
    font-size: 42px;
    font-weight: 700;
    line-height: 54px;
}

#container .section .inner .title span {
    font-size: 18px;
    display: inline-block;
    line-height: 30px;
}

@keyframes btn_circle {
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
}

#container #main {
    color: #fff;
}

#container #main .floating {
    position: fixed;
    right: 5%;
    bottom: 5%;
    z-index: 10;
    transition: all .3s;
}

#container #main .section {
    width: 100%;
    height: 100vh;
}

#container #main .section01 {
    position: relative;
}

#container #main .section01 .inner #mvis-slider {
    width: 100%;
    height: 100vh;
    position: relative;
}

#container #main .section01 .inner .swiper-slide {
    position: relative;
    width: 100%;
    height: 100vh;
}

#container #main .section01 .inner .swiper-slide .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
}

#container #main .section01 .inner .swiper-slide .bg img,
#container #main .section01 .inner .swiper-slide .bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#container #main .section01 .inner .txt-box {
    max-width: 1300px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    box-sizing: border-box;
    z-index: 1;
}

#container #main .section01 .inner .txt-box p {
    font-size: 56px;
    line-height: 68px;
    color: #fff;
    font-weight: 700;
}

#container #main .section01 .inner .txt-box span {
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    display: block;
    margin: 20px 0 70px;
}

#container #main .section01 .inner .txt-box a {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    display: inline-block;
    color: #fff;
    border-bottom: 1px solid #fff;
    margin-top: 70px;
}

#container #main .section01 .inner .swiper-slide .txt-box p,
#container #main .section01 .inner .swiper-slide .txt-box span,
#container #main .section01 .inner .swiper-slide .txt-box a {
    transform: translateY(30px);
    opacity: 0;
}

#container #main .section01 .inner .swiper-slide-active .txt-box p,
#container #main .section01 .inner .swiper-slide-active .txt-box span,
#container #main .section01 .inner .swiper-slide-active .txt-box a {
    transform: translateY(0);
    opacity: 1;
    transition: all .8s 1.2s;
}

#container #main .section01 .inner .swiper-slide-active .txt-box span,
#container #main .section01 .inner .swiper-slide-active .txt-box a {
    transition-delay: 1.4s;
}

#container #main .section01 .inner .mvis-arrow {
    background-color: transparent;
    opacity: 1;
    width: auto;
    font-size: 12px;
    font-weight: 700;
    line-height: 24px;
    color: #fff;
    position: absolute;
    z-index: 5;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    outline: none;
}

#container #main .section01 .inner .mvis-arrow:after {
    content: "";
    width: 8px;
    height: 8px;
    display: block;
    border: solid #fff;
    border-width: 0 1px 1px 0px;
    position: absolute;
    top: calc(50% - 4px);
}

#container #main .section01 .inner .mvis-prev {
    padding-left: 15px;
    left: 100px;
}

#container #main .section01 .inner .mvis-next {
    padding-right: 15px;
    right: 100px;
}

#container #main .section01 .inner .mvis-prev:after {
    left: 0;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
}

#container #main .section01 .inner .mvis-next:after {
    right: 0;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}

#container #main .section01 .scroll {
    position: absolute;
    color: #fff;
    width: 86px;
    height: 38px;
    bottom: 50px;
    left: calc(50% - 43px);
    z-index: 1;
    font-size: 12px;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
}

#container #main .section01 .scroll:before,
#container #main .section01 .scroll:after {
    content: "";
    width: 6px;
    height: 6px;
    display: block;
    border: solid #fff;
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    position: absolute;
    left: calc(50% - 3px);
    bottom: 20px;
    opacity: 0;
}

#container #main .section01 .scroll:before {
    animation: scroll_down infinite 1.5s;
    -webkit-animation: scroll_down infinite 1.5s;
}

#container #main .section01 .scroll:after {
    animation: scroll_down infinite 1.5s .35s;
    -webkit-animation: scroll_down infinite 1.5s .35s;
}

@keyframes scroll_down {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        bottom: 0;
    }
}

#container #main .section02 {}

#container #main .section02 .bg {
    overflow: hidden;
    width: 100%;
    height: 100vh;
    position: relative;
}

#container #main .section02 .bg img {
    width: 110vw;
    height: 110vh;
    object-fit: cover;
    position: absolute;
    right: 0;
    top: 0;
}

#container #main .section02 .inner {
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

#container #main .section02 .inner .txt-box .txt {
    font-weight: 700;
    font-size: 56px;
    line-height: 68px;
    color: #888;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

#container #main .section02 .inner .txt-box .txt p {
    white-space: nowrap;
}

#container #main .section02 .inner .txt-box .txt.fill {
    color: #fff;
    z-index: 1;
}

#container #main .section02 .inner .txt-box .txt.fill p {
    overflow: hidden;
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

#container #main .section03 {
    background-color: #000;
    height: auto;
}

#container #main .section03 .inner {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 150px 0 130px;
}

#container #main .section03 .inner .title {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto 3.64vw;
    text-align: center;
}

#container #main .section03 .inner .title p {
    margin-bottom: 15px;
}

#container #main .section03 .inner .title span strong {
    color: #EC008C;
}

#container .section .inner #about-slider .splide__slide {
    width: 1300px;
    height: 470px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#container .section .inner #about-slider .about01 {
    background-image: url(../main/images/about01.jpg);
}

#container .section .inner #about-slider .about02 {
    background-image: url(../main/images/about02.jpg);
}

#container .section .inner #about-slider .about03 {
    background-image: url(../main/images/about03.jpg);
}

#container .section .inner #about-slider .about04 {
    background-image: url(../main/images/about04.jpg);
}


#container .section .inner #about-slider .splide__slide .txt-box {
    max-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#container .section .inner #about-slider .splide__slide .txt-box p {
    font-size: 32px;
    font-weight: 700;
    line-height: 44px;
    margin-bottom: 15px;
}

#container .section .inner #about-slider .splide__slide .txt-box span {
    font-size: 18px;
    line-height: 30px;
}

#container .section .inner #about-slider .splide__slide .txt-box img,
#container .section .inner #about-slider .splide__slide .txt-box p,
#container .section .inner #about-slider .splide__slide .txt-box span {
    opacity: 0;
    transform: translateY(30px);
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transition: all .6s;
    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    -ms-transition: all .6s;
    -o-transition: all .6s;
}

#container .section .inner #about-slider .splide__slide.is-active .txt-box img,
#container .section .inner #about-slider .splide__slide.is-active .txt-box p,
#container .section .inner #about-slider .splide__slide.is-active .txt-box span {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}

#container .section .inner #about-slider .splide__slide.is-active .txt-box p,
#container .section .inner #about-slider .splide__slide.is-active .txt-box span {
    transition-delay: .3s;
}

#container .section .inner #about-slider .splide__arrow {
    background-color: transparent;
    width: 18px;
    height: 18px;
    border: solid #fff;
    border-width: 0 1px 1px 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    opacity: 1;
    top: calc(50% - 9px);
}

#container .section .inner #about-slider .splide__arrow--prev {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    left: calc(50% - 730px);
}

#container .section .inner #about-slider .splide__arrow--next {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    right: calc(50% - 730px);
}

#container #main .section04 {
    position: relative;
    background-color: #1e1e1e;
    max-height: 940px;
    display: flex;
    align-items: center;
}

#container #main .section04 .inner .title {
    margin-bottom: 70px;
}

#container #main .section04 .inner .title p {
    margin-bottom: 15px;
}

#container #main .section04 .inner .process-wrap {
    position: relative;
    height: 530px;
    z-index: 1;
}

#container #main .section04 .inner .process-tab {
    padding: 35px 0;
}

#container #main .section04 .inner .process-tab li {
    width: 480px;
    height: 100px;
    background: #222;
    box-shadow: -3px 4px 17px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 40px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    cursor: pointer;
    transition: transform .6s;
    -webkit-transition: transform .6s;
    -moz-transition: transform .6s;
    -ms-transition: transform .6s;
    -o-transition: transform .6s;
}

#container #main .section04 .inner .process-tab li:after {
    content: "";
    width: 18px;
    height: 18px;
    border: solid #fff;
    border-width: 0 1px 1px 0;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    display: block;
    position: absolute;
    right: 40px;
    top: calc(50% - 9px);
}

#container #main .section04 .inner .process-tab li:last-child {
    margin-bottom: 0;
}

#container #main .section04 .inner .process-tab li.active {
    background: #EC008C;
    transform: translateX(45px);
    -webkit-transform: translateX(45px);
    -moz-transform: translateX(45px);
    -ms-transform: translateX(45px);
    -o-transform: translateX(45px);
}

#container #main .section04 .inner .process-vis {
    width: 860px;
    height: 530px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

#container #main .section04 .inner .process-vis li {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    text-align: right;
    padding: 0 90px 35px 0;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    transition: all .6s;
    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    -ms-transition: all .6s;
    -o-transition: all .6s;
}

#container #main .section04 .inner .process-vis li.active {
    opacity: 1;
}

#container #main .section04 .inner .process-vis li:nth-child(1) {
    background-image: url(../main/images/process01.jpg);
}

#container #main .section04 .inner .process-vis li:nth-child(2) {
    background-image: url(../main/images/process02.jpg);
}

#container #main .section04 .inner .process-vis li:nth-child(3) {
    background-image: url(../main/images/process03.jpg);
}

#container #main .section04 .inner .process-vis li:nth-child(4) {
    background-image: url(../main/images/process04.jpg);
}

#container #main .section04 .inner .process-vis li p {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

#container #main .section04 .inner .process-vis li span {
    font-size: 18px;
    line-height: 30px;
}

#container #main .section05 {
    min-height: 640px;
    height: 33.3vw;
    background-color: #111;
    display: flex;
    align-items: center;
}

#container #main .section05 .inner {
    max-width: 100%;
}

#container #main .section05 .inner .title {
    margin-bottom: 70px;
    text-align: center;
}

#container #main .section05 .inner .title p {
    margin-bottom: 15px;
}

#container #main .section05 .inner #partner-list .splide__slide {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border: 1px solid #555;
}

#container #svis {
    width: 100%;
    height: 400px;
    background-attachment: scroll;
    background-position: center top;
    background-size: cover;
    margin-bottom: 150px;
}

#container.about #svis {
    background-image: url(../about/images/svis.jpg);
}

#container.slogan #svis {
    background-image: url(../about/images/svis.jpg);
}

#container.vision #svis {
    background-image: url(../about/images/svis.jpg);
}

#container.audit #svis {
    background-image: url(../services/images/svis.jpg);
}

#container.q-ustody #svis {
    background-image: url(../services/images/svis.jpg);
}

#container.q-wallet #svis {
    background-image: url(../services/images/svis.jpg);
}

#container.isms #svis {
    background-image: url(../services/images/svis.jpg);
}

#container.partners #svis {
    background-image: url(../partner/images/svis.jpg);
}

#container #svis .inner {
    max-width: 1300px;
    width: 100%;
    padding-top: 170px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#container #svis .inner .breadcrumb {
    display: flex;
    align-items: center;
}

#container #svis .inner .breadcrumb li {
    position: relative;
}

#container #svis .inner .breadcrumb li:after {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    display: block;
    background-color: #fff;
    position: absolute;
    right: 10px;
    top: calc(50% - 2px);
}

#container #svis .inner .breadcrumb li:last-child:after {
    display: none;
}

#container #svis .inner .breadcrumb li span {
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    display: block;
    margin-right: 12px;
    padding-right: 12px;
}

#container #svis .inner h2 {
    font-size: 56px;
    line-height: 68px;
    color: #FFFFFF;
    margin-top: 20px;
    word-break: keep-all;
}

#container.sub .section .inner p {
    color: #000;
    margin-bottom: 15px;
}

#container.sub .section .inner span {
    color: #555;
    font-size: 18px;
    line-height: 30px;
    word-break: keep-all;
}

#container.sub .section .inner .title {
    text-align: center;
}

#container.audit .section01 {
    margin-bottom: 100px;
}

#container.audit .section01 .inner .title {
    margin-bottom: 120px;
}

#container.audit .section01 .inner .audit-list li {
    max-width: 990px;
    width: 100%;
    height: 260px;
    display: flex;
    align-items: center;
    background-color: #fafafa;
    margin-bottom: 20px;
    padding-right: 40px;
    word-break: keep-all;
}

#container.audit .section01 .inner .audit-list li:nth-child(even) {
    margin-left: auto;
}

#container.audit .section01 .inner .audit-list li .icon {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    background-color: #fff;
    margin: 0 40px;
    flex: none;
}

#container.audit .section01 .inner .audit-list li p {
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
}

#container.audit .section02 {
    background-color: #FAFAFA;
    padding: 120px 0 140px;
}

#container.audit .section02 .inner .title {
    margin-bottom: 70px;
}

#container.audit .section02 .inner .process-list {
    display: flex;
    justify-content: space-between;
}

#container.audit .section02 .inner .process-list li {
    text-align: center;
    position: relative;
}

#container.audit .section02 .inner .process-list li:before,
#container.audit .section02 .inner .process-list li:after {
    content: "";
    width: 8px;
    height: 8px;
    display: block;
    border: solid #00B1B3;
    border-width: 2px 2px 0 0;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    position: absolute;
    top: 108px;
}

#container.audit .section02 .inner .process-list li:before {
    left: 238px;
}

#container.audit .section02 .inner .process-list li:after {
    left: 242px;
}

#container.audit .section02 .inner .process-list li:last-child:before,
#container.audit .section02 .inner .process-list li:last-child:after {
    display: none;
}

#container.audit .section02 .inner .process-list li .icon {
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    box-shadow: 0px 7px 21px rgba(0, 177, 179, 0.1);
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

#container.audit .section02 .inner .process-list li p {
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    color: #00B1B3;
    margin-top: 36px;
}

#container.q-ustody .section01 {
    margin-bottom: 150px;
}

#container.q-ustody .section01 .inner .title {
    margin-bottom: 120px;
}

#container.q-ustody .section01 .inner .q-ustody-list li {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
}

#container.q-ustody .section01 .inner .q-ustody-list li:last-child {
    margin-bottom: 0;
}

#container.q-ustody .section01 .inner .q-ustody-list li:nth-child(even) img {
    order: 1;
    margin-left: auto;
}

#container.q-ustody .section01 .inner .q-ustody-list li div {
    margin-left: 110px;
}

#container.q-ustody .section01 .inner .q-ustody-list li div p {
    font-weight: 700;
    font-size: 32px;
    line-height: 44px;
    margin-bottom: 10px;
}

#container.q-ustody .section02 {
    background-color: #f5f5f5;
    padding: 120px 0 150px;
}

#container.q-ustody .section02 .title {
    margin-bottom: 70px;
}

#container.q-ustody .section02 .process-list li {
    display: flex;
    align-items: center;
}

#container.q-ustody .section02 .process-list li div {
    width: 310px;
    height: 310px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    background: #00B1B3;
    box-shadow: 0px 4px 26px rgba(0, 177, 179, 0.5);
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    position: relative;
}

#container.q-ustody .section02 .process-list li:nth-child(2) div {
    background-color: rgba(255, 255, 255, .5);
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    color: #00B1B3;
    z-index: 1;
    margin: -50px 0;
}

#container.q-ustody .section02 .process-list li div:before,
#container.q-ustody .section02 .process-list li div:after {
    content: "";
    display: block;
    position: absolute;
}

#container.q-ustody .section02 .process-list li div:before {
    width: 14px;
    height: 14px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    background-color: #fff;
    right: -7px;
    top: calc(50% - 7px);
    z-index: 1;
}

#container.q-ustody .section02 .process-list li div:after {
    width: 130px;
    height: 1px;
    background-image: linear-gradient(to right, #00B1B3 50%, rgba(255, 255, 255, 0) 0%);
    background-position: bottom;
    background-size: 4px 2px;
    background-repeat: repeat-x;
    right: -130px;
}

#container.q-ustody .section02 .process-list li:nth-child(2) div:before {
    background-color: #00B1B3;
}

#container.q-ustody .section02 .process-list li span {
    margin-left: 150px;
}

#container.q-ustody .section03 {
    background-color: #f1f1f1;
    padding: 135px 0 150px;
}

#container.q-ustody .section03 .inner .title {
    margin-bottom: 55px;
}

#container.q-ustody .section03 .inner .service-process {
    display: flex;
    justify-content: space-between;
    max-width: 940px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

#container.q-ustody .section03 .inner .service-process:before {
    content: "";
    width: 360px;
    height: 2px;
    display: block;
    position: absolute;
    background-image: linear-gradient(to right, #00B1B3 50%, rgba(255, 255, 255, 0) 0%);
    background-position: bottom;
    background-size: 4px 2px;
    background-repeat: repeat-x;
    top: 530px;
    left: calc(50% - 180px);
}

#container.q-ustody .section03 .inner .service-process div div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-align: center;
    background-color: #fff;
    position: relative;
}

#container.q-ustody .section03 .inner .service-process div div:before,
#container.q-ustody .section03 .inner .service-process div div:after {
    content: "";
    display: block;
    position: absolute;
}

#container.q-ustody .section03 .inner .service-process div div:before {
    width: 6px;
    height: 6px;
    border: solid #00B1B3;
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    left: calc(50% - 3px);
}

#container.q-ustody .section03 .inner .service-process div div:after {
    background-image: linear-gradient(to bottom, #00B1B3 50%, rgba(255, 255, 255, 0) 0%);
    background-position: right;
    background-size: 2px 4px;
    background-repeat: repeat-y;
    width: 2px;
}

#container.q-ustody .section03 .inner .service-process div div p {
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #00B1B3;
    margin-bottom: 0;
}

#container.q-ustody .section03 .inner .service-process .squre-wrap div {
    width: 290px;
    height: 170px;
    justify-content: flex-end;
    padding-bottom: 20px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

#container.q-ustody .section03 .inner .service-process .squre-wrap div:nth-child(1) {
    margin-top: 160px;
}

#container.q-ustody .section03 .inner .service-process .squre-wrap div:nth-child(2) {
    background-color: #00B1B3;
    margin: 115px 0 65px;
}

#container.q-ustody .section03 .inner .service-process .squre-wrap div:nth-child(1):before {
    animation: sq01 2s infinite ease;
    bottom: 0;
}

#container.q-ustody .section03 .inner .service-process .squre-wrap div:nth-child(2):before {
    animation: sq02 2s infinite ease;
    bottom: 0;
}

#container.q-ustody .section03 .inner .service-process .squre-wrap:nth-child(1) div:nth-child(3):before {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    left: unset;
    top: calc(50% - 3px);
    right: 0;
    animation: sq03_l 2s infinite ease;
}

#container.q-ustody .section03 .inner .service-process .squre-wrap:nth-child(3) div:nth-child(3):before {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    top: calc(50% - 3px);
    left: 0;
    animation: sq03_r 2s infinite ease;
}

#container.q-ustody .section03 .inner .service-process .squre-wrap div:nth-child(1):after {
    height: 103px;
    bottom: -105px;
}

#container.q-ustody .section03 .inner .service-process .squre-wrap div:nth-child(2):after {
    bottom: -55px;
    height: 55px;
}

#container.q-ustody .section03 .inner .service-process .squre-wrap div:nth-child(3):after {
    height: 66px;
    top: calc(50% - 33px);
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}

#container.q-ustody .section03 .inner .service-process .squre-wrap:nth-child(1) div:nth-child(3):after {
    right: -36px;
}

#container.q-ustody .section03 .inner .service-process .squre-wrap:nth-child(3) div:nth-child(3):after {
    left: -36px;
}

#container.q-ustody .section03 .inner .service-process .squre-wrap div p {
    margin-top: 22px;
}

#container.q-ustody .section03 .inner .service-process .squre-wrap div:nth-child(2) p {
    color: #fff;
}

#container.q-ustody .section03 .inner .service-process .circle-wrap div {
    width: 200px;
    height: 200px;
    border: 1px solid #00B1B3;
    box-shadow: 0px 7px 21px rgba(0, 177, 179, 0.1);
    justify-content: center;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    margin-bottom: 65px;
}

#container.q-ustody .section03 .inner .service-process .circle-wrap div:nth-child(2) {
    margin-bottom: 200px;
}

#container.q-ustody .section03 .inner .service-process .circle-wrap div:before {
    bottom: -5px;
    animation: circle_bottom 2s infinite ease;
}

#container.q-ustody .section03 .inner .service-process .circle-wrap div:after {
    height: 55px;
    bottom: -55px;
}

#container.q-ustody .section03 .inner .service-process .circle-wrap div:nth-child(1):before,
#container.q-ustody .section03 .inner .service-process .circle-wrap div:nth-child(2):before {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    bottom: -70px;
    animation: circle_top 2s infinite ease;
}

#container.q-ustody .section03 .inner .service-process .circle-wrap div:nth-child(1):after,
#container.q-ustody .section03 .inner .service-process .circle-wrap div:nth-child(2):after {
    bottom: -65px;
}

#container.q-ustody .section03 .inner .service-process .circle-wrap div:last-child:before,
#container.q-ustody .section03 .inner .service-process .circle-wrap div:last-child:after {
    display: none;
}

#container.q-ustody .section03 .inner .service-process .circle-wrap div p {
    margin-top: 10px;
}

@keyframes sq01 {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    100% {
        bottom: -105px;
    }
}

@keyframes sq02 {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    100% {
        bottom: -55px;
    }
}

@keyframes sq03_l {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    100% {
        right: -70px;
    }
}

@keyframes sq03_r {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    100% {
        left: -70px;
    }
}

@keyframes circle_top {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    100% {
        bottom: -15px;
    }
}

@keyframes circle_bottom {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    100% {
        bottom: -55px;
    }
}

#container.q-ustody .section04 {
    padding: 150px 0;
}

#container.q-ustody .section04 .application-wrap {
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
}

#container.q-ustody .section04 .application-wrap li {
    text-align: center;
}

#container.q-ustody .section04 .application-wrap li:nth-child(2) {
    margin-top: 80px;
}

#container.q-ustody .section04 .application-wrap li img {
    filter: drop-shadow(0px 4px 18px rgba(0, 0, 0, 0.1));
}

#container.q-ustody .section04 .application-wrap li p {
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    color: #00B1B3;
    margin-top: 30px;
}

#container.q-wallet .section01 {
    padding-bottom: 250px;
}

#container.q-wallet .section01 .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#container.q-wallet .section01 .inner .title {
    text-align: left;
}

#container.q-wallet .section01 .inner img {
    margin-right: -310px;
}

#container.isms .section .inner .title p span {
    color: #00B1B3;
}

#container.isms .section .inner .sub-title {
    font-size: 24px;
    font-weight: 700;
    color: #00B1B3;
    margin-bottom: 30px;
}

#container.isms .section .inner .benefit {
    max-width: 1300px;
    width: 100%;
    margin: 70px auto 0;
}

#container.isms .section .inner .benefit table {
    width: 100%;
    text-align: center;
    border-top: 1px solid #00B1B3;
    margin-bottom: 70px;
}

#container.isms .section .inner .benefit table tr {
    border-bottom: 1px solid #e5e5e5;
}

#container.isms .section .inner .benefit table th {
    height: 60px;
    background-color: #f5f5f5;
    border-right: 1px solid #e5e5e5;
}

#container.isms .section .inner .benefit table th:nth-child(1) {
    width: 90px;
}

#container.isms .section .inner .benefit table th:last-child {
    border-right: none;
}

#container.isms .section .inner .benefit table td {
    height: 60px;
    border-right: 1px solid #e5e5e5;
}

#container.isms .section .inner .benefit table td:nth-child(1) {
    font-weight: 700;
}

#container.isms .section .inner .benefit table td:last-child {
    border-right: none;
}

#container.isms .section .inner .benefit ul {
    display: flex;
    flex-wrap: wrap;
}

#container.isms .section .inner .benefit ul li {
    width: 310px;
    height: 180px;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #00B1B3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    color: #00B1B3;
    margin: 0 20px 20px 0;
}

#container.isms .section .inner .benefit ul li:nth-child(4n) {
    margin-right: 0;
}

#container.isms .section06 .inner .benefit {
    margin-top: 150px;
}

#container.isms .section06 .inner .benefit table th:nth-child(1) {
    width: 110px;
}

#container.isms .section01 {
    margin-bottom: 120px;
}

#container.isms .section01 .inner {
    display: flex;
    justify-content: space-between;
}

#container.isms .section01 .inner .title {
    text-align: left;
    margin-right: 160px;
    flex: none;
}

#container.isms .section01 .inner .circle-wrap {
    flex-grow: 1;
    flex-wrap: wrap;
    display: flex;
}

#container.isms .section01 .inner .circle-wrap li {
    width: 220px;
    height: 220px;
    margin-right: -2px;
    position: relative;
}

#container.isms .section01 .inner .circle-wrap li p {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
    color: #00B1B3;
    margin-bottom: 0;
}

#container.isms .section01 .inner .circle-wrap li:nth-child(4),
#container.isms .section01 .inner .circle-wrap li:nth-child(5) {
    margin-top: -1px;
}

#container.isms .section01 .inner .circle-wrap .circle-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

#container.isms .section01 .inner .circle-wrap .reverse .circle-box {
    transform: scale(-1, -1);
}

#container.isms .section01 .inner .circle-wrap .circle-box>div {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    overflow: hidden;
    display: block;
}

#container.isms .section01 .inner .circle-wrap .left {
    left: 0px;
}

#container.isms .section01 .inner .circle-wrap .right {
    right: 0px;
}

#container.isms .section01 .inner .circle-wrap .circle-box span {
    width: 200%;
    height: 100%;
    border: 1px solid transparent;
    border-radius: 50%;
    position: absolute;
    top: 0;
    transform: rotate(-135deg);
    display: block;
}

#container.isms .section01 .inner .circle-wrap .left span {
    border-bottom: 1px solid #D9D9D9;
    border-left: 1px solid #D9D9D9;
    left: 1px;
    animation-duration: 1.5s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

#container.isms .section01 .inner .circle-wrap .right span {
    border-top: 1px solid #D9D9D9;
    border-right: 1px solid #D9D9D9;
    right: 1px;
    animation-duration: 1.5s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

#container.isms .section01 .inner .circle-wrap li.aos-animate .left span {
    animation-name: circle_left;
}

#container.isms .section01 .inner .circle-wrap li.aos-animate .right span {
    animation-name: circle_right;
}

@keyframes circle_right {
    0% {
        transform: rotate(-135deg);
    }

    50%,
    100% {
        transform: rotate(45deg);
    }
}

@keyframes circle_left {

    0%,
    50% {
        transform: rotate(-135deg);
    }

    100% {
        transform: rotate(45deg);
    }
}

#container.isms .section02 {
    background-color: #fafafa;
    padding: 120px 0;
}

#container.isms .section02 .inner {
    max-width: 100%;
}

#container.isms .section02 .inner .title {
    margin-bottom: 70px;
}

#container.isms .section02 .inner #about-slider .splide__arrow {
    border-color: #000;
}

#container.isms .section02 .inner #about-slider .splide__slide .txt-box p {
    color: #fff;
}

#container.isms .section02 .inner #about-slider .splide__slide .txt-box span {
    color: #fff;
}

#container.isms .section02 .inner #about-slider .about01 {
    background-image: url(../services/images/isms_slide_bg01.jpg);
}

#container.isms .section02 .inner #about-slider .about02 {
    background-image: url(../services/images/isms_slide_bg02.jpg);
}

#container.isms .section02 .inner #about-slider .about03 {
    background-image: url(../services/images/isms_slide_bg03.jpg);
}

#container.isms .section03 {
    padding: 120px 0;
}

#container.isms .section03 .inner .title {
    text-align: left;
    margin-bottom: 70px;
}

#container.isms .section03 .inner .benefit ul {
    margin-bottom: 70px;
}

#container.isms .section03 .inner .shape-wrap {
    display: flex;
    align-items: center;
    position: relative;
}

#container.isms .section03 .inner .shape-wrap .circle-wrap {
    display: flex;
    flex-wrap: wrap;
    width: 430px;
    margin-right: 240px;
    flex: none;
}

#container.isms .section03 .inner .shape-wrap .circle-wrap .circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 220px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    background: #00B1B3;
    box-shadow: 0px 4px 26px rgba(0, 177, 179, 0.5);
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    color: #FFFFFF;
    position: relative;
}

#container.isms .section03 .inner .shape-wrap .circle-wrap .circle:nth-child(even) {
    background-color: rgba(255, 255, 255, .5);
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    color: #00B1B3;
    margin-left: -10px;
}

#container.isms .section03 .inner .shape-wrap .circle-wrap .circle:nth-child(even):after {
    content: "";
    width: 6px;
    height: 6px;
    display: block;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    background-color: #00B1B3;
    position: absolute;
    top: calc(50% - 3px);
    right: -3px;
}

#container.isms .section03 .inner .shape-wrap .circle-wrap .circle:nth-child(3),
#container.isms .section03 .inner .shape-wrap .circle-wrap .circle:nth-child(4) {
    margin-top: -10px;
}

#container.isms .section03 .inner .shape-wrap .line-wrap div {
    position: absolute;
}

#container.isms .section03 .inner .shape-wrap .line-wrap div:nth-child(1),
#container.isms .section03 .inner .shape-wrap .line-wrap div:nth-child(2) {
    width: 106px;
    height: 1px;
    background-image: linear-gradient(to right, #00B1B3 50%, rgba(255, 255, 255, 0) 0%);
    background-position: bottom;
    background-size: 4px 2px;
    background-repeat: repeat-x;
    left: 430px;
}

#container.isms .section03 .inner .shape-wrap .line-wrap div:nth-child(1) {
    top: 110px;
}

#container.isms .section03 .inner .shape-wrap .line-wrap div:nth-child(2) {
    bottom: 110px;
}

#container.isms .section03 .inner .shape-wrap .line-wrap div:nth-child(3) {
    width: 1px;
    height: 210px;
    background-image: linear-gradient(to bottom, #00B1B3 50%, rgba(255, 255, 255, 0) 0%);
    background-position: right;
    background-size: 2px 4px;
    background-repeat: repeat-y;
    top: calc(50% - 105px);
    left: 534px;
}

#container.isms .section03 .inner .shape-wrap .line-wrap div:nth-child(4) {
    width: 136px;
    height: 1px;
    background-image: linear-gradient(to right, #00B1B3 50%, rgba(255, 255, 255, 0) 0%);
    background-position: bottom;
    background-size: 4px 2px;
    background-repeat: repeat-x;
    left: 534px;
}

#container.isms .section03 .inner .shape-wrap .benefit {
    margin: 0 0 50px;
    width: auto;
}

#container.isms .section03 .inner .shape-wrap .benefit .sub-title {
    margin-bottom: 20px;
    text-align: center;
}

#container.isms .section03 .inner .shape-wrap .benefit div {
    width: 440px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    background-color: #fafafa;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    color: #00B1B3;
    margin-bottom: 10px;
    position: relative;
}

#container.isms .section03 .inner .shape-wrap .benefit div:nth-of-type(2):after {
    content: "";
    width: 6px;
    height: 6px;
    display: block;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    background-color: #00B1B3;
    position: absolute;
    top: calc(50% - 3px);
    left: -3px;
}

#container.isms .section03 .inner .shape-wrap .benefit div:last-child {
    margin-bottom: 0;
}

#container.isms .section04 {
    background-color: #fafafa;
    padding: 120px 0;
}

#container.isms .section04 .inner .title {
    text-align: left;
    margin-bottom: 70px;
}

#container.isms .section04 .inner .cloud-wrap {
    display: flex;
    margin-bottom: 110px;
}

#container.isms .section04 .inner .cloud-wrap li {
    width: 440px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    background-color: #00B1B3;
    box-shadow: 0px 4px 26px rgba(28, 154, 139, 0.2);
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
    color: #fff;
    position: relative;
}

#container.isms .section04 .inner .cloud-wrap li:nth-child(2) {
    background-color: rgba(255, 255, 255, .5);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    color: #00B1B3;
    z-index: 1;
    margin: 0 -10px;
}

#container.isms .section04 .inner .consulting-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#container.isms .section05 {
    padding: 120px 0;
}

#container.isms .section05 .inner .title {
    text-align: left;
    margin-bottom: 70px;
}

#container.isms .section05 .inner .process-wrap>div {
    padding: 40px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

#container.isms .section05 .inner .process-wrap>div:last-child {
    margin-bottom: 0;
}

#container.isms .section05 .inner .process-wrap .process-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    color: #00B1B3;
    margin-bottom: 40px;
}

#container.isms .section05 .inner .process-wrap .process-con {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

#container.isms .section05 .inner .process-wrap .process-con .type {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

#container.isms .section05 .inner .process-wrap .process-con .type p {
    width: 140px;
    height: 50px;
    background: #00B1B3;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    color: #fff;
}

#container.isms .section05 .inner .process-wrap .process-con .type p:nth-child(1) {
    margin-bottom: 25px;
}

#container.isms .section05 .inner .process-wrap>div:nth-child(1) .process-con .step {
    width: 340px;
}

#container.isms .section05 .inner .process-wrap .process-con .step div {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    border: 1px solid #00B1B3;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    color: #00B1B3;
    position: relative;
}

#container.isms .section05 .inner .process-wrap .process-con .step p {
    width: 100%;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fafafa;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    font-size: 18px;
    line-height: 30px;
    color: #555;
    margin: 10px 0 0;
    position: relative;
}

#container.isms .section05 .inner .process-wrap>div:nth-child(3) .process-con .step:nth-child(3) p:nth-child(2) {
    padding: 25px 0;
}

#container.isms .section05 .inner .process-wrap>div:nth-child(1) .process-con .step p:nth-child(3) {
    border-radius: 80px;
    -webkit-border-radius: 80px;
    -moz-border-radius: 80px;
    -ms-border-radius: 80px;
    -o-border-radius: 80px;
}

#container.isms .section05 .inner .process-wrap>div:nth-child(1) .process-con .step p:before,
#container.isms .section05 .inner .process-wrap>div:nth-child(1) .process-con .step p:after {
    content: "";
    width: 6px;
    height: 6px;
    display: block;
    position: absolute;
    border: solid #00B1B3;
    border-width: 0 1px 1px 0;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    top: calc(50% - 3px);
}

#container.isms .section05 .inner .process-wrap>div:nth-child(1) .process-con .step p:before {
    left: -12px;
}

#container.isms .section05 .inner .process-wrap>div:nth-child(1) .process-con .step p:after {
    left: -15px;
}

#container.isms .section05 .inner .process-wrap>div:nth-child(2) .process-con .step,
#container.isms .section05 .inner .process-wrap>div:nth-child(3) .process-con .step {
    width: 270px;
}

#container.isms .section05 .inner .process-wrap>div:nth-child(2) .process-con .step:last-child,
#container.isms .section05 .inner .process-wrap>div:nth-child(3) .process-con .step:last-child {
    width: 350px;
}

#container.isms .section05 .inner .process-wrap>div:nth-child(2) .process-con .step div:after,
#container.isms .section05 .inner .process-wrap>div:nth-child(3) .process-con .step div:after {
    content: "";
    width: 6px;
    height: 6px;
    display: block;
    position: absolute;
    border: solid #00B1B3;
    border-width: 0 1px 1px 0;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    top: calc(50% - 3px);
    left: -15px;
}

#container.isms .section05 .inner .process-wrap>div .process-con .step:nth-child(1) div:after {
    display: none;
}

#container.isms .section06 {
    padding-bottom: 160px;
}

#container.isms .section06 .inner .title {
    margin-bottom: 70px;
}

#container.isms .section06 .inner .shape-wrap {
    width: 660px;
    height: 550px;
    margin: 0 auto;
    position: relative;
}

#container.isms .section06 .inner .shape-wrap .inner-circle {
    display: block;
    width: 456px;
    height: 456px;
    border: 1px dashed #ddd;
    position: absolute;
    top: calc(50% - 228px);
    left: calc(50% - 228px);
    z-index: -1;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    animation: inner_circle 15s infinite linear;
    -webkit-animation: inner_circle 15s infinite linear;
}

@keyframes inner_circle {
    0% {
        transform: rotate(0);
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
}

#container.isms .section06 .inner .shape-wrap .inner-circle:before,
#container.isms .section06 .inner .shape-wrap .inner-circle:after {
    content: "";
    width: 14px;
    height: 14px;
    display: block;
    background-color: #ddd;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    position: absolute;
    z-index: 1;
    left: calc(50% - 7px);
}

#container.isms .section06 .inner .shape-wrap .inner-circle:before {
    top: -7px;
}

#container.isms .section06 .inner .shape-wrap .inner-circle:after {
    bottom: -7px;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

#container.isms .section06 .inner .shape-wrap .con-txt {
    width: 550px;
    height: 550px;
    box-shadow: -1px 0px 20px rgba(28, 154, 139, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 32px;
    line-height: 44px;
    text-align: center;
    color: #00B1B3;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    margin: 0 auto;
}

#container.isms .section06 .inner .shape-wrap li {
    position: absolute;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #00B1B3;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

#container.isms .section06 .inner .shape-wrap li:nth-child(1) {
    top: 0;
    left: 0;
}

#container.isms .section06 .inner .shape-wrap li:nth-child(2) {
    top: 0;
    right: 0;
}

#container.isms .section06 .inner .shape-wrap li:nth-child(3) {
    bottom: 0;
    left: 0;
}

#container.isms .section06 .inner .shape-wrap li:nth-child(4) {
    bottom: 0;
    right: 0;
}

#container.about .section01 .inner {
    max-width: 100%;
}

#container.about .section01 .inner .title {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

#container.about .section01 .inner .vis-wrap {
    padding: 95px 0;
    background-color: #fafafa;
    position: relative;
    margin-bottom: 150px;
    background-image: url(../about/images/about_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#container.about .section01 .inner .vis-wrap div {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

#container.about .section01 .inner .vis-wrap div span {
    color: #fff;
}

#container.about .section01 .inner .vis-wrap img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 760px;
}

#container.slogan .section01 .inner .slogan-wrap>div:nth-child(1) {
    margin-bottom: 150px;
}

#container.slogan .section01 .inner .slogan-wrap .slogan-title {
    margin-bottom: 30px;
}

#container.slogan .section01 .inner .slogan-wrap .slogan-title span {
    color: #00B1B3;
    display: block;
}

#container.slogan .section01 .inner .slogan-wrap .slogan-title p {
    font-weight: 700;
    font-size: 42px;
    line-height: 54px;
    margin-bottom: 0;
}

#container.slogan .section01 .inner .slogan-wrap .vis {
    width: 1610px;
    height: 430px;
    background-image: url(../about/images/slogan_vis01.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    padding: 40px 90px;
}

#container.slogan .section01 .inner .slogan-wrap>div:nth-child(2) .vis {
    margin-left: -310px;
    padding-left: 310px;
    background-image: url(../about/images/slogan_vis02.jpg);
}

#container.slogan .section01 .inner .slogan-wrap .vis span {
    color: #fff;
}

#container.slogan .section01 .inner .slogan-wrap>div:nth-child(2) .vis span strong {
    display: block;
    margin-bottom: 10px;
}

#container.slogan .section02 {
    padding: 150px 0;
}

#container.slogan .section02 .inner .title {
    text-align: left;
    margin-bottom: 70px;
}

#container.slogan .section02 .inner .ci {
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d9d9d9;
}

#container.vision .section01 {
    padding-bottom: 150px;
}

#container.vision .section01 .inner .title {
    margin-bottom: 70px;
}

#container.vision .section01 .inner .shape-wrap {
    padding: 30px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border: 1px solid #d9d9d9;
    display: flex;
    justify-content: space-between;
}

#container.vision .section01 .inner .shape-wrap li {
    width: 400px;
    font-size: 18px;
    line-height: 30px;
}

#container.vision .section01 .inner .shape-wrap li h3,
#container.vision .section01 .inner .shape-wrap li p span,
#container.vision .section01 .inner .shape-wrap li div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

#container.vision .section01 .inner .shape-wrap li h3 {
    border: 1px solid #00B1B3;
    font-style: normal;
    font-weight: 700;
    padding: 10px 0;
    color: #00B1B3;
    font-size: 18px;
}

#container.vision .section01 .inner .shape-wrap li p {
    flex-wrap: wrap;
    margin-bottom: 0;
}

#container.vision .section01 .inner .shape-wrap li p span {
    margin-top: 10px;
    color: #555;
    background-color: #fafafa;
    height: 270px;
    flex-wrap: wrap;
}

#container.vision .section01 .inner .shape-wrap li:nth-child(2) p span {
    height: 130px;
}

#container.vision .section01 .inner .shape-wrap li div {
    height: 80px;
    background: #00B1B3;
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    margin-top: 65px;
    position: relative;
    font-size: 24px;
}

#container.vision .section01 .inner .shape-wrap li div:before,
#container.vision .section01 .inner .shape-wrap li div:after {
    content: "";
    display: block;
    position: absolute;
}

#container.vision .section01 .inner .shape-wrap li div:before {
    width: 6px;
    height: 6px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    background-color: #00B1B3;
    top: -68px;
}

#container.vision .section01 .inner .shape-wrap li div:after {
    width: 1px;
    height: 65px;
    top: -65px;
    background-image: linear-gradient(to bottom, #00B1B3 50%, rgba(255, 255, 255, 0) 0%);
    background-position: right;
    background-size: 2px 4px;
    background-repeat: repeat-y;
}

#container.partners .section01 {
    margin-bottom: 130px;
}

#container.partners .section01 .inner .title {
    margin-bottom: 70px;
}

#container.partners .section01 .inner .partners-list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    justify-content: center;

    display: grid;
    grid-template-columns: repeat(3, 250px);
    gap: 10px;
}

#container.partners .section01 .inner .partners-list li {

    width: 100%;
    height: 90px;
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#container.partners .section01 .inner .partners-list li:nth-child(1) {
    grid-column: 1 / span 3;
    height: 200px;
}

#container.partners .section01 .inner .partners-list li:nth-child(1) img {
    width: 380px;
}

#container.partners .section01 .inner .partners-list li img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .6s;
}

#container.partners .section01 .inner .partners-list li img:nth-child(2) {
    opacity: 0;
}

































#container.simulator #svis {
    background-image: url(../services/images/svis.jpg);
}

#container.simulator .section {
    padding-bottom: 140px;
}

#container.simulator .section01 .process-wrap {

    background-color: #fafafa;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 150px 30px;
    margin-top: 80px;
}

#container.simulator .section01 .process-wrap p {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 5px;
    align-self: flex-start;
}

#container.simulator .section01 .process-wrap img {
    width: 100%;
    max-width: fit-content;
}

#container.simulator .section02 .shape-wrap {
    margin-top: 150px;
    display: grid;
    grid-template-columns: 495px 1fr;
    column-gap: 200px;
    align-items: start;
}

#container.simulator .section02 .shape-wrap .circle-wrap {
    display: flex;
    justify-content: center;
    position: relative;
}

#container.simulator .section02 .shape-wrap .circle-wrap:before {
    content: "";
    width: 160px;
    height: 1px;
    border-top: 1px dashed #00B1B3;
    position: absolute;
    top: 50%;
    right: -180px;
}

#container.simulator .section02 .shape-wrap .circle-wrap:after {
    content: "";
    width: 7px;
    height: 7px;
    display: block;
    border-radius: 100%;
    background-color: #00B1B3;
    position: absolute;
    right: -180px;
    top: calc(50% - 3px);
}

#container.simulator .section02 .shape-wrap .circle-wrap div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    width: 260px;
    height: 260px;
    border-radius: 100%;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    background-color: #00b1b3;
    box-shadow: 0px 4px 26px rgba(0, 177, 179, 0.5);
    color: #fff;
}

#container.simulator .section02 .shape-wrap .circle-wrap div strong {
    font-size: 24px;
    margin-bottom: 20px;
}

#container.simulator .section02 .shape-wrap .circle-wrap .wh {
    background-color: rgba(255, 255, 255, .5);
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    color: #00B1B3;
    margin-left: -25px;
    z-index: 1;
}

#container.simulator .section02 .shape-wrap .detail p {
    font-size: 26px;
    font-weight: 600;
    color: #00b1b3;
    text-align: center;
    margin-bottom: 40px;
}

#container.simulator .section02 .shape-wrap .detail ul {
    display: grid;
    row-gap: 12px;
}

#container.simulator .section02 .shape-wrap .detail ul li {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    border-radius: 25px;
    background-color: #fafafa;
    color: #00b1b3;
    font-size: 18px;
}

#container.simulator .section02 .shape-wrap .detail .vis {
    text-align: center;
    margin-top: 60px;
}

#container.simulator .section02 .shape-wrap .detail .vis p {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
}

#container.simulator .section02 .vis-wrap {
    margin-top: 150px;
    text-align: center;
}

#container.simulator .section02 .vis-wrap .shape {
    font-size: 32px;
    font-weight: 600;
    width: 540px;
    height: 60px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00b1b3;
    color: #fff;
    margin: 0 auto 60px;
}

#container.simulator .section02 .vis-wrap p {
    font-size: 26px;
    font-weight: 600;
    color: #00b1b3;
    text-align: center;
    margin-bottom: 20px;
}

#container.simulator .section02 .vis-wrap img {
    max-width: max-content;
    width: 100%;
    margin: 0 auto;
}

#container.simulator .section03 .vis {
    margin-top: 50px;
}






#container.edu #svis {
    background-image: url(../services/images/svis.jpg);
}

#container.edu .section01 .title span  {
    font-size: 32px;
    line-height: 42px;
    font-weight: 500;
    display: block;
    color: #000;
}

#container.edu .section01 .step {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 60px;
    margin-top: 110px;
    text-align: center;
    color: #555;
    padding-bottom: 150px;
}

#container.edu .section01 .step p {
    width: 100%;
    height: 50px;
    border-radius: 25px;
    border: 1px solid #00B1B3;
    color: #00B1B3;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 90px;
    position: relative;
}

#container.edu .section01 .step p:after {
    content: "";
    width: 1px;
    height: 90px;
    display: block;
    border-left: 1px dashed #00B1B3;
    position: absolute;
    bottom: -90px;
    left: 50%;
}

#container.edu .section01 .step p:before {
    content: "";
    width: 7px;
    height: 7px;
    display: block;
    background-color: #00B1B3;
    border-radius: 100%;
    position: absolute;
    bottom: -95px;
    left: calc(50% - 3px);
}

#container.edu .section01 .step dt {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    border-radius: 25px;
    background-color: #fafafa;
    font-size: 20px;
    font-weight: 500;

}

#container.edu .section01 .step dd {
    width: 100%;
    height: 180px;
    border-radius: 20px;
    background-color: #fafafa;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    font-size: 18px;
    font-weight: 300;
    margin-top: 8px;
    line-height: 30px;
    padding: 0 60px;
    text-align: left;
}

#container.edu .section01 .step dd li {
    padding-left: 14px;
    position: relative;
}

#container.edu .section01 .step dd li:before {
    content: "";
    width: 4px;
    height: 4px;
    display: block;
    border-radius: 100%;
    background-color: #555;
    position: absolute;
    left: 0;
    top: 13px;
}

#container.edu .section01 .step .add dd {
    width: 100%;
    height: 580px;
    border-radius: 20px;
    background-color: #fafafa;
    display: flex;
    align-items: left;
    justify-content: center;
    font-size: 18px;
    font-weight: 300;
    margin-top: 8px;
    line-height: 26px;
}

#container.edu .section02 {
    padding-bottom: 150px;
}

#container.edu .section02 .txt-box p {
    width: 480px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    border: 1px solid #00b1b3;
    color: #00b1b3;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 30px;
}

#container.edu .section02 ul {
    display: grid;
    grid-template-columns: repeat(3, 400px);
    justify-content: space-between;
    row-gap: 16px;
}

#container.edu .section02 ul li {
    background-color: #fafafa;
    border-radius: 20px;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    padding: 20px 0;
    position: relative;
}

#container.edu .section02 .inner ul li p {
    margin-bottom: 0;
    color: #6acfd0;
    font-weight: 500;
}

#container.edu .section02 .inner ul li span {
    font-size: 16px;
    line-height: 24px;
    display: block;
    font-weight: 300;
}

#container.edu .section02 ul li:before {
    content: "";
    width: 7px;
    height: 7px;
    display: block;
    border-radius: 100%;
    background-color: #00b1b3;
    position: absolute;
    right: -40px;
    top: calc(50% - 3px);
}

#container.edu .section02 ul li:after {
    content: "";
    width: 40px;
    height: 1px;
    display: block;
    border-top: 1px dashed #00b1b3;
    position: absolute;
    right: -40px;
    top: 50%;
}

#container.edu .section02 ul li:nth-child(3n):before,
#container.edu .section02 ul li:nth-child(3n):after,
#container.edu .section02 ul li:last-child:before,
#container.edu .section02 ul li:last-child:after  {
    display: none;
} 

#container.cloud #svis {
    background-image: url(../services/images/svis.jpg);
}

#container.cloud .section01 .inner {
    display: grid;
    row-gap: 100px;
}

#container.cloud .section01 .inner div {
    font-size: 30px;
    font-weight: 500;
    line-height: 42px;
    display: flex;
    align-items: center;
    column-gap: 80px;
}

#container.cloud .section01 .inner div:nth-child(even) {
    flex-direction: row-reverse;
}

#container.cloud .section01 .inner div p {
    margin-bottom: 0;
}



#container.cloud .section02 {
    padding: 150px 0;
}

#container.cloud .section02 .inner {
    background-color: #fafafa;
    border-radius: 10px;
    padding: 60px 60px 80px;
    position: relative;
}

#container.cloud .section02 .inner p {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 0;

}

#container.cloud .section02 .inner>div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

#container.cloud .section02 .inner>div div {
    margin-top: -50px;
}

#container.cloud .section02 .inner img {
    width: 100%;
}

#container.cloud .section02 .inner ul {
    padding-left: 40px;
    display: grid;
    row-gap: 6px;
    position: relative;
}

#container.cloud .section02 .inner ul:before {
    content: "";
    width: 1px;
    height: 185px;
    display: block;
    border-left: 1px dashed #00B1B3;
    position: absolute;
    left: 0;
    top: 20px;
}

#container.cloud .section02 .inner ul li {
    width: 180px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    border: 1px solid #00B1B3;
    background-color: #fff;
    font-size: 16px;
    font-weight: 300;
    color: #555;
    position: relative;
    z-index: 1;
}

#container.cloud .section02 .inner ul li:before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 100%;
    display: block;
    position: absolute;
    top: calc(50% - 3px);
    left: -4px;
    background-color: #00b1b3;
    z-index: -1;
}

#container.cloud .section02 .inner ul li:after {
    content: "";
    width: 40px;
    height: 1px;
    display: block;
    border-top: 1px dashed #00B1B3;
    position: absolute;
    left: -40px;
    top: 50%;
}

#container.cloud .section02 .inner strong {
    width: 180px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    background-color: #00B1B3;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
    margin-left: 40px;
}




#container.ai #svis {
    background-image: url(../services/images/svis.jpg);
}


#container.ai .section01 .inner {
    display: grid;
    row-gap: 100px;
}

#container.ai .section01 .inner div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 80px;
    font-size: 28px;
    font-weight: 500;
    line-height: 40px;
}

#container.ai .section01 .inner div:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}

#container.ai .section01 .inner div .box {
    width: 700px;
    padding: 30px;
    border: 1px solid #ddd;
}

#container.ai .section02 {
    padding: 150px 0;
}

#container.ai .section02 .inner {
    padding: 80px;
    background-color: #fafafa;
    border-radius: 10px;
}

#container.ai .section02 .inner p {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 80px;
}

#container.ai .section02 .inner .tech {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

#container.ai .section02 .inner .tech div dt {
    width: calc(100% + 24px);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    background-color: #00b1b3;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 30px 0 40px;
    margin-left: -12px;
    position: relative;
}

#container.ai .section02 .inner .tech div:nth-child(even) dt {
    background-color: rgba(255, 255, 255, .5);
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    color: #00B1B3;
    z-index: 1;
}

#container.ai .section02 .inner .tech div dd {
    height: 154px;
    margin: 0 3px;
    border-radius: 20px;
    background-color: #fff;
    border: 1px solid #00B1B3;
    padding: 20px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
}