/*****************************************************
common
*****************************************************/
@keyframes rotateAni {
    0% {
        transform: rotate(0);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

    100% {
        opacity: 1;
    }
}

@keyframes balloon {

    0%,
    50%,
    100% {
        transform: translateY(0);
    }

    15% {
        transform: translateY(5px);
    }

    75% {
        transform: translateY(8px);
    }
}

@keyframes department-label-spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@keyframes dash-effect {
    from {
        background-size: 100% 100%;
    }

    to {
        background-size: 0% 100%;
    }
}

@keyframes dash-effect-v {
    from {
        background-size: 100% 100%;
    }

    to {
        background-size: 100% 0%;
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(14px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes drawX {
    0% {
        transform: scaleX(0);
    }

    100% {
        transform: scaleX(1);
    }
}

.no-data {
    padding: 32px 60px;
}

a {
    color: inherit;
}

a:hover,
a:focus {
    color: inherit;
}

/* main-wrap */
.main-wrap {}

@media(min-width: 992px) {}

@media(min-width: 1400px) {}

@media(min-width: 1800px) {}

/* control */
.control {
    display: flex;
    align-items: center;
    width: 100%;
}

.control button {
    padding: 0;
    text-transform: uppercase;
    border: 0;
    background-color: transparent;
    font-size: 14px;
}

.control .play-btn {
    width: 14px;
    height: 14px;
}

.control .play-btn.stop {
    background: url(/common/images/stop-icon.svg) center center / contain no-repeat;
}

.control .play-btn.play {
    background: url(/common/images/play-icon.svg) center center / contain no-repeat;
}

.control .line {
    width: 1px;
    height: 16px;
    background-color: #2D2F33;
    opacity: .4;
}

.control .prev-btn::before,
.control .next-btn::after {
    display: inline-block;
    content: '';
    width: 16px;
    height: 16px;
    background: no-repeat center center/contain;
    vertical-align: text-top;
}

.control .prev-btn::before {
    margin-right: 12px;
    background-image: url(/common/images/prev-icon.svg);
}

.control .next-btn::after {
    background-image: url(/common/images/next-icon.svg);
    margin-left: 12px;
}

.control .prev-btn.swiper-button-disabled::before,
.control .next-btn.swiper-button-disabled::after {
    opacity: .5;
}

.control-box {
    display: flex;
    align-items: center;
}

.slider-pagination.swiper-horizontal>.swiper-pagination-bullets,
.slider-pagination.swiper-pagination-bullets.swiper-pagination-horizontal,
.slider-pagination.swiper-pagination-custom,
.slider-pagination.swiper-pagination-fraction {
    position: static;
    width: auto;
    display: flex;
    align-items: center;
}

.slider-pagination.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.slider-pagination.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 12px 0 0;
}

.slider-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--main-color03);
    opacity: 1;
}

.slider-pagination .swiper-pagination-bullet-active {
    background-color: var(--main-color01);
    width: 24px;
    border-radius: 50px;
}

.swiper-horizontal>.slider-progress.swiper-pagination-progressbar,
.slider-progress.swiper-pagination-progressbar.swiper-pagination-horizontal,
.slider-progress.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical>.slider-progress.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    position: static;
    width: calc(100% - 214px);
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    overflow: hidden;
}

.slider-progress.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--main-color01);
    border-radius: 50px;
}

.slider-fraction.swiper-pagination {
    position: static;
    color: #fff;
    font-size: 21px;
    font-weight: bold;
    margin: 0 30px 0 60px;
}

.slider-fraction.swiper-pagination>span {
    display: inline-block;
    width: 14px;
    opacity: .5;
}

.slider-fraction.swiper-pagination>span.fraction-current {
    opacity: 1;
}

.slider-prev.swiper-button-prev,
.slider-next.swiper-button-next {
    top: 55%;
    width: 84px;
    height: 84px;
    background-color: #fff;
    border: 1px solid var(--border-color01);
    border-radius: 50%;
    color: var(--main-color02);
    display: none;
    transition: .3s;
}

.slider-prev.swiper-button-prev:hover,
.slider-prev.swiper-button-prev:focus,
.slider-next.swiper-button-next:hover,
.slider-next.swiper-button-next:focus {
    border: 1px solid var(--main-color01);
    color: var(--main-color01);
}

.slider-prev.swiper-button-prev:after,
.slider-next.swiper-button-next:after {
    font-size: 28px;
    font-weight: bold;
}

.slider-prev.swiper-button-prev.swiper-button-disabled,
.slider-next.swiper-button-next.swiper-button-disabled {
    opacity: 1;
    color: var(--main-color03);
    background-color: var(--back-color04);
    border: 1px solid var(--back-color04);
}

@media(min-width: 576px) {}

@media(min-width: 768px) {

    .slider-prev.swiper-button-prev,
    .slider-next.swiper-button-next {
        display: flex;
    }
}

@media(min-width: 992px) {
    .control button {
        font-size: 20px;
    }

    .control .play-btn {}

    .control .play-btn:hover,
    .control .play-btn:focus {}

    .control .line {
        height: 24px;
    }

    .control .prev-btn::before,
    .control .next-btn::after {
        vertical-align: baseline;
    }

    .slider-pagination.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
    .slider-pagination.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 20px 0 0;
    }

    .slider-pagination .swiper-pagination-bullet {
        width: 16px;
        height: 16px;
    }

    .slider-pagination .swiper-pagination-bullet-active {
        width: 50px;
    }

    .control .play-btn {
        width: 16px;
        height: 16px;
    }
}

