@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&family=M+PLUS+Rounded+1c:wght@400;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  height: 100%;
  min-height: 100vh;
}

html {
  font-size: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  position: relative;

  /* color: white; */
  z-index: 1;
}
html::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(235, 233, 233, 0.5),
      rgba(247, 244, 244, 0.5)
    ),
    url("img/pink-brush-stroke-texture-background.jpg");
  background-size: cover; /* 画像を画面いっぱいに広げる */
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  object-fit: cover;

  z-index: -1;

  /* ぼかし効果を追加 */
  filter: blur(3px);
}

/*ロゴ*/
#shop-name {
  position: fixed;
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background-color: #fdf9f9;
  opacity: 0.9;

  z-index: 4;
}
#shop-name picture {
  margin: 0 auto;
}

#fixed-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 10px;
  left: 20px;
  width: 50px;
  height: 50px;
  background-color: #fffefc;
  color: #eeb82e;
  border-radius: 50%;
  border: 1px solid #ecba44;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(162, 74, 74, 0.1);
  transition: opacity 0.5s ease-in-out;
  z-index: 12;
  cursor: pointer;
}

.slider {
  width: 150px;
  height: 100vh;
  position: relative;
  background-color: #fdf9f9;
  opacity: 0.9;
  color: #fff;
  display: flex;

  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  transition: transform 0.8s ease-in-out;
  transform: translateX(-100%);
}
.slider-visible {
  transform: translateX(0%);
}
.tell-time {
  transform: translate(-20%, -50%);
  width: 100%;
  height: auto;
}
#close {
  margin: 5px;
  color: #867c7c;
  cursor: pointer;
}
.menu-list {
  list-style-type: none;
  padding: 30px;
  margin-top: 10px;
}

.menu-list li {
  margin-bottom: 30px;
}

.menu-list a {
  text-decoration: none;
  color: #867c7c;
  font-size: 1.2rem;
  transition: color 0.4s;
}

.menu-list a:hover {
  color: #f0a500;
}

.TOP {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.TOP a {
  display: inline-block;
  padding: 11px;
  border: solid 1px #000000;
  border-radius: 10px;
}
.information {
  width: 100%;
}
.information-h3 {
  font-size: 1.5rem;
  margin: 30px 0;
  text-align: center;
  font-family: "Zen Kurenaido", serif;
  font-weight: 400;
  font-style: normal;
}

table {
  width: 100%;
  margin: 30px auto;
}

td {
  width: 100%;
  display: block;
  padding: 18px 29px;
}

.table-td {
  width: 100%;
  font-size: 1.1rem;
  text-align: left;
  padding: 10px 35px;
  background-color: rgb(240, 240, 232);
  border-top: solid 1px rgb(183, 183, 177);
  border-bottom: solid 1px rgb(183, 183, 177);
}

/*電話番号*/
.phone-link {
  color: rgb(67, 67, 218);
}
/*フッター*/
footer {
  text-align: center;
  margin: 40px auto;
}
/*レスポンシブデザイン*/
@media (min-width: 344px) and (max-width: 480px) {
  /*お店のロゴ*/
  #shop-name img {
    margin-top: 5px;
    width: 120px;
  }

  .slider {
    width: 120px;
  }
  .menu-list {
    padding: 10px;
    margin-top: 5px;
  }

  .menu-list li {
    margin: 12px 0;
  }

  .menu-list a {
    margin-left: 12px;
    font-size: 1rem;
  }
  #hmb {
    top: 10px;
    left: 20px;
    width: 30px;
    height: 30px;
  }

  #hmb2 {
    top: 10px;
    left: 20px;
    width: 30px;
    height: 30px;
  }
  #hmb2 img {
    width: 100%;
  }
  .menu-list li a {
    font-size: 0.9rem;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  html::before {
    height: 100vh;
  }
  .information-h3 {
    font-size: 2rem;
    margin: 9% auto 0 auto;
  }

  table {
    width: 80%;
    /* デフォルトのテーブルレイアウト display: table;  */
    border-collapse: collapse;
    border: 1px solid rgb(168, 168, 163);
    margin: 5% auto;
  }

  td {
    width: auto;
    display: table-cell;
    border: 1px solid rgb(168, 168, 163);
    padding: 20px 15px;
  }

  .table-td {
    width: 35%;
    padding: 18px 35px;
    font-size: 1.2rem;
    background-color: rgb(244, 244, 235);
  }

  /* コンテンツセル */
  td:not(.table-td) {
    width: 65%;
    font-size: 1.1rem;
  }
}
