@charset "UTF-8";



/* スライダー ---------------------------------------------------------------------------*/
    /* スライダーが読み込み時に一瞬縦並びになるのを防ぐため　ここから*/
    .slider{
        opacity: 0;
        transition: opacity .25s ease;
    }
    .slider.slick-initialized{
        opacity: 1;
    }
    /* スライダーが読み込み時に一瞬縦並びになるのを防ぐため　ここまで*/
.slider img{
    margin-top: 100px;
    margin-bottom: 5px;
    width: calc(100vw/2);
}
/* スライダーの画像枚数が3枚以下の時、画像が中央に来るようにする設定 */
.slide1{
    margin-left: auto;
    margin-right: auto;
}
/* スライダーの画像枚数が3枚以上の時、半分ずらして1枚目の画像が中央に来るようにする設定 */
.slide2{
    position: relative;
    left: -50%; 
}
/* ------------------------------------------------------------------------------------*/

/* コンテナ */
.container{
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
}

/* メイン */
main{
    width: 70%;
}

/* イベント */
.event{
    background-color: white;
    padding: 0 40px 40px 40px;
    border-top: solid 6px #FF9D00;
    margin-bottom: 50px;
}

.info_goldenweek {
    margin: 10px 0 -15px 15px;

}

/* イベント情報　タイトル */
.event_titel_area {
    display: flex;
    flex-wrap: wrap;
    border-bottom: #666 solid 1px;
    padding: 10px 0;
}
.event-title{
    display: flex;
    font-family: 'Zen Maru Gothic', serif;
    margin-top: 35px;
    margin-right: 35px;
    padding-bottom: 20px;
}
.event-title img{
    margin-right: 10px;
    transform: rotate(-30deg);
}
h2{
    font-size: 1.5rem;
}
.event-title p{
    font-size: 0.75rem;
    padding-left: 10px;
}


