body {
  font-family: "Noto Serif JP", serif;
  margin-top: 8%;
  background-color: #fcf3d8;
}

footer {
  background: #ceb772;
  color: #fff;
  margin: 0;
  padding: 5%;
}
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%;
}

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

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

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 2rem;
}

.faq-title {
  text-align: center;
  color: #b8860b;
  font-size: 2.5em;
  margin-bottom: 30px;
  font-weight: 500;
}

.accordion {
  margin-bottom: 40px;
}

.accordion-item {
  margin-bottom: 10px;
  border-radius: 4px;
  overflow: hidden;
}

.accordion-header {
  background-color: white;
  padding: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  border: 1px solid #daa520;
  font-size: 0.95em;
  font-weight: 500;
}

.accordion-header .q-mark {
  background-color: #daa520;
  color: white;
  padding: 5px 10px;
  margin-right: 15px;
  border-radius: 4px;
  font-weight: 500;
}

.accordion-content {
  background-color: #daa520;
  color: white;
  padding: 20px;
  display: none;
  font-size: 0.9em;
  line-height: 1.8;
}

.accordion-header::after {
  content: "▼";
  margin-left: auto;
  color: #daa520;
  transition: transform 0.3s ease;
  font-size: 0.8em;
}

.accordion-header.active::after {
  transform: rotate(180deg);
}

.button-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.button {
  padding: 15px 30px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  text-align: center;
  min-width: 150px;
  font-family: "Noto Serif JP", serif;
  font-size: 0.9em;
}

.apply-btn {
  background-color: #1a1a4b;
  color: white;
}

.counseling-btn {
  background-color: #daa520;
  color: white;
}

.contact-btn {
  background-color: #808080;
  color: white;
}

@media (max-width: 480px) {
  body {
    margin-top: 20%;
  }

  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;
  }

  .menu img {
    /* max-height: 100%; */
    height: 30px;
  }

  .button-container {
    flex-direction: column;
    align-items: center;
  }

  .button {
    width: 80%;
    max-width: 300px;
  }

  .faq-container {
    max-width: 800px;
    /* margin: 0 auto; */
    margin-left: 10%;
    margin-right: 10%;
  }
}
