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

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

 /*ローディング  */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000000;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeOut 1.5s 2.5s forwards;
  }
  
  @keyframes fadeOut {
    0% {
      opacity: 1;
    }
  
    100% {
      opacity: 0;
      visibility: hidden;
    }
  }
  
  .loading__logo {
    opacity: 0;
    animation: logo_fade 2.5s 0.5s forwards;
    width: 175px;
  }
  
  @keyframes logo_fade {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
  
    60% {
      opacity: 1;
      transform: translateY(0);
      transform: rotate(2deg);
      transform: rotate(-2deg);
    }
  
    100% {
      opacity: 0;
    }
  }

/* スクロールアニメーション */
.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__subtopic {
        font-size: 2.4rem;
    }

    .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;
        display: block;
        width: fit-content;
        margin: 40px auto 0px;
    }
    
    .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 */
.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%);
    }

    .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 img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.article__header {
    position: relative;
    padding-top: 50px;
}

.fadeinup {
    width: 252px;
    height: 131px;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%,-50%);
    animation: rotation 3s ease 2s 1 normal forwards;
}

@keyframes rotation {
    0% {
      transform:translate(-50%,-40%);
      opacity: 0;
      top: 60%;
      left: 50%;
    }

    60% {
        transform:translate(-50%,-50%);
        opacity: 0.6;
        top: 60%;
        left: 50%;
      }
  
    100% {
      transform:translate(-50%,-50%);
      opacity: 0.8;
    }
  }


  /* モーダルウィンドウ */
.modal-open { 
    color: #fff;
    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: block;
    width: 100%;
    background-image:url(../images/modal_marche.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 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 5px;
    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(72%);
}

.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; /* 153.846% */
    letter-spacing: 1.43px;
    margin-top: 50px;
}

.modal__txt span {
    font-weight: 700;
}

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

.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__comments span {
    position: relative;
    width: 10%;
    height: 1px;
    background: #532800;
    display: block;
}

.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: 0.5px solid #5F161D; 
    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 pc */
@media screen and (min-width: 769px){
    .article__header {
        padding-top: 0px;
    }

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

    .fadeinup {
        width: 57.5vw;
        height: auto;
    }

    .modal-open {
        display: inline-block;
        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;
    }

    .brpc {
        display: inline;
    }

    .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;
    }
    
    .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;
        justify-content: center;
        margin-bottom: 15px;
    }

    .modal__item {
        width: fit-content;
    }

    .modal__item::before {
        content: '';
        display: inline-block;
        width: 2.5vw;
        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: 50px;
        height: 50px;
        transform: translate(50px, 43px)
    }
    
    .modal__item:nth-child(2)::after {
        width: 55px;
        height: 55px;
        transform: translate(50px, 43px)
    }
    
    .modal__icon {
        display: block;
      }
    

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

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

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

    .modal__price {
        font-size: 1.31vw;
    }

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

    .modal__commentsbox {
        justify-content: space-evenly;
        align-items: center;
        margin-top: 15px;
    }

    .modal__comments {
        font-size: 1.11vw;
    }

    .brsp {
        display: none;
    }

    .modal__line {
        font-size:1.66vw;
    }

    .modal__lineicon {
        width: 177px;
    }

    .modal__topic {
        font-size: 2.77vw;
    }

    .modal__subtopic {
        font-size: 1.66vw;
        margin-top: -4px;
    }


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

    .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% 50px;
    position: relative;
    overflow: hidden;
}

