@charset "UTF-8";

body {
    opacity: 0;
    animation: bodyAppear .3s .3s forwards;
}

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

    100% {
        opacity: 1;
    }
}


@media screen and (min-width:768px) {}

@media screen and (min-width:1025px) {}

/*============================
	kv 
============================*/

.kv {
    margin-top: 52px;
}


.kv__img {
    position: relative;
    z-index: 9;

    & img {
        width: 100%;
        object-fit: cover;
        min-height: 260px;
    }
}


.kv__copy {
    max-width: 630px;
    width: 60%;
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translate(0, -50%);
    z-index: 99;
}

.kv__copy .slide-in,
.kv__copy .slide-in_inner {
    animation-duration: 1s;
    animation-delay: .3s;
}


.kv__scroll {
    max-width: 12px;
    min-width: 8px;
    width: calc((12/1092)*100%);
    position: absolute;
    display: none;
    z-index: 9;
}



@keyframes copyAnime {
    0% {
        opacity: 0;
        transform: translate(-20px);
    }

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


/* swiper */
.kv__swiper-area {
    position: relative;
}

.swiper__imgwrap {
    overflow: hidden;
    display: block;
}

.kv .swiper-slide-active .swiper__imgwrap img,
.kv .swiper-slide-duplicate-active .swiper__imgwrap img,
.kv .swiper-slide-prev .swiper__imgwrap img {
    animation: zoom-out 10s linear 0s 1 normal both;
}

@keyframes zoom-out {
    0% {
        transform: scale(1.1);
    }

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


.kv .swiper-pagination {
    left: 5%;
    bottom: -30px;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
}


.kv .swiper-pagination-bullet {
    display: block;
    margin: 0 10px !important;
    background: #666666;
    opacity: 1;
    width: 10px;
    height: 10px;
    border-radius: 50% !important;
    line-height: 1;
    transition: .3s ease-out;
    position: relative;
    opacity: .5;
}

.kv .swiper-pagination-bullet-active {
    opacity: 1;

    background: #666666;
}



@media screen and (min-width:768px) {

    .kv {
        margin-top: 62px;
    }


    .kv__copy {
        max-width: 630px;
        width: calc((630/1920)*100%);
        top: 50%;
        left: 25%;
        transform: translate(-50%, -50%);
    }


}


@media screen and (min-width:1025px) {

    .kv {
        margin-top: 0;
    }


    .kv__copy {
        width: calc((630/1920)*100%);
        top: 50%;
        left: 25%;
    }


}

/*============================
   gallery
============================*/
.gallery {
    padding: 60px 0;
    background: url(../images/gallery_bg_sp.jpg) no-repeat center center/cover;

}

.gallary__swiper {
    .swiper-wrapper {
        transition-timing-function: linear;
    }
}


.gallery__img {
    max-width: 298px;
    width: 200px;
    margin: 0 10px;
}


@media screen and (min-width:768px) {
    .gallery {
        padding: 60px 0;

    }


    .gallery__img {
        max-width: 298px;
        width: 200px;
        margin: 0 15px;
    }

}

@media screen and (min-width:1025px) {
    .gallery {
        background: url(../images/gallery_bg.jpg) no-repeat center center/cover;
        padding: 120px 0 150px;

    }


    .gallery__img {
        max-width: 298px;
        width: auto;
        margin: 0 20px;
    }

}

/*============================
   about
============================*/
.about {
    padding: 60px 0;
    background: url(../images/commit_bg_sp.jpg) no-repeat center center/cover;
    color: #fff;
}

.about__img {
    width: 95%;
    margin-bottom: 30px;
}

.about__right {
    padding: 0 5%;
}

.about__ttl {
    width: 300px;
}

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

    .about__img {
        width: 50%;
        margin-bottom: 0;
    }

    .about__right {
        width: 50%;
        padding: 0 3% 0 5%;
    }

    .about__ttl {
        width: 300px;
    }
}


@media screen and (min-width:1025px) {
    .about {
        padding: 60px 0 150px;
    background: url(../images/commit_bg.jpg) no-repeat center center/cover;
    }

    .about__flex {
        max-width: 1920px;
        margin: 0 auto;
    }

    .about__img {
        width: 50%;
        margin-bottom: 0;
    }

    .about__right {
        width: 50%;
        padding: 0 2% 0 5%;
    }

    .about__ttl {
        width: auto;
    }

    .about__txt {
        max-width: 667px;
    }
}

/*============================
   guide
============================*/
.guide {
    padding: 60px 0;
    background: url(../images/guide_bg_sp.jpg) no-repeat center center/cover;
    color: #fff;
}

.guide__ttl {
    position: relative;
    padding-top: 80px;

    .guide__pop01 {
        width: 50%;
        top: -10px;
        left: -5%;
    }

    .guide__pop02 {
        width: 50%;
        top: -25px;
        right: -5%;
    }

    .txt {
        font-size: 2rem;
    }
}

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

    .guide__ttl {
        padding-top: 0;

        .guide__pop01 {
            display: block;
            width: auto;
            transform: translate(-50%, -50%) scale(.5);
            top: 0;
            left: 15%;
        }

        .guide__pop02 {
            display: block;
            width: auto;
            transform: translate(-50%, -50%) scale(.5);
            top: 0;
            left: 85%;
            top: -10px;
            right: auto;
        }

        .txt {
            font-size: 2.4rem;
        }
    }

    .guide__txt {
        text-align: center;
    }
}


