@charset "UTF-8";
@font-face {
  font-family: 'YourFont';
  src: url('your-font.woff2') format('woff2');
  font-display: swap;
}
body {
  font-family: "Noto Sans Japanese", sans-serif;
  font-size: 16px;
  color: #444;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(50px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1;
}

/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time02 { animation-delay: 0.4s; }
.delay-time04 { animation-delay: 0.6s; }
.imgbox{ opacity: 0; }
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*-- メインカラー　#96d232 --*/
/*-------------------------------------------------------------------*/
/*-------------------------------------------------------------------*/
/*----------------------- スマホ 縦（portrait） -----------------------*/
/*-------------------------------------------------------------------*/
/*-------------------------------------------------------------------*/

@media screen and (max-width: 749px) and (orientation: portrait) {

header#pc { display: none; }
header#sp {
  display: block;
  width: 100%;
  height: 80px;
  background-color: #96d232;
}
header#sp .header {
  display: block;
  width: 300px;
  padding: 25px;
}
header#sp .header h1 img {
  display: block;
  width: 100%;
}
/*　ハンバーガーメニューボタン　*/
.hamburger {
   display: block;
   position: fixed;
   z-index: 3;
   top: 15px;
   right: 20px;
   width: 40px;
   height: 40px;
   cursor: pointer;
   text-align: center;
   background-color: #96d232;
   padding: 5px;
}
.hamburger span {
   display: block;
   position: absolute;
   width: 20px;
   height: 2px ;
   left: 10px;
   background: #fff;
   -webkit-transition: 0.3s ease-in-out;
   -moz-transition: 0.3s ease-in-out;
   transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1) { top: 10px; }
.hamburger span:nth-child(2) { top: 19px; }
.hamburger span:nth-child(3) { top: 28px; }
/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
   top: 18px;
   left: 10px;
   background: white;
   -webkit-transform: rotate(-45deg);
   -moz-transform: rotate(-45deg);
   transform: rotate(-45deg);
}
.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
   top: 18px;
   background: white;
   -webkit-transform: rotate(45deg);
   -moz-transform: rotate(45deg);
   transform: rotate(45deg);
}
/* メニュー背景　*/
nav.globalMenuSp {
   position: fixed;
   z-index: 2;
   top: 0;
   left: 0;
   background-color: #96d232;
   text-align: left;
   width: 100%;
   height: auto;
   transform: translateX(100%);
   transition: all 0.6s;
   font-size: 16px;
   padding: 20px 0;
}
nav.globalMenuSp ul {
   margin: 0 auto;
   padding: 0;
   width: 100%;
}
nav.globalMenuSp ul li {
   list-style-type: none;
   padding: 0;
   width: 80%;
   display: block;
   margin: 0 auto;
   transition: .4s all;
   border-bottom: 1px solid white;
}
nav.globalMenuSp ul li a {
   display: block;
   padding: 30px;
   color: white;
   text-decoration : none;
}
nav.globalMenuSp ul.link {
  display: flex;
  width: 80%;
  margin: 0 auto;
}
nav.globalMenuSp ul.link li {
   list-style-type: none;
   border-style: none;
   width: 100px;
}
nav.globalMenuSp.active {
   opacity: 100;
   display: block;
   transform: translateX(0%);
}

/*----------------------   top   ----------------------*/

#top {
  display: block;
  width: 100%;
  height: auto; /* ← 高さ固定を外す（これが一番重要！） */
  min-height: 200px; /* ← 最低でも画面1枚分は確保 */
  background-size: contain; /* ← 画像全体見せたい → containにする */
  background-repeat: no-repeat;
  background-position: bottom center;
  background-attachment: scroll; /* ← これ入れないと変な固定になることがある */
  background-image: url('../image/sp/top02.jpg');
  background-size: 100%;
  background-repeat: no-repeat;
}
#top .inner {
  display: block;
  width: 180px;
  margin: 0 auto;
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  position: relative;
  z-index: 0;
  line-height: 200px;
}
#top .inner h2 {
  text-align: center;
  color: #96d232;
  font-size: 30px;
  position: relative;
  z-index: 1;            /* 疑似要素より上にテキストを出すため */
  font-weight: bold;
}
#top .inner h2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  /* 中心を基準に拡大縮小 */
  transform: translate(-50%, -50%);
  width: 120%;    /* テキスト幅より少し大きめ */
  height: 30%;    /* 縦に潰した楕円 */
  background: rgba(255,255,255,0.75); /* お好みで色と透過度を調整 */
  border-radius: 50%;          /* 完全な楕円形に */
  filter: blur(8px);           /* ぼかし量を調整 */
  z-index: -1;                 /* テキストの背後に配置 */
}
nav {
  font-size: 12px;
  display: block;
  margin: 0 auto;
  padding: 24px 0 0;
  width: 90%;
  color: #999;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb li { color: #96d232; }
.breadcrumb li:not(:last-of-type)::after {
  content: "/";
  margin: 0 .6em; /* 記号の左右の余白 */
  color: #444; /* 記号の色 */
}
.breadcrumb li a {
  color: #444; /* 記号の色 */
  transition: .2s;
}
.breadcrumb li a:hover {
  transition: .2s;
  color: #96d232;
}

/*----------------------   content01   ----------------------*/

#content01 ,
#content02 {
  display: block;
  width: 90%;
  margin: 38px auto 0;
  font-size: 14px;
  line-height: 2;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}
