@charset "utf-8"; /* CSS Document */
@import url("/css/2025/default.css"); @import url("/css/2025/layout.css"); /*****************************************************
keyframes
*****************************************************/
@-webkit-keyframes jump {
    0%,20%,40%,100% {
        -webkit-transform: translateY(0)
    }

    10%,30% {
        -webkit-transform: translateY(-5px)
    }
}

@keyframes jump {
    0%,20%,40%,100% {
        transform: translateY(0)
    }

    10%,30% {
        transform: translateY(-5px)
    }
}

@-webkit-keyframes jump2 {
    0%,20%,40%,100% {
        -webkit-transform: translateY(0)
    }

    10%,30% {
        -webkit-transform: translateY(-10px)
    }
}

@keyframes jump2 {
    0%,20%,40%,100% {
        transform: translateY(0)
    }

    10%,30% {
        transform: translateY(-10px)
    }
}

@-webkit-keyframes vibes {
    0%,20%,40%,100% {
        -webkit-transform: translateY(0)
    }

    10%,30% {
        -webkit-transform: translateY(-5px)
    }

    50% {
        transform: rotate(10deg);
        -webkit-transform: rotate(10deg);
    }

    75% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }

    90% {
        transform: rotate(10deg);
        -webkit-transform: rotate(10deg);
    }
}

@keyframes vibes {
    0%,20%,40%,100% {
        transform: translateY(0)
    }

    10%,30% {
        transform: translateY(-5px)
    }

    50% {
        transform: rotate(10deg);
        -webkit-transform: rotate(10deg);
    }

    75% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }

    90% {
        transform: rotate(10deg);
        -webkit-transform: rotate(10deg);
    }
}

@-webkit-keyframes vibes2 {
    50% {
        transform: rotate(10deg);
        -webkit-transform: rotate(10deg);
    }

    75% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }

    90% {
        transform: rotate(10deg);
        -webkit-transform: rotate(10deg);
    }
}

@keyframes vibes2 {
    50% {
        transform: rotate(10deg);
        -webkit-transform: rotate(10deg);
    }

    75% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }

    90% {
        transform: rotate(10deg);
        -webkit-transform: rotate(10deg);
    }
}

@keyframes move {
    0% {
        transform: translate(0,0);
    }

    50% {
        transform: translate(90px,0);
    }

    50.1% {
        transform: translate(90px,0) scaleX(-1);
    }

    100% {
        transform: translate(0,0) scaleX(-1);
    }
}

@keyframes move2 {
    0% {
        transform: translate(0,0);
    }

    50% {
        transform: translate(-90px,0);
    }

    50.1% {
        transform: translate(-90px,0) scaleX(-1);
    }

    100% {
        transform: translate(0,0) scaleX(-1);
    }
}

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

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

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

@keyframes balloon2 {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    35%,75% {
        opacity: 1;
    }

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

@-webkit-keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

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

@keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

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

@keyframes active-circle {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0.5
    }

    50% {
        opacity: 1.0
    }

    100% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0
    }
}

@keyframes wave {
    0% {
        margin-left: 0;
    }

    100% {
        margin-left: -1600px;
    }
}

@keyframes swell {
    0%, 100% {
        transform: translate3d(0,-25px,0);
    }

    50% {
        transform: translate3d(0,5px,0);
    }
}


/*****************************************************
common
*****************************************************/
/* side-navi */
.side-navi {
    position: fixed;
    top: 0;
    left: 0;
    width: auto;
    height: 100vh;
    z-index: 100;
}

.side-navi .inner {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translate3d(0, -50%, 0);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.side-navi .inner .mask {
    position: relative;
}

.side-navi .navi-ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.side-navi .navi-ul li .navi-dots {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    padding: 0;
    color: #666;
    font-size: 16px;
}

.side-navi .navi-ul li:not(:last-child) .navi-dots::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 16px;
    left: 9px;
    width: 1px;
    height: 19px;
    background: var(--gray-color04);
}

.side-navi .navi-ul li .navi-dots::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 50px;
    border: 4px solid var(--gray-color04);
    transition: all 0.4s;
}

.side-navi .navi-ul li .navi-dots:hover::after, .side-navi .navi-ul li .navi-dots:focus::after, .side-navi .navi-ul li .navi-dots.active::after {
    border: 4px solid var(--main-color02);
    filter: drop-shadow(2px 8px 15px var(--main-color01));
}

.side-navi .navi-ul li .navi-dots:hover, .side-navi .navi-ul li .navi-dots:focus {
    border: none;
    outline-style: inherit !important;
}

.side-navi .navi-ul li .navi-dots:focus-visible {
    box-shadow: none;
    outline-style: dashed !important;
    outline-color: var(--point-color01);
    outline-width: .2rem !important;
    outline-offset: 0 !important;
}

.side-navi .navi-ul li .navi-dots.active>span:nth-child(2) {
    animation-delay: 0.5s
}

.side-navi .navi-ul li .navi-dots.active>span:nth-child(3) {
    animation-delay: 1s
}

.side-navi .navi-ul li .navi-dots.active>span {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgb(7 79 189 / 50%);
    border-radius: 50%;
    animation: active-circle 1.8s cubic-bezier(1, 2, 0.66, 3) infinite
}

.section {
    margin-bottom: 130px;
}

.s-tit-wrap {
    margin-bottom: 50px;
    text-align: center
}

.s-tit-wrap h2.tit {
    position: relative;
    display: block;
    padding: 0 20px;
    padding-top: 25px;
    font-family: var(--font-type03);
    font-size: 56px;
    font-weight: 800;
    color: #313DA9;
}

