@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;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
p { visibility: hidden; }
.wf-active p { visibility: visible; }

/*-- メインカラー　#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: 670px; /* ← 最低でも画面1枚分は確保 */
  background-size: contain; /* ← 画像全体見せたい → containにする */
  background-repeat: no-repeat;
  background-position: bottom center;
  background-attachment: scroll; /* ← これ入れないと変な固定になることがある */
  background-image: url('../image/sp/top.jpg');
  background-repeat: no-repeat;
  background-size: 100%;
}
#top .inner {
  display: block;
  width: 90%;
  margin: 0 auto;
  padding-top: 60px;
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #96d232;
  animation-name: fadein;
  animation-duration: 2s;
}
  @keyframes fadein {
    from {
      opacity: 0;
      transform: translateY(120px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
#top .inner h2 {
  font-size: 30px;
  line-height: 1.5;
  padding-bottom: 20px;
}
#top .inner p {
  display: block;
  font-size: 18px;
  line-height: 2;
}
#top .inner h2 br.pc , #top .inner p br.pc { display: none; }
#top .inner a {
  display: block;
  text-align: center;
  color: white;
  text-decoration: none;
  font-size: 16px;
  background-color: #96d232;
  padding: 20px;
  margin-top: 20px;
  border-radius: 50px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .2);
  transition: .3s;
}

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

#content01 {
  display: block;
  width: 90%;
  margin: 50px auto;
}
#content01 h2 {
  text-align: center;
  line-height: 1;
  display: block;
  width: 50%;
  height: auto;
  padding: 20px 0;
  margin: 0 auto;
  background-image: url('../image/title.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: #96d232;
  font-size: 20px;
}
#content01 h2 span { font-size: 14px; }
#content01 .inner.pc { display: none; }
#content01 .inner.sp {
  display: block;
  margin-top: 25px;
}
#content01 .inner .box p {
  font-weight: normal;
  font-size: 14px;
  line-height: 2;
}
#content01 .inner .box p span {
  color: #96d232;
  font-weight: bold;
}
#content01 .inner .box a.link {
  display: block;
  text-align: center;
  color: white;
  text-decoration: none;
  font-size: 16px;
  background-color: #96d232;
  padding: 10px 20px;
  margin-top: 20px;
  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;
}
#content01 .inner .box.image img {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}

/*----------------------   content05   ----------------------*/

#content05 {
  display: block;
  width: 90%;
  margin: 75px auto 50px;
  text-align: center;
}
#content05 h2 {
  text-align: center;
  line-height: 1;
  display: block;
  width: 50%;
  height: auto;
  padding: 20px 0;
  margin: 0 auto;
  background-image: url('../image/title.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: #96d232;
  font-size: 20px;
}
#content05 h2 span { font-size: 14px; }
#content05 p {
  padding: 20px 0;
  font-size: 14px;
}
#content05 .inner {
  display: block;
  width: 100%;
  margin: 0 auto;
}
#content05 .inner div {
  display: block;
  width: 100%;
  margin: 0 auto 20px;
  padding: 30px 0;
  border-radius: 20px;
  text-align: left;
  color: white;
  position: relative;
  background-color: white;
}
#content05 .inner div h3 {
  text-align: center;
  padding: 0;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  font-size: 24px;
}
#content05 .inner div p {
  padding: 0;
  margin: 0 auto 20px;
  font-size: 14px;
  line-height: 1.75;
  display: block;
  width: 80%;
}
#content05 .inner div.pink { background-color: #ff87b4; }
#content05 .inner div.orange { background-color: #ff8200; }
#content05 .inner div.green { background-color: #5e9623; }
#content05 .inner a { text-decoration: none; }
#content05 .inner a span {
  display: block;
  text-align: center;
  width: 80%;
  color: white;
  background-color: white;
  padding: 15px 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;
  font-size: 16px;
  z-index: 1;
  transition: .3s;
}
#content05 .inner a span.pink { color: #ff87b4; }
#content05 .inner a span.orange { color: #ff8200; }
#content05 .inner a span.green { color: #5e9623; }

/*----------------------   content02   ----------------------*/

