@charset 'utf-8';
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Chonburi&display=swap');
:root {
    /* color */
    --gold: #d9b873;
    --glay: #999;
    --glay2: #666;
    --cv-color: #cf982e;
    /* font */
    --jp: "Noto Serif JP", serif;
    --en: "Chonburi", serif;
}
::selection {
    background: var(--gold);
    color: #000;
}
::-moz-selection {
    background: var(--gold);
    color: #000;
}
html {
    font-size: 10px;
    scroll-behavior: smooth;
}
img {
    user-drag: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    image-rendering: -webkit-optimize-contrast;
    width: 100%;
}
body {
    font-size: 1.6rem;
    font-family: var(--jp);
    font-weight: 500;
    color: #fff;
    animation: fadeIn 4s forwards;
    background-color: #000;
}
.flex {
    display: flex;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
.frame {
    border: 1px solid;
    padding: 4px 8px;
    font-size: 1.4rem;
    margin-right: 10px;
}
/* hover-anime */
.button-wrap {
    text-align: center;
}
.button-wrap .period {
    margin-top: 10px;
    text-align: center;
}
.hover-anime {
    display: inline-block;
    width: 80%;
    text-align: center;
    text-decoration: none;
    outline: none;
    color: #000;
    background-color: var(--gold);
    position: relative;
    border: 1px solid var(--gold);
    transition: color 0.5s ease;
    margin: 0 auto;
    padding: clamp(24px, 48vw, 48px) 0;
    border-radius: 50vw;
    overflow: hidden;
}
.hover-anime:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}
.hover-anime::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #bfa365;
    transform: scaleX(0);
    transform-origin: right;
    transition: all 0.5s ease;
    transition-property: transform;
    border-radius: 50vw;
}
.text {
    position: relative;
    font-size: clamp(18px, 28vw, 28px);
}
.no-link.mt {
    margin: clamp(32px, 56vw, 56px) 0;
}
.no-link .hover-anime {
    color: var(--glay2);
    background-color: var(--glay);
    border: 1px solid var(--glay);
}
.no-link .hover-anime:hover::before {
    display: none;
}
.no-link .hover-anime {
    pointer-events: none;
}
.frame-link .hover-anime {
    color: var(--gold);
    background-color: transparent;
    border: 1px solid var(--gold);
}
.frame-link .hover-anime::before {
    background: var(--gold);
}
.frame-link .hover-anime:hover {
    color: #000;
}
/*  animation */
.reveal-curtain {
    position: relative;
    display: inline-block;
    overflow: hidden;
}
.reveal-curtain img,
.reveal-curtain span,
.reveal-curtain h2,
.reveal-curtain p,
.reveal-curtain dt,
.reveal-curtain dd {
    display: block;
    opacity: 0;
    filter: blur(6px);
    transition: opacity 0.8s ease, filter 0.8s ease;
    transition-delay: 0.3s;
}
.reveal-curtain::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateX(0);
    transition: transform 1.2s cubic-bezier(.77, 0, .175, 1);
    z-index: 2;
}
.reveal-curtain.is-animated::before {
    transform: translateX(100%);
}
.reveal-curtain.is-animated img,
.reveal-curtain.is-animated span,
.reveal-curtain.is-animated h2,
.reveal-curtain.is-animated p {
    opacity: 1;
    filter: blur(0);
}
.reveal-blur {
    opacity: 0;
    filter: blur(8px);
    transition: opacity 1.2s ease, filter 1.2s ease;
}
.reveal-blur.is-animated {
    opacity: 1;
    filter: blur(0);
}
.reveal-fade {
    opacity: 0;
    transition: opacity 1s ease;
}
.reveal-fade.is-animated {
    opacity: 1;
}
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-up.is-animated {
    opacity: 1;
    transform: translateY(0);
}
@media screen and (max-width: 1000px) {
    .hover-anime {
        width: 100%;
        padding: 32px 0;
    }
    .text {
        font-size: 2rem;
    }
    .button-wrap .period {
        font-size: 1.4rem;
        margin-top: 5px;
    }
    .no-link.mt {
        margin: 32px 0;
    }
}
@media screen and (max-width: 768px) {
    #box-page .right-box .frame{
        font-size: 1.3rem;
    }
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}
/*======================================
    production-team
=======================================*/
#product-team {
    padding-top: 15.6vw;
    padding-bottom: 20.83vw;
    position: relative;
    overflow: hidden;
}
#box-page #product-team{
     padding-top: 10.6vw;
}
#product-team::before {
    content: "";
    background: url(../../img/special-page_20th/shine.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 60vw;
    position: absolute;
    bottom: 0;
    z-index: -1;
}
#product-team .visal {
    height: 52.08vw;
    max-height: 750px;
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
}
#product-team .visal .door {
    width: 31.25vw;
    max-width: 450px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 1;
}
#product-team .visal .artist {
    width: 36.6vw;
    max-width: 527px;
    position: absolute;
    top: 74%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 2;
}
#product-team .visal .detail {
    position: absolute;
    top: 50%;
    left: 80%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 3;
}
#product-team .visal .detail dl:nth-child(1) {
    margin-bottom: 40px;
}
#product-team .visal .detail dl dt {
    font-family: var(--en);
    color: var(--gold);
    font-size: 2rem;
    text-align: center;
}
#product-team .visal .detail dl dd {
    font-size: 2.4rem;
    text-align: center;
}
#product-team .visal h2 {
    position: absolute;
    top: 50%;
    left: 23%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 3;
}
#product-team .visal h2 .text01 img {
    width: 34.17vw;
    max-width: 492px;
}
#product-team .visal h2 .text02 img {
    width: 20.42vw;
    max-width: 294px;
    padding-left: 100px;
}
@media screen and (max-width: 1180px) {
    #product-team .visal {
        max-width: initial;
        width: 90%;
    }
}
@media screen and (max-width: 768px) {
    #product-team {
        padding-bottom: 0;
    }
    #product-team .visal {
        height: 131.08vw;
    }
    #product-team .visal .door {
        max-height: initial;
        max-width: initial;
        height: 92.08vw;
        width: 61.25vw;
        top: 40%;
    }
    #product-team .visal .artist {
        max-width: initial;
        max-height: initial;
        width: 55.6vw;
        height: auto;
        top: 70.08vw;
    }
    #product-team .visal h2 {
        top: initial;
        bottom: 15%;
        left: 40%;
    }
    #product-team .visal h2 .text01 img {
        width: 64.17vw;
        max-width: initial;
    }
    #product-team .visal h2 .text02 img {
        width: 39.42vw;
        max-width: initial;
    }
    #product-team .visal .detail {
        display: flex;
        width: 100%;
        top: initial;
        bottom: -2%;
        left: 50%;
        gap: 10%;
        justify-content: center;
    }
    #product-team .visal .detail dl dt {
        font-size: 1.8rem;
    }
    #product-team .visal .detail dl dd {
        font-size: 1.8rem;
    }
}
/*======================================
    product
=======================================*/
#product {
    padding: clamp(100px, 150vw, 150px) 0;
    position: relative;
    background:
        linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0)),
        url(../../img/special-page_20th/product-bg.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
#product::after {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(100% - 530px);
    background-color: rgba(0, 0, 0, 0.6);
    left: 0;
    bottom: 0;
    z-index: -1;
}
#product .wrap {
    max-width: 1000px;
    margin: 180px auto 0;
}
#product h2 {
    width: clamp(210px, 50vw, 410px);
    margin: clamp(100px, 150vw, 150px) 0 clamp(40px, 100vw, 100px);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
