@charset "utf-8";

/* ========== 下層ページ共通 ========== */
#page_title {
    width: 100%;
    height: 500px;
    background: url(../img/mv.jpg) no-repeat center / cover;
    background-attachment: fixed;
    margin-bottom: 60px;
}

.page_title {
    font-size: 2.6rem;
    text-align: center;
    background-color: var(--point_color);
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    border-top: 4px dashed var(--text_color);
    border-bottom: 4px dashed var(--text_color);
    width: 80%;
    margin: 0 auto;
    transform: translateY(400px);
}

/* ========== パーク案内ページ ========== */
#concept p {
    font-weight: bold;
    font-size: 1.8rem;
    line-height: 2;
    margin-bottom: 1em;
}

#concept p:last-child {
    margin-bottom: 0;
}

#map img {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    width: 800px;
    margin: 0 auto;
}

.park_image img {
    width: 776px;
    margin-bottom: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transform: translateY(30px);
    opacity: 0;
    transition: 1s ease-out;
}

.park_image img.active {
    transform: translateX(0);
    opacity: 1;
}

.park_text {
    max-width: 800px;
    margin-bottom: 24px;
}

.park_text p {
    margin-bottom: 1em;
}

/* ========== ご利用のルールページ ========== */

#rule h4 {
    color: var(--point_color);
    margin-bottom: 1em;
}

#rule div {
    background-color: var(--main_color);
    padding: 24px 30px;
    margin-bottom: 60px;
    max-width: 1000px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#rule ul {
    margin-left: 10px;
}

#rule .daypass ul,
#rule .yearpass ul {
    margin-bottom: 1em;
}

#rule .daypass li::before,
#rule .yearpass li::before {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    background-color: var(--point_color);
    transform: translateY(-2px);
    border-radius: 50%;
    margin-right: 8px;
}

#rule .ng i {
    color: var(--point_color);
    margin-right: 8px;
    font-weight: bold;
}

#rule .rule i {
    color: var(--point_color);
    margin-right: 8px;
}

#rule .fade {
    transform: translateY(30px);
    opacity: 0;
    transition: 1s ease-out;
}

#rule .fade.active {
    transform: translateX(0);
    opacity: 1;
}

/* ========== お知らせ一覧ページ ========== */
#news_page .news_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

#news_page .news_item {
    width: 300px;
    height: 300px;
    background-color: var(--main_color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    font-size: 1.5rem;
    margin: 0 auto;
    transform: translateY(30px);
    opacity: 0;
    transition: 1s ease-out;
}

#news_page .news_item.active {
    transform: translateX(0);
    opacity: 1;
}

#news_page .news_item .news_image {
    width: 100%;
    height: 150px;
    background: url(../img/mv6.jpg)no-repeat top / cover;
    margin-bottom: 20px;
    position: relative;
}

#news_page .news_item .news_image.tokotoko {
    background: url(../img/tokotoko.jpg)no-repeat top / cover;
}

#news_page .news_item .news_image.camera {
    background: url(../img/camera.jpg)no-repeat top / cover;
}

#news_page .news_item .news_image.newss {
    background: url(../img/news.jpg)no-repeat top / cover;
}

#news_page .news_item p {
    width: 90%;
    margin: 0 auto;
    padding: 16px;
    border-top: 1px solid var(--text_color);
    border-bottom: 1px solid var(--text_color);
}

#news_page .news_item span {
    font-size: 1.4rem;
    background-color: var(--point_color);
    padding-right: 10px;
    padding-left: 10px;
    margin-right: 24px;
}

#news_page .news_item a:hover {
    opacity: 0.5;
    color: var(--text_color);
}

@media screen and (min-width:960px) {
    .under .wrapper {
        margin-bottom: 100px;
    }

    #page_title {
        margin-bottom: 160px;
    }

    /* ========== パーク案内ページ ========== */

    #concept {
        margin-top: -100vh;
    }

    #concept p {
        font-size: 2rem;
    }

    .park_image {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .park_image img {
        width: 33%;
    }

    /* ========== ご利用のルールページ ========== */
    #rule {
        margin-top: -100vh;
    }

    #rule div {
        padding: 32px 80px;
        margin-bottom: 100px;
    }

    #rule .yearpass,
    #rule .rule {
        margin-left: auto;
    }

    /* ========== お知らせ一覧ページ ========== */
    #news_page {
        margin-top: -100vh;
    }
}