/* CSS INFORMATION -====================================================
File name : base.css
Description :
===================================================================== */

html {
    min-height: 100vh;
    overflow-x: hidden;
    font-size: calc(10 / 750 * 100vw);
}

@media screen and (min-width: 768px) {
    html {
        font-size: calc(10 / 1400 * 100vw);
    }
}

@media screen and (min-width: 1400px) {
    html {
        font-size: 10px;
    }
}

body {
    margin: 0;
    padding: 0;
}

#wrapper {
    font-family: "Shippori Mincho", serif;
    color: #fff;
    min-height: 100vh;
    /* padding: 0 0 calc(50 / 750 * 100%); */
    background-size: 230%;
}

#wrapper img {
    pointer-events: none;
}

#main {
    overflow: hidden;
}

@media screen and (min-width: 768px) {
    #wrapper {
        background-size: contain;
    }
}

.top_wrap {
    overflow: hidden;
}

.forSP {
    display: block;
}

.forPC {
    display: none;
}

@media screen and (min-width: 768px) {
    .forSP {
        display: none;
    }
    .forPC {
        display: block;
    }
}

img {
    width: 100%;
}

.gDef-top-banner {
    background-color: #000;
    position: relative;
    z-index: 3;
}

.gDef-contents p,
.gDef-contents dl {
    font-size: 2.4rem;
    line-height: 2;
    color: #031310;
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    .gDef-contents p,
    .gDef-contents dl {
        font-size: 1.6rem;
    }
}

.set1,
.set1 * {
    position: relative;
}

.set1 img,
.set1 * img {
    width: 100%;
    height: auto;
    display: block;
}

.set1 a,
.set1 * a {
    color: #000;
    display: block;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.set2 {
    position: relative;
    z-index: 10;
}

.set3 {
    position: relative;
    z-index: 500;
}

.inner {
    width: calc(690 / 750 * 100%);
    margin: 0 auto;
    z-index: 1;
}

@media screen and (min-width: 768px) {
    .inner {
        width: calc(1000 / 1400 * 100%);
        max-width: 1000px;
    }
}

svg {
    width: 100%;
    height: auto;
}


/* .preloadedImages {
    width: 0px;
    height: 0px;
    display: inline;
    background-image: url(../images/nav_01_h.png), url(../images/nav_02_h.png), url(../images/nav_03_h.png), url(../images/nav_04_h.png), url(../images/nav_05_h.png), url(../images/pagetop_h.png), url(../images/btn_twitter_h.png);
} */


/* =====================================================================
*    nav
* =================================================================== */

.header_nav {
    z-index: 4;
    background: url(../images/bg_nav.png) repeat center/auto 10rem;
    -webkit-box-shadow: 0 10px 10px rgba(10, 90, 74, 0.3);
    box-shadow: 0 10px 10px rgba(10, 90, 74, 0.3);
}

.header_nav .inner {
    max-width: 1400px;
    margin: 0;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .header_nav .inner {
        margin: auto;
    }
}

.nav_menu {
    padding: 1.4rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: center;
}

.nav_menu li {
    width: 18rem;
}

.nav_menu li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 8rem;
    font-size: 2.6rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.1em;
    text-shadow: 0 0 3rem rgba(4, 114, 86, 0.8), 0 0 2rem rgba(4, 114, 86, 0.8), 0 0 2rem rgba(4, 114, 86, 0.8), 0 0 2rem rgba(4, 114, 86, 0.8), 0 0 1.5rem rgba(4, 114, 86, 0.8);
}

.nav_menu .nav_original a,
.nav_menu .nav_music a {
    letter-spacing: 0.05em;
}

.nav_menu .nav_twitter a {
    margin: 0 auto;
    padding: 0;
    width: 6rem;
    height: 100%;
    filter: drop-shadow(0 0 1rem rgba(4, 114, 86, 0.5))
}


/* @media screen and (max-width: 767px) {
    .nav_menu .nav_cast a {
        padding: 0 5rem;
    }
} */

@media screen and (min-width: 768px) {
    .header_nav {
        background-size: cover;
    }
    .nav_menu {
        padding: 0;
    }
    .nav_menu li {
        margin: 0;
        width: auto;
    }
    .nav_menu li a {
        position: relative;
        /* padding: 0 5rem; */
        padding: 0 2.5rem;
        height: 10rem;
        font-size: 3rem;
    }
    .nav_menu li a::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 6.1rem;
        height: 6rem;
        background: url(../images/img_petal.png) no-repeat center/contain;
        z-index: -1;
        opacity: 0;
        transition: 0.3s ease;
    }
    .nav_menu li a:hover::before {
        opacity: 1;
    }
    .nav_menu .nav_twitter a {
        margin: 0 2rem;
        width: 5.8rem;
    }
    .nav_menu .nav_twitter a::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transform: translate(0);
        background: url(../images/nav_twitter_h.png) no-repeat center/contain;
        z-index: 1;
    }
}


