@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.body {
  height: 100vh;
  width: 100%;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #40220f;

}

.toplogo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.toplogo img {
  width: 100%;
  margin: 0 auto;
}

.container {
  background-color: #f4f2f2;
}


/* ――――――――――――――――↓↓メインビューのスライド設定↓↓――――――――――――――――――― */

.slide {
  position: relative;
  width: 100%;
  height: 730px;
  background-color: aliceblue;
  opacity: 0.4;
  overflow: hidden;
}

.slide-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: slider-1 24s linear infinite;
}

.slide-image:nth-child(1) {
  background-image: url(../images/mainview1.jpg);
  animation-delay: -2s;
}

.slide-image:nth-child(2) {
  background-image: url(../images/mainview2.jpg);
  animation-delay: 2s;
}

.slide-image:nth-child(3) {
  background-image: url(../images/mainview3.jpg);
  animation-delay: 6s;
}

.slide-image:nth-child(4) {
  background-image: url(../images/mainview4.jpg);
  animation-delay: 10s;
}


@keyframes slider-1 {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  4.16% {
    opacity: 1;
  }

  33.33% {
    opacity: 1;
  }

  41.66% {
    opacity: 0;
    transform: scale(1.2);
  }

  100% {
    opacity: 0;
  }
}

/* ―――――――――――――――――――――終 ――――――――――――――――――――――――――――*/


.cover {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 180px 50px;
  width: 100%;
  text-align: center;
}

h1 {
  font-size: 2.8125rem;
  font-family: 'Caveat', cursive;
}

h2 {
  font-size: 1.5625rem;
  font-family: 'Zen Kurenaido', sans-serif;
  font-weight: 600;
  color: #40220f;
}

.eng {
  font-family: 'Caveat', cursive;
}

.about {
  font-size: 1.125rem;
  line-height: 2.5;
  padding: 30px 0;
  font-family: 'Zen Kurenaido', sans-serif;
  font-weight: 600;
  text-align: center;
  text-wrap: balance;
  word-break: auto-phrase;
}


.button {
  background-color: #40220f;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  padding: 20px 35px;
  width: 50%;
  margin: 0 auto;
  text-align: center;
  display: inline-block;
}

.button:hover {
  opacity: 0.6;
}

.store-info {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

.store-info p {
  color: #40220f;
  text-align: center;
}


.store-info img {
  width: 50%;
  margin: 0 auto;

}

/* ――――――――――――――――――パララックス ―――――――――――――――――――――――*/

.parallax_content {
  display: flex;
  height: 5%;
  padding: 3%;
  justify-content: center;
  align-items: center;

  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.img_bg_01 {
  background-image: url(../images/secondview.jpg);
}

.parallax_content02 {
  /* 背景に対する指定 */
  background-color: rgba(161, 173, 162, 0.5);
  padding: 200px 0;

}

.top-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 30px 0;
}

.top-menu img {
  width: 100%
}

.hover-parent {
  /* width: 30%; */
  /* height:			188px; */
  overflow: hidden;
  margin: 10px 20px;
  position: relative;

}

.hover-parent .caption {
  font-size: 130%;
  text-align: center;
  color: #fff;
  font-family: 'Zen Kaku Gothic New', sans-serif;

}

.hover-parent .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  /* マスクを表示しない */
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.hover-parent:hover .mask {
  opacity: 1;
  /* マスクを表示する */
  padding-top: 80px;
  /* ホバーで下にずらす */
}

.parallax_content03 {
  width: 100%;
  margin: 0 auto;
  padding: 100px 0;
}

.parallax_content03 h2 {
  margin: 20px 0;
}

.parallax_content03 p {
  line-height: 1.6;
  padding: 20px 0;
}

.pickup {
  text-align: center;
}

.pickup p {
  text-align: center;
  text-wrap: balance;
  word-break: auto-phrase;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 600;
  line-height: 1.8;
}

.parallax_content04 {
  width: 100%;
}

.parallax_content05 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 0;

}


.store-info img {
  width: 40vh;
  margin: 0 auto;

}



.instagram img {
  width: 15vh;
  padding: 20px 0;

}