/* tit */
.main-tit {
    font-family: var(--font-type02);
    position: relative;
    font-size: 30px;
    display: inline-block;
    margin-bottom: 0;
    letter-spacing: -5%;
}

.main-tit>span {
    position: relative;
}

.main-tit>span::before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: var(--point-color01);
    border-radius: 50%;
    position: absolute;
    right: -30px;
    bottom: 15%;
}

.main-tit .deco {
    display: block;
    width: 24px;
    height: 24px;
    border-radius: var(--circle);
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(72, 103, 225, .3);
    z-index: 1;
    top: -18px;
    left: -14px;
}

.main-tit .deco::before {
    content: '';
    display: inline-block;
    background: linear-gradient(130deg, var(--main-color01), var(--point-color02));
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: .9;
}

.main-tit .deco::after {
    display: block;
    content: '';
    background: url(/common/images/emblem.svg) no-repeat center;
    width: 100%;
    height: 100%;
    background-size: 12px;
}

.ctg-tit {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color01);
    margin-bottom: 2px;
}

@media(min-width: 567px) {
    .ctg-tit {}
}

@media(min-width: 992px) {
    .main-tit {
        font-size: 42px;
    }

    .main-tit .deco {
        width: 36px;
        height: 36px;
        left: -20px;
        top: -20px;
    }

    .main-tit .deco::after {
        background-size: 16px;
    }

    .ctg-tit {
        font-size: 21px;
        margin-bottom: 10px;
    }
}

@media(min-width: 1800px) {
    .main-tit {
        font-size: 58px;
    }

    .main-tit .deco {
        width: 42px;
        height: 42px;
        left: -30px;
        top: -26px;
    }

    .main-tit .deco::after {
        background-size: 20px;
    }

    .ctg-tit {
        margin-bottom: 20px;
    }
}

