
* {
    box-sizing: border-box;
}
h2,h3{
    line-height: 0;
    font-size: 140%;
    margin: 0;
    padding: 0;
}
dl,dd,ol,ul,figure,li{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
div{
    box-sizing: border-box;
}
section{
    box-sizing: border-box;
}
img{
    border-style: none; 
}
body{
    /* background: linear-gradient(90deg, rgba(251, 213, 251, 1), rgba(149, 233, 243, 1)); */
    background: linear-gradient( 90deg, #DED1FC, #C6FEE2);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
p{
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

/* ------------ヘッダーのCSS-------------*/
#header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 10;
    font-size: 16px;
}
#header .wrap{
    display: flex;
    align-items: center;
    padding: 0 17px;
    justify-content: space-between;
}
#header .g-nav{
    display: flex;
    justify-content: flex-end;
    padding-top: 1.98529vw;
    padding-bottom: 1.02941vw;
    margin-right: 2.42647vw;
}
#header .g-nav nav{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
#header .g-nav nav ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    width: 100%;
    transition: all 0.25s ease;
}
#header .g-nav nav ul:last-of-type{
    margin-top: 1%;
}
#header #btn-nav{
    display: none;
}
#header .logo{
    display: flex;
    align-items: center;
}
#header .logo a img{
    width: 100px;
}
#header .g-nav nav > ul > li{
    padding: 0;
    padding-left: 10px;
    padding-right:10px;
    margin-left: 10px;
}
#header .g-nav .accordion_btn{
    transition: all 0.25s ease;
    /* padding-right: 20px; */
}
#header .g-nav .accordion_btn a{
    padding-right: 10px;
    cursor: pointer;
}
#header .g-nav .accordion_btn .under.group-list{
    width: 345px;
}
#header .g-nav li.accordion_btn .under{
    z-index: 10000;
    position: absolute;
    background: #fff;
    right: 0;
    transition: opacity .5s,visibility 0s .5s;
    padding: 30px 15px;
    padding-right: 0;
    margin-right: 90px;
    box-shadow: 0 7px 15px -5px rgb(0 0 0 / 5%);
    display: flex;
    justify-content: space-between;
    border-radius: 0  0 20px 20px;
}
#header .g-nav .accordion_btn .under ul{
    margin-top: 0;
    justify-content: center;
}
#header .g-nav .accordion_btn .under li{
    margin-bottom: 15px;
}
#header .g-nav .accordion_btn .under li:last-of-type{
    margin-bottom: 0;
}
#header .g-nav .accordion_btn .under li a{
    font-size: 16px;
}
#header .sma-nav{
    display: none;
}

@media only screen and (max-width: 767px){
    #header .g-nav{
        display: none;
    }
    #header .sma-nav{
        display: flex;
    }
    #header .wrap{
        padding: 2.65625vw 3.125vw;
        justify-content: space-between;
    }
    #header #btn-nav{
        display: block;
        position: relative;
        width: 50px;
        height: 50px;
        z-index: 9999;
    }
    #header #btn-nav span{
        display: block;
        width: 25px;
        height: 2px;
        border-radius: 2px;
        background-color: #22c8d5;
    }
    #header #btn-nav span:nth-child(1){
        position: absolute;
        top: 14px;
        left: 15px;
        transition: all 0.25s ease;
    }
    #header #btn-nav span:nth-child(2){
        position: absolute;
        top: 29px;
        left: 15px;
        transition: all 0.25s ease;
    }
    .active span:nth-child(1){
        /* background-color: #fff !important; */
        transform: translateY(7px) rotate(-45deg);
    }
    .active span:nth-child(2){
        /* background-color: #fff!important; */
        transform: translateY(-8px) rotate(45deg);
    }
    #header .logo{
        position: relative;
        z-index: 2;
    }
    #header .logo a img{
        width: 80px;
    }
    #header .sma-nav{
        text-align: center;
        display: flex;
        position: fixed;
        top: 0px;
        right: -100vw;
        height: 100vh;
        background: #fff;
        z-index: 999;
        transition: all 0.6s ease;
        padding-top: 30vw;
        overflow-y: scroll;
        /* margin-right: 0;
        padding-right: 0; */
    }
    #header .sma-nav nav{
        padding-top: auto;
        overflow-y: scroll;
    }
    #header .sma-nav nav ul li{
        display: block;
        width: 50vw;
        padding: 10px 10px;
    }
    #header .sma-nav nav ul .accordion_cnt li{
        display: block;
        width:45vw;
        margin: 0 auto;
        padding:10px ;
        text-align: center;
    }
    /* #header .sma-nav nav ul{
        display: flex;
        top: 200px;
        width: 45%;
    } */
    /* #header .sma-nav nav ul:last-of-type{
        position: absolute;
        top: 440px;
        margin-top: 0;
    } */
    .sma-nav.panelactive{
        right: 0px !important;
    }
    /* .sma-nav nav,.sma-nav.panelactive nav{
        position: fixed;
        z-index: 999;
        width: 90vw;
        height: 100vh;
        overflow-y: scroll;
    }
    .sma-nav nav ul,.sma-nav.panelactive nav ul{
        display: block !important;
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 25%;
        transform: translate(-50%,-50%);
    }
    .sma-nav nav ul li,.sma-nav.panelactive nav ul li{
        text-align: center;
    }
    .sma-nav nav ul li a,.sma-nav.panelactive nav ul li a{
        display: block;
        padding: 20px;
        letter-spacing: 0.1em;
        font-weight: 600;
        color: #1B1B1B;
    }
    #header .sma-nav li.accordion_btn .under{
        border-radius: 0;
        background: #fff;
        box-shadow: none;
        right: 0;
        margin-left:22.5px;
        padding: 70px 0;
        overflow-y: scroll;
        left: 25%;
    }
    #header .sma-nav li.accordion_btn .under li{
        margin-bottom: 0;
    }
    #header .sma-nav li.accordion_btn .under li a{
        font-size: 12px;
    }
    .under.group-list .accordion_cnt{
        position: absolute;
        top:130px !important;
    } */
    .under.group-list::-webkit-scrollbar{
        display: none;
    }

}
@media screen and (min-width: 1300px){
    #header .g-nav {
        flex-wrap: wrap;
        padding-top: 27px;
        padding-bottom: 14px;
        margin-right: 33px;
    }
}
/* ---------------------------------*/