/* =====================================================================
*    footer
* =================================================================== */

#footer p {
    color: #000;
    text-align: center;
    padding: 0 0 1em;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 1.3rem;
}

.pagetop {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1000 !important;
    margin: 0 1rem 36rem 0;
    width: 14.8rem;
}

.pagetop.fixed,
.bnr_5fungo.fixed {
    position: fixed;
}

.pagetop a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/pagetop_h.png) no-repeat center center/contain;
    opacity: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    z-index: 1;
}

.pagetop a:hover::before {
    opacity: 1;
}

.bnr_5fungo {
    position: absolute;
    right: 0;
    bottom: 0;
    margin-bottom: 3rem;
    z-index: 1000 !important;
    width: 17.9rem;
}

@media screen and (min-width: 768px) {
    .pagetop {
        margin-bottom: 31rem;
        width: 11.3rem;
    }
    .bnr_5fungo {
        width: 15rem;
    }
    .bnr_5fungo a {
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
    }
    .bnr_5fungo a:hover {
        opacity: 0.7;
    }
}


/* =====================================================================
*    background
* =================================================================== */


/* motion */


/* .tg_cmn {
    opacity: 0;
}

.tg_cmn.active {
    opacity: 1;
    -webkit-transition: transform 1s cubic-bezier(0.25, 0.25, 0, 1.5), opacity 1s cubic-bezier(0.5, 0, 0, 1);
    -moz-transition: transform 1s cubic-bezier(0.25, 0.25, 0, 1.5), opacity 1s cubic-bezier(0.5, 0, 0, 1);
    -o-transition: transform 1s cubic-bezier(0.25, 0.25, 0, 1.5), opacity 1s cubic-bezier(0.5, 0, 0, 1);
    transition: transform 1s cubic-bezier(0.25, 0.25, 0, 1.5), opacity 1s cubic-bezier(0.5, 0, 0, 1);
}

.tg_cmn.active {
    transition-delay: .5s;
} */

.bg01,
.bg02,
.bg03 {
    position: relative;
}

.bg01::after,
.bg02::after,
.bg03::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.bg01::after {
    background: url(../images/bg_01_sp.jpg) no-repeat top center/cover;
}

.bg02::after {
    background: url(../images/bg_02_sp.jpg) no-repeat top center/cover;
}

.bg03::after {
    background: url(../images/bg_03_sp.jpg) no-repeat top center/cover;
}

.bg_orange01 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    /* margin-top: calc(870 / 750 * 100%); */
    margin-top: calc(1200 / 750 * 100%);
    width: calc(580 / 750 * 100%);
    height: 184rem;
    background: url(../images/bg_orange_01.png) no-repeat top left/cover;
    -webkit-transition: 1s ease;
    -o-transition: 1s ease;
    transition: 1s ease;
}

.bg_orange02 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    /* margin-top: calc(3300 / 750 * 100%); */
    margin-top: calc(4000 / 750 * 100%);
    width: 100%;
    height: 218rem;
    background: url(../images/bg_orange_02.png) no-repeat top center/cover;
    -webkit-transition: 1s ease;
    -o-transition: 1s ease;
    transition: 1s ease;
}

@media screen and (min-width: 768px) {
    .bg01::after {
        background: url(../images/bg_01.jpg) no-repeat top center/cover;
    }
    .bg02::after {
        background: url(../images/bg_02.jpg) no-repeat top center/cover;
    }
    .bg03::after {
        background: url(../images/bg_03.jpg) no-repeat top center/cover;
    }
    .bg_orange01 {
        margin-top: 65rem;
        width: 81.4rem;
        height: 186.9rem;
        background-size: 100% 100%;
    }
    .bg_orange02 {
        width: 160rem;
        height: 178.2rem;
        background-size: 100% 100%;
        margin-top: 260rem;
    }
}