.s-tit-wrap h2.tit > span {
    color: #333
}

.s-tit-wrap h2.tit::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
    left: 49%;
    width: 41px;
    height: 40px;
    background: url(/image/2025/main/main-bullet-deco.png) no-repeat center top;
}

.s-tit-wrap.left h2.tit::before {
    left: 10px;
}

.s-tit-wrap.right h2.tit::before {
    left: auto;
    right: 0;
}
.s-tit-wrap h2.tit::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 10px;
    left: 0;
    width: 268px;
    height: 123px;
    background: url(/image/2025/main/main-stit-bg01.png) no-repeat center;
    z-index: -1;
}

.s-tit-wrap .txt {
    color: #333;
    font-family: var(--font-type01);
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -.025rem;
}

/* tab */
.main .nav-tabs .tabmenu > ul {
    gap: 30px;
    justify-content: flex-start;
}

.main .nav-tabs .tabmenu > ul > li {
    flex: 0 0 auto;
    width: inherit;
}

.main .nav-tabs .tabmenu > ul > li > a {
    padding: 10px 15px;
    border-radius: 50px;
}


.main .nav-tabs .tabmenu > ul > li.over > a {
    padding: 6px 30px;
    box-shadow: none;
}

.main-container .nav-tabs .tabmenu {
    position: relative;
    padding: 0;
    background: transparent;
}

.main-container .tabmenu > ul > li.over {
    display: inline-flex;
}

.main-container .tabmenu > ul > li > .tit {
    padding: 7px 15px;
}

.main-container .tabmenu > ul > li {
    position: relative;
}

.main-container .tabmenu > ul > li:not(:first-child)::before {
    content: '';
    display: inline-block;
    width: 2px;
    height: 24px;
    background: #C0C0C0;
    position: absolute;
    top: 50%;
    left: -15px;
    transform: translateY(-50%) rotate(15deg);
}

.main-container .nav-tabs .tabmenu > ul > li > a > span {
    position: relative;
    font-size: 24px;
    line-height: 1.4;
}

.main-container .nav-tabs .tabmenu > ul > li .more {
    display: none;
}

.main-container .nav-tabs .tabmenu > ul > li.over .more {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    width: auto;
    height: 50px;
    padding: 8px 18px;
    border-radius: 50px;
    border: 5px solid #ECECEC;
    background: #fff;
    color: #767676;
    font-size: 16px;
    transition: all 0.3s ease-out
}

.main-container .more::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50px;
    background: url(/image/2025/icon-more.svg) no-repeat center;
    transition: 0.3s all ease-in-out;
}

.main-container .more::befor {
    content: '';
    position: absolute;
    width: 2px;
    height: 12px;
    border-radius: 50px;
    background-color: #9f9f9f;
    top: 50%;
    right: 23px;
    transform: translateY(-50%);
    display: none;
}

.main-container .more:hover, .main-container .more:focus {
    border: 5px solid var(--main-color01);
    font-weight: 600;
}

.main-container .more:hover::before, .main-container .more:hover::after, .main-container .more:focus::before, .main-container .more:focus::after {
    transform: rotate(90deg);
}

/* swiper */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-container {
    min-height: 0;
    box-sizing: border-box;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.swiper-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-button-next, .swiper-button-prev, .swiper-pagination {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    display: flex;
    align-items: center;
    width: auto;
    height: 26px;
    gap: 16px;
    top: 0;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px
}

.player-controls {
    margin: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-shrink: 0;
    border-radius: 50%;
    background: #fff;
    z-index: 10;
}

.play-pause {
    position: relative;
    background: none;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50px;
    border: 5px solid var(--gray-color02);
}

.play-pause::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-image: url(/image/2025/icon-playpause.svg);
}

.play-pause.pause::before {
    background-position: -20px 0;
}

.play-pause.play::before {
    background-position: 0 0;
}

.play-pause.pause:hover::before, .play-pause.pause:focus-visible::before {
    background-position: -20px -20px;
}

.play-pause.play:hover::before, .play-pause.play:focus-visible::before {
    background-position: 0 -20px;
}

.play-pause:hover, .play-pause:focus-visible {
    border: 5px solid var(--main-color02);
}

.player-controls:hover button::before, .player-controls:focus-visible button::before, .play-pause:hover::before, .play-pause:focus-visible::before {
    color: var(--main-color02)
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--gray-color06);
}

.swiper-pagination-bullet-active {
    position: relative;
    width: 20px;
    height: 23px;
    padding-bottom: 3px;
    background: transparent;
    border-radius: 50px;
    color: var(--point-color01);
    font-family: var(--font-type03);
    font-size: 22px;
    font-weight: 600;
    line-height: 20px;
}

.swiper-pagination-bullet:hover, .swiper-pagination-bullet:focus-visible {
    background: #1d1d1d !important;
    opacity: 1;
}

.swiper-pagination-bullet:focus-visible {
    outline-style: dashed !important;
    outline-color: var(--point-color01);
    outline-width: .2rem !important;
    outline-offset: 0 !important;
}

.swiper-pagination-bullet-active:hover, .swiper-pagination-bullet-active:focus-visible {
    background: transparent !important;
}

.swiper-pagination-bullet-active:hover::before {
    content: '';
    display: inline-block;
    position: absolute;
    left: 50%;
    bottom: -1px;
    width: 100%;
    height: 3px;
    transform: translateX(-50%);
    border-bottom: 2px dashed var(--point-color01);
}

.swiper-nav-wrap {
    display: flex;
    background: var(--gray-color02);
    border-radius: 50px;
}

