@charset "UTF-8";

video,
img {
    display: block;
    width: 100%;
}

@media screen and (max-width: 600px) {
    .disp-pc {
        display: none;
    }

    .disp-sp {
        display: block;
    }
}

@media screen and (min-width: 600px) {
    .disp-pc {
        display: block;
    }

    .disp-sp {
        display: none;
    }
}

.contents {
    position: relative;
    margin: auto;
    overflow: hidden;
    max-width: 100vw;
}

/* 背景 */
#background {
    position: absolute;
    top: 0;
    width: 100vw;
    height: 100%;
    z-index: -1000;

    background-image: url("/images/season2/base_pc.png");
    background-position: top center;
    background-repeat: repeat-y;
    background-size: 100vw;
}

@media screen and (max-width: 600px) {
    #background {
        background-image: url("/images/season2/base_sp.png");
    }
}

.background-sakukoi {
    position: absolute;
    left: 0;
    top: 75vw;
    width: 17vw;
}

@media screen and (max-width: 600px) {
    .background-sakukoi {
        top: 75vw;
        width: 17vw;
    }
}

.background-bottom {
    position: absolute;
    bottom: 0;
    width: 100vw;
}

/* ナビゲーション */
nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: auto;
    margin: auto;
}

/* nav_hamburger */
#nav_hamburger {
    position: absolute;
    top: 3vw;
    right: 3vw;
    width: 2vw;
    height: 2vw;
    opacity: 1;
}

@media screen and (max-width: 600px) {
    #nav_hamburger {
        top: 5vw;
        right: 5vw;
        width: 7vw;
        height: 7vw;
    }
}

#nav_hamburger .nav-toggle-button {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 1;
}

#nav_3_btn {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

/* nav_menu */
#nav_menu {
    position: absolute;
    top: 0;
    right: -20vw;
    width: 20vw;
    opacity: 0;
}

@media screen and (max-width: 600px) {
    #nav_menu {
        right: -34vw;
        width: 34vw;
    }
}

#nav_menu .nav-toggle-button {
    position: absolute;
    top: 3vw;
    right: 3vw;
    width: 2vw;
    height: 2vw;
    z-index: 1;
}

@media screen and (max-width: 600px) {
    #nav_menu .nav-toggle-button {
        top: 5vw;
        right: 5vw;
        width: 7vw;
        height: 7vw;
    }
}

#nav_open_bg {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

#nav_x_btn {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}

/* メニュー表示のアニメーション */
.menu-slide-in {
    animation: menu-slide-in 0.2s ease-in 1 forwards;
}

@keyframes menu-slide-in {
    0% {
        right: -20vw;
        opacity: 0;
    }
    100% {
        right: 0;
        opacity: 1;
    }
}

@media screen and (max-width: 600px) {
    @keyframes menu-slide-in {
        0% {
            right: -34vw;
            opacity: 0;
        }
        100% {
            right: 0;
            opacity: 1;
        }
    }
}

/* メニュー非表示のアニメーション */
.menu-slide-out {
    animation: menu-slide-out 0.2s ease-out 1 forwards;
}

@keyframes menu-slide-out {
    0% {
        right: 0;
        opacity: 1;
    }
    100% {
        right: -20vw;
        opacity: 0;
    }
}

@media screen and (max-width: 600px) {
    @keyframes out {
        0% {
            right: 0;
            opacity: 1;
        }
        100% {
            right: -34vw;
            opacity: 0;
        }
    }
}

/* ナビゲーションの項目リスト */
#nav-menu-items {
    position: absolute;
    top: 9vw;
    width: 20vw;
    z-index: 1;
}

@media screen and (max-width: 600px) {
    #nav-menu-items {
        top: 12vw;
        width: 52vw;
    }
}

.nav-menu-item {
    width: 20vw;
    height: 5vw;
    background-size: auto 60%;
    background-position-y: center;
    background-position-x: 3vw;
    background-repeat: no-repeat;
}