@media screen and (min-width:1025px) {
    .guide {
        padding: 150px 0;
    background: url(../images/guide_bg.jpg) no-repeat center center/cover;
    }

    .guide__ttl {

        .guide__pop01 {
            transform: translate(-50%, -50%) scale(1);
            max-width: 470px;
            width: calc((470/1720)*100%);
            top: 0;
            left: 15%;
        }

        .guide__pop02 {
            max-width: 470px;
            width: calc((470/1720)*100%);
            transform: translate(-50%, -50%) scale(1);
            top: 0;
            left: 85%;
            top: -30px;
            right: auto;
        }

        .txt {
            font-size: 5.2rem;
        }
    }

}

/*============================
   party
============================*/
.party {
    padding: 60px 0;
    background: url(../images/party_bg_sp.jpg) no-repeat center center/cover;
    color: #fff;
}

.party__ttlwarp {
    margin-bottom: 30px;
}

.party__ttl {
    font-size: 2.2rem;
    line-height: 1.4;
}

.party__btn {
    width: 100px;
    display: block;
    margin: 0 auto;
}

.party__imgwrap {
    display: flex;

    & img {
        width: 48%;
        margin-bottom: 10px;
    }
}

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

    .party__ttlwarp {
        margin-bottom: 0;
    }

    .party__ttl {
        font-size: 3rem;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        font-feature-settings: initial;
    }

    .party__btn {
        width: 120px;
        margin: 0;
    }

    .party__right {
        padding-left: 5%;
    }

    .party__imgwrap {
        & img {
            width: 48%;
            margin-bottom: 20px;
        }
    }

}


@media screen and (min-width:1025px) {
    .party {
    background: url(../images/party_bg.jpg) no-repeat center center/cover;
        padding: 120px 0 140px;
    }

    .party__ttlwarp {
        margin-bottom: 0;
    }

    .party__ttl {
        font-size: 5.6rem;
    }

    .party__btn {
        width: auto;
        margin: 0;
    }

    .party__right {
        padding-left: 5%;
    }

    .party__imgwrap {
        & img {
            width: 48%;
            margin-bottom: 20px;
        }
    }
}


/*============================
   menu
============================*/
.menu {
    padding: 60px 0;
    background: url(../images/bg_sp.png);
}

.menu__item {
    margin-bottom: 60px;
}

.menu__img {
    width: 95%;
    max-width: 963px;
    margin-bottom: 30px;

    .img {
        position: relative;
    }

    .obj {
        max-width: 930px;
        width: calc((930/963)*100%);
        left: 50%;
        top: 80%;
        transform: translate(-50%, -50%);
        mix-blend-mode: darken;
    }

    .yuge {
        max-width: 764px;
        width: calc((764/963)*100%);
        left: 25%;
        top: 25%;
        transform: translate(-50%, -50%);
        mix-blend-mode: screen;
    }
}