/* ------------h1のCSS ---------------*/
#content h1{
    position: relative;
    line-height: 1;
    text-align: center;
    letter-spacing: 0.18em;
}
#content h1 span{
    display: block;
    font-size: 18px;
    letter-spacing: 0.1em;
    padding-top: 15px;
}
#content h1{
    font-size: 50px;
    margin-bottom: 48px;
}
@media only screen and (max-width: 767px){
    #content h1{
        font-size: 46px;
        font-size: 7.1875vw;
        margin-bottom: 7.1875vw;
    }
    #content h1 span{
        font-size: 3.125vw;
        letter-spacing: 0.1em;
        padding-top: 2.34375vw;
    }
}
/* ---------------------------------*/

/* ------------KeyvisualのCSS-------------*/
#keyvisual{
    position: relative;
    z-index: 2;
}
#keyvisual .inner_img{
    position: relative;
    margin: 0 auto;

}
#keyvisual img{
    display: block;
    /* width: 90%; */
    /* height: 90%; */
    width: 100%;
    height: 100%;
    /* border-radius: 50px; */
    /* margin: 100px 3.5% 3.5% 5.5%; */
    margin-top: 100px;
}
@media only screen and (max-width: 767px){
    #keyvisual img{
        border-radius: 3.125vw;
    }
}

/* ---------------------------------*/

/* ------------AboutのCSS-------------*/
#about{
    position: relative;
    /* padding: 100px 40px 10px; */
    padding: 80px 40px 100px;
    z-index: 2;
}
.text{
    font-size: 18px;
    line-height: 2.6;
    font-weight: 500;
}
@media only screen and (max-width: 767px){
    #about{
        padding: 80px 20px 100px;
    }
    .text{
        font-size: 0.9rem;
        line-height: 2.2;
    }
}
/* ---------------------------------*/

/* -----------NewsのCSS--------------*/
#content .inner{
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 20px;
    padding: 50px 50px;
}
#news{
    position: relative;
    /* padding: 120px 40px 0; */
    padding: 50px 40px 0;
    z-index: 2;
}
#news .news-list{
    margin-bottom: 65px;
}
#news .news-list ul li{
    margin-bottom: 45px;
}
#news .news-list ul li time{
    line-height: 1;
    font-size: 18px;
    color: #EC6577;
}
#news .news-list ul li p {
    font-size: 18px;
}
#news .news-list ul li p a{
    transition: all 0.25s ease;
}
#news .btn,#news_list .btn,#ticket .btn,#events .btn,#program .btn{
    width: 222px;
    margin: 0 auto;
}
#news .btn a,#news_list .btn a,#ticket .btn a,#events .btn a,#program .btn a{
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 1;
    padding: 18px 0;
    border: 1px solid #8a8a8a;
    border-radius: 50px;
    text-align: center;
    text-decoration: unset;
    transition: all 0.25s ease;
}

#events .btn{
    background-color: #fff;
    border-radius: 50px;
    margin-top: 80px;
}

@media only screen and (max-width: 767px){
    #news {
        padding: 12.1875vw 20px 0;
    }
    #content .inner {
        max-width: 61.25rem
    }
    #news .news-list{
        margin-bottom: 6.5625vw;
    }
    #news .news-list ul li {
        margin-bottom: 7.03125vw;
    }
    #news .news-list ul li time {
        font-size: 1.125rem;
    }
    #news .news-list ul li p {
        font-size: 1.125rem;
    }
    #news .btn {
        width: 42.8125vw;
    }
    #news .btn a {
        font-size: 2.5vw;
        padding: 2.8125vw 0;
        border-radius: 7.8125vw;
    }

}