#product .product-wrap {
    padding: clamp(32px, 50vw, 50px) 0 clamp(40px, 80vw, 80px);
    align-items: center;
}
#box-page #product .product-wrap{
    align-items: stretch;
}
#product .product-wrap .left-box {
    width: 50%;
    padding-right: clamp(24px, 5vw, 32px);
}
#product .product-wrap .left-box .flex{
    align-items: baseline;
}
#product h4 {
    font-size: clamp(26px, 32vw, 32px);
    color: var(--gold);
    line-height: 1.3;
}
#product .price-wrap {
    gap: 20px;
    padding: clamp(8px, 16vw, 16px) 0 20px;
}
#product .price-wrap dl dt {
    border-color: var(--gold);
    color: var(--gold);
}
#product .price-wrap dl dd {
    font-size: 2rem;
    color: var(--gold);
}
#product .price-wrap dl dd span {
    font-size: 1.4rem;
    padding-left: 5px;
    color: var(--gold);
}
#box-page #product .product-wrap .left-box{
    padding: clamp(24px, 32vw, 32px) 0;
}
#product .product-wrap .right-box {
    width: 50%;
    padding: clamp(24px, 32vw, 32px) 0 clamp(24px, 32vw, 32px) clamp(24px, 5vw, 32px);
    border-left: 1px solid #666;
}
#product .product-wrap .right-box .intro {
    font-size: 1.6rem;
    line-height: 1.8;
}
#product .product-wrap .right-box dl {
    padding-top: clamp(8px, 16vw, 16px);
    align-items: baseline   ;
}
#box-page #product .product-wrap .left-box .intro{
    margin-top: 24px;
}
#box-page #product .product-wrap .right-box dl{
    flex-wrap: wrap;
}
#box-page #product .product-wrap .right-box dl .mb{
    margin-bottom: 8px;
}
#box-page #product .product-wrap .right-box dl:nth-child(1){
    padding-top: 0;
}
#box-page #product .product-wrap .right-box dl:nth-child(2){
    padding-top: 24px;
}
@media screen and (max-width: 1000px) {
    #product::after {
        height: calc(100% - 28%);
    }
    #product h2 {
        margin-bottom: 24px;
    }
    #product .wrap {
        max-width: initial;
        width: 90%;
    }
    #product h4{
        margin-top: 24px;
    }
    #product .product-wrap {
        flex-wrap: wrap;
        padding: 24px 0 40px;
    }
    #product .product-wrap .left-box {
        width: 100%;
        padding-bottom: 24px;
        padding-right: 0;
    }
    #product .product-wrap .right-box {
        width: 100%;
        border-top: 1px solid #666;
        border-left: 0;
        padding: 24px 0 0 0;
    }
    #box-page #product .product-wrap .left-box{
        padding: 0 0 clamp(24px, 32vw, 32px);
    }
}
@media screen and (max-width: 768px) {
    #product{
        padding: 100px 0;
    }
    #product h2{
        margin-top: 100px;
        margin-bottom: 0;
    }
    #product .wrap{
        margin-top: 80px;
    }
    #product::after{
        height: calc(100% - 20%);
    }
    #product .product-wrap .left-box h4{
        font-size: 2.4rem;
    }
    .frame{
        font-size: 1.3rem;
        margin-right: 5px;
    }
    .product-wrap .left-box .price-wrap dl dd{
        font-size: 1.6rem;
    }
    #box-page #product h4{
        font-size: 2.2rem;
    }
    #product .price-wrap{
        flex-wrap: wrap;
        gap: 8px;
    }
    /*#box-page #product .price-wrap{
        padding-bottom: 0;
    }*/
    #product .price-wrap dl{
        width: 100%;
    }
}
@media screen and (max-width: 550px) {
    #product::after {
        height: calc(100% - 12%);
    }
    #calendar-page #product::after {
        height: calc(100% - 20%);
    }
}
/*======================================
    footer
=======================================*/
footer {
    width: 100%;
    height: 100vh;
    background: url(../../img/special-page_20th/footer-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
footer .footer-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    min-width: 287px;
    width: 19.93%;
}
footer .copy {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    font-size: 1rem;
    width: 100%;
    text-align: center;
}
@media screen and (max-width: 550px) {
    footer .footer-logo {
        width: 50%;
        min-width: initial;
    }
}
/*======================================
    calendar-page
=======================================*/
/* main */
#calendar-page #main {
    width: 100%;
    height: 100vh;
    background: url(../../img/special-page_20th/calendar-page-main.jpg);
    background-size: cover;
    background-position: center;
    filter: blur(14px);
    transform: scale(1.05);
    opacity: 0;
    transition: filter 1.2s ease-out, transform 1.2s ease-out, opacity 1.2s ease-out;
    position: relative;
}
#calendar-page #main::after {
    content: "";
    background: url(../../img/special-page_20th/calendar-page-main-artist.png);
    background-size: cover;
    position: absolute;
    width: 85.56%;
    height: 92.78%;
    bottom: 0;
    right: -28.47%;
}
#calendar-page #main h1 {
    width: 37.08vw;
    max-width: 534px;
    height: 42.99vw;
    max-height: 619px;
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -30%) translateY(40px);
    opacity: 0;
    transition: transform 2.5s cubic-bezier(.2, .9, .2, 1), opacity 2.5s ease;
    transition-delay: 0.6s;
    z-index: 1;
}
#calendar-page #main .toplink {
    max-width: clamp(100px, 10vw, 150px);
    position: absolute;
    top: clamp(20px, 5vw, 40px);
    right: clamp(20px, 5vw, 40px);
}
#calendar-page.loaded #main {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
    overflow: hidden;
}
#calendar-page.loaded #main h1 {
    transform: translate(-50%, -50%) translateY(0);
    opacity: 1;
}
@media screen and (max-width: 768px) {
    #calendar-page #main {
        background: url(../../img/special-page_20th/calendar-page-main-sp.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: bottom;
    }
    #calendar-page #main::after {
        width: 110%;
        right: initial;
        left: -10%;
    }
    #calendar-page #main h1 {
        width: 70%;
        height: auto;
        left: 50%;
    }
}
/* message */
#calendar-page #message {
    background: #fff;
    padding: clamp(80px, 10vw, 150px) 0 clamp(180px, 250vw, 250px);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
