@charset "UTF-8";
/* 共通の設定 */

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    color: #532800;
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-size: 1.3rem;
    font-style: normal;
    font-weight: 400;
    background-color: rgba(255, 247, 237, 1);
    line-height: 1.5;
}

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

.section__topic {
    color: #C68E59;
    font-size: 2.4rem;
    font-weight: 700;
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

.section__topic::before {
    content: '';
    display: inline-block;
    width: 92px;
    height: 55px;
    background-image: url(../images/dot_yellow.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: -5px;
    right: 20%;
    opacity: 0.9;
    z-index: -10000;
}

.section__subtopic {
    color: #C68E59;
    font-size: 1.6rem;
    margin-top: 10px;
}

.btn {
    border-radius: 50px;
    border: 0.5px solid #5F161D;
    background: #FED3D6;
    padding: 5px 29px 5px 19px;
    display: inline-block;
    position: relative;
    margin-top: 10px;
    transition: 1.5s;
}

.btn::after {
    content: '';
    display: inline-block;
    width: 12.5px;
    height: 3px;
    background-image: url(../images/Vector_1.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 12px;
    bottom: 13px;
}

.btn:hover {
    border-radius: 50px;
    border: 0.5px solid #5F161D;
    background: #FFF7ED;
    padding: 5px 29px 5px 19px;
    position: relative;
    transition: 1.5s;
}

/* スクロールアニメーション */
.fadein {
    transform: translate(0px,10px);
    opacity: 0;
    transition: 2s;
}

.fadein.animated {
    transform: translate(0,0);/* 元の位置に戻る設定 */
    opacity: 1;
}

/* 共通の設定 pc*/
@media screen and (min-width: 769px) {
    .section__topic {
        font-size: 4.8rem;
    }

    .section__subtopic {
        font-size: 2.4rem;
    }

    .section__topic::before {
        width: 200px;
        height: 180px;
        top: -30px;
        right: 50%;
    }

    .btn {
        font-size: 2.4rem;
        border-radius: 50px;
        border: 0.5px solid #5F161D;
        background: #FED3D6;
        padding: 12px 66px 12px 38px;
        position: relative;
        margin-top: 20px;
    }

    .btn::after {
        content: '';
        display: inline-block;
        width: 27px;
        height: 7px;
        background-image: url(../images/Vector_1.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        right: 28px;
        bottom: 26px;
    }

    .btn:hover {
        border-radius: 50px;
        border: 0.5px solid #5F161D;
        background: #FFF7ED;
        padding: 12px 66px 12px 38px;
        position: relative;
    }
}




/* header */
.article__header {
    padding-top: 50px;
}

.header__container {
    padding: 0 0 0 3.5%;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    left: 0;
    right: 0;
    background: #FFF7ED;
    z-index: 10000;
}

.header__topics,
.nav__topics {
    width: 106px;
    height: 41px;
}



/* nav 初期表示 左側に画面を固定する設定*/
.nav {
    background-color: #fff;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

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

.nav__list {
    margin-top: 31px;
}

.nav__item {
    font-size: 2.4rem;
    font-weight: 700;
    margin-top: 20px;
}

.nav__item span {
    display: block;
    font-size: 1.6rem;
    font-weight: 400;
    margin-top: 2px;
}

.nav.active {
    transform: translate(0);
}

/* header pc */
@media screen and (min-width: 769px) {
    .header {
        display: block;
        padding: 10px 40px;
    }

    .header__container {
        max-width: 1280px;
        display: flex;
        margin: 0 auto;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .header__topics {
        position: absolute;
        top: 50%;
        /* ど真ん中にする設定 */
        left: 50%;
        /* ど真ん中にする設定 */
        transform: translate(-50%, -50%);
        display: block;
        z-index: 100000;
    }

    .nav {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: none;
    }

    .nav__item {
        color: #C68E59;
        font-size: 3.2rem;
        margin: 0;
    }

    .nav__item span {
        display: none;
        margin: 0;
    }

    .nav__item:nth-child(2) {
        margin-left: 50px;
    }

    .nav__item:nth-child(3) {
        margin-left: 200px;
    }

    .nav__item:nth-child(4) {
        margin-left: 50px;
    }

    .nav__list {
        position: relative;
        display: flex;
        margin-top: 0px;
    }

    .nav__header {
        display: none;
    }

    .header__btn {
        display: none;
    }
}
/* pc 769px */

/* モーダルウィンドウ sp*/
.modal-open {
    position: fixed;
    background: #FED3D6;
    width: 100%;
    bottom: 0px;
    right: 0px;
    padding: 10px 8px;
    font-size: 1.6rem;
    letter-spacing: 1.5px;
    z-index: 100;
    font-weight: 700;
    color: #5F161D;
}

.modal-open span {
    position: relative;
    padding-left: 19px;
}

.modal-open span::before {
    content: '';
    display: inline-block;
    width: 19px;
    height: 19px;
    background-image:url(../images/bread.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 3px;
    left: 2px;
}

.modal {
    width: 80%;
    border: 1px solid #5F161D;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FED3D6;
    display: none;
    z-index: 10000;
}

.modal::after {
    content: '';
    display: inline-block;
    width: 100%;
    background-image: url(../images/modal_marche.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0px;
    left: 0px;
    aspect-ratio: 50 / 3;
}

.modal-close__wrap {
    position: absolute;
    right: -9px;
    top: -7px;
    z-index: 100;
}

.modal-close {
    background: transparent;
    border-color: transparent;
    padding: 4px;
    margin: 0;
    cursor: pointer;
    width: 18px;
    height: 18px;
    display: block;
    border-radius: 50%;
    background-color: #FFF;
}

.modal-close span {
    position: relative;
    width: 100%;
    height: 1px;
    background: #5F161D;
    display: block;
}

.modal-close span:nth-child(1) {
    transform: rotate(45deg);
}

.modal-close span:nth-child(2) {
    transform: rotate(-45deg);
}

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: grey;
    opacity: .6;
    display: none;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
}

.overlay.open {
    display: block;
}

.modal.open {
    display: block;
}

.modal__subtopic {
    color: #C68E59;
    margin-top: -4px;
    font-size: 1.3rem;
}

.modal__topic {
    color: #C68E59;
    font-size: 2.4rem;
    font-weight: 700;
}

.modal__contents {
    background-color: #FFF;
    margin: 20px 5%;
    border-radius: 10px;
}

.modal__container {
    padding: 10px 5%;
}

.modal__maintxt {
    margin-top: 10px;
}

.modal__subtxt {
    width: fit-content;
    margin: 10px auto;
    border-bottom: 1px dashed #000;
}

.modal__list {
    position: relative;
    display: flex;
    justify-content: space-around;
    margin: 15px auto;
    gap: 20px;
    width: fit-content;
}

.modal__item::before {
    content: '';
    display: inline-block;
    width: 21px;
    height: 19px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0px;
}

.modal__item:nth-child(1)::before {
    background-image: url(../images/01.png);
    left: 0px;
}

.modal__item:nth-child(2)::before {
    background-image: url(../images/02.png);
    right: 93px;
}

.modal__item::after {
    content: '';
    display: inline-block;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    z-index: 10000;
}

.modal__item:nth-child(1)::after {
    background-image: url(../images/bread.svg);
    width: 43px;
    height: 43px;
    transform: translateX(50%);
}

.modal__item:nth-child(2)::after {
    background-image: url(../images/area.svg);
    width: 50px;
    height: 45px;
    transform: translateX(50%);
}

.modal__item {
    display: flex;
    width: fit-content;
}

.modal__txt {
    text-align: left;
    font-size: 1rem;
    width: fit-content;
    line-height: 20px;
    letter-spacing: 1.43px;
    margin-top: 50px;
}

.modal__txt span {
    font-weight: 700;
}

.modal__pricebox {
    display: flex;
    width: fit-content;
    margin: 0 auto;
    justify-content: center;
}

.modal__price {
    padding-left: 2px;
}

.star {
    position: relative;
    width: 0px;
    height: 0px;
    border-bottom: 6.25px solid #5F161D;
    border-right: 9.375px solid transparent;
    border-left: 9.375px solid transparent;
    transform: rotate(-37deg);
    top: 5px;
    left: 0px;
}

.star::before {
    content: "";
    position: absolute;
    top: 0;
    border-bottom: 6.25px solid #5F161D;
    border-right: 9.375px solid transparent;
    border-left: 9.375px solid transparent;
    transform: rotate(-71.5deg);
    left: -9px;
}

.star::after {
    content: "";
    position: absolute;
    top: 0;
    border-bottom: 6.25px solid #5F161D;
    border-right: 9.375px solid transparent;
    border-left: 9.375px solid transparent;
    transform: rotate(71.5deg);
    left: -9px;
}

.modal__comments {
    font-size: 1rem;
    margin-top: 10px;
    text-align: center;
}

.modal__line {
    color: #FF9C49;
    font-size: 1.5rem;
}

.modal__line span {
    font-weight: 700;
}

.modal__lineicon {
    width: 100px;
    height: 54px;
    margin: 0 auto;
}

.modal__icon {
    display: none;
}

.brpc {
    display: none;
}

.btn__reserve {
    background: #FED3D6;
    border-radius: 50px;
    border: 1px solid #5F161D;
    font-size: 1.5rem;
    padding: 5px 29px 5px 19px;
    display: inline-block;
    position: relative;
    margin-top: 5px;
}

.btn__reserve::after {
    content: '';
    display: inline-block;
    width: 12.5px;
    height: 3px;
    background-image: url(../images/Vector_1.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 13px;
    bottom: 14px;
}

/* main sp*/
.brpc {
    display: none;
}

/* main pc */
@media screen and (min-width: 769px) {
    .article__header {
        padding-top: 0px;
    }

    .mainvisual__sp {
        display: none;
    }

    .mainvisual__pc {
        position: relative;
        display: inline-block;
        width: auto;
    }

    .fadeinup {
        position: absolute;
        width: 560px;
        height: 318px;
        top: 384px;
        right: 460px;
    }

    


    /* モーダルウィンドウpc */
    .modal-open {
        color: #5F161D;
        position: fixed;
        border-radius: 100px;
        border: 3px solid #FFF;
        background: #FF9C49;
        box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.17);
        writing-mode: vertical-rl;
        top: 140px;
        right: 22px;
        padding: 20px 6px;
        font-size: 1.2vw;
        letter-spacing: 1.5px;
        width: auto;
        height: fit-content;
    }

    .modal-open span {
        font-size: 1.4vw;
        font-weight: 700;
        color: #FFF;
    }

    .modal-open span::before {
        display: none;
    }

    .modal-open:hover {
        color: #5F161D;
        position: fixed;
        border-radius: 100px;
        border: 3px solid #FFF;
        background: #FFB474;
        box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.17);
        writing-mode: vertical-rl;
        top: 140px;
        right: 22px;
        padding: 20px 6px;
        font-size: 1.2vw;
        letter-spacing: 1.5px;
        width: auto;
        height: fit-content;
        transition: 1.5s;
    }

    .brpc {
        display: inline;
    }

    .modal {
        position: fixed;
        width: 45%;
        top: 43%;
        transform: translate(-50%, -37%);
    }

    .modal::after {
        content: '';
        display: inline-block;
        background-image: url(../images/modal_marche_pc.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        top: 0px;
        left: 0px;
        aspect-ratio: 117 / 5;
    }

    .modal-close {
        padding: 8px;
        width: 40px;
        height: 40px;
    }

    .modal-close__wrap {
        right: -19px;
        top: -15px;
    }

    .modal__contents {
        padding: 20px 0px;
        height: auto;
    }

    .modal__maintxt {
        font-size: 1.38vw;
        line-height: 33px;
        /* 200% */
        letter-spacing: 2.2px;
        margin-top: 10px;
    }

    .modal__subtxt {
        width: fit-content;
        font-size: 1.11vw;
        line-height: 30px;
        border-bottom: 1px dashed #532800;
        margin: 0 auto;
    }

    .modal__list {
        display: flex;
        width: fit-content;
        gap: 50px;
    }

    .modal__item {
        width: fit-content;
    }


    .modal__item::before {
        content: '';
        display: inline-block;
        width: 36px;
        height: 36px;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        top: 0px;
    }

    .modal__item:nth-child(1)::before {
        left: 0px;
    }

    .modal__item:nth-child(2)::before {
        left: 50%;
    }

    .modal__item:nth-child(1)::after {
        width: 45px;
        height: 45px;
        transform: translate(50px, 43px)
    }

    .modal__item:nth-child(2)::after {
        width: 45px;
        height: 45px;
        transform: translate(50px, 43px)
    }

    .modal__icon {
        display: block;
    }


    .modal__icon img {
        width: 100px;
        height: 84px;
    }

    .modal__txt {
        font-size: 1.1vw;
        line-height: 25px;
        /* 156.25% */
        letter-spacing: 1.76px;
        margin-top: 100px;
    }

    .modal__txt span {
        font-size: 1.38vw;
    }

    .star {
        top: 12px;
        left: 0%;
    }

    .modal__price {
        font-size: 1.31vw;
    }

    .spbr {
        display: none;
    }

    .modal__commentsbox {
        margin-top: 15px;
    }

    .modal__comments {
        font-size: 1.11vw;
    }

    .brsp {
        display: none;
    }

    .modal__line {
        font-size: 2.4rem;
    }

    .modal__lineicon {
        width: 177px;
    }

    .modal__topic {
        font-size: 4rem;
    }

    .modal__subtopic {
        font-size: 2.4rem;
        margin-top: -4px;
    }

    .btn__reserve {
        border-radius: 50px;
        border: 1px solid #5F161D;
        width: 195px;
        height: 50px;
        font-size: 2rem;
        padding: 10px 42px 10px 19px;
        display: inline-block;
        position: relative;
        margin-top: 10px;
        transition: 1.5s;
    }

    .btn__reserve::after {
        content: '';
        display: inline-block;
        width: 24px;
        height: 24px;
        background-image: url(../images/Vector_1.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        right: 16px;
        bottom: 11px;
    }

    .btn__reserve:hover {
        border-radius: 50px;
        border: 1px solid #5F161D;
        background: #FFF7ED;
        padding: 10px 42px 10px 19px;
        position: relative;
        transition: 1.5s;
    }
}

/* about */
.section--about {
    padding: 30px 5.3% 0px;
}

.mainvisual img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.about__logo {
    width: 146px;
    height: 57px;
    margin-top: 20px;
}

.about__maintxt {
    text-align: center;
    font-size: 1.5rem;
    line-height: 24px;
    letter-spacing: 1.65px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.about__txt {
    font-size: 1.3rem;
    line-height: 24px;
    letter-spacing: 1.95px;
    text-align: justify;
    max-width: 330px;
    margin: 20px auto 10px;
}

.section--aboutwe {
    padding: 30px 5.3% 80px;
    overflow: hidden;
}

.we__contents {
    margin-top: 20px;
    position: relative;
}


@keyframes shake-wide {

    0%,
    100% {
        transform: rotate(4deg);
    }

    50% {
        transform: rotate(-4deg);
    }
}



.we__contents__img img {
    border-radius: 10px;
    margin-top: 10px;
    position: relative;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.we__contents__img {
    position: relative;
    margin: 0 auto;
    max-width: 320px;
}

.we__contents__img::before {
    content: '';
    display: inline-block;
    width: 114px;
    height: 191px;
    background-image: url(../images/aboutus_img_1.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: -25px;
    top: -81px;
    z-index: 10000;
    animation: shake-wide 2s infinite ease-in-out;
}


.we__contents__img::after{
    content: '';
    display: inline-block;
    width: 92px;
    height: 191px;
    background-image: url(../images/aboutus_img_2.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: -24px;
    bottom: -91px;
    animation: shake-wide 3s infinite ease-in-out;
}

.we__list {
    margin: 0 auto;
}

.we__txtbox {
    margin-top: 10px;
}


.we__topic {
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 1.3px;
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

.we__topic::before {
    content: '';
    display: inline-block;
    width: 21px;
    height: 21px;
    background-image: url(../images/bread.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: -24px;
}

.we__txt {
    line-height: 24px;
    letter-spacing: 1.3px;
    margin: 20px auto 0px;
    text-align: justify;
    max-width: 330px;
}




/* about we pc */
@media screen and (min-width: 769px) {
    .section--about {
        padding: 100px 20%;
    }

    .mainvisual img {
        width: 100%;
        height: 398px;
        object-fit: cover;
    }

    .about__logo {
        width: 242px;
        height: 93px;
        margin-top: 80px;
        position: relative;
    }

    .maincaption {
        position: relative;
    }

    .maincaption::after {
        content: '';
        display: inline-block;
        width: 100px;
        height: 156px;
        background-image: url(../images/about_img_1.png);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        left: 0px;
        top: -48px;
        animation: shake-wide 2s infinite ease-in-out;
    }

    .about__maintxt {
        font-size: 2.4rem;
        line-height: 58px;
        letter-spacing: 2.64px;
        margin: 50px auto 50px;
    }

    .about__txt {
        max-width: 1000px;
        font-size: 2rem;
        line-height: 58px;
        letter-spacing: 2.2px;
        text-align: center;
    }

    .we__contents__img {
        max-width: 550px;
        margin-top: 80px;
    }

    .we__contents__img::before {
        width: 156px;
        height: 191px;
        
    }

    .we__contents__img::after {
        width: 140px;
        height: 63px;
        right: -37px;
        bottom: -27px;
    }

    .we__txtbox {
        font-size: 2rem;
    }

    .we__txt {
        max-width: 550px;
        margin-bottom: 50px;
        line-height: 40px;
        letter-spacing: 2px;
    }

    .we__list {
        margin: 20px auto;
        width: fit-content;
    }

    .we__item {
        display: flex;
        justify-content: flex-start;
    }
    
    .we__topic {
        margin: 0;
    }
}

    @media screen and (min-width: 1100px) {
        .section--aboutwe {
            padding: 50px 8% 300px;
        }
    
        .we__contents {
            display: flex;
            margin-top: 80px;
            justify-content: center;
            gap: 30px;
        }

        .we__contents__img {
            margin-top: 0px;
        }

        .we__contents__img::before {
            width: 211px;
            height: 191px;
            
        }
    
        .we__contents__img::after {
            width: 174px;
            height: 63px;
            right: -46px;
            bottom: -22px;
        }
    
        .we__contents__img img {
            margin-top: 0px;
        }
    
        .we__item {
            display: flex;
            font-size: 2rem;
            line-height: 40px;
            letter-spacing: 2px;
            align-items: center;
        }
    
        .we__item p {
            margin-left: 10px;
        }
    
        .we__topic {
            margin: 0px 0px 0px 27px;
        }
    
        .we__topic::before {
            content: '';
            display: inline-block;
            width: 21px;
            height: 21px;
            background-image: url(../images/bread.svg);
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            position: absolute;
            top: 6px;
            left: -24px;
        }
    
        .we__txt {
            max-width: 656px;
            font-size: 2rem;
            line-height: 40px;
            /* 200% */
            letter-spacing: 2px;
            margin-top: 20px;
            text-align: left;
        }

        .we__list {
            width: auto;
            margin-top: 0px;
        }

        .we__txtbox {
            margin-top: 0px;
        }
    }

    


/* insta */
.section--instagram {
    padding: 10px 0px;
    background: #FFD7B6;
    position: relative;
}

.instagram__wave1 {
    position: absolute;
    top: 0px;
    transform: translate(-50%, -99%);
    width: 100%;
}

.instgram__wave2 {
    position: absolute;
    bottom: 0px;
    transform: translate(-50%, 99%);
    width: 100%;
}

.instagram__container {
    padding: 0px 11.7%;
}

.section__topic__white {
    color: #FFF;
    font-size: 2.4rem;
    font-weight: 700;
}

.section__subtopic__white {
    color: #FFF;
    font-size: 1.6rem;
    margin-top: 10px;
}

.instagram__txt {
    color: #532800;
    font-size: 1.2rem;
    margin-top: 10px;
}

.instagram__img img {
    width: 80%;
    height: auto;
    margin-top: 10px;
}

.btn--instagram {
    position: relative;
    padding: 5px 29px 5px 29px;
}

.btn--instagram::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url(../images/insta.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 7px;
    left: 12px;
}

.instagram__sp {
    display: block;
    margin: 10px auto;
    width: 100%;
    height: 26vw;
}

.instagram__pc {
    display: none;
}


@media screen and (min-width: 769px) {
    .section--instagram {
        padding: 50px 0px 10px;
    }

    .instagram__container {
        padding: 0px 10%;
    }

    .section__topic__white {
        font-size: 4.8rem;
        font-weight: 700;
        letter-spacing: 4.8px;
    }

    .section__subtopic__white {
        font-size: 2.4rem;
        letter-spacing: 2.4px;
    }

    .instagram__txt {
        font-size: 2rem;
        margin-top: 50px;
        margin-bottom: 10px;
    }

    .instagram__img img {
        width: 100%;
        height: auto;
        margin-top: 20px;
    }

    .btn--instagram {
        padding: 12px 66px 12px 66px;
    }

    .btn--instagram::before {
        content: '';
        display: inline-block;
        width: 25px;
        height: 25px;
        background-image: url(../images/insta.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        bottom: 15px;
        left: 32px;
    }

    .btn--instagram:hover {
        padding: 12px 66px 12px 66px;
    }

    .instagram__sp {
        display: none;
    }
    
    .instagram__pc {
        display: block;
        margin: 0 auto;
        aspect-ratio: 765 / 510;
        width: 100%;
    }
}


/* access */
.section--access {
    padding: 80px 4%;
}

.maparea img {
    margin-top: 10px;
    max-width: 375px;
    width: 100%;
}

.btn--access {
    display: block;
    width: fit-content;
    margin: 0 auto;
    margin-top: 20px;
}

.access__txt {
    text-align: left;
    position: relative;
    width: fit-content;
    margin: 20px auto;
}

.access__txt::before {
    content: '';
    display: inline-block;
    width: 100px;
    height: 75px;
    background-image: url(../images/tamurashop.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -18px;
    right: 0px;
}

.address {
    position: relative;
    margin-left: 17px;
}

.address::before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    background-image: url(../images/map.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: -20px;
    top: 3px;
}

.access__item {
    position: relative;
    margin-left: 17px;
    margin-top: 5px;
}

.access__item::before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: -20px;
    top: 3px;
}

.access__item:nth-child(2)::before {
    background-image: url(../images/train.svg);
    width: 18px;
    height: 18px;
    left: -22px;
}

.access__item:nth-child(3)::before {
    background-image: url(../images/shop.svg);
}

.access__item:nth-child(4)::before {
    background-image: url(../images/time.svg);
}

.access__item:nth-child(5)::before {
    background-image: url(../images/car.svg);
}

/* access pc */
@media screen and (min-width: 769px) {
    .section--access {
        padding: 345px 0px 235px;
    }

    .access__contents {
        display: flex;
        justify-content: center;
        gap: 60px;
        margin-top: 80px;
    }

    .maparea img {
        max-width: 566px;
        height: auto;
    }

    .address {
        font-size: 2rem;
        margin: 0px 0px 20px;
    }

    .address::before {
        content: '';
        display: inline-block;
        width: 24px;
        height: 24px;
        background-image: url(../images/map.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        left: -29px;
        top: 3px;
    }

    .access__item {
        font-size: 2rem;
        margin: 10px 0 20px;
    }

    .access__item::before {
        content: '';
        display: inline-block;
        width: 24px;
        height: 24px;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        left: -29px;
        top: 3px;
    }

    .access__item:nth-child(2)::before {
        background-image: url(../images/train.svg);
        width: 28px;
        height: 28px;
        left: -30px;
    }

    .access__txt {
        padding: 0px;
        margin: 0px;
    }

    .access__txt::before {
        width: 19vw;
        height: 167px;
    }
}

.page__container {
    display: none;
}

@media screen and (min-width: 769px) {
    .page__container {
        position: fixed;
        bottom: 0px;
        right: 21px;
        z-index: 100;
        transition: 0.5s;
        display: block;
    }

    .pagetop__title {
        color: #C26A3B;
        font-size: 2rem;
        font-weight: 700;
        text-align: center;
        line-height: 2;
    }

    .page__container img {
        width: 65px;
        height: 65px;
    }    

    .page__container:hover {
        transform: scale(1.1);
    }

}

/* footer */
.footer {
    background: #F7EAC9;
    padding: 20px 10% 50px;
    position: relative;
}

.footer::after {
    content: '';
    display: inline-block;
    width: 100%;
    height: 100%;
    background-image: url(../images/footer_wave.svg);
    background-size: contain;
    background-repeat: repeat;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: -1;
    transform: translateY(-30px);
}

.footer__topic img {
    width: 125px;
    height: 49px;
}

.footer__list {
    margin-top: 11px;
}

.footer__item {
    font-size: 1.6rem;
    margin-top: 10px;
}

.footeraccess__txt {
    font-size: 1.1rem;
    margin-top: 11px;
}

.footer__address {
    width: fit-content;
    margin: 0 auto;
}

.footer__open,
.footer__time,
.footer__car {
    display: none;
}

.sns {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 11px;
}

.sns__title {
    display: none;
}

.instagram__icon {
    width: 17px;
    height: 17px;
}

.line__img {
    width: 17px;
    height: 17px;
}

/* footer pc */
@media screen and (min-width: 769px) {
    .footer {
        padding: 20px 7.5%;
    }

    .footer::after {
        transform: translateY(-50px);
    }

    .footer__group {
        display: flex;
        justify-content: space-between;
    }

    .footer__list {
        display: flex;
        gap: 55px;
    }

    .footer__item {
        font-size: 2rem;
    }

    .footer__contents {
        display: flex;
        justify-content: space-between;
    }

    .footeraccess__txt {
        text-align: left;
        margin-top: 20px;
    }

    .footer__open,
    .footer__time,
    .footer__car {
        display: block;
    }

    .sns {
        align-items: center;
    }

    .sns__title {
        display: block;
        margin-bottom: 10px;
    }

    .instagram__icon {
        width: 56px;
        height: 56px;
    }

    .line__img {
        width: 56px;
        height: 56px;
    }

    .footeraccess__txt address {
        font-size: 1.4rem;
        margin-left: 0px;
    }

    .footeraccess__txt p {
        font-size: 1.4rem;
    }

    .footeraccess__txt address::before {
        content: '';
        display: inline-block;
        width: 14px;
        height: 14px;
        background-image: url(../images/map.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        margin-right: 3px;
    }

    .footer__train::before {
        content: '';
        display: inline-block;
        width: 15px;
        height: 15px;
        background-image: url(../images/train.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        margin-right: 3px;
    }

    .footer__open::before {
        content: '';
        display: inline-block;
        width: 14px;
        height: 14px;
        background-image: url(../images/shop.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        margin-right: 3px;
    }

    .footer__time::before {
        content: '';
        display: inline-block;
        width: 10px;
        height: 10px;
        background-image: url(../images/time.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        margin-right: 3px;
    }

    .footer__car::before {
        content: '';
        display: inline-block;
        width: 14px;
        height: 14px;
        background-image: url(../images/car.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        margin-right: 3px;
    }

    .footer__train,
    .footer__open,
    .footer__time,
    .footer__car {
        margin-top: 5px;
    }

    .copy {
        font-size: 1.5rem;
    }
}

@media screen and  (min-width: 1200px) {
    .footer::after {
        transform: translateY(-90px);
    }
}
