html {
  scroll-behavior: smooth;
}

body {
  background-color: #F4F1EE;
  font-family: "ab-kinmokusei-kuro", sans-serif;
  font-weight: normal;
  font-style: normal;
}

a {
  color: #000000;
  text-decoration: none;
}

/* メニュー */
.menu-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 100;
  background-color: #C9BC9C;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}
.menu-btn span:before {
  bottom: 8px;
}
.menu-btn span:after {
  top: 8px;
}
#menu-btn-check {
  display: none;
}
.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 90;
  background-color: #000000;
  transition: all 0.5s;
}
#menu-btn-check:checked ~ .menu-content {
  left: 0;
}
.menu-content ul {
  padding: 70px 10px 0;
}
.menu-content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;
}
.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}
.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

/* メイン要素 */
@media screen and (max-width: 767px) {
  #main_logo {
    width: 300px;
    text-align: center;
  }
  #main-word {
    position: absolute;
    top: 295px;
    right: 0;
    left: 0;
    margin: 0 auto;
    font-size: 25px;
    text-align: center;
  }
  #main-day {
    font-size: 15px;
    text-align: center;
  }
  #main-day span {
    font-size: 25px;
  }
  #main-doko {
    font-size: 25px;
    text-align: center;
  }
  .main-center {
    text-align: center;
  }
  .koutei {
    width: 370px;
  }
}

@media screen and (min-width: 767px) {
  .main-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
  }
  #main_logo {
    width: 300px;
    height: auto;
  }
  #pcyou {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  #main-word {
    font-size: 30px;
    margin-bottom: 10px;
  }
  #main-day,
  #main-doko {
    font-size: 20px;
    margin: 5px 0;
  }
  .koutei {
    width: 500px;
  }
}

/* お知らせ */
#shirase {
  background: #C9BC9C;
  margin: 0 auto;
  max-width: 1000px;
  height: 150px;
}
.shiraseyouso {
  padding: 3px 5px;
}
.shiraseyouso-1 {
  margin-top: 5px;
  font-size: 25px;
}
.shiraseyouso-2 {
  margin-top: -10px;
  font-size: 20px;
}

/* ボタン */
@media screen and (max-width: 767px) {
.main_navi {
    display: flex;
    justify-content: center;
  }
  .day1_but, .day2_but, .day3_but, .day4_but {
    color: rgb(0, 0, 0); /* 文字色 */
    padding: 5px 10px; /* パディング */
    text-align: center; /* 文字のアライメント */
    text-decoration: none; /* 文字装飾 */
    display: inline-block; /* ボタンの表示方法 */
    font-family: "ab-kinmokusei-kuro", sans-serif;
    font-size:15px; /* フォントサイズ */
    margin: 4px 2px; /* 外側の余白 */
    cursor: pointer; /* カーソル */
    border: none; /* ボーダーなし */
    border-radius: 30px; /* 50pxの角丸 */
}

.day1_but {
    background-color: #A8B1C4;
  }
.day2_but {
    background-color: #B1C4A8;
  }
.day3_but {
    background-color: #C4A8B1;
  }
.day4_but {
    background-color: #C4BAA8;
  }
}
@media screen and (min-width: 767px) {
    .main_navi {
        display: none;
    }
}
/*ボタンここまで*/
.shita {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 16px;
  }
/* フッター */
/*フッターここから*/
hr {
    height: 3px;
    border: 0;
    border-top: 1px solid #000000;
  }
  
.grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
.footer {
    background-color:#C9BC9C;
    padding: 2rem;
    font-size: 15px;
    color: #000000;
    background: #fff;
  }
  
  .footer__navi-heading {
    font-weight: 600;
  }
  
.footer__logo {
    display: inline-block;
    margin-bottom: 2rem;
  }
  
.footer__navi li {
    margin-bottom: 0.75rem;
  }
  
@media (min-width: 768px) {
    .md-flex {
      display: flex;
    }
  
    .md-justify-between {
      justify-content: space-between;
    }
  
    .grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }