@charset "utf-8";

/*-----------------------

    subpage common

-----------------------*/
.subpage {
    box-sizing: border-box;
}

@media screen and (max-width: 1200px) {
    .subpage {
        background-image: url(../images/bg.png);
        border: none;
    }
}

.subpage header {
    width: 100%;
    margin-bottom: 20px;

    background-color: var(--base-black);
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1100;

    border-bottom: 50px solid var(--base-red);
    /* box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2); */
}

@media screen and (max-width: 1200px) {
    .subpage header {
        height: 110px;
        border-bottom: 10px solid var(--base-red);
    }
}

.subpage header h1 {
    flex: 1;
}

.subpage header h1 {
    line-height: 0;
}


.subpage header h1 .site-title img {
    width: auto;
    height: 60px;
    margin: 20px;
}


/*-----------------------

    subpage menu

-----------------------*/

.subpage header .menu-trigger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    outline: none;
    position: relative;
    transition: all 0.3s;
}

.subpage header .menu-trigger::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s;
    z-index: -1;
}

.subpage header .menu-trigger:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.subpage header .menu-trigger.active::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.subpage header .hamburger-icon {
    width: 32px;
    height: 24px;
    position: relative;
    margin-bottom: 4px;
}

.subpage header .hamburger-icon span {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 4px;
    transition: transform 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6), top 0.3s, background-color 0.3s;
}

.subpage header .hamburger-icon span:nth-child(1) {
    top: 0;
}

.subpage header .hamburger-icon span:nth-child(2) {
    top: 10px;
}

.subpage header .hamburger-icon span:nth-child(3) {
    top: 20px;
}

.subpage header .menu-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
    transition: color 0.3s;
}

.subpage header .menu-trigger.active .hamburger-icon span:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
}

.subpage header .menu-trigger.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.subpage header .menu-trigger.active .hamburger-icon span:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg);
}

.subpage .side-menu {
    box-sizing: border-box;
    border-left: 50px solid var(--base-red);
    border-right: 50px solid var(--base-red);
    position: fixed;
    top: 0;
    left: calc(50% - 600px);
    width: 100%;
    max-width: 1200px;
    height: 100vh;
    background-color: #fff;
    z-index: 1000;

    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;

    padding: 200px 20px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;


    overflow-y: auto;
    -webkit-overflow-scrolling: touch;

    font-weight: bold;
    text-align: center;
    color: #ffffff;
}

@media (max-width: 1200px) {
    .subpage .side-menu {
        left: 0;
        border: none;
    }
}

.subpage .side-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.subpage .side-menu .topic a.link_arrow {
    background-color: #fb9b01;
}

@media screen and (max-width:600px) {
    .subpage .side-menu .topic a.link_arrow {
        width: 100%;
        min-height: 50px;
    }
}


.subpage .side-menu .topic a.link_arrow img {
    width: 75%;
}


.subpage .side-menu .base_menu {
    list-style: none;
    color: #ccc;
}

.subpage .side-menu .topic li,
.subpage .side-menu .base_menu li {
    margin-bottom: 25px;
}

.subpage .side-menu .base_menu li span {
    font-family: "Libre Franklin", sans-serif;

    font-size: clamp(24px, 1.318rem + 0.909vw, 32px);
    font-weight: bold;
    text-align: center;

    margin-right: 1rem;
}

.side-menu .base_menu li a {
    text-decoration: none;
    font-size: clamp(16px, 0.818rem + 0.909vw, 24px);
    transition: all 0.3s;

    padding: 10px 20px 0px;
}

.side-menu .base_menu li a:hover {
    background-color: #fbb03b;
    letter-spacing: 2px;
}

.subpage .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.subpage .overlay.active {
    opacity: 1;
    visibility: visible;
}



/*-----------------------

main

-----------------------*/

.subpage .main {
    width: 100%;
    max-width: 800px;
}

.subpage .main h2 {
    font-family: "Libre Franklin", sans-serif;
    font-size: clamp(32px, 1.636rem + 1.818vw, 48px);
    font-weight: bold;
    text-align: center;

    margin-bottom: 50px;
}

.subpage .main h2 span {
    width: 100%;
    display: block;
    font-size: clamp(16px, 0.636rem + 1.818vw, 32px);
}


/*-----------------------

ticket

-----------------------*/

/* base */
.ticket .base {
    width: 100%;
    padding: 10px;
}


.ticket .tiket_text {
    padding: 10px;
    font-size: clamp(16px, 0.909rem + 0.455vw, 20px);
    margin-bottom: 50px;
}

