@charset "UTF-8";
/* =========================================
common
============================================ */
:root{
    --primary--white: #FFF;
    --primary-black: #311303;
    --primary-lightbrown: #E9E6E1;
    --primary-brown: #A9A092;
    --primary--darkbrown: #696050;
    --contentWidth: 89.3%;
    --contentPadding: 5.3%;
}

html{
    font-size: 62.5%;
}

body{
    font-family:
        "Zen Kaku Gothic New",
        sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 1.7;
    color: var(--primary-black, #311303);
    background-color: var(--primary-lightbrown, #E9E6E1);
}

img{
    max-width: 100%;
    height: auto;
}

.section__topic{
    color: var(--primary-black, #311303);
    font-family: "Cormorant Garamond";
    font-size: 3.2rem;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.2em;
}

.section__topic.white{
    color: var(--primary--white, #FFF);
}

.section__topic.black{
    color: var(--primary-black, #311303);
}

/* =========================================
body
============================================ */
.pc__ticker-left{
    display: none;
}

.pc__ticker-right{
    display: none;
}

.pc__group{
    display: none;
}

/* body pc */
@media screen and (min-width: 544px) {
    body{
        background-image: url(../images/pc-backimg.jpg);
        display: block;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
        background-attachment: fixed;
    }
}/* 544px */

@media screen and (min-width: 550px){
    .pc__ticker-left{
        display: block;
        background-color: var(--primary--white, #FFF);
        opacity: 0.5;
        border-right: 1px solid #696050;
        width: 50px;

        position: fixed;
        left: 0;
        height: 100vh;
        animation-direction: reverse;
    }

    .pc__ticker-left-img{
        padding-bottom: 40px;
        padding-left: 5px;
        animation: slide 10s infinite linear 0.2s both;
    }

    @keyframes slide{
        0%{ transform:translateY(-100%);}
        100%{ transform:translateX(0); }    
    }

    .pc__ticker-right{
        display: block;
        background-color: var(--primary--white, #FFF);
        opacity: 0.5;
        border-left: 1px solid #696050;
        width: 50px;

        position: fixed;
        right: 0;
        height: 100vh;
        animation-direction: reverse;
    }

    .pc__ticker-right-img{
        padding-bottom: 40px;
        padding-left: 5px;
        animation: slide-2 10s infinite linear 0.2s both; 
    }

    @keyframes slide-2{
        0%{ transform:translateY(-100%);}
        100%{ transform:translateX(0); }     
    }
}/* 550px */

@media screen and (min-width: 1025px) {
    .pc__group{
        position: fixed;
        display: block;

        top: 12%;
        /* margin-left: -22px; */
        right: calc(50% + 180px);
    }

    .pc__mainTopic{
        color: var(--primary--darkbrown, #696050);
        font-family: "Zen Old Mincho";
        font-size: 2.4rem;
        font-weight: 400;
        line-height: 1;
        letter-spacing: 0.1em;
        margin-bottom: 15px;
        margin-left: 55px;
    }

    .pc__logo{
        width: 280px;
    }

    .pc__navItem{
        color: var(--primary-brown, #A9A092);
        font-family: "Cormorant Garamond";
        font-size: 2rem;
        font-weight: 600;
        line-height: 1;
        letter-spacing: 0.05em;
        margin-top: 25px;

        transition: color 0.4s ease;
    }

    .pc__navItem:first-of-type{
        margin-top: 50px;
    }

    .pc__navItem:hover{
        color: var(--primary--darkbrown, #696050);
    }

    .pc__reserve{
        color: var(--primary--white, #FFF);
        font-family: "Cormorant Garamond";
        font-size: 1.8rem;
        font-weight: 600;
        line-height: 1;
        letter-spacing: 0.08em;

        margin-top: 50px;
    }

    .pc__btn{
        margin-top: 10px;
    }

    .pc__btn li{
        width: 250px;
        height: 55px;
        border-radius: 50px;
        background: #696050;

        display: flex;
        align-items: center;
        justify-content: center;

        transition: 0.4s;
    }

    .pc__btn li:last-of-type{
        margin-top: 10px;
    }

    .pc__btn li:hover{
        opacity: 0.6;
    }

    .reserve__txt{
        color: var(--primary--white, #FFF);
        text-align: center;
        font-size: 1.4rem;
        line-height: normal;
        letter-spacing: 0.1em;
    }

    .pc{
        width: 1045px;
        margin: 0 auto;
        overflow: hidden;
        position: relative;
    }
}/* pc 1025px */

/* =========================================
container
============================================ */
.container{
    max-width: 543px;
    margin: 0 auto;
    position: relative;
}

/* container pc */
@media screen and (min-width: 1025px) {
    .container{
        margin-right: 100px;
    }
}/* pc 1025px */

/* =========================================
header
============================================ */
.header{
    padding: 0 20px;
    height: 81px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;

    width: 100%;

    position: fixed;
    top: 0;
    right: 50%;
    transform: translate(50%);

    max-width: 543px;
}

.header__topic a,
.nav__topic{
    display: flex;
    align-items: center;
}

/* .nav初期表示 */
.nav{
    background-color: var(--primary-lightbrown, #E9E6E1);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav__header{
    padding: 0 20px;
    height: 81px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__group{
    margin-top: 100px;
    margin-left: 50px;
}

.item__name{
    font-family: "Cormorant Garamond";
    font-size: 1.6rem;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.1em;
    margin-top: 25px;
}

.item__name:first-of-type{
    margin-top: 0;
}

.nav__sns{
    display: flex;
    gap: 0 15px;
    margin-top: 50px;
}

.icon{
    width: 30px;
}

/* .nav.active表示 */
.nav.active{
    transform: translateX(0);
}

/* header pc */
@media screen and (min-width: 544px) {
    .nav{
        transform: translateX(-200%);
        transition: transform 0.8s;
    }
}

@media screen and (min-width: 1025px) {
    .header{
        display: none;
    }
}/* pc 544px 1025px */

/* =========================================
main
============================================ */
/* .main{
    display: block;
    max-width: 375px;
    margin: 0 auto;
} */


/* =========================================
footer
============================================ */
.footer{
    background-color: var(--primary-brown, #A9A092);
    padding: 30px 0 65px 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer__sns{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 15px;
    margin-top: 20px;
}

.topBtn{
    margin-top: 40px;
}

.footer__btn{
    width: 60px;
}

.copy{
    text-align: center;
    font-size: 1rem;
    line-height: normal;
}

/* =========================================
fixed-btn
============================================ */
.fixed-btn{
    width: 100%;
    max-width: 543px;
    position: fixed;
    bottom: 0;
    z-index: 1;
}

.fixed-btn__ttl{
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 25px;

    opacity: 0.8;
    background: #696050;
}

.ttl__txt{
    color: var(--primary--white, #FFF);
    font-family: "Cormorant Garamond";
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.1em;
}

.fixed-btn__list{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;

    background: #FFF;
}

.fixed-btn__list li{
    width: 50%;
}

.fixed-btn__list li:last-child{
    border-left: 1px solid #000000;
}

.list__txt{
    color: var(--primary--darkbrown, #696050);
    font-family: "Zen Kaku Gothic New";
    font-size: 1.2rem;
    line-height: normal;
    letter-spacing: 0.1em;
    text-align: center;
}

@media screen and (min-width: 1025px) {
    .fixed-btn{
        display: none;
    }
}/* pc 1025px */