@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@700;300&family=Zen+Maru+Gothic:wght@700;300&display=swap');

:root{
    --txt-color: #4B0000;
    --bg-green: #CEDE68;
    --black: #3E3A39;
    --stage: #036EB8;
    --red: #EE4949;
    --orange: #EC6832;

    /* テキスト */
    --nomal: clamp(15px, 1.2vw, 17px);
    --h2: clamp(30px, 5vw, 40px);
    --mid: clamp(17px, 2vw, 18px);
    --big: clamp(19px, 2vw, 25px);
    --min: 14px;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
    background: var(--bg-green);
    color: var(--txt-color);
    font-size: var(--nomal);
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: .13rem;
    /* text-box-trim: trim-both; */
}

/* 背景 */
.bg-white{
    background: #fff;
}
.bg-blue{
    background: #D8E8F7;
}
.bg-pink{
    background: #E9528E;
}
.bg-red{
    background: var(--red);
}
.bg-stage{
    background: var(--stage);
}
.bg-yellow{
    background: #FFF343;
}
.bg-orange{
    background: var(--orange);
}
.bg-gr{
    background: #3EB36E;
}
/* テキストカラー */
.txt-white{
    color: #fff;
}
.txt-stage{
    color: var(--stage);
}
.txt-black{
    color: var(--black);
}
.txt-orange{
    color: var(--orange);
}
.txt-red{
    color: var(--red);
}
.txt-pink{
    color: #E9528E;
}
.txt-blown{
    color: var(--txt-color);
}

/* 文字揃え */
.center{
    text-align: center;
}
.left{
    text-align: left;
}

/* テキストサイズ */
.nomal{
    font-size: var(--nomal);
}
.h2_{
    font-size: var(--h2);
}
.mid{
    font-size: var(--mid);
}
.big{
    font-size: var(--big);
}
.min{
    font-size: var(--min);
}

/* コンテンツ幅 */
.container{
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
}

/* その他 */
.sp,
.ipad{
    display: none;
}
ul li,
ol li{
    list-style: none;
}
.flex{
    display: flex;
}
.column{
    flex-direction: column;
}
.f-align-c{
    align-items: center;
}
a{
    color: inherit;
    transition: .2s;
}
a:hover{
    opacity: .5;
}
img{
    width: 100%;
    height: auto;
}
.en{
    font-family: "Roboto", sans-serif;
}
.maru{
    border-radius: 3vh;
}
.box{
    /* padding: .5rem; */
    padding: 10px;
    border-radius: 100vh;
    white-space: nowrap;
}
.info{
    gap: 1.5rem;
}
h2.h-ttl{
    border-radius: 1vh;
    width: fit-content;
    margin: 0 auto;
    padding: 3% 10%;
    position: relative;
}
h2.h-ttl::after{
    content: "";
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    margin: 0 auto;
    display: block;
    right: 0;
    left: 0;
    bottom: -1.4rem;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: inherit;
}
small{
    font-weight: 300;
}