#calendar-page #message::before {
    content: "";
    background: url(../../img/special-page_20th/shine.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 50vw;
    position: absolute;
    bottom: 0;
    z-index: -1;
}
#calendar-page #message .wrap {
    max-width: 1080px;
    margin: 0 auto;
}
#calendar-page #message .message-wrap {
    justify-content: end;
}
#calendar-page #message .message-wrap .inner {
    width: 50%;
}
#calendar-page #message .message-wrap .inner h2 {
    margin: 0 auto 2.78vw;
}
#calendar-page #message .message-wrap .inner h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#calendar-page #message .message-wrap .inner p {
    color: #000;
    text-shadow: 0px 0px 7px rgba(255, 255, 255, 0.004);
    font-size: 1.8rem;
    line-height: 1.8;
}
@media screen and (max-width: 1080px) {
    #calendar-page #message .wrap {
        width: 90%;
        max-width: initial;
    }
    #calendar-page #message .message-wrap .inner {
        width: 100%;
    }
    #calendar-page #message .message-wrap .inner h2 {
        width: 80%;
    }
    #calendar-page #message {
        padding: 120px 0;
    }
}
@media screen and (max-width: 550px) {
    #calendar-page #message .message-wrap .inner h2 {
        width: 100%;
    }
    #calendar-page #message .message-wrap .inner p{
        font-size: 1.6rem;
    }
    #calendar-page #message::before{
        width: 180%;
        height: 90vw;
    }
}
/* production-team */
#calendar-page #product-team::after {
    content: "";
    background: url(../../img/special-page_20th/arch.png);
    background-color: #fff;
    background-position: center;
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 11.42vw;
    top: 0;
}
/*======================================
    box-page
=======================================*/
/* main */
#box-page #main{
    position: relative;
    height: 100vh;
    width: 100%;
}
#box-page #main::before {
    content: "";
    background: url(../../img/special-page_20th/shine.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 50vw;
    position: absolute;
    bottom: 0;
    z-index: -1;
}
#box-page #main .photo{
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 150px;
}
#box-page #main .photo img{
    max-width: 430px;
}
#box-page #main .toplink{
    max-width: clamp(100px, 10vw, 150px);
    position: fixed;
    top: clamp(20px, 5vw, 40px);
    left: clamp(20px, 5vw, 40px);
}
#box-page #main h1{
    max-width: 570px;
    max-height: 660px;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 1;
}
#box-page #main .photo img:nth-child(1){
    padding-top: 230px;
}
#box-page #main .gold{
    max-width: 250px;
    position: absolute;
    bottom: 60px;
    right: clamp(20px, 5vw, 40px);
}
@media screen and (max-width: 1140px) {
    #box-page #main .photo{
        width: 90%;
    }
    #box-page #main .photo img{
        max-width: 45%;
    }
    #box-page #main .photo{
        margin-top: 20%;
    }
    #box-page #main .photo img:nth-child(1){
        padding-top: 150px;
    }
    #box-page #main .gold{
        width: 30%;
        bottom: 10%;
    }
}
@media screen and (max-width: 768px) {
    #box-page #main{
        height:100vw;
    }
}
@media screen and (max-width: 550px) {
    #box-page #main{
        height: 110vw;
    }
    #box-page #main .photo img:nth-child(1){
        padding-top: 30vw;
    }
    #box-page #main .gold{
        right: 10px;
        width: 40%;
        bottom: 10px;
    }
}
/* message */
#box-page #message{
    padding: clamp(130px, 180vw, 180px) 0 clamp(100px, 150vw, 150px);
    background: var(--gold);
    position: relative;
}
#box-page #message::after {
    content: "";
    background: url(../../img/special-page_20th/arch-gold.png);
    background-color: #000;
    position: absolute; 
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 11.42vw;
    top: 0;
    background-position: center;
}
#box-page #message .message-wrap .inner h2 {
    width: 36.11vw;
    max-width: 520px;
    margin: 0 auto clamp(24px, 5vw, 32px);
    display: block;
    z-index: 1;
}
#box-page #message .message-wrap .inner p{
    max-width: 600px;
    margin: 0 auto;
    color: #000;
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.8;
}
#box-page #message .message-wrap .inner p .line{
    position: relative;
    padding: 32px 0;
    margin: 24px 0;
    display: inline-block;
    text-align: center;
    line-height: 1.8;
}
#box-page #message .message-wrap .inner p .line i{
    font-size: 2rem;
    margin-bottom: 24px;
    display: block;
    text-align: center;
}
#box-page #message .message-wrap .inner p .line::before{
    content: "";
    background: url(../../img/special-page_20th/line.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 1vw;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background-position: center;
}
#box-page #message .message-wrap .inner p .line::after{
    content: "";
    background: url(../../img/special-page_20th/line.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 1vw;
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background-position: center;
}
#box-page #message .message-wrap .inner p .indent{
    display: block;
    text-indent: -2rem;
    padding-left: 3rem;
    text-align: center;
    margin-bottom: 2rem;
}
#box-page #message .message-wrap .inner p .indent:last-child{
    margin-bottom: 0;
}
@media screen and (max-width: 1000px) {
    #box-page #message .message-wrap .inner p .indent{
        margin-bottom: 1rem;
        padding: 0;
    }
    #box-page #message .message-wrap .inner p .line{
        padding: 20px 0;
        margin: 24px 0;
    }
}
@media screen and (max-width: 768px) {
    #box-page #message .message-wrap .inner h2 {
        width: 50vw;
    }
    #box-page #message .message-wrap .inner p{
        width: 90%;
        margin: 0 auto;
    }
    #box-page #message{
        padding: 130px 0 100px;
    }
}
@media screen and (max-width: 550px) {
    #box-page #message .message-wrap .inner h2 {
        width: 70vw;
    }
    #box-page #message{
        padding: 100px 0 80px;
    }
    #box-page #message .message-wrap .inner p{
        font-size: 1.8rem;
    }
    #box-page #message .message-wrap .inner p .line i{
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 16px;
    }
}
/* sign */
.sign-inner{
    padding: 50px 40px;
    background: #fff;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 80px;
}
.sign-inner h3{
    color: #000;
    text-align: center;
    font-size: 2.4rem;
    border-bottom: 1px solid #000;
    position: relative;
    padding-bottom: 24px;
    margin-bottom: 32px;
}
.sign-inner h3::after{
    content: "";
    background: url(../../img/special-page_20th/line-decoration.png);
    width: 15px;
    height: 8px;
    position: absolute;
    left: 0;
    bottom: -9%;
    background-size: cover;
    background-repeat: no-repeat;
}
.sign-inner h3::before{
    content: "";
    background: url(../../img/special-page_20th/line-decoration.png);
    width: 15px;
    height: 8px;
    position: absolute;
    right: 0;
    bottom: -9%;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scaleX(-1);
    font-size: 2rem;
}
.sign-inner .ticket-wrap{
    padding: 0 74px;
    display: flex;
    gap: 56px;
    align-items: center;
}
.sign-inner .ticket-wrap img{
    width: 30%;
}
.sign-inner .ticket-wrap .detail{
    width: calc(70% - 56px);
    color: #000;
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.8;
}
.sign-inner .ticket-wrap .detail a{
    width: 100%;
    padding: 24px 0;
    margin-top: 32px;
}
.sign-inner .ticket-wrap .detail a .text{
    font-size: 1.6rem;
}
@media screen and (max-width: 1000px) {
    .sign-inner {
        padding: 6% 5%;
        width: 90%;
    }
    .sign-inner .ticket-wrap {
        padding: 0;
        gap: 10%;
        flex-wrap: wrap;
    }
    .sign-inner .ticket-wrap .detail {
        width: 100%;
        font-size: 1.7rem;
    }
    .sign-inner .ticket-wrap img{
        margin: 0 auto;
        margin-bottom: 16px;
        width: 50%;
    }
    .sign-inner .ticket-wrap .detail a{
        margin-top: 24px;
    }
    .sign-inner h3{
        font-size: 1.8rem;
        padding-bottom: 16px;
        margin-bottom: 24px;
    }
    .sign-inner h3::before,
    .sign-inner h3::after{
        bottom: -12%;
        width: 8px;
    }
}
@media screen and (max-width: 550px) {
    .sign-inner .ticket-wrap .detail a{
        margin-top: 16px;
    }
}
#box-page .button-wrap h5{
    text-align: center;
    color: var(--gold);
    position: relative;
    padding: 0 64px;
    font-size: 2.4rem;
    margin-bottom: 2rem;
    display: inline-block;
}
#box-page .button-wrap h5::before{
    content: "";
    background: url(../../img/special-page_20th/decoration.png);
    width: 54px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleX(-1);
}
#box-page .button-wrap h5::after{
    content: "";
    background: url(../../img/special-page_20th/decoration.png);
    width: 54px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
}
@media screen and (max-width: 768px) {
    #box-page .button-wrap h5{
        font-size: 2.4rem;
        padding: 0 34px;
    }
    #box-page .button-wrap h5::before,
    #box-page .button-wrap h5::after{
        width: 34px;
        height: 20px;
    }
}