/* ―――――――――――――――――――――――――――終――――――――――――――――――――――――― */

/* ――――――――――――――――――――――――メニューボタン―――――――――――――――――――――*/


.button_line001 a {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 200px;
  padding: 10px 25px;
  color: #40220f;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  font-size: 1.25rem;

}

.button_line001 a:before {
  position: absolute;
  bottom: 0px;
  left: 50%;
  content: '';
  width: 100%;
  height: 2px;
  background: rgba(0, 0, 0, .1);
  transform: translateX(-50%);
}

.button_line001 a:after {
  position: absolute;
  bottom: 0px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #000;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}

.button_line001 a:hover {
  opacity: 0.7;
}

.button_line001 a:hover:after {
  transform: scale(1, 1);
}

/* ―――――――――――――――――――――――終――――――――――――――――――――――― */

/* ――――――――――――――――――――――ヘッダー―――――――――――――――――――――――― */


header {
  position: fixed;
  z-index: 99;

}

header img {
  width: 35%;
  text-align: center;

}










/* ―――――――――――――――――――――終――――――――――――――――――――― */


/* ――――――――――――――――――――――スライダー――――――――――――――――――――――― */
/*==================================================
スライダーのためのcss
===================================*/
.slider {
  /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 94%;
  margin: 0 auto;
}

.slider img {
  width: 30vw;
  /*スライダー内の画像を60vwにしてレスポンシブ化*/
  height: auto;
}

.slider .slick-slide {
  transform: scale(0.8);
  /*左右の画像のサイズを80%に*/
  transition: all .5s;
  /*拡大や透過のアニメーションを0.5秒で行う*/
  opacity: 0.5;
  /*透過50%*/
}

.slider .slick-slide.slick-center {
  transform: scale(1);
  /*中央の画像のサイズだけ等倍に*/
  opacity: 1;
  /*透過なし*/
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute;
  /*絶対配置にする*/
  top: 42%;
  cursor: pointer;
  /*マウスカーソルを指マークに*/
  outline: none;
  /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #666;
  /*矢印の色*/
  border-right: 2px solid #666;
  /*矢印の色*/
  height: 15px;
  width: 15px;
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: -1.5%;
  transform: rotate(-135deg);
}

.slick-next {
  /*次へ矢印の位置と形状*/
  right: -1.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px;
  /*ドットボタンのサイズ*/
  height: 8px;
  /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ccc;
  /*ドットボタンの色*/
}

.slick-dots .slick-active button {
  background: #333;
  /*ドットボタンの現在地表示の色*/
}

/* ――――――――――――――――――――――終―――――――――――――――――――――――――――― */
.return-top {
  width: 100%;
}

.turn {
  width: 150px;
  position: fixed;
  right: 0;
  bottom: 60px;
  animation: 15s linear infinite rotate_anime;
}

.arow {
  font-size: 3rem;
  width: 150px;
  display: grid;
  place-items: center;
  position: fixed;
  right: 0;
  bottom: 110px;
}

@keyframes rotate_anime {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/* ――――――――――――――――メニューページ ――――――――――――――――――*/
/* ――――――――――――――――――――――――――――――――――――――――――― */
/* ――――――――――――――――――――――――――――――――――――――――――――――― */
.page-top {
  width: 100%;
}

.hero {
  position: relative;
}

.hero img {
  width: 100%;
}

.page-top p {
  text-align: center;
  font-size: 1.25rem;
  font-family: 'Zen Kurenaido', sans-serif;
  font-weight: 600;
  margin: 30px 0;
}

.hero p {
  font-size: 7.5rem;
  font-family: 'Tenor Sans', sans-serif;
  text-shadow: 2px 4px 4px #422b2b;
  color: #1a1919;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}

.menu {
  align-items: center;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

.menu img {
  width: 85%;
  margin: 20px auto;
}

.menubox {
  width: 100%;
  padding: 30px 0;
}

.menu p {
  padding: 10px 0;
  margin: 10px 5px;
  text-wrap: balance;
  word-break: auto-phrase;
}

h5 {
  font-size: 1.75rem;
  font-weight: bold;
  margin: 10px 0;
}

.menu-best {
  display: flex;
  align-items: center;
  width: 85%;
  margin: 30px auto;

}

.menu-best img {
  width: 45%;
  margin: 0 auto;
}

.menu-best p {
  width: 50%;
  margin: 60px auto;
  line-height: 1.4;

}

.big {
  font-size: 1.75rem;

}

.menu-list {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  text-align: left;
}

.menu-list-1 {
  border-spacing: 0;
  padding: 0 50px;
}

.menu-list-1 td {
  width: 100%;
  margin: 0 auto;
  border-bottom: 2px dotted #006934;
  padding: 10px;
}

.Cautionary-note {
  font-size: 0.75rem;
}

/* ――――――――――――――――ニュースページ ――――――――――――――――――*/
/* ――――――――――――――――――――――――――――――――――――――――――― */
/* ――――――――――――――――――――――――――――――――――――――――――――――― */
.news-top {
  position: relative;
}

/* *{
  border: 1px solid;
} */
.news-top img {
  opacity: 0.85;
  width: 100%;
}

.news-top p {
  font-size: 1.25rem;
  font-family: 'Zen Kurenaido', sans-serif;
  font-weight: 600;
  text-align: center;

}

.news-topics {
  /* display: flex; */
  text-align: center;
  width: 100%;
  /* align-items: center; */
  margin: 10px 0;
}

.news-topics p {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  line-height: 1.3;
  color: #40220f;

}

.news-topics img {
  transition: transform .6s ease;
  /* ゆっくり変化させる */
}

.news-topics:hover img {
  transform: scale(1.1);
  /* 拡大 */
}

.h3dec {
  font-size: 2.5rem;
  font-family: 'Caveat', cursive;
  letter-spacing: 0.5rem;
  color: #40220f;
}

h3 {
  font-size: 1.8rem;
  font-family: 'Caveat', cursive;
  letter-spacing: 0.5rem;
  color: #40220f;
  margin-top: 20px;
}

/* .big-bold {
  font-size: 1.4375rem;
  font-weight: 600;
  color: #40220f;
} */

/* .little-p {
  font-size: 0.75rem;
} */

.reserved {
  text-align: center;
  margin-top: 20px;
  cursor: pointer;
  overflow: hidden;
  width: 100%;
}

.reserved img {
  height: auto;
  transition: transform .6s ease;
  /* ゆっくり変化させる */
}

.reserved:hover img {
  transform: scale(1.1);
  /* 拡大 */
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  text-align: center;
  margin: 100px auto;


}

.grid img {
  width: 85%;
}

.item {
  margin: 20px auto;
}

.item p {
  margin: 10px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #40220f;

}


/* ――――――――――――――――コンタクトページ ――――――――――――――――――*/
/* ――――――――――――――――――――――――――――――――――――――――――― */
/* ――――――――――――――――――――――――――――――――――――――――――――――― */
h4{
  font-size: 5rem;
  font-family: 'Tenor Sans', sans-serif;
  text-shadow: 2px 4px 4px #422b2b;
  color: #1a1919;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}

.contact-page {
  background-color: rgba(162, 165, 121, 0.65);
  background-blend-mode: lighten;
  min-height: 100vh;
  text-align: center;
}

.contact-top {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.reserved-sec{
  width: 80%;
  margin: 0 auto;
}

.reserved-sec p {
  font-size: 1.5625rem;
  padding: 15px 0;
}

.wrapper {
  border: 2px #fff solid;
  border-radius: 10px;
  width: 85%;
  margin: 0 auto;
  margin: 30px auto;
}


.wrapper p {
  font-size: 1.5625rem;
  margin-bottom: 15px;
}

form {
  margin-bottom: 20px;
}

label {
  font-size: 1.125rem;
  margin-bottom: 10px;
  display: block;
}

input[type="text"],
input[type="email"],
textarea {
  background: rgba(255, 255, 255, .8);
  border: 1px #fff solid;
  border-radius: 5px;
  padding: 10px;
  font-size: 1rem;
  margin-bottom: 20px;
}

input[type="text"],
input[type="email"] {
  width: 100%;
  max-width: 240px;
}

textarea {
  width: 100%;
  max-width: 480px;
  height: 6rem;
}

input[type="submit"] {
  border: none;
  cursor: pointer;
  line-height: 1;
  text-align: center;
  margin: 20px 0;
}

.reserved-sec .button {
  margin: 5px auto;
  padding: 15px 30px;
  display:inline-block;
}



/* ――――――――――――――――――――――――フッター――――――――――――――――――― */
/* ―――――――――――――――――――――――――――――――――――――――――――――――――― */
footer {
  background-color: #e4f794;

}

footer p {
  color: #40220f;
  padding: 25px 0;
  text-align: center;

}


/* ――――――――――――――――ホットケーキ ――――――――――――――――――*/
/* ――――――――――――――――――――――――――――――――――――――――――― */
/* ――――――――――――――――――――――――――――――――――――――――――――――― */

.outline img {
  width: 75%;
  margin: 0 auto;
  margin-top: 100px;
}

.outline {
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

.outline h2,
p {
  margin: 30px 20px;
  line-height: 1.6;
  /* padding: 0 200px; */
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #40220f;
}

.outline h2 {
  font-size: 2.9375rem;
}

table {
  line-height: 2;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #40220f;
  margin-bottom: 20px;

}

.cautionary-note {
  font-size: 0.75rem;
}


.outline1 {
  text-align: center;
  padding: 30px 0;
}

.outline1 img {
  width: 45%;
  margin: 0 auto;
}

.outline1 h2 {
  margin-bottom: 20px;
}

.outline1 p {
  font-family: 'Zen Kaku Gothic New', sans-serif;
}

.date {
  font-size: 1.35rem;
  margin: 15px 0;
  font-weight: bold;
}



/* ―――――――――――――――――――――――――ア二メーション設定――――――――――――――――――――――――――― */
/* ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― */

/* 下から */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(150px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeUpTrigger {
  opacity: 0;
}


/* -----------------とぐる----------------------------------- */


/*========= ナビゲーションのためのCSS ===============*/

/*アクティブになったエリア*/
#g-nav.panelactive {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  height: 100vh;
}

/*丸の拡大*/
.circle-bg {
  position: fixed;
  z-index: 3;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(131, 155, 93, 0.8);
  /*丸のスタート位置と形状*/
  transform: scale(0);
  /*scaleをはじめは0に*/
  right: -50px;
  top: -50px;
  transition: all .6s;
  /*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive {
  transform: scale(50);
  /*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list {
  display: none;
  /*はじめは表示なし*/
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list {
  display: block;
  /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
  opacity: 0;
  /*はじめは透過0*/
  /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
  opacity: 1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li {
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: .2s;
  /*0.2 秒遅らせて出現*/
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


/*リストのレイアウト設定*/
#g-nav li {
  text-align: center;
  list-style: none;
}

#g-nav li a {
  color: #e9e7e7;
  font-size: 1.6rem;
  font-family: 'Caveat', cursive, 'Zen Kaku Gothic New', sans-serif;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}


/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 9999;
  /*ボタンを最前面に*/
  cursor: pointer;
  width: 50px;
  height: 50px;

}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #9fc24c;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}






/* ――――――――――――――――――――――――ここからレスポンシブ用！！――――――――――――――――――― */
/* ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― */

@media screen and (max-width:480px) {
  /*　画面サイズが480px以下の場合ここの記述が適用される　*/

  .about {
    width: 100%;
    margin: 0;
    box-sizing: inherit;
  }


  .button {
    padding: 25px 45px;
    width: 100%;
    margin: 0 auto;
    display: inline-block;
  }

  .parallax_content02 {
    width: 100%;
    margin: 0 auto;
    padding: 100px 0;
  }

  .top-menu {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 30px 0;
  }

  .top-menu img {
    width: 100%;
    margin: 0 auto;
  }

  .button_line001 {
    padding-top: 50px;
  }

  .parallax_content03 {
    padding: 50px 0;
  }

  .parallax_content03 p {
    line-height: 1.6;
    padding: 20px 0;
  }

  .pickup {
    width: 85%;
    margin: 0 auto;
    text-align: center;
  }

  .pickup p {
    box-sizing: inherit;
    width: 100%;
    margin: 0;


  }

  h2 {
    font-size: 1.25rem;
  }

  .pickup .button {
    width: 95%;
    margin: 50px auto;
  }

  .store-info p {
    box-sizing: inherit;
    width: 100%;
    margin: 0;
  }


  .turn {
    width: 30%;
    position: relative;
    right: 0;
    bottom: 0;
    animation: 15s linear infinite rotate_anime;

  }

  .arow {
    font-size: 3rem;
    font-weight: bolder;
    width: 30%;
    display: grid;
    place-items: center;
    position: relative;
    right: 0;
    bottom: 85px;
  }

  footer p {
    padding: 30px 0;
    margin: -30px auto;
  }

  /* メニュー */


  .hero p {
    font-size: 3.125rem;

  }

  .menu-best {
    flex-direction: column;
    margin: 15px auto;
  }

  .menubox {
    padding: 0;
  }


  .menu-best img {
    width: 60%;
  }

  .menu-best p {
    width: 100%;
    margin: 10px auto;
    line-height: 1.4;
    text-align: center;
  }

  .big {
    font-size: 1.38rem;
  }

  .menu-list {
    flex-direction: column;
    justify-content: center;
    margin-bottom: 50px;
  }

  .menu-list-1 {
    background: #f2f2f2;
    border-spacing: 0;
    padding: 0 10px;
  }

  .menu-list-1 td {
    border-bottom: 2px dotted #006934;
    padding: 10px;

  }

  /* ------------------ */
  .news-top p {
    box-sizing: inherit;
    width: 100%;
    margin: 0;
  }


  .news-topics {
    flex-direction: column;
    text-align: center;
    width: 100%;
    padding: 30px 0;
  }

  .news-topics img {
    width: 90%;
    margin: 0 auto;
  }

  .news-topics p {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    text-align: left;
    margin: 0 80px;
    font-size: 0.85rem;

  }

  .h3dec {
    font-size: 2.5rem;
    font-family: 'Caveat', cursive;
    letter-spacing: 0.5rem;
    color: #40220f;
  }

  h3 {
    width: 90%;
    margin: 0 auto;
    font-size: 1.4rem;
    font-family: 'Caveat', cursive;
    letter-spacing: 0.5rem;
    color: #40220f;
    margin-top: 10px;
  }

  .reserved {
    text-align: center;
    margin-top: 20px;
    width: 100%;
  }

  .reserved img {
    width: 80%;
    margin: 0 auto;
  }

  .grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .grid img {
    width: 85%;
  }

  .item {
    margin: 20px auto;
    grid-column: auto;
    grid-row: auto;

  }

  .item p {
    margin: 10px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    color: #40220f;

  }


  /* ------------------ */

  h4{
    font-size: 2.5rem;
  }
  .contact1 {
    width: 100%;
    padding-bottom: 30px;
  }

  .contact-top img {
    width: 100%;
  }

  .reserved-sec p {
    font-size: 1.15rem;
    padding: 0;

  }

  .reserved-sec .button {
    width: 60%;
  }


  .wrapper {
    border: 2px #fff solid;
    border-radius: 10px;
    width: 90%;
    margin: 0 auto;
    margin: 30px auto;
  }

  .wrapper p {
    font-size: 0.98rem;
    margin-bottom: 15px;
  }

  textarea {
    width: 80%;
    max-width: 480px;
    height: 6rem;
  }

  .outline img {
    width: 95%;
    margin: 0 auto;
    margin-top: 100px;
  }

  .outline h2 {
    font-size: 1.2rem;
    width: 100%;
    margin: 0;
    padding: 0 5px;
    box-sizing: inherit;
  }

  .outline p {
    width: 100%;
    margin: 0;
    padding: 0 20px;
    box-sizing: inherit;
  }

  .outline .button {
    margin: 45px auto;
  }




}