@charset "utf-8";
body {
  margin: 0
}
/* font */
.zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}
header h1 {
  margin: 20px 0 0 0;
}
header {
  border-bottom: solid 14px #AADEB6;
}
header .header-inner {
  width: 98%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 0 0 2%;
}
/*  フッター グロナビ  */
footer .header-inner {
  width: 98%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 0 0 2%;
}


header .logo {
  width: 330px;
  height: auto;
}
main {
  width: 100%;
}
main .main-inner {
  width: 92%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 1%;
}
main .art-Basic-Buttons {
  width: 100%;
  margin: 20px auto;
}
main .art-Basic-Buttons a {
  display: block;
  width: 80%;
  max-width: 300px;
  margin: 0 auto;
  padding: 12px 4px;
  text-decoration: none;
  background-color: #AADEB6;
  text-align: center;
  color: #237600;
}
main .art-Basic-Buttons a:hover {
  color: #1B5C00;
  text-decoration: none;
  background-color: #93CFA0;
}
main h1, main h2 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}
main h1 {
  font-size: 24px;
}
footer {
  border-top: solid 10px #cccccc;
  margin: 60px auto 0 auto;
}
footer .footer-inner {
  max-width: 1000px;
  margin: 20px auto 0 auto;
  padding: 20px;
}
footer .gaikan {
  width: 300px;
  height: auto;
}
footer iframe {
  width: 600px;
  height: 400px;
}
footer .footer-yoko2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
}
footer .footer-yoko2 .box1 {
  flex: 0 0 auto;
  width: 70%;
}
footer .footer-yoko2 .box2 {
  flex: 0 0 auto;
  width: 30%;
}
footer .footer-yoko2 .box3 {
  flex: 0 0 auto;
  width: 70%;
}
footer .footer-yoko2 .box4 {
  flex: 0 0 auto;
  width: 30%;
}
/* ==========================================
   モバイルサイズ（768px以下）
========================================== */
@media screen and (max-width: 768px) {
  header .logo {
    width: 180px;
    height: auto;
  }
  main h1 {
    font-size: 16px;
  }
  footer .footer-inner {
    padding: 2%;
  }
  footer .gaikan {
    width: 100%;
    height: auto;
  }
  footer iframe {
    width: 100%;
    height: 400px;
  }
  footer .footer-yoko2 {
    display: block;
  }
  footer .footer-yoko2 .box1 {
    flex: none;
    width: 100%;
  }
  footer .footer-yoko2 .box2 {
    flex: none;
    width: 100%;
  }
  footer .footer-yoko2 .box3 {
    flex: none;
    width: 100%;
  }
  footer .footer-yoko2 .box4 {
    flex: none;
    width: 100%;
  }
}
/* ==========================================
ハンバーガーメニュー
   PCサイズ（基本スタイル）
====================== */
.global-nav {
  background-color: #FFFFFF;
  padding: 15px 0 15px 0;
  position: relative;
}
.global-nav__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 6px;
}
.global-nav__item a {
  display: block;
  color: #333333;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  padding: 10px 10px;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
}
.global-nav__item a:hover {
  background-color: #eeeeee;
}
/* PCではボタンとチェックボックスを非表示 */
.nav-toggle, .nav-btn {
  display: none;
}
/*    モバイルサイズ（768px以下）=================== */
@media screen and (max-width: 768px) {
  .global-nav {
    display: flex;
    justify-content: flex-end; /* ボタンを右寄せ */
    padding: 0;
    min-height: 0;
  }
  /* ハンバーガーボタンの表示設定 */
  .nav-btn {
    display: block;
    position: fixed;
    top: 30px;
    right: 20px;
    width: 34px;
    height: 24px;
    cursor: pointer;
    z-index: 1001;
  }
  /* 三本線の共通スタイル */
  .nav-btn span {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #333333;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }
  /* 三本線の初期位置 */
  .nav-btn span:nth-child(1) {
    top: 0;
  }
  .nav-btn span:nth-child(2) {
    top: 10px;
  }
  .nav-btn span:nth-child(3) {
    top: 20px;
  }
  /* メニューリスト（初期状態は右側に隠す） */
  .global-nav__list {
    display: flex;
    flex-direction: column; /* 縦並び */
    justify-content: flex-start;
    align-items: stretch;
    position: fixed;
    top: 0;
    right: -100%; /* 画面の外に配置 */
    width: 80%; /* メニューの幅 */
    height: 100vh;
    background-color: #eeeeee;
    padding-top: 80px; /* ボタンと被らないよう上部に余白 */
    gap: 0;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
  }
  .global-nav__item {
    text-align: center;
    border-bottom: 1px solid #444;
  }
  .global-nav__item a {
    display: block;
    color: #333333;
    text-decoration: none;
    border-radius: 0;
    padding: 20px 0;
    font-size: 14px;
  }
  /* ------------------------------------------
     開閉時の動き（チェックボックス連動）
  ------------------------------------------ */
  /* チェックが入ったらメニューを画面内にスライド */
  .nav-toggle:checked ~ .global-nav__list {
    right: 0;
  }
  /* 三本線を「×」マークに変形 */
  .nav-toggle:checked ~ .nav-btn span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .nav-toggle:checked ~ .nav-btn span:nth-child(2) {
    opacity: 0; /* 真ん中の線を消す */
  }
  .nav-toggle:checked ~ .nav-btn span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}
/* ================================================= */