.swiper-nav {
    width: 45px;
    height: 45px;
    margin: 0 2px;
    padding: 22px;
    background: var(--gray-color02);
    border-radius: 50px;
    overflow: hidden;
}

.swiper-nav:hover, .swiper-nav:focus-visible {
    background: var(--main-color02);
    transition: all 0.3s ease-out;
}

.swiper-nav:focus-visible {
    outline-style: dashed !important;
    outline-color: var(--point-color01);
    outline-width: .2rem !important;
    outline-offset: 0 !important;
}

.swiper-nav::after {
    color: #767676;
    font-size: 16px;
    font-weight: 600;
}

.swiper-nav:hover::after, .swiper-nav:focus-visible::after {
    color: #fff
}

/* video */
.sw-visual .swiper-slide .video-wrap {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.sw-visual .swiper-slide .video-wrap video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.sw-visual .swiper-slide .video-btn {
    position: absolute;
    bottom: 70px;
    left: calc(50% - 700px);
    width: 40px;
    max-width: 1400px;
    z-index: 10;
}

.sw-visual .swiper-slide .video-btn button {
    width: 41px;
    height: 41px;
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.66);
    position: relative;
}

.sw-visual .swiper-slide .video-btn button:hover, .sw-visual .swiper-slide .video-btn button:focus-visible {
    background: var(--gray-color03);
}

.sw-visual .swiper-slide .video-btn button .bi {
    font-size: 20px;
    color: #111;
}

/*****************************************************
main
*****************************************************/
#contents.main-container {
    min-height: auto;
}

/* main-visual */
.main-visual {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.main-visual .swiper-wrapper {
    height: 100%;
}

.main-visual .swiper-slide {
    position: relative
}

.main-visual .swiper-slide::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background: rgb(19 23 39 / 30%);
    z-index: 1;
}

.main-visual .swiper-slide .img {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.main-visual .swiper-slide .img > img {
    width: 100%;
    height: 100%;
    min-width: 1400px;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    border-radius: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.main-visual .copy {
    width: 100%;
    max-width: 1400px;
    position: absolute;
    bottom: 254px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 10;
}

.main-visual .copy > p {
    color: #fff;
    text-align: right;
    font-size: 34px;
    font-weight: 500;
    text-shadow: 2px 6px 20px rgb(0 0 0 / 50%);
}

.main-visual .swiper-indicator {
    display: inline-flex;
    justify-content: flex-end;
    width: 700px;
    max-width: 1400px;
    position: absolute;
    bottom: 70px;
    left: 50%;
    gap: 0;
}

.main-visual .swiper-pagination {
    height: 45px;
    margin: 0;
    padding: 0 20px;
    background: rgba(0,0,0,0.3);
    border-radius: 50px;
    gap: 20px;
}

.main-visual .swiper-pagination-bullet {
    background: #fff;
    opacity: 1 !important;
}

.main-visual .swiper-pagination-bullet-active,.main-visual .swiper-pagination-bullet-active:hover, .main-visual .swiper-pagination-bullet-active:focus-visible {
    background: transparent !important;
}

.main-visual .player-controls {
    background: transparent
}

.main-visual .play-pause {
    background: transparent;
    border: 5px solid rgba(255,255,255,0.5);
}

.main-visual .play-pause.pause::before {
    background-position: -20px -40px;
}

.main-visual .play-pause.play::before {
    background-position: 0 -40px;
}

.main-visual .play-pause.pause:hover::before, .main-visual .play-pause.pause:focus-visible::before {
    background-position: -20px -20px;
}

.main-visual .play-pause.play:hover::before, .main-visual .play-pause.play:focus-visible::before {
    background-position: 0 -20px;
}

.main-visual .play-pause:hover, .main-visual .play-pause:focus-visible {
    border: 5px solid var(--main-color02);
}

/* sns */
.sns {
    position: relative;
    padding: 180px 0 100px;
    overflow: hidden
}

.sns::before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: url(/image/2025/main/bg-bisco.png) no-repeat right 10% top
}

.sns .nav-tabs .tabmenu {
    margin: 0;
    padding-top: 90px;
    padding-bottom: 14px;
}

.sns .nav-tabs .tabmenu .character {
    position: absolute;
    top: 0;
    right: 0;
    width: 176px;
    height: 156px;
    -webkit-animation: jump 3.5s ease infinite;
    animation: jump 3.5s ease infinite;
    z-index: 2;
}

.sns .nav-tabs .tabmenu .character::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50px;
    right: 90px;
    width: 77px;
    height: 73px;
    background: url(/image/2025/main/sns-chracter-obj.png) no-repeat right top;
    -webkit-animation: vibes 3.5s ease infinite;
    animation: vibes 3.5s ease infinite;
    z-index: -1;
}

.sns .nav-tabs .tabmenu > ul {
    gap: 10px
}

.sns .nav-tabs .tabmenu > ul > li:not(:first-child)::before {
    display: none;
}

.sns .nav-tabs .tabmenu > ul > li > a {
    position: relative;
    padding: 0;
    width: 50px;
    height: 50px;
    background: #727272;
    transition: all 0.3s ease-out
}

.sns .nav-tabs .tabmenu > ul > li.over > a, .sns .nav-tabs .tabmenu > ul > li > a:hover, .sns .nav-tabs .tabmenu > ul > li > a:focus-visible {
    padding: 6px 15px;
    transition: all 0.3s ease-out
}

.sns .nav-tabs .tabmenu > ul > li.sns-01.over > a::before, .sns .nav-tabs .tabmenu > ul > li.sns-01 > a:hover, .sns .nav-tabs .tabmenu > ul > li.sns-01 > a:focus-visible {
    background-color: #2A569C;
}

