@charset "UTF-8";


.page-wrapper {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;

    z-index: 10;
}



body.home .header_group,
body.home .header_side_btn,
body.home .trans_wrapper {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}


body.home.header-visible .header_group,
body.home.header-visible .header_side_btn,
body.home.header-visible .trans_wrapper {
    opacity: 1 !important;
    pointer-events: auto !important;
}


.mov {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -10;
    overflow: hidden;
    opacity: 0;
    transition: opacity 1.5s ease;
    --s-in-start: 1.0;
    --s-in-end: 1.15;
}

body.show-mov .mov {
    opacity: 1;
}

.mov .img {
    width: 100%;
    height: 100%;
    position: relative;
}

.mov .img .mov_img::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    top: 0px;
    left: 0px;
    pointer-events: none;
}
.mov .img .mov_img1::after{
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
}
.mov .img .mov_img2::after{
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 100%);
}
.mov .img .mov_img3::after{
    background: linear-gradient(225deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
}
.mov .img .mov_img5::after{
    background: linear-gradient(to left, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.mov .img .mov_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.mov .img .mov_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mesh_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(112, 112, 112, 0.8) 0.5px, transparent 0.5px);
    background-size: 3px 3px;
    z-index: 5;
    pointer-events: none;
}


.mov .img .mov_img1.active { transform-origin: center center; animation: zoomInOneShot 12s linear forwards; }
.mov .img .mov_img2.active { transform-origin: 30% center;    animation: zoomInOneShot 12s linear forwards; }
.mov .img .mov_img3.active { transform-origin: 20% 20%;       animation: zoomInOneShot 12s linear forwards; }
.mov .img .mov_img4.active { transform-origin: 20% 20%;       animation: zoomInOneShot 12s linear forwards; }
.mov .img .mov_img5.active { transform-origin: center center; animation: zoomInOneShot 12s linear forwards; }
.mov .img .mov_img6.active { transform-origin: center 20%;    animation: zoomInOneShot 12s linear forwards; }


@keyframes zoomInOneShot {
    0%   { opacity: 0; transform: scale(var(--s-in-start)); }
    10%  { opacity: 1; transform: scale(var(--s-in-start)); }
    66%  { opacity: 1; }
    100% { opacity: 0; transform: scale(var(--s-in-end)); }
}




.page_wrapper .pc_snt_wrapper {
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.page_wrapper .pc_snt_wrapper .pc_snt {
    position: absolute;
    /*
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    */
    font-size: clamp(40px,7vw,80px);
    margin: 0;
    /*-webkit-text-stroke: rgba(0, 0, 0, 0.6) 2px;*/
    font-weight: 600;
    line-height: 1.8;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    width: 80%;
}

.page_wrapper .pc_snt_wrapper .snt1{
    top: 50%;
    left: 10%;
    color:#80e6ff;
}

.page_wrapper .pc_snt_wrapper .snt2{
    top: 55%;
    left: 10%;
    color: #80e6ff;
}

.page_wrapper .pc_snt_wrapper .snt3{
    top: 70%;
    right: -30%;
    transform: translateY(-50%);
    color: #29caff;
}

.page_wrapper .pc_snt_wrapper .snt4{
    top: 45%;
    left: 10%;
    transform: translateY(-50%);
    color: #29caff;
}

.page_wrapper .pc_snt_wrapper .snt5{
    bottom: 10%;
    left: 50%;
    font-size: clamp(60px,8vw,120px);
    line-height: 1.2 !important;
    color: #80e6ff;
}


.page_wrapper .pc_snt_wrapper .pc_snt.active {
    opacity: 1;
    z-index: 2;
}

.pc_snt span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.pc_snt span.show {
    opacity: 1;
    transform: translateY(0);
}

.main_content_bg {
    position: relative;
    z-index: 2;
    background-color: #fff;
    width: 100%;
}


.trans {
    width: 100%;
    padding-top: -50px;
    padding-bottom: 100px;
    background: linear-gradient(90deg, #86d2ff, #27bcbc, #b7dd84);
    position: relative;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;
}

.trans .trans_wrapper {
    width: 880px;
    height: 355px;
    overflow: hidden;
    position: relative;
}

.trans .trans_list {
    display: flex;
    height: 100%;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
}



.trans .trans_list:active {
    cursor: grabbing;
}

.trans .trans_list a,
.trans .trans_list img,
.trans .trans_list .trans_img {
    touch-action: pan-y;
    -webkit-user-drag: none;
}


.trans .trans_wrapper,
.trans .trans_list {
    touch-action: pan-y;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
}

.trans .trans_list {
    background-color: rgba(0, 0, 0, 0);
    padding-top: 20px;
    padding-bottom: 50px;
    box-sizing: content-box;
}

.trans .trans_img {
    flex-shrink: 0;
    width: 280px;
    height: 350px;
    position: relative;
    overflow-x: hidden;
    cursor: pointer;
}

.trans .trans_img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    pointer-events: none;
}

.trans_pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.trans_pagination .dot {
    width: 12px;
    height: 12px;
    background-color: #fff;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.trans_pagination .dot:hover {
    opacity: 1;
}

.trans_pagination .dot.active {
    background-color: #0097de;
    opacity: 0.8;
    transform: scale(1.2);
}

.trans .left_btn,
.trans .right_btn {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    top: 33%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
}

.trans .left_btn:hover,
.trans .right_btn:hover {
    background: #3e3a39;
}

.trans .left_btn {
    left: calc(50% - 460px);
}

.trans .right_btn {
    right: calc(50% - 460px);
}

.trans .right_btn .right_tr::before,
.trans .right_btn .right_tr::after,
.trans .left_btn .left_tr::before,
.trans .left_btn .left_tr::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 9999px;
    left: 50%;
    top: 50%;
    transform-origin: center;
}

.trans .right_btn .right_tr::before {
    transform: translate(-50%, -50%) rotate(45deg) translate(-2px, -2px);
}

.trans .right_btn .right_tr::after {
    transform: translate(-50%, -50%) rotate(-45deg) translate(-2px, 2px);
}

.trans .left_btn .left_tr::before {
    transform: translate(-50%, -50%) rotate(-45deg) translate(2px, -2px);
}

.trans .left_btn .left_tr::after {
    transform: translate(-50%, -50%) rotate(45deg) translate(2px, 2px);
}


.news {
    max-width: 100%;
    width: 100%;
    background-color: aliceblue;
    padding: 75px 0;
    box-sizing: border-box;
}

.news_inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
    box-sizing: border-box;
}