/* more-btn */
.btn-box {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.more-btn {
    min-width: 80px;
    font-size: 15px;
    font-weight: 600;
    background-color: var(--main-color02);
    color: #fff;
    padding: 9px;
    border: 3px solid var(--main-color02);
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 6px;
}

.more-btn:hover,
.more-btn:focus {
    color: #fff;
    background-color: var(--point-color01);
    border: 3px solid var(--point-color01);
}

.more-btn>span {}

.more-btn svg {
    transition: .3s;
    width: 14px;
    height: 14px;
}

.more-btn:hover svg,
.more-btn:focus svg {
    transform: rotate(-45deg);
}

@media (min-width: 576px) {
    .btn-box {
        margin-top: 60px;
    }

    .more-btn {
        padding: 9px 24px 9px 34px;
        column-gap: 12px;
    }
}

@media (min-width: 768px) {
    .more-btn {
        padding: 13px 24px 13px 34px;
        column-gap: 30px;
        font-size: 18px;
    }

    .more-btn svg {
        width: 16px;
        height: 16px;
    }
}

@media (min-width: 1200px) {
    .more-btn {
        font-size: 19px;
    }

    .more-btn svg {
        width: 18px;
        height: 18px;
    }
}

/*****************************************************
visual
*****************************************************/
.visual {
    /* max-height: 850px; */
    /* height: 540px; */
    width: 100%;
    position: relative;
}

/* swiper */
.visual .visual-swiper {
    align-items: center;
    height: 880px;
    border-radius: 30px;
    overflow: hidden;
}

.visual .visual-swiper .visual-img {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.visual .visual-mask {
    width: 100%;
    height: 100%;
    background: rgba(34, 34, 34, 0.4);
    position: absolute;
    left: 0;
    top: 0;
}

.visual .slider-pagination .swiper-pagination-bullet {
    background: #fff;
}

.visual .slider-pagination .swiper-pagination-bullet-active {
    background: var(--main-color01);
}

.visual .control .play-btn.stop {
    background: url(/common/images/stop-icon-w.svg) center center / contain no-repeat;
}

.visual .control .play-btn.play {
    background: url(/common/images/play-icon-w.svg) center center / contain no-repeat;
}

/* visual-wrap */
.visual-wrap {
    /* position: absolute; */
    /* top: 50px; */
    /* left: 50%; */
    /* bottom: 220px; */
    /* transform: translate(-50%); */
    z-index: 1;
    color: #fff;
}

.visual-head {
    /* margin-bottom: 24px; */
    text-align: center;
}

.visual-head .deco {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    opacity: .5;
}

.visual-head .deco img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left bottom;
}

.visual-wrap .slogan {
    font-size: 15px;
    font-family: var(--font-type02);
    margin-bottom: 6px;
    /* text-align: center; */
}

.visual-wrap .major {
    font-family: var(--font-type02);
    font-size: 24px;
    /* text-align: center; */
}

.visual-info {
    backdrop-filter: blur(10px) brightness(83%);
    border-radius: var(--radius);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-bottom: 30px;
}

.visual-info p {
    margin-bottom: 0;
}

.visual-info .tit {
    font-weight: 600;
    font-size: 17px;
    width: 100%;
}

.visual-info .tit::before {
    display: none
}

.visual-info .line {
    display: none;
    width: 24px;
    height: 2px;
    border-radius: var(--oval);
    background-color: #fff;
    opacity: .4;
}

.visual-info p::before {
    display: inline-block;
    content: '';
    background: url(/common/images/location-icon.svg) no-repeat left center/contain;
    width: 16px;
    height: 16px;
    margin-right: 10px;
    vertical-align: middle;
}

.visual-info .call::before {
    background-image: url(/common/images/call-icon.svg)
}

/* control */
.visual-ctl {
    /* display: none; */
    color: #fff;
    justify-content: center;
}

.visual-ctl button {
    color: #fff;
}

.visual-ctl .line {
    background-color: #fff;
}

.visual-ctl .prev-btn::before,
.visual-ctl .next-btn::after {
    filter: invert(100%) sepia(11%) saturate(414%) hue-rotate(244deg) brightness(120%) contrast(100%);
}

@media(min-width: 576px) {
    .visual-ctl {
        justify-content: flex-start;
    }
}

@media(min-width: 768px) {
    .visual {
        /* height: 640px; */
    }

    .visual-wrap {
        /* bottom: 260px; */
    }

    .visual .visual-swiper {
        height: 920px;
    }

    .visual-head {
        /* margin-bottom: 40px; */
    }

    .visual-wrap .slogan {
        font-size: 20px;
    }

    .visual-wrap .major {
        font-size: 36px;
    }

    .visual-info .tit {
        width: auto;
    }
}

@media(min-width: 992px) {
    .visual {}

    .visual-head {}

    .visual .visual-swiper {
        height: 720px;
    }

    .visual-foot {
        display: flex;
        align-items: center;
        /* column-gap: 20px; */
    }

    .visual-info {
        border-radius: var(--oval);
        padding: 16px 32px;
        column-gap: 24px;
        margin-bottom: 0;
    }

    .visual-info .tit {
        font-size: 20px;
    }

    .visual-info .line {
        display: inline-block;
    }

    .visual-ctl .play-btn:hover,
    .visual-ctl .play-btn:focus {
        border-color: #fff;
        background-color: transparent;
    }

    .visual .visual-swiper .visual-img {}

    .visual .visual-mask {}
}

@media(min-width: 1200px) {
    .visual-head {}
}

@media(min-width: 1400px) {
    .visual .visual-swiper {
    }

    .visual-head {
        /* text-align: left; */
    }

    .visual {
        /* height: calc(100vh - 230px); */
    }

}

@media(min-width: 1600px) {
    .visual-wrap .slogan {
        /* font-size: 29px; */
    }

    .visual-wrap .major {
        font-size: 42px;
    }
}

@media(min-width: 1800px) {
    .visual-wrap {}

    .visual-head {}

    .visual .visual-swiper {
    height: 740px;
    }

    .visual-head .deco {
        width: 120px;
        height: 120px;
        margin-bottom: 40px;
    }


    .visual-info {
        padding: 20px 40px;
    }

    .visual-info .tit {
        font-size: 24px;
    }

    .visual-info p {
        font-size: 20px;
    }

    .visual-info p::before {
        margin-right: 12px;
        width: 20px;
        height: 20px;
    }
}



/* flow-list */
.visual-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: absolute;
    top: 50px;
    width: 100%;
    padding: 0 15px;
    z-index: 10;
}

.flow-list {
    position: relative;
    width: -webkit-fill-available;
    width: 100%;
    padding: 30px;
    background: linear-gradient(165deg, oklch(0.9 0.01 260 / 0.14), oklch(0.7 0.02 260 / 0.1));
    backdrop-filter: blur(6px);
    border: 1px solid oklch(1 0 0 / 0.14);
    border-radius: 24px;
    overflow: hidden;
}

.flow-list .flow-list-inner .sec01 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(165deg, oklch(0.9 0.01 260 / 0.14), oklch(0.7 0.02 260 / 0.5));
    border-radius: 24px;
    border: 1px solid oklch(1 0 0 / 0.3);
    margin-bottom: 10px;
    padding: 20px;
}

.flow-list .flow-list-inner .sec01-1,
.flow-list .flow-list-inner .sec01-3 {
    position: relative;
}

.flow-list .flow-list-inner .sec01-2 {
    display: flex;
}

.flow-list .flow-list-inner .sec01-3 {
    display: flex;
    flex-direction: column-reverse;
}


.flow-list .flow-list-inner .item {
    position: relative;
    margin: 10px 0;
}

.flow-list .flow-list-inner .sec01-2 .item {
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.5s;
}

.flow-list .flow-list-inner .sec01-2 .dash-wrap {
    display: none
}

.flow-list .flow-list-inner .box01 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 300px;
    height: 110px;
    background: #fff;
    aspect-ratio: 1;
    border-radius: 20px;
    box-shadow: 0 0 0 0 #ffffff44;
    animation: l1 1s infinite;
}

@keyframes l1 {
    100% {
        box-shadow: 0 0 0 30px #0000
    }
}

.flow-list .flow-list-inner .box02 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: linear-gradient(180deg, rgb(255 255 255) 0%, rgb(255 255 255 / 73%) 100%);
    box-shadow: 0 0.2rem 0.5rem 0 rgba(6, 128, 249, 0.1);
    backdrop-filter: blur(0.5rem);
    color: var(--main-color01);
    cursor: pointer;
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.1s;
}