#content01 h2 ,
#content02 h2 {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 26px;
  color: #96d232;
  position: relative;
  padding-left: 15px;
  margin-bottom: 30px;
  line-height: 1.25;
}
#content01 h2:before ,
#content02 h2:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: -10px;
  width: 6px;
  height: 100%;
  border-radius: 5px;
  background: #96d232;
}
#content01 h2 br.sp { display: none; }
#content01 .container .qa-container ,
#content02 .container .qa-container {
  margin-bottom: 12px;
  border: 1px solid #96d232;
  border-radius: 4px;
  overflow: hidden;
}
#content01 .container .qa-container input ,
#content02 .container .qa-container input { display: none; }
#content01 .container .qa-container label ,
#content02 .container .qa-container label {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 12px 16px;
  position: relative;
  user-select: none;
  gap: 12px;
  min-height: 48px; /* 最低高さを確保 */
  box-sizing: border-box;
}
#content01 .container .qa-container label h3.title ,
#content02 .container .qa-container label h3.title {
  flex-grow: 1;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  margin: 0;
  background-image: url('../image/q_icon.svg');
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: left center;
  padding-left: 32px;
  padding-right: 32px;
  word-break: break-word;
}
#content01 .container .qa-container label::after ,
#content02 .container .qa-container label::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  position: absolute;
  right: 16px;
  top: 50%;
  margin-top: -5px;
}
#content01 .container .qa-container input:checked + label::after ,
#content02 .container .qa-container input:checked + label::after { transform: rotate(-135deg);　}
#content01 .container .qa-container div ,
#content02 .container .qa-container div {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 16px;
  transition: max-height 0.4s ease, opacity 0.3s ease 0.1s, padding 0.3s ease 0.1s;
  box-sizing: border-box;
}
#content01 .container .qa-container input:checked ~ div ,
#content02 .container .qa-container input:checked ~ div {
  max-height: 200px; /* 最大表示高さ。必要に応じて調整 */
  opacity: 1;
  padding: 12px 16px 16px;
}
#content01 .container .qa-container p.answer ,
#content02 .container .qa-container p.answer {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  background-image: url('../image/a_icon.svg');
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: left center;
  padding-left: 32px;
  padding-right: 32px;
  word-break: break-word;
  color: #000;
}
#content01 .container .qa-container label h3.title,
#content01 .container .qa-container p.answer ,
#content02 .container .qa-container label h3.title,
#content02 .container .qa-container p.answer {
  word-wrap: break-word;
  white-space: normal;
}
#content01 .container .qa-container div hr.divider ,
#content02 .container .qa-container div hr.divider {
  border: none;
  border-top: 1px solid #96d232;
  margin: 0 0 16px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

/*----------------------   content04   ----------------------*/

#content04 {
  display: block;
  width: 90%;
  padding: 25px 0;
  margin: 75px auto;
  background-image: linear-gradient(60deg, rgba(150, 210, 50, 1), rgba(210, 255, 125, 1));
  border-radius: 30px;
}
#content04 .inner {
  display: block;
  width: 85%;
  margin: 40px auto;
}
#content04 .inner .inner_box { display: block; }
#content04 .inner .inner_box div h2 {
  text-align: center;
  line-height: 1;
  display: block;
  width: 50%;
  height: auto;
  padding: 20px 0;
  margin: 25px auto;
  background-image: url('../image/title_green.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: white;
  font-size: 20px;
}
#content04 .inner .inner_box div h2 span { font-size: 14px; }
#content04 .inner .inner_box div p {
  display: block;
  margin: 0 auto;
  padding: 0;
  line-height: 1.75;
  font-size: 14px;
  color: white;
  font-feature-settings: "palt";
}
#content04 .inner .inner_box a.link {
  display: block;
  text-align: center;
  color: white;
  text-decoration: none;
  font-size: 16px;
  background-color: #96d232;
  padding: 20px;
  margin: 20px 0 40px;
  border-radius: 50px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .2);
  transition: .3s;
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  transition: .3s;
}
#content04 .inner .inner_box a.link_button {
  display: block;
  width: 100%;
  text-decoration: none;
  margin: 0 auto;
  padding: 10px;
  transition: .3s;
}

/*----------------------   footer   ----------------------*/

footer {
  display: block;
  width: 90%;
  margin: 0 auto;
}
footer .foot_logo {
  display: block;
  width: 70%;
  margin: 0 auto;
}
footer p.copyright {
  text-align: center;
  margin: 20px auto;
  font-size: 10px;
}
footer ul.link {
  display: flex;
  width: 50%;
  justify-content: space-between; /* ここを追加！ */
  margin: 25px auto;
}
footer ul.link li {
  list-style: none;
  display: inline-block;
  vertical-align: middle;
  flex: 1;
  margin: auto 0;
  padding: 0 10px;
  transition-duration: 0.3s;
}

#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 20px;
  bottom: -50px;
  background: #96d232;
  opacity: 0.6;
  border-radius: 50%;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 23px;
  color: #fff;
  position: absolute;
  width: 23px;
  height: 23px;
  top: -3px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

}

/*-------------------------------------------------------------------*/
/*-------------------------------------------------------------------*/
/*----------------------- スマホ 横（landscape）-----------------------*/
/*-------------------------------------------------------------------*/
/*-------------------------------------------------------------------*/

@media screen and (max-width: 749px) and (orientation: landscape) {

header#pc { display: none; }
header#sp {
  display: block;
  width: 100%;
  height: 100px;
  background-color: #96d232;
}
header#sp .header {
  display: block;
  width: 400px;
  padding: 30px;
}
header#sp .header h1 img {
  display: block;
  width: 100%;
}
/*　ハンバーガーメニューボタン　*/
.hamburger {
   display: block;
   position: fixed;
   z-index: 3;
   top: 15px;
   right: 15px;
   width: 60px;
   height: 60px;
   cursor: pointer;
   text-align: center;
   background-color: #96d232;
   padding: 5px;
}
.hamburger span {
   display: block;
   position: absolute;
   width: 30px;
   height: 3px;
   left: 15px;
   background: #fff;
   -webkit-transition: 0.3s ease-in-out;
   -moz-transition: 0.3s ease-in-out;
   transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 30px; }
.hamburger span:nth-child(3) { top: 45px; }
/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
   top: 28px;
   left: 15px;
   background: white;
   -webkit-transform: rotate(-45deg);
   -moz-transform: rotate(-45deg);
   transform: rotate(-45deg);
}
.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
   top: 28px;
   background: white;
   -webkit-transform: rotate(45deg);
   -moz-transform: rotate(45deg);
   transform: rotate(45deg);
}
/* メニュー背景　*/
nav.globalMenuSp {
   position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* 画面全体をカバー */
  height: 100vh;
  /* 余分に長いメニューを縦にスクロールさせる */
  overflow-y: auto;
  /* iOSで慣性スクロールさせる */
  -webkit-overflow-scrolling: touch;
  background-color: #96d232;
  transform: translateX(100%);
  transition: all 0.6s;
  font-size: 24px;
  padding: 20px 0;
  z-index: 2;
}
nav.globalMenuSp ul {
   margin: 0 auto;
   padding: 0;
   width: 100%;
}
nav.globalMenuSp ul li {
   list-style-type: none;
   padding: 0;
   width: 80%;
   display: block;
   margin: 0 auto;
   transition: .4s all;
   border-bottom: 1px solid white;
}
nav.globalMenuSp ul li a {
   display: block;
   padding: 30px;
   color: white;
   text-decoration :none;
}
nav.globalMenuSp ul.link {
   display: flex;
   width: 80%;
   margin: 20px auto;
}
nav.globalMenuSp ul.link li {
   list-style-type: none;
   border-style: none;
   width: 26%;
}
nav.globalMenuSp.active {
   opacity: 100;
   display: block;
   transform: translateX(0%);
}