.ticket .tiket_text p:not(:last-of-type) {
    margin-bottom: 50px;
}


.ticket .base h3 {
    background-color: var(--base-red);
    font-size: clamp(16px, 0.636rem + 1.818vw, 32px);
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    padding: 10px;
    margin-bottom: 50px;
}

.ticket .base h4 {
    font-size: clamp(16px, 0.636rem + 1.818vw, 32px);
    font-weight: bold;
    color: #ffffff;
    padding: 5px 10px;
    border-left: 10px solidvar(--base-red);
}

.ticket .base .attention {
    font-size: 0.8rem;
}

.ticket .base .box {
    padding: 20px;
    margin-bottom: 20px;
}

.ticket .base dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
    border: 1px solid #ffffff;
    border-radius: 2px;
    margin-bottom: 5px;
}

.ticket .base .box dl:not(:first-of-type) {
    margin-top: 20px;
}

.ticket .base dl dt {
    width: 100%;
    flex-shrink: 1;
    background-color: #ffffff;
    border-bottom: 1px solid #ffffff;
    color: #000;
    padding: 10px;
}

.ticket .base dl dt span {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px 0px;
    margin-right: 10px;

}

/* @media screen and (max-width: 600px) {
    .ticket .base dl dt span {
        display: block;
        width: 100%;
    }
} */

.ticket .base dl dt .happi_l {
    display: inline-block;
    text-decoration: none;
    background-color: var(--base-red);
    padding: 2px 10px 0px;
    border-radius: 5px;
    font-weight: bold;
    color: #ffffff;
}

.ticket .base dl dd {
    background-color: rgba(0, 0, 0, 0.5);
    width: fit-content;

    flex-shrink: 0;
    font-weight: bold;

    padding: 10px;
}

@media screen and (max-width: 600px) {
    .ticket .base dl dd {
        width: 100%;
    }
}

.ticket .base dl dd span {
    font-size: 0.8rem;
    margin-right: 5px;
}


/* happi  */
.ticket .base .happi {
    background-color: rgba(255, 255, 255, 1);
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    border: 4px solidvar(--base-red);
    margin-top: 100px;
    color: var(--base-red);
}

.ticket .base .happi h4 {
    background-color: var(--base-red);
    border: none;
    border-radius: 10px;

    text-align: center;
    margin-bottom: 20px;
}

.ticket .base .happi h4 span {
    display: block;
    font-weight: normal;
    font-size: 0.8rem;
    color: #ffffff;
}

.ticket .base .happi h5 {
    width: fit-content;
    background-color: #fb9b01;

    border: none;
    border-radius: 10px 10px 0px 0px;
    padding: 10px 20px 5px;

    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-weight: bold;

    margin: 0px auto;
    color: #ffffff;
}

.ticket .base .happi p {
    margin-bottom: 1rem;
}

.ticket .base .happi figure {
    border: 4px solid #fb9b01;
    padding: 20px;
    border-radius: 10px;
}

.ticket .base .happi figure:not(:last-of-type) {
    margin-bottom: 20px;
}




.ticket .base .happi figure figcaption {
    font-size: 0.8rem;
    color: #333;
}


.ticket .base .happi figure img {
    margin-bottom: 10px;
}

/* note_list  */
.ticket .base .note_list {
    margin-top: 50px;

}

.ticket .base .note_list li {
    text-indent: -1rem;
    margin-left: 1rem;
    margin-bottom: 0.5rem;
}

.ticket .base .note_list li::before {
    content: "※";
    font-size: 0.8rem;
    margin-right: 0.2rem;
}

/* purchase */
.ticket .purchase {
    width: 100%;
    padding: 10px;
    margin-top: 100px;
}

.ticket .purchase h3 {
    background-color: var(--base-red);
    font-size: clamp(16px, 0.636rem + 1.818vw, 32px);
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    padding: 10px;
    margin-bottom: 50px;
}

.ticket .purchase ul {
    color: #000;
}

.ticket .purchase ul li {
    background-color: #ffffff;
    padding: 20px;
    margin-bottom: 10px;
    border-radius: 2px;

    border-left: 10px solid #fbb03b;
}

.ticket .purchase ul li.pre {
    border-left: 10px solid var(--base-red);
}

.ticket .purchase ul li h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.ticket .purchase ul li h4 span {
    display: inline-block;
    text-decoration: none;
    background-color: #fbb03b;
    padding: 2px 10px;
    border-radius: 5px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
}

