body {
  font-family: "Noto Serif JP", serif;
  margin-top: 150px;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #fff;
  z-index: 100;
}

.header-logo {
  height: 100px;
}

.header-logo img {
  /* max-width: 100%; */
  max-height: 100%;
}

.menu {
  height: 100%;
}

.logo {
  margin-top: 10%;
  width: 400px;
}

.logo img {
  width: 400px;
}

.hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 100px;
  cursor: pointer;
  color: #ba8f2e;
  padding-top: 15px;
  padding-right: 20px;
}

/* ハンバーガーメニューのアイコンのスタイル */
.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: #ba8f2e;
  margin-bottom: 20px;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(206, 183, 114, 0.95); /* #ceb772 with opacity */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-menu.active {
  opacity: 1;
  visibility: visible;
}

.nav-links {
  list-style: none;
  padding: 0;
  text-align: center;
}

.nav-links li {
  margin: 20px 0;
}

.nav-links a {
  color: #ffffff; /* リンクの色を白に変更 */
  text-decoration: none;
  font-size: 24px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #333333; /* ホバー時の色を暗めのグレーに変更 */
}

.others {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.rightImage {
  width: 70%;
  gap: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.leftImage {
  width: 70%;
  gap: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.leftText {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}

.rightText {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}

.title {
  font-family: "Noto Serif JP", serif;
  color: #c6a052;
  font-size: 24pt;
  margin: 0;
}

.content {
  font-family: "Noto Serif JP", serif;
  margin: 0;
}

.image {
  display: flex;
  align-items: center;
  /* height: 100%; */
}

.image img {
  /* width: 100%; */
  /* height: 100%; */
  height: 100px;
}

footer {
  background: #ceb772;
  color: #fff;
  margin: 0;
  padding: 5%;
}

@media screen and (max-width: 480px) {
  body {
    margin-top: 60px; /* ヘッダーの高さに合わせて調整 */
    font-size: 14px;
  }

  /* ヘッダー調整 */
  header {
    height: 50px;
    padding: 5px 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .header-logo {
    height: 40px;
    padding: 5px 0;
  }

  .header-logo img {
    height: 100%;
    width: auto;
  }

  .hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 20px;
    cursor: pointer;
    color: #ba8f2e;
  }
  /* ハンバーガーメニューのアイコンのスタイル */
  .hamburger-line {
    width: 100%;
    height: 2px;
    background-color: #ba8f2e;
    margin-bottom: 4px;
  }

  .rightImage {
    display: flex;
    flex-direction: column;xx
  }

  .leftImage {
    display: flex;
    flex-direction: column-reverse;
  }
}