/*----------------------   top   ----------------------*/

#top {
  display: block;
  width: 100%;
  height: auto; /* ← 高さ固定を外す（これが一番重要！） */
  min-height: 380px; /* ← 最低でも画面1枚分は確保 */
  background-size: contain; /* ← 画像全体見せたい → containにする */
  background-repeat: no-repeat;
  background-position: bottom center;
  background-attachment: scroll; /* ← これ入れないと変な固定になることがある */
  background-image: url('../image/sp/top02.jpg');
  background-size: 100%;
  background-repeat: no-repeat;
}
#top .inner {
  display: block;
  width: 380px;
  margin: 0 auto;
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  position: relative;
  z-index: 0;
  line-height: 300px;
}
#top .inner h2 {
  text-align: center;
  color: #96d232;
  font-size: 46px;
  position: relative;
  z-index: 1;            /* 疑似要素より上にテキストを出すため */
  font-weight: bold;
}
#top .inner h2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  /* 中心を基準に拡大縮小 */
  transform: translate(-50%, -50%);
  width: 110%;    /* テキスト幅より少し大きめ */
  height: 30%;    /* 縦に潰した楕円 */
  background: rgba(255,255,255,0.75); /* お好みで色と透過度を調整 */
  border-radius: 50%;          /* 完全な楕円形に */
  filter: blur(8px);           /* ぼかし量を調整 */
  z-index: -1;                 /* テキストの背後に配置 */
}
nav {
  font-size: 16px;
  display: block;
  margin: 0 auto;
  padding: 24px 0 40px;
  width: 90%;
  color: #999;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb li { color: #96d232; }
.breadcrumb li:not(:last-of-type)::after {
  content: "/";
  margin: 0 .6em; /* 記号の左右の余白 */
  color: #444; /* 記号の色 */
}
.breadcrumb li a {
  color: #444; /* 記号の色 */
  transition: .2s;
}
.breadcrumb li a:hover {
  transition: .2s;
  color: #96d232;
}

/*----------------------   content01   ----------------------*/

#content01 ,
#content02 {
  display: block;
  width: 90%;
  margin: 38px auto 0;
  font-size: 18px;
  line-height: 2;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}
#content01 h2 ,
#content02 h2 {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  color: #96d232;
  position: relative;
  padding-left: 15px;
  margin-bottom: 30px;
  line-height: 1.25;
}
#content01 h2:before ,
#content02 h2:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: -10px;
  width: 6px;
  height: 100%;
  border-radius: 5px;
  background: #96d232;
}
#content01 .container .qa-container ,
#content02 .container .qa-container {
  margin-bottom: 12px;
  border: 1px solid #96d232;
  border-radius: 4px;
  overflow: hidden;
}
#content01 .container .qa-container input ,
#content02 .container .qa-container input { display: none; }
#content01 .container .qa-container label ,
#content02 .container .qa-container label {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 12px 16px;
  position: relative;
  user-select: none;
  gap: 12px;
  min-height: 48px; /* 最低高さを確保 */
  box-sizing: border-box;
}
#content01 .container .qa-container label h3.title ,
#content02 .container .qa-container label h3.title {
  flex-grow: 1;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  margin: 0;
  background-image: url('../image/q_icon.svg');
  background-repeat: no-repeat;
  background-size: 28px 28px;
  background-position: left center;
  padding-left: 32px;
  padding-right: 32px;
  word-break: break-word;
}
#content01 .container .qa-container label::after ,
#content02 .container .qa-container label::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  position: absolute;
  right: 16px;
  top: 50%;
  margin-top: -5px;
}
#content01 .container .qa-container input:checked + label::after ,
#content02 .container .qa-container input:checked + label::after { transform: rotate(-135deg);　}
#content01 .container .qa-container div ,
#content02 .container .qa-container div {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 16px;
  transition: max-height 0.4s ease, opacity 0.3s ease 0.1s, padding 0.3s ease 0.1s;
  box-sizing: border-box;
}
#content01 .container .qa-container input:checked ~ div ,
#content02 .container .qa-container input:checked ~ div {
  max-height: 200px; /* 最大表示高さ。必要に応じて調整 */
  opacity: 1;
  padding: 12px 16px 16px;
}
#content01 .container .qa-container p.answer ,
#content02 .container .qa-container p.answer {
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  background-image: url('../image/a_icon.svg');
  background-repeat: no-repeat;
  background-size: 28px 28px;
  background-position: left center;
  padding-left: 32px;
  padding-right: 32px;
  word-break: break-word;
  color: #000;
}
#content01 .container .qa-container label h3.title,
#content01 .container .qa-container p.answer ,
#content02 .container .qa-container label h3.title,
#content02 .container .qa-container p.answer {
  word-wrap: break-word;
  white-space: normal;
  padding: 10px 48px;
}
#content01 .container .qa-container div hr.divider ,
#content02 .container .qa-container div hr.divider {
  border: none;
  border-top: 1px solid #96d232;
  margin: 0 0 16px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

/*----------------------   content04   ----------------------*/

#content04 {
  display: block;
  width: 90%;
  padding: 60px 0;
  margin: 80px auto;
  background-image: linear-gradient(60deg, rgba(150, 210, 50, 1), rgba(210, 255, 125, 1));
  border-radius: 30px;
}
#content04 .inner {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 90%;
  margin: 0 auto;
}
#content04 .inner .inner_box {
  display: block;
  width: 48%;
  margin: 0;
  padding: 0;
}
#content04 .inner .inner_box div h2 {
  text-align: center;
  line-height: 1;
  display: block;
  width: 80%;
  height: auto;
  padding: 20px 0;
  margin: 0 auto;
  background-image: url('../image/title_green.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: white;
  font-size: 28px;
}
#content04 .inner .inner_box div h2 span { font-size: 18px; }
#content04 .inner .inner_box div p {
  font-size: 18px;
  line-height: 1.75;
  color: white;
  padding-top: 20px;
}
#content04 .inner .inner_box a.link {
  font-size: 16px;
  display: block;
  text-align: center;
  width: 100%;
  color: white;
  text-decoration: none;
  background-color: #96d232;
  padding: 15px 40px;
  margin: 20px 0 0;
  border-radius: 50px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .2);
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  transition: .3s;
}
#content04 .inner .inner_box a.link_button {
  display: block;
  width: 90%;
  text-decoration: none;
  margin: 60px auto 0;
  padding: 0;
  transition: .3s;
}
#content04 .inner .inner_box a.link_button:hover {
  filter: drop-shadow( 3px 3px 3px rgba(0, 0, 0, .3));
  transform: translateY(-5px);
  transition-duration: 0.3s;
}