.sns .nav-tabs .tabmenu > ul > li.sns-02.over > a::before, .sns .nav-tabs .tabmenu > ul > li.sns-02 > a:hover, .sns .nav-tabs .tabmenu > ul > li.sns-02 > a:focus-visible {
    background-color: #E6002E;
}

.sns .nav-tabs .tabmenu > ul > li.sns-03 > a:hover, .sns .nav-tabs .tabmenu > ul > li.sns-03 > a:focus-visible {
    background: radial-gradient(circle farthest-corner at 32% 106%,#ffe17d 0%,#ffcd69 10%,#fa9137 28%,#eb4141 42%,transparent 82%) , linear-gradient(135deg,#234bd7 12%,#c33cbe 58%);
}

.sns .nav-tabs .tabmenu > ul > li.sns-04 > a:hover, .sns .nav-tabs .tabmenu > ul > li.sns-04 > a:focus-visible {
    background-color: #027C38;
}

.sns .nav-tabs .tabmenu > ul > li > a:not(.more)::before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: center;
}

.sns .nav-tabs .tabmenu > ul > li.sns-01 > a::before {
    background-image: url(/image/2025//sns-facebook.svg)
}

.sns .nav-tabs .tabmenu > ul > li.sns-02 > a::before {
    background-image: url(/image/2025/sns-youtube.svg)
}

.sns .nav-tabs .tabmenu > ul > li.sns-03 > a::before {
    background-image: url(/image/2025/sns-instagram.svg)
}

.sns .nav-tabs .tabmenu > ul > li.sns-04 > a::before {
    background-image: url(/image/2025/sns-blog.svg)
}

.sns .nav-tabs .tabmenu > ul > li > a:hover::before, .sns .nav-tabs .tabmenu > ul > li > a:focus-visible::before {
    transform: rotateY(360deg);
    transition-duration: .4s;
}

.sns .nav-tabs .tabmenu > ul > li > a.more::before {
    background-image: none;
}

.sns .nav-tabs .tabmenu > ul > li > a.link::after {
    content: '';
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 50px;
    position: absolute;
    top: -12px;
    right: -6px;
    z-index: 10;
    background-color: #949494;
    background-image: url(/image/2025/icon-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    color: #fff;
    transform: rotate(-45deg);
    font-size: 23px;
    line-height: 1.1;
}

.sns .nav-tabs .tabmenu > ul > li > a.link:hover::after, .sns .nav-tabs .tabmenu > ul > li > a.link:focus-visible::after {
    background-color: #333;
}

.sns .nav-tabs .tabmenu > ul > li > a.more:hover, .sns .nav-tabs .tabmenu > ul > li > a.more:focus-visible {
    background: #fff;
    color: #222;
}

.sns-list {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(4, 1fr);
    height: 355px;
}

.sns-list li {
    min-width: 0;
    margin: 0;
}

.sns-list li > a {
    position: relative;
    display: inline-block;
    width: 100%;
}

.sns-list li > a::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    background: #0E144C;
    background: linear-gradient(360deg,rgba(14, 20, 76, 1) 0%, rgba(14, 20, 76, 0) 100%);
    display: none;
}

.sns-list li > a .tit {
    display: -webkit-box;
    width: 100%;
    height: 64px;
    margin: 0;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 600;
    font-size: 21px;
}

.sns-list li .img-box {
    position: relative;
    /* width: 100%; */
    height: 0;
    padding-bottom: 90%;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    background: #f5f5f5 url(/image/2025/thumb-icon.png) no-repeat center;
    background-size: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s all ease-in-out;
}

.sns-list li .img-box .img-thumb img {
}

.sns-list li .img-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all .4s ease-in-out;
    object-fit: cover;
}

.sns-list li > a:focus {
    border-radius: 15px;
}

.sns-list li > a:hover .img-box img, .sns-list li > a:focus .img-box img {
    transform: scale(1.1);
    transition: 0.3s all ease-in-out;
}

.sns-list li > a .img-box:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    z-index: 3;
    background: transparent;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.sns-list li > a:hover .img-box:before, .sns-list li > a:focus .img-box:before {
    border: 3px solid var(--main-color02);
}

.sns-list li > a:hover .img-hover, .sns-list li > a:focus .img-hover {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    text-align: center;
    background: url(/image/2025/main/main-corner-bg02.png) no-repeat center;
    transition: 0.3s all ease-in-out;
}

.sns-list li > a:hover .img-hover::before, .sns-list li > a:focus .img-hover::before, .sns-list li > a:hover .img-hover::after, .sns-list li > a:focus .img-hover::after {
    content: "";
    position: absolute;
    top: 5px;
    right: 0;
    width: 60px;
    height: 32px;
    background: url(/image/2025/main/icon-link.png) no-repeat center;
    transition: 0.3s all ease-in-out;
}

