@charset "UTF-8";

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}
body {
    width: 100%;
    height: 100%;
    font-size: 1.6em;
    line-height: 1.65;
}
*,
*:before,
*:after {
    box-sizing:border-box;
}
/* ------------------------------------- /
/   共通
/* ------------------------------------- */
.taC {
    text-align: center;
}
.taR {
    text-align: right;
}
.fwM {
    font-weight: 500;
}
.fwSB {
    font-weight: 600;
}
.fwB {
    font-weight: 700;
}
img {
    display: block;
    width: 100%;
}


/* ------------------------------------- /
/   inner
/* ------------------------------------- */
.inner {
    width: min(100%, 1280px);
    margin: 0 auto;
    padding: 0 min(6%, calc((1280px - 1200px) / 2));
}
@media screen and (max-width:600px){
.inner {
    padding: 0 4%;
}
}

/* ------------------------------------- /
/   pc-none、sp-none
/* ------------------------------------- */
.pc-none {
    display: none;
}
.pc-none768 {
    display: none;
}
.pc-none500 {
    display: none;
}
.pc-none__inline {
    display: none;
}
.pc-none__inline500 {
    display: none;
}
.pc-none__inline768 {
    display: none;
}
.pc-none__inline1000 {
    display: none;
}
.pc-none__inline1200 {
    display: none;
}
.pc-none__inline1400 {
    display: none;
}
@media (max-width: 1400px) {
.pc-none__inline1400 {
    display: inline;
}
}
@media (max-width: 1200px) {
.pc-none__inline1200 {
    display: inline;
}
}
@media (max-width: 1000px) {
.pc-none__inline1000 {
    display: inline;
}
}
@media (max-width: 768px) {
.pc-none768 {
    display: block;
}
.pc-none__inline768 {
    display: inline;
}
.sp-none768 {
    display: none !important;
}
}
@media (max-width: 600px) {
.pc-none {
    display: block;
}
.pc-none__inline {
    display: inline;
}
.sp-none {
    display: none !important;
}
}
@media (max-width: 500px) {
.sp-none500 {
    display: none !important;
}
.pc-none500 {
    display: block;
}
.pc-none__inline500 {
    display: inline;
}
}

/* ------------------------------------- /
/   サイトカラー、フォント
/* ------------------------------------- */
body {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    color: var(--color-black);
}
a {
    color: var(--color-black);
    text-decoration: none;
}
::selection {
    background: var(--color-pink);
    color: #fff;
}
:root {
    --color-black: #707070;
    --color-blue: #4F517B;
    --color-pink: #EB6F91;
    --color-orange: #E68E6D;
    --font-comfo: "Comfortaa", sans-serif;
}
.bg-black {
    background-color: #141414;
}
.bg-blue {
    background-color: #141414;
}
.bg-pink {
    background-color: var(--color-pink);
}
.bg-orange {
    background-color: var(--color-orange);
}
.bg-white {
    background-color: #fff;
}
.color-black {
    color: var(--color-black);
}
.color-blue {
    color: var(--color-blue);
}
.color-pink {
    color: var(--color-pink);
}
.color-orange {
    color: var(--color-orange);
}
.color-white {
    color: #fff;
}
.font-comfo {
    font-family: var(--font-comfo);
    letter-spacing: 0;
}

/* ------------------------------------- /
/  body
/* ------------------------------------- */
body {
    position: relative;
}
main {
    overflow: hidden;
    /*
    background-image: url('../img/bg.svg'), url('../img/header_bg.png');
    background-position: center, center top;
    background-size: max(min(7.2vw, 72px), 36px) auto, 1920px auto;
    background-repeat: repeat, repeat-x;
    */
    background-image: url('../img/header_bg.png');
    background-position: center top;
    background-size: 1920px auto;
    background-repeat: repeat-x;
    position: relative;
}
main::before {
    content: '';
    display: block;
    width: 100%;
    height: 100vh;
    background-image: url('../img/bg.svg');
    background-position: center;
    background-size: max(min(7.2vw, 72px), 36px) auto;
    background-repeat: repeat;
    position: fixed;
    left: 0;
    top: 0;
    animation: bg_move 5.0s linear 0s infinite normal;
    background-position: left max(min(7.2vw, 72px), 36px) top max(min(7.2vw, 72px), 36px);
}
@keyframes bg_move {
    0% {
        background-position: left 0 top 0;
    }
    100% {
        background-position: left max(min(7.2vw, 72px), 36px) top max(min(7.2vw, 72px), 36px);
    }
}