.news .news_title {
    font-size: 62px;
    color: #86d2ff;
}

.news .news_line {
    width: 94px;
    height: 2px;
    background-color: #86d2ff;
}

.news .oshirase {
    font-size: 24px;
    margin-top: 32px;
}

.news .news_switch {
    width: 960px;
    max-width: 90%;
    background-color: #fff;
    font-size: 20px;
    margin: 50px auto;
    border-radius: 999px;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
}

.news .news_switch .switch {
    flex: 1;
    padding: 12px 0;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.news .news_switch .switch:hover {
    background-color: #ffffff;
    color: #000;
    border-radius: 999px;
}

.news .news_switch .switch.active {
    background-color: #00a0ff;
    color: #fff;
    border-radius: 999px;
}

/* News Body & Content */
.news_body {
    width: 960px;
    max-width: 100%;
    margin: 0 auto 50px;
    box-sizing: border-box;
    height: auto;
}

.news_body .switch_content {
    display: none;
    opacity: 0;
}

.news_body .switch_content.active {
    display: block;
    animation: fadeInNews 0.5s ease forwards;
}

.news_body .switch_content .line {
    width: 100%;
    height: 1px;
    background-color: #80c9ff;
}

.news_body .switch_content .news_cont_flex {
    display: flex;
    margin: 3.5% 5%;
    align-items: start;
}

.news_body .switch_content .news_cont_flex .date {
    margin-right: 5%;
}

.news_body .switch_content .news_cont_flex .icon {
    color: #fff;
    padding: 1px 10px;
    border-radius: 99px;
    width: 120px;
    text-align: center;
    flex-shrink: 0;
}

.news_body .switch_content .news_cont_flex .icon_orange {
    background-color: #ff890a;
}

.news_body .switch_content .news_cont_flex .icon_blue {
    background-color: #0097ff;
}

.news_body .switch_content .news_cont_flex .cnt {
    margin-left: 5%;
    line-height: 1.8;
}

@keyframes fadeInNews {
    from { opacity: 0; }
    to { opacity: 1; }
}

.common_btn {
    font-size: 20px;
    font-weight: 500;
    background-color: #fff;
    width: 350px;
    max-width: 350px;
    aspect-ratio: 330 / 55;
    height: auto;
    text-align: center;
    border: 1px solid #00a0ff;
    border-radius: 999px;
    position: relative;
    transition: background-color 0.25s ease, border-color 0.25s ease;
    margin: 75px auto 0;
}

.common_btn a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.common_btn .word {
    color: #00a0ff;
    transition: color 0.25s ease;
}

.common_btn .btn_pointer {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-42%);
    width: 3vw;
}