/* アニメーション設定 */
header .element{
    opacity: 0;
}
.element.slideIn{
    opacity: 1;
    animation: 1.2s slideIn ease-in;
    animation-play-state: paused;
}
@keyframes slideIn{
    from{
        transform: translateY(-40vw);
    }
    to{
        transform: translateY(0);
    }
}
.element.pop{
    animation: 1s pop ease-in-out;
    animation-play-state: paused;
}
@keyframes pop{
    0%{
        transform: scale(0) translate(0px, -20px);
    }
    50%{
        transform: scale(1.05);
    }
    80%{
        transform: scale(0.95);
    }
    100%{
        transform: 0;
    }
}
.in-view.pop02{
    animation: 1s pop02 ease-in-out;
}
@keyframes pop02{
    0%{
        transform: scale(0) translate(0px, -20px);
    }
    50%{
        transform: scale(1.05);
    }
    80%{
        transform: scale(0.95);
    }
    100%{
        transform: 0;
    }
}
.in-view.slideIn02{
    animation: 1s slideIn02 ease-in;
}
@keyframes slideIn02{
    from{
            opacity: 0;
            transform: translateY(50px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

/* 準備中用 */
/* リンク設定したら以下削除 */
a.coming{
    position: relative;
    pointer-events: none;
}
a.coming::before{
    content: "準備中！";
    color: #fff;
    background: rgba(0,0,0,0.5);
    /* padding: 1rem 0; */
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    text-align: center;
    margin: 0 auto;
    right: 0;
    left: 0;
}

/* *****************************
header
***************************** */

header .flow-logo{
    width: fit-content;
    position: fixed;
    top: 0;
    left: 2%;
    padding: 1rem;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
    z-index: 999;
    filter: drop-shadow(1px 1px 10px rgba(75, 0, 0, 0.25));
}
header nav{
    position: fixed;
    top: 0;
    right: 0;
    padding: 2rem 7%;
    width: fit-content;
    max-width: 70%;
    border-bottom-left-radius: 5vh;
    z-index: 999;
    filter: drop-shadow(1px 1px 10px rgba(75, 0, 0, 0.25));
}
header nav ul{
    /* justify-content: space-between; */
    flex-wrap: wrap;
    gap: 1rem;
}

/* *****************************
MV
***************************** */
.mv--w .sp-ttl{
    display: none;
}
.mv--w{
    min-width: 100vw;
    height: auto;
    aspect-ratio: 1280 / 824;
    background: url(../image/mv-bg.webp) no-repeat;
    background-size: 100%;
}
.mv--w .mv-img{
    width: 70%;
    margin: 0 auto;
    padding-top: 12%;
    position: relative;
    z-index: 1;
}
.mv--w .mv-img::after{
    content: "";
    background: url(../image/free.svg) no-repeat;
    background-size: 100% 100%;
    display: block;
    width: 20%;
    height: auto;
    aspect-ratio: 217.42 / 247.45;
    position: absolute;
    bottom: 10%;
    right: -7%;
    z-index: -1;
}

/* *****************************
introduction
***************************** */
h1{
    line-height: 140%;
}
.anpanman{
    padding: 7% 5%;
    margin: 10% auto;
    border: var(--red) solid 10px;
    justify-content: space-between;
}
.anpanman .left-cont{
    width: 50%;
}
.anpanman .right-cont{
    width: 45%;
    gap: 2rem;
}
.anpanman .right-cont .cont03{
    gap: 10px;
}
.anpanman .right-cont .cont01 .bg-red{
    width: fit-content;
    margin: 0 auto 1rem auto;
    padding: .5rem 1rem;
    border-radius: 100vh;
}
.anpanman .right-cont .time{
    align-items: start;
    gap: .5rem;
}

/* *****************************
stage
***************************** */
#stage .container{
    padding: 10% 0;
}
.content--w {
    gap: 5rem;
}
.stage--w{
    gap: 50px;
}
.stage--w .ttl-img{
    width: 70%;
    margin: 0 auto;
}
.ttl-img.gogo{
    width: 90% !important;
}
.stage--w .info--w{
    gap: 10px;
}
.stage--w .stage01,
.stage--w .stage02,
.stage--w .stage02 .bg-yellow,
.stage--w .stage06{
    /* padding: 3%; */
    padding: 7% 5%;
}
.stage--w .stage01,
.stage--w .stage02,
.stage--w .stage02 .f-align-c{
    justify-content: space-between;
}
.stage--w .stage01 .left-cont,
.stage--w .stage02 .left-cont{
    width: 50%;
}
.stage--w .stage01 .right-cont,
.stage--w .stage02 .right-cont{
    width: 45%;
    gap: 30px;
    align-items: center;
}
.stage--w .stage01 .right-cont .ttl-img,
.stage--w .stage02 .right-cont .ttl-img{
    width: 70%;
}
.stage--w .stage02 .right-cont .txt--w,
.stage--w .stage01 .right-cont .txt--w{
    gap: 20px;
}
.stage--w .stage02 .bg-yellow{
    width: 80%;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
}
.stage--w .stage02 .bg-yellow .left-cont{
    width: 35%;
}
.stage--w .stage02 .bg-yellow .right-cont{
    width: 60%;
    gap: 20px;
}
.stage--w .stage02 .bg-yellow .right-cont .bg-stage{
    width: fit-content;
    padding: .5rem 1rem;
    border-radius: 100vh;
}
.susumanchu .left-cont img{
    width: 70%;
    margin: 0 auto;
    display: block;
}
.susumanchu .right-cont .ttl-img img{
    width: 65%;
    display: block;
    margin: 0 auto;
}
.stage--w  .quis a{
    text-decoration: none;
    padding: 1rem 2rem;
    gap: 2rem;
    border-radius: 100vh;
}
.stage--w  .quis a::after{
    content: "";
    width: 1.5rem;
    height: 1.5rem;
    background: url(../image/yajirushi-pink.svg) no-repeat;
    background-size: 100% 100%;
}
.stage--w  .quis .right-cont .ttl-img{
    width: 100%;
}
.stage--w .info--w .time2col{
    justify-content: start;
}
.stage--w .info--w .time2col .time{
    gap: .5rem;
}
.x-icon{
    display: flex;
    align-items: center;
}
.x-icon::after{
    content: "";
    min-width: 20px;
    min-height: 20px;
    width: auto;
    height: 1rem;
    aspect-ratio: 19.57 / 20;
    background: url(../image/x-logo.svg) no-repeat;
    display: block;
    background-size: 100% 100%;
}
.youtube-icon{
    display: flex;
    align-items: center;
}
.youtube-icon::after{
    content: "";
    min-height: 20px;
    background: url(../image/youtube-logo.svg) no-repeat;
    height: 20px;
    display: block;
    width: auto;
    aspect-ratio: 28.57 / 20;
}
.insta-icon{
    display: flex;
    align-items: center;
}
.insta-icon::after{
    content: "";
    min-width: 20px;
    min-height: 20px;
    width: auto;
    height: 1rem;
    aspect-ratio: 19.57 / 20;
    background: url("../image/insta_logo.svg") no-repeat;
    display: block;
    background-size: 100% 100%;
}
.sns--w {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* *****************************
schedule
***************************** */
#schedule .bg-blue{
    padding: 10% 0;
}
.schedule--w{
    gap: 30px;
}
.schedule--w .ttl-img{
    width: 90%;
    margin: 0 auto;
}
.table--w{
    padding: 3%;
}
table{
    border-collapse: collapse;
}
table th{
    padding: 1.5rem 2.5rem 1.5rem 0;
    border-bottom: 1px solid #E2E2E2;
}
table td{
    padding: 1.5rem 0;
    border-bottom: 1px solid #E2E2E2;
    width: 100%;
}

/* *****************************
gourmet
***************************** */
.gourmet--w{
    background-image: repeating-linear-gradient(-45deg, #ffed7f, #ffed7f 40px, #FFF682 40px, #FFF682 80px);
    gap: 70px;
    padding: 10% 0;
}
.gourmet--w .gourmet-ttl{
    gap: 15px;
}
.gourmet--w .ttl-img{
    width: 70%;
    margin: 0 auto;
}
.gourmet--w .list--w{
    gap: 30px;
}
.gourmet--w .hukidashi{
    width: fit-content;
    border-radius: 100vh;
    padding: .5rem 1rem;
    margin: 0 auto;
    position: relative;
}
.gourmet--w .hukidashi::after{
    content: "";
    width: 1rem;
    height: 1rem;
    background: var(--orange);
    display: block;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    position: absolute;
    left: 0;
    right: 0;
    bottom: -.9rem;
    margin: 0 auto;
}
.gourmet--w .list-cont{
    padding: 2%;
    gap: 10px;
}
.gourmet--w .list-cont .box{
    width: fit-content;
}
.gourmet--w .list-cont .list{
    flex-wrap: wrap;
    gap: .5rem;
}
.gourmet--w .list-cont .list span:not(:last-child){
    flex-wrap: wrap;
    gap: .5rem;
}
.gourmet--w .list-cont .list span:not(:last-child)::after{
    content: "/";
}
.store-img--w.grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
}
.store-img--w .store{
    gap: 1rem;
}
.store-img--w .img--w{
    width: 100%;
    height: auto;
    aspect-ratio: 311 / 233;
    overflow: hidden;
}
.store-img--w .img--w img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* *****************************
game/lottery
***************************** */
.game--w,
.lottery--w{
    gap: 50px;
    padding: 10% 0;
}
.game--w .h-ttl{
    background: #3EB36E;
}
.game--w .disyey{
    background-image: repeating-linear-gradient(-45deg, #CCE6D3, #CCE6D3 40px, #D7ECDD 40px, #D7ECDD 80px);
    padding: 3%;
}
.lottery--w .lottery{
    background-image: repeating-linear-gradient(-45deg, #FCE8F0, #FCE8F0 40px, #FADCE9 40px, #FADCE9 80px);
    padding: 3%;
}
.lottery--w .lottery a{
    text-decoration: none;
    padding: 1rem 2rem;
    gap: 2rem;
    border-radius: 100vh;
    width: fit-content;
    margin: 0 auto;
}
.lottery--w .lottery a::after{
    content: "";
    width: 1.5rem;
    height: 1.5rem;
    background: url(../image/yajirushi-pink.svg) no-repeat;
    background-size: 100% 100%;
}
.game-cont--w,
.lottery-cont--w{
    justify-content: space-between;
}
.game--w  .left-cont,
.lottery--w  .left-cont{
    width: 50%;
}
.game--w  .right-cont,
.lottery--w  .right-cont{
    width: 45%;
    gap: 30px;
}
.lottery--w  .right-cont .txt--w{
    gap: .5rem;
}
.game-cont--f{
    justify-content: space-between;
}
.image-container {
    display: flex;
    justify-content: space-around; /* スペースを均等に配分 */
}

.image-container img {
    width: 30%; /* 必要に応じてサイズを調整 */
    height: auto;
}
/* *****************************
map
***************************** */
.map--w h2{
    background: #61B965;
}
.map--w{
    gap: 50px;
    padding: 10% 0;
}

/* *****************************
access
***************************** */
.access--w {
    padding: 10% 0 0;
    margin: 10% auto 0;
}
.access-cont--w{
    padding: 5% 0;
}
.access--w h2{
    background: #59C4F1;
}
.access--w .JR .flex{
    gap: 1rem;
    flex-wrap: wrap;
    margin: .5rem 0;
}
.access--w .JR ul li:not(:last-child){
    margin-bottom: .5rem;
}
.access--w .JR ul li .link--w a{
    background: #59C4F1;
    text-decoration: none;
    padding: .5rem 1.5rem;
    gap: 2rem;
    border-radius: 100vh;
    width: fit-content;
    width: fit-content;
}
.access--w .JR ul li .link--w a::after{
    content: "";
    width: 1.5rem;
    height: 1.5rem;
    background: url(../image/yajirushi.svg) no-repeat;
    background-size: 100% 100%;
}
.access-map--w{
    justify-content: space-between;
}
.access-map--w .parking,
.access-map--w .google-map{
    width: 47%;
    height: auto;
    aspect-ratio: 412 / 564;
    border-radius: 1vh;
    overflow: hidden;
}
.access--w .txt-cont--w{
    gap: 1.5rem;
}
.access--w .txt-cont--w .JR,
.access--w .txt-cont--w .location{
    gap: 1rem;
}

/* *****************************
footer
***************************** */
footer a{
    text-decoration: none;
}
.footer--w{
    padding: 2% 0;
    gap: .5rem;
}
.footer--w .logo--w,
.main-sponsorship{
    align-items: center;
}
.footer--w .logo--w{
    flex-wrap: wrap;
}
.main-sponsorship{
    gap: 1.5rem;
    flex-wrap: wrap;
}
.footer--w .contact--w{
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer--w .contact--w a{
    align-items: center;
    gap: 5px;
}
.footer--w .contact--w a::before{
    content: "";
    height: 1.5rem;
    width: auto;
    aspect-ratio: 41 /27;
    background: url(../image/tel-icon.svg) no-repeat;
    display: inline-block;
    background-size: 100% 100%;
}
footer small{
    margin-top: 1rem;
}

/* *****************************

レスポンシブ

***************************** */

/* *****************************
1500px以上
***************************** */
@media screen and (min-width: 1500px){
    .container{
        max-width: 1300px;
    }
}

/* *****************************
1190px〜769px
***************************** */
@media screen and (min-width: 769px) and (max-width: 1190px){
    header nav{
        padding: 2rem 3%;
        max-width: 80%;
    }
    header .flow-logo{
        width: 13%;
    }
}

/* *****************************
960px
***************************** */
@media screen and (max-width: 768px){

    .ipad{
        display: block;
    }
    .pc{
        display: none;
    }

    .container{
        max-width: 90%;
    }

    /* *****************************
    header
    ***************************** */
    header .flow-logo{
        max-width: 14%;
    }

    /* *****************************
    🍔
    ***************************** */
    header .menu-btn{
        width: 12%;
        height: auto;
        display: flex;
        flex-direction: column;
        position: fixed;
        z-index: 9999;
        right: 1%;
        top: 1%;
        justify-content: space-between;
        background: #fff;
        padding: 3%;
        aspect-ratio: 1 / .8;
        border-radius: 1vh;
        filter: drop-shadow(1px 1px 10px rgba(75, 0, 0, 0.25));
    }
    header .menu-btn span{
        width: 100%;
        height: 4px;
        background: var(--txt-color);
        border-radius: 100vh;
        transition: .5s;
    }
    header .humberger{
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        align-items: center;
        gap: 2.5rem;
        transform: translateY(-100vw);
        transition: .5s;
    }
    header .humberger .logo{
        width: 15%;
    }
    header .humberger ul{
        gap: 1.5rem;
    }
    header .humberger ul li{
        font-size: var(--big);
    }
    header .active span:nth-of-type(1){
        transform: rotate(45deg) translate(8px, 8px);
    }
    header .active span:nth-of-type(2){
        opacity: 0;
    }
    header .active span:nth-of-type(3){
        transform: rotate(-45deg) translate(8px, -8px);
    }
    .active.menu-btn{
        filter: none;
    }
    .open .humberger{
        transform: translateY(0);
    }
    body.hidden{
        overflow: hidden;
    }


    /* *****************************
    introduction
    ***************************** */
    h1{
        font-size: 150%;
    }
}

/* *****************************
428px
***************************** */
@media screen and (max-width: 428px){

    .ipad{
        display: none;
    }
    .sp{
        display: block;
    }

    /* *****************************
    header
    ***************************** */
    header .flow-logo{
        max-width: 20%;
        border-bottom-right-radius: 20px;
        border-bottom-left-radius: 20px;
    }
    header .menu-btn{
        width: 16%;
    }
    header .humberger .logo{
        width: 20%;
    }
    header .humberger ul li{
        font-size: var(--mid);
    }

    /* *****************************
    mv
    ***************************** */
    .mv--w{
        background: url(../image/sp-bg.webp) no-repeat;
        background-size: 100% 100%;
        height: 100vh;
        aspect-ratio: unset;
    }
    .mv--w .pc-ttl{
        display: none;
    }
    .mv--w .sp-ttl{
        display: block;
    }
    .mv--w .mv-img{
        width: 100%;
        top: 14%;
    }
    .mv--w .mv-img::after{
        bottom: 7%;
        right: 3%;
        width: 27%;
    }

    /* *****************************
    introduction
    ***************************** */
    h1{
        font-size: 18px;
    }
    .anpanman{
        flex-direction: column;
    }
    .anpanman .left-cont,
    .anpanman .right-cont{
        width: 100%;
    }
    .anpanman .right-cont .cont01 .bg-red{
        font-size: var(--nomal);
    }

    /* *****************************
    stage
    ***************************** */
    .stage--w .ttl-img,
    .stage--w .stage01 .left-cont,
    .stage--w .stage02 .left-cont,
    .stage--w .stage01 .right-cont,
    .stage--w .stage02 .right-cont,
    .stage--w .stage02 .bg-yellow,
    .stage--w .stage02 .bg-yellow .right-cont{
        width: 100%;
    }
    .stage--w .stage01,
    .stage--w .stage02 .f-align-c.cont01,
    .stage--w .stage02 .bg-yellow{
        flex-direction: column;
    }
    .stage--w .stage01 .left-cont,
    .stage--w .stage02 .left-cont{
        order: 1;
    }
    .stage--w .stage02 .bg-yellow .left-cont{
        width: 80%;
    }
    .stage--w .stage02 .bg-yellow{
        gap: 3rem;
    }
    .stage--w .stage02 .bg-yellow .right-cont .bg-stage{
        font-size: var(--nomal);
    }

    /* *****************************
    schedule
    ***************************** */
    .schedule--w .ttl-img{
        width: 100%;
    }
    table th{
        padding: 1.5rem 1rem 1.5rem 0;
    }

    /* *****************************
    gourmet
    ***************************** */
    .gourmet--w .ttl-img{
        width: 100%;
    }
    .store-img--w.grid{
        grid-template-columns: 1fr;
    }
    .gourmet--w .list-cont{
        padding: 5%;
    }

    /* *****************************
    game&lottery
    ***************************** */
    .game--w .disyey,
    .lottery--w .lottery{
        flex-direction: column;
        padding: 7% 5%;
        gap: 3rem;
    }
    .game--w .left-cont,
    .lottery--w .left-cont,
    .game--w .right-cont,
    .lottery--w .right-cont{
        width: 100%;
    }
    .game--w .left-cont,
    .lottery--w .left-cont{
        order: 1;
    }

	
    /* *****************************
    access
    ***************************** */
    .access-map--w{
        flex-direction: column;
        gap: 1.5rem;
    }
    .access-map--w .parking,
    .access-map--w .google-map{
        width: 100%;
    }

}