#content02 {
  display: block;
  padding: 50px 0;
  margin: 50px auto;
  background-color: #eee;
  width: 100%;
  text-align: center;
}
#content02 h2 {
  text-align: center;
  line-height: 1;
  display: block;
  width: 50%;
  height: auto;
  padding: 20px 0;
  margin: 0 auto;
  background-image: url('../image/title_white.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: #96d232;
  font-size: 20px;
}
#content02 h2 span { font-size: 14px; }
#content02 p {
  padding: 20px 0;
  font-size: 14px;
}
#content02 .inner {
  display: block;
  width: 100%;
  margin: 0 auto;
}
#content02 .inner img.pc { display: none; }
#content02 .inner img.sp {
  display: block;
  width: 70%;
  margin: 30px auto 10px;
}
#content02 .inner a { text-decoration: none; }
#content02 .inner a span {
  font-size: 16px;
  display: block;
  position: relative;
  text-align: center;
  width: 60%;
  color: white;
  background-color: #96d232;
  margin: -80px auto 20px;
  padding: 10px 0;
  border-radius: 50px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .4);
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  z-index: 1;
  transition: .3s;
}

/*----------------------   content03   ----------------------*/

#content03 {
  display: block;
  width: 90%;
  margin: 50px auto;
}
#content03 h2 {
  text-align: center;
  line-height: 1;
  display: block;
  width: 50%;
  height: auto;
  padding: 20px 0;
  margin: 0 auto;
  background-image: url('../image/title.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: #96d232;
  font-size: 20px;
}
#content03 h2 span { font-size: 14px; }
#content03 .inner {
  display: block;
  width: 100%;
  margin: 0 auto;
}
#content03 .inner.sp {
  display: block;
}
#content03 .inner .box p {
  font-weight: normal;
  font-size: 14px;
  line-height: 2;
}
#content03 .inner .box p span {
  color: #96d232;
  font-weight: bold;
}
#content03 .inner .box a {
  display: block;
  text-align: center;
  color: white;
  text-decoration: none;
  font-size: 16px;
  background-color: #96d232;
  padding: 10px 20px;
  margin-top: 20px;
  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;
}
#content03 .inner .box.image img.pc ,
#content03 .inner .box p br.pc { display: none; }
#content03 .inner .box.image img.sp {
  display: block;
  width: 100%;
  margin: 20px 0;
}

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

}

/*-- メインカラー　#96d232 --*/
/*-------------------------------------------------------------------*/
/*-------------------------------------------------------------------*/
/*----------------------- スマホ 横（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: 1000px;
  background-size: contain; /* ← 画像全体見せたい → containにする */
  background-repeat: no-repeat;
  background-position: bottom center;
  background-attachment: scroll; /* ← これ入れないと変な固定になることがある */
  background-image: url('../image/sp/top.jpg');
  background-repeat: no-repeat;
  background-size: 100%;
}
#top .inner {
  display: block;
  width: 90%;
  margin: 0 auto;
  padding-top: 60px;
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #96d232;
  animation-name: fadein;
  animation-duration: 2s;
}
  @keyframes fadein {
    from {
      opacity: 0;
      transform: translateY(120px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
#top .inner h2 {
  font-size: 50px;
  line-height: 1.5;
  margin-bottom: 20px;
}
#top .inner p {
  display: block;
  font-size: 24px;
  line-height: 2.25;
}
#top .inner h2 br.pc , #top .inner p br.pc { display: none; }
#top .inner a {
  display: block;
  text-align: center;
  color: white;
  text-decoration: none;
  font-size: 24px;
  background-color: #96d232;
  padding: 20px;
  margin-top: 40px;
  border-radius: 50px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .2);
  transition: .3s;
}

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

#content01 {
  display: block;
  width: 90%;
  margin: 80px auto;
}
#content01 h2 {
  text-align: center;
  line-height: 1;
  display: block;
  width: 50%;
  height: auto;
  padding: 20px 0;
  margin: 0 auto;
  background-image: url('../image/title.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: #96d232;
  font-size: 30px;
}
#content01 h2 span { font-size: 18px; }
#content01 .inner {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-top: 40px;
}
#content01 .inner.sp { display: none; }
#content01 .inner .box {
  display: inline-block;
  width: 40%;
}
#content01 .inner .box.text { width: 45vw; }
#content01 .inner .box p {
  font-size: 20px;
  line-height: 2.25;
  padding-right: 10px;
}
#content01 .inner .box p span {
  color: #96d232;
  font-weight: bold;
}
#content01 .inner .box a.link {
  display: block;
  text-align: center;
  width: 100%;
  color: white;
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 1.25px;
  background-color: #96d232;
  padding: 10px 40px;
  margin: 40px 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;
}
#content01 .inner .box.image img {
  display: block;
  width: 100%;
}

/*----------------------   content05   ----------------------*/

#content05 {
  display: block;
  width: 90%;
  margin: 80px auto;
}
#content05 h2 {
  text-align: center;
  line-height: 1;
  display: block;
  width: 50%;
  height: auto;
  padding: 20px 0;
  margin: 0 auto;
  background-image: url('../image/title.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: #96d232;
  font-size: 30px;
}
#content05 h2 span { font-size: 18px; }
#content05 p {
  text-align: center;
  font-size: 20px;
  padding: 40px 0;
}
#content05 .inner {
  display: block;
  width: 100%;
  margin: 0 auto;
}
#content05 .inner div {
  display: block;
  width: 80%;
  margin: 0 auto 40px;
  padding: 40px 0;
  border-radius: 20px;
  text-align: left;
  color: white;
  position: relative;
}
#content05 .inner div h3 {
  text-align: center;
  padding: 0;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  font-size: 34px;
}
#content05 .inner div p {
  text-align: left;
  padding: 0;
  margin: 0 auto 20px;
  font-size: 20px;
  line-height: 1.75;
  display: block;
  width: 80%;
}
#content05 .inner div.pink { background-color: #ff87b4; }
#content05 .inner div.orange { background-color: #ff8200; }
#content05 .inner div.green { background-color: #5e9623; }
#content05 .inner a { text-decoration: none; }
#content05 .inner a span {
  display: block;
  text-align: center;
  width: 80%;
  color: white;
  background-color: white;
  padding: 15px 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;
  z-index: 1;
  font-size: 22px;
  transition: .3s;
}
#content05 .inner a span.pink { color: #ff87b4; }
#content05 .inner a span.orange { color: #ff8200; }
#content05 .inner a span.green { color: #5e9623; }

/*----------------------   content02   ----------------------*/

#content02 {
  display: block;
  padding: 60px 0;
  margin: 80px auto;
  background-color: #eee;
  width: 100%;
}
#content02 h2 {
  text-align: center;
  line-height: 1;
  display: block;
  width: 50%;
  height: auto;
  padding: 20px 0;
  margin: 0 auto;
  background-image: url('../image/title_white.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: #96d232;
  font-size: 30px;
}
#content02 h2 span { font-size: 18px; }
#content02 p {
  text-align: center;
  font-size: 20px;
  padding: 40px 0;
}
#content02 .inner {
  display: block;
  width: 100%;
  margin: 0 auto;
}
#content02 .inner img.pc { display: none; }
#content02 .inner img.sp {
  display: block;
  width: 70%;
  margin: 40px auto;
}
#content02 .inner a { text-decoration: none; }
#content02 .inner a span {
  font-size: 20px;
  display: block;
  position: relative;
  text-align: center;
  width: 50%;
  color: white;
  background-color: #96d232;
  margin: -140px auto 20px;
  padding: 20px 0;
  border-radius: 50px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .4);
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  z-index: 1;
  transition: .3s;
}

/*----------------------   content03   ----------------------*/

#content03 {
  display: block;
  width: 90%;
  margin: 80px auto;
}
#content03 h2 {
  text-align: center;
  line-height: 1;
  display: block;
  width: 50%;
  height: auto;
  padding: 20px 0;
  margin: 0 auto;
  background-image: url('../image/title.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: #96d232;
  font-size: 30px;
}
#content03 h2 span { font-size: 18px; }
#content03 .inner {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-top: 40px;
}
#content03 .inner .box {
  display: flex;
  width: 50%;
}
#content03 .inner .box.text {
  display: block;
  padding-left: 40px;
}
#content03 .inner .box p {
  font-size: 20px;
  line-height: 2.25;
}
#content03 .inner .box p span {
  color: #96d232;
  font-weight: bold;
}
#content03 .inner .box a {
  display: block;
  text-align: center;
  width: 100%;
  color: white;
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 1.25px;
  background-color: #96d232;
  padding: 10px 40px;
  margin: 40px 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;
}
#content03 .inner .box.image img.sp { display: none; }
#content03 .inner .box.image img {
  display: block;
  width: 100%;
}

/*----------------------   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   ----------------------*/

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: 1000px;
  background-size: contain; /* ← 画像全体見せたい → containにする */
  background-repeat: no-repeat;
  background-position: bottom center;
  background-attachment: scroll; /* ← これ入れないと変な固定になることがある */
  background-image: url('../image/sp/top.jpg');
  background-repeat: no-repeat;
  background-size: 100%;
}
#top .inner {
  display: block;
  width: 90%;
  margin: 0 auto;
  padding-top: 60px;
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #96d232;
  animation-name: fadein;
  animation-duration: 2s;
}
  @keyframes fadein {
    from {
      opacity: 0;
      transform: translateY(120px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
#top .inner h2 {
  font-size: 50px;
  line-height: 1.5;
  margin-bottom: 20px;
}
#top .inner p {
  display: block;
  font-size: 24px;
  line-height: 2.25;
}
#top .inner h2 br.pc , #top .inner p br.pc { display: none; }
#top .inner a {
  display: block;
  text-align: center;
  color: white;
  text-decoration: none;
  font-size: 24px;
  background-color: #96d232;
  padding: 20px;
  margin-top: 40px;
  border-radius: 50px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .2);
  transition: .3s;
}

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

#content01 {
  display: block;
  width: 90%;
  margin: 80px auto;
}
#content01 h2 {
  text-align: center;
  line-height: 1;
  display: block;
  width: 50%;
  height: auto;
  padding: 20px 0;
  margin: 0 auto;
  background-image: url('../image/title.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: #96d232;
  font-size: 30px;
}
#content01 h2 span { font-size: 18px; }
#content01 .inner {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-top: 40px;
}
#content01 .inner.sp { display: none; }
#content01 .inner .box {
  display: inline-block;
  width: 40%;
}
#content01 .inner .box.text { width: 45vw; }
#content01 .inner .box p {
  font-size: 20px;
  line-height: 2.25;
  padding-right: 10px;
}
#content01 .inner .box p span {
  color: #96d232;
  font-weight: bold;
}
#content01 .inner .box a.link {
  display: block;
  text-align: center;
  width: 100%;
  color: white;
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 1.25px;
  background-color: #96d232;
  padding: 10px 40px;
  margin: 40px 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;
}
#content01 .inner .box.image img {
  display: block;
  width: 100%;
}

/*----------------------   content05   ----------------------*/

#content05 {
  display: block;
  width: 90%;
  margin: 80px auto;
}
#content05 h2 {
  text-align: center;
  line-height: 1;
  display: block;
  width: 50%;
  height: auto;
  padding: 20px 0;
  margin: 0 auto;
  background-image: url('../image/title.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: #96d232;
  font-size: 30px;
}
#content05 h2 span { font-size: 18px; }
#content05 p {
  text-align: center;
  font-size: 20px;
  padding: 40px 0;
}
#content05 .inner {
  display: block;
  width: 100%;
  margin: 0 auto;
}
#content05 .inner div {
  display: block;
  width: 80%;
  margin: 0 auto 40px;
  padding: 40px 0;
  border-radius: 20px;
  text-align: left;
  color: white;
  position: relative;
}
#content05 .inner div h3 {
  text-align: center;
  padding: 0;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  font-size: 34px;
}
#content05 .inner div p {
  text-align: left;
  padding: 0;
  margin: 0 auto 20px;
  font-size: 20px;
  line-height: 1.75;
  display: block;
  width: 80%;
}
#content05 .inner div.pink { background-color: #ff87b4; }
#content05 .inner div.orange { background-color: #ff8200; }
#content05 .inner div.green { background-color: #5e9623; }
#content05 .inner a { text-decoration: none; }
#content05 .inner a span {
  display: block;
  text-align: center;
  width: 80%;
  color: white;
  background-color: white;
  padding: 15px 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;
  z-index: 1;
  font-size: 22px;
  transition: .3s;
}
#content05 .inner a span.pink { color: #ff87b4; }
#content05 .inner a span.orange { color: #ff8200; }
#content05 .inner a span.green { color: #5e9623; }

