<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* --------------------------------
            共通
-------------------------------- */

.event * {
    font-weight: normal;
    font-feature-settings: "palt" 1;
    font-family: 'Noto Sans CJK JP', 'Noto Sans JP ea', sans-serif;
    letter-spacing: .02em;
}

.event {
    background-color: #132b84;
}

.event img {
    max-width: 100%;
}

.sp {
    display: block;
}

.pc {
    display: none;
}

.event .wrap {
    padding: 30px 5% 30px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.event section {
    background-color: #fff;
    border: 5px solid #d1251a;
    border-radius: 5px;
    padding: 60px 0;
}

.event section:not(:last-of-type) {
    margin-bottom: 40px;
}

/* ------ページ下部電車スクロール------ */

.bg_train {
    background: url(../images/train.png) repeat-x bottom center / 200%;
    animation-name: scroll-footer-bg;
    animation-duration: 120s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    aspect-ratio: 1920 / 114;
}

@keyframes scroll-footer-bg {

    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -5884px 0;
    }
}

/* ------ページトップ------ */

#page-top {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 40px;
    aspect-ratio: 80 / 80;
    background: url(../images/pagetop_sp.png) no-repeat center / 100%;
    z-index: 100;
}


/* --------------------------------
    　　　イベント内容
-------------------------------- */

.event h1 {
    font-size: clamp(22px, 5vw, 30px);
    font-weight: bold; 
    color: #fff;
    text-align: center;
    margin: 35px 0;
    letter-spacing: .2em;
}

.event_list {
    /* text-align: center; */
    overflow:hidden;
}

.event_list:not(:last-of-type) {
    padding-bottom: 50px;
}

.event_list h2 {
    width: 80%;
    margin: 0 auto 30px auto;
    padding: .5em 5%;
    font-size: clamp(22px, 5vw, 30px);
    font-weight: bold;
    border-top: 3px solid #000;
    border-bottom: 1px solid #000;
    position: relative;
    text-align: center;
}

.event_list h2::before {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) skew(-25deg);
    height: 13px;
    width: 12px;
    border-right: 1px solid #000;
    background-color: #fff;
    content: "";
}

.event_list h3 {
    text-align: left;
    line-height: 1.8em;
    padding: 0 5%;
    font-size: clamp(12px, 2vw, 16px);
}

.event_list img {
    box-sizing: border-box;
}

.event_list h2 span {
    font-size: clamp(14px, 3vw, 18px);
    font-weight: bold;
}

.event_list h4 {
    text-align: center;
    margin-top: 1em;
    font-size: clamp(12px, 2vw, 16px)
}

.event_list h4 span {
    font-size: clamp(14px, 3vw, 20px);
    font-weight: bold;
}

.event_list ul,
.event_list ol {
    line-height: 1.8em;
    margin: 20px 0 30px 0;
    padding: 0 5%;
    text-align: center;
}

.event_list ul {
    font-size: clamp(12px, 1vw, 14px);
}

.event_list ol {
    font-size: clamp(10px, 1vw, 14px);
}

.event_list ul li span {
    color: red;
}

.event_list ul li::before {
    content: "・";
}

.event_list ol {
    list-style-type: none;
}

/* ------写真1枚------ */

.event_img_1 {
    width: 90%;
    margin: 0 auto;
}

.event_img_1 img {
    border: 1px solid #c0c0c0;
    border-radius: 10px;
}

