@charset "UTF-8";

:root {
    --bk: #343434;
}

html {
    margin: 0 auto;
    scroll-behavior: smooth;
    scroll-padding-top: min(100px, 100vw*(100/750));
    font-size: min(10px, 100vw*(10/750));
}

@media screen and (min-width: 769px) {
    html {
        width: 100%;
        scroll-behavior: smooth;
        scroll-padding-top: 150px;
    }
}

@media screen and (max-width: 960px) {
    html {
        width: 960px;
    }
}

@media screen and (max-width: 768px) {
    html {
        width: 100%;
    }
}

body {
    color: var(--bk);
    font-family: 'Noto Sans JP', 'メイリオ', Meiryo, sans-serif;
    font-weight: 400;
    font-feature-settings: "palt" 1;
}

@media screen and (max-width: 768px) {
    body {
        width: 100%;
        font-size: 3.333rem;
    }

    main {
        margin-top: min(100px, 100vw*(100/750));
    }
}

@media screen and (min-width: 769px) {
    body {
        width: auto;
        font-size: 2.8rem;
    }
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

a {
    text-decoration: none;
}

hr {
    width: 100%;
    height: 1px;
    margin: 1.0em 0;
    background: url("../img/line2.png") repeat center;
    border: none;
}

picture {
    display: block;
}

.noscroll {
    overflow: hidden;
}

.noscroll:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}

@media screen and (min-width: 769px) {
    a {
        transition: opacity 0.3s ease;
    }

    a:hover {
        text-decoration: underline;
        opacity: 0.75;
    }
}

@media screen and (max-width: 768px) {
    .pc {
        display: none;
    }
}

@media screen and (min-width: 769px) {
    .sp {
        display: none;
    }
}

#header,
#footer {
    width: 100%;
    background-color: #fff;
}

#header .inner {
    display: flex;
    align-items: center;
    width: 100%;
    height: min(100px, 100vw*(100/750));
    padding: 0 min(20px, 100vw*(20/750));
    transition: 0.5s ease;
}

#header-logo {
    width: min(130px, 100vw*(130/750));
    transition: 0.5s ease;
}

#header-sns li {
    width: min(46px, 100vw*(46/750));
    transition: 0.5s ease;
}

#header-sns {
    display: flex;
    align-items: center;
    column-gap: min(10px, 100vw*(10/750));
    margin-left: auto;
    transition: 0.5s ease;
}

#header-ticket{
    width: min(260px, 100vw*(260/750));
    margin-left: min(15px, 100vw*(15/750));
    transition: 0.5s ease;
}

#header-ticket .ticket-coming,
#header-ticket .ticket-ended{
    display: block;
    position: relative;
    z-index: 0;
}

#header-ticket .ticket-coming:before,
#header-ticket .ticket-coming:after,
#header-ticket .ticket-ended:before,
#header-ticket .ticket-ended:after{
    width: 100%;
    height: 100%;
    transition: 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
}

#header-ticket .ticket-coming:after,
#header-ticket .ticket-ended:after{
    content: "COMING SOON";
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: min(24px, 100vw*(24/750));
    font-weight: 700;
    letter-spacing: 0.04em;
    z-index: 2;
    transform: rotate(-3deg);
}
#header-ticket .ticket-ended:after{
    content: "販売終了";
}

#header-ticket .ticket-coming::before,
#header-ticket .ticket-ended::before{
    content: "";
    background-color: rgba(88,85,65,0.8);
    border-radius: min(10px, 100vw*(10/750));
    z-index: 1;
}

#menu {
    display: flex;
    align-items: center;
    width: min(50px, 100vw*(50/750));
    aspect-ratio: 1/1;
    margin-left: min(20px, 100vw*(20/750));
    cursor: pointer;
    transition: 0.5s ease;
}

#menu.active {
    background: url("../img/close.png") no-repeat center/contain;
}

#menu.active img {
    visibility: hidden;
}

#footer {
    position: relative;
    z-index: 99;
}