.section--about::after {
    content: '';
    display: inline-block;
    width: 92px;
    height: 55px;
    background-image: url(../images/wheat.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 5px;
    left: 8px;
    transform-origin: center bottom;
    animation: shake-wide 4s infinite ease-in-out;
}

@keyframes shake-wide {
    0% , 100%{
        transform: rotate(3deg);
    }
    50%{
        transform: rotate(-3deg);
    }
}

.section--about::before {
    content: '';
    display: inline-block;
    width: 92px;
    height: 55px;
    background-image: url(../images/wheat.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 5px;
    right: 8px;
    animation: shake-wide 4s infinite ease-in-out;
}

.maincaption__logo {
    width: 146px;
    height: 57px;
    margin: 0 auto;
    margin-top: 20px;
    position: relative;
}

.maincaption__logo::after {
    content: '';
    display: inline-block;
    width: 50px;
    height: 45px;
    transform: rotate(32.559deg);
    background-image: url(../images/dot_yellow_top.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: -52px;
    left: -92px;
    animation: shake-vertical 5s infinite ease-in-out;
}

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

.maincaption__logo::before {
    content: '';
    display: inline-block;
    width: 50px;
    height: 45px;
    transform: rotate(32.559deg);
    background-image: url(../images/dot_orange.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 13px;
    right: -91px;
    animation: shake-vertical 5s infinite ease-in-out;
}


.maincaption__txt {
    letter-spacing: 1.95px;
    text-align: left;
    line-height: 2;
    margin: 20px auto 30px;
    max-width: 330px;
}

.brpc {
    display: none;
}



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

    .section__topic {
        color: #C68E59;
        font-size: 4rem;
        font-weight: 700;
    }

    .maincaption__logo {
        width: 302px;
        height: 117px;
        margin-top: 50px;
    }

    .maincaption__txt {
        color: #5F161D;
        font-size: 2rem;
        font-weight: 400;
        line-height: 58px; /* 290% */
        letter-spacing: 2.2px;
        text-align: center;
        margin-top: 50px;
        margin-bottom: 50px;
        max-width: 1000px;
    }

    .maincaption__logo::after {
        width: 150px;
        height: 180px;
        left: -119%;
    }
    
    .maincaption__logo::before {
        width: 145px;
        height: 180px;
        right: -127%;
        top: 224px
    }

    .section--about::before {
        width: 218px;
        height: 130px; 
        bottom: 14px;
        right: 18px;
    }

    .section--about::after {
        width: 218px;
        height: 130px; 
        bottom: 14px;
        left: 18px;
    }

    .brpc {
        display: block;
    }
}

/* menu */
.section--menu {
    background-image:url(../images/menu_pan.jpg) ;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;    
    background-color:rgba(255,255,255,0.8);
    background-blend-mode:lighten;
    padding: 50px 9.3%;
}

.section--menu .section__topic{
    color: #532800;
}

.section--menu .section__subtopic{
    color: #532800;
}

.menu__img img {
    margin-top: 20px;
    border-radius: 10px;
}


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

    .menu__img img {
        margin-top: 50px;
        border-radius: 20px;
    }
    
}

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

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

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

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

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

  .reserve__container {
    padding: 10px 5%;
  }

  .reserve__maintxt {
    margin-top: 10px;
  }

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

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


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

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


/* reserve pc */
@media screen and (min-width: 769px) {
    .section--reserve {
        padding: 50px 20% 200px;
        background-image: url(../images/reserve_pc.jpg);
    }

    .reserve__contents {
        padding: 40px 0px;
        z-index: 99999; 
    }
    
    .reserve__maintxt {
        font-size: 2rem;
        line-height: 33px; /* 200% */
        letter-spacing: 2.2px;
        margin-top: 10px;
    }

    .reserve__subtxt {
        width: fit-content;
        font-size: 1.6rem;
        line-height: 40px;
        margin: 0 auto;
    }

    .reserve__list {
        display: flex;
        width: fit-content;
        gap: 50px;
        margin: 20px 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: 50%;
    }

    .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.6rem;
        line-height: 25px; /* 156.25% */
        letter-spacing: 1.76px;
        padding: 0px 0%;
        margin-top: 100px;
    }

    .reserve__txt span {
        font-size: 2rem;
    }

    .reserve__price {
        font-size: 1.9rem;
    }

    .spbr {
        display: none;
    }

    .reserve__commentsbox {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        margin-top: 15px;
    }

    .reserve__comments {
        font-size: 1.6rem;
    }

    .brsp {
        display: none;
    }

    .reserve__line {
        font-size: 1.7vw;
    }

    .reserve__lineicon {
        width: 177px;
    }

    .reserve__topic {
        font-size: 4rem;
    }

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

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



.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;
    position: relative;
}

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

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

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

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

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

.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;
    position: absolute;
    left: -22px;
    top: 3px;
}

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

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

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

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

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

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


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

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

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

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