/* イベント情報　内容 */
.event-in{
    margin: 50px 0;
}
h3{
    font-size: 1.25rem;
}
.event-in-flex{
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.over{
    display: inline-block;
    background-color: #FF9696;
    font-size: 1rem;
    font-weight: normal;
    padding: 0 5px;
    margin-bottom: 10px;
}

/* イベント情報　スマホだけ改行(PCは表示しない設定) */
.br{
    display: none;
}

/* 詳しく見るボタン */

.event_btns {
    display: block;
}
.btn_bottom {
    margin-bottom: 15px;
}
.btn{
    height: 30px;
    width: 130px;
    border: solid 1px #000000;
    background-color: white;
}
.btn a{
    line-height: 30px;
    padding-left: 15px;
    font-size: 0.75rem;
}

/* 詳しく見るボタンのくの字矢印　設定 */
.btn a span{
    position: relative;  /* hover時に動かすため */
    display: inline-block;
    vertical-align: text-bottom;
    color: #000000;
    line-height: 1;
    width: 8px;
    height: 8px;
    border: 1px solid #000000;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-45%) rotate(45deg);
}

/* 詳しく見るボタン ホバー時*/
.btn:hover{
    background-color: #FF9D00;
    transition: all 0.3s;
}


/* ↓ ============== parking　ボタン ============== */
.btn2 {
    border: solid 1px #000000;
    background-color: white;
    display: inline-block;
    padding: 5px 10px;
    margin: 10px 0;
}
.btn2 a{
    justify-content: center;
    font-size: 0.9rem;
}


/* 詳しく見るボタン ホバー時*/
.btn2:hover{
    background-color: #FF9D00;
    transition: all 0.3s;
}
/* ↑ ============== DRUM TAO 追加ボタン用　終了後削除 ============== */



/* チケットを買うボタン */
.buyticket{
    background-color: #FF9D00;
    width: 230px;
    border-radius: 50px;
    text-align: center;
    margin: 0 auto;
}
.buyticket img{
    height: 15px;
    padding-right: 10px;
}
.buyticket a{
    padding: 15px 0;
    /*display: inline-flex;*/ /* チケットアイコンを上下中央にするため */
    align-items: center; /* チケットアイコンを上下中央にするため */
}
.buyticket_icon {
    margin-top: 3px;
}
/* チケットを買うボタン ホバー時*/
.buyticket:hover{
    background-color: #5EBA4E;
    transition: all 0.3s;
}
.buyticket:hover img{
    transform: rotate(-20deg);
    transition: all 0.3s;
}

/* リンクアイコン */
.icon{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.icon a{
    width: 32%;
    height: 130px;
    background-color: white;
    border: solid 2px #FF9D00;
    border-radius: 5px;
    text-align: center;
    padding-top: 10px;
    margin-bottom: 20px;
    margin-right: 10px;
}
.icon img{
    display: block;
    margin: 0 auto;
    padding-top: 10px;
}
.down img{
    padding-top: 20px;
}

/* リンクアイコン ホバー時*/
.icon a:hover{
    border: solid 2px #5EBA4E;
    background-color: #5EBA4E;
    transition: all 0.3s;
}

/* アサイド */
aside{
    width: 25%;
    background-color: white;
    padding: 0 2%;
    border-top: solid 5px #5EBA4E;
}

/* 年間イベント　タイトル */
.year-event{
    display: flex;
    align-items: center;
    padding: 30px 0;
    border-bottom: solid 1px #707070;
}
h4{
    font-family: 'Zen Maru Gothic', serif;
    font-size: 1.125rem;
}
.year-event img{
    margin-right: 10px;
}

/* 年間イベント　内容 */
.year-event-in{
    font-size: 0.75rem;
}
h5{
    font-size: 1rem;
}
.year-event-text{
    padding: 20px 0;
    border-bottom: solid 1px #CECECE;
}
.year-event-text:last-child{
    border-bottom: none;
}
.close{
    font-weight: 500d;
    color: white;
    padding: 2px;
    background-color: #707070;
    margin-top: 10px;
    border-radius: 25px;
    text-align: center;
}
.close-red{
    font-weight: 500d;
    color: black;
    padding: 2px;
    background-color: #FF9696;
    margin-top: 10px;
    border-radius: 25px;
    text-align: center;
}


.complimentary_bus{
    font-size: 16px;
    border-bottom: solid 1px #707070;
}
.complimentary_bus:hover {
    border-bottom: solid 1px #FF9D00;
}
.parking_lot{
    display: inline-block;
    margin-top: 10px;
    font-size: 16px;
    border-bottom: solid 1px #707070;
}
.parking_lot:hover {
    border-bottom: solid 1px #FF9D00;
}



@media screen and (max-width: 767px){
    
    /* スライダー */
    .slider img{
        left: 0;
        width: 100vw;
        margin-top: 80px;
    }

    /* コンテナ */
    .container{
        flex-direction: column;
        margin-top: 60px;
    }

    /* メイン */
    main{
        width: 100%;
    }

    /* イベント */
    .event{
        padding: 0 20px 40px 20px;
    }

    /* イベント情報　タイトル */
    h2{
        font-size: 1.375rem;
    }
/*  ◆◆◆◆◆ 5/12以降削除◆◆◆◆◆ */
    .pv {
        width: 85vw;
    }

    /* イベント情報　内容 */
    .event{
        margin-bottom: 80px;
    }v
    .event-in{
        margin: 50px 0;
    }
    h3{
        font-size: 1.125rem;
    }
    .event-in-flex{
        flex-direction: column;
        align-items: flex-start;
    }

    /* イベント情報　スマホだけ改行 */
    .br{
        display: block;
    }

    /* 詳しく見るボタン */
    .btn{
        margin-top: 15px;
    }

    /* リンクアイコン */
    .icon{
        flex-direction: column;
        margin-bottom: 80px;
        align-items: center;
    }
    .icon a{
        width: 70%;
        margin-bottom: 15px;
    }

    /* アサイド */
    aside{
        width: 100%;
    }

    /* 年間イベント　内容 */
    .year-event-in{
        text-align: center;
    }

    /* フッター */
/*    footer{
        background-color: #5A4A3F;
        padding: 80px 0 20px 0;
        margin-top: 100px;
        color: white;
        text-align: center;
        font-size: 0.875rem;
    }

    /* フッター　メニュー */
/*    .footer-menu{
        flex-direction: column;
    }
    .footer-menu li{
        padding-right: 0px;
        padding-bottom: 30px;
    }
    .footer-menu li:last-child{
        padding-bottom: 0;
    }

    /* フッター　社名 */
/*    .footer-title{
        font-size: 1rem;
    }
    .name{
        font-size: 1.25rem;
    }
*/    

}