.flow-list .flow-list-inner .box02:hover {
    border-color: #2788f8;
}

.flow-list .flow-list-inner .box02:before {
    content: '';
    display: block;
    width: calc(100% + 24px);
    height: calc(100% + 24px);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    border-radius: 50%;
    border: 2px dashed rgb(73, 189, 254);
    border-image: initial;
    transition: opacity 0.3s;
}

.flow-list .flow-list-inner .box02:hover::before {
    content: '';
    opacity: 1;
    animation: department-label-spin 10s linear infinite;
}

.flow-list .flow-list-inner .box02::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 8px;
    clip-path: circle(0 at center);
    transition: .5s all;
}

.flow-list .flow-list-inner .box02:hover::after {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.88) 0%, rgba(0, 149, 255, 0.88) 50%, rgba(31, 104, 249, 0.88) 100%);
    clip-path: circle(50% at center);
}

.flow-list .flow-list-inner .sec01-3 .box02 {
    animation-delay: 0.7s;
}

.flow-list .flow-list-inner .box03 {
    padding: 20px;
    width: 100%;
    border-radius: 10px;
    background-color: var(--main-color01);
}

.flow-list .flow-list-inner .box04 {
    width: 100%;
    border-radius: 10px;
    background-color: var(--main-color01);
}

.flow-list .flow-list-inner [class^="box0"]>h4 {
    font-family: var(--font-type02);
    font-weight: 600;
    font-size: 19px;
    text-align: center;
    margin: 6px 0 0 0;
    z-index: 1;
}

.flow-list .flow-list-inner .box03>h4 {
    font-family: var(--font-type02);
    font-size: 20px;
    color: #fff;
}

.flow-list .flow-list-inner [class^="box0"]>h4>small {
    display: block;
    font-size: 70%;
}

.flow-list .flow-list-inner .box03>h4>small {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
}

.flow-list .flow-list-inner .box02:hover>h4 {
    color: #fff;
    text-shadow: 0 0 2px rgb(0 0 0 / 85%);
}

.in {
    display: none;
    position:absolute;
    left:50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    border-radius:20px;
    background:#002762;
    box-shadow: 8px 15px 40px rgba(0, 0, 0, 0.15);
    color:#fff;
    z-index: 20;
}
.flow-list .flow-list-inner .item.active .in {
    display:block;
}
.in::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #002762;
    top: -5px;
    left: 50%;
    transform: rotate(45deg) translateX(-50%);
    transform-origin: left;
    z-index: 20;
}
.in ul.list-style01 {
    margin:0;
}
.in ul li {
    font-size: 16px;
    line-height:1.2;
    white-space: nowrap;
}

.flow-list-item ul.list-style01>li::after {
    background-color:#fff
}




