@charset "UTF-8";

html {
    scroll-behavior: smooth;
}

/* サイトの全体共通 */
body {
    font-size: 16px;
    font-family: "M PLUS Rounded 1c", " Noto Sans JP", "sans-serif";
    color: #FFF;
    background-color: #9FB8E5;
    line-height: 2.0;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
}

/* コンテンツ幅 */
.wrapper {
    max-width: 1280px;
    width: 90%;
    margin-right: auto;
    margin-left: auto;
}
/* ローディング */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: .8s;
}

.loading.hide {
    opacity: 0;
    pointer-events: none;
}


.loader,
.loader:before,
.loader:after {
    background: #9fb8e5;
    -webkit-animation: load1 1s infinite ease-in-out;
    animation: load1 1s infinite ease-in-out;
    width: 1em;
    height: 4em;
}

.loader {
    color: #9fb8e5;
    text-indent: -9999em;
    margin: 88px auto;
    position: relative;
    font-size: 11px;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

.loader:before,
.loader:after {
    position: absolute;
    top: 0;
    content: '';
}

.loader:before {
    left: -1.5em;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.loader:after {
    left: 1.5em;
}

@-webkit-keyframes load1 {

    0%,
    80%,
    100% {
        box-shadow: 0 0;
        height: 4em;
    }

    40% {
        box-shadow: 0 -2em;
        height: 5em;
    }
}

@keyframes load1 {

    0%,
    80%,
    100% {
        box-shadow: 0 0;
        height: 4em;
    }

    40% {
        box-shadow: 0 -2em;
        height: 5em;
    }
}


/* ボタン */
.button {
    font-size: 0.97vw;/* 1440px幅で14px */
    color: #FFF;
    background-color: #324850;
    border-radius: 30px;
    display: inline-block;
    /* max-width: 200px; */
    width: 100%;
    padding: 1em 0;
    text-align: center;
    position: relative;
    transition: .3s;
}

.button_area{
    display: inline-block;
    position: relative;/* 擬似要素の基準点 */
}

.footer_button{
    color: #324850;
    background-color: #fff;
    width: 65%;
}


.dli-arrow-right {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    line-height: 1;
    position: relative;
    width: 2em;
    height: 0.1em;
    background: currentColor;
}

.dli-arrow-right::before {
    content: '';
    width: 0.65em;
    height: 0.65em;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    transform: rotate(45deg);
    transform-origin: top right;
    position: absolute;
    top: 50%;
    right: -0.05em;
    box-sizing: border-box;
}

.dli-arrow-right::after{
    content: "";
    display: block;
    position: relative;
    /* left: 50%; */
    top: -33px;
    width: 55px;
    height: 65px;
    background-image: url(../image/contents_button.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 20%;
}

a:hover .dli-arrow-right::after{
    background-image: url(../image/contents_button_hover.png);
    opacity: 1;
}

a:hover {
    opacity: 0.6;
}

a {
    transition: opacity 0.4s;
}

/* ヘッダー */
.pc_none{
    display: none;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding-bottom:40px;
    /* position: relative; */
}

.header_logo{
    width: 10%;
}


.header_nav{
    font-size: 0.97vw;/* 1440px幅で14px */
    width: 48%;
    display: flex;
    justify-content: flex-end;
}


.header_nav_list{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    text-transform: uppercase;
    white-space: nowrap;
}

.header_nav li {
    position: relative;
}

.header_nav li +li{
    margin-left: 30px;
}


.header_nav_list li:not(.dropdown_list){
    padding: 20px 0;
}


.header .button_area .X_icon{
    display: none;
}

.dropdown_lists{
    display: none;/* デフォルトで非表示 */
    margin-top: 1em;
    padding: 0.5em;
    width: auto;
    height: auto;
    position: absolute;
    content: "";
    white-space: nowrap;
        color: #324850;
            background-color: #fff;
            border-radius: 20px;
            top: 70%;
            left: -200%;
}



    .dropdown:hover .dropdown_lists {
        display: block;
        /* ホバーしたら表示 */
        display: flex;
        justify-content: space-between;
    }

.dropdown_lists::before{
content: "";
    position: absolute;
    top: -15%;
    left: 50%;
    z-index: -1;
    width: 20px;
    height: 12px;
    transform: translateX(-50%);
    box-sizing: border-box;
    background-color: #FFF;
    clip-path: polygon( 50% 0, 100% 100%, 0 100%);
}




.dropdown_lists a {
    /* text-decoration: none; */
    padding: 1em;
    display: block;
}

.header_nav .button_area{
    width: 38%;
    margin-left: 30px;
    transform: translateY(25%);
}

.header_nav .button_area a+a{
    margin-top: 6%;
}

.link_button{
    width: 10%;
}

header .link_button{
    transform: translate(27%,-40%);
}

footer .link_button{
    transform: translate(10%, -40%);
}


header .X_icon{
    width: 20%;
}


/* 各セクション共通 */
.section_title {
    font-family: "Cantarell","M PLUS Rounded 1c", " Noto Sans JP", "sans-serif";
    color: #FFC6C8;
    font-size: clamp(4.063rem, 3.292rem + 3.29vw, 6.25rem);
    font-weight: bold;
    line-height: 1.4;
    text-transform: uppercase;
}

.section_title span {
    display: block;
    font-family: "M PLUS Rounded 1c", " Noto Sans JP", "sans-serif";
    color: #fff;
    font-size: clamp(1.25rem, 1.03rem + 0.94vw, 1.875rem);
}

/* 下層ページ共通 */
.head_text{
        font-family: "Cantarell", "M PLUS Rounded 1c", " Noto Sans JP", "sans-serif";
        color: #FFC6C8;
        font-size: clamp(1.25rem, 1.03rem + 0.94vw, 1.875rem);
        font-weight: bold;
        line-height: 1.3;
        text-transform: uppercase;
}

.head_name{
        font-family: "M PLUS Rounded 1c", " Noto Sans JP", "sans-serif";
        color: #fff;
        font-size: clamp(2.5rem, 1.84rem + 2.82vw, 4.375rem);
        font-weight: bold;
        letter-spacing: 0.2em;
}

/* 公演情報 */
.new_perform{
    position: relative;
    margin-top: clamp(10.625rem, 7.764rem + 12.21vw, 18.75rem);
}
.section_title_box {
    background-image: url(../image/perforrm_berry.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 300px;
    position: absolute;
    content: "";
    top: -47%;
    left: 0;
    z-index: -1;
}

.new_perform_container {
    background-color: #fff;
    border-radius: 0 250px 250px 0;
    width: 95%;
}

.new_perform_box {
    display: flex;
    justify-content: space-between;
    max-width: 960px;
}

.new_perform .section_title {
    color: #516FAA;
    letter-spacing: .2em;
    font-size:clamp(2.188rem, 1.417rem + 3.29vw, 4.375rem);
    padding: 6% 0 0 6%;
}

.next_perform_img {
    width: 35%;
    transform: translateY(-15%);
    /* transform: translateY(15%); */
}

/* .next_perform_img img {
    aspect-ratio: 322 / 436;
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

/* .perform_notice{
    font-size: 14px;
} */


.perform_text {
    color: #314850;
    padding: 10% 2%;
    width: 60%;
}


/* .perform_text dt {
    font-size: clamp(1rem, 0.78rem + 0.94vw, 1.625rem);
} */

.new_perform .dli-arrow-right {
    color: #324850;
}

.new_perform .dli-arrow-right::after {
    background-image: url(../image/contents_button_b.svg);
}

.new_perform .button_area {
    margin-top: 90px;
    text-align: right;
    margin-right: 24%;
    display: block;
}


/* パンくずリスト */

.breadcrumb {
    margin-top: 28px;
}

.breadcrumb ul {
    display: flex;
    font-size: 14px;
    color: #314850;
    text-transform: uppercase;
}

.breadcrumb li {
    /* margin-right: 15px; */
    display: flex;
    align-items: center;
}


.breadcrumb li+li::before {
    content: '';
    display: block;
    width: 0.5em;
    height: 0.5em;
    border-right: 10px solid #314850;
    border-left: 10px solid transparent;
    border-bottom: 10px solid transparent;
    transform:translateY(-3.5px) rotate(45deg);
    margin-right: 10px;
}


/* グッズ販売 */
.goods {
    margin: 16% auto 10%;
    position: relative;
}

.goods_container {
    /* display: flex; */
    align-items: flex-end;
    /* justify-content: space-between; */
    /* margin: 0 2%; */
    padding: 0 2% 50px;
    max-width: 1200px;
    background-color: #fff;
    border-radius: 30px;
}

.goods .section_title {
    /* padding-bottom: 236px; */
    transform: translateY(-35%);
    text-transform: uppercase;
    line-height:1;
}

.goods .goods_span {
    color: #324850;
}

.goods_imgbox{
    display: flex;
    justify-content: center;
    margin-bottom:2%;
}

.goods_img{
    width: 23%;
}

.goods .button_area {
    color: #324850;
    display: flex;
    justify-content: flex-end;
            width: 95%;
        }

.goods_container .button_area a{
margin-left: -25%;
}

.goods .dli-arrow-right {
    color: #324850;
}

.goods .dli-arrow-right::after {
    content: "";
    display: block;
    position: relative;
    /* left: 50%; */
    top: -33px;
    width: 55px;
    height: 65px;
    background-image: url(../image/contents_button_b.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 22%;
}

/* .comingsoon {
    position: absolute;
    z-index: 1;
    top: -13%;
    left: 0;
    height: 125%;
    width: 100%;
    background-color: rgba(245, 120, 124, 0.7);
} */

/* .comingsoon_text {
    font-family: "Cantarell";
    text-align: center;
    font-size: clamp(2.5rem, 1.62rem + 3.76vw, 5rem);
    transform: translateY(120%);
} */

/* お問い合わせ */
.contact {
    background-color: #84A8EB;
    text-align: center;
    padding: 20px 0 90px;
}

.contact .section_title{
    text-transform: uppercase;
}

.contact_span {
    font-size: 30px;
}

.contact .contents_button::before {
    content: "";
    display: block;
    position: absolute;
    width: 35px;
    height: 35px;
    left: -23%;
    top: 5%;
    background-image: url(../image/mail_icon.png);
    background-size: contain;
    background-repeat: no-repeat;
}



.contact .contents_button_parts {
    width: 4%;
}

.contact .button_area {
    margin-top: 57px;
}

/* フッター */
.footer{
    background-color: #314850;
}

.footer_container{
    display: flex;
    justify-content: space-between;
    padding-top: 51px;
}

.footer_logo{
    width: 45%;
    transform: translateX(60%);
}

.footer_boxleft{
width: 22%;
}

.footer_boxright{
    width: 30%;
}

.footer_boxright .button_area a+a {
    margin-left: 6%;
}

.footer.button_area{
display: flex;
justify-content: flex-end;
align-items: center;
padding-left: 40%;
}

.contact_button{
display: none;
}

.footer_nav{
    font-size: 0.97vw;/* 1440px幅で14px */
    margin-top: 30px;
    text-transform: uppercase;
}

.footer_nav ul{
    display: flex;
    justify-content: flex-end;
    white-space: nowrap;
}

.footer_nav li{
margin-left: 20px;
}

.footer_copy {
    display: block;
    padding-top: 10px;
    padding-bottom: 48px;
    text-align: right;
    font-size: 12px;
}

/* ここからスマホ */
@media (max-width: 768px) {

/* ヘッダーSP */
.header_logo{
    width: 15%;
}

.header {
    flex-direction: row;
    align-items: center;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    padding: 15px 5%;
}

.header_nav{
    font-size: 22px;
    display: block;
    width: auto;
    
}

.header_nav_list{
    flex-wrap: wrap;
    margin-top: 0;
    position: fixed;
    z-index: 11;
    top: 0;
    left: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #324850;
    width: 100%;
    height: 100vh;
    gap: 1em;
    transform: translateX(100%);
    transition: .4s;
    padding-top: 2%;
}

.dropdown_lists{
    display: block;
    color: #FFF;
    background-color: transparent;
    position: static;
    width: auto;
    font-size: 14px;
    margin-top: 0;
    padding: 0;
}

.dropdown_lists::before{
    display: none;
}

li.dropdown_list::before{
    background-image: url(../image/humberger_button.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 17px;
    height: 20px;
    content: "";
    display: block;
    transform: translate(-3px, 29px);
}

.dropdown:hover .dropdown_lists{
    display: block;
}

.dropdown_lists a{
    padding: .5em;
}

.header_nav_list li:not(.dropdown_list) {
    padding: 0;
}


.nav_open .header_nav ul {
    transform: translateX(0);
    display: flex;
    flex-direction: column;
}

.header_nav li+li{
    margin-left: 0;
}

.header_nav .button_area{
    display: flex;
        flex-wrap: wrap;
            z-index: 12;
            justify-content: center;
            align-items: center;
            gap: 1em;
            /* transform: translateX(100%); */
            transition: .4s;
            margin-left: 0;
}

.button_area.sp_none {
    display: none;
}

.pc_none{
    display: block;
    display: flex;
}

.header_nav .X_icon {
    display: none;
}
.header .button_area .X_icon {
    display: block;
    width: 100%;
}

    .nav_open .header .button_area {
    transform: translateX(0);
    width: 100%;
    height: auto;
    }


.nav_open .header .button_area a:not(.X_icon a){
background-color: #fff;
    color: #314850;
    padding: 1em;
        }

.header_nav .button_area a+a{
    margin-top: 2%;
}

li.X_icon{
    margin-top: 20%;
}

/* ハンバーガーメニュー */
.nav_button {
    position: relative;
    z-index: 12;
    width: 30px;
    height: 30px;
}

.nav_button span {
    display: block;
    width: 30px;
    height: 1px;
    background-color: #324850;
    position: absolute;
    top: 0;
    z-index: 13;
    /* right: 5%; */
    transition: .4s;
}

.nav_button span+span {
    top: 10px;
}

.nav_button span+span+span {
    top: 20px;
}

.nav_open .nav_button span {
    background-color: #fff;
    transform: rotate(-45deg);
    top: 50%;
}

.nav_open .nav_button span+span {
    opacity: 0;
}

.nav_open .nav_button span+span+span {
    opacity: 1;
    transform: rotate(45deg);
}


/* ボタン */
.button_area{
    font-size: 12px;
}

.button {
    font-size: 16px;
}

.link_button{
    width: 5%;
}

.dli-arrow-right::after {
    top: -28px;
    width: 45px;
    height: 55px;
}

/* パンくずリストSP */
.breadcrumb ul{
    font-size: 12px;
    white-space: nowrap;
}

.breadcrumb li+li::before{
    border-right:8px solid #314850;
    border-left:8px solid transparent;
    border-bottom:8px solid transparent;
    margin-right: 8px;
}

/* 下層共通SP */
.section_title {
    line-height: 1.3;
}

/* 公演情報SP */
.new_perform .section_title_box {
    background-size: 30%;
    top: -20%;
}

.new_perform_container {
    width: 100%;
    border-radius: 0;
}

.new_perform_box {
    flex-direction: column;
    align-items: center; 
}


.perform_text dd {
    font-size: 14px;
}
/* .perform_notice {
    font-size: 12px;
} */


.new_perform .button_area {
    margin-top: 30px;
    margin-right: 15%;
}

/* 公演情報SP */

.next_perform_img {
    position: static;
    width: 70%;
    transform: translateY(-10%);
}

/* .next_perform_img img {
    aspect-ratio: 210 / 290;
} */



.perform_text {
    padding: 0 0 20% 0;
    width: 90%;
}

/* グッズ販売SP */
.goods{
    margin: 177px auto 65px;
}

/* .goods .section_title{
    padding-bottom: 93px;
} */

.goods_imgbox{
    margin-bottom: 5%;
}

.goods .button_area{
    width: 93%;
}

.goods .dli-arrow-right::after {
    top: -28px;
    width: 45px;
    height: 55px;
}

/* お問い合わせSP */
.contact{
    padding-bottom: 48px;
}

.contact_container p {
    font-size: 14px;
    margin-top: 30px;
}

.contact .contents_button::before{
    width: 32px;
    height: 32px;
    left: -30%;
}

/* フッターSP */
.footer_container{
    flex-direction: column;
    padding-top: 20px;
}

.footer_nav ul{
    display: none;
}

.footer_boxleft{
width: 100%;
padding-top: 0;
}

.footer_image{
    width: 50%;
    margin: 0 auto;
}

.footer_boxright{
    width: 100%;
}

.footer.button_area{
    flex-direction: column-reverse;
    padding-left: 0;
    margin-top: 40px;
}

.footer .button_area a+a{
    margin-bottom: 2%;
}

.footer_button{
    width: 100%;
    padding: 0.8em 0;
}

footer .link_button {
    width: 3%;
}

.footer_boxright .button_area a+a{
    margin-left: 0;
}

.contact_button{
    display: block;
    background-color: #fff;
    color: #314850;
}


.footer_copy {
    text-align: center;
    padding-bottom: 30px;
}

}

@media (max-width: 520px) {

        footer .link_button{
            width: 4%;
            transform: translate(10%,-50%);
        }

    }