@charset "utf-8";

:root {
    --base_color: #EEF2E6;
    --text_color: #563e28;
    --main_color: #BFD99E;
    --point_color: #E7B10A;
}

html {
    font-size: 62.5%;
}

body {
    background-color: var(--base_color);
    color: var(--text_color);
    font-size: 1.5rem;
    line-height: 1.7;
    font-family: 'Noto Sans JP', sans-serif;
}

iframe {
    max-width: 100%;
}

ul {
    list-style-type: none;
    padding: 0;
}

a {
    text-decoration: none;
    color: var(--text_color);
}

a:hover {
    opacity: 0.5;
}

.wrapper {
    padding-right: 5%;
    padding-left: 5%;
    margin: 0 auto;
    margin-bottom: 60px;
}

.sec_title {
    font-size: 2.6rem;
    text-align: center;
    padding-bottom: 5px;
    padding-top: 5px;
    border-bottom: 4px dashed var(--text_color);
    width: 60%;
    margin: 0 auto 40px;
    background: url(../img/icon.png) no-repeat right bottom 8px/30px;
}

.btn {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 280px;
    padding: 1em 3em;
    border: 2px solid var(--point_color);
    position: relative;
    transition: 0.4s;
}

.btn::after {
    content: "";
    position: absolute;
    top: 50%;
    bottom: 0;
    right: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 6px;
    height: 6px;
    border-top: 2px solid var(--text_color);
    border-right: 2px solid var(--text_color);
    transform: translateY(-50%) rotate(45deg);
    transition: 0.4s;
}

.btn:hover {
    border: 2px solid var(--text_color);
    color: var(--text_color);
    background-color: var(--point_color);
    opacity: 1;
}

.btn:hover::after {
    right: 1.5em;
}

h3 {
    color: var(--point_color);
    font-size: 2.6rem;
    margin-bottom: 8px;
}


/* ========== header ========== */
header {
    background-color: var(--base_color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
}

header .site_title {
    width: 450px;
    margin-right: 40px;
}

header .hum_btn {
    position: fixed;
    top: 30px;
    right: 20px;
    width: 30px;
    height: 20px;
    z-index: 10;
}

header .hum_btn span {
    display: block;
    height: 3px;
    width: 30px;
    background-color: var(--text_color);
    transition: 0.4s;
}

header .hum_btn span:nth-of-type(2) {
    transform: translateY(7px);
}

header .hum_btn span:nth-of-type(3) {
    transform: translateY(14px);
}

header .hum_btn span:nth-of-type(3)::after {
    content: "Menu";
    position: absolute;
    top: 5px;
    left: 3px;
    color: var(--text_color);
    font-size: 1rem;
}

.on header .hum_btn span:nth-of-type(2) {
    display: none;
}

.on header .hum_btn span:first-of-type {
    transform: translateY(9px) rotate(45deg);
}

.on header .hum_btn span:nth-of-type(3) {
    transform: translateY(7px) rotate(-45deg);
}

.on header .hum_btn span:nth-of-type(3)::after {
    content: "Close";
    position: absolute;
    top: 7px;
    left: -11px;
    color: var(--text_color);
    font-size: 0.8rem;
    transform: rotate(45deg);
}


/* ========== nav ========== */
#nav {
    background-color: var(--main_color);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    padding: 30px 20%;
    transition: 0.6s;
    transform: translateX(-100%);
    opacity: 0;
    z-index: 1;
}

.on #nav {
    transform: translateX(0);
    opacity: 1;
}

#nav img {
    margin-bottom: 30px;
    width: 200px;
}

#nav ul li {
    line-height: 2;
    font-size: 2rem;
    font-weight: bold;
}

#nav .gnav>li {
    margin-bottom: 25px;
}

#nav ul li a {
    display: block;
}

#nav ul li a:hover {
    opacity: 1;
    color: var(--point_color);
}

#nav .subnav li {
    font-size: 1.8rem;
}

/* ========== mv ========== */
#mv {
    margin-bottom: 60px;
}

/* ========== パーク案内 ========== */
#park_guide figure {
    margin-bottom: 60px;
    max-width: 776px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#park_guide figure:last-of-type {
    margin-bottom: 40px;
}

#park_guide figcaption {
    background-color: var(--main_color);
    padding: 24px 30px;
}

#park_guide .fade {
    overflow: hidden;
}