/* ------------EVENTのCSS--------------*/
#events{
    width: 100%;
    /* padding: 100px 0 120px; */
    padding: 80px 20px 0;
}
.swiper-container{
    width: 100%;
    overflow: visible;
    margin-right: auto;
    padding: 0 50px 0 50px;
    position: relative;
    list-style: none;
    z-index: 1;
}
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    box-sizing: content-box;
    justify-content: center;
}
.swiper-slide {
    max-width: px;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
}
.swiper-slide a{
    display: flex;
    align-items: stretch;
}
.four li {
    width: 32.33% !important;
    margin-right: 1%;
}
/* .four li:nth-of-type(n+4) {
    margin-top: 1%;
} */
.four li a{
    display: block;
    padding: 12px 16px;
    background-color: #fff;
    border-radius: 15px;
    text-align: left;
    color: #000;
    text-decoration: none;
    outline: none;
}
.four li figure{
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 58%;
}
.four li figure img{
    height: auto;
    width: auto;
    max-height: 100%;
    max-width: 100%;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate3d(-50%,-50%,0);
    vertical-align: middle;
    border-radius: 5px;
}
.table_box{
    padding-bottom: 5%;
}
.table_box .date {
    background-color: #f78da7;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    padding: 7px 24px 1px;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.3em;
    display: inline-block;
    margin-bottom: 12px;
}
.table_box .date span {
    font-size: 1.5em;
    margin-right: 4px;
}
.four li .txt_box{
    text-align: left;
}
.four li .txt_box p.name{
    font-weight: bold;
    margin-bottom: 0.5em;
}
.table_box .txt_box p.name {
    font-size: 16px;
    line-height: 1.4em;
}
.four li .txt_box p:last-child{
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.four li .txt_box p{
    font-size: 14px;
    line-height: 1.5em;
}

@media only screen and (max-width: 767px){
    .swiper-container{
        padding: 0;
    }
    .swiper-slide:nth-of-type(n+1){
        margin-top: 3.5%;
    }
    .four li {
        width: 99% !important;
        margin: 0 0.5%;
    }
    .four li a{
        padding: 10px 8px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 1100px){
    .swiper-container {
        width: 92%;
        margin: 0 auto;
        padding: 0;
    }
    .swiper-wrapper{
        justify-content: center;
    }
    .swiper-slide:nth-of-type(n+1){
        margin-top: 3.5%;
    }
    .four li{
        width: 45% !important;
    }
}
@media only screen and (min-width: 1101px) and (max-width: 1200px){
    .four li {
        width: 48.67% !important;
        margin:0 0.665%;
    }
    .swiper-wrapper{
        justify-content: center;
    }
    .swiper-slide:nth-of-type(n+1){
        margin-top: 3.5%;
    }
}
@media only screen and (min-width: 1201px) and (max-width: 1500px){
    .swiper-wrapper{
        justify-content: center;
    }
    .swiper-slide:nth-of-type(n+2),.swiper-slide:first-child{
        margin-top: 3%;
    }
}
@media only screen and (min-width: 1501px) {
    .swiper-slide:nth-of-type(n+2),.swiper-slide:first-child{
        margin-top: 3%;
    }
}
/* ---------------------------------*/


/* ------------OVERVIEW-------------*/
#date{
    /* padding: 40px 0 60px; */
    padding: 80px 20px 0;
}
.c-contentsContainer {
    margin: auto;
    max-width: 900px;
    padding: 0;
}
.l-topOverview_List {
    margin-top: 2.8125rem;
    position: relative;
    z-index: 1;
    background-color:#fff;
    border-radius: 20px;
    padding: 50px 30px;
}
.c-outlineBox {
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 6.25rem;
    padding: 0.625rem;
    position: relative;
    width: 100%;
}
.c-outlineBox_title {
    display: inline-block;
    font-size: 12px;
    top: 0.625rem;
    /* left: 0.625rem; */
    letter-spacing: .1em;
    position: absolute;
}
.c-outlineBox_title:before {
    content: "<";
    padding-right: 0.25em;
}
.c-outlineBox_title:after {
    content: ">";
    padding-left: 0.25em;
}
.c-outlineBox_descriptionText {
    font-size: .875rem;
    letter-spacing: .15em;
    line-height: 1.2;
    text-align: center;
}
.access_link, .inline-block.access{
    text-decoration: underline;
}
.c-outlineBox_descriptionText._md_ {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .1em;
    width: 100%;
}
.c-outlineBox_description._top_ {
    margin-top: 15px;
}
.c-outlineBox_descriptionText._lg_ {
    display: block;
    font-size: 1.275rem;
    font-weight: 600;
    letter-spacing: .1em;
    width: 100%;
}
.c-outlineBox_descriptionText._map_ {
    align-items: flex-end;
    display: flex;
}
.c-outlineBox_descriptionText._note_ {
    bottom: 0.625rem;
    font-size: .625rem;
    position: absolute;
    right: 0.625rem;
}
.inline-block {
    display: inline-block;
    position: relative;
}
.inline-block._md_{
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .1em;
    width: 100%;
}


@media only screen and (min-width: 768px){
    #date{
        padding: 80px 40px 0;
    }
    .l-topOverview_List {
        margin-top: 3.125rem;
    }
    .c-outlineBox {
        min-height: 8.75rem;
        padding: 1.25rem 1.25rem 1.25rem 0.75rem;
    }
    .c-outlineBox_title {
        font-size: 1.25rem;
        /* left: 1.25rem; */
        /* top: 1.5rem; */
    }
    .c-outlineBox_descriptionText{
        font-size: 1.9rem;
    }
    .c-outlineBox_descriptionText ._note_ {
        bottom: 1.25rem;
        font-size: 1.25rem;
        right: 1.25rem;
    }
    /* .c-outlineBox+.c-outlineBox{
        margin-top: 1.5625rem;
    } */
    .c-outlineBox_descriptionText._lg_ {
        font-size: 1.9rem;
    }
    .c-outlineBox_descriptionText._md_{
        font-size: 1.375rem;
    }
}