/*----------------------   content02   ----------------------*/

#content02 {
  display: block;
  padding: 60px 0;
  margin: 80px auto;
  background-color: #eee;
  width: 100%;
}
#content02 h2 {
  text-align: center;
  line-height: 1;
  display: block;
  width: 50%;
  height: auto;
  padding: 20px 0;
  margin: 0 auto;
  background-image: url('../image/title_white.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: #96d232;
  font-size: 30px;
}
#content02 h2 span { font-size: 18px; }
#content02 p {
  text-align: center;
  font-size: 20px;
  padding: 40px 0;
}
#content02 .inner {
  display: block;
  width: 100%;
  margin: 0 auto;
}
#content02 .inner img.pc { display: none; }
#content02 .inner img.sp {
  display: block;
  width: 70%;
  margin: 40px auto;
}
#content02 .inner a { text-decoration: none; }
#content02 .inner a span {
  font-size: 20px;
  display: block;
  position: relative;
  text-align: center;
  width: 50%;
  color: white;
  background-color: #96d232;
  margin: -140px auto 20px;
  padding: 20px 0;
  border-radius: 50px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .4);
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  z-index: 1;
  transition: .3s;
}

/*----------------------   content03   ----------------------*/

#content03 {
  display: block;
  width: 90%;
  margin: 80px auto;
}
#content03 h2 {
  text-align: center;
  line-height: 1;
  display: block;
  width: 50%;
  height: auto;
  padding: 20px 0;
  margin: 0 auto;
  background-image: url('../image/title.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: #96d232;
  font-size: 30px;
}
#content03 h2 span { font-size: 18px; }
#content03 .inner {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-top: 40px;
}
#content03 .inner .box {
  display: flex;
  width: 50%;
}
#content03 .inner .box.text {
  display: block;
  padding-left: 40px;
}
#content03 .inner .box p {
  font-size: 20px;
  line-height: 2.25;
}
#content03 .inner .box p span {
  color: #96d232;
  font-weight: bold;
}
#content03 .inner .box a {
  display: block;
  text-align: center;
  width: 100%;
  color: white;
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 1.25px;
  background-color: #96d232;
  padding: 10px 40px;
  margin: 40px 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;
}
#content03 .inner .box.image img.sp { display: none; }
#content03 .inner .box.image img {
  display: block;
  width: 100%;
}

/*----------------------   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   ----------------------*/

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: 1000px;
  background-size: contain; /* ← 画像全体見せたい → containにする */
  background-repeat: no-repeat;
  background-position: bottom center;
  background-attachment: scroll; /* ← これ入れないと変な固定になることがある */
  background-image: url('../image/sp/top.jpg');
  background-repeat: no-repeat;
  background-size: 100%;
}
#top .inner {
  display: block;
  width: 90%;
  margin: 0 auto;
  padding-top: 60px;
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #96d232;
  animation-name: fadein;
  animation-duration: 2s;
}
  @keyframes fadein {
    from {
      opacity: 0;
      transform: translateY(120px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
#top .inner h2 {
  font-size: 50px;
  line-height: 1.5;
  margin-bottom: 20px;
}
#top .inner p {
  display: block;
  font-size: 24px;
  line-height: 2.25;
}
#top .inner h2 br.pc , #top .inner p br.pc { display: none; }
#top .inner a {
  display: block;
  text-align: center;
  color: white;
  text-decoration: none;
  font-size: 24px;
  background-color: #96d232;
  padding: 20px;
  margin-top: 40px;
  border-radius: 50px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .2);
  transition: .3s;
}

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