#park_guide .fade .left {
    transform: translateX(50%);
    opacity: 0;
    transition: 1s ease-out;
}

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

#park_guide .fade .right {
    transform: translateX(-50%);
    opacity: 0;
    transition: 1s ease-out;
}

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

/* ========== お知らせ ========== */
#news .news {
    max-width: 800px;
    border-bottom: 1px solid var(--text_color);
    margin: 0 auto 40px;
}

#news .news p {
    padding: 16px 24px;
    border-top: 1px solid var(--text_color);
}

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

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

/* ========== 料金案内 ========== */
#price i {
    font-size: 2rem;
}

#price .price .list {
    max-width: 800px;
    background-color: var(--main_color);
    text-align: center;
    padding: 24px 10px;
    margin-bottom: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transform: translateY(30px);
    opacity: 0;
    transition: 1s ease-out;
    margin-bottom: 40px;
}

#price .price .list.active {
    transform: translateY(0);
    opacity: 1;
}

#price .price .list:last-of-type,
#price .shampoo_price .list:last-of-type {
    margin-bottom: 24px;
}

#price .price_text {
    margin-bottom: 24px;
}

#price h4 {
    color: var(--point_color);
}

#price .path {
    font-weight: bold;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--text_color);
}

#price .yen {
    margin-top: 20px;
}

#price .price {
    margin-bottom: 40px;
}

/* ========== アクセス ========== */
#access iframe {
    margin-bottom: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#access .access_text p:first-of-type,
#access .access_text p:nth-of-type(3),
#access .access_text p:nth-of-type(5) {
    margin-bottom: 24px;
}

/* ========== TOPへ戻る ========== */
.page_top {
    width: 40px;
    height: 40px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    background: url(../img/icon.png) no-repeat center/cover;
    cursor: pointer;
    transition: 0.4s;
    z-index: 10;
}

.page_top:hover {
    opacity: 0.5;
}

/* ========== footer ========== */

footer {
    background-color: var(--main_color);
    margin: 160px auto 0;
    padding: 20px 5% 10px;
}

footer img {
    width: 300px;
    margin: 0 auto;
    margin-bottom: 20px;
}

footer .footer_text p:first-of-type,
footer .footer_text p:nth-of-type(3) {
    margin-bottom: 20px;
}

footer .footer_text {
    margin-bottom: 20px;
    font-size: 1.4rem;
}

footer small {
    display: block;
    text-align: center;
}

@media screen and (min-width:960px) {
    body {
        font-size: 1.6rem;
    }

    .wrapper {
        margin-left: 280px;
        margin-bottom: 160px;
    }

    .sec_title {
        border-top: 4px dashed var(--text_color);
        margin-bottom: 60px;
    }

    .sp {
        display: none;
    }

    /* ========== header ========== */

    header .hum_btn {
        display: none;
    }

    /* ========== mv ========== */
    #mv {
        margin-bottom: 160px;
    }

    /* ========== nav ========== */
    #nav {
        width: 280px;
        position: sticky;
        padding: 30px 40px;
        transform: translateX(0);
        opacity: 1;
    }

    /* ========== パーク案内 ========== */
    #park_guide {
        margin-top: -100vh;
    }

    #park_guide .right {
        margin-left: auto;
    }

    #park_guide figure:last-of-type {
        margin-bottom: 60px;
    }

    /* ========== お知らせ ========== */
    #news .news p {
        padding: 24px 40px;
    }

    /* ========== 料金案内 ========== */
    #price .price {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: start;
    }

    #price .price .list {
        width: 48%;
    }

    #price .kasikiri {
        margin-bottom: 60px;
    }

    #price .shampoo_price .list {
        margin-bottom: 0;
    }

    /* ========== アクセス ========== */
    #access iframe {
        width: 100%;
        height: 100%;
        aspect-ratio: 2/1;
    }

    /* ========== TOPへ戻る ========== */
    .page_top {
        width: 50px;
        height: 50px;
        bottom: 40px;
        right: 40px;
    }

    /* ========== footer ========== */

    footer {
        margin: 240px auto 0;
        padding: 40px 5% 15px;
    }

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

    footer img {
        width: 450px;
        margin-bottom: 50px;
    }

    .footer_inner a {
        width: 50%;
    }

    footer .footer_text {
        width: 50%;
        margin-bottom: 50px;
        margin-left: 50px;
    }

}