.ocean {
    width: 100%;
    height: 180px;
    position: absolute;
    top: 590px;
    left: 0;
    background: #EEF4FF;
    background: linear-gradient(180deg, rgba(238, 244, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
}

.wave {
    background: url(/image/2025/main/wave.svg) repeat-x;
    position: absolute;
    top: -276px;
    width: 6000px;
    height: 276px;
    animation: wave 12s cubic-bezier( 0.36, 0.45, 0.63, 0.53) infinite;
    transform: translate3d(0, 0, 0);
    z-index: -1;
}

.wave:nth-of-type(2) {
    top: -175px;
    animation: wave 7s cubic-bezier( 0.36, 0.45, 0.63, 0.53) -.125s infinite, swell 7s ease -1.25s infinite;
    opacity: 1;
}

/* news */
.news {
    position:relative;
}
.news::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 86px;
    right: 0;
    width: 1400px;
    height: 740px;
    background: #F6F9FF;
    background: linear-gradient(140deg,rgba(246, 249, 255, 1) 0%, rgba(255, 247, 251, 1) 100%);
    border-top-left-radius: 200px;
    border-bottom-left-radius: 50px;
    z-index: -2;
}
.news .container {
    position: relative;
    padding-top: 110px;
}

.news .s-tit-wrap {
    position: absolute;
    top: 4px;
    right: 0;
}
.news .s-tit-wrap h2.tit::after {
    left: auto;
    right: 0;
    transform: scaleX(-1);
}
.main .news .nav-tabs .tabmenu > ul > li:not(.over) > a {
    background: transparent;
}
.board-list {
    display: grid;
    width: 100%;
    height: 594px;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
}

.board-list li {
    margin: 0;
    padding: 0;
}

.board-list li.non-info {
    grid-column: 1 / span 3;
    padding: 370px 35px 55px;
    border: 1px solid var(--gray-color04);
    background: #fff url(/image/2025/non-board.png) no-repeat center;
    border-radius: 15px;
    text-align: center;
}

.board-list li a {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 38px 35px;
    border: 3px solid #e4e5ed;
    background: #fff url(/image/2025/about02_3-logo.png) no-repeat right -10px bottom;
    border-radius: 12px;
    overflow: hidden;
}

.board-list li a:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    z-index: 3;
    background: transparent;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.board-list li a:hover, .board-list li a:focus {
    border: 3px solid var(--main-color02);
}

.board-list li > a:hover .img-hover, .board-list li > a:focus .img-hover {
    display: inline-block;
    position: absolute;
    top: -3px;
    right: -3px;
    width: 60px;
    height: 60px;
    text-align: center;
    background: url(/image/2025/main/main-corner-bg02.png) no-repeat right top;
    transition: 0.3s all ease-in-out;
    z-index: 10;
}

.board-list li > a:hover .img-hover::before, .board-list li > a:focus .img-hover::before, .board-list li > a:hover .img-hover::after, .board-list li > a:focus .img-hover::after {
    content: "";
    position: absolute;
    top: 5px;
    right: 0;
    width: 60px;
    height: 30px;
    background: url(/image/2025/main/icon-link.png) no-repeat center;
}

.board-list li a .category {
    position: relative;
    display: block;
    margin-bottom: 4px;
    color: rgb(var(--point-color-01));
    font-weight: 500;
    font-size: 15px;
}

.board-list li a .writer {
    position: relative;
    margin-bottom: 20px;
    padding-left: 15px;
    color: var(--main-color01-hover);
    font-size: 18px;
    font-weight: 600;
}

.board-list li a .writer::before, .board-list li a .writer::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.board-list li a .writer::before {
    width: 7px;
    height: 7px;
    background: var(--main-color01-hover);
    border-radius: 50%;
}

.board-list li a .writer::after {
    width: calc(100% - 15px);
    height: 15px;
    top: 20px;
    left: auto;
    right: 0;
    background: rgba(47,108,230,0.1)
}

.board-list li a .title {
    position: relative;
    display: -webkit-box;
    width: 100%;
    height: 70px;
    margin-bottom: 30px;
    text-overflow: ellipsis;
    word-break: break-word;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #333;
    font-size: 23px;
    font-weight: 600;
}

.board-list li a .title::before {
    display: none;
}

.board-list li a:hover .title, .board-list li a:focus-visible .title {
    color: var(--main-color01);
}

.board-list li a .txt {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    height: 92px;
    font-size: 15px;
    line-height: 1.6;
    color: #9d9d9d;
    padding-top: 20px;
    margin: 0;
}

.board-list li a:hover .txt, .board-list li a:focus-visible .txt {
    color: #666;
}

.board-list li a .date {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-top: 20px;
    width: 100%;
    color: #727272;
    font-size: 18px;
    border-top: 1px solid var(--gray-color03);
}

.board-list li a .date::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--main-color02);
    transition: all 0.3s ease-out
}
.board-list li a:hover .date::after, .board-list li a:focus .date::after {
    width:100%
}
.board-list li a .date::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url(/image/2025/icon-clock.svg) no-repeat center;
}
    

.board-list.gallery li > a {
    padding: 0;
}

.board-list.gallery li > a .tit {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: calc(100% - 6px);
    transform: translateX(-50%);
    padding: 10px 35px 20px;
    z-index: 10;
    color: #fff;
    margin: 0;
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
   background: #000000;
background: radial-gradient(circle,rgba(0, 0, 0, 0.5) 75%, rgba(255, 255, 255, 0) 100%);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.board-list.gallery li > a .tit .title {
    color: #fff;
    margin-bottom: 10px;
    height: 24px;
    -webkit-line-clamp: inherit;
    white-space: nowrap;
    font-size: 20px;
}

.board-list.gallery li .img-box {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f5f5f5 url(/image/2025/thumb-icon.png) no-repeat center;
    background-size: 20%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s all ease-in-out;
}

.board-list.gallery li > a:hover .img-box img, .board-list.gallery li > a:focus-visible .img-box img {
    transform: scale(1.1);
    transition: all 0.3s ease-out;
}

.board-list.gallery li .img-box > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all .4s ease-in-out;
    object-fit: cover;
}

.board-list.gallery li > a::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    background: #0E144C;
    background: linear-gradient(360deg,rgba(14, 20, 76, 1) 0%, rgba(14, 20, 76, 0) 100%);
    display: none;
}
.board-list.gallery li > a .date::after {
    background:rgba(255,255,255,0.5);
}
.board-list.gallery li > a .date::before {
    background: url(/image/2025/icon-clock-w.svg) no-repeat center;
}


