@charset 'utf-8';
.center{
    text-align: center;
}

img{
    max-width: 100%;
    height: auto;
}
header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    line-height: 0;
}
main{
    background: url(../img/bg.png) repeat-y top center / 100% auto #111;
    padding-top: 85px;
}
p{
    font-size: 20px;
    font-weight: 900;
}

.movie {
    width: 100%;
    position: relative;
    overflow: hidden;
}
.movie video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
/* #playButton{
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    background:  url(../img/play.svg) no-repeat center center / contain;
    color: white;
    border: none;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    cursor: pointer;
    z-index: 1;
} */
.bnr a{
    position: relative;
    z-index: 1;
    display: block;
}
.bnr a::before{
    content: '';
    position: absolute;
    top: 9px;
    left: 11px;
    width: 100%;
    height: 100%;
    background: #111;
    border: 1px solid #fff;
    box-sizing: border-box;
    z-index: -1;
}
.carousel {
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}
.carousel::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.4;
    z-index: 1;
}
.carousel__slides {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
.carousel__slides li {
    flex-shrink: 0;
}
.carousel__slides.left {
    animation: slideLeft 100s linear infinite;
}
.carousel__slides.right {
    animation: slideRight 100s linear infinite;
}
@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
@keyframes slideRight {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}
.slides {
    margin: 0;
    padding: 0;
}
.slides li{
    overflow: hidden;
}
.slides img {
    width: 100%;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.slides img:hover {
    transform: scale(1.05);
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modal.show {
    opacity: 1;
}
.modal-content {
    position: relative;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    max-width: calc(100% - 40px);
    max-height: calc(100% - 40px);
}

.modal-inner{
    position: relative;
    transform: scale(0.7);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    width: auto;
}
.modal-inner.small-height{
    height: 80vh;
    width: 80vh;
}

.modal.show .modal-inner {
    transform: scale(1);
    opacity: 1;
}

#modalImage {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.close{
    position: absolute;
    top: -20px;
    right: -20px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 38px;
    padding-bottom: 2px;
    width: 40px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: 0.3s;
    background: #111;
    border-radius: 50%;
}
.close:hover,
.close:focus {
    background: #383838;
    text-decoration: none;
}
.button a{
    line-height: 104px;
    font-size: 24px;
    font-weight: 700;
    color: #77CAEC;
    text-decoration: none;
    border: 1px solid #77CAEC;
    border-radius: 100px;
    display: block;
    box-sizing: border-box;
    transition: 0.3s;
    position: relative;
}
.flexbox{
    display: flex;
}
.button a{
    line-height: 104px;
    font-size: 24px;
    font-weight: 700;
    color: #77CAEC;
    text-decoration: none;
    border: 1px solid #77CAEC;
    border-radius: 100px;
    display: block;
    box-sizing: border-box;
    transition: 0.3s;
    position: relative;
}
.button a .icon--search{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
    margin-left: -147px;
    width: 31px;
    height: 41px;
}
.button a .icon--search svg{
    position: absolute;
    top: 0;
    left: 0;
}
.button a .icon--search svg path{
    transition: 0.3s;
}
.button a:hover{
    background: #77CAEC;
    color: #fff;
}
.button a:hover .icon--search svg path{
    fill: #fff;
}
.sns{
    display: flex;
    justify-content: center;
    gap: 16px;
}
.sns li a{
    display: block;
    width: 332px;
    text-align: center;
}
.sns li:nth-child(1) a{
    background: #07C755;
}
.sns li:nth-child(2) a{
    background: #000;
}
.sns li:nth-child(3) a{
    background: #5743C7;
}
.sns li a{
    transition: 0.3s;
}
.sns li a:hover{
    transform: scale(1.05) translateY(-5px);
}
.copy{
    padding: 48px 0 56px;
    font-size: 13px;
    font-weight: 700;
    color: #C6C6C6;
    letter-spacing: 0.06em;
}

@media screen and (min-width: 737px) {
	.sp{
		display: none !important;
	}
    .w800{
        width: 800px;
        margin: 0 auto;
    }
    .w1028{
        width: 1028px;
        margin: 0 auto;
    }
    .mb12{
        margin-bottom: 12px !important;
    }
    .mb16{
        margin-bottom: 16px !important;
    }
    .mb24{
        margin-bottom: 24px !important;
    }
    .mb32{
        margin-bottom: 32px !important;
    }
    .mb40{
        margin-bottom: 40px !important;
    }
    .mb48{
        margin-bottom: 48px !important;
    }
    .mb72{
        margin-bottom: 72px !important;
    }
    .mb80{
        margin-bottom: 80px !important;
    }
    .mb86{
        margin-bottom: 86px !important;
    }
    .mb160{
        margin-bottom: 160px !important;
    }
}

@media screen and (max-width: 736px) {
    .pc{
        display: none !important;
    }

    img{
        width: 100%;
    }
    header{
        width: 124px;
        background: #1068B6;
    }
    main{
        padding-top: 32px;
    }
    p{
        font-size: 15px;
        line-height: 1.5;
    }
    p span{
        white-space: nowrap;
    }

    section{
        padding: 0 20px;
        margin-bottom: 48px;
    }
    .title{
        margin-bottom: 12px;
    }
    .title__sub{
        margin-bottom: 16px;
    }

    /* #playButton{
        width: 40px;
        height: 40px;
    } */

    .bnr{
        margin-right: 11px;
    }
    .carousel {
        margin: 0 -20px;
        width: calc(100% + 40px);
    }
    .carousel__slides.left {
        animation: slideLeft 30s linear infinite;
    }
    .carousel__slides.right {
        animation: slideRight 30s linear infinite;
    }
    .carousel__slides li img {
        width: auto;
        height: 90px;
    }
    .slides {
        margin: 0 -20px;
    }
    .button a{
        line-height: 104px;
        font-size: 24px;
        font-weight: 700;
        color: #77CAEC;
        text-decoration: none;
        border: 1px solid #77CAEC;
        border-radius: 100px;
        display: block;
        box-sizing: border-box;
        transition: 0.3s;
        position: relative;
    }
    .flexbox{
        display: block;
    }
    .flexbox__item{
        margin-bottom: 16px;
    }
    .flexbox__item:last-child{
        margin-bottom: 0;
    }
    .graf{
        margin-bottom: 20px;
    }
    .button{
        margin: 0 20px 80px;
    }
    .button a{
        line-height: 64px;
        font-size: 18px;
        padding-bottom: 2px;
    }
    .button a .icon--search{
        margin-left: -112px;
        width: 20px;
        height: 26px;
    }
    .button a .icon--search svg{
        width: 100%;
        height: 100%;
    }
    .sns{
        gap: 8px;
        margin: 0 20px;
    }
    .sns li{
        flex: 1;
    }
    .sns li a{
        width: 100%;
    }
    .sns li a img{
        width: auto;
/*        height: 64px;*/
    }
    .close {
        top: 8px;
        right: 8px;
        border: 1px solid #fff;
    }
}


@keyframes fadeIn{
    0%{
        opacity: 0;
        transform: scale(0.95);
    }
    100%{
        opacity: 1;
        transform: scale(1);
    }
}
.animation--fadeIn{
    opacity: 0;
    transform: scale(0.95);
}
.animation--fadeIn.active{
    animation: fadeIn 0.5s ease-in-out 0.2s forwards;
}

@keyframes fadeInUp{
    0%{
        opacity: 0;
        transform: translateY(10px);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}
.animation--fadeInUp{
    opacity: 0;
    transform: translateY(10px);
}
.animation--fadeInUp.active{
    animation: fadeInUp 0.5s ease-in-out forwards;
}