@charset "UTF-8";

h2 {
    margin: 0 auto 60px;
    text-align: center;
}

h2 img {
    width: auto;
    height: 20px;
    margin: 0 auto;
}

.global-navigation_list li.top a {
    background-color: #403f44;
}

/*-----リンク共通-----*/
a.comon_link {
    background: #fff;
    color: #4d4951;
    display: block;
    margin: 0 auto;

    width: 400px;
    height: 54px;

    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

a.comon_link img {
    height: 12px;
}

a.comon_link {
    position: relative;
    transition: color 0.3s ease;
}

a.comon_link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 0.5em;
    height: 0.5em;
    border-top: 2px solid #4d4951;
    border-right: 2px solid #4d4951;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.3s ease;
}

a.comon_link:hover::after {
    transform: translate(30%, -50%) rotate(45deg);
}

a.comon_link:hover {
    opacity: 0.8;
    transition: opacity 0.4s ease;
}

/*INFORMATIONリンク*/
#information .entry_box {
    font-size: 47px;
    text-align: center;
}

#information .entry_box a.comon_link {
    margin-top: 20px;
    font-size: 28px;
    letter-spacing: .1em;
}

#information .entry_box a.comon_link:hover {
    opacity: 0.6;
    transition: background 0.4s ease, color 0.4s ease;
}

/*CONTENTS共通リンク*/
.contents_wrapper .text_box a.comon_link {
    margin-top: 50px;
}

@media screen and (max-width: 1000px) {
    h2 img {
        height: 16px;
    }

    a.comon_link {
        height: 60px;
        width: 330px;
    }
}

@media screen and (max-width: 767px) {
    h2 img {
        height: 14px;
    }

    a.comon_link {
        width: 100%;
    }
}

/* -----------------------------------------------------------
	TOP
----------------------------------------------------------- */

.mv_title,
.mv_title1,
.mv_title2,
.mv_title3 {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.mv_title.show,
.mv_title1.show,
.mv_title2.show,
.mv_title3.show {
    opacity: 1;
}


.mv {
    /*margin-top:12.3em;*/
    /*ナビ復活時戻す*/
    margin-bottom: 60px;
    margin-top: 9.3em;

}

.mv {
    position: relative;
    width: 100%;
    /* aspect-ratio: 300 / 209; */
    background-image: url(../../img/mv.jpg);
    /* background-size: contain; */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    height: 113vw;
    display: block;
}


.mv_title {
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.mv_title.show {
    opacity: 1;
}


.mv .mv_title_item1 {
    position: absolute;
    top: 8vw;
    right: 0;
    left: 0;
    margin: auto;
    width: 62vw;
    z-index: 2;
}

.mv .mv_title_item2 {
    position: absolute;
    top: 22vw;
    right: 0;
    left: 0;
    margin: auto;
    width: 76vw;
    z-index: 2;
}

.mv .mv_title_item3 {
    position: absolute;
    top: 43vw;
    right: 0;
    left: 0;
    margin: auto;
    width: 76vw;
    z-index: 2;
}

.mv .cap {
    font-size: 11px;
    position: absolute;
    bottom: 8px;
    left: 14px;
    color: #fff;
    text-shadow: 0 0 8px #000, 0 0 4px #000;
    filter:
        drop-shadow(1px 1px 0 rgba(0, 0, 0, 1)) drop-shadow(1px 1px 12px rgba(0, 0, 0, 0.1));
}

@media screen and (min-width: 2000px) {
    .mv {
        height: 114vw;
        background-position: center bottom;
    }
}

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

@media screen and (max-width: 1000px) {
    .mv {
        height: 113vw;
    }

    .mv .mv_title_item1 {
        top: 7vw;
        width: 65vw;
    }

    .mv .mv_title_item2 {
        top: 23vw;
        width: 66vw;
    }

    .mv .mv_title_item3 {
        top: 47vw;
        width: 75vw;
    }
}

@media screen and (max-width: 767px) {
    .mv {
        margin-top: 0;
        margin-bottom: 0;
        height: 125vw;
    }

    .mv_smp {
        margin-top: 0;
        margin-bottom: 20px;
    }

    .mv_smp .cap {
        font-size: 9px;
        position: absolute;
        bottom: -16px;
        right: 14px;
    }
}



/* -----------------------------------------------------------
	INFORMATION
----------------------------------------------------------- */
#information {
    color: #fff;
    margin-bottom: 70px;
}

#information .information_box {
    padding: 50px 0;
    text-align: center;
}

#information .entry_box {
    font-size: 47px;
}

#information .information_box .title {
    font-size: 20px;
}

@media screen and (max-width: 1000px) {
    #information .entry_box {
        font-size: 42px;
    }

}

@media screen and (max-width: 767px) {
    #information {
        margin-bottom: 0;
    }

    #information .entry_box {
        padding: 60px 0;
        font-size: 24px;
    }

    #information .entry_box a.comon_link {
        margin-top: 10px;
        font-size: 16px;
    }

    #information .information_box .title {
        font-size: 18px;
    }
}