.parallax_flower {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.flower01 {
    width: 100%;
    height: 100%;
    background: url(../images/bg_hana_sp.png) space center top/cover;
    /* transition: transform .3s linear .008s; */
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    /* z-index: 200; */
    position: absolute;
    top: 0;
    left: 0;
}

.flower02 {
    width: 100%;
    height: 100%;
    background: url(../images/bg_hana_under_sp.png) space center top/cover;
    /* transition: transform .8s linear .004s; */
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    /* z-index: 0; */
    position: absolute;
    top: 0;
    left: 0;
}

@media screen and (min-width: 768px) {
    .flower01 {
        background-image: url(../images/bg_hana.png);
    }
    .flower02 {
        background-image: url(../images/bg_hana_under.png);
    }
}


/* =====================================================================
*    mv
* =================================================================== */

.mv {
    position: relative;
    background-color: #101b2b;
    background: linear-gradient(to right, rgba(12, 23, 38, 1) 0%, rgba(32, 49, 68, 1) 50%, rgba(12, 23, 38, 1) 100%);
}

.mv .inner {
    width: 100%;
}

.mv .mv_ttl {
    max-width: 1000px;
    margin: 0 auto;
}

.mv_date {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.2rem 0;
    background: linear-gradient(to right, rgba(12, 23, 38, 0.9) 0%, rgba(32, 49, 68, 0.9) 50%, rgba(12, 23, 38, 0.9) 100%);
}

.mv_date img {
    margin: 0 auto;
    width: 60.8rem;
}

@media screen and (min-width: 768px) {
    .mv_date {
        padding: calc(14 / 1000 * 100%) 0 calc(19 / 1000 * 100%);
        background: linear-gradient(to right, rgba(12, 23, 38, 0.9) 0%, rgba(32, 49, 68, 0.9) 50%, rgba(12, 23, 38, 0.9) 100%);
    }
    .mv_date img {
        width: calc(531 / 1000 * 100%);
        max-width: 531px;
    }
}

@media screen and (min-width: 1000px) {
    .mv_date {
        padding: 14px 0 19px;
    }
}


/* =====================================================================
*    ttl
* =================================================================== */

h2.ttl {
    width: 100%;
    margin: 0 auto calc(80 / 690 * 100%);
    position: relative;
    z-index: 10 !important;
}

@media screen and (min-width: 768px) {
    h2.ttl {
        width: calc(620 / 1000 * 100%);
        margin: 0 auto calc(40 / 690 * 100%);
        max-width: 620px;
    }
}


/* =====================================================================
*    banner
* =================================================================== */

#banner {
    margin: auto;
    padding: calc(45 / 690 * 100%) 0 0;
}

#banner ul {
    width: calc(620 / 690 * 100%);
    margin: auto;
}

#banner ul li img {
    -webkit-box-shadow: 17px 17px 22px rgba(31, 44, 53, 0.15);
    box-shadow: 17px 17px 22px rgba(31, 44, 53, 0.15);
}

.nav .banner_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 2rem 0 0;
}

.nav .banner_list li {
    margin: 0 calc(40 / 750 * 100%) 2rem 0;
    width: calc(300 / 750 * 100%);
}

.nav .banner_list li:last-child {
    margin: 0;
}

@media screen and (min-width: 768px) {
    #banner {
        padding: calc(45 / 1000 * 100%) 0 0;
    }
    #banner ul {
        width: calc(552 / 1000 * 100%);
        max-width: 552px;
    }
    .nav .banner_list {
        padding: 3rem 0 1rem;
    }
    .nav .banner_list li {
        width: calc(300 / 1400 * 100%);
        margin-right: calc(40 / 1400 * 100%);
    }
    .banner_list li a:hover {
        opacity: 0.7;
    }
}


/* =====================================================================
*    intro
* =================================================================== */

.movie_embed {
    position: relative;
    aspect-ratio: 16/9;
}

.movie_embed iframe,
.movie_embed video {
    width: 100%;
    height: 100%;
}

.intro_txt {
    max-width: 600px;
    margin: auto;
}

@media screen and (min-width: 768px) {
    .intro_txt {
        width: calc(589 / 1000 * 100%);
    }
}


/* =====================================================================
*    story
* =================================================================== */

@media screen and (max-width: 767px) {
    .story .inner {
        width: calc(650 / 750 * 100%);
    }
}

.story_tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 5.5rem;
}

.story_tab li {
    position: relative;
    display: block;
    margin: 0 calc(7 / 650 * 100%) 2rem;
    width: calc(270 / 650 * 100%);
}

.story_tab li::before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    opacity: 0;
    z-index: 1;
}

.story_tab li:nth-child(1)::before {
    background: url(../images/story/btn_tab1_a.jpg) no-repeat center/contain;
}

.story_tab li:nth-child(2)::before {
    background: url(../images/story/btn_tab2_a.jpg) no-repeat center/contain;
}

.story_tab li.is-active::before {
    opacity: 1;
}

.story_tab li.nolink {
    pointer-events: none;
    filter: grayscale(1);
}

.story_panel>li {
    display: none;
}

.story_panel>li.is-show {
    display: block !important;
}

.story_panel_group {
    margin-bottom: 9.6rem;
}

.story_panel_group p {
    margin-top: -10rem;
    padding: 19rem 3.5rem 6rem;
    line-height: 1.833;
    background: rgba(254, 252, 243, 0.3);
}

.story_panel_slider {
    padding: 0 calc(48 / 650 * 100%);
    z-index: 2;
}

