
@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__subtopic {
    color: #C68E59;
    font-size: 1.6rem;
    margin-top: 10px;
}

.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;
}


.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;
}

@media screen and (min-width: 769px) {
    .section__topic {
        font-size: 4.8rem;
    }

    .section__topic::before {
        width: 200px;
        height: 180px;
        top: -30px;
        right: 50%;
    }
    
    .section__subtopic {
        font-size: 2.4rem;
    }

}




/* 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%);
        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 */

/* main */
.mainvisual__pc {
    display: none;
}

.mainvisual__sp {
    position: relative;
}

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


.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;
    }

    .mainvisual img {
        width: 100%;
        height: 398px;
    }


    .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;
    }


    .brpc {
        display: inline;
    }
}


@keyframes shake-vertical {
    0% , 100%{
        transform:translateY(10px);
    }
    50%{
        transform: translateY(-10px);
    }
}

.section--reserve {
    padding: 50px 50px 80px;
    background-image: url(../images/reserve_sp.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.reserve__topic {
    color: #C68E59;
    font-size: 2.4rem;
    font-weight: 700;
  }
  
.reserve__subtopic {
    color: #C68E59;
    margin-top: -4px;
    font-size: 1.3rem;
}



.reserve__contents {
    background-color: #FFF;
    padding: 20px 5%;
    border-radius: 10px;
    opacity: 0.9;
  }

  .reserve__container {
    padding: 10px 5%;
  }

  .reserve__maintxt {
    margin-top: 10px;
  }

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

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

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

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

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

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

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

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


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

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

.reserve__txt span {
    font-weight: 700;
  }

  .modal__pricebox {
    display: flex;
    justify-content: center;
}

.modal__price {
    width: fit-content;
    margin: 0 auto;
    padding-left: 10px;
}

.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;
}

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

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

.reserve__line span {
    font-weight: 700;
  }

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

.reserve__icon {
    display: none;
}

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

.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;
}

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


/* reserve pc */
@media screen and (min-width: 769px) {
    .section--reserve {
        padding: 50px 20% 300px;
        background-image: url(../images/reserve_pc.jpg);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .reserve__topic {
        font-size: 4.8rem;
    }

    .reserve__subtopic {
        font-size: 2.4rem;
    }
       

    .reserve__contents {
        padding: 40px 0px;
        position: relative;
        z-index: 99999; 
    }

    .reserve__maintxt {
        font-size: 2rem;
        line-height: 33px; /* 200% */
        letter-spacing: 2.2px;
        margin-top: 50px;
    }

    .reserve__subtxt {
        width: fit-content;
        font-size: 1.6rem;
        line-height: 40px;
        border-bottom: 1px dashed #532800;
        margin: 0 auto;
    }

    .reserve__list {
        display: flex;
        width: fit-content;
        gap: 50px;
        margin: 50px auto;
    }

    .reserve__item {
        width: fit-content;
    }

    .reserve__item:nth-child(1) {
        width: 286.58px;
        justify-content: center;
    }

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

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

    .reserve__item:nth-child(2)::before {
        left: 59%;
    }

    .reserve__item:nth-child(1)::after {
        width: 95px;
        height: 95px;
        transform: translateX(10px);
    }
    
    .reserve__item:nth-child(2)::after {
        width: 99px;
        height: 99px;
        left: 62%;
    }
    
    .reserve__icon {
        display: block;
      }
    

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

    .reserve__txt {
        text-align: center;
        font-size: 1.1vw;
        line-height: 25px; /* 156.25% */
        letter-spacing: 1.76px;
        padding: 0px 0%;
        margin-top: 100px;
    }

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

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

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

    .reserve__price {
        font-size: 1.9rem;
        margin: 0 auto;
        width: fit-content;
    }

    .spbr {
        display: none;
    }

    .reserve__commentsbox {
        margin-top: 40px;
        gap: 20px;
    }

    .reserve__comments {
        font-size: 1.6rem;
    }

    .brsp {
        display: none;
    }

    .reserve__line {
        font-size: 2.4rem;
    }

    .reserve__lineicon {
        width: 177px;
    }

    .btn__reserve {
        border-radius: 50px;
        border: 1px solid #5F161D; 
        font-size: 2rem;
        padding: 10px 42px 10px 19px;
        display: inline-block;
        position: relative;
        margin-top: 10px;
        z-index: 100000; 
    }

    .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: 13px;
    }

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

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

.instagram__wave1 {
    position: absolute;
    bottom: 0;
    transform: translate(-50%, 1px);
    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 0 210px;
    }

    .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;
}


/* pagetop */
@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 span {
    display: block;
    font-size: 1rem;
}

.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;
        left: -17px
    }

   .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);
    }
}


