@charset "UTF-8";

body {
  background-color: #EDF1F3;
  font-family: "Noto Serif JP", serif;
  margin: 0;
  color: #2f2f2f;
}

header {
  background-color:#f0be89;
}
.logo {
  position: fixed;   /* ハンバーガーと同じく固定 */
  top: 20px;
  left: 20px;        /* 左上に配置 */
  width: 250px;       /* 好きなサイズに調整 */
  height: auto;      /* 縦横比を維持 */
  z-index: 30;       /* ハンバーガーより前面に出すなら大きめに */
}
@media screen and (max-width: 768px) {
  .menu {
    width: 85vw;          /* 画面幅に応じて */
    padding: 15px;
  }

  .menu ul {
    margin-top: 40px;
  }

  .menu li {
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .menu {
    width: 100vw;         /* スマホは全幅 */
  }

  .menu li {
    font-size: 0.95rem;
  }
}

.menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100%;
  background-color: #eee8aa;
  color: #333;
  transition: right 0.3s ease;
  padding: 20px;
  box-sizing: border-box;
  z-index: 10;
  overflow-y: auto;
  box-shadow: -4px 0 12px rgba(0,0,0,0.2);
}

.menu.open {
  right: 0;
}

.hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 30px;
  cursor: pointer;
  z-index: 20;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #c9c9c9;
  margin: 5px 0;
  transition: 0.4s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.menu ul {
  list-style-type: none;
  padding: 0;
  margin-top: 50px;
}

.menu li {
  padding: 10px 0;
  border-bottom: 1px solid #444;
}

.menu li a {
  color: #333;
  text-decoration: none;
  display: block;
}

/* アコーディオン用 */
.sub-items {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 15px;
}



.category.open .sub-items {
  max-height: 1000px;
}

.toggle { cursor: pointer; font-weight: bold; }


.report {
  max-width: 820px;
  margin: 160px auto 20px;
  padding: 50px 60px;
  background-color: #faf9f6; /* 和紙っぽい白 */
  border: 1px solid #e0d8c8;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  text-align: left;
  line-height: 1.9;
}

.report h1 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  border-bottom: 3px double #b89b5e;
  padding-bottom: 15px;
}

.report h2 {
  font-size: 1.3rem;
  margin-top: 50px;
  margin-bottom: 15px;
  color: #4b3f2f;
  border-left: 6px solid #b89b5e;
  padding-left: 12px;
}

.report h3 {
  font-size: 1.05rem;
  font-weight: normal;
  color: #555;
  margin-bottom: 20px;
}

.report p {
  margin-bottom: 1.6em;
}

.report img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 25px auto 40px;
}

.field-voice {
  margin-top: 60px;
  padding: 30px 35px;
  background-color: #f3efe6;
  border-left: 6px solid #8c6f3d;
  font-size: 0.95rem;
}

.nav {
  max-width: 680px;
  margin: 40px auto 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav a {
  font-size: 1.3rem;
  color: #7a6a53;           /* 和紙っぽい渋め茶 */
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid #d6cbb8;
  border-radius: 6px;
  background: #fffdfa;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.nav a:hover {
  color: #3f3426;           /* 濃い焦げ茶 */
  background: #f3ede3;
  border-color: #bfae94;
}