#content01 {
  display: block;
  width: 90%;
  margin: 80px auto;
}
#content01 h2 {
  text-align: center;
  line-height: 1;
  display: block;
  width: 50%;
  height: auto;
  padding: 20px 0;
  margin: 0 auto;
  background-image: url('../image/title.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: #96d232;
  font-size: 30px;
}
#content01 h2 span { font-size: 18px; }
#content01 .inner {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-top: 40px;
}
#content01 .inner.sp { display: none; }
#content01 .inner .box {
  display: inline-block;
  width: 40%;
}
#content01 .inner .box.text { width: 45vw; }
#content01 .inner .box p {
  font-size: 20px;
  line-height: 2.25;
  padding-right: 10px;
}
#content01 .inner .box p span {
  color: #96d232;
  font-weight: bold;
}
#content01 .inner .box a.link {
  display: block;
  text-align: center;
  width: 100%;
  color: white;
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 1.25px;
  background-color: #96d232;
  padding: 10px 40px;
  margin: 40px 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;
}
#content01 .inner .box.image img {
  display: block;
  width: 100%;
}

/*----------------------   content05   ----------------------*/

#content05 {
  display: block;
  width: 90%;
  margin: 80px auto;
}
#content05 h2 {
  text-align: center;
  line-height: 1;
  display: block;
  width: 50%;
  height: auto;
  padding: 20px 0;
  margin: 0 auto;
  background-image: url('../image/title.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: #96d232;
  font-size: 30px;
}
#content05 h2 span { font-size: 18px; }
#content05 p {
  text-align: center;
  font-size: 20px;
  padding: 40px 0;
}
#content05 .inner {
  display: block;
  width: 100%;
  margin: 0 auto;
}
#content05 .inner div {
  display: block;
  width: 80%;
  margin: 0 auto 40px;
  padding: 40px 0;
  border-radius: 20px;
  text-align: left;
  color: white;
  position: relative;
}
#content05 .inner div h3 {
  text-align: center;
  padding: 0;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  font-size: 34px;
}
#content05 .inner div p {
  text-align: left;
  padding: 0;
  margin: 0 auto 20px;
  font-size: 20px;
  line-height: 1.75;
  display: block;
  width: 80%;
}
#content05 .inner div.pink { background-color: #ff87b4; }
#content05 .inner div.orange { background-color: #ff8200; }
#content05 .inner div.green { background-color: #5e9623; }
#content05 .inner a { text-decoration: none; }
#content05 .inner a span {
  display: block;
  text-align: center;
  width: 80%;
  color: white;
  background-color: white;
  padding: 15px 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;
  z-index: 1;
  font-size: 22px;
  transition: .3s;
}
#content05 .inner a span.pink { color: #ff87b4; }
#content05 .inner a span.orange { color: #ff8200; }
#content05 .inner a span.green { color: #5e9623; }

/*----------------------   content02   ----------------------*/

#content02 {
  display: block;
  padding: 60px 0;
  margin: 80px auto;
  background-color: #eee;
  width: 100%;
}
#content02 h2 {
  text-align: center;
  line-height: 1;
  display: block;
  width: 50%;
  height: auto;
  padding: 20px 0;
  margin: 0 auto;
  background-image: url('../image/title_white.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: #96d232;
  font-size: 30px;
}
#content02 h2 span { font-size: 18px; }
#content02 p {
  text-align: center;
  font-size: 20px;
  padding: 40px 0;
}
#content02 .inner {
  display: block;
  width: 100%;
  margin: 0 auto;
}
#content02 .inner img.pc { display: none; }
#content02 .inner img.sp {
  display: block;
  width: 70%;
  margin: 40px auto;
}
#content02 .inner a { text-decoration: none; }
#content02 .inner a span {
  font-size: 20px;
  display: block;
  position: relative;
  text-align: center;
  width: 50%;
  color: white;
  background-color: #96d232;
  margin: -140px auto 20px;
  padding: 20px 0;
  border-radius: 50px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .4);
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  z-index: 1;
  transition: .3s;
}

/*----------------------   content03   ----------------------*/