.ticket .purchase ul li.pre h4 span {
    background-color: var(--base-red);
    color: #ffffff;
}

.ticket .purchase .attention {
    font-size: 0.8rem;

}


.ticket .purchase ul li dl {
    margin-top: 20px
}

.ticket .purchase ul li dl dt {
    background-color: rgba(251, 177, 59, 0.2);
    font-weight: bold;
    padding: 2px 5px;
    color: #fb9b01;
}

.ticket .purchase ul li.pre dl dt {
    background-color: rgba(215, 12, 26, 0.1);
    font-weight: bold;
    padding: 2px 5px;
    color: var(--base-red);
}

.ticket .purchase ul li dl dd {
    padding: 5px;
    margin-bottom: 10px;
}

/* accordion  */

.accordion-toggle {
    display: none;
}

.accordion-header {
    background-color: #000;
    width: 100%;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding: 16px 48px 16px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 20px;
}

@media (hover: hover) {
    .accordion-header:hover {
        background-color: var(--base-red);
    }
}

.accordion-header::after {
    content: "";
    position: absolute;
    right: 20px;
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(135deg);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: -4px;
}

.accordion-toggle:checked+.accordion-header::after {
    transform: rotate(-45deg);
    margin-top: 4px;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #ffffff;
}

.accordion-toggle:checked~.accordion-content {
    max-height: 100%;
}

.ticket .purchase ul li a.external-link {
    background-color: #000;
    width: 100%;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding: 16px 48px 16px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;

    margin-top: 10px;
}


.ticket .purchase ul li a.external-link:hover {
    background-color: #fb9b01;
}


.ticket .purchase ul li.pre a.external-link:hover {
    background-color: var(--base-red);
}


.ticket .purchase ul li a.external-link::after {
    position: absolute;
    right: 10px;

    font-family: "Material Symbols Outlined";
    content: 'open_in_new';
    font-size: 1.2rem;
    font-weight: normal;

    padding-right: 0.5rem;
    vertical-align: middle;
}

/*-----------------------

   .volunteer

-----------------------*/
.volunteer .base {
    padding: 10px;
}

.volunteer .base h3 {
    background-color: var(--base-red);
    font-size: clamp(16px, 0.636rem + 1.818vw, 32px);
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    padding: 10px;
    margin-bottom: 50px;
}

.volunteer .base h4 {
    font-size: clamp(16px, 0.636rem + 1.818vw, 32px);
    font-weight: bold;
    color: #ffffff;
    padding: 5px 10px;
    border-left: 10px solid var(--base-red);
}


.volunteer .read {
    background-color: #000;
    padding: 20px;
    margin-bottom: 50px;
}

.volunteer .read .attention {
    text-align: center;
    color: #fbb03b;
    font-weight: bold;
    margin-top: 20px;
}


/* summary  */

.volunteer .summary {
    background-color: #ffffff;
    margin-top: 20px;
    margin-bottom: 50px;
    border: 1px solid #ffffff;
    border-radius: 2px;
    color: #000;
}

.volunteer .summary .attention {
    font-size: 0.8rem;
    margin-top: 10px;
}

.volunteer .summary>dt {
    background-color: #000;
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
    padding: 10px;
}

.volunteer .summary>dd {
    padding: 10px;
}

.volunteer .summary>dd span {
    display: inline-block;
    font-weight: bold;
    padding-right: 5px;
}

.volunteer .summary>dd span:not(:first-of-type) {
    margin-top: 10px;
}


.volunteer .summary>dd span::before {
    content: "●";
    color: var(--base-red);
    padding-right: 5px;
}


.volunteer .summary>dd p {
    margin-bottom: 10px;
}

.volunteer .summary table {
    margin-bottom: 10px;
}

.volunteer .summary .time {
    text-align: right;
    padding-right: 10px;
}

.volunteer .summary ul {
    list-style-type: disc;
    list-style-position: outside;
    padding-left: 1.5rem;
}

.volunteer .summary ul li::marker {
    font-size: 1.2em;
}


/* schedule */

.volunteer .base .schedule {
    background-color: #ffffff;
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    border: 4px solidvar(--base-red);
    margin: 20px 0px 50px;
    color: var(--base-red);
}

.volunteer .base .schedule figcaption {
    font-size: 0.8rem;
    color: #333;
}

/* schedule_message */

.volunteer .base .schedule_message {
    background-color: #ffffff;
    margin-top: 20px;
    margin-bottom: 20px;
    border: 1px solid #ffffff;
    border-radius: 2px;
    color: #000;
}