.board-list.gallery li > a .writer {
    color: #fff;
    font-size: 15px;
}

.board-list.gallery li a .writer::before {
    background: #fff;
}

.board-list.gallery li > a .date {
    border-top: 1px solid rgba(236,2236,236,0.2);
    color: rgba(255,255,255,0.8);
    font-size: 15px;
}

/* popup */
.popup {
    position: relative;
    width: 100%;
    min-height: 560px;
    overflow: hidden;
}

.popup .swiper-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3060px;
    margin: 0 auto;
}

.sw-popup {
    padding: 0;
    z-index: 10;
}

.sw-popup .swiper-wrapper {
    overflow: visible;
}

.sw-popup .swiper-slide {
    display: flex;
    /* 이미지가 슬라이드 중앙 정렬되도록 */
    overflow: hidden;
    transition: transform 0.4s ease, z-index 0.4s ease;
    transform: scale(0.9);
    z-index: 1;
    opacity: 0.6;
    background: transparent;
}

.sw-popup .swiper-slide-active {
    transform: scale(1);
    z-index: 3;
    opacity: 1;
}

.sw-popup .swiper-slide, .sw-popup .swiper-slide.active + .active {
    opacity: .4;
    transition: all .3s ease-out;
}

.sw-popup .swiper-slide-active {
    opacity: 1;
}

.sw-popup .swiper-slide a {
    display: block;
    margin: 28px 20px;
    box-shadow: 0 3px 20px rgb(0 0 0 / 16%);
    border-radius: 15px;
    overflow: hidden;
    width: 920px;
    height: 450px;
}

.sw-popup .player-controls::after {
    content: '';
    display: inline-block;
    width: 2px;
    height: 20px;
    background: #C1C1C1;
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%) rotate(15deg);
}

.sw-popup .swiper-indicator {
    gap: 50px
}

.sw-popup .swiper-nav {
    background: var(--gray-color01);
    z-index: 20;
}

.sw-popup .swiper-nav {
    position: absolute;
    top: 50%;
    width: 75px;
    height: 75px;
    transform: translateY(-50%);
    background: var(--gray-color01);
    border-radius: 50%;
}

.sw-popup .swiper-nav.swiper-button-prev {
    left: calc(50% - 19%);
}

.sw-popup .swiper-nav.swiper-button-next {
    right: calc(50% - 19%);
}

.sw-popup .swiper-nav:hover, .sw-popup .swiper-nav:focus-visible {
    background: var(--main-color02-hover);
    transition: 0.3s;
}

.sw-popup .swiper-nav::after {
    color: #767676;
    font-size: 25px;
}

.sw-popup .swiper-nav:hover::after, .sw-popup .swiper-nav:focus-visible::after {
    color: #fff
}

/* facility */
.facility {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.facility .container {
    width: calc((100% - 1400px) / 2 + 1400px);
    margin: 0 0 0 auto;
    max-width: 100%;
    min-height: 550px;
}

.facility .inner .s-tit-wrap {
    max-width: 1400px;
    margin: 0 auto
}

.facility .inner .nav-tabs {
}

.facility .s-tit-wrap {
    display: inline-flex;
    flex-direction: column;
    margin-bottom: 70px;
    width: 520px;
}

.facility .nav-tabs {
    width: 520px;
}

.facility .nav-tabs .tabmenu {
    display: flex;
    flex-shrink: 0;
    width: 500px;
    margin-right: 120px;
    padding: 0;
    background: transparent;
}

.facility .nav-tabs .tabmenu ul {
    flex-wrap: wrap;
    gap: 10px;
}

.facility .nav-tabs .tabmenu > ul > li::before {
    display: none;
}

.facility .nav-tabs .tabmenu > ul > li:not(.over) > a {
    padding: 10px 30px;
    background-color: var(--gray-color02);
}

.facility .nav-tabs .tabmenu > ul > li > a > span {
    font-size: 24px;
}

.facility .nav-tabs .tabmenu > ul > li:not(.over) > a:hover, .facility .nav-tabs .tabmenu > ul > li:not(.over) > a:focus-visible {
    background-color: var(--main-color01);
    transition: all 0.3s ease-out
}

.facility .nav-tabs .tabmenu > ul > li:not(.over) > a:hover span, .facility .nav-tabs .tabmenu > ul > li:not(.over) > a:focus-visible span {
    color: #fff;
}

.facility .nav-tabs > .tab-content {
    margin-top: -235px;
}

.facility .swiper-container {
    position: absolute;
    top: 0;
    left: calc(50% - 80px);
    width: 100%;
    min-width: 1680px;
    max-width: 1680px;
    margin: 0 auto;
}

.sw-facility {
}

.sw-facility .swiper-slide {
    justify-content: flex-start;
    opacity: .4;
    min-width: 780px;
}

.sw-facility .swiper-wrapper {
    justify-content: flex-start;
}

.sw-facility .swiper-slide.swiper-slide-active {
    opacity: 1;
    margin: 2px;
}

.sw-facility .swiper-slide > a {
    position: relative;
    border-radius: 15px;
}

.sw-facility .swiper-slide > a .img {
    display: block;
    width: 780px;
    height: 450px;
}

.sw-facility .swiper-slide > a .img > img {
    display: block;
    width: 100%;
    height: 100%;
}

.sw-facility .swiper-slide > a .bg {
    position: absolute;
    bottom: 0;
    right: -1px;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    background-color: #fff;
    z-index: 10;
}

.sw-facility .swiper-slide > a .inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 251px;
    height: 65px;
    border-radius: 15px;
    background-color: #fff;
    transition: all .2s;
}

.sw-facility .swiper-slide > a > .img::before, .sw-facility .swiper-slide > a > .img::after {
    content: "";
    position: absolute;
    z-index: 2;
    width: 45px;
    height: 45px;
    background: url(/image/2025/main/main-corner-bg01.png) no-repeat center;
}

.sw-facility .swiper-slide > a > .img::after {
    bottom: 64px;
    right: -1px;
}

.sw-facility .swiper-slide > a > .img:before {
    bottom: 0;
    right: 249px;
}

.sw-facility .swiper-slide > a .inner .tit {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 5px;
    font-family: var(--font-type02);
    font-size: 24px;
    line-height: 1.1;
    font-weight: 900;
}

.sw-facility .swiper-slide > a .inner .tit::after {
    content: '';
    display: inline-block;
    width: 28px;
    height: 28px;
    background: url(/image/2025/main/icon-link02.png) no-repeat center;
}

.sw-facility .swiper-slide > a:hover .inner .tit::after, .sw-facility .swiper-slide > a:focus-visible .inner .tit::after {
    background: url(/image/2025/main/icon-link02-on.png) no-repeat center;
    transition: 0.3s all ease-in-out;
    transform: rotate(45deg);
}

.sw-facility .swiper-indicator {
    height: 50px;
    margin-top: 45px;
    max-width: 780px;
    justify-content: space-between;
    gap: 0;
}

.swiper-pagination {
    margin-right: 50px;
}

.sw-facility .swiper-pagination-bullet {
    width: 560px;
    justify-content: flex-start;
}

.swiper-pagination-progressbar {
    background: var(--gray-color03);
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--main-color02);
    height: 6px;
    border-radius: 10px;
}

.sw-facility button.owl-dot.active {
    height: 6px;
    background: var(--main-color02);
    border-radius: 50px;
}

.sw-facility button.owl-dot.active > span {
    position: absolute;
    clip: rect(0 0 0 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
}

/* quick-service */
.quick-service {
    position: relative;
}

.quick-service::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 86px;
    left: 0;
    width: 1400px;
    height: 680px;
    background: #F6F9FF;
    background: linear-gradient(140deg,rgba(246, 249, 255, 1) 0%, rgba(255, 247, 251, 1) 100%);
    border-top-right-radius: 200px;
    border-bottom-right-radius: 50px;
    z-index: -2;
}

.quick-service .s-tit-wrap h2.tit::after {
    left:50%;
    transform: translateX(-50%);
    width: 100%;
    background: url(/image/2025/main/main-stit-bg02.png) no-repeat center;
}

.quick-service ul {
    display: grid;
    width: 100%;
    gap: 25px 14px;
    padding: 2px 0 50px 0;
    grid-template-columns: repeat(3, 1fr);
}

.quick-service ul li {
    max-width: 440px;
    margin: 0;
    padding: 0;
}

.quick-service ul li > a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 150px;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgb(0 0 0 / 10%);
    background: #fff;
    color: #333;
    font-size: 24px;
    font-weight: 500;
    background-repeat: no-repeat;
    background-position: right 40px center;
}

.quick-service ul li > a:hover, .quick-service ul li > a:focus-visible {
    font-weight: 700;
}

.quick-service ul li > a:hover .icon {
}

.quick-service ul li > a:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: 3px solid transparent;
    z-index: 3;
    transition: all 0.3s ease;
}

.quick-service ul li > a:hover:before, .quick-service ul li > a:focus-visible:before {
    border-color: var(--main-color01);
    border-radius: 10px;
}

/* quick-link */
.quick-link {
    margin-bottom: 0;
}

.quick-link .container .inner {
    position: relative;
    width: calc(100% - 20px);
    margin-bottom: 20px;
    padding: 40px 105px 40px 325px;
    /* border: 5px solid var(--gray-color03); */
    border-radius: 5px;
    border-top-right-radius: 60px;
    background: var(--main-color01);
}
.quick-link .container .inner::after {
    content:'';
    display:block;
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: var(--gray-color03);
    border-radius: 5px;
    border-top-right-radius: 60px;
    z-index: -1;
}

.quick-link .inner .character {
    width: 250px;
    height: 206px;
    position: absolute;
    top: -75px;
    left: 50px;
    background: url(/image/2025/main/quick-character.png) no-repeat center;
}

.quick-link .inner .character .obj01 {
    width: 52px;
    height: 42px;
    position: absolute;
    top: 22px;
    left: 54px;
    background: url(/image/2025/main/quick-character-obj01.png) no-repeat center;
    -webkit-animation: balloon2 3s ease-in-out infinite both;
    animation: balloon2 3s ease-in-out infinite both;
}

.quick-link .inner .character .obj02 {
    width: 101px;
    height: 45px;
    position: absolute;
    top: 0;
    right: 0;
    background: url(/image/2025/main/quick-character-obj02.png) no-repeat center;
    -webkit-animation: balloon2 3s ease-in-out infinite both;
    animation: balloon2 3s ease-in-out infinite both;
}

.quick-link .inner .character .obj03 {
    width: 139px;
    height: 126px;
    position: absolute;
    top: 50px;
    right: 25px;
    background: url(/image/2025/main/quick-character-obj03.png) no-repeat center;
    -webkit-animation: vibes2 3s ease-in-out infinite both;
    animation: vibes2 3s ease-in-out infinite both;
}

.quick-link .container .inner .tit {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    color: #fff;
    font-family: var(--font-type03);
    font-size: 32px;
    font-weight: 800;
    line-height: 2;
    text-decoration: underline;
    -webkit-text-decoration: underline;
    text-decoration-color: rgba(255,255,255,0.3);
    text-decoration-thickness: 0.2rem;
    text-underline-offset: 1rem;
}