/* ------------------------------------- /
/  header
/* ------------------------------------- */
header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 10px 2.6%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
}
.header_logo {
    display: block;
    width: min(100%, 128px);
    transition-duration: 0.3s;
}
.header_logo:hover {
    opacity: 0.5;
}
.header_logo h1 {
    display: block;
    width: 100%;
}
.header_nav_wrapper {
    width: min(calc(100% - 128px), 1395px);
}
.header_nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 0 0 40px;
}
.header_nav_column {
    display: flex;
    align-items: center;
    position: relative;
    font-size: clamp(1.5rem, 1.2vw, 2.0rem);
    line-height: 1.2;
}
.header_nav_link {
    display: inline-block;
    color: var(--color-blue);
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
}
.header_nav_link:hover {
    /*
    color: var(--color-pink);
    */
}
.header_nav_link::before {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    background-color: var(--color-pink);
    position: absolute;
    left: 0;
    bottom: -20px;
    z-index: -1;
    opacity: 0;
    transition-duration: 0.2s;
}
.header_nav_link:hover::before {
    bottom: -5px;
    opacity: 1;
}
.header_nav_column:has(.header_nav_button) {
    width: min(21.5%, 300px);
}
.header_nav_button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: min(4vw, 60px);
    background-color: var(--color-pink);
    border-radius: calc(60px / 2);
    color: #fff;
    /*
    font-size: 1.25em;
    */
    font-size: 1.0em;
    transition-duration: 0.2s;
}
.header_nav_button:hover {
    background-color: #fff;
    color: var(--color-pink)
}
.header_nav_logo {
    display: none;
}
.header_nav_trigger {
    display: none;
}

@media screen and (max-width:1000px){
.header_nav_wrapper {
    width: min(85vw, 400px);
    height: 100vh;
    background-color: #fff;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition-duration: 0.8s;
    transition-timing-function: ease;
}
.header_nav_wrapper.active {
    transform: translateX(0);
}
.header_nav_inner {
    width: 100%;
    max-height: 100vh;
    overflow: auto;
    margin: 0 auto;
    padding: 25px 0;
}
.header_nav_logo {
    display: block;
    width: min(100%, 128px);
    margin: 0 auto;
}
.header_nav {
    display: block;
    margin: 10px 0 0;
    padding: 0;
}
.header_nav_column {
    display: block;
    padding: 10px 0;
    font-size: 1.7rem;
}
    .header_nav_link {
        display: block;
        padding: 10px 0;
        text-align: center;
    }
    .header_nav_link::before {
        display: none;
    }
.header_nav_column:has(.header_nav_button) {
    width: 100%;
    margin: 10px 0 0;
}
.header_nav_button {
    width: min(80%, 240px);
    min-height: 56px;
    margin: 0 auto;
    border-radius: calc(56px / 2);
    /*
    font-size: 1.2em;
    */
}
.header_nav_trigger {
    display: block;
    width: 60px;
    aspect-ratio: 1/1;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url('../img/sp_menu_open.svg');
    background-position: center;
    background-size: 40px auto;
    background-repeat: no-repeat;
}
.header_nav_wrapper.active + .header_nav_trigger {
    background-image: url('../img/sp_menu_close.svg?2');
}
}
@media screen and (max-width:600px){
.header_logo {
    width: min(100%, 80px);
}
}
@media screen and (max-height:700px){
.header_nav_column {
    padding: 5px 0;
}
}

/* ------------------------------------- /
/  mv
/* ------------------------------------- */
.mv {
    padding: 110px 0 0;
    position: relative;
}
.mv::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #FFFAE3;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
    .mv img {
        display: block;
        /*
        width: min(100%, 1080px);
        */
        width: min(100%, 960px);
        margin: 0 auto;
    }

/* ------------------------------------- /
/  about
/* ------------------------------------- */
.about {
    position: relative;
}
.about::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #FFFAE3;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.about_date {
    font-size: clamp(3.0rem, 3vw, 4.0rem);
    line-height: 1.5;
}
    .about_date .fsM {
        font-size: 1.25em;
    }
    .about_date .fsL {
        font-size: 1.75em;
    }
.about_address {
    font-size: clamp(3.4rem, 3vw, 4.6rem);
}
.about_artist {
    font-size: clamp(3.0rem, 3vw, 4.0rem);
}
.about_artist_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.about_artist_list li:not(:first-child)::before {
    content: '/';
    display: inline-block;
    margin: 0 10px;
}
.about_text {
    font-size: clamp(2.4rem, 2.5vw, 3.0rem);
}