/* ---------------------------------*/


/* ----------チケットページCSS-----------*/
#ticket{
    position: relative;
    padding: 120px 20px 140px;
    z-index: 2;
}
#ticket .inner{
    margin-top: 1.5625rem;
    box-shadow: 0 7px 15px -5px rgb(0 0 0 / 5%);
}
#content #ticket .inner{
    border-radius: 20px;
}
#ticket .news-block{
    max-width: 900px;
    padding: 60px 100px;
    border-radius: 20px;
    background-color: #fff;
    margin-bottom: 65px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 7px 15px -5px rgb(0 0 0 / 5%);
}
#ticket .news-block h2{
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 28px;
}
#ticket .news-block .day{
    display: inline-block;
    font-size: 20px;
    line-height: 1;
    color: #fff;
    padding: 5px 22px;
    border-radius: 30px;
    margin-bottom: 22px;
    background-color: #f78da7;
}
#ticket .news-block p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 40px;
}
#ticket .news-block h3 {
    position: relative;
    font-size: 22px;
    line-height: 1.3;
    padding-left: 30px;
    margin: 65px 0 12px;
}
#ticket .news-block h3::before {
    content: "";
    position: absolute;
    top: 0;
    left: .3em;
    transform: rotate(55deg);
    height: 11px;
    width: 12px;
    background-image: linear-gradient( 90deg, #DED1FC, #C6FEE2);
}
#ticket .news-block h3::after {
    content: "";
    position: absolute;
    top: .6em;
    left: 0;
    transform: rotate(15deg);
    height: 8px;
    width: 8px;
    background-image: linear-gradient( 90deg, #DED1FC, #C6FEE2);
}
#ticket .thumbnail .block-image{
    overflow: hidden;
    margin-bottom: 40px;
}
.margin_none{
    margin-bottom: 0 !important;
}
@media only screen and (max-width: 767px){
    #ticket .news-block{
        padding: 6.25vw 4.6875vw 3.125vw;
        margin-bottom: 8.59375vw;
        border-radius: 4.6875vw;
    }
    #ticket .news-block .day{
        font-size: 3.125vw;
        padding: 0.78125vw 3.125vw;
        border-radius: 4.6875vw;
        margin-bottom: 1.875vw;
    }
    #ticket .news-block h2 {
        font-size: 5.625vw;
        margin-bottom: 5vw;
        font-weight: 600;
    }
    #ticket .news-block .block-image {
        margin-bottom: 4.6875vw;
        margin-left: 0;
        margin-right: 0;
    }
    #ticket .news-block figure img {
        border-radius: 3.125vw;
    }
    #ticket .news-block p{
        font-size: 3.4375vw;
        font-weight: 400;
        margin-bottom: 4.375vw;
    }
    #ticket .news-block h3{
        font-size: 4.0625vw;
        padding-left: 6.34375vw;
        margin: 9.375vw 0 1.875vw;
        font-weight: 600;
    }
    #ticket .news-block h3::before {
        content: "";
        position: absolute;
        top: 0;
        left: .3em;
        transform: rotate(55deg);
        height: 8px;
        width: 11px;
        background-image: linear-gradient( 90deg, #DED1FC, #C6FEE2);
    }
    #ticket .news-block h3::after {
        content: "";
        position: absolute;
        top: .6em;
        left: 0;
        transform: rotate(15deg);
        height: 7px;
        width: 8px;
        background-image: linear-gradient( 90deg, #DED1FC, #C6FEE2);
    }
}

/* ---------------------------------*/