@media screen and (max-width: 600px) {
    .nav-menu-item {
        width: 52vw;
        height: 9vw;
        background-size: auto 65%;
        background-position-x: 5vw;
    }
}

#nav-menu-item-movie {
    background-image: url("/images/season2/txt/menu_btn01_off.png");
}

#nav-menu-item-movie:hover {
    background-image: url("/images/season2/txt/menu_btn01_on.png");
}

#nav-menu-item-story {
    background-image: url("/images/season2/txt/menu_btn06_off.png");
}

#nav-menu-item-story:hover {
    background-image: url("/images/season2/txt/menu_btn06_on.png");
}

#nav-menu-item-system {
    background-image: url("/images/season2/txt/menu_btn04_off.png");
}

#nav-menu-item-system:hover {
    background-image: url("/images/season2/txt/menu_btn04_on.png");
}

#nav-menu-item-member {
    background-image: url("/images/season2/txt/menu_btn02_off.png");
}

#nav-menu-item-member:hover {
    background-image: url("/images/season2/txt/menu_btn02_on.png");
}

#nav-menu-item-campaign {
    background-image: url("/images/season2/txt/menu_btn03_off.png");
}

#nav-menu-item-campaign:hover {
    background-image: url("/images/season2/txt/menu_btn03_on.png");
}

#nav-menu-item-information {
    background-image: url("/images/season2/txt/menu_btn05_off.png");
}

#nav-menu-item-information:hover {
    background-image: url("/images/season2/txt/menu_btn05_on.png");
}

#nav-menu-item-sns {
    background-image: url("/images/season2/txt/menu_btn07_off.png");
}

#nav-menu-item-sns:hover {
    background-image: url("/images/season2/txt/menu_btn07_on.png");
}

/* セクション一般 */
.sec-title-img {
    position: relative;
    width: 36%;
    margin: 3vw auto 0 auto;
}

@media screen and (max-width: 600px) {
    .sec-title-img {
        width: 60%;
        bottom: -1vw;
        margin: 0 auto;
    }
}

.sec-content {
    width: 86%;
    margin: auto;
}

@media screen and (max-width: 600px) {
    .sec-content {
        width: 100%;
    }
}

/* KV */
#top-store-container {
    position: relative;
    width: 31vw;
    margin: auto;
    top: -5vw;
}

@media screen and (max-width: 600px) {
    #top-store-container {
        position: relative;
        width: 38vw;
        margin: auto;
        top: -6vw;
    }
}

#top-googleplay {
    position: absolute;
    left: 0;
    height: 5vw;
    width: auto;
}

@media screen and (max-width: 600px) {
    #top-googleplay {
        height: 6vw;
    }
}

#top-appstore {
    position: absolute;
    right: 0;
    height: 5vw;
    width: auto;
}

@media screen and (max-width: 600px) {
    #top-appstore {
        height: 6vw;
    }
}

/* Movie */
#movie-player {
    width: 100%;
    height: 42vw;
}

/* Story */

/* System */
#system-swiper {
    position: relative;
    height: 53vw;
    overflow: hidden;
}

@media screen and (max-width: 600px) {
    #system-swiper {
        height: 63vw;
    }
}

#system-swiper .swiper-pagination {
    top: 50vw !important;
}

@media screen and (max-width: 600px) {
    #system-swiper .swiper-pagination {
        top: 57vw !important;
    }
}

#system-swiper .swiper-pagination-bullet {
    background-image: url("/images/season2/system_off.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0);
    width: 0.7vw;
    height: 0.7vw;
    opacity: 1;
}

@media screen and (max-width: 600px) {
    #system-swiper .swiper-pagination-bullet {
        width: 1.2vw;
        height: 1.2vw;
    }
}

#system-swiper .swiper-pagination-bullet-active {
    background-image: url("/images/season2/system_on.png");
}

#system-swiper .swiper-button-prev {
    left: -10vw;
    color: #C87187;
}

#system-swiper .swiper-button-next {
    right: -10vw;
    color: #C87187;
}