.story_panel_slider figure img {
    aspect-ratio: 1.5/1;
    -o-object-fit: cover;
    object-fit: cover;
}

.story_panel_slider .slick-arrow {
    display: block;
    position: absolute;
    top: 45%;
    width: 3.2rem;
    height: 5.1rem;
    background: url(../images/story/icon_arrow.png) no-repeat center/contain;
    z-index: 3;
}

.story_panel_slider .slick-arrow.prev {
    left: 0;
}

.story_panel_slider .slick-arrow.next {
    right: 0;
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

@media screen and (min-width: 768px) {
    .story_box {
        margin: 0 auto;
    }
    .story_tab li {
        margin: 0;
        width: calc(162 / 1000 * 100%);
        cursor: pointer;
    }
    .story_tab li:hover::before {
        opacity: 1;
    }
    .story_panel_group {
        margin-bottom: 8rem;
    }
    .story_panel_group p {
        padding: 14rem 3.5rem 6rem;
        line-height: 2.25;
    }
    .story_panel_slider {
        margin: 0 auto;
        padding: 0 calc(60 / 1000 * 100%);
        width: calc(800 / 1000 * 100%);
    }
    .story_panel_slider .slick-arrow {
        width: 2.2rem;
        height: 3.5rem;
        cursor: pointer;
    }
}


/* =====================================================================
*    popup
* =================================================================== */

.popup {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999;
}

.popup_area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

.popup_bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
}

.popup_inner {
    position: relative;
    margin: auto;
    -ms-flex-item-align: start;
    align-self: flex-start;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .popup_bg {
        cursor: pointer;
    }
    .popup_inner {
        max-width: 1000px;
    }
}


/* =====================================================================
    popup
======================================================================*/

.popup_chart .popup_inner {
    /* width: calc(630 / 750 * 100%); */
}

.popup_close {
    position: absolute;
    top: 8em;
    right: 3em;
    width: 7rem;
    height: 7rem;
    z-index: 3;
}

.popup_close::before,
.popup_close::after {
    content: "";
    display: block;
    width: 0.1em;
    margin: 0.55em auto 0;
    padding-top: 100%;
    background-color: #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.popup_close::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.popup_list {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 5.5em 0;
}

.popup_list>li {
    position: relative;
    display: none;
    margin: 0 auto;
    padding: 14rem calc(65 / 750 * 100%) 10rem;
    background: #062024;
    z-index: 2;
}

.popup_list>li figure {
    position: relative;
    margin: 0 auto;
    width: 54.8rem;
    z-index: 1;
}

.popup_list>li figure::before {
    content: '';
    position: absolute;
    top: -7.1rem;
    left: -5.3rem;
    width: 11.4rem;
    height: 18.4rem;
    background: url(../images/img_deco1.png) no-repeat center/contain;
}

.popup_list>li>p {
    color: #fff;
    line-height: 1.833;
}

.chart_name {
    position: relative;
    text-align: center;
    margin: -16rem 0 10rem;
    padding: 17.4rem 0 3rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    background-color: rgba(0, 0, 0, 0.5);
}

.chart_name::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/bg_pattern1.png) repeat center/cover;
    mix-blend-mode: overlay;
}

.chart_name::after {
    content: '';
    position: absolute;
    bottom: -0.4rem;
    right: -5.1rem;
    width: 5.2rem;
    height: 6.9rem;
    background: url(../images/img_deco2.png) no-repeat center/contain;
}

.chart_name>* {
    position: relative;
}

.chart_name dt {
    color: #fff;
}

.chart_name dd {
    display: inline-block;
    font-size: 2.8rem;
    color: #e3ae3e;
    background: -webkit-linear-gradient(-50deg, #eab032 0%, #feeca1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media screen and (min-width: 768px) {
    .popup_chart .popup_inner {
        width: calc(1000 / 1400 * 100%);
        max-width: 1000px;
    }
    .popup_close {
        cursor: pointer;
    }
    .popup_list>li {
        padding: 16.8rem calc(190 / 1000 * 100%);
    }
    .popup_list>li figure {
        width: 45.6rem;
    }
    .popup_list>li figure::before {
        top: -6.8rem;
        left: -9.4rem;
    }
    .chart_name {
        width: 52rem;
        margin: -14rem auto 5rem;
        padding: 16rem 0 3rem;
    }
    .chart_name::after {
        bottom: 3.4rem;
        right: -7rem;
    }
    .chart_name dt {
        font-size: 2.2rem;
    }
    .chart_name dd {
        font-size: 2.4rem;
    }
}


/* =====================================================================
    print
======================================================================*/

@media print {
    .mv_ttl img,
    .chart_img img,
    .popup_list>li figure img,
    .hulu_popup_img img,
    .story_panel_slider img {
        display: none;
    }
}