.event_img_2 p:first-of-type img,
.event_img_3 p:first-of-type img,
.event_img_3 p:last-of-type img,
.event_img_4 p:first-of-type img,
.event_img_4 p:nth-of-type(3) img {
    border-top: 1px solid #c0c0c0;
    border-right: 1px solid #c0c0c0;
    border-bottom: 1px solid #c0c0c0;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.event_img_2 p:last-of-type img,
.event_img_3 p:nth-of-type(2) img,
.event_img_4 p:nth-of-type(2) img,
.event_img_4 p:last-of-type img {
    border-top: 1px solid #c0c0c0;
    border-left: 1px solid #c0c0c0;
    border-bottom: 1px solid #c0c0c0;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.event_img_1,
.event_img_2,
.event_img_3,
.event_img_4 {
    margin-top: 20px;
}

/* ------写真2枚------ */

.event_img_2 p {
    text-align: center;
}

.event_img_2 p span {
    display: block;
    margin-top: 10px;
    font-size: clamp(12px, 1.5vw, 16px);
}

.event_img_2 p:first-of-type {
    width: 90%;
}

.event_img_2 p:last-of-type {
    width: 90%;
    margin: 20px 0 0 auto;
}

/* ------写真3枚------ */

.event_img_3 {
    position: relative;
}

.event_img_3 p:first-of-type {
    width: 90%;
}

.event_img_3 p:nth-of-type(2) {
    width: 90%;
    margin: 30px 0 0 auto;
}

.event_img_3 p:last-of-type {
    position: absolute;
    width: 30%;
    left: 0;
    bottom: -20px;
}

.event_img_3 p:last-of-type img {
    padding: 20px;
    background-color: #fff;
}

/* ------写真4枚------ */

.event_img_4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.event_img_4 p:first-of-type {
    margin-bottom: 10px;
}

.event_img_4 p:first-of-type,
.event_img_4 p:last-of-type  {
    width: 55%;
}

.event_img_4 p:nth-of-type(2),
.event_img_4 p:nth-of-type(3) {
    width: 40%;
}

/* --------------------------------
    　フェードイン・スライドイン
-------------------------------- */

.fade_0 {
    animation: fadeIn_0 1000ms ease forwards;
}

@keyframes fadeIn_0 {
    0% {
      transform: translateY(40px);
      opacity: .1;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.fade {
	transition: all 1000ms;
	opacity: 0;
	visibility: hidden;
	transform: translate(0px, 40px);
}
.fadein {
	opacity: 1;
	visibility: visible;
	transform: translate(0px, 0px);
}


.fadeIn_left {
    opacity: 0;
    transform: translate(-50%, 0);
    transition: .8s;
    visibility: hidden;
}

.fadeIn_right {
    opacity: 0;
    transform: translate(50%, 0);
    transition: .8s;
}


.fadeIn_left.is-show,
.fadeIn_right.is-show {
    transform: translate(0, 0);
    opacity: 1;
    visibility: visible;
}

/* --------------------------------
    　　　　　駅弁
-------------------------------- */

.ekiben .event_goods dl {
    margin-bottom: 2%;
}

.ekiben ul {
    margin: 0 auto;
}

/* --------------------------------
    　　　　　グッズ
-------------------------------- */

.event_goods {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
    margin-top: 20px;
}

.event_goods dl {
    width: 48%;
    margin-bottom: 20px;
}

.event_goods dl:nth-of-type(odd) {
    margin-right: 4%;
}

.event_goods dl dt img {
    border-radius: 10px;
    border: 1px solid #c0c0c0  ;
    margin-bottom: 10px;
}

.event_goods dl dd {
    text-align: center;
    font-size: clamp(12px, 2vw, 16px);
}

.event_goods dl dd span {
    font-weight: bold;
    font-size: clamp(12px, 2vw, 16px);
}

/* --------------------------------
    　ステージスケジュール
-------------------------------- */

.event_stage {
    margin: 40px auto;
    text-align: center;
}

.event_stage h2 {
    /* border-top: 3px solid #fff;
    border-bottom: 1px solid #fff; */
    font-size: clamp(24px, 6vw, 32px);
    font-weight: bold;
    color: #fff;
    border-top: 1px dotted #fff;
    padding: 40px 0 30px 0;
}

.event_stage h2 span {
    font-size: clamp(14px, 3vw, 18px);
    font-weight: bold;
}

.event_stage table {
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
}

.event_stage table th,
.event_stage table td {
    border: 1px solid #000;
    padding: 10px 5px;
    font-size: clamp(10px, 2vw, 16px);
}

.stage_1 {
    background-color: #d1251a;
    color: #fff;
}

.stage_2 {
    width: 16%;
}

.event_stage td {
    width: 28%;
}

.event_stage td span {
    font-size: clamp(12px, 2vw, 16px);
}

.event_stage td em {
    font-size: clamp(8px, 1vw, 12px);
    letter-spacing: -.01em;
}

.event_stage td i {
    font-style: normal;
}

.event_stage td p {
    margin-top: 10px;
}

.event_stage td p img {
    border: 1px solid #e9e9e9;
    box-sizing: border-box;
}

.stage_3 {
    background-color: #e9e9e9;
}

.event_stage ul {
    margin-top: 10px;
    color: #fff;
    text-align: left;
    font-size: clamp(8px, 1vw, 12px);
}

.event_stage ul li::before {
    content: "※";
}

/* --------PC---------- */

@media screen and (min-width: 768px) { 

    /* --------------------------------
                　共通
    -------------------------------- */

    .sp {
        display: none;
    }

    .pc {
        display: block;
    }

    .wrap nav ul {
        padding: 60px 0 60px 0;
    }

    /* ------ページ下部電車スクロール------ */

    .bg_train {
        background: url(../images/train.png) repeat-x bottom center / 100%;
        aspect-ratio: 1920 / 57;
    }

    /* ------ページトップ------ */

    #page-top {
        width: 70px;
        aspect-ratio: 86 / 221;
        background: url(../images/pagetop.png) no-repeat center / 100%;
        transition-duration: .1s;
    }

    #page-top:hover {
        opacity: .7;
    }

    /* --------------------------------
                　イベント内容
    -------------------------------- */

    .event .wrap {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 5% 50px 5%;
    }

    .event .wrap_2 {
        background-image: url(../images/bg_pc.jpg);
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-position: center top;
        background-size: auto 160%;
        -moz-background-size: auto 160%;
    }

    .event section {
        max-width: 1200px;
        margin: 0 auto;
        border: 10px solid #d1251a;
        border-radius: 15px;
        box-sizing: border-box;
        padding: 100px 5%;
    }

    .wrap section:not(:last-of-type) {
        margin-bottom: 80px;
    }

    /* --------------------------------
        　　　イベント内容
    -------------------------------- */

    .event_list:not(:last-of-type) {
        padding-bottom: 100px;
    }

    .event h1 {
        font-size: clamp(22px, 5vw, 35px);
        margin: 0 0 50px 0;
    }

    .event_list h2 {
        width: 90%;
        font-size: clamp(32px, 4vw, 50px);
        margin-bottom: 50px;
    }

    .event_list h2 span {
        font-size: clamp(26px, 3vw, 36px);
    }

    .event_list h3 {
        text-align: center;
        font-size: clamp(12px, 1.5vw, 18px);
        padding: 0;
    }

    .event_list h4 {
        margin-top: 1.5em;
        font-size: clamp(12px, 1.5vw, 18px);
    }

    .event_list h4 span {
        font-size: clamp(20px, 3vw, 28px);
    }

    .event_list ul {
        font-size: clamp(12px, 1.5vw, 16px);
    }

    .event_img_1,
    .event_img_2,
    .event_img_3,
    .event_img_4 {
        margin-top: 60px;
    }

    /* ------写真1枚------ */

    .event_img_1 {
        width: 100%;
        text-align: center;
    }

    /* ------写真2枚------ */

    .event_img_2 {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .event_img_2 p:first-of-type {
        width: 48%;
    }

    .event_img_2 p:last-of-type {
        width: 48%;
        margin: 0;
    }

    /* ------写真3枚------ */

    .event_img_3 {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-bottom: 40px;
    }

    .event_img_3 p:first-of-type {
        width: 50%;
    }

    .event_img_3 p:nth-of-type(2) {
        width: 45%;
        margin: 0;
    }

    .event_img_3 p:last-of-type {
        left: 45%;
        bottom: -70px;
    }

    /* ------写真4枚------ */

    .event_img_4 p:first-of-type {
        margin-bottom: 3vw;
    }

    .event_list p img {
        border-radius: 10px;
        border: 1px solid #c0c0c0;
    }

    /* ------ハードロック工業------ */

    .event_img_hard {
        margin-top: 40px;
    }

    /* --------------------------------
    　　　　　    グッズ
    -------------------------------- */

    .event_goods {
        width: 100%;
        margin-top: 40px;
    }

    .event_goods dl {
        width: 32%;
        margin-bottom: 30px;
    }

    .event_goods dl dt img {
        margin-bottom: 20px;
    }

    .event_goods dl:nth-of-type(odd) {
        margin-right: 0;
    }

    .event_goods dl:not(:nth-of-type(3n)) {
        margin-right: 2%;
    }

    /* --------------------------------
        　ステージスケジュール
    -------------------------------- */

    .event_stage {
        margin: 80px auto;
    }

    .event .event_stage h2 { 
        font-size: clamp(38px, 5vw, 60px);
        padding: 70px 0 50px 0;
    }

    .event_stage h2 span {
        font-size: clamp(26px, 3vw, 36px);
    }

    .event_stage table {
        width: 90%;
    }

    .event_stage td span,
    .event_stage td i {
        font-size: clamp(18px, 2vw, 24px);
    } 

    .event_stage table th,
    .event_stage table td {
        padding: 20px 5px;
    }

    .event_stage table th,
    .event_stage table td,
    .event_stage td em {
        font-size: clamp(16px, 1vw, 22px);
    }

    .event_stage td p {
        width: 80%;
        margin: 15px auto 0 auto;
    }

    .event_stage ul {
        width: 90%;
        margin: 20px auto 0 auto;
        font-size: clamp(12px, 1vw, 14px);
    }

    .event_list ol {
        font-size: clamp(12px, 1.5vw, 16px);
    }
    

}
</pre></body></html>