.common_btn .btn_pointer img {
    width: 80%;
    max-width: 25px;
    min-width: 20px;
    height: auto;
}

.common_btn:hover {
    background-color: #00a0ff;
}

.common_btn:hover .word {
    color: #fff;
}

.common_btn .btn_pointer img.hover {
    display: none;
}

.common_btn:hover .btn_pointer img.normal {
    display: none;
}

.common_btn:hover .btn_pointer img.hover {
    display: inline;
}

/* Instagram & Contents */
.insta {
    width: 100%;
    padding: 30px 5% 75px;
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 1280px;
}


.insta .common_btn{
    width: 89%;
}

.contents .common_btn{
    margin: 30px auto 0;
}

@keyframes title_word {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.contents {
    width: 100%;
    margin: 180px 0 0;
    padding: 150px 0 5px;
    box-sizing: border-box;
    position: relative;
    background-color: #fffef6;
    background-image: radial-gradient(circle, #fff5bc 15%, transparent 15%), radial-gradient(circle, #fff5bc 15%, transparent 15%);
    background-position: 0 0, 6px 6px;
    background-size: 15px 15px;
}

.contents .title_word {
    width: 100%;
    --gap: 500px;
    position: absolute;
    top: -140px;
    left: 0px;
    overflow: hidden;
}

.contents .title_word .scrolling-container {
    display: flex;
    width: fit-content;
    animation: title_word infinite linear 60s;
}

.contents .title_word img {
    margin-right: var(--gap);
    height: auto;
}

.contents .flex1,
.contents .flex2 {
    display: flex;
    width: 90%;
    margin: 50px auto 150px;
    max-width: 900px;
}

.contents .flex1 .left,
.contents .flex2 .right {
    background-color: #ffffff;
    padding: 5% 8%;
    width: 100%;
    border-radius: 30px;
}

.contents .low{
    margin-bottom: 80px;
}

.contents .flex1 .left .ttl,
.contents .flex2 .right .ttl {
    color: #00a0ff;
    font-size: clamp(12px, 3.5vw, 25px);
    margin-bottom: 3%;
    font-weight: 600;
}

.contents .flex1 .left .wave,
.contents .flex2 .right .wave {
    margin-bottom: 5%;
    width: 100%;
}

.contents .flex1 .left .wave img,
.contents .flex2 .right .wave img {
    width: 80%;
}

.contents .flex1 .left .snt,
.contents .flex2 .right .snt {
    font-size: clamp(8px, 1.7vw, 16px);
    margin-right: 10%;
    line-height: 1.8;
}

.contents .flex1 .right,
.contents .flex2 .left {
    width: 120%;
    margin-left: -8%;
    transform: translateY(-15%);
}

.contents .flex2 .left {
    margin-right: -8%;
    margin-left: 0;
    z-index: 1;
}

.contents .flex2 .right {
    z-index: 0;
    margin-left: 5%;
}

.contents .flex1 .right img,
.contents .flex2 .left img {
    width: 100%;
    min-width: 300px;
}

.contents .flex1 .common_btn{
    margin-left: 0%;
}


.last_btn {
    margin: 0 auto;
    width: 100%;
}

.last_btn .bg_img {
    margin: 0 auto;
    background-image: url(../Links/bg_img.png);
    background-size: cover;
    background-position: center;
    display: flex;
    height: 300px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.last_btn .bg_img .big_btn {
    display: flex;
    justify-content: center;
    width: 75%;
    max-width: 900px;
    gap: 8%;
}

.last_btn .bg_img .big_btn a {
    text-decoration: none;
    flex: 1;
    display: flex;
    justify-content: center;
}

.last_btn .bg_img .big_btn .btn_white {
    width: 100%;
    aspect-ratio: 260 / 140;
    height: auto;
    background-color: white;
    border-radius: clamp(10px, 2.5vw, 30px);
    font-size: 22px;
    color: #00a0ff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all ease 0.5s;
    box-shadow: 0 0 10px #ddd;
}

.last_btn .bg_img .big_btn .btn_white:hover {
    transform: scale(1.05);
}

.page-wrapper .pc_snt_wrapper .snt2 br{
    display: none;
}


@media screen and (max-width: 960px) {

    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    .page-wrapper .pc_snt_wrapper .snt2 br{
        display: block !important;
    }

    .page-wrapper .pc_snt_wrapper .snt1 br:nth-of-type(2),
    .page-wrapper .pc_snt_wrapper .snt3 br:nth-of-type(2),
    .page-wrapper .pc_snt_wrapper .snt4 br:nth-of-type(2),
    .page-wrapper .pc_snt_wrapper .snt5 br:nth-of-type(2){
        display: none;
    }

    .mov .img .mov_img1 img{
        object-position: 30% center;
    }

    .mov .img .mov_img2 img{
        object-position: 60% center;
    }

    .mov .img .mov_img3 img{
        object-position: 20% center;
    }

    .mov .img .mov_img4 img{
        object-position: 80% center;
    }

    .mov .img .mov_img5 img{
        object-position: 30% center;
    }

    .page_wrapper .pc_snt_wrapper .pc_snt{
        font-size: 80px;
    }

    .page_wrapper .pc_snt_wrapper .snt1{
        top: 60%;
        left: 10%;
        white-space: nowrap;
    }

    .page_wrapper .pc_snt_wrapper .snt2{
        top: 60%;
        left: 15%;
    }

    .page_wrapper .pc_snt_wrapper .snt3{
        left: 40%;
        top: 70%;
    }

    .page_wrapper .pc_snt_wrapper .snt4{
        top: 75%;
    }

    .page_wrapper .pc_snt_wrapper .snt5{
        font-size: 90px !important;
        left: 45%;
    }




    .trans {
        height: clamp(150px,33vw,500px);
        margin-top: 120px;
        align-items: flex-start;
        padding: 0;
    }

    .trans .trans_wrapper {
        width: 100%;
        top: -150px;
        overflow-x: hidden ;
    }

    .trans .trans_list {
        gap: 0;
    }



    .trans .trans_img {
        height: auto;
        transform: scale(0.9);
        opacity: 1;
        margin: 0;
    }

    .trans .trans_img.active {
        transform: scale(1.0);
        z-index: 10;
    }

    .trans .trans_pagination{
        display: none;
    }

    .trans .left_btn,
    .trans .right_btn {
        display: none;
    }

    .news .news_switch {
        display: grid;
        grid-template-columns: 1fr 1fr;
        background-color: transparent !important;
        gap: 15% 3%;
    }

    .news .news_switch .switch{
        background-color: #FFF;
        border-radius: 99px;
    }


    .insta .insta_icon{
        width: 30%;
    }

    .insta .insta_icon img{
        width: 100%;
    }

    .contents .flex1,
    .contents .flex2 {
        flex-direction: column;
        width: 100%;
        margin: 0 auto 60px;
        transform: none;
    }

    .contents .flex1 .image,
    .contents .flex2 .image {
        position: relative;
        width: 100%;
        order: -1;
        display: flex;
        justify-content: center;
        margin: 0 auto;
        transform: none;
    }

    .contents .flex1 .image img,
    .contents .flex2 .image img {
        width: 90%;
        max-width: 400px;
        margin-bottom: -120px;
    }

    .contents .flex1 .sentence,
    .contents .flex2 .right {
        width: 100%;
        padding: 140px 8% 10%;
        margin: 0;
        transform: none;
    }

    .contents .flex .sentence .ttl{
        font-size: 20px;
        margin-top: 5px;
    }
    .contents .flex .sentence .snt{
        font-size: 16px;
    }

    .contents .flex1 .left{
        z-index: 0;
    }

    .contents .flex1 .right{
        z-index: 1;
    }

    .contents .flex1 .left .wave img, .contents .flex2 .right .wave img{
        width: 60%;
    }

    .common_btn {
        margin:40px auto 0 !important;
        width: 80%;
        transform: translateX(-8vw);
    }

    .last_btn .bg_img .big_btn{
        display: flex;
        align-items: center;
        margin-top: 0%;
    }

    .last_btn .bg_img .big_btn .btn_white{
        width: 210px;
        aspect-ratio: 400 / 210;
        border-radius: 22px;
    }

    .last_btn .bg_img .big_btn .btn_white .btn_text{
        font-size: 20px;
    }

    .contents .flex .sentence .ttl br.mb{
        display: none;
    }
}


@media screen and (max-width:550px){

    .page_wrapper .pc_snt_wrapper .pc_snt{
        font-size: 42px;
    }

    .page_wrapper .pc_snt_wrapper .snt1{
        top: 60%;
        left: 10%;
        white-space: nowrap;
    }

    .page_wrapper .pc_snt_wrapper .snt2{
        left: 10%;
    }

    .page_wrapper .pc_snt_wrapper .snt3{
        left: 35%;
        top: 74%;
    }

    .page_wrapper .pc_snt_wrapper .snt4{
        top: 65%;
    }

    .page_wrapper .pc_snt_wrapper .snt5{
        font-size: 52px !important;
        left: 30%;
        top: 55%;
    }

    .news{
        padding: 40px 0;
    }

    .news .news_inner .ttl_all .news_title{
        font-size: 50px;
    }

    .news .news_inner .ttl_all .oshirase{
        font-size: 20px;
        margin-top: 5px;
    }

    .news .news_inner .news_switch{
        margin-top: 25px;
        font-size: 16px;
        gap: 10% 2%;
    }

    .news .news_inner .news_switch .switch{
        padding-top: 7px;
        padding-bottom: 7px;
        gap: 1px;
    }

    .news_body{
        margin-bottom: 0;
    }


    .news_body .switch_content .news_cont_flex{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin-left: 0;
    }

    .news_body .switch_content .news_cont_flex .date{
        margin: 0 20px 0 0;
        width: auto;
        font-size: 14px;
    }

    .news_body .switch_content .news_cont_flex .icon{
        padding: 2px 15px;
        width: auto;
        margin: 0;
        font-size: 14px;
    }

    .news_body .switch_content .news_cont_flex .cnt{
        width: 100%;
        margin-top: 8px;
        margin-left: 0;
        font-size: 15px;
        letter-spacing: 1.2px;
        line-height: 1.7;
    }

    .common_btn{
        margin-top: 0;
        font-size: 18px;
    }

    .common_btn .btn_pointer{
        right: 10%;
    }

    .insta{
        padding: 10px 5%;
    }

    .insta .insta_icon{
        width: 50%;
    }

    .contents{
        margin: 120px 0 0;
        padding: 90px 0 5px;
    }

    .contents .title_word{
        width: 175%;
        top: -120px;
        left: -135px;
        scale: 60%;
    }

    .contents .flex1,
    .contents .flex2{
        margin: 0 auto 50px;
    }

    .contents .flex1 .left .snt, .contents .flex2 .right .snt{
        margin-right: 15%;
    }

    .last_btn .bg_img{
        height: 330px;
    }

    .last_btn .bg_img .big_btn{
        display: grid;
        align-items: center;
        margin-top: -5%;
    }

    .last_btn .bg_img .big_btn .btn_white{
        width: 250px;
        aspect-ratio: 360 / 100;
        border-radius: 22px;
    }

    .last_btn .bg_img .big_btn .btn_white .btn_text{
        font-size: 20px;
    }
}

@media screen and (max-width: 960px) and (min-width: 550px){

    .contents .flex .sentence .ttl{
        font-size: 28px;
        margin-top: 35px;
    }

    .contents .flex .sentence .snt{
        margin-right: 17%;
        font-size: 20px;
    }

    .contents .flex .left .wave{
        width: 100%;
    }

    .common_btn{
        margin: 65px auto 0 !important;
    }
}


.fade-in-target {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-in-target.is-visible {
    opacity: 1;
    transform: translateY(0);
}


.common_btn.fade-in-target {
    transition:
        opacity 0.8s ease-out,
        transform 0.8s ease-out,
        background-color 0.25s ease,
        border-color 0.25s ease;
}