.menu__txtwrap {
    padding: 0 5%;
}

.menu__ttl {
    padding-bottom: .5em;
    border-bottom: double 3px #b40000;

    .fs-34 {
        display: block
    }

    .fs-46 {
        font-size: 2rem;
    }
}

.menu__item:nth-child(2) {
    .menu__img {
        margin: 0 0 30px auto;

        .obj {
            max-width: 868px;
            width: calc((868/963)*100%);
            left: 50%;
            top: 25%;
        }

        .yuge {
            max-width: 624px;
            width: calc((624/963)*100%);
            left: 75%;
            top: 0;
            pointer-events: none;
        }
    }
}

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

    .menu__item {
        margin-bottom: 60px;
    }

    .menu__img {
        width: 52%;
        margin-bottom: 0;
    }

    .menu__txtwrap {
        width: 50%;
        padding: 0 3% 0 5%;
    }

    .menu__ttl {
        padding-bottom: .5em;
        border-bottom: double 3px #b40000;

        .fs-46 {
            font-size: 2rem;
        }
    }

    .menu__item:nth-child(2) {
        flex-direction: row-reverse;
        margin-bottom: 0;

        .menu__img {
            margin: 0;
        }

        .menu__txtwrap {
            padding: 0 5% 0 3%;
        }
    }

}


@media screen and (min-width:1025px) {
    .menu {
        padding: 120px 0;
    background: url(../images/bg.png);
    }

    .menu__item {
        max-width: 1920px;
        margin: 0 auto 80px;
    }

    .menu__img {
        width: 52%;
    }

    .menu__txtwrap {
        width: 50%;
        padding: 0;
    }

    .menu__txtwrap--inner {
        max-width: 662px;
        padding: 0 2% 0 5%;
    }

    .menu__ttl {
        padding-bottom: .5em;
        border-bottom: double 4px #b40000;
        white-space: nowrap;

        .fs-46 {
            font-size: 4rem;
            letter-spacing: .05em;
        }
    }
    .menu__txt{
        max-width: 563px;
    }

    .menu__item:nth-child(2) {



        .menu__txtwrap {
            padding: 0 ;
        }
        .menu__txtwrap--inner {
            padding: 0 5% 0 2%;
            margin: 0 0 0 auto;
        }

    }
}



/*============================
   information
============================*/

.information {
    padding: 60px 0;
    background: url(../images/info_bg.png) no-repeat center center/cover;
    color: #fff;
}

.info__ttl {

    & img {
        width: 80px;
        margin: 0 auto;

    }

    .txt {
        margin-top: .5em;
    }
}

.info__imgwrap {
    display: flex;
    flex-wrap: wrap;

    & img {
        width: 48%;

        &:last-child {
            margin: 15px auto 0;
        }
    }
}

.info__left {
    margin-bottom: 30px;
}

.info__reserve {
    display: block;
    margin: 20px -5% 0 auto;
    width: fit-content;
}

.info__li {
    display: flex;
    align-items: flex-start;
    padding: .5em 0;
    border-bottom: solid 1px #fff;
}

.info__th {
    white-space: nowrap;
    width: 6em;
}

.info__td {
    width: calc(100% - 6em);
}

.info__btn {
    color: #fff;
    display: block;
    text-decoration: underline;
    width: fit-content;
    margin: 1em 0 0 auto;

    &:hover {
        color: #fff;
    }
}

@media screen and (min-width:768px) {


    .information {
        padding: 80px 0;
    }

    .info__ttl {

        & img {
            width: 100px;
        }

        .txt {
            margin-top: .5em;
        }
    }

    .info__imgwrap {

        & img {
            width: 32%;
            max-width: 335px;

            &:last-child {
                margin: 0;
            }
        }
    }

    .info__left {
        width: 45%;
        margin-bottom: 0;
    }

    .info__right {
        width: 50%;
    }

    .info__reserve {
        margin: 20px auto 0;
    }

    .info__li {
        padding: .5em 0;
    }

    .info__th {
        width: 6em;
    }

    .info__td {
        width: calc(100% - 6em);
    }

    .info__btn {
        margin: 1em 0 0 auto;
    }


}