/* ----------プログラムページCSS-----------*/
#program{
    position: relative;
    padding: 120px 20px 160px;
    z-index: 2;
}
#program .inner{
    margin-top: 1.5625rem;
    box-shadow: 0 7px 15px -5px rgb(0 0 0 / 5%);
}
#program .text{
    text-align: center;
}
#content #program .inner{
    border-radius: 20px;
}
#program .news-block{
    max-width: 900px;
    padding: 60px 100px;
    border-radius: 20px;
    background-color: #fff;
    margin-bottom: 65px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 7px 15px -5px rgb(0 0 0 / 5%);
}
#program .news-block::before{
    content:'';
    display: block;
    height: 200px;
    margin-top: -160px;
    visibility: hidden;
}
#program .news-block h2{
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 28px;
}
#program .news-block .day{
    display: inline-block;
    font-size: 20px;
    line-height: 1;
    color: #fff;
    padding: 5px 22px;
    border-radius: 30px;
    margin-bottom: 22px;
    background-color: #f78da7;
}
#program .news-block .tag,.som_con .tag{
    display: inline-block;
    text-align: center;
    font-size: 12px;
    line-height: 1;
    color: #fff;
    padding: 5px 10px;
    border-radius: 30px;
    margin-bottom: 22px;
    margin-right: 5px;
    background-color: #50caca;
}
#program .news-block p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 25px;
}
#program .news-block h3 {
    position: relative;
    font-size: 22px;
    line-height: 1.3;
    padding-left: 30px;
    margin: 65px 0 12px;
}
#program .news-block h3::before {
    content: "";
    position: absolute;
    top: 0;
    left: .3em;
    transform: rotate(55deg);
    height: 11px;
    width: 12px;
    background-image: linear-gradient( 90deg, #DED1FC, #C6FEE2);
}
#program .news-block h3::after {
    content: "";
    position: absolute;
    top: .6em;
    left: 0;
    transform: rotate(15deg);
    height: 8px;
    width: 8px;
    background-image: linear-gradient( 90deg, #DED1FC, #C6FEE2);
}
#program .thumbnail .block-image{
    overflow: hidden;
    margin-bottom: 40px;
}
.js_datebutton{
    display: flex;
    justify-content: center;
    margin: 50px 0;
    list-style: none;
}
.js_datebutton li{
    width: 190px;
    font-size: 16px;
    line-height: 1;
    text-align: center;
    padding: 18px 0;
    margin: 0 8px 16px;
    border: 1px solid #8a8a8a;
    background-color: #fff;
    border-radius: 50px;
    transition: all 0.25s ease;
    cursor: pointer;
}
#program .news-block{
    display: none;

}
#program .news-block.is-show{
    display: block;
}

.js_datebutton li.active{
    background-color: #eee;
    pointer-events: none;
}
@media only screen and (max-width:375px){
    .som_con .tag{
        font-size: 9px;
    }
}
@media only screen and (max-width: 430px){
    #program .news-block::before{
        margin-top: -150px;
    }
}
@media only screen and (max-width: 767px){
    #program .news-block{
        padding: 6.25vw 4.6875vw 3.125vw;
        margin-bottom: 8.59375vw;
        border-radius: 4.6875vw;
    }
    #program .news-block .day{
        font-size: 3.125vw;
        padding: 0.78125vw 3.125vw;
        border-radius: 4.6875vw;
        margin-bottom: 1.875vw;
    }
    #program .news-block h2 {
        font-size: 5.625vw;
        margin-bottom: 5vw;
        font-weight: 600;
    }
    #program .news-block .block-image {
        margin-bottom: 4.6875vw;
        margin-left: 0;
        margin-right: 0;
    }
    #program .news-block figure img {
        border-radius: 3.125vw;
    }
    #program .news-block p{
        font-size: 3.4375vw;
        font-weight: 400;
        margin-bottom: 4.375vw;
    }
    #program .news-block h3{
        font-size: 4.0625vw;
        padding-left: 6.34375vw;
        margin: 9.375vw 0 1.875vw;
        font-weight: 600;
    }
    #program .news-block h3::before {
        content: "";
        position: absolute;
        top: 0;
        left: .3em;
        transform: rotate(55deg);
        height: 8px;
        width: 11px;
        background-image: linear-gradient( 90deg, #DED1FC, #C6FEE2);
    }
    #program .news-block h3::after {
        content: "";
        position: absolute;
        top: .6em;
        left: 0;
        transform: rotate(15deg);
        height: 7px;
        width: 8px;
        background-image: linear-gradient( 90deg, #DED1FC, #C6FEE2);
    }
    .js_datebutton{
        margin-top:7.03125vw;;
        margin-bottom: 4.03125vw;
    }
    .js_datebutton li{
        font-size: 2.5vw;
        width: 26.25vw;
        padding: 1.875vw 0;
        margin: 0 1.09375vw 2.5vw;
        border-radius: 7.8125vw;
    }
}

/* ---------------------------------*/