@media screen and (max-width:768px){
.about_artist {
    padding: 20px 0 0;
}
.about_artist_list {
    display: block;
}
.about_artist_list li:not(:first-child)::before {
    display: none;
}
}
@media screen and (max-width:600px){
.about_date {
    font-size: clamp(2.2rem, 5.5vw, 3.0rem);
}
.about_address {
    font-size: clamp(2.0rem, 5.5vw, 3.0rem);
}
.about_artist {
    font-size: clamp(2.2rem, 5.5vw, 3.0rem);
}
.about_text {
    font-size: clamp(1.5rem, 4vw, 2.4rem);
}
}


/* ------------------------------------- /
/  h2
/* ------------------------------------- */
.h2_wrapper img {
    width: min(70%, 410px);
    margin: 0 auto;
}
.h2_wrapper h2 {
    font-size: clamp(1.7rem, 3vw, 2.0rem);
    line-height: 1.2;
}

/* ------------------------------------- /
/  news
/* ------------------------------------- */
.news {
    position: relative;
}
.news::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #FFFAE3;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.news_wrapper {
    border-radius: 6px;
}
.news_list {
    width: min(100%, 800px);
    margin: 0 auto;
}
.news_column {
    border-bottom: 1px #A2A2A2 solid;
    font-size: clamp(1.5rem, 2.5vw, 1.8rem);
}
.news_column:first-child:last-child {
    border: none;
}
.news_link {
    color: #2196F3;
    text-decoration: underline;
}
.news_link:hover {
    text-decoration: none;
}

/* ------------------------------------- /
/  artist
/* ------------------------------------- */
.artist {
    position: relative;
}
.artist::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #FFF3ED;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.artist_column {
    padding: 0 min(2.6042vw, 50px);
    /*
    transition-duration: 0.3s;
    */
}
    .artist_column:hover {
        /*
        transform: scale(1.05);
        */
    }

/* ------------------------------------- /
/  event
/* ------------------------------------- */
.event {
    position: relative;
}
.event::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #FFFAE3;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.event_wrapper {
    border-radius: 6px;
}
.event_list {
    width: min(74%, 800px);
    margin: 0 auto;
}
.event_column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: clamp(2.0rem, 2.5vw, 3.0rem);
}
    .event_column dt {
        width: max(13.75%, 80px);
    }
    .event_column dd {
        width: calc(100% - max(13.75%, 80px));
    }
    .event_column .fsS {
        font-size: 0.83em;
    }
.event_button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: min(100%, 120px);
    min-height: 40px;
    padding-top: min(0.6vw, 7px);
    background-color: var(--color-pink);
    border-radius: 6px;
    border: 1px var(--color-pink) solid;
    color: #fff;
    line-height: 1.2;
    transition-duration: 0.3s;
}
.event_button:hover {
    background-color: #fff;
    color: var(--color-pink);
}

@media screen and (max-width:768px){
.event_list {
    width: min(100%, 450px);
}
}
@media screen and (max-width:600px){
.event_list {
    width: min(100%, 370px);
}
.event_column {
    font-size: 1.9rem;
}
    .event_column dt {
        width: 100%;
    }
    .event_column dd {
        width: 100%;
    }
    .event_column p:nth-child(2) {
        line-height: 1.2;
        margin-top: 10px;
    }
    .event_column .fsS {
    }
}