.quick-link .container .inner .tit > strong {
    color: #36bcdf;
}

.quick-link .container .inner ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    overflow: hidden;
    padding: 2px 0 10px 0;
    gap: 10px 0;
}

.quick-link .container .inner li {
    -ms-flex: 0 0 16.6%;
    flex: 0 0 16.6%;
    max-width: 16.6%;
    margin: 0;
    padding: 2px 4px;
}

.quick-link .container .inner li a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: #fff;
    border-radius: 50px;
    font-weight: 500;
    color: var(--main-color01-hover);
}

.quick-link .container .inner li a::before {
    content: '';
    display: inline-block;
    width: 21px;
    height: 21px;
    background: url(/image/2025/icon-check02.svg) no-repeat center;
}

.quick-link .container .inner li a:hover, .quick-link .container .inner li a:focus {
    color: #fff;
    font-weight: 600;
    background: #4250cf;
}

.quick-link .container .inner li a:hover::before, .quick-link .container .inner li a:focus-visible::before {
}

.quick-link .container .inner li a.link::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url(/image/2025/icon-link.svg) no-repeat center
}
.quick-link .container .inner li a.link:hover::after {
    background: url(/image/2025/icon-link-w.svg) no-repeat center
}

/* banner */
.banner {
    margin-bottom: 0;
    padding: 25px;
}

.banner .container {
    display: flex;
    gap: 30px;
    align-items: center;
}

.banner .container .tit {
    color: #727272;
    font-family: var(--font-type03);
    font-size: 28px;
}

.banner .sw-banner {
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    overflow: hidden;
    gap: 50px;
}

.banner .swiper-wrapper {
    flex: 1 1 50%;
}

.banner .sw-banner .swiper-slide {
    display: flex;
    padding: 3px;
}

.banner .sw-banner .swiper-slide img {
    border-radius: 0;
}

.banner .sw-banner .swiper-slide > a {
    display: flex;
    align-items: center;
    min-height: 40px;
}

/* bisco-pr */
.bisco-pr {
    height: 552px;
    margin: 0 auto;
    border-bottom: 5px solid var(--gray-color03);
}

.bisco-pr .inner {
    position: relative;
    display: inline-block;
    margin: 0 auto;
    width: 100%;
    padding-bottom: 547px;
    overflow: hidden;
}

.bisco-pr .inner .character {
    max-width: 1920px;
}

.bisco-pr .inner .character .obj {
    position: absolute;
    z-index: 10;
}

.bisco-pr .inner .character .obj01 {
    width: 120px;
    height: 90px;
    bottom: 0;
    left: calc(50% + 300px);
    background: url(/image/2025/main/bisco-pr-obj01.png) no-repeat center;
    -webkit-animation: move2 10s ease-in-out infinite both;
    animation: move2 10s ease-in-out infinite both;
}

.bisco-pr .inner .character .obj02 {
    width: 87px;
    height: 58px;
    bottom: 0;
    left: calc(50% - 450px);
    background: url(/image/2025/main/bisco-pr-obj02.png) no-repeat center;
    -webkit-animation: move 10s ease-in-out infinite both;
    animation: move 10s ease-in-out infinite both;
}

.bisco-pr .inner .character .obj03, .bisco-pr .inner .character .obj03-2 {
    width: 28px;
    height: 28px;
    top: 120px;
    left: calc(50% + 80px);
    transform: translateX(-50%);
    background: url(/image/2025/main/bisco-pr-obj03.png) no-repeat center;
    -webkit-animation: balloon2 3s ease-in-out infinite both;
    animation: balloon2 3s ease-in-out infinite both;
}

.bisco-pr .inner .character .obj04 {
    width: 74px;
    height: 77px;
    top: 340px;
    left: 300px;
    transform: translateX(-50%);
    background: url(/image/2025/main/bisco-pr-obj04.png) no-repeat center;
    -webkit-animation: balloon2 3s ease-in-out infinite both;
    animation: balloon2 3s ease-in-out infinite both;
}

.bisco-pr .inner .character .obj05 {
    width: 42px;
    height: 42px;
    top: 420px;
    left: 290px;
    transform: translateX(-50%);
    background: url(/image/2025/main/bisco-pr-obj05.png) no-repeat center;
    -webkit-animation: balloon1 3s ease-in-out infinite both;
    animation: balloon1 3s ease-in-out infinite both;
}

.bisco-pr .inner .character .obj06 {
    width: 74px;
    height: 77px;
    top: 380px;
    left: calc(25% - 50px);
    transform: translateX(-50%);
    background: url(/image/2025/main/bisco-pr-obj06.png) no-repeat center;
    -webkit-animation: balloon2 3s ease-in-out infinite both;
    animation: balloon2 3s ease-in-out infinite both;
}

.bisco-pr .inner .character .obj07, .bisco-pr .inner .character .obj07-2 {
    width: 26px;
    height: 26px;
    top: 130px;
    left: calc(50% + 130px);
    background: url(/image/2025/main/bisco-pr-obj07.png) no-repeat center;
    -webkit-animation: rotate-center 4s ease-in-out infinite both;
    animation: rotate-center 4s ease-in-out infinite both;
}

.bisco-pr .inner .character .obj03-2 {
    top: 73px;
    left: calc(50% + 720px);
}

.bisco-pr .inner .character .obj07-2 {
    top: 185px;
    left: auto;
    right: calc(50% - 900px);
}

.bisco-pr .inner img {
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 100%;
}
