@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
==========================================*/

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

.concept_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) {
    .concept_page_title {
        height: 35vw;
    }
}

@media screen and (min-width: 650px) {
    .concept_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;
    }

    .concept_page_title {
        height: 20vw;
    }

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

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

.price_inner {
    padding: 16px 48px;
    margin-inline: auto;
    max-width: 600px;
}

.price_text p {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.06rem;
    line-height: 2.5rem;
    padding-bottom: 2em;
    text-align: right;
}

.price__inr {
    width: 100%;
    margin-inline: auto;
    padding-inline: 1em;
}

.price_group_title {
    font-weight: 600;
    font-size: 1.4rem;
}

.price__note {
    font-size: 1rem;
    line-height: 1.3rem;
    letter-spacing: 0.03rem;
    color: var(--gray);
    margin: 1rem 0 0;
    width: 100%;
    text-align: right;
    word-break: keep-all;
}



.price__note.is-style-left {
    text-align: left;
    margin: 2rem 0 0
}

.price__note a {
    text-decoration: underline
}

.price__group>dt,
.price__li {
    border-bottom: 1px solid #ccc;
}

.price__group>dd {
    font-size: 1.3rem;
    padding: 0 0 0 5rem;

}

.price__group .price__group .li {
    padding: 0 0 0 5rem;
}

.price__value-raw {
    text-align: right;
    margin: 0;
}

.price__li {
    display: flex;
    align-items: flex-end
}

.price__li>dt {
    flex: 1 1 auto
}

.price__li>dt a {
    display: inline-flex;
    align-items: center
}

.price__li>dt a:after {
    content: '';
    width: 0.6em;
    height: 0.6em;
    margin: 0 0 0 0.5em;
}

.price__li>dd {
    flex: 1 0 6rem
}

.price__group>dt,
.price__li {
    border-bottom: 1px solid #ccc;
    padding: 0 0 0.3rem
}

.price__spacer {
    height: 1rem
}


.news_text {
    margin: 6em 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;
}

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

}