/* ------------------------------------- /
/  ticket
/* ------------------------------------- */
.ticket {
    position: relative;
}
.ticket::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #FFFAE3;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.ticket_wrapper {
    border-radius: 6px;
}
.ticket_list {
    width: min(100%, 715px);
    margin: 0 auto;
}
.ticket_list_column {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: min(1.5vw, 10px);
    width: 100%;
    min-height: 120px;
    border-radius: 6px;
    line-height: 1.2;
    font-size: clamp(2.2rem, 2.5vw, 2.6rem);
    position: relative;
}
.ticket_list_column::before {
    content: '';
    display: block;
    width: calc(100% - max(min(2vw, 15px), 7px));
    height: calc(100% - max(min(2vw, 15px), 7px));
    border-radius: 4px;
    border: 1px #fff solid;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.ticket_list_column::after {
    content: '';
    display: block;
    width: 3px;
    height: calc(100% - max(min(2vw, 15px), 7px) - 2px);
    background-image: url('../img/ticket_dot.svg');
    background-position: center;
    background-size: 100% auto;
    background-repeat: repeat-y;
    position: absolute;
    right: 9%;
    top: 50%;
    transform: translateY(-50%);
    
}
.ticket_list_column_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 5.594%;
    width: 100%;
    position: relative;
}
.ticket_list_price {
    padding-top: 7px;
    font-size: 1.15em;
}
.ticket_list_text {
    width: 100%;
    font-size: 0.69em;
    position: relative;
}
.ticket_list_soldout {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    border-radius: 4px;
    font-size: 1.8em;
    color: #f00;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
    .ticket_list_soldout span {
        display: block;
        transform: rotateZ(-3deg);
    }

.ticket_text {
    font-size: clamp(1.5rem, 2.5vw, 1.8rem);
}
.ticket_info {
    width: min(100%, 715px);
    margin: 0 auto;
    border: 4px var(--color-pink) solid;
    border-radius: max(min(2vw, 20px), 10px);
    font-size: clamp(1.8rem, 3.5vw, 3.0rem);
}
    .ticket_info h3 {
        font-size: 1.17em;
    }
    .ticket_info p {
        line-height: 1.4;
    }
    .ticket_info .fsL {
        font-size: 1.35em;
    }
.ticket_info_button {
    display: block;
    width: min(60%, 450px);
    margin: 45px auto 0;
    position: relative;
}
    .ticket_info_button p {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        min-height: 80px;
        background-color: var(--color-pink);
        border-radius: calc(80px / 2);
        color: #fff;
        font-size: clamp(2.0rem, 3.0vw, 2.5rem);
        line-height: 1.2;
        position: relative;
        transition-duration: 0.3s;
        transition-timing-function: ease;
        transform: translateY(-8px);
    }
    .ticket_info_button:hover p {
        transform: translateY(0);
    }
.ticket_info_button::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    border-radius: calc(80px / 2);
    background-color: rgba(0, 0, 0, 0.16);
    position: absolute;
    left: 0;
    bottom: 0;
}
@media screen and (max-width:600px){
.ticket_list_column::after {
    width: 2px;
    right: 6%;
}
    .ticket_info .fsL {
        font-size: 1.2em;
    }
.ticket_info_button {
    width: min(90%, 450px);
}
    .ticket_info_button p {
        min-height: 70px;
        border-radius: calc(70px / 2);
    }
}
@media screen and (max-width:500px){
    .ticket_info .fsL {
        display: block;
        margin-bottom: 10px;
    }
}


/* ------------------------------------- /
/  attention
/* ------------------------------------- */
.attention {
    position: relative;
}
.attention::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #FFFAE3;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.attention_wrapper {
    border-radius: 6px;
}
.attention_detail {
    width: min(100%, 850px);
    margin: 0 auto;
    font-size: clamp(1.4rem, 2.0vw, 1.8rem);
    line-height: 1.45;
}
    .attention_detail h3 {
        position: relative;
        padding-left: 1em;
    }
    .attention_detail h3::before {
        content: '■';
        display: block;
        position: absolute;
        left: 0;
        top: 0;
    }
    .attention_detail h4 {
        position: relative;
        padding-left: 1em;
    }
    .attention_detail h4::before {
        content: '◎';
        display: block;
        position: absolute;
        left: 0;
        top: 0;
    }
    .attention_detail li {
        position: relative;
        padding-left: 1em;
    }
    .attention_detail li::before {
        content: '・';
        display: block;
        position: absolute;
        left: 0;
        top: 0;
    }

/* ------------------------------------- /
/  contact
/* ------------------------------------- */
.contact {
    position: relative;
}
.contact::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #FFFAE3;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.contact_text {
    font-size: clamp(1.8rem, 3.0vw, 3.0rem);
    line-height: 1.45;
}
    .contact_text a {
        color: var(--color-blue);
    }



/* ------------------------------------- /
/  footer
/* ------------------------------------- */
footer {
    position: relative;
    font-size: clamp(1.8rem, 3.0vw, 3.0rem);
    line-height: 1.45;
}
footer::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #FFFAE3;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
    footer h2 {
        font-size: 1.1em;
    }
.footer_x {
    display: block;
    width: min(15%, 100px);
    margin: 0 auto;
}
.footer_sfp {
    display: block;
    width: min(70%, 530px);
    margin: 0 auto;
}
    footer a {
        transition-duration: 0.2s;
    }
    footer a:hover {
        opacity: 0.5;
    }

.video_wrapper {
    position: relative;
}
.video_wrapper::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #FFFAE3;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.video_inner {
    position: relative;
}
.video {
    display: block;
    width: min(100%, 960px);
    margin: 0 auto;
}
.video_play {
    display: block;
    width: max(min(10vw, 100px), 50px);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}
    .video_play img {
        display: block;
        width: 100%;
    }
@media screen and (max-width:768px){
.video_play {
    display: none;
}
}