@charset "UTF-8";
/* CSS Document */
.header {
  width: 100%;
  height: 44px;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  position: fixed; /*ヘッダーの位置を固定*/
  top: 0; /*ヘッダーの位置を固定（上0）*/
  left: 0; /*ヘッダーの位置を左固定（左０）*/
  background-color: rgba(255, 255, 255, 0);
}
.header p {
  display: none;
}
.header ul {
  display: flex;
  list-style: none;
}
.header li {
  margin-left: 40px;
  font-size: 2rem;
}
.header a {
  text-decoration: none;
  color: #fff;
}
.material-symbols-outlined {
  transform: translateY(10%)
}
.header img {
  width: 24px;
  padding: 3px;
  color: white;
  background-color: #b3c5ad;
  border-radius: 4px;
  margin-right: -25px;
}
.header nav {
  margin-left: auto; /*メニューを右寄せ*/
  max-width: 1040px;
  padding: 15px 120px 0 0;
}
header.change-color {
  background-color: rgba(254, 254, 254, 0.92);
  transition: 0.3s;
  z-index: 99;
}
header.change-color a {
  color: #333;
  font-size: 1.4rem;
  transition: 0.3s;
}
@media (max-width:576px) {
  .header {
    position: fixed;
    z-index: 99;
  }
  .header a {
    color: #333;
    font-size: 1.4rem;
  }
  .header nav {
    padding: 0;
  }
  .header li {
    width: fit-content;
    margin: 10px;
  }
  .header img {
    margin: 0;
  }
  /*アクティブになったエリア*/
  #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(254, 254, 254, 0.74);
    backdrop-filter: blur(0.05px);
    /*丸のスタート位置と形状*/
    transform: scale(0); /*scaleをはじめは0に*/
    top: -50px;
    left: calc(50% - 50px); /*50%から円の半径を引いた値*/
    transition: all .6s; /*0.6秒かけてアニメーション*/
  }
  .circle-bg.circleactive {
    transform: scale(50); /*クラスが付与されたらscaleを拡大*/
  }
  /*ナビゲーション*/
  #g-nav ul {
    opacity: 0; /*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    width: 325px;
    margin: 0 auto;
    transform: translate(-50%, -50%);
    flex-wrap: wrap;
    justify-content: center;
  }
  /*背景が出現後にナビゲーションを表示*/
  #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: #333;
    text-decoration: none;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
  }
  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    position: fixed;
    z-index: 9999; /*ボタンを最前面に*/
    top: 10px;
    right: 10px;
    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: #666;
    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%;
  }
}
.menu-top {
  background-image: url("../images/menu/top_image.png");
  background-position: center;
  width: 100%;
  height: min(500px, 100vw);
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu-top h1 {
  font-family: "ab-kirigirisu", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: min(3.8rem, 7.95vw);
  color: #fff;
  text-shadow: 4px 4px 37px #333;
}
li {
  list-style: none;
}
h3 {
  font-weight: normal;
  font-size: 1.5rem;
}
main {
  background-color: #FEFEFE
}
.wave1 {
  width: 100%;
  margin-top: -130px;
  margin-bottom: min(150px, 25vw);
  color: #f6f6f6
}
.menu-coffee, .menu-drink, .menu-snack {
  background-color: #FAFAFA;
  width: 72.249vw;
  margin: 0 auto;
  border-radius: 25px;
  padding: 40px 50px 55px;
  margin-bottom: min(85px, 17.78%);
}
.menu-coffee h2, .menu-drink h2, .menu-snack h2 {
  font-size: min(3.1rem, 6vw);
  color: #b3c5ad;
  font-family: "ab-walk", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: min(95px, 16%)
}
.menu-coffee li, .menu-drink li, .menu-snack li {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 8.3px 0;
  background-image: linear-gradient(to right, #bdbdbd, #bdbdbd 6px, transparent 6px);
  background-size: 14px 2px;
  background-position: left bottom;
  background-repeat: repeat-x;
}
.menu-coffee h3, .menu-drink h3, .menu-snack h3 {
  font-size: min(1.5rem, 3.63vw);
}
.menu-coffee p, .menu-drink p, .menu-snack p {
  font-size: min(1.5rem, 3.55vw);
}
@media (max-width:576px) {
  .menu-coffee, .menu-drink, .menu-snack {
    padding: 20px;
    width: 85vw;
  }
}
.menu-tea, .menu-dessert, .menu-set, .menu-curry {
  background-color: #FAFAFA;
  width: 72.249vw;
  margin: 0 auto;
  border-radius: 25px;
  padding: 40px 50px 55px;
  margin-bottom: min(85px, 17.78%);
}
.menu-tea h2, .menu-dessert h2, .menu-set h2, .menu-curry h2 {
  font-size: min(3.1rem, 6vw);
  color: #b3c5ad;
  font-family: "ab-walk", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: min(95px, 16%)
}
.menu-tea li, .menu-dessert li, .menu-set li, .menu-curry li {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 8.3px 0;
  background-image: linear-gradient(to right, #bdbdbd, #bdbdbd 6px, transparent 6px);
  background-size: 14px 2px;
  background-position: left bottom;
  background-repeat: repeat-x;
}
.menu-tea h3, .menu-dessert h3, .menu-set h3, .menu-curry h3 {
  font-size: min(1.5rem, 3.63vw);
}
.menu-tea p, .menu-dessert p, .menu-set p, .menu-curry p {
  font-size: min(1.5rem, 3.55vw);
}
@media (max-width:576px) {
  .menu-tea, .menu-dessert, .menu-set, .menu-curry {
    padding: 20px;
    width: 85vw;
  }
}
.wave5 {
  width: 100%;
  margin-bottom: -10px;
  background-color: #fefefe;
}
.footer div {
  width: 100%;
  background-color: #b3c5ad;
}
.footer img {
  width: 200px;
  margin: 30px auto 40px;
}
.loader-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  text-align:center;
  background-color: #F0F0F0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loader img {
  width: 21vw;
  max-width: 200px
}
