@charset "UTF-8";

:root {
    --main-font: "Shippori Mincho", serif;
    --sub-font: "Josefin Slab", serif;
    --bg-color: #e4e1dd;
    --bg-color2: #d1d5cd;
    --black: #1D1D1D;
    --white: #FFFFFF;
    --gray: #676865;
}

/*==================
#loading
==================*/

#splash {
    position: fixed;
    width: 100%;
    height: 100%;
    background: var(--bg-color2);
    z-index: 9999999;
    text-align: center;
    color: #fff;
}

#splash-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*========= 画面遷移のためのCSS ===============*/

/*画面遷移アニメーション*/
.splashbg {
    display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg {
    display: block;
    content: "";
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    transform: scaleY(0);
    background-color: var(--bg-color);
    animation-name: PageAnime;
    animation-duration: 1.2s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

@keyframes PageAnime {
    0% {
        transform-origin: top;
        transform: scaleY(0);
    }

    50% {
        transform-origin: top;
        transform: scaleY(1);
    }

    50.001% {
        transform-origin: bottom;
    }

    100% {
        transform-origin: bottom;
        transform: scaleY(0);
    }
}

#container {
    opacity: 0;
}

body.appear #container {
    animation-name: PageAnimeAppear;
    animation-duration: 1s;
    animation-delay: 0.8s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes PageAnimeAppear {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/*==========================================
    title
==========================================*/

.access_page_title {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 55vw;
    margin-inline: auto;
}

.access_page_title_inner {
    padding-inline: 30px;
    position: relative;
    height: 15vw;
}

video {
    display: block;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}


.page_title {
    color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 50px;
    position: absolute;
    top: 10em;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    margin: auto;
    text-align: center;

}

.page_title h2 {
    font-size: 2.3rem;
    letter-spacing: 0.5rem;
    padding-bottom: 8px;
}

.page_title span {
    font-size: 1.2rem;
    letter-spacing: 0.3rem;

}

@media screen and (min-width: 450px) {
    .access_page_title {
        height: 35vw;
    }
}

@media screen and (min-width: 650px) {
    .access_page_title {
        height: 30vw;
    }

    .page_title h2 {
        font-size: 3rem;
    }

    .page_title span {
        font-size: 2rem;
    }
}

@media screen and (min-width: 960px) {
    .page_title {
        top: 5em;
    }

    .access_page_title {
        height: 20vw;
    }

    .page_title h2 {
        font-size: 3.2rem;
    }
}

/*==========================================
    access
==========================================*/
.access {
    width: 100%;
    height: auto;
    margin-inline: auto;
    background-color: var(--bg-color);
    padding: 10em 0 3em;
}

.access_inner {
    width: 100%;
    margin-inline: auto;
    padding-inline: 3em;
}

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

    /*=====min-width:450px=====*/
    .access_inner {
        padding-inline: 5em;
    }
}

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

    /*=====min-width:768px=====*/
    .access_inner {
        padding-inline: 8em;
    }
}

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

    /*=====min-width:950px=====*/
    .access_inner {
        padding-inline: 10em;
    }
}

.chizu {
    margin-inline: auto;
    width: 100%;
    aspect-ratio: 16/9;
}

.chizu iframe {
    width: 100%;
    height: 100%;
}

.chizu_w {
    max-width: 650px;
}


.chizu_text {
    aspect-ratio: 16/9;
    margin-inline: auto;
    padding: 16px 16px 48px;
    max-width: 650px;
    font-size: 1.4rem;
    letter-spacing: 0.03rem;
    line-height: 2.3;
}

.chizu_text h3 {
    font-size: 1.5rem;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--gray);
}

.chizu_text_01 {
    margin: 32px 0 48px;
}

.tenpo_info {
    width: 100%;
}

.tenpo {
    padding: 0 16px;
    width: 100%;
    max-width: 650px;
    margin-inline: auto;
    font-size: 1.4rem;
    letter-spacing: 0.03rem;
    line-height: 2.3;
    margin-bottom: 6em;
}

.tenpo_table {
    margin-bottom: 4rem;
}

table {
    width: 100%;
    max-width: 650px;
    margin-inline: auto;
    border-top: 1px solid var(--bg-color2);
    border-bottom: 1px solid var(--bg-color2);
    border-collapse: collapse;
    border-spacing: 0;
}

table a {
    text-decoration: underline;
    text-decoration-color: #b8c3ae;
    text-decoration-style: dotted;
    text-decoration-thickness: 2px;
    text-decoration-skip-ink: none;
    text-underline-offset: 5px;
}

table td {
    padding: 9px 16px;
    border-bottom: 1px solid var(--bg-color2);
}

table th {
    white-space: nowrap;
    background-color: var(--bg-color2);
    border-bottom: 1px solid var(--bg-color);
    width: 20%;
    padding: 8px 16px;
}


.news_text {
    margin: 3em 0 1.5em;
    text-align: center;
    font-size: 1.3rem;
    letter-spacing: 0.02rem;
    line-height: 3.2rem;
}

.news_text img {
    margin-inline: auto;
    width: 20px;
    padding-bottom: 0.6em;
}





/*==========================================
    Separator
==========================================*/

.separator {
    width: 100vw;
    height: auto;

}


.separator_01 {
    background-color: var(--bg-color2);
    width: 100%;
    height: 35vw;
    transform: translateY(-1px)
}

@media screen and (min-width:684px) {
    .separator_01 {
        height: 20vw;
    }

}