#content03 {
  display: block;
  width: 90%;
  margin: 80px auto;
}
#content03 h2 {
  text-align: center;
  line-height: 1;
  display: block;
  width: 50%;
  height: auto;
  padding: 20px 0;
  margin: 0 auto;
  background-image: url('../image/title.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: #96d232;
  font-size: 30px;
}
#content03 h2 span { font-size: 18px; }
#content03 .inner {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-top: 40px;
}
#content03 .inner .box {
  display: flex;
  width: 50%;
}
#content03 .inner .box.text {
  display: block;
  padding-left: 40px;
}
#content03 .inner .box p {
  font-size: 20px;
  line-height: 2.25;
}
#content03 .inner .box p span {
  color: #96d232;
  font-weight: bold;
}
#content03 .inner .box a {
  display: block;
  text-align: center;
  width: 100%;
  color: white;
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 1.25px;
  background-color: #96d232;
  padding: 10px 40px;
  margin: 40px 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;
}
#content03 .inner .box.image img.sp { display: none; }
#content03 .inner .box.image img {
  display: block;
  width: 100%;
}

/*----------------------   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 {
  width: 100%;
  height: 90vh;
  background: url('../image/top.jpg') bottom center/cover no-repeat;
  display: flex;
  align-items: center;
}
#top .inner {
  width: 90%;
  margin: auto;
  /* 上余白をお好みで */
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #96d232;
  animation-name: fadein;
  animation-duration: 2s;
}
  @keyframes fadein {
    from {
      opacity: 0;
      transform: translateY(120px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
#top .inner h2 {
  font-size: 78px;
  line-height: 1.25;
  margin-bottom: 40px;
}
#top .inner p {
  font-size: 20px;
  line-height: 2.25;
}
#top .inner a {
  display: block;
  text-align: center;
  width: 400px;
  color: white;
  text-decoration: none;
  font-size: 20px;
  background-color: #96d232;
  padding: 20px 40px;
  margin-top: 40px;
  border-radius: 50px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .2);
  transition: .3s;
}
#top .inner a:hover {
  color: #96d232;
  background-color: white;
  transition: .3s;
}

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

#content01 {
  display: block;
  width: 70%;
  margin: 80px auto;
}
#content01 h2 {
  text-align: center;
  line-height: 1;
  display: block;
  width: 70%;
  height: auto;
  padding: 30px 0;
  margin: 0 auto;
  background-image: url('../image/title.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: #96d232;
  font-size: 30px;
}
#content01 h2 span { font-size: 16px; }
#content01 .inner {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-top: 40px;
}
#content01 .inner.sp { display: none; }
#content01 .inner .box {
  display: inline-block;
  width: 40%;
}
#content01 .inner .box.text { width: 35%; }
#content01 .inner .box p {
  line-height: 2.5;
  font-size: 18px;
}
#content01 .inner .box p span {
  color: #96d232;
  font-weight: bold;
}
#content01 .inner .box a.link {
  display: block;
  text-align: center;
  width: 100%;
  color: white;
  text-decoration: none;
  font-size: 18px;
  background-color: #96d232;
  padding: 10px 40px;
  margin-top: 40px;
  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;
}
#content01 .inner .box a.link:hover {
  color: #96d232;
  background-color: white;
  transition: .3s;
}
#content01 .inner .box.image img {
  display: block;
  width: 100%;
}

/*----------------------   content05   ----------------------*/

#content05 {
  display: block;
  width: 70%;
  margin: 80px auto;
}
#content05 h2 {
  text-align: center;
  line-height: 1;
  display: block;
  width: 70%;
  height: auto;
  padding: 30px 0;
  margin: 0 auto;
  background-image: url('../image/title.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: #96d232;
  font-size: 30px;
}
#content05 h2 span { font-size: 16px; }
#content05 p {
  text-align: center;
  font-size: 16px;
  padding: 60px 0;
}
#content05 .inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
#content05 .inner div {
  flex: 1 1 calc((100% - 40px) / 3);
  min-width: 200px;  /* ここを下限に折り返し */
  max-width: 400px;  /* 必要なら上限も設定 */
  padding: 40px 20px 70px;
  border-radius: 40px;
  text-align: left;
  color: white;
  position: relative;
  box-sizing: border-box;
}
#content05 .inner div h3 {
  text-align: center;
  line-height: 1;
  font-weight: 400;
  font-size: 24px;
}
#content05 .inner div p {
  display: block;
  width: 80%;
  font-size: 16px;
  text-align: left;
  line-height: 1.75;
  margin: 0 auto;
  padding: 0 0 40px;
}
#content05 .inner div.pink { background-color: #ff87b4; }
#content05 .inner div.orange { background-color: #ff8200; }
#content05 .inner div.green { background-color: #5e9623; }
#content05 .inner a { text-decoration: none; }
#content05 .inner a span {
  display: block;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
  color: white;
  background-color: white;
  padding: 15px 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;
  z-index: 1;
  transition: .3s;
}
#content05 .inner a span.pink { color: #ff87b4; }
#content05 .inner a span.orange { color: #ff8200; }
#content05 .inner a span.green { color: #5e9623; }
#content05 .inner a span.pink:hover {
  color: white;
  background-color: #ffabca;
  transition: .3s;
}
#content05 .inner a span.orange:hover {
  color: white;
  background-color: #ffa74c;
  transition: .3s;
}
#content05 .inner a span.green:hover {
  color: white;
  background-color: #8eb565;
  transition: .3s;
}

