header {
  background: linear-gradient(90deg, #38761d, #66cdaa);
  color: white;
  position: relative;
}

.menu-toggle {
  font-size: 24px;
  cursor: pointer;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 1001;
}

.ddmenu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 250px;
  height: 100%;
  background: #38761d;
  color: white;
  padding: 20px;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
}

.ddmenu.open {
  transform: translateX(0); /* メニューがスライドイン */
}

/* リンクのスタイル */
.ddmenu li {
  list-style: none;
  margin: 10px 0;
}

.ddmenu a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.ddmenu a:hover {
  color: #66cdaa;
}

/* オーバーレイ */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.overlay.open {
  display: block;
}

/* タブレットおよびモバイルでレスポンシブ調整 */
@media (max-width: 1024px) {
  .menu-toggle {
    display: block; /* タブレットおよびスマホで表示 */
  }

  .ddmenu {
    width: 70%; /* タブレットでは幅を広くする */
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .ddmenu {
    flex-direction: column; /* タブレットで縦に配置 */
    position: fixed;
    width: 300px; /* タブレット用の幅 */
  }

  .menu-toggle {
    font-size: 28px; /* タブレットではボタンを少し大きく */
  }
}

/* PC版ではハンバーガーメニューを非表示 */
@media (min-width: 1025px) {
  .menu-toggle {
    display: none; /* PC版では非表示 */
  }

  .ddmenu {
    position: static;
    transform: none;
    flex-direction: row;
    background: none;
    width: auto;
    height: auto;
    padding: 0;
  }

  .overlay {
    display: none; /* PCではオーバーレイなし */
  }
}
        
h2 {
  color: #38761d;
  text-align: center;
}
        
footer {
  background-color: #38761d; /* フッダー背景色 */
  color: white; /* テキスト色 */
  padding: 20px 0;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap; /* モバイル対応 */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  margin: 10px;
}

.footer-section h4 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #66cdaa; /* 見出しのアクセントカラー */
}

.footer-section p, .footer-section ul, .footer-bottom {
  font-size: 16px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 5px 0;
}

.footer-section ul li a {
  text-decoration: none;
  text-decoration: underline;
  color: #000; /* 必要に応じて他の色に変更 */
  color: white;
}

.footer-section ul li a:hover {
  color: #66cdaa; /* リンクホバー時の色 */
}

.footer-bottom {
  text-align: center;
  padding-top: 10px;
  font-size: 12px;
  border-top: 1px solid #66cdaa; /* 上部に区切り線を追加 */
  margin-top: 10px;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column; /* スマホでは縦に配置 */
    text-align: center;
  }
}
#back-to-top {
  position: fixed; /* 固定表示 */
  bottom: 30px; /* 下からの距離 */
  right: 30px; /* 右からの距離 */
  background-color: #38761d; /* 背景色 */
  color: white; /* テキスト色 */
  padding: 10px 15px; /* ボタンの余白 */
  border-radius: 5px; /* ボタンの角を丸める */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* ボックスシャドウ */
  font-size: 14px; /* フォントサイズ */
  text-align: center;
  cursor: pointer; /* クリック可能なカーソル */
  z-index: 1000; /* 他の要素より前面に表示 */
  display: none; /* 初期状態は非表示 */
  transition: opacity 0.3s ease; /* フェードイン・アウトのアニメーション */
}

#back-to-top:hover {
  background-color: #66cdaa; /* ホバー時の背景色 */
  color: #fff; /* ホバー時の文字色 */
}
        
body {
  font-size: 18px; /* ベースフォントサイズ */
}
h1 {
  font-size: 2rem; /* 約32px */
}
h4 {
  font-size: 1.2rem; /* 約32px */
  }
p {
  font-size: 1rem; /* 約16px */
}

/* --- メディアクエリは最後に --- */
@media (max-width: 768px) {
  h1 {
    font-size: 1.5rem !important;
  }
  h2 {
    font-size: 1rem !important;
  }
  h4 {
  font-size: 0.95rem; /* 約32px */
  }
  p {
    font-size: 0.9rem !important;
  }

  .box2 img {
    width: 75%; /* モバイルでの幅調整 */
  }
  .box img {
    width: 100%; /* モバイルでの幅調整 */
  }
}

        
.black{
    color: black;
    font-size: 18px;
        }
h1, h2 {
  margin-top: 20px;
  margin-bottom: 20px;
}