#footer-sns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: min(30px, 100vw*(30/750));
}

#footer-sns li img {
    max-width: 26px;
}

#footer copyright {
    display: block;
    width: 100%;
    font-size: 2.0rem;
    text-align: center;
}

@media screen and (max-width: 768px) {
    #header {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 100;
    }

    #footer .inner {
        padding-top: min(30px, 100vw*(30/750));
        padding-bottom: min(30px, 100vw*(30/750));
    }

    /*
    #header.fixed .inner{
        height: calc(100px * 0.75);
    }
    #header.fixed #header-logo{
        width: calc(130px * 0.75);
    }
    #header.fixed #header-sns li{
        width: calc(46px * 0.75);
    }
    #header.fixed #header-sns{
        column-gap: calc(15px * 0.75);
    }
    #header.fixed #menu{
        width: calc(50px * 0.75);
        margin-left: calc(30px * 0.75);
    }
*/
}

@media screen and (min-width: 769px) {
    #header {
        position: sticky;
        top: 0;
        left: 0;
        z-index: 100;
    }

    #header .inner {
        max-width: 1880px;
        height: 150px;
        margin: 0 auto;
        padding: 0 40px;
    }

    #header-logo {
        width: 197px;
    }

    #header-sns li {
        width: 60px;
    }

    #header-ticket{
        width: 310px;
    }

    #menu {
        width: 75px;
    }

    #footer .inner {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    #header.minimum .inner,
    #header.fixed .inner {
        height: calc(150px * 0.5);
    }

    #header.minimum #header-logo,
    #header.fixed #header-logo {
        width: calc(197px * 0.5);
    }

    #header.minimum #header-sns li,
    #header.fixed #header-sns li {
        width: calc(60px * 0.75);
    }

    #header.minimum #header-sns,
    #header.fixed #header-sns {
        column-gap: calc(15px * 0.75);
    }

    #header.minimum #header-ticket,
    #header.fixed  #header-ticket{
        width: calc(310px * 0.75);
    }

    #header.fixed #header-ticket .ticket-coming:after ,
    #header.fixed #header-ticket .ticket-ended:after {
        transform: rotate(-3deg) scale(0.75);
    }

    #header.minimum #menu,
    #header.fixed #menu {
        width: calc(75px * 0.75);
        margin-left: calc(30px * 0.75);
    }
}

#nav {
    width: 100%;
    background: rgba(253,249,224,095);
    position: absolute;
    top: min(100px, 100vw*(100/750));
    left: 0;
}

#nav .toggle,
#nav .nav-toggle {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: 0.3s ease-in-out;
    height: 0;
    overflow: hidden;
}

#nav.active .toggle {
    height: calc(100dvh - min(100px, 100vw*(100/750)));
    overflow: auto;
}

#nav ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin: 0 auto;
}

#nav .toggle > ul{
    row-gap: min(20px, 100vw*(20/750));
    width: min(590px, 100vw*(590/750));
    padding: min(60px, 100vw*(60/750)) 0;
}

#nav ul li {
    background-color: #fff;
    margin: 0 auto;
}

#nav .toggle>ul>li{
    border: 2px solid #343434;
}

#nav .nav-toggle ul>li {
    border-top: 2px solid #343434;
}

#nav ul li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 0;
    background-color: #fff;
    color: var(--bk);
    font-size: 2.4rem;
}

#nav ul li a:hover {
    text-decoration: none;
}

.nav-label{
    position: relative;
}

.nav-label:before,
.nav-label:after{
    content: "";
    display: inline-block;
    width: min(21px, 100vw*(21/750));
    height: min(3px, 100vw*(3/750));
    background-color: #343434;
    position: absolute;
    top: 50%;
    right: min(21px, 100vw*(21/750));
    transform: translateY(-50%);
    transition: 0.3s ease;
}

.nav-label:after{
    transform: translateY(-50%) rotate(-90deg);
}

.nav-label.active:after {
    transform: translateY(-50%) rotate(0deg);
}