/*----------------------   footer   ----------------------*/

footer {
  display: block;
  width: 90％;
  margin: 0 auto;
}
footer .foot_logo {
  display: block;
  width: 50%;
  margin: 0 auto;
}
footer p.copyright {
  text-align: center;
  margin: 20px auto 40px;
  font-size: 14px;
}
footer ul.link {
  display: flex;
  width: 33%;
  justify-content: space-between; /* ここを追加！ */
  margin: 40px auto;
}
footer ul.link li {
  list-style: none;
  display: inline-block;
  vertical-align: middle;
  flex: 1;
  margin: auto 0;
  padding: 0 20px;
  transition-duration: 0.3s;
}

#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 20px;
  bottom: -50px;
  background: #96d232;
  opacity: 0.6;
  border-radius: 50%;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 23px;
  color: #fff;
  position: absolute;
  width: 23px;
  height: 23px;
  top: -3px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

}

/*----------------------------------------------------------------------*/
/*----------------------------------------------------------------------*/
/*---------------------- タブレット 縦（portrait） -----------------------*/
/*----------------------------------------------------------------------*/
/*----------------------------------------------------------------------*/

@media screen and (min-width: 750px) and (max-width: 1024px) and (orientation: portrait) {

header#pc { display: none; }
header#sp {
  display: block;
  width: 100%;
  height: 100px;
  background-color: #96d232;
}
header#sp .header {
  display: block;
  width: 400px;
  padding: 30px;
}
header#sp .header h1 img {
  display: block;
  width: 100%;
}
/*　ハンバーガーメニューボタン　*/
.hamburger {
   display: block;
   position: fixed;
   z-index: 3;
   top: 15px;
   right: 15px;
   width: 60px;
   height: 60px;
   cursor: pointer;
   text-align: center;
   background-color: #96d232;
   padding: 5px;
}
.hamburger span {
   display: block;
   position: absolute;
   width: 30px;
   height: 3px;
   left: 15px;
   background: #fff;
   -webkit-transition: 0.3s ease-in-out;
   -moz-transition: 0.3s ease-in-out;
   transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 30px; }
.hamburger span:nth-child(3) { top: 45px; }
/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
   top: 28px;
   left: 15px;
   background: white;
   -webkit-transform: rotate(-45deg);
   -moz-transform: rotate(-45deg);
   transform: rotate(-45deg);
}
.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
   top: 28px;
   background: white;
   -webkit-transform: rotate(45deg);
   -moz-transform: rotate(45deg);
   transform: rotate(45deg);
}
/* メニュー背景　*/
nav.globalMenuSp {
   position: fixed;
   z-index: 2;
   top: 0;
   left: 0;
   background-color: #96d232;
   text-align: left;
   width: 100%;
   height: auto;
   transform: translateX(100%);
   transition: all 0.6s;
   font-size: 24px;
   padding: 20px 0;
}
nav.globalMenuSp ul {
   margin: 0 auto;
   padding: 0;
   width: 100%;
}
nav.globalMenuSp ul li {
   list-style-type: none;
   padding: 0;
   width: 80%;
   display: block;
   margin: 0 auto;
   transition: .4s all;
   border-bottom: 1px solid white;
}
nav.globalMenuSp ul li a {
   display: block;
   padding: 30px;
   color: white;
   text-decoration :none;
}
nav.globalMenuSp ul.link {
   display: flex;
   width: 80%;
   margin: 20px auto;
}
nav.globalMenuSp ul.link li {
   list-style-type: none;
   border-style: none;
   width: 16%;
}
nav.globalMenuSp.active {
   opacity: 100;
   display: block;
   transform: translateX(0%);
}

/*----------------------   top   ----------------------*/

#top {
  display: block;
  width: 100%;
  height: auto; /* ← 高さ固定を外す（これが一番重要！） */
  min-height: 430px; /* ← 最低でも画面1枚分は確保 */
  background-size: contain; /* ← 画像全体見せたい → containにする */
  background-repeat: no-repeat;
  background-position: bottom center;
  background-attachment: scroll; /* ← これ入れないと変な固定になることがある */
  background-image: url('../image/sp/top02.jpg');
  background-size: 100%;
  background-repeat: no-repeat;
}
#top .inner {
  display: block;
  width: 400px;
  margin: 0 auto;
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  position: relative;
  z-index: 0;
  line-height: 430px;
}
#top .inner h2 {
  text-align: center;
  color: #96d232;
  font-size: 54px;
  position: relative;
  z-index: 1;            /* 疑似要素より上にテキストを出すため */
  font-weight: bold;
}
#top .inner h2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  /* 中心を基準に拡大縮小 */
  transform: translate(-50%, -50%);
  width: 120%;    /* テキスト幅より少し大きめ */
  height: 30%;    /* 縦に潰した楕円 */
  background: rgba(255,255,255,0.75); /* お好みで色と透過度を調整 */
  border-radius: 50%;          /* 完全な楕円形に */
  filter: blur(8px);           /* ぼかし量を調整 */
  z-index: -1;                 /* テキストの背後に配置 */
}
nav {
  font-size: 16px;
  display: block;
  margin: 0 auto;
  padding: 24px 0 0;
  width: 90%;
  color: #999;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb li { color: #96d232; }
.breadcrumb li:not(:last-of-type)::after {
  content: "/";
  margin: 0 .6em; /* 記号の左右の余白 */
  color: #444; /* 記号の色 */
}
.breadcrumb li a {
  color: #444; /* 記号の色 */
  transition: .2s;
}
.breadcrumb li a:hover {
  transition: .2s;
  color: #96d232;
}

/*----------------------   content01   ----------------------*/

#content01 ,
#content02 {
  display: block;
  width: 90%;
  margin: 38px auto 0;
  font-size: 18px;
  line-height: 2;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}
