@charset "utf-8";

body {
  background: rgb(255, 255, 255);
}

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

h1 {
  text-align: center;
  width: 30%;
  height: 100%;
}

h2 {
  text-align: center;
  font-size: 35px;
}

h3 {
  font-size: 25px;
}

p {
  font-size: 20px;
}

.separate-container {
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* overflow: hidden; */
}

.separate-img {
  width: 100%;
}

/* ヘッダー */
.page-header {
  /* background: #003d19; */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.logo {
  /* background: #ff8181; */
  width: 80%;
  height: 100%;
  margin-top: 10px;
}

.article-container {
  /* background: #ff8181; */
  width: 100%;
  height: 60%;
  aspect-ratio: 2/1;
  position: relative;
  overflow: hidden;
}

.article-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ハンバーガーメニュー */
.burger-icon {
  width: 20px;
  height: 20px;
  background-image: url(../picture/icon/burger.svg);
  display: none;
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 0 0 80px;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.burger-icon:hover {
  transform: scale(1.2);
}

.burger-menu {
  display: none;
  color: white;
  text-align: center;
  font-size: 20px;
  background: rgb(0, 0, 0, 0.8);
  width: 50vw;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  padding-top: 20%;
  z-index: 1000;
}

.burger-menu-link {
  color: white;
  text-decoration: none;
  display: block;
  margin-top: 30px;
}

.burger-menu.is-active {
  display: block;
}

.burger-icon.is-active {
  background-image: url(../picture/icon/close.svg);
  z-index: 1001;
}

.burger-menu-link.is-active {
  display: none;
}

.burger-menu ul {
  list-style-type: none;
}

.burger-menu a {
  text-decoration: none;
  color: white;
}

/* ナビゲーション */
.navigation {
  background: rgb(255, 255, 255);
  position: sticky;
  width: 100%;
  z-index: 1000;
  top: 0;
  padding-top: 3px;
  padding-bottom: 3px;
  border-bottom: 1px solid #000e06;
}

.navigation_list {
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10%;
  list-style-type: none;
}

.navigation__item {
  color: black;
  height: 100%;
}

.navigation__link {
  color: black;
  text-decoration: none;
  font-size: 20px;
}

.navigation__item:hover {
  transform: scale(1.1);
}

/* アバウト */
.about-container {
  /* background: rgb(255, 255, 84); */
  text-align: center;
  width: 100%;
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.about-title {
  /* background: #ff8181; */
  width: 90%;
  height: 90%;
}

.about-text {
  /* background: #87bc00; */
  width: 90%;
  height: 90%;
  margin-top: 20px;
}
.book {
  margin-top: 5%;
}
.lim {
  margin-top: 5%;
}

/* メニュー */
.menu-container {
  /* background: rgb(163, 143, 163); */
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 50px;
  margin-bottom: 50px;
}

.menu-title {
  /* background: #ff8181; */
  text-align: center;
}

.menu-sub-container {
  width: 80%;
  gap: 15px;
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.menu-item {
  width: 100%;
  height: 100%;
  border: 1px solid black;
}

.menu-img {
  object-fit: cover;
  object-position: center;
  width: 100%;
}

/* pizza and pasta */
.menu-description-container {
  /* background: rgb(182, 243, 182); */
  width: 90%;
  margin-top: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.menu-sub-title {
  /* background: #ff8181; */
  margin-bottom: 20px;
}

.menu-sub-text {
  /* background: #87bc00; */
  width: 90%;
  margin: 0 auto;
}

/* スケジュール */
.schedule-container {
  /* background: rgb(182, 243, 182); */
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 50px;
  margin-bottom: 50px;
}

.schedule-sub-container {
  /* background: rgb(42, 86, 42); */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 80%;
  margin-top: 20px;
}

.this-month-schedule {
  width: 50%;
  border: 2px solid #003d19;
  border-radius: 40px;
  overflow: hidden;
}

.next-month-schedule {
  width: 50%;
  border: 2px solid #003d19;
  border-radius: 40px;
  overflow: hidden;
}

iframe {
  width: 100%;
  aspect-ratio: 1/1.1;
  border-radius: 40px;
  overflow: hidden;
  border: 0.5px solid #0825145b;
  margin-bottom: -10%;
}

/* インフォメーション */
.information-container {
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 50px;
  margin-bottom: 50px;
}

.information-table {
  width: 90%;
  margin-top: 20px;
  border-collapse: collapse;
  font-size: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.information-table th {
  width: 20%;
  text-align: left;
  padding: 10px;
}

.information-table td {
  width: 80%;
  text-align: left;
  padding: 10px;
}

.information-map {
  width: 90%;
  aspect-ratio: 2/1;
  margin-top: 20px;
  border-radius: 40px;
  overflow: hidden;
  border: 2px solid #003d19;
}

.map {
  width: 100%;
  aspect-ratio: 2/1;
  /* border-radius: 20px; */
}

/* フッター */
.video-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
}

.footer-video-container {
  width: 80%;
  position: relative;
  overflow: hidden;
}

.footer-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  border: 2px solid #003d19;
}

.sound-toggle-button {
  position: absolute;
  top: 20px; /* フッターの下から20pxの位置に配置 */
  right: 20px;
  padding: 10px 20px;
  background-color: #ffffff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  position: relative; /* 相対位置を設定 */
  background: #122620;
}
.footer-container img {
  width: 100%;
  height: 300px;
}

.footer-container p {
  font-size: 30px;
  position: absolute; /* 絶対位置を設定 */
  top: 60%; /* 画像の中央に配置 */
  left: 50%;
  transform: translate(-50%, -50%); /* 中央揃え */
  color: #ffffff; /* テキストの色を白に設定 */
  background-color: #122620; /* 背景色を半透明の黒に設定 */
  padding: 20px 20px; /* パディングを追加 */
  border-radius: 5px; /* 角を丸くする */
}

.footer-container p {
  font-size: 20px;
  text-align: center;
  padding: 1px;
}

/* モバイル用のスタイル */
@media (max-width: 768px) {
  .navigation {
    display: none; /* デフォルトではメニューを非表示にする */
    flex-direction: column;
    width: 100%;
    /* background-color: #333; */
  }

  /* h1内のリンク（ロゴ）を中央揃えにする */
  .page-header h1 {
    flex: 1;
    display: flex;
    justify-content: center; /* 中央寄せ */
    margin: 0; /* h1のデフォルトマージンを削除 */
  }

  /* ロゴのサイズ調整（必要に応じて） */
  .page-header .logo {
    max-height: 70px; /* ロゴの高さを適切に調整 */
    margin-left: 30px;
  }

  .burger-icon {
    margin-left: auto;
    margin-right: 20px;
    display: block; /* モバイルではハンバーガーメニューを表示 */
  }

  .separate-container {
    width: 100%;
    height: 20%;
  }
  .separate-img {
    width: 100%;
    height: 10%;
  }

  .navigation__item {
    margin: 0;
    text-align: center;
  }

  .article-container {
    height: 40%;
  }

  .article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .ab {
    font-size: medium;
  }
  .book {
    margin-top: 10%;
  }
  .lim {
    margin-top: 10%;
  }
  h2 {
    font-size: xx-large;
  }
  h3 {
    font-size: larger;
  }
  p {
    font-size: small;
  }

  .menu-sub-container {
    grid-template-columns: 1fr 1fr;
    width: 93%;
  }

  .schedule-sub-container {
    flex-direction: column;
    width: 93%;
  }

  .this-month-schedule {
    width: 100%;
  }

  .next-month-schedule {
    width: 100%;
  }

  .information-table {
    width: 93%;
    font-size: 15px;
  }

  .information-map {
    margin-top: 20%;
    width: 93%;
    height: 500px;
  }
  .map {
    height: 100%;
  }

  .footer-video-container {
    width: 100%;
    height: 400px;
  }

  footer {
    width: 100%;
    height: 20%;
  }

  .footer-container p {
    font-size: 15px;
    text-align: center;
    padding: 1;
  }
}