/* ------------FAQページ-------------*/
.section_inner{
    padding: 120px 20px 140px;
    z-index: 2;
    padding-bottom: 17%;
}
.section_inner .section_content{
    max-width: 900px;
    margin: 0 auto;
}
.qa_list .qa_item:not(:last-child){
    margin-bottom: 16px;
}
.qa_item{
    box-shadow: 0 7px 15px -5px rgb(0 0 0 / 5%);
}
.qa_list .qa_item .qa_q{
    padding: 24px;
    background: #fff;
    color: #1B1B1B;
    font-weight: 700;
    font-size: 16px;
    line-height: 36px;
    letter-spacing: 0.03em;
    border-radius: 20px 20px 0 0;
}
.qa_list .qa_item .qa_q .qa_text,.qa_list .qa_item .qa_a .qa_text{
    display: flex;
}
.qa_list .qa_item .qa_q .qa_text::before{
    content: "Q";
}
.qa_list .qa_item .qa_q .qa_text::before,.qa_list .qa_item .qa_a .qa_text::before{
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 1px solid #1B1B1B;
    text-align: center;
    line-height: 30px;
    margin-right: 16px;
    flex-shrink: 0;
}
.qa_list .qa_item .qa_a{
    /* padding: 21px 24px 24px; */
    background: #fff;
    color: #1B1B1B;
    line-height: 28px;
    letter-spacing: 0.03em;
    border-radius: 0 0 20px 20px;
}
.qa_a{
    padding: 0px 24px;
}
.qa_list .qa_item .qa_a .qa_text{
    padding-top: 21px;
    padding-bottom: 24px;
    border-top: 1px dotted #1B1B1B;
}
.qa_list .qa_item .qa_a .qa_text::before{
    content: "A";
    background: #1B1B1B;
    color: #fff;
}

@media only screen and (max-width: 700px){
    .section_inner .section_content{
        max-width: 450px;
        margin: 0 auto;
    }
    .qa_list .qa_item .qa_q{
        font-size: 13px;
        padding: 24px 16px;
        line-height: 26px;
    }
    .qa_list .qa_item .qa_a{
        font-size: 12px;
        line-height: 22px;
        padding: 0px 16px;
    }
    .qa_list .qa_item .qa_a .qa_text{
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .qa_list .qa_item .qa_q .qa_text::before,.qa_list .qa_item .qa_a .qa_text::before{
        margin-right: 12px;
        width: 24px;
        height: 24px;
        line-height: 24px;
    }
    
}
@media only screen and (max-width: 900px){
    .qa_list .qa_item .qa_q{
        font-size: 14px;
    }
    .qa_list .qa_item .qa_a{
        font-size: 14px;
    }
}

/* ---------------------------------*/

/* ---------注意事項ページ------------*/
#note{
    padding: 120px 17px 140px;
    z-index: 2;
    padding-bottom: 17%;
}
#note .accordion{
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}
.accordion .list {
    margin:10px 0;
}
.accordion section{
    max-width: 900px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 7px 15px -5px rgb(0 0 0 / 5%);
    /* padding:0 0 0 24px; */
}
.title{
    position: relative;
    cursor: pointer;
    font-size:1rem;
    letter-spacing: 0.03em;
    color: #1B1B1B;
    font-weight: 700;
    padding: 5% 5% 5% 50px;
    transition: all 0.25s ease;  
    line-height: 1.2;
}
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #1B1B1B;    
}
.title::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);
    transition: all 0.25s ease;     
}
.title::after{    
    top:48%;
    left: 15px;
    transform: rotate(90deg);
    border-radius: 0 0 20px 20px;
    transition: all 0.25s ease; 
}
.title.close::before{
    transform: rotate(45deg);
    transition: all 0.25s ease; 
}
  
.title.close::after{
    transform: rotate(-45deg);
    transition: all 0.25s ease; 
}
.detail {
    display: none;
    /* padding: 21px 24px 24px;
    border-radius: 0 0 20px 20px; */
    padding: 0px 55px 24px;
    border-radius: 0 0 20px 20px;
    line-height: 28px;
    letter-spacing: 0.03em;
}
@media only screen and (max-width: 700px){
    .title{
        font-size: 13px;
        line-height: 26px;
    }
    .accordion section{
        /* padding: 24px 24px 14px 24px; */
        max-width: 450px;
        margin: 0 auto;
    }
    .detail{
        padding: 0px 35px 5%;
    }
    .detail p{
        font-size: 12px;
        line-height: 22px;
    }
}
@media only screen and (max-width: 900px){
    .title{
        font-size: 14px;
    }
    .detail{
        font-size: 14px;
    }
}
/* ---------------------------------*/

/* ---------最新情報ページ------------*/
#news_list{
    padding: 120px 20px 140px;
    z-index: 2;
    padding-bottom: 17%;
}
#news_list .news-block{
    max-width: 900px;
    padding: 60px 100px;
    border-radius: 20px;
    background-color: #fff;
    margin-bottom: 65px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 7px 15px -5px rgb(0 0 0 / 5%);
}
#news_list .news-block h2{
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 28px;
}
#news_list .news-block .day{
    display: inline-block;
    font-size: 20px;
    line-height: 1;
    color: #fff;
    padding: 5px 22px;
    border-radius: 30px;
    margin-bottom: 22px;
    background-color: #f78da7;
}
#news_list .news-block p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 25px;
}
#news_list .news-block h3 {
    position: relative;
    font-size: 22px;
    line-height: 1.3;
    padding-left: 30px;
    margin: 65px 0 12px;
}
#news_list .news-block h3::before {
    content: "";
    position: absolute;
    top: 0;
    left: .3em;
    transform: rotate(55deg);
    height: 11px;
    width: 12px;
    background-image: linear-gradient( 90deg, #DED1FC, #C6FEE2);
}
#news_list .news-block h3::after {
    content: "";
    position: absolute;
    top: .6em;
    left: 0;
    transform: rotate(15deg);
    height: 8px;
    width: 8px;
    background-image: linear-gradient( 90deg, #DED1FC, #C6FEE2);
}
#news_list .thumbnail .block-image{
    overflow: hidden;
    margin-bottom: 40px;
}
.thumbnail .block-image{
    margin-left: 5%;
    margin-right: 5%;
}
.thumbnail img {
    height: auto;
    max-width: 100%;
    vertical-align: bottom;
    border-radius: 20px;
    box-sizing: border-box;
}
img{
    width: 640px;
}
@media only screen and (max-width: 767px){
    #news_list .news-block{
        padding: 6.25vw 4.6875vw 3.125vw;
        margin-bottom: 8.59375vw;
        border-radius: 4.6875vw;
    }
    #news_list .news-block .day{
        font-size: 3.125vw;
        padding: 0.78125vw 3.125vw;
        border-radius: 4.6875vw;
        margin-bottom: 1.875vw;
    }
    #news_list .news-block h2 {
        font-size: 5.625vw;
        margin-bottom: 5vw;
        font-weight: 600;
    }
    #news_list .news-block .block-image {
        margin-bottom: 4.6875vw;
        margin-left: 0;
        margin-right: 0;
    }
    #news_list .news-block figure img {
        border-radius: 3.125vw;
    }
    #news_list .news-block p{
        font-size: 3.4375vw;
        font-weight: 400;
        margin-bottom: 4.375vw;
    }
    #news_list .news-block h3{
        font-size: 4.0625vw;
        padding-left: 6.34375vw;
        margin: 9.375vw 0 1.875vw;
        font-weight: 600;
    }
    #news_list .news-block h3::before {
        content: "";
        position: absolute;
        top: 0;
        left: .3em;
        transform: rotate(55deg);
        height: 8px;
        width: 11px;
        background-image: linear-gradient( 90deg, #DED1FC, #C6FEE2);
    }
    #news_list .news-block h3::after {
        content: "";
        position: absolute;
        top: .6em;
        left: 0;
        transform: rotate(15deg);
        height: 7px;
        width: 8px;
        background-image: linear-gradient( 90deg, #DED1FC, #C6FEE2);
    }
}

/* ---------------------------------*/

/* ---------BLソムリエページ------------*/
#sommelier{
    padding: 120px 20px 140px;
    z-index: 2;
    padding-bottom: 17%;
}
#sommelier .news-block{
    max-width: 900px;
    padding: 60px 100px;
    border-radius: 20px;
    background-color: #fff;
    margin-bottom: 65px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 7px 15px -5px rgb(0 0 0 / 5%);
}
#sommelier .news-block h2{
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 28px;
}
#sommelier .news-block .day{
    display: inline-block;
    font-size: 20px;
    line-height: 1;
    color: #fff;
    padding: 5px 22px;
    border-radius: 30px;
    margin-bottom: 22px;
    background-color: #f78da7;
}
#sommelier .news-block p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 25px;
}
#sommelier .news-block .som_detail p{
    margin-bottom: 0;
}
#sommelier .news-block h3 {
    position: relative;
    font-size: 22px;
    line-height: 1.3;
    padding-left: 30px;
    margin: 65px 0 12px;
}
#sommelier .news-block h3::before {
    content: "";
    position: absolute;
    top: 0;
    left: .3em;
    transform: rotate(55deg);
    height: 11px;
    width: 12px;
    background-image: linear-gradient( 90deg, #DED1FC, #C6FEE2);
}
#sommelier .news-block h3::after {
    content: "";
    position: absolute;
    top: .6em;
    left: 0;
    transform: rotate(15deg);
    height: 8px;
    width: 8px;
    background-image: linear-gradient( 90deg, #DED1FC, #C6FEE2);
}
#sommelier .thumbnail .block-image{
    overflow: hidden;
    margin-bottom: 40px;
}