#content01 h2 ,
#content02 h2 {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  color: #96d232;
  position: relative;
  padding-left: 15px;
  margin-bottom: 30px;
  line-height: 1.25;
}
#content01 h2:before ,
#content02 h2:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: -10px;
  width: 6px;
  height: 100%;
  border-radius: 5px;
  background: #96d232;
}
#content01 .container .qa-container ,
#content02 .container .qa-container {
  margin-bottom: 12px;
  border: 1px solid #96d232;
  border-radius: 4px;
  overflow: hidden;
}
#content01 .container .qa-container input ,
#content02 .container .qa-container input ,
#content01 h2 br.sp { display: none; }
#content01 .container .qa-container label ,
#content02 .container .qa-container label {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 12px 16px;
  position: relative;
  user-select: none;
  gap: 12px;
  min-height: 48px; /* 最低高さを確保 */
  box-sizing: border-box;
}
#content01 .container .qa-container label h3.title ,
#content02 .container .qa-container label h3.title {
  flex-grow: 1;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  margin: 0;
  background-image: url('../image/q_icon.svg');
  background-repeat: no-repeat;
  background-size: 28px 28px;
  background-position: left center;
  padding-left: 32px;
  padding-right: 32px;
  word-break: break-word;
}
#content01 .container .qa-container label::after ,
#content02 .container .qa-container label::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  position: absolute;
  right: 16px;
  top: 50%;
  margin-top: -5px;
}
#content01 .container .qa-container input:checked + label::after ,
#content02 .container .qa-container input:checked + label::after { transform: rotate(-135deg);　}
#content01 .container .qa-container div ,
#content02 .container .qa-container div {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 16px;
  transition: max-height 0.4s ease, opacity 0.3s ease 0.1s, padding 0.3s ease 0.1s;
  box-sizing: border-box;
}
#content01 .container .qa-container input:checked ~ div ,
#content02 .container .qa-container input:checked ~ div {
  max-height: 200px; /* 最大表示高さ。必要に応じて調整 */
  opacity: 1;
  padding: 12px 16px 16px;
}
#content01 .container .qa-container p.answer ,
#content02 .container .qa-container p.answer {
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  background-image: url('../image/a_icon.svg');
  background-repeat: no-repeat;
  background-size: 28px 28px;
  background-position: left center;
  padding-left: 32px;
  padding-right: 32px;
  word-break: break-word;
  color: #000;
}
#content01 .container .qa-container label h3.title,
#content01 .container .qa-container p.answer ,
#content02 .container .qa-container label h3.title,
#content02 .container .qa-container p.answer {
  word-wrap: break-word;
  white-space: normal;
  padding: 10px 48px;
}
#content01 .container .qa-container div hr.divider ,
#content02 .container .qa-container div hr.divider {
  border: none;
  border-top: 1px solid #96d232;
  margin: 0 0 16px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

/*----------------------   content04   ----------------------*/

#content04 {
  display: block;
  width: 90%;
  padding: 60px 0;
  margin: 80px auto;
  background-image: linear-gradient(60deg, rgba(150, 210, 50, 1), rgba(210, 255, 125, 1));
  border-radius: 30px;
}
#content04 .inner {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 90%;
  margin: 0 auto;
}
#content04 .inner .inner_box {
  display: block;
  width: 48%;
  margin: 0;
  padding: 0;
}
#content04 .inner .inner_box div h2 {
  text-align: center;
  line-height: 1;
  display: block;
  width: 80%;
  height: auto;
  padding: 20px 0;
  margin: 0 auto;
  background-image: url('../image/title_green.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: white;
  font-size: 28px;
}
#content04 .inner .inner_box div h2 span { font-size: 18px; }
#content04 .inner .inner_box div p {
  font-size: 18px;
  line-height: 1.75;
  color: white;
  padding-top: 20px;
}
#content04 .inner .inner_box a.link {
  font-size: 16px;
  display: block;
  text-align: center;
  width: 100%;
  color: white;
  text-decoration: none;
  background-color: #96d232;
  padding: 15px 40px;
  margin: 20px 0 0;
  border-radius: 50px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .2);
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  transition: .3s;
}
#content04 .inner .inner_box a.link_button {
  display: block;
  width: 90%;
  text-decoration: none;
  margin: 60px auto 0;
  padding: 0;
  transition: .3s;
}
#content04 .inner .inner_box a.link_button:hover {
  filter: drop-shadow( 3px 3px 3px rgba(0, 0, 0, .3));
  transform: translateY(-5px);
  transition-duration: 0.3s;
}

/*----------------------   footer   ----------------------*/

footer {
  display: block;
  width: 90％;
  margin: 0 auto;
}
footer .foot_logo {
  display: block;
  width: 50%;
  margin: 0 auto;
}
footer p.copyright {
  text-align: center;
  margin: 20px auto 40px;
  font-size: 14px;
}
footer ul.link {
  display: flex;
  width: 33%;
  justify-content: space-between; /* ここを追加！ */
  margin: 40px auto;
}
footer ul.link li {
  list-style: none;
  display: inline-block;
  vertical-align: middle;
  flex: 1;
  margin: auto 0;
  padding: 0 20px;
  transition-duration: 0.3s;
}

#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 20px;
  bottom: -50px;
  background: #96d232;
  opacity: 0.6;
  border-radius: 50%;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 23px;
  color: #fff;
  position: absolute;
  width: 23px;
  height: 23px;
  top: -3px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

}

/*----------------------------------------------------------------------*/
/*----------------------------------------------------------------------*/
/*---------------------- タブレット 横（landscape）-----------------------*/
/*----------------------------------------------------------------------*/
/*----------------------------------------------------------------------*/

@media screen and (min-width: 750px) and (max-width: 1024px) and (orientation: landscape) {

header#pc { display: none; }
header#sp {
  display: block;
  width: 100%;
  height: 100px;
  background-color: #96d232;
}
header#sp .header {
  display: block;
  width: 400px;
  padding: 30px;
}
header#sp .header h1 img {
  display: block;
  width: 100%;
}
/*　ハンバーガーメニューボタン　*/
.hamburger {
   display: block;
   position: fixed;
   z-index: 3;
   top: 15px;
   right: 15px;
   width: 60px;
   height: 60px;
   cursor: pointer;
   text-align: center;
   background-color: #96d232;
   padding: 5px;
}
.hamburger span {
   display: block;
   position: absolute;
   width: 30px;
   height: 3px;
   left: 15px;
   background: #fff;
   -webkit-transition: 0.3s ease-in-out;
   -moz-transition: 0.3s ease-in-out;
   transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 30px; }