.flow-list .flow-list-inner .sec02 {
    position: relative;
    width: 100%;
}
.flow-list .flow-list-inner .sec02 .dash {
    background: linear-gradient(#fff 0 0) 0 / 0% no-repeat #b2d234;
    background-position: top;
}

.flow-list .flow-list-inner .sec02 .dash:first-child {
     display: none;
}
.flow-list .flow-list-inner .sec02 .dash span {
    left: -60px;
}
.flow-list .flow-list-inner .sec02 .dash.dash-r span {
    min-width: 100px;
}


.dash-wrap {
    position: relative;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-direction: row;
}

.flow-list .flow-list-inner .dash {
    appearance: none;
    border: 0;
    background: transparent;
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    position: relative;
    width: 6px;
    height: 40px;
    text-align: center;
    background: linear-gradient(#fff 0 0) 0/0% no-repeat #78bfff;
    background-position: top;
    animation: dash-effect-v 2s infinite linear;
}

.flow-list .flow-list-inner .dash.dash-r {
    background-position: bottom;
}

.flow-list .flow-list-inner .sec01-1 .dash:last-child {
    top: inherit;
    bottom: 0;
}

.flow-list .flow-list-inner .sec01-3 .dash:last-child {
    top: inherit;
    bottom: 0;
}


.flow-list .flow-list-inner .dash:after {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 8px solid #49BDFE;
    border-top: 8px solid transparent;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
}

.flow-list .flow-list-inner .sec01-1 .dash.dash-r:after,
.flow-list .flow-list-inner .sec01-3 .dash.dash-r:after,
.flow-list .flow-list-inner .sec02 .dash.dash-r::after {
    bottom: -18px;
    top: auto;
    transform: translate(-50%, -50%) rotate(-180deg);
}


.flow-list .flow-list-inner .sec01-3 .dash:after:last-child {
    bottom: 0;
    left: 0;
}

.flow-list .flow-list-inner .dash span {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.flow-list .flow-list-inner .dash:focus span {
    opacity: 1;
    visibility: visible;

}
.flow-list .flow-list-inner .sec02 .dash.dash-r {
    display:block;
    
}
.flow-list .flow-list-inner .sec02 .dash:after {
    border-bottom: 8px solid #b2d234;
}


@media (max-width: 991px) {
   
    .flow-list .flow-list-inner .dash span {
        position: absolute;
        top: 50%;
        left: -100px;
        transform: translateY(-50%);
    }

    .flow-list .flow-list-inner .sec01-1 .dash span {
        left: -70px
    }

    .flow-list .flow-list-inner .dash.dash-r span {
        position: absolute;
        left: 20px;
        min-width: 80px;
    }

    .flow-list .flow-list-inner .sec01-3 .dash.dash-r span {
        right: -74px;
    }
    
    
}

@media (min-width: 992px) {
    .visual-inner {
        padding: 30px 50px;
        gap: 40px;
    }

    .flow-list {
        padding: 50px;
    }
     .flow-list .flow-list-inner .item {
        margin:0;
    }

    .flow-list .flow-list-inner .sec01 {
        flex-direction: row;
        padding: 30px;
        margin-bottom: 30px;
        min-height: 240px;
    }
    

    .flow-list .flow-list-inner .sec01-1,
    .flow-list .flow-list-inner .sec01-3 {
        position: relative;
        display: flex;
        flex: 1;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
    }

    .flow-list .flow-list-inner .sec01-2 {
        flex: 0 0 300px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .flow-list .flow-list-inner .sec01-2 .dash-wrap {
        display: block;
        position: relative;
        z-index: 20;
    }

    .flow-list .flow-list-inner .sec01-3 .item {
        order: 2
    }

    .dash-wrap {
        flex: 1;
        flex-direction: column;
        justify-content: space-between;
        margin: 0 20px;
        gap: 40px;
        z-index: 10;
    }

    .flow-list .flow-list-inner .sec01-1 .dash,
    .flow-list .flow-list-inner .sec01-3 .dash {
        width: 100%;
        height: 6px;
        text-align: center;
        background: linear-gradient(#fff 0 0) 0/0% no-repeat #78bfff;
        animation: dash-effect 2s infinite linear;
    }

    .flow-list .flow-list-inner .sec01-1 .dash:after,
    .flow-list .flow-list-inner .sec01-3 .dash:after {
        content: '';
        position: absolute;
        display: block;
        width: 10px;
        height: 10px;
        border-bottom: 10px solid transparent;
        border-top: 10px solid transparent;
        border-right: 8px solid #49BDFE;
        border-left: 8px solid transparent;
    }

    .flow-list .flow-list-inner .sec01-1 .dash:last-child:after {
        bottom: 0;
    }


    .flow-list .flow-list-inner .sec01 .dash-r+.dash:after {
        border-left: 8px solid #49BDFE;
        border-right: 8px solid transparent;
    }

    .flow-list .flow-list-inner .dash.dash-r {
        background: linear-gradient(#78bfff 0 0) 0/0% no-repeat #fff;
        animation-direction: reverse;
        background-position: left;
    }

    .flow-list .flow-list-inner .sec01-1 .dash:after,
    .flow-list .flow-list-inner .sec01-3 .dash:after {
        top: -7px;
        left: -8px;
    }

    .flow-list .flow-list-inner .sec01-1 .dash.dash-r:after,
    .flow-list .flow-list-inner .sec01-3 .dash.dash-r:after {
        left: auto;
        right: -22px;
        bottom: -18px;
    }

    .flow-list .flow-list-inner .sec01-2 .dash {
        background-position: bottom;
        height: 80px;
        width: 6px;
        position: absolute;
    }

    .flow-list .flow-list-inner .sec01-2 .dash:after {
        top: auto;
        bottom: -10px;
        border-bottom: 8px solid transparent;
        border-top: 8px solid #49BDFE;
    }
    .flow-list .flow-list-inner .dash span {
        padding-top: 12px;
        font-size:19px;
    }

    .flow-list .flow-list-inner .dash:hover span {
        opacity: 1;
        visibility: visible;

    }

    .flow-list .flow-list-inner .sec01-2 .dash>span {
        min-width: 180px;
        padding: 20px;
    }



    .flow-list .flow-list-inner .sec02 {
        position: relative;
        width: 100%;
        margin-top: -80px;
    }

    .flow-list .flow-list-inner .sec02 .dash:first-child, .flow-list .flow-list-inner .sec02 .dash {
        display: block;
        height: 80px;
        width: 6px;
    }
        .flow-list .flow-list-inner .sec02 .dash.dash-r {
            display:none;
        }

    .flow-list .flow-list-inner .sec02 .dash-wrap {
        width: calc(100% - 150px);
        justify-content: space-between;
        margin: 0 auto;
        flex-direction: row;
    }

    .flow-list .flow-list-inner .sec02 .dash>span {
        padding: 0 20px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: inherit;
    }

    .flow-list .flow-list-inner .sec02 .dash:last-child>span {
        padding: 0 20px;

        left: -100px;
    }


}

@media (min-width: 1400px) {
     .flow-list {
        padding: 50px 100px;
    }
    .flow-list .flow-list-inner .sec01 {
        margin-bottom: 20px;
        padding: 30px 80px;
    }
        .flow-list .flow-list-inner .sec02 .dash-wrap {
        width: calc(100% - 254px);
        }
}

/* quick-process */
.quick-process {
    width: calc(100% - 32px);
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 1;
    margin-bottom: 0;
    background-color: #fff;
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
}

.quick-process .item {
    width: calc(100% / 3);
}

.quick-process .item .unit {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 16px 8px;
    border-radius: 10px;
    position: relative;
}

.quick-process .item .unit.active {
    background-color: var(--main-color01);
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
}

.quick-process .item .unit::before {
    content: "";
    width: calc(100% - 32px);
    height: 1px;
    background-color: #ddd;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: -1;
}

.quick-process .item:nth-of-type(n+4) .unit::before {
    display: none;
}

.quick-process .item:last-of-type .unit::before {
    display: none !important;
}

.quick-process .item .unit::after {
    content: "";
    width: 1px;
    height: calc(100% - 32px);
    background-color: #ddd;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.quick-process .item:nth-of-type(3n) .unit::after {
    display: none;
}

.quick-process .item .unit span {
    font-size: 14px;
    color: var(--font-color03);
    letter-spacing: -5%;
    margin-bottom: 2px;
}

.quick-process .item .unit p {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    letter-spacing: -5%;
    margin-bottom: 0;
    position: relative;
}

.quick-process .item .unit.done span,
.quick-process .item .unit.done p {
    color: var(--main-color03);
}

.quick-process .item .unit.active span {
    color: rgba(255, 255, 255, 0.5);
}

.quick-process .item .unit.active p {
    color: #fff;
}

.quick-process .item .unit.active p::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: var(--point-color01);
    border-radius: 50%;
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
}

@media (min-width: 576px) {}

@media (min-width: 768px) {
    .quick-process .item .unit {
        padding: 20px 24px 20px 16px;
    }

    .quick-process .item .unit span {
        font-size: 15px;
    }

    .quick-process .item .unit p {
        font-size: 23px;
        font-weight: bold;
    }

    .quick-process .item .unit.active p::before {
        display: block;
    }
}

@media (min-width: 992px) {}

@media (min-width: 1280px) {
    .quick-process {
        width: auto;
        height: calc(100% - 120px);
        right: 40px;
        bottom: 50%;
        transform: translateY(50%);
        flex-direction: column;
    }

    .quick-process .item {
        width: auto;
        height: calc(100% / 6);
    }

    .quick-process .item:nth-of-type(n+4) .unit::before {
        display: block;
    }

    .quick-process .item .unit::after {
        display: none;
    }
}

/* introduce-section */
.introduce-section {
    position: relative;
    padding: 220px 0 160px;
    width: 100%;
    overflow: hidden;
}

/* introduce-section img */
.introduce-img {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
}

.introduce-img .introduce-item {
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
}

.introduce-img .introduce-item.item01 {
    width: 100px;
    left: 0;
    top: 10%;
}

.introduce-img .introduce-item.item02 {
    width: 150px;
    top: 50px;
    right: 10%;
}

.introduce-img .introduce-item.item03 {
    width: 200px;
    bottom: 40px;
    right: 10%;
}

/* introduce-section text */
.introduce-txt {
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.introduce-txt .introduce-info {
    color: var(--main-color01);
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 14px;
}

.introduce-txt .introduce-tit {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.5;
    font-family: var(--font-type02);
    margin-bottom: 0;
    letter-spacing: -5%;
}

.introduce-txt .introduce-tit02>span {
    position: relative;
}

.introduce-txt .introduce-tit02>span::before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: var(--point-color01);
    border-radius: 50%;
    position: absolute;
    right: -30px;
    bottom: 15%;
}

/* introduce-section more-btn */
.introduce-section .more-btn {
    background-color: #fff;
    color: var(--main-color01);
    border: 3px solid var(--main-color01);
    padding: 13px 24px 13px 34px;
    justify-content: space-between;
    column-gap: 30px;
}

.introduce-section .more-btn:hover,
.introduce-section .more-btn:focus {
    background-color: var(--main-color01);
    color: #fff;
}

.introduce-section .more-btn svg {
    display: block;
}

.introduce-section .more-btn:hover svg path,
.introduce-section .more-btn:focus svg path {
    fill: #fff;
}

@media (min-width:567px) {
    .introduce-txt .introduce-tit {
        font-size: 32px;
    }
}

@media (min-width:640px) {
    .introduce-section {
        min-height: 0;
    }

    .introduce-img .introduce-item.item01 {
        left: 2%;
        top: 15%;
    }

    .introduce-img .introduce-item.item02 {
        top: 50px;
        right: 10%
    }

    .introduce-img .introduce-item.item03 {
        width: 200px;
        right: 20%;
        bottom: 120px;
    }
}

@media (min-width:992px) {
    .introduce-section {
        /* padding: 220px 0; */
    }

    .introduce-img .introduce-item.item01 {
        top: 80px;
        left: 40px;
    }

    .introduce-img .introduce-item.item02 {
        width: 240px;
        top: 40px;
        right: 70px;
    }

    .introduce-img .introduce-item.item03 {
        width: 220px;
        right: 150px;
    }

    .introduce-txt .introduce-info {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .introduce-txt .introduce-tit {
        font-size: 36px;
        line-height: inherit;
    }
}

@media (min-width:1400px) {
    .introduce-section {
        padding: 350px 0 300px;
    }

    .introduce-img .introduce-item.item01 {
        top: 250px;
        left: 50px;
        box-shadow: 8px 15px 40px rgba(0, 0, 0, 0.15);
        width: auto;
        height: auto;
    }

    .introduce-img .introduce-item.item02 {
        top: calc(150 / 970 * 100%);
        right: 50px;
        box-shadow: 8px 15px 40px rgba(0, 0, 0, 0.15);
        width: auto;
        height: auto;
    }

    .introduce-img .introduce-item.item03 {
        right: 150px;
        width: auto;
        height: auto;
    }

    .introduce-txt .introduce-info {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .introduce-txt .introduce-tit {
        font-size: 48px;
    }
}

@media (min-width:1600px) {
    .introduce-img .introduce-item.item01 {
        top: 250px;
        left: 100px;
        width: auto;
        height: auto;
    }

    .introduce-img .introduce-item.item02 {
        right: 0;
    }

    .introduce-img .introduce-item.item03 {
        right: calc(200 / 1920 * 100%);
    }

    .introduce-txt .introduce-tit01 {
        font-size: 56px;
    }

    .introduce-txt .introduce-tit02 {
        font-size: 64px;
    }
}

/*****************************************************
process
*****************************************************/
.process {
    position: relative;
    padding: 60px 0 50px;
}

.process-head {
    z-index: 2;
    position: relative;
    color: #fff;
}

.process .ctg-tit {
    color: #fff;
}

/* process-body */
.process-body-wrap {
    width: 100%;
    padding-left: max(36px, calc((100% - 1600px) / 2));
}

.process-body {
    position: relative;
    z-index: 1;
    padding: 26px 0 16px;
}

.process::before {
    width: calc(100% - 24px);
    height: 100%;
    background: url(/common/images/process-bg.png) no-repeat center center / cover;
    border-radius: 30px;
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: -1
}

.process::after {
    width: calc(100% - 24px);
    height: 100%;
    background-color: rgb(35 35 40 / 40%);
    border-radius: 30px;
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: -1
}

.process-foot {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
}

/* swiper */
.process .swiper-slide {}

.process .unit {
    transition: .3s;
    display: block;
    background-color: #fff;
    border-radius: 30px;
    padding: 40px 30px 50px;
}

.process .unit:hover,
.process .unit:focus {
    background-color: var(--main-color01);
}

.process .txt-box {
    margin-bottom: 20px;
}

.process .txt-box span {
    display: block;
    font-family: var(--font-type02);
    font-size: 28px;
    color: var(--main-color01);
    margin-bottom: 25px;
}

.process .unit:hover .txt-box span,
.process .unit:focus .txt-box span {
    color: #fff;
}

.process .txt-box strong {
    display: block;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.process .unit:hover .txt-box strong,
.process .unit:focus .txt-box strong {
    color: #fff;
}

.process .txt-box p {
    font-size: 18px;
    font-weight: 600;
    color: var(--font-color03);
    margin-bottom: 0;
}

.process .unit:hover .txt-box p,
.process .unit:focus .txt-box p {
    color: rgba(255, 255, 255, 0.5);
}

.process .img-box {
    display: flex;
    justify-content: flex-end;
    height: 18px;
}

.process .img-box img {
    height: 100%;
    object-fit: contain;
}

.process .control .play-btn.stop {
    background: url(/common/images/stop-icon-w.svg) center center / contain no-repeat;
}

.process .control .play-btn.play {
    background: url(/common/images/play-icon-w.svg) center center / contain no-repeat;
}

.process .control {
    column-gap: 20px;
    padding-left: 10px;
}

.process .swiper-horizontal>.slider-progress.swiper-pagination-progressbar,
.process .slider-progress.swiper-pagination-progressbar.swiper-pagination-horizontal,
.process .slider-progress.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.process .swiper-vertical>.slider-progress.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    display: none;
}

.process .slider-fraction.swiper-pagination {
    margin: 0;
}

@media(min-width: 576px) {
    .process {}

    .process::before {}

    .process .control {
        column-gap: 0;
        padding-left: 0;
    }

    .process .swiper-horizontal>.slider-progress.swiper-pagination-progressbar,
    .process .slider-progress.swiper-pagination-progressbar.swiper-pagination-horizontal,
    .process .slider-progress.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
    .process .swiper-vertical>.slider-progress.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
        display: block;
    }

    .process .slider-fraction.swiper-pagination {
        margin: 0 30px 0 60px;
    }
}

@media(min-width: 768px) {
    .process::before {}

    .process .unit {
        padding: 60px 36px;
    }

    .process .txt-box {
        margin-bottom: 40px;
    }

    .process .txt-box span {
        font-size: 36px;
    }

    .process .txt-box strong {
        font-size: 28px;
    }

    .process .txt-box p {
        font-size: 20px;
    }

    .process .img-box {
        height: 22px;
    }
}

@media(min-width: 992px) {
    .process {
        padding: 100px 0;
    }

    .process-body-wrap {
        padding-left: max(75px, calc((100% - 1600px) / 2));
    }

    .process-body {
        padding: 40px 0 24px;
    }

    .process::before {
        width: calc(100% - 60px);
    }

    .process::after {
        width: calc(100% - 60px);
    }

    .process .unit {
        padding: 80px 40px;
    }

    .process .txt-box {
        margin-bottom: 80px;
    }

    .process .txt-box span {
        font-size: 40px;
    }

    .process .txt-box strong {
        font-size: 28px;
    }

    .process .txt-box p {
        font-size: 20px;
    }

    .process .img-box {
        height: 24px;
    }
}

@media(min-width: 1200px) {
    .process::before {}
}

@media(min-width: 1400px) {
    .process {}

    .process::before {
        max-width: 1800px;
        width: calc(100% - 120px);
    }

    .process::after {
        max-width: 1800px;
        width: calc(100% - 120px);
    }

    .process-body-wrap {
        padding-left: max(90px, calc((100% - 1600px) / 2));
    }

    .process-body {}

    .process .unit {}

    .process .txt-box {}
}

@media(min-width: 1800px) {
    .process-body {
        padding: 50px 0 40px;
    }

    .process::before {}

    .process-body-wrap {
        padding-left: max(60px, calc((100% - 1600px) / 2));
    }

    .process .txt-box {}
}

/*****************************************************
news
*****************************************************/
.news {
    position: relative;
    padding-top: 40px;
}

.news-head {
    z-index: 2;
    position: relative;
    text-align: center;
}

.news .main-tit {
    margin-bottom: 20px;
}

.news .ctg-tit {}

.news .tab-default {
    margin-bottom: 0;
}

/* news-body */
.news-body {
    position: relative;
    z-index: 1;
    padding: 26px 0 16px;
}

/* swiper */
.news .swiper {}

.news .swiper-slide {}

.news .unit {
    transition: .3s;
    display: block;
    background-color: #fff;
    border-radius: 30px;
    padding: 30px 30px 40px;
    border: 1px solid var(--border-color01);
}

.news .unit:hover,
.news .unit:focus {
    border: 1px solid var(--main-color01);
}

.news .txt-box {
    margin-bottom: 30px;
}

.news .txt-box span {
    font-size: 16px;
    font-weight: bold;
    padding: 14px 20px;
    margin-bottom: 20px;
    letter-spacing: -5%;
}

.news .txt-box p {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    min-height: 90px;
    letter-spacing: -5%;
}

.news .date-box {
    display: flex;
    align-items: center;
    column-gap: 6px;
}

.news .date-box img {
    width: 20px;
}

.news .date-box p {
    font-size: 16px;
    font-weight: 600;
    color: var(--font-color03);
    margin-bottom: 0;
    letter-spacing: -5%;
}

.news .control {
    justify-content: center;
}

@media(min-width: 576px) {
    .news {}

    .news .swiper {}
}

@media(min-width: 768px) {
    .news {
        padding-top: 80px;
    }

    .news .unit {
        padding: 40px 30px;
    }

    .news .txt-box {
        margin-bottom: 60px;
    }

    .news .txt-box span {
        font-size: 17px;
    }

    .news .txt-box p {
        font-size: 24px;
        min-height: 108px;
    }

    .news .date-box img {
        width: 24px;
    }

    .news .date-box p {
        font-size: 18px;
    }
}

@media(min-width: 992px) {
    .news {}

    .news-body {
        padding: 50px 0;
    }

    .news .unit {
        padding: 60px 40px 50px;
    }

    .news .txt-box {
        margin-bottom: 120px;
    }

    .news .txt-box span {
        font-size: 17px;
    }

    .news .txt-box p {
        font-size: 28px;
        min-height: 126px;
    }

    .news .date-box img {
        width: 25px;
    }

    .news .date-box p {
        font-size: 19px;
    }
}

@media(min-width: 1200px) {
    .news::before {}

    .news-head {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        text-align: start;
    }

    .news .main-tit {
        margin-bottom: 0;
    }
}

@media(min-width: 1400px) {
    .news {
        padding-top: 120px;
    }

    .news-body {}

    .news .unit {}

    .news .txt-box {}
}

@media(min-width: 1800px) {
    .news-body {
        padding: 50px 0;
    }

    .news .txt-box {}
}

/*****************************************************
banner
*****************************************************/
.banner {
    position: relative;
    padding: 40px 0;
}

.banner-head {
    z-index: 2;
    position: relative;
    text-align: center;
}

.banner .ctg-tit {}

.banner .tab-default {
    margin-bottom: 0;
}

/* banner-body */
.banner-body {
    position: relative;
    z-index: 1;
}

/* swiper */
.banner .banner-swiper {
    padding: 12px 0 20px;
    overflow: hidden;
}

.banner .swiper-slide {
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.banner .swiper-slide-active {
    opacity: 1;
    visibility: visible;
}

.banner .swiper-slide-prev,
.banner .swiper-slide-next {
    opacity: .5;
    visibility: visible;
}

.banner .unit {
    transition: .3s;
    display: block;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
}

.banner .swiper-slide-active .unit {
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.16);
}

.banner .unit .img-box {
    width: 100%;
    aspect-ratio: 2 / 1;
}

.banner .unit .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .control {
    justify-content: center;
}

@media(min-width: 576px) {
    .banner {}

    .banner .banner-swiper {}
}

@media(min-width: 768px) {
    .banner {
        padding: 80px 0 0;
    }

    .banner .swiper-slide {
        width: 70%;
    }
}

@media(min-width: 992px) {
    .banner {}

    .banner-body {}

    .banner .banner-swiper {
        padding: 50px 0;
    }

    .banner .swiper-slide {
        width: 65%;
    }

    .banner .img-box {}
}

@media(min-width: 1200px) {}

@media(min-width: 1400px) {
    .banner {
        padding: 120px 0 40px;
    }

    .banner-body {}

    .banner .swiper-slide {
        width: 55%;
    }

    .banner .txt-box {}
}

@media(min-width: 1800px) {
    .banner-body {}
}