@charset "UTF-8";
/* =================================
common
====================================*/

:root {
    --primary-white: #f1f1f1;
    --primary-black: #303030;
    --primary-brown: #5B4C41;
    --primary-orange: #d16417;
    --primary-gray: #d0c9b7;
    --primary-yellow: #EDEBDB;
    --primary-darkYellow: #d1c086;
    --contentPadding: 9%;
    --maxWidth: 630px;
}

html {
    font-size: 62.5%;
}

body {
    font-family: "Zen Kurenaido", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.4rem;
    color: var(--primary-black, #1C140E);
    background-color: var(--primary-white, #ffffff);
    line-height: 1.5;
    
}

.wrap {
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: block;
    padding: 5px 25px;
    text-align: center;
    border-radius: 10px;
    margin: 0 auto;
    font-size: 1.8rem;
    transition: 0.5s;
}

.btn:hover {
    transition: 0.5s;
}

.btn__reserve {
    background-color: var(--primary-orange);
    color: var(--primary-white);
}


.btn__reserve:hover {
    background-color: var(--primary-white);
    color: var(--primary-orange);
    
}

.section {
    width: 100%;
    padding: 0 var(--contentPadding);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section__topic {
    display: inline-block;
    width: 100%;
    max-width: var(--maxWidth);
    font-size: 2.4rem;
    border-bottom: 1px solid var(--primary-black);
    line-height: 2;
    text-align: center;
    margin: 60px auto 0;
}

.main {
    position: relative;
}

.pageTitle {
    position: relative;
    height: 100px;
    overflow: hidden;
}

.topicPhoto {
    position: absolute;
    z-index: 0;
    top: 0;
    width: 100%;
    height: 100px;
   
    transform: scaleX(105%);
    object-fit: cover;
    filter: blur(2px);
}

.pageTopic {
    width: 250px;
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: var(--primary-white);
    text-align: center;
    font-family: "Zen Antique";
    font-size: 2.4rem;
}

.pcBr {
    display: none;
}

/* pc 769px- */
@media screen and (min-width: 769px) {

    .body {
        font-size: 1.6rem;
    }

    .pageTitle {
        height: 150px;
    }

    .topicPhoto {
        height: 150px;
    }

    .pageTopic {
        width: 400px;
        font-size: 3.2rem;
    }

    .section__topic {
        font-size: 3.2rem;
        border-bottom: 1.5px solid var(--primary-black);
        line-height: 2.5;
        margin: 100px auto 0;
    }

    .pcBr {
        display: block;
    }

    .btn__reserve {
        padding: 7px 30px;
        font-size: 2.4rem;
    }
}
/* pc 960px- */
@media screen and (min-width: 960px) {

    .spBr {
        display: none;
    }
}
/* =================================
loading
====================================*/
#loading {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    text-align: center;
    transition: 3s;
}


@keyframes load {
    from {opacity: 0;}
    to {opacity: 100;}
}

#loading img {
    display: block;
    margin: 0 auto;
    width: 70px;
    object-fit: contain;
    animation: load 2s ease;
    transition: 2s;
}

#loading p {
    font-family: "Zen Maru Gothic";
    font-size: 12px;
    color: var(--primary-orange);
    letter-spacing: 3px;
    margin-top: 15px;
    transform: translateX(5px);
    animation: load 2s ease;
    transition: 2s;
}


#loading.loaded {
    opacity: 0;
    z-index: -100;
}

#loading img.loaded,
#loading p.loaded{
    opacity: 0;
}

@media screen and (min-width: 769px) {
    #loading img {
        width: 120px;
    }
    
    #loading p {
        font-size: 18px;
        margin-top: 20px;
        transform: translateX(8px);
    }
}

/* =================================
header
====================================*/

.header {
    width: 100%;
    height: 50px;
    position: fixed;
    background-color: var(--primary-darkYellow);
    left: 0;
    top: 0;
    z-index: 99;
}

.headerContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7.5px 5.3% ;
}

.header__logo,
.nav__logo {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    overflow: hidden;
}

.header__topic img,
.nav__topic img{
    display: inline-block;
    height: 35px;
}

.header__topic img:last-of-type {
    display: none;
}

/* .nav初期表示 */
.nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(2px);
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: 0.4s;
}

.nav__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7.5px 5.3% ;
    background-color: var(--primary-darkYellow);
}

.nav__btn {
    display: block;
    width: 25px;
    height: 25px; 
}

.nav.active {
    transform: translateX(0);
    transition: 0.4s;
}