.hamburger span:nth-child(3) { top: 45px; }
/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
   top: 28px;
   left: 15px;
   background: white;
   -webkit-transform: rotate(-45deg);
   -moz-transform: rotate(-45deg);
   transform: rotate(-45deg);
}
.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
   top: 28px;
   background: white;
   -webkit-transform: rotate(45deg);
   -moz-transform: rotate(45deg);
   transform: rotate(45deg);
}
/* メニュー背景　*/
nav.globalMenuSp {
   position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* 画面全体をカバー */
  height: 100vh;
  /* 余分に長いメニューを縦にスクロールさせる */
  overflow-y: auto;
  /* iOSで慣性スクロールさせる */
  -webkit-overflow-scrolling: touch;
  background-color: #96d232;
  transform: translateX(100%);
  transition: all 0.6s;
  font-size: 24px;
  padding: 20px 0;
  z-index: 2;
}
nav.globalMenuSp ul {
   margin: 0 auto;
   padding: 0;
   width: 100%;
}
nav.globalMenuSp ul li {
   list-style-type: none;
   padding: 0;
   width: 80%;
   display: block;
   margin: 0 auto;
   transition: .4s all;
   border-bottom: 1px solid white;
}
nav.globalMenuSp ul li a {
   display: block;
   padding: 30px;
   color: white;
   text-decoration :none;
}
nav.globalMenuSp ul.link {
   display: flex;
   width: 80%;
   margin: 20px auto;
}
nav.globalMenuSp ul.link li {
   list-style-type: none;
   border-style: none;
   width: 16%;
}
nav.globalMenuSp.active {
   opacity: 100;
   display: block;
   transform: translateX(0%);
}

/*----------------------   top   ----------------------*/

#top {
  display: block;
  width: 100%;
  height: auto; /* ← 高さ固定を外す（これが一番重要！） */
  min-height: 500px; /* ← 最低でも画面1枚分は確保 */
  background-size: contain; /* ← 画像全体見せたい → containにする */
  background-repeat: no-repeat;
  background-position: bottom center;
  background-attachment: scroll; /* ← これ入れないと変な固定になることがある */
  background-image: url('../image/sp/top02.jpg');
  background-size: 100%;
  background-repeat: no-repeat;
}
#top .inner {
  display: block;
  width: 400px;
  margin: 0 auto;
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  position: relative;
  z-index: 0;
  line-height: 350px;
}
#top .inner h2 {
  text-align: center;
  color: #96d232;
  font-size: 46px;
  position: relative;
  z-index: 1;            /* 疑似要素より上にテキストを出すため */
  font-weight: bold;
}
#top .inner h2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  /* 中心を基準に拡大縮小 */
  transform: translate(-50%, -50%);
  width: 120%;    /* テキスト幅より少し大きめ */
  height: 30%;    /* 縦に潰した楕円 */
  background: rgba(255,255,255,0.5); /* お好みで色と透過度を調整 */
  border-radius: 50%;          /* 完全な楕円形に */
  filter: blur(8px);           /* ぼかし量を調整 */
  z-index: -1;                 /* テキストの背後に配置 */
}
nav {
  font-size: 14px;
  display: block;
  margin: 0 auto;
  padding: 24px 0 40px;
  width: 90%;
  color: #999;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb li { color: #96d232; }
.breadcrumb li:not(:last-of-type)::after {
  content: "/";
  margin: 0 .6em; /* 記号の左右の余白 */
  color: #444; /* 記号の色 */
}
.breadcrumb li a {
  color: #444; /* 記号の色 */
  transition: .2s;
}
.breadcrumb li a:hover {
  transition: .2s;
  color: #96d232;
}

/*----------------------   content01   ----------------------*/

#content01 ,
#content02 {
  display: block;
  width: 90%;
  margin: 38px auto 0;
  font-size: 18px;
  line-height: 2;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}
#content01 h2 ,
#content02 h2 {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  color: #96d232;
  position: relative;
  padding-left: 15px;
  margin-bottom: 30px;
  line-height: 1.25;
}
#content01 h2:before ,
#content02 h2:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: -10px;
  width: 6px;
  height: 100%;
  border-radius: 5px;
  background: #96d232;
}
#content01 .container .qa-container ,
#content02 .container .qa-container {
  margin-bottom: 12px;
  border: 1px solid #96d232;
  border-radius: 4px;
  overflow: hidden;
}
#content01 .container .qa-container input ,
#content02 .container .qa-container input ,
#content01 h2 br.sp { display: none; }
#content01 .container .qa-container label ,
#content02 .container .qa-container label {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 12px 16px;
  position: relative;
  user-select: none;
  gap: 12px;
  min-height: 48px; /* 最低高さを確保 */
  box-sizing: border-box;
}
#content01 .container .qa-container label h3.title ,
#content02 .container .qa-container label h3.title {
  flex-grow: 1;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  margin: 0;
  background-image: url('../image/q_icon.svg');
  background-repeat: no-repeat;
  background-size: 28px 28px;
  background-position: left center;
  padding-left: 32px;
  padding-right: 32px;
  word-break: break-word;
}
#content01 .container .qa-container label::after ,
#content02 .container .qa-container label::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  position: absolute;
  right: 16px;
  top: 50%;
  margin-top: -5px;
}
#content01 .container .qa-container input:checked + label::after ,
#content02 .container .qa-container input:checked + label::after { transform: rotate(-135deg);　}
#content01 .container .qa-container div ,
#content02 .container .qa-container div {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 16px;
  transition: max-height 0.4s ease, opacity 0.3s ease 0.1s, padding 0.3s ease 0.1s;
  box-sizing: border-box;
}
#content01 .container .qa-container input:checked ~ div ,
#content02 .container .qa-container input:checked ~ div {
  max-height: 200px; /* 最大表示高さ。必要に応じて調整 */
  opacity: 1;
  padding: 12px 16px 16px;
}
#content01 .container .qa-container p.answer ,
#content02 .container .qa-container p.answer {
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  background-image: url('../image/a_icon.svg');
  background-repeat: no-repeat;
  background-size: 28px 28px;
  background-position: left center;
  padding-left: 32px;
  padding-right: 32px;
  word-break: break-word;
  color: #000;
}
#content01 .container .qa-container label h3.title,
#content01 .container .qa-container p.answer ,
#content02 .container .qa-container label h3.title,
#content02 .container .qa-container p.answer {
  word-wrap: break-word;
  white-space: normal;
  padding: 10px 48px;
}
#content01 .container .qa-container div hr.divider ,
#content02 .container .qa-container div hr.divider {
  border: none;
  border-top: 1px solid #96d232;
  margin: 0 0 16px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