/*----------------------   content02   ----------------------*/

#content02 {
  display: block;
  background-color: #eee;
  width: 100%;
  margin: 80px auto;
  padding: 80px 0;
}
#content02 h2 {
  text-align: center;
  line-height: 1;
  display: block;
  width: 70%;
  height: auto;
  padding: 30px 0;
  margin: 0 auto;
  background-image: url('../image/title_white.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: #96d232;
  font-size: 30px;
}
#content02 h2 span { font-size: 16px; }
#content02 p {
  text-align: center;
  font-size: 16px;
  padding: 60px 0;
}
#content02 .inner {
  display: flex;
  justify-content: space-between; /* 子要素の間隔を均等に */
  flex-wrap: wrap;                /* 狭くなったら折り返す */
  gap: 20px;                      /* 各アイテムの間隔 */
  width: 70%;
  max-width: 1200px;              /* 好きな最大幅を */
  margin: 0 auto;
}
#content02 .inner a {
  flex: 1 1 calc((100% - 40px) / 3); /* gap×2 を引いたあと3分割 */
  max-width: 400px;                   /* これで content05 と同じ上限 */
  box-sizing: border-box;
  position: relative;
  text-decoration: none;
}
#content02 .inner img {
  display: block;
  width: 100%;
  border-radius: 40px;  /* content05 の角丸と合わせる */
  object-fit: cover;    /* はみ出し部分を切り取り */
}
#content02 .inner a span {
  display: block;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
  background-color: #96d232;
  color: white;
  padding: 15px 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;
  z-index: 1;
  transition: .3s;
}
#content02 .inner img.sp { display: none; }
#content02 .inner a { text-decoration: none; }
#content02 .inner a span:hover {
  color: #96d232;
  background-color: white;
  transition: .3s;
}

/*----------------------   content03   ----------------------*/

#content03 {
  display: block;
  width: 70%;
  margin: 80px auto;
}
#content03 h2 {
  text-align: center;
  line-height: 1;
  display: block;
  width: 70%;
  height: auto;
  padding: 30px 0;
  margin: 0 auto;
  background-image: url('../image/title.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: #96d232;
  font-size: 30px;
}
#content03 h2 span { font-size: 16px; }
#content03 .inner {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-top: 40px;
}
#content03 .inner .box {
  display: inline-block;
  width: 40%;
}
#content03 .inner .box.text {
  display: block;
  padding-left: 30px;
}
#content03 .inner .box p {
  line-height: 2.5;
  font-size: 18px;
}
#content03 .inner .box p span {
  color: #96d232;
  font-weight: bold;
}
#content03 .inner .box a {
  display: block;
  text-align: center;
  width: 100%;
  color: white;
  text-decoration: none;
  font-size: 18px;
  background-color: #96d232;
  padding: 10px 40px;
  margin-top: 4vh;
  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;
}
#content03 .inner .box a:hover {
  color: #96d232;
  background-color: white;
  transition: .3s;
}
#content03 .inner .box.image img.sp { display: none; }
#content03 .inner .box.image img {
  display: block;
  width: 100%;
}

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

#content04 {
  display: block;
  width: 70%;
  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;
}

}