.header__btn {
    display: block;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.nav__list {
    margin: 50px 15%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nav__item {
    display: inline-block;
    border-bottom: 2px solid var(--primary-orange);
    font-family: "Zen Maru Gothic", serif;
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--primary-black);
    padding-left: 5px;
}

.nav__item a {
    display: inline-block;
    width: 100%;
    letter-spacing: 2px;
}

.sns {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 0 15%;
    display: flex;
    justify-content: space-evenly;
    align-content: center;
}

.instaBtn img{
    display: inline-block;
    width: 35px;
    height: 35px;
}

.tel {
    font-size: 1.8rem;
    color: var(--primary-orange);
    border: 1px solid var(--primary-orange);
    border-radius: 10px;
}

.telNumber {
    display: inline-block;
    padding: 5px 10px;
}

.pcInst {
    display: none;
}

/* pc 960px- */
@media screen and (min-width: 960px) {
    .header {
        height: 60px;
        padding: 0 var(--contentPadding);
        text-align: center;
        display: flex;
        justify-content: space-between;
    }

    .headerContainer {
        width: 175px;
        padding: 0;
    }

    .header__logo {
        display: none;
    }

    .header__topic img:first-of-type {
        display: none;
    }

    .header__topic img:last-of-type {
        display: inline-block;
        transform: translateY(-3px);
    }

    .nav {
        background: transparent;
        width: 70%;
        min-width: 445px;
        height: auto;
        padding: 0;
        position: static;
        transform: translateX(0);
        backdrop-filter: none;
        display: flex;
        align-items: center;
        vertical-align: middle;
    }

    .nav__header {
        display: none;
    }

    .header__btn {
        display: none;
    }

    .nav__list {
        width: 100%;
        margin: 0;
        flex-direction: row;
        justify-content: flex-end;
        gap: 8px;
    }

    .nav__item {
        font-size: 1.4rem;
        border-bottom: none;
        padding: 0;
        line-height: 25px;
        white-space: nowrap
    }

    .snsBlock {
        display: none;
    }

    .pcInst {
        display: inline-block;
    }

    .pcInst img {
        width: 25px;
        height: 25px;
        object-fit: contain;
        opacity: 0.8;
    }

    .header li a {
        transition: 0.5s;
        position: relative;
    }

    .header li a::after {
        display: block;
        content: '';
        position: absolute;
        width: 0;
        height: 1px;
        background-color: var(--primary-brown);
        transition: 0.5s;
        transform: translateY(5px);
    }

    .header li a:hover {
        color: var(--primary-white);
        position: relative;
    }

    .header li a:hover::after {
        width: 100%;
        height: 1px;
        background-color: var(--primary-white);
        
    }

}


/* =================================
footer
====================================*/

.fixFooter {
    display: flex;
    justify-content: center;
    gap: 15px;
    width: 100%;
    height: 80px;
    position: fixed;
    bottom: 0;
    padding: 20px 0;
    z-index: 50;
    /* background-color: var(--primary-darkYellow); */
}

.fixFooter .btn {
    margin: 0;
}

.fixFooter .tel {
    background-color: var(--primary-white);
}


.footer__bg {
    position: fixed;
    bottom: -70px;
    height: 300px;
    object-fit: cover;
    z-index: 30;
    left: 50%;
    transform: translateX(-50%);
}

.footer {
    background-color: var(--primary-darkYellow);
    height: 670px;
    text-align: center;
    border-top-left-radius: 1000px 200px;
    border-top-right-radius: 1000px 200px;
}

.footer__list {
    display: flex;
    flex-direction: column;
    
    padding-top: 100px;
}

.footer__item {
    font-size: 1.6rem;
}

.footer__item a {
    display: inline-block;
    width: 200px;
    height: 30px;
}

.footer__item img {
    width: 25px;
    object-fit: contain;
    margin-right: 5px;
}

.footer__item:last-of-type a {
    display: inline-block;
    font-size: 1.8rem;
}

.footer__logo {
    width: 300px;
    object-fit: contain;
    margin-top: 30px;
}

.footer__prace {
    margin-top: 20px;
    letter-spacing: 1.6px;
}

.copy {
    font-size: 1.2rem;
    margin-top: 25px;
}


/* pc 960px */
@media screen and (min-width: 960px) {
    .fixFooter {
        gap: 100px;
    }

    .fixFooter .btn__reserve {
        padding: 5px 25px;
        font-size: 1.8rem;
    }

    .footer {
        height: auto;
        padding-bottom: 200px;
        border-top-left-radius: 1000px 100px;
        border-top-right-radius: 1000px 100px;
    }
    
    .footer__list {
        position: relative;
        display: flex;
        height: 200px;
        flex-direction: row;
        justify-content: center;
        gap: 25px;
        padding-top: 120px;
    }
    
    .footer__item {
        font-size: 1.6rem;
    }

    .footer__item:last-of-type {
        position: absolute;
        bottom: 0;
    }
    
    .footer__item a {
        width: auto;
        height: auto;
    }
    
    
    .footer__item:last-of-type a {
        font-size: 2.2rem;
    }
    
    .footer__logo {
        width: 500px;
        margin-top: 70px;
    }
    
    .footer__prace {
        margin-top: 70px;
        font-size: 2rem;
        letter-spacing: 2.4px;
    }
    
    .copy {
        font-size: 1.8rem;
        margin-top: 40px;
    }

    .footer li a {
        transition: 0.5s;
        position: relative;
    }
    
    .footer li a::after {
        display: block;
        content: '';
        position: absolute;
        width: 0;
        height: 1px;
        background-color: var(--primary-brown);
        transition: 0.5s;
        transform: translateY(5px);
    }
    
    .footer li a:hover {
        color: var(--primary-white);
        position: relative;
    }
    
    .footer li a:hover::after {
        width: 100%;
        height: 1px;
        background-color: var(--primary-white);
        
    }
}