@media screen and (min-width:1025px) {


    .information {
        background: url(../images/info_bg.png) no-repeat center center/cover;
        padding: 120px 0 150px;

        .inner {
            max-width: 1100px;
        }
    }

    .info__ttl {

        & img {
            width: auto;
        }

    }

    .info__imgwrap {

        & img {
            width: 32%;

        }
    }

    .info__left {
        width: 45%;
    }

    .info__right {
        width: 50%;
    }

    .info__reserve {
        margin: 20px auto 0;
    }

    .info__li {
        padding: .5em 0;
    }

    .info__th {
        width: 6em;
    }

    .info__td {
        width: calc(100% - 6em);
    }

    .info__btn {
        margin: 1em 0 0 auto;
    }

}


/*============================
   blog
============================*/
.blog {
    padding: 80px 0 100px;
    margin: -20px 0 -20px;

    &::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: url(../images/blog_bg_sp.png) no-repeat center center/cover;
        top: 0;
        left: 0;
    }

}

.blog__obj01 {
    max-width: 470px;
    width: calc((470/1920)*150%);
    top: 20px;
    left: 0;
}

.blog__obj02 {
    max-width: 560px;
    width: calc((560/1920)*150%);
    top: 20px;
    right: 0;
}

.blog__ttl {

    &::before {
        content: "";
        position: absolute;
        width: 1em;
        height: 2px;
        background: #b40000;
        bottom: -.5em;
        left: 50%;
        transform: translate(-50%);
    }

}

.blog__atcwrap {
    margin-bottom: 30px;
}

.blog__atc {
    display: block;
    padding: 1em 0;
    border-bottom: dashed 1.5px #d9d8c6;

    & a {
        display: block;
        align-items: center;
        width: 100%;
        height: 100%;
    }

}

.news__info {
    display: flex;
    align-items: center;
    white-space: nowrap;
}


.blog__atc--ttl {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-top: .5em;
    font-weight: 400;

}

.blog__btn {
    max-width: 113px;
    width: 113px;
    height: 33px;
    border-radius: 16px;
    font-size: 1.4rem;

    &::before {
        display: none;
    }
}

@media screen and (min-width:768px) {
    .blog {
        padding: 100px 0 120px;
        margin: -40px 0 -40px;
    }

    .blog__obj01 {
        width: calc((470/1920)*100%);
        top: 20px;
        left: 0;
    }

    .blog__obj02 {
        width: calc((560/1920)*100%);
        top: 20px;
        right: 0;
    }

    .blog__ttl {

        &::before {
            width: 1em;
            height: 2px;
            bottom: -.5em;
        }

    }

    .blog__atcwrap {
        margin-bottom: 30px;
    }

    .blog__atc {
        padding: 1em 0;
        border-bottom: dashed 1.5px #d9d8c6;

        & a {
            display: flex;
        }

    }

    .blog__atc--ttl {
        margin: 0 0 0 2em;

    }
}

@media screen and (min-width:1025px) {
    .blog {
        padding: 120px 0 100px;
        margin: -40px 0 -40px;
        background: url(../images/blog_bg.png) no-repeat center center/cover;
    }

    .blog__obj01 {
        width: calc((470/1920)*100%);
        top: 10px;
        left: 0;
    }

    .blog__obj02 {
        width: calc((560/1920)*100%);
        top: 10px;
        right: 0;
    }

    .blog__ttl {

        &::before {
            width: 1em;
            height: 3px;
            bottom: -.5em;
        }

    }

    .blog__atcwrap {
        margin-bottom: 30px;
    }

    .blog__atc {
        padding: 1em 0;
        border-bottom: dashed 1.5px #d9d8c6;

    }

    .blog__atc--ttl {
        margin: 0 0 0 2em;

    }

}