/*----------------------   content04   ----------------------*/

#content04 {
  display: block;
  width: 90%;
  padding: 60px 0;
  margin: 80px auto;
  background-image: linear-gradient(60deg, rgba(150, 210, 50, 1), rgba(210, 255, 125, 1));
  border-radius: 30px;
}
#content04 .inner {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 90%;
  margin: 0 auto;
}
#content04 .inner .inner_box {
  display: block;
  width: 48%;
  margin: 0;
  padding: 0;
}
#content04 .inner .inner_box div h2 {
  text-align: center;
  line-height: 1;
  display: block;
  width: 80%;
  height: auto;
  padding: 20px 0;
  margin: 0 auto;
  background-image: url('../image/title_green.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: white;
  font-size: 28px;
}
#content04 .inner .inner_box div h2 span { font-size: 18px; }
#content04 .inner .inner_box div p {
  font-size: 18px;
  line-height: 1.75;
  color: white;
  padding-top: 20px;
}
#content04 .inner .inner_box a.link {
  font-size: 16px;
  display: block;
  text-align: center;
  width: 100%;
  color: white;
  text-decoration: none;
  background-color: #96d232;
  padding: 15px 40px;
  margin: 20px 0 0;
  border-radius: 50px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .2);
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  transition: .3s;
}
#content04 .inner .inner_box a.link_button {
  display: block;
  width: 90%;
  text-decoration: none;
  margin: 60px auto 0;
  padding: 0;
  transition: .3s;
}
#content04 .inner .inner_box a.link_button:hover {
  filter: drop-shadow( 3px 3px 3px rgba(0, 0, 0, .3));
  transform: translateY(-5px);
  transition-duration: 0.3s;
}

/*----------------------   footer   ----------------------*/

footer {
  display: block;
  width: 90％;
  margin: 0 auto;
}
footer .foot_logo {
  display: block;
  width: 50%;
  margin: 0 auto;
}
footer p.copyright {
  text-align: center;
  margin: 20px auto 40px;
  font-size: 14px;
}
footer ul.link {
  display: flex;
  width: 33%;
  justify-content: space-between; /* ここを追加！ */
  margin: 40px auto;
}
footer ul.link li {
  list-style: none;
  display: inline-block;
  vertical-align: middle;
  flex: 1;
  margin: auto 0;
  padding: 0 20px;
  transition-duration: 0.3s;
}

#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 20px;
  bottom: -50px;
  background: #96d232;
  opacity: 0.6;
  border-radius: 50%;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 23px;
  color: #fff;
  position: absolute;
  width: 23px;
  height: 23px;
  top: -3px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

}

/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*----------------------- PC -----------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/

@media screen and (min-width: 1025px) {

/*----------------------   header   ----------------------*/

#sp { display: none; }

header {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding:  20px 0 0;
  background-color: #96d232;
}
header .head_menu {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 90%;
  margin: 0 auto;
}
header .head_menu .menu_box.left {
  width: 24%;
  margin: 0 auto 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .head_menu .menu_box.left h1 {
  display: block;
  width: 100%;
}
header .head_menu .menu_box.left h1 img {
  display: block;
  width: 100%;
  padding-bottom: 20px;
}
header .head_menu .menu_box.right {
  display: block;
  width: 65%
}
header .head_menu .menu_box ul.link {
  display: flex;
  width: 70%;
  margin: 0 0 0 auto;
}
header .head_menu .menu_box ul.link li.sns_icon {
  list-style: none;
  display: inline-block;
  vertical-align: middle;
  width: 70px;
  margin: auto 0;
  padding: 0 10px;
  transition-duration: 0.3s;
}
header .head_menu .menu_box ul.link li.sns_icon:hover{
  filter: drop-shadow( 0px 4px 4px rgba(0, 0, 0, .2));
  transform: translateY(-5px);
  transition-duration: 0.3s;
}
header .head_menu .menu_box ul.link li.tel_icon {
  list-style: none;
  display: inline-block;
  vertical-align: middle;
  width: 550px;
  margin: auto 0 auto 10px;
  transition: .3s;
}
header .head_menu .menu_box ul.link li.tel_icon:hover {
  opacity: .5;
  transition: .3s;
}
header .head_menu .menu_box ul.menu {
  display: flex;
  width: 90%;
  margin: 20px 0 20px auto;
}
header .head_menu .menu_box ul.menu li {
  list-style: none;
  text-align: center;
  display: inline-block;
  width: 18%;
  padding: 5px 0;
  border-right: 1px solid white;
}
header .head_menu .menu_box ul.menu li a {
  color: white;
  text-decoration: none;
  transition: .3s;
  position: relative;
  font-size: 14px;
}
header .head_menu .menu_box ul.menu li a:hover {
  letter-spacing: 1.5px;
  background-color: #57aa00;
  padding: 10px;
  transition: .3s;
  border-radius: 30px;
}
header .head_menu .menu_box ul.menu li a.underline:before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 40px;
  height: 2px;
  border-radius: 5px;
  background: #fff;
}
header .head_menu .menu_box ul.menu li a.underline:hover {
  letter-spacing: 0;
  background-color: #96d232;
  padding: 0;
  border-radius: 0;
}

/*----------------------   top   ----------------------*/

#top {
  display: block;
  width: 100%;
  height: auto; /* ← 高さ固定を外す（これが一番重要！） */
  min-height: 27vh; /* ← 最低でも画面1枚分は確保 */
  background-size: contain; /* ← 画像全体見せたい → containにする */
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: scroll; /* ← これ入れないと変な固定になることがある */
  background-image: url('../image/top02.jpg');
  background-size: 100%;
  background-repeat: no-repeat;
}
#top .inner {
  display: block;
  width: 400px;
  margin: 0 auto;
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  position: relative;
  z-index: 0;
  line-height: 27vh;
}
#top .inner h2 {
  text-align: center;
  color: #96d232;
  font-size: 60px;
  position: relative;
  z-index: 1;            /* 疑似要素より上にテキストを出すため */
  font-weight: bold;
}
#top .inner h2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  /* 中心を基準に拡大縮小 */
  transform: translate(-50%, -50%);
  width: 120%;    /* テキスト幅より少し大きめ */
  height: 30%;    /* 縦に潰した楕円 */
  background: rgba(255,255,255,0.75); /* お好みで色と透過度を調整 */
  border-radius: 50%;          /* 完全な楕円形に */
  filter: blur(8px);           /* ぼかし量を調整 */
  z-index: -1;                 /* テキストの背後に配置 */
}
nav {
  font-size: 14px;
  display: block;
  margin: 0 auto;
  padding: 24px 0 40px;
  width: 80%;
  color: #999;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb li { color: #96d232; }
.breadcrumb li:not(:last-of-type)::after {
  content: "/";
  margin: 0 .6em; /* 記号の左右の余白 */
  color: #444; /* 記号の色 */
}
.breadcrumb li a {
  color: #444; /* 記号の色 */
  transition: .2s;
}
.breadcrumb li a:hover {
  transition: .2s;
  color: #96d232;
}

/*----------------------   content01   ----------------------*/

#content01 ,
#content02 {
  display: block;
  width: 80%;
  margin: 40px auto 0;
  font-size: 16px;
  line-height: 2;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}