.volunteer .base .schedule_message dt {
    background-color: #000;
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
    padding: 10px;
}

.volunteer .base .schedule_message dd {
    padding: 10px;
}

.volunteer .base .schedule_message dd p:not(:first-of-type) {
    margin-bottom: 10px;
}

/* happi  */
.volunteer .base .happi {
    background-color: rgba(255, 255, 255, 1);
    text-align: center;
    padding: 20px 20px 0px;
    border-radius: 20px;
    border: 4px solid var(--base-red);
    margin: 50px 0px;
    color: var(--base-red);
}

.volunteer .base .happi h4 {
    background-color: var(--base-red);
    border: none;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
}

.volunteer .base .happi h4 span {
    color: var(--base-red);
}

.volunteer .base .happi figure {
    padding: 20px;
}

.volunteer .base .happi figure figcaption {
    font-size: 0.8rem;
    color: #333;
}

.volunteer .base .happi figure img {
    margin-bottom: 10px;
}



/* q_a_list */

.volunteer .base .q_a_list {
    background-color: #ffffff;
    margin-top: 20px;
    margin-bottom: 20px;
    border: 1px solid #ffffff;
    border-radius: 2px;
    color: #000;
}

.volunteer .base .q_a_list dt {
    display: flex;
    align-items: flex-start;

    background-color: #000;
    font-size: 1.2rem;
    font-weight: bold;

    color: #ffffff;
    padding: 10px;
}

.volunteer .base .q_a_list dt span {
    display: block;
    flex: 1;
}

.volunteer .base .q_a_list dt::before {
    display: block;
    content: "Q";
    background-color: var(--base-red);
    text-align: center;
    width: 40px;
    border-radius: 15px;
    margin-right: 10px;
    flex-basis: 30px;
}

.volunteer .base .q_a_list dd {
    padding: 10px;
}

.volunteer .base .q_a_list dd p:not(:first-of-type) {
    margin-bottom: 10px;
}

/* form */


.volunteer .base .form {
    margin: 50px auto;
    text-align: center;
}

.volunteer .base .form a {
    width: fit-content;
    background-color: var(--base-red);
    color: #ffffff;
    font-size: 1.5rem;
}

.volunteer .base .form a:hover {
    background-color: #fbb03b;
}


/*-----------------------

enjoy

-----------------------*/

.enjoy .base {
    padding: 10px;
}

.enjoy .base h3 {
    background-color: var(--base-red);
    font-size: clamp(16px, 0.636rem + 1.818vw, 32px);
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    padding: 10px;
    margin-bottom: 50px;
}

.enjoy .base h4 {
    font-size: clamp(16px, 0.636rem + 1.818vw, 32px);
    font-weight: bold;
    color: #ffffff;
    padding: 5px 10px;
    border-left: 10px solid var(--base-red);
}


/* detail  */

.enjoy .detail {
    background-color: #ffffff;
    margin-top: 20px;
    margin-bottom: 50px;
    border: 1px solid #ffffff;
    border-radius: 2px;
    color: #000;
}

.enjoy .detail .attention {
    font-size: 0.8rem;
}

.enjoy .detail>dt {
    background-color: #000;
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
    padding: 10px;
}

.enjoy .detail>dd {
    padding: 10px;
}

.enjoy .detail>dd span {
    display: inline-block;
    font-weight: bold;
    margin-right: 10px;
}

.enjoy .detail>dd span::before {
    content: "●";
    color: var(--base-red);
}

.enjoy .detail>dd p {
    margin-bottom: 10px;
}

/* time_schedule */

.enjoy .time_schedule {
    padding: 50px;
    text-align: center;
    font-weight: bold;
    font-size: 2rem;
    color: #ccc;
}

/*-----------------------

   .stance

-----------------------*/
.stance .base {
    padding: 10px;
}


.stance .base h3 {
    background-color: var(--base-red);
    font-size: clamp(16px, 0.636rem + 1.818vw, 32px);
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    padding: 10px;
    margin-bottom: 20px;
}

.stance .base .stance_box {
    margin-bottom: 50px;
}

.stance .base .stance_box ul {
    list-style-type: disc;
    list-style-position: outside;
    padding-left: 1.5rem;
}

.stance .base .stance_box ul li {
    margin-bottom: 20px;
}

.stance .base .stance_box ul li::marker {
    font-size: 1.5em;
    color: var(--base-red);
}

.stance .base .stance_box ul li a {
    color: #ffffff;
}