/* Member */
#members_container {
    display: grid;
    height: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.member-cell {
    width: 100%;
    height: auto;
}

/* Campaign */

/* Information */
.twitter-tweet {
    margin-left: auto;
    margin-right: auto;
    width: 100% !important;
}

@media screen and (max-width: 600px) {
    .twitter-tweet {
        transform: scale(0.8);
    }
}

/* SNS */
.sns-container ul {
    width: 65vw;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.sns-container ul li {
    width: 5vw;
    margin: auto;
}

/* フッター */
footer {
    margin-top: 7vw;
    height: 40vw;
}

@media screen and (max-width: 600px) {
    footer {
        height: 100vw;
    }
}

/* アプリ情報 */
.footer-app-info {
    position: relative;
    width: 74vw;
    height: 12vw;
    margin: 3vw auto;
}

@media screen and (max-width: 600px) {
    .footer-app-info {
        width: 76vw;
        height: 45vw;
        margin: 3vw auto;
    }
}

#footer-app-icon {
    position: absolute;
    width: 11vw;
    left: 0;
    top: 0;
}

@media screen and (max-width: 600px) {
    #footer-app-icon {
        width: 20vw;
        left: 0;
        top: 0;
    }
}

.footer-app-detail {
    position: absolute;
    width: 25vw;
    left: 13vw;
    top: 1.4vw;
}

@media screen and (max-width: 600px) {
    .footer-app-detail {
        width: 48vw;
        left: auto;
        right: 0;
        top: 1.4vw;
    }
}

#footer-googleplay {
    position: absolute;
    width: auto;
    height: 5vw;
    left: 43vw;
    top: 2vw;
}

@media screen and (max-width: 600px) {
    #footer-googleplay {
        width: auto;
        height: 12vw;
        left: 0;
        top: 24vw;
    }
}

#footer-appstore {
    position: absolute;
    width: auto;
    height: 5vw;
    left: 61vw;
    top: 2vw;
}

@media screen and (max-width: 600px) {
    #footer-appstore {
        width: auto;
        height: 12vw;
        left: auto;
        right: 0;
        top: 24vw;
    }
}

#footer-store-notes {
    position: absolute;
    width: 31vw;
    height: auto;
    left: 43.3vw;
    top: 8vw;
}

@media screen and (max-width: 600px) {
    #footer-store-notes {
        width: 73vw;
        height: auto;
        left: 1vw;
        top: auto;
        bottom: 0;
    }
}

/* リンク情報 */
.footer-link-container {
    width: 54vw;
    margin: 3vw auto;
    display: flex;
    gap: 5vw;
}

@media screen and (max-width: 600px) {
    .footer-link-container {
        width: 67vw;
        margin: 5vw auto;
        gap: 3.5vw;
    }
}

.footer-link-container a {
    font-size: 2vw;
    color: rgb(91, 83, 101);
}

@media screen and (max-width: 600px) {
    .footer-link-container a {
        font-size: 2.7vw;
    }
}

/* コピーライト */
.footer-copyright {
    width: 100%;
    margin: 3vw auto;
}

@media screen and (max-width: 600px) {
    .footer-copyright {
        margin: 5vw auto;
    }
}

/* フローティングバナー */
#bottom-floating-container {
    position: fixed;
    bottom: 10px;
    width: 100%;
    z-index: 100;
    margin: auto;
}

#apppay-banner {
    margin: auto;
    width: 450px;
}

@media screen and (max-width: 600px) {
    #apppay-banner {
        margin: auto;
        width: 75vw;
    }
}

/* 長文 */
.sec-content pre {
    white-space: pre-wrap;
    line-height: normal;
    padding: 0 6%;
    color: #5f5466;
}

/* 背景（法律に基づく表示、利用規約） */
.background-sakukoi-above {
    position: absolute;
    left: 0;
    top: 5vw;
    width: 17vw;
}

@media screen and (max-width: 600px) {
    .background-sakukoi-above {
        top: 5vw;
        width: 17vw;
    }
}