#content01 h2 ,
#content02 h2 {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 34px;
  color: #96d232;
  position: relative;
  padding-left: 15px;
  margin-bottom: 30px;
  line-height: 1.25;
}
#content01 h2:before ,
#content02 h2:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: -10px;
  width: 6px;
  height: 100%;
  border-radius: 5px;
  background: #96d232;
}
#content01 .container .qa-container ,
#content02 .container .qa-container {
  margin-bottom: 12px;
  border: 1px solid #96d232;
  border-radius: 4px;
  overflow: hidden;
}
#content01 .container .qa-container input ,
#content02 .container .qa-container input ,
#content01 h2 br.sp { display: none; }
#content01 .container .qa-container label ,
#content02 .container .qa-container label {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 12px 16px;
  position: relative;
  user-select: none;
  gap: 12px;
  min-height: 48px; /* 最低高さを確保 */
  box-sizing: border-box;
}
#content01 .container .qa-container label h3.title ,
#content02 .container .qa-container label h3.title {
  flex-grow: 1;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  margin: 0;
  background-image: url('../image/q_icon.svg');
  background-repeat: no-repeat;
  background-size: 28px 28px;
  background-position: left center;
  padding-left: 32px;
  padding-right: 32px;
  word-break: break-word;
}
#content01 .container .qa-container label::after ,
#content02 .container .qa-container label::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  position: absolute;
  right: 16px;
  top: 50%;
  margin-top: -5px;
}
#content01 .container .qa-container input:checked + label::after ,
#content02 .container .qa-container input:checked + label::after { transform: rotate(-135deg);　}
#content01 .container .qa-container div ,
#content02 .container .qa-container div {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 16px;
  transition: max-height 0.4s ease, opacity 0.3s ease 0.1s, padding 0.3s ease 0.1s;
  box-sizing: border-box;
}
#content01 .container .qa-container input:checked ~ div ,
#content02 .container .qa-container input:checked ~ div {
  max-height: 200px; /* 最大表示高さ。必要に応じて調整 */
  opacity: 1;
  padding: 12px 16px 16px;
}
#content01 .container .qa-container p.answer ,
#content02 .container .qa-container p.answer {
  margin: 0;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  background-image: url('../image/a_icon.svg');
  background-repeat: no-repeat;
  background-size: 28px 28px;
  background-position: left center;
  padding-left: 32px;
  padding-right: 32px;
  word-break: break-word;
  color: #000;
}
#content01 .container .qa-container label h3.title,
#content01 .container .qa-container p.answer ,
#content02 .container .qa-container label h3.title,
#content02 .container .qa-container p.answer {
  word-wrap: break-word;
  white-space: normal;
  padding: 10px 48px;
}
#content01 .container .qa-container div hr.divider ,
#content02 .container .qa-container div hr.divider {
  border: none;
  border-top: 1px solid #96d232;
  margin: 0 0 16px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

/*----------------------   content04   ----------------------*/

#content04 {
  display: block;
  width: 80%;
  margin: 80px auto;
  padding: 0;
  background-image: linear-gradient(60deg, rgba(150, 210, 50, 1), rgba(210, 255, 125, 1));
  border-radius: 50px;
}
#content04 .inner {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 90%;
  margin: 0 auto;
  padding: 60px 0;
}
#content04 .inner .inner_box {
  display: block;
  width: 40%;
  margin: 0;
  padding: 0;
}
#content04 .inner .inner_box div h2 {
  text-align: center;
  line-height: 1;
  display: block;
  width: 70%;
  height: auto;
  padding: 30px 0;
  margin: 0 auto;
  background-image: url('../image/title_green.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: white;
  font-size: 30px;
}
#content04 .inner .inner_box div h2 span { font-size: 14px; }
#content04 .inner .inner_box div p {
  display: block;
  margin: 0 auto;
  font-size: 16px;
  padding: 40px;
  line-height: 2;
  color: white;
}
#content04 .inner .inner_box a.link {
  display: block;
  text-align: center;
  width: 80%;
  color: white;
  text-decoration: none;
  font-size: 18px;
  background-color: #96d232;
  padding: 20px 0;
  margin: 0 auto;
  border-radius: 50px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .2);
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  transition: .3s;
}
#content04 .inner .inner_box a.link:hover {
  color: #96d232;
  background-color: white;
  transition: .3s;
}
#content04 .inner .inner_box a.link_button {
  display: block;
  width: 80%;
  text-decoration: none;
  margin: 30px auto;
  padding: 10px;
  transition: .3s;
}
#content04 .inner .inner_box a.link_button:hover {
  filter: drop-shadow( 3px 3px 3px rgba(0, 0, 0, .3));
  transform: translateY(-5px);
  transition-duration: 0.3s;
}

/*----------------------   footer   ----------------------*/

footer {
  display: block;
  width: 100%
  margin: 80px auto;
}
footer .foot_logo {
  display: block;
  width: 300px;
  margin: 0 auto;
}
footer p.copyright {
  text-align: center;
  margin: 60px auto;
  font-size: 12px;
}
footer ul.link {
  display: flex;
  width: 200px;
  margin: 40px auto;
}
footer ul.link li {
  list-style: none;
  display: inline-block;
  vertical-align: middle;
  width: 70px;
  margin: auto 0;
  padding: 10px;
  transition-duration: 0.3s;
}
footer ul.link li:hover{
  filter: drop-shadow( 3px 3px 3px rgba(0, 0, 0, .2));
  transform: translateY(-5px);
  transition-duration: 0.3s;
}

#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 50px;
  bottom: -50px;
  background: #96d232;
  border-radius: 50%;
}
#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 23px;
  color: #fff;
  position: absolute;
  width: 23px;
  height: 23px;
  top: -3px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

}