/*
#header.fixed #nav{
    top: calc(100px * 0.75);
}
*/

@media screen and (min-width: 769px) {
    #nav {
        top: 150px;
    }

    #header.fixed #nav {
        top: calc(150px * 0.5);
    }

    #nav.active .toggle{
        height: calc(100vh - 150px);
    }

    #header.fixed #nav.active .toggle{
        height: calc(100vh - (150px * 0.5));
    }
}

#kv {
    border-bottom: 3px solid var(--bk);
    background: #f9c0cc url("../img/bg-menu.png") repeat center top;
}

#kv h1 {
    max-width: 1980px;
    margin: auto;
    background-color: #fff;
}

#kv img {
    width: 100%;
    max-width: inherit;
}

@media screen and (max-width: 768px) {
    #kv {
        background: #f9c0cc url("../img/bg-menu_sp.png") repeat center/cover;
    }
}

#contents>.inner {
    background-color: #f9c0cc;
    margin: auto;
}

@media screen and (max-width: 768px) {
    #contents {
        padding-top: min(40px, 100vw*(40/750));
        padding-bottom: min(200px, 100vw*(200/750));
        background: url("../img/bg_sp.png") repeat center top/contain;
    }

    #contents>.inner {
        max-width: min(704px, 100vw*(704/750));
        border: 3px solid var(--bk);
        box-sizing: content-box;
    }
}

@media screen and (min-width: 769px) {
    #contents {
        padding-bottom: 180px;
        background: url("../img/bg.png") repeat center top;
    }

    .newsdetail #contents {
        padding-top: 120px;
        padding-bottom: 120px;
    }

    #contents>.inner {
        max-width: 912px;
        border-left: 6px solid var(--bk);
        border-right: 6px solid var(--bk);
        border-bottom: 6px solid var(--bk);
    }

    .newsdetail #contents>.inner {
        border-top: 6px solid var(--bk);
    }
}

#news {
    padding-top: min(20px, 100vw*(20/750));
    padding-bottom: min(20px, 100vw*(20/750));
    background-color: #fff;
    border-bottom: 3px solid var(--bk);
}

.news-list li {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 1.5em 3.0rem;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1;
}

.news-list li:not(:last-child) {
    background: url("../img/line.png") repeat-x left bottom/contain;
}

.news-list li .date {
    margin-right: 2.5rem;
}

.news-list li a {
    color: var(--bk);
    font-size: 2.8rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* Popup */

.mfp-ajax-holder .mfp-content {
    width: 90%;
    height: max-content;
    max-height: min(900px, 100vw*(900/750));
    margin: min(40px, 100vw*(40/750)) auto;
    padding: min(40px, 100vw*(40/750));
    background-color: #fff;
    border: 10px solid #f15d92;
    overflow: auto;
}

.newsdetail .news-content {
    padding: 20px;
    background: #fff;
}

.news-content h2 {
    margin-bottom: 1.0em;
    padding-bottom: 0.5em;
    border-bottom: 1px solid #343434;
    color: #f15d92;
    font-size: min(32px, 100vw*(32/750));
}

.news-content p {
    margin-top: 1.0em;
    font-size: min(28px, 100vw*(28/750));
}

@media screen and (min-width: 769px) {

    .mfp-ajax-holder .mfp-content {
        max-width: 900px;
        max-height: 900px;
        margin: 40px auto;
        padding: 60px;
    }

    .news-content h2 {
        font-size: 24px;
    }

    .news-content p {
        font-size: 20px;
    }
}


/* Animation */

.fadein {
    opacity: 0;
}

.fadein.is-animated {
    animation: fadeIn 1.2s cubic-bezier(0.33, 1, 0.68, 1) 0.3s forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fadeup {
    opacity: 0;
    transform: translateY(20%);
}

.fadeup.is-animated {
    animation: fadeUp 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

.zoomin {
    opacity: 0;
    transform: scale(0.5);
}

.zoomin.is-animated {
    animation: zoomIn 0.4s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    60% {
        opacity: 1;
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}