/*****************************************************
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;
}

/* 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 .visual-swiper .swiper-slide {
    overflow: hidden;
}
.visual {
    /* max-height: 850px; */
    /* height: 540px; */
    width: 100%;
    position: relative;
}

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

.visual .visual-swiper .visual-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.12);
}
.visual .visual-swiper .swiper-slide-active .visual-img {
    transform: scale(1);
    transition: all 3s;
}


.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 {
    z-index: 1;
    color: #fff;
}
.inner-logo {
    display:flex;
    gap:10px;
    justify-content:center;
    margin-bottom:20px;
}
.inner-logo img {
    max-width:140px;
}

.visual-head {
    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;
}

.visual-wrap .major {
    font-family: var(--font-type02);
    font-size: 24px;
}

.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 .visual-swiper {
    height: 600px;
    }

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

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

    .visual-info .tit {
        width: auto;
    }
    .inner-logo {
    justify-content:flex-end;
    gap: 20px;
    margin-bottom: 40px;
    }
    .inner-logo img {
        max-width:160px;
    }
}

@media(min-width: 992px) {
    .visual-head {
        margin-top: 60px;
    }
    .visual .visual-swiper {
        height: 680px;
    }

    .visual-foot {
        display: flex;
        align-items: center;
        max-width: 1080px;
        margin: 0 auto;
    }

    .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;
    }
}


@media(min-width: 1400px) {
  .visual .visual-swiper {
        height: 760px;
    }
    .visual-wrap .major {
        font-size: 50px;
    }
    .inner-logo {
        gap: 30px;
        margin-bottom: 80px;
    }
     .inner-logo img {
        max-width:220px;
    }
}

@media(min-width: 1800px) {

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

    .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;
    position: absolute;
    top: 0;
    width: 100%;
    padding: 40px 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 {
    }

    .flow-list {
        padding: 50px;
        max-width: 1080px;
    }

    .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: 42px;
        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: 15px;
    }

    .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: 1200px) {
    .flow-list .flow-list-inner .dash span {
        font-size: 16px;
    }
}

@media (min-width: 1400px) {
    .flow-list .flow-list-inner .sec01 {
        margin-bottom: 20px;
        padding: 30px 60px;
    }

    .flow-list .flow-list-inner .sec02 .dash-wrap {
        width: calc(100% - 214px);
    }
}

/* 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-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: rgba(67, 66, 80, 0.6);
    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 .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 .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: 1400px) {
    .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));
    }
}

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

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

}

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

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

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

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

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

/* swiper */
.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: 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-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-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;
    }
}

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

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

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