.som_con{
    display: flex;
    align-items: center;
    margin-top: 2.5%;
    border-bottom: 3px dotted #8a8a8a;
}
.som_con.last{
    border: 0;
}
.som_con .tag{
    margin: 0 auto;
    margin-bottom: 22px;

}
.som_detail{
    display: block;
    text-align: center;
    margin-top: 5px;
    overflow-wrap: break-word;
}
.som_profile{
    margin-right: 5%;
}

/*画像　トリミング用CSS*/
.img_agerin{
    width: 145px;
    height:145px;
    border-radius:50%;
    object-fit: cover;
    background-position: 54% 36%;
    background-image: url("/img/som_agerin.jpg");
    background-size: 145px;
}
.img_dokin{
    width: 145px;
    height:145px;
    border-radius:50%;
    object-fit: cover;
    background-position: 54% 36%;
    background-image: url("/img/som_dokin.jpg");
    background-size: 145px;
}
.img_fuwa{
    width: 145px;
    height:145px;
    border-radius:50%;
    object-fit: cover;
    background-position: 50% 55%;
    background-image: url("/img/som_fuwa.jpg");
    background-size: 185px;
}
.img_siyuka{
    width: 145px;
    height:145px;
    border-radius:50%;
    object-fit: cover;
    background-position: 50% 55%;
    background-image: url("/img/som_siyuka.jpg");
    background-size: 185px;
}
.img_none{
    width: 145px;
    height: 145px;
    border-radius:50%;
    object-fit: cover;
    background-position: 56% 36%;
    background-image: url("/img/som_none.jpg");
    background-size: 145px;
}
.caption{
    padding-top: 0;
    font-size: 0.9em !important;
    text-align: center;
}
.thumbnail .block-image.som{
    margin-bottom: 0 !important;
}

@media only screen and (max-width: 767px){
    .img_agerin,.img_dokin,.img_fuwa,.img_none,.img_siyuka{
        width: 15vw;
        height:15vw;
        background-size: 15vw;
        margin: 0 auto;
    }
    .img_fuwa{
        background-size: 18vw;
    }
    .som_profile{
        width: 15vw;
    }
    #sommelier .news-block{
        padding: 6.25vw 4.6875vw 3.125vw;
        margin-bottom: 8.59375vw;
        border-radius: 4.6875vw;
    }
    #sommelier .news-block .day{
        font-size: 3.125vw;
        padding: 0.78125vw 3.125vw;
        border-radius: 4.6875vw;
        margin-bottom: 1.875vw;
    }
    #sommelier .news-block h2 {
        font-size: 5.625vw;
        margin-bottom: 5vw;
        font-weight: 600;
    }
    #sommelier .news-block .block-image {
        margin-bottom: 4.6875vw;
        margin-left: 0;
        margin-right: 0;
    }
    #sommelier .news-block figure img {
        border-radius: 3.125vw;
    }
    #sommelier .news-block p{
        font-size: 3.4375vw;
        font-weight: 400;
        margin-bottom: 4.375vw;
    }
    #sommelier .news-block .caption{
        font-size: 2.8vw !important;
    }
    #sommelier .news-block h3{
        font-size: 4.0625vw;
        padding-left: 6.34375vw;
        margin: 9.375vw 0 1.875vw;
        font-weight: 600;
    }
    #sommelier .news-block h3::before {
        content: "";
        position: absolute;
        top: 0;
        left: .3em;
        transform: rotate(55deg);
        height: 8px;
        width: 11px;
        background-image: linear-gradient( 90deg, #DED1FC, #C6FEE2);
    }
    #sommelier .news-block h3::after {
        content: "";
        position: absolute;
        top: .6em;
        left: 0;
        transform: rotate(15deg);
        height: 7px;
        width: 8px;
        background-image: linear-gradient( 90deg, #DED1FC, #C6FEE2);
    }
}

/* ---------------------------------*/

/* ------------フッターCSS---------------*/
#footer{
    position: relative;
    /* border-top:1px solid #000; */
    background-color: #fff;
    padding: 0 20px 10px 20px;
    width: 100%;
    margin-top: auto;
}
.f-nav{
    display: flex;
    justify-content: center;
    padding-top: 50px;
}
.f-nav ul{
    display: flex;
    gap: 3.5625rem;
}
.f-nav li{
    display: inline;
}
.copy{
    padding: 2.3125rem 0 2.1875rem;
    text-align: center;
    font-size: .875rem;
    letter-spacing: .05em;
    line-height: 1;
}
/* @media only screen and (max-width: 767px){
    .f-nav{
        margin-bottom: 44px;
    }
    
} */
/* ---------------------------------*/
a{
    transition: all 0.25s ease;
    text-decoration: none;
    color: #000;
}
a:visited{
    color: #000;
}
a:hover,.g-nav.panelactive nav ul li a:hover,.accordion_cnt li a:hover{
    color: #22c8d5;
}
path.twitter{
    stroke-width:10;
}
path.twitter:hover{
    fill: #22c8d5;
}
.red{
    color: #EC6577;
}