.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: 768px) {
    .banner {
        padding: 80px 0 0;
    }

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

@media(min-width: 992px) {
    .banner .banner-swiper {
        padding: 50px 0;
    }

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

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

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

}

/* ---------- reset & stage ---------- */

.mna-stage{
  position:relative;
  width:100%;
  max-width: 1060px;
  min-height: 560px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 60px 20px;
  /* overflow:hidden; */
}

/* ---------- sphere group (left / right) ---------- */
.mna-sphere-group{
  position:relative;
  width: clamp(260px, 26vw, 460px);
  aspect-ratio:1/1;
  flex:0 1 auto;
  min-width:0;
}

.mna-ring{
  position:absolute;
  inset:0;
  pointer-events:none;
  width:100%;
  height:100%;
}
.mna-ring-dash{
  fill:none;
  stroke:rgba(255,255,255,0.14);
  stroke-width:1;
  stroke-dasharray:4 6;
}
.mna-arc{
  fill:none;
  stroke:#c4b5fd;
  stroke-width:1.5;
  stroke-dasharray:4 6;
  opacity:.25;
  transition:opacity .6s ease;
}
.mna-arc-blue{ stroke:#93c5fd; }
.mna-sphere-group.is-active .mna-arc{ opacity:1; }

.mna-arc-dot{
  fill:#e9d5ff;
  opacity:0;
  offset-distance:0%;
  filter:drop-shadow(0 0 6px #c4b5fd);
  transition:offset-distance 1.6s ease, opacity .3s ease;
}
.mna-arc-dot-blue{ fill:#dbeafe; filter:drop-shadow(0 0 6px #93c5fd); }
.mna-sphere-group.is-active .mna-arc-dot{ opacity:1; offset-distance:100%; }

.mna-flow-line{
  stroke:#c4b5fd;
  stroke-width:2;
  stroke-dasharray:6 8;
  opacity:.5;
  animation:mnaFlowDash 1s linear infinite;
}
.mna-flow-line-blue{ stroke:#93c5fd; }

.mna-flow-dot{ filter:drop-shadow(0 0 5px #c4b5fd); animation:mnaFlowDotLeft 2s linear infinite; }
.mna-flow-dot-left{ fill:#e9d5ff; offset-path:path('M480,310 L620,310'); animation-name:mnaFlowDotLeft; }
.mna-flow-dot-right{ fill:#dbeafe; filter:drop-shadow(0 0 5px #93c5fd); offset-path:path('M140,310 L0,310'); animation-name:mnaFlowDotRight; }

/* ---------- main spheres ---------- */
.mna-sphere{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:54.8%;
  height:54.8%;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  animation:mnaSpherePulse 6s ease-in-out infinite;
}
.mna-sphere span{
  color:#fff;
  font-size:clamp(16px, 2vw, 26px);
  font-weight:800;
  letter-spacing:-0.5px;
  text-align:center;
}
.mna-sphere-left{
  background:radial-gradient(circle at 35% 30%, #b79bfa, #7c3aed 45%, #4c1d95 85%);
  box-shadow:0 0 90px 10px rgba(124,58,237,0.5);
}
.mna-sphere-right{
  background:radial-gradient(circle at 35% 30%, #9dc4fd, #3b82f6 45%, #1e3a8a 85%);
  box-shadow:0 0 90px 10px rgba(59,130,246,0.5);
  animation-delay:1.5s;
}

/* ---------- floating labels ---------- */
.mna-labels{
  position:absolute;
  inset:0;
  pointer-events:none;
}
.mna-label{
  position:absolute;
  color:rgba(255,255,255,0.85);
  font-size: clamp(17px, 2vw, 28px);
  font-weight:600;
  white-space:nowrap;
  opacity:0;
  cursor:pointer;
  pointer-events:auto;
  display:inline-block;   /* 추가 */
  padding:6px 2px;
  transform:scale(.7);
  transition:opacity .45s ease, transform .45s ease, color .2s ease, font-size .15s ease;
}
.mna-label.align-right{ text-align:right; transform-origin:right center; }
.mna-label.align-left{ text-align:left; transform-origin:left center; }
.mna-sphere-group.is-active .mna-label{ opacity:1; transform:scale(1); }
.mna-label::after{
  content:"›";
  display:inline-block;
  margin-left:6px;
  font-weight:800;
  color:rgba(255,255,255,0.55);
  transition:color .2s ease;
}
/* per-item hover feedback — higher specificity so it wins over the
   is-active base scale(1) above, with its own snappier transition */
   .mna-sphere-group.is-active .mna-label {
    color:#fff
   }
.mna-sphere-group.is-active .mna-label:hover, .mna-sphere-group.is-active .mna-label:focus {
  color:#fff;
  font-size:clamp(20px, 2.3vw, 32px);
  text-decoration:underline;
  text-underline-offset:4px;
}


/* ---------- center ---------- */
.mna-center{
  flex:0 0 clamp(150px, 16vw, 220px);
  align-self:stretch;
  position:relative;
}
.mna-aurora{
  position:absolute;
  left:50%; top:50%;
  transform:translate(-50%,-50%);
  width:340px; height:340px;
  pointer-events:none;
  mix-blend-mode:screen;
  filter:blur(38px);
}
.mna-blob{ position:absolute; border-radius:50%; }
.mna-blob-1{ width:70%; height:70%; left:8%; top:6%; background:radial-gradient(circle,#a78bfa 0%,transparent 70%); opacity:.55; animation:mnaAurora1 9s ease-in-out infinite; }
.mna-blob-2{ width:65%; height:65%; right:5%; bottom:8%; background:radial-gradient(circle,#60a5fa 0%,transparent 70%); opacity:.5; animation:mnaAurora2 11s ease-in-out infinite; }
.mna-blob-3{ width:50%; height:50%; left:28%; top:22%; background:radial-gradient(circle,#22d3ee 0%,transparent 72%); opacity:.4; animation:mnaAuroraC 13s ease-in-out infinite; }

.mna-core-wrap{
  position:absolute; left:50%; top:50%;
  transform:translate(-50%,-50%);
  display:flex; align-items:center; justify-content:center;
  width:clamp(168px, 18vw, 224px);
  height:clamp(168px, 18vw, 224px);
}

/* wave lines that wrap the core and ripple outward */
.mna-core-wave{
  position:absolute;
  inset:0;
  border-radius:50%;
  border:1.5px solid rgba(196,181,253,0.55);
  animation:mnaWaveRipple 4s ease-out infinite;
  pointer-events:none;
}
.mna-core-wave-2{ animation-delay:1.3s; border-color:rgba(147,197,253,0.5); }
.mna-core-wave-3{ animation-delay:2.6s; border-color:rgba(233,213,255,0.45); }

/* spinning gradient halo just outside the core sphere */
.mna-core-ring{
  position:absolute;
  inset:-8px;
  border-radius:50%;
  background:conic-gradient(from 0deg,
    transparent 0deg, #c4b5fd 60deg, transparent 140deg,
    transparent 180deg, #93c5fd 240deg, transparent 320deg, transparent 360deg);
  -webkit-mask:radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 3px));
          mask:radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 3px));
  animation:mnaRingSpin 7s linear infinite;
  pointer-events:none;
}

/* small glowing particles orbiting the core */
.mna-orbit-ring{
  position:absolute;
  inset:-24px;
  border-radius:50%;
  pointer-events:none;
  animation:mnaRingSpin 6s linear infinite;
}
.mna-orbit-ring-2{ animation-duration:9s; animation-direction:reverse; }
.mna-orbit-dot{
  position:absolute;
  top:0; left:50%;
  width:7px; height:7px;
  transform:translateX(-50%);
  border-radius:50%;
  background:#e9d5ff;
  box-shadow:0 0 8px 2px rgba(196,181,253,0.9);
}
.mna-orbit-dot-2{
  background:#bfdbfe;
  box-shadow:0 0 8px 2px rgba(147,197,253,0.9);
}

.mna-core{
  position:relative;
  width:clamp(146px, 15.5vw, 196px);
  height:clamp(146px, 15.5vw, 196px);
  border-radius:50%;
  background:radial-gradient(circle at 32% 28%, #8b6ff0, #4c3aa8 48%, #221a4a 90%);
  border:1px solid rgba(255,255,255,0.2);
  box-shadow:0 14px 34px rgba(0,0,0,0.45), 0 0 50px rgba(124,58,237,0.35),
             inset -8px -10px 18px rgba(0,0,0,0.35), inset 6px 8px 16px rgba(255,255,255,0.18);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  padding:14px;
  animation:mnaSpherePulse2 4.5s ease-in-out infinite;
}
.mna-core-title{
  color:#f1edff;
  font-size:clamp(20px, 2.4vw, 22px);
  font-weight:800;
  text-align:center;
  line-height:1.3;
}
.mna-core-sub{
  color:rgba(241,237,255,0.65);
  font-size:clamp(10px, 1vw, 16px);
  font-weight:500;
  text-align:center;
  line-height:1.35;
  margin-top:8px;
}

/* ---------- side wrapper ---------- */
.mna-side{
  display:flex;
  flex-direction:column;
  align-items:center;
  flex:0 1 auto;
  min-width:0;
}

/* ---------- mobile popover ----------
   Lives at the body level (outside .mna-stage's overflow:hidden), positioned
   in document coordinates by JS so it always lands next to its circle,
   fully on-screen, and still scrolls naturally with the page. */
.mna-popover{
  display:none;
  position:fixed;
  left:0;
  top:0;
  width:min(88vw, 300px);
  background:rgba(12,8,30,0.88);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,0.14);
  border-radius:18px;
  padding:18px 20px;
  box-shadow:0 16px 40px rgba(0,0,0,0.45);
  opacity:0;
  pointer-events:none;
  z-index:30;
  transform:translateY(-8px);
  transition:opacity .3s ease, transform .3s ease;
}
.mna-popover.is-open{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}
.mna-popover-arrow{
  position:absolute;
  top:-8px;
  left:50%;
  transform:translateX(-50%) rotate(45deg);
  width:16px;
  height:16px;
  background:rgba(12,8,30,0.88);
  border-left:1px solid rgba(255,255,255,0.14);
  border-top:1px solid rgba(255,255,255,0.14);
}
/* when there's no room below, the card flips above the sphere —
   move the arrow to the bottom edge so it still points at the circle */
.mna-popover.flip-up .mna-popover-arrow{
  top:auto;
  bottom:-8px;
  border-left:none;
  border-top:none;
  border-right:1px solid rgba(255,255,255,0.14);
  border-bottom:1px solid rgba(255,255,255,0.14);
}

.mna-popover-list{ list-style:none; }
.mna-popover-list li + li{ margin-top:12px; }
.mna-popover-list a{
  display:flex;
  align-items:center;
  gap:9px;
  min-height: 36px;
  color:#fff;
  font-size: 20px;
  font-weight:700;
  text-decoration:none;
  line-height:1.3;
  cursor:pointer;
  transition:transform .15s ease, color .15s ease;
}
.mna-popover-list a::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  background:#93c5fd;
  flex-shrink:0;
  transition:transform .15s ease;
}
.mna-popover-list a:hover{
  color: #93c5fd;
  transform:scale(1.06);
  transform-origin:left center;
}
.mna-popover-list a:active{ opacity:.7; }

/* "view more" link under each circle */
.mna-viewmore{
  margin-top:20px;
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:none;
  border:0;
  border-bottom:1px solid rgba(255,255,255,0.35);
  font-family:inherit;
  cursor:pointer;
  color:rgba(255,255,255,0.75);
  font-size: 15px;
  font-weight:700;
  letter-spacing:1.5px;
  text-decoration:none;
  padding:0 0 3px;
  transition:color .2s ease, border-color .2s ease, gap .2s ease;
}
.mna-viewmore:hover{
  color:#fff;
  border-color:#fff;
  gap:10px;
}
.mna-viewmore-arrow{ transition:transform .2s ease; }
.mna-viewmore:hover .mna-viewmore-arrow{ transform:translateX(3px); }

/* tappable hint so it's clear the circle itself opens the menu */
.mna-sphere{ cursor:pointer; -webkit-tap-highlight-color:transparent; }

.mna-tap-hint{
  display:none;
  position:absolute;
  left:50%;
  bottom:12%;
  transform:translateX(-50%);
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  border-radius:50%;
  background:rgba(255,255,255,0.16);
  border:1px solid rgba(255,255,255,0.55);
  color:#fff;
  font-size:18px;
  font-weight:400;
  line-height:1;
  box-shadow:0 4px 12px rgba(0,0,0,0.35);
  animation:mnaTapBounce 2.4s ease-in-out infinite;
  opacity:1;
  transition:opacity .4s ease;
}
.mna-tap-hint.is-dismissed{ opacity:0; }

@keyframes mnaTapBounce{
  0%, 100% { transform:translateX(-50%) translateY(0); }
  50%      { transform:translateX(-50%) translateY(-5px); }
}

/* ---------- keyframes ---------- */
@keyframes mnaSpherePulse  { 0%,100%{ transform:translate(-50%,-50%) scale(1);} 50%{ transform:translate(-50%,-50%) scale(1.035);} }
@keyframes mnaSpherePulse2 { 0%,100%{ transform:scale(1);} 50%{ transform:scale(1.035);} }
@keyframes mnaFlowDash     { to{ stroke-dashoffset:-28px; } }
@keyframes mnaFlowDotLeft  { 0%{ offset-distance:0%; opacity:0;} 12%{ opacity:1;} 88%{ opacity:1;} 100%{ offset-distance:100%; opacity:0;} }
@keyframes mnaFlowDotRight { 0%{ offset-distance:0%; opacity:0;} 12%{ opacity:1;} 88%{ opacity:1;} 100%{ offset-distance:100%; opacity:0;} }
@keyframes mnaAurora1 { 0%,100%{ transform:translate(0%,0%) scale(1);} 50%{ transform:translate(6%,8%) scale(1.12);} }
@keyframes mnaAurora2 { 0%,100%{ transform:translate(0%,0%) scale(1);} 50%{ transform:translate(-8%,-5%) scale(1.15);} }
@keyframes mnaAuroraC { 0%,100%{ transform:translate(0%,0%) scale(1);} 50%{ transform:translate(8%,-6%) scale(1.1);} }
@keyframes mnaRingSpin { to{ transform:rotate(360deg); } }
@keyframes mnaWaveRipple{
  0%   { transform:scale(1);    opacity:.6; }
  100% { transform:scale(1.9);  opacity:0;  }
}

@media (max-width:1200px){
  .mna-stage{padding: 10px 8px;gap:2px;min-height:auto;}
  .mna-labels{ display:none; }
  .mna-popover{ display:block; }
  .mna-tap-hint{ display:flex; }
}

/* hard floor for narrow phones (iPhone SE/mini and similar, ~375px) —
   explicit small sizes instead of relying purely on flex-shrink math,
   so the diagram can never push the page into horizontal overflow */
@media (max-width:400px){
  .mna-stage{ padding:16px 6px; gap:0; }
  .mna-sphere-group{ width:clamp(92px, 27vw, 150px); }
  .mna-center{ flex-basis:clamp(78px, 15vw, 110px); }
  .mna-sphere span{ font-size:11px; }
  .mna-core{ width:78px; height:78px; padding:6px; }
  .mna-core-title{ font-size:12px; }
  .mna-core-sub{ font-size:7px; margin-top:4px; }
  .mna-tap-hint{ width:26px; height:26px; font-size:14px; bottom:8%; }
}

@media (min-width:768px) {
  .mna-stage {padding: 0;min-height: 360px;}
  .mna-viewmore {font-size:20px;}
  
}
@media (min-width:1200px) {
    .mna-viewmore {display:none}
}

@media (min-width:1400px) {
  .mna-stage {max-width: 1560px;}
  .mna-sphere-group {width: clamp(260px, 30vw, 360px);}
}

@media (min-width:1600px) {
  .mna-sphere-group {width: clamp(260px, 30vw,460px);}
}