@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;
  background-color: #eee;
}
/*----------------------------
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);
  }
}

/*-------------------------------------------------------------------*/
/*-------------------------------------------------------------------*/
/*----------------------- スマホ 縦（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: inline-block;
  vertical-align: middle;
  width: 100%;
}
header#sp .header h1 p {
  display: inline-block;
  vertical-align: middle;
  width: 50%;
  color: #96d232;
  padding-left: 10px;
}
/*　ハンバーガーメニューボタン　*/
.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: 20px; }
.hamburger span:nth-child(3) { top: 30px; }
/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
   top: 15px;
   left: 11px;
   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: 15px;
   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;
}
nav.globalMenuSp.active {
   opacity: 100;
   display: block;
   transform: translateX(0%);
}

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

#top {
  display: block;
  width: 100%;
  height: auto; /* ← 高さ固定を外す（これが一番重要！） */
  min-height: 400px; /* ← 最低でも画面1枚分は確保 */
  background-size: contain; /* ← 画像全体見せたい → containにする */
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: scroll; /* ← これ入れないと変な固定になることがある */
  background-image: url('../image/sp/interview_top02.jpg');
  background-size: 100%;
  background-repeat: no-repeat;
  position: relative;
}
#top .inner {
  display: block;
  width: 60%;
  height: 10vh;
  color: white;
  position: absolute;
  bottom: 200px;
  right: 20px;
}
#top .inner h2 {
  display: block;
  width: 40%;
  filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, .6));
}
#top .inner h3 {
  display: block;
  font-size: 18px;
  font-weight: 200;
  padding: 15px 0;
  line-height: 1.25;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, .6);
}
#top .inner h3 br.pc { display: none; }
#top .inner p {
  display: block;
  background-color: rgba(0, 0, 0, .3);
  padding: 14px 20px;
  font-size: 22px;
  font-weight: 200;
}
#top .inner p span.green {
  color: #96d232;
  font-size: 12px;
}
#top .inner p span.small { font-size: 12px; }
nav {
  font-size: 12px;
  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: #999; /* 記号の色 */
}
.breadcrumb li a {
  color: #999; /* 記号の色 */
  transition: .2s;
}
.breadcrumb li a:hover {
  transition: .2s;
  color: #96d232;
}

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

#content01 {
  display: block;
  width: 70%;
  margin: 0 auto;
  text-align: left;
  font-size: 14px;
  line-height: 2.5;
}
#content01 .inner {
  display: block;
  width: 100%;
  padding: 40px 0;
}
#content01 .inner div h2 {
  display: block;
  width: 50%;
}
#content01 .inner div h2 img {
  display: block;
  width: 100%;
}
#content01 .inner div table {
  text-align: left;
  font-weight: 400;
  margin-top: 20px;
}
#content01 .inner div table th {
  color: #96d232;
  padding-right: 20px;
}
#content01 .inner div.image {
  display: block;
  width: 100%;
  margin: 0 auto;
}
#content01 .inner div.image img {
  display: block;
  width: 100%;
  border-radius: 25px;
  margin: 20px 0 0;
}

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

#content02 {
  display: block;
  position: relative;
  background-color: white;
  width: 90%;
  margin: 0 auto;
  text-align: left;
  font-size: 14px;
}
#content02 h2 {
  font-family: "din-2014", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 30px;
  color: #96d232;
  position: relative;
  padding-top: 25px;
  padding-left: 40px;
  line-height: 2;
}
#content02 h2:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 54px;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  border-radius: 5px;
  background: #96d232;
}
#content02 h3 {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  color: #96d232;
  line-height: 1.25;
  position: relative;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}
#content02 .inner {
  display: block;
  width: 80%;
  margin: 0 auto;
}
#content02 .inner p {
  position: relative;
  display: block;
  padding: 40px 0;
  line-height: 1.75;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}
#content02 .inner p span {
  font-weight: bold;
  position: relative;
  padding-left: 42px;
}
#content02 .inner p span:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  border-radius: 5px;
  background: #444;
}

/*----------------------   background_image   ----------------------*/

#background_image {
  display: block;
  position: relative;
  width: 100%;
  z-index: 0;
  margin-top: -20px;
}
#background_image img {
  display: block;
  width: 100%;
}

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

#content03 {
  display: block;
  position: relative;
  background-color: white;
  width: 90%;
  margin: -20px auto 0;
  padding-bottom: 10px;
  text-align: left;
  z-index: 1;
  font-size: 14px;
}
#content03 h2 {
  font-family: "din-2014", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 30px;
  color: #96d232;
  position: relative;
  padding-top: 25px;
  padding-left: 40px;
  line-height: 2;
}
#content03 h2:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 54px;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  border-radius: 5px;
  background: #96d232;
}
#content03 h3 {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  color: #96d232;
  line-height: 1.25;
  position: relative;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}
#content03 h3 br.pc { display: none; }
#content03 .inner {
  display: block;
  width: 80%;
  margin: 0 auto;
}
#content03 .inner p {
  position: relative;
  display: block;
  padding: 40px 0;
  line-height: 1.75;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}
#content03 .inner p span {
  font-weight: bold;
  position: relative;
  padding-left: 42px;
}
#content03 .inner p span:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  border-radius: 5px;
  background: #444;
}
#content03 .image_inner {
  display: block;
  width: 80%;
  margin: 0 auto;
}
#content03 .image_inner img {
  display: block;
  width: 100%;
  border-radius: 15px;
  margin: 0 auto 30px;
}

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

#content04 {
  display: block;
  position: relative;
  background-color: white;
  width: 90%;
  margin: 40px auto 0;
  text-align: left;
  z-index: 1;
  font-size: 14px;
}
#content04 h2 {
  font-family: "din-2014", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 30px;
  color: #96d232;
  position: relative;
  padding-top: 25px;
  padding-left: 40px;
  line-height: 2;
}
#content04 h2:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 54px;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  border-radius: 5px;
  background: #96d232;
}
#content04 h3 {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  color: #96d232;
  line-height: 1.25;
  position: relative;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}
#content04 h3 br.pc { display: none; }
#content04 .inner {
  display: block;
  width: 80%;
  margin: 0 auto;
}
#content04 .inner p {
  position: relative;
  display: block;
  padding: 40px 0;
  line-height: 1.75;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}
#content04 .inner p span {
  font-weight: bold;
  position: relative;
  padding-left: 42px;
}
#content04 .inner p span:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  border-radius: 5px;
  background: #444;
}

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

#content05 {
  display: block;
  width: 90%;
  padding: 25px 0;
  margin: 75px auto 55px;
  background-image: linear-gradient(60deg, rgba(150, 210, 50, 1), rgba(210, 255, 125, 1));
  border-radius: 30px;
}
#content05 .inner {
  display: block;
  width: 85%;
  margin: 40px auto;
}
#content05 .inner .inner_box { display: block; }
#content05 .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;
}
#content05 .inner .inner_box div h2 span { font-size: 14px; }
#content05 .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";
}
#content05 .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;
}
#content05 .inner .inner_box a.link_button {
  display: block;
  width: 100%;
  text-decoration: none;
  margin: 0 auto;
  padding: 10px;
  transition: .3s;
}

/*----------------------   content06   ----------------------*/

#content06 {
  display: block;
  position: relative;
  background-color: white;
  width: 90%;
  margin: 40px auto;
  padding: 40px 0 20px;
  text-align: left;
  z-index: 1;
  font-size: 14px;
}
#content06 h2 {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #96d232;
  line-height: 1;
  position: relative;
  text-align: center;
}
#content06 h2 img {
  display: block;
  height: 18px;
  margin: 0 auto;
}
#content06 img.schedule {
  display: block;
  width: 90%;
  margin: 20px auto 60px;
}
#content06 img.schedule.pc { display: none; }
#content06 .inner {
  display: block;
  width: 70%;
  margin: 20px auto;
}
#content06 .inner div {
  display: block;
  width: 100%;
}
#content06 .inner div p {
  display: block;
  width: 100%;
  margin: 0;
  line-height: 1.75;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}
#content06 .inner div p br.pc { display: none; }
#content06 .inner img {
  display: block;
  width: 100%;
  border-radius: 30px;
  margin: 20px auto;
}

/*----------------------   content_wrap   ----------------------*/

#content_wrap {
  display: block;
  width: 100%;
  background-color: white;
  margin: 0;
  padding: 20px 0;
}

/*----------------------   content07   ----------------------*/

#content07 {
  display: block;
  position: relative;
  background-color: white;
  width: 90%;
  margin: 0 auto;
  padding-top: 20px;
  text-align: left;
  z-index: 1;
  font-size: 14px;
}
#content07 h2 {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #96d232;
  line-height: 1;
  position: relative;
  text-align: center;
}
#content07 h2 img {
  display: block;
  height: 18px;
  margin: 0 auto;
}
#content07 table {
  display: block;
  width: 90%;
  text-align: left;
  font-weight: 400;
  margin: 20px auto 0;
  border-collapse: separate;
  border-spacing: 0 25px;
}
#content07 table th {
  display: inline-block;
  vertical-align: middle;
  width: 20%;
  margin: 0 0 20px 0;
}
#content07 table th img {
  display: block;
  width: 100%;
}
#content07 table td {
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  line-height: 1.75;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}
#content07 a {
  display: block;
  text-align: center;
  color: white;
  text-decoration: none;
  font-size: 16px;
  background-color: #96d232;
  padding: 20px 0;
  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;
}
#content07 a:hover {
  color: #96d232;
  background-color: white;
  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: 200;
}
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: 400px; /* ← 最低でも画面1枚分は確保 */
  background-size: contain; /* ← 画像全体見せたい → containにする */
  background-repeat: no-repeat;
  background-position: top center;
  background-attachment: scroll; /* ← これ入れないと変な固定になることがある */
  background-image: url('../image/sp/interview_top02.jpg');
  background-size: 100%;
  background-repeat: no-repeat;
  position: relative;
}
#top .inner {
  display: block;
  width: 50%;
  height: 10vh;
  color: white;
  position: absolute;
  bottom: 200px;
  right: 30px;
}
#top .inner h2 {
  display: block;
  width: 60%;
  filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, .6));
}
#top .inner h3 {
  display: block;
  font-size: 18px;
  font-weight: 200;
  padding: 15px 0;
  line-height: 1.5;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, .6);
}
#top .inner h3 br.pc { display: none; }
#top .inner p {
  display: block;
  background-color: rgba(0, 0, 0, .3);
  padding: 14px 20px;
  font-size: 22px;
  font-weight: 200;
}
#top .inner p span.green {
  color: #96d232;
  font-size: 12px;
}
#top .inner p span.small { font-size: 12px; }
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: #888; /* 記号の色 */
}
.breadcrumb li a {
  color: #888; /* 記号の色 */
  transition: .2s;
}
.breadcrumb li a:hover {
  transition: .2s;
  color: #96d232;
}

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

#content01 {
  display: block;
  width: 70%;
  margin: 0 auto;
  text-align: left;
  font-size: 18px;
  line-height: 2.5;
}
#content01 .inner {
  display: block;
  width: 100%;
  padding: 40px 0;
}
#content01 .inner div h2 {
  display: block;
  width: 50%;
}
#content01 .inner div h2 img {
  display: block;
  width: 100%;
}
#content01 .inner div table {
  text-align: left;
  font-weight: 400;
  margin-top: 20px;
}
#content01 .inner div table th {
  color: #96d232;
  padding-right: 20px;
}
#content01 .inner div.image {
  display: block;
  width: 100%;
  margin: 0 auto;
}
#content01 .inner div.image img {
  display: block;
  width: 100%;
  border-radius: 25px;
  margin: 20px 0 0;
}

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

#content02 {
  display: block;
  position: relative;
  background-color: white;
  width: 90%;
  margin: 0 auto;
  text-align: left;
  font-size: 18px;
  z-index: 2;
}
#content02 h2 {
  font-family: "din-2014", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 30px;
  color: #96d232;
  position: relative;
  padding-top: 25px;
  padding-left: 40px;
  line-height: 2;
}
#content02 h2:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 54px;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  border-radius: 5px;
  background: #96d232;
}
#content02 h3 {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  color: #96d232;
  line-height: 1.25;
  position: relative;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}
#content02 .inner {
  display: block;
  width: 80%;
  margin: 0 auto;
}
#content02 .inner p {
  position: relative;
  display: block;
  padding: 40px 0;
  line-height: 1.75;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}
#content02 .inner p span {
  font-weight: bold;
  position: relative;
  padding-left: 42px;
}
#content02 .inner p span:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  border-radius: 5px;
  background: #444;
}

/*----------------------   background_image   ----------------------*/

#background_image {
  display: block;
  position: relative;
  width: 100%;
  z-index: 0;
}
#background_image img {
  display: block;
  width: 100%;
  margin-top: -20px;
}

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

#content03 {
  display: block;
  position: relative;
  background-color: white;
  width: 90%;
  margin: -20px auto 0;
  padding-bottom: 10px;
  text-align: left;
  z-index: 1;
  font-size: 18px;
}
#content03 h2 {
  font-family: "din-2014", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 30px;
  color: #96d232;
  position: relative;
  padding-top: 25px;
  padding-left: 40px;
  line-height: 2;
}
#content03 h2:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 54px;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  border-radius: 5px;
  background: #96d232;
}
#content03 h3 {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  color: #96d232;
  line-height: 1.25;
  position: relative;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}
#content03 h3 br.pc { display: none; }
#content03 .inner {
  display: block;
  width: 80%;
  margin: 0 auto;
}
#content03 .inner p {
  position: relative;
  display: block;
  padding: 40px 0;
  line-height: 1.75;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}
#content03 .inner p span {
  font-weight: bold;
  position: relative;
  padding-left: 42px;
}
#content03 .inner p span:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  border-radius: 5px;
  background: #444;
}
#content03 .image_inner {
  display: block;
  width: 80%;
  margin: 0 auto;
}
#content03 .image_inner img {
  display: block;
  width: 100%;
  border-radius: 15px;
  margin: 0 auto 30px;
}

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

#content04 {
  display: block;
  position: relative;
  background-color: white;
  width: 90%;
  margin: 40px auto 0;
  text-align: left;
  z-index: 1;
  font-size: 18px;
}
#content04 h2 {
  font-family: "din-2014", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 30px;
  color: #96d232;
  position: relative;
  padding-top: 25px;
  padding-left: 40px;
  line-height: 2;
}
#content04 h2:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 54px;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  border-radius: 5px;
  background: #96d232;
}
#content04 h3 {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  color: #96d232;
  line-height: 1.25;
  position: relative;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}
#content04 h3 br.pc { display: none; }
#content04 .inner {
  display: block;
  width: 80%;
  margin: 0 auto;
}
#content04 .inner p {
  position: relative;
  display: block;
  padding: 40px 0;
  line-height: 1.75;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}
#content04 .inner p span {
  font-weight: bold;
  position: relative;
  padding-left: 42px;
}
#content04 .inner p span:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  border-radius: 5px;
  background: #444;
}

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

#content05 {
  display: block;
  width: 90%;
  padding: 60px 0;
  margin: 40px auto 80px;
  background-image: linear-gradient(60deg, rgba(150, 210, 50, 1), rgba(210, 255, 125, 1));
  border-radius: 30px;
}
#content05 .inner {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 90%;
  margin: 0 auto;
}
#content05 .inner .inner_box {
  display: block;
  width: 48%;
  margin: 0;
  padding: 0;
}
#content05 .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;
}
#content05 .inner .inner_box div h2 span { font-size: 18px; }
#content05 .inner .inner_box div p {
  font-size: 18px;
  line-height: 1.75;
  color: white;
  padding-top: 20px;
}
#content05 .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;
}
#content05 .inner .inner_box a.link_button {
  display: block;
  width: 90%;
  text-decoration: none;
  margin: 60px auto 0;
  padding: 0;
  transition: .3s;
}
#content05 .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;
}

/*----------------------   content06   ----------------------*/

#content06 {
  display: block;
  position: relative;
  background-color: white;
  width: 90%;
  margin: 40px auto;
  padding: 40px 0 20px;
  text-align: left;
  z-index: 1;
  font-size: 18px;
}
#content06 h2 {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #96d232;
  line-height: 1;
  position: relative;
  text-align: center;
}
#content06 h2 img {
  display: block;
  height: 30px;
  margin: 0 auto;
}
#content06 img.schedule {
  display: block;
  width: 90%;
  margin: 60px auto 80px;
}
#content06 img.schedule.pc { display: none; }
#content06 .inner {
  display: block;
  width: 70%;
  margin: 20px auto;
}
#content06 .inner div {
  display: block;
  width: 100%;
}
#content06 .inner div p {
  display: block;
  width: 100%;
  margin: 0;
  line-height: 1.75;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}
#content06 .inner div p br.pc { display: none; }
#content06 .inner img {
  display: block;
  width: 100%;
  border-radius: 30px;
  margin: 40px auto;
}

/*----------------------   content_wrap   ----------------------*/

#content_wrap {
  display: block;
  width: 100%;
  background-color: white;
  margin: 0;
  padding: 1px 0;
}

/*----------------------   content07   ----------------------*/

#content07 {
  display: block;
  position: relative;
  background-color: white;
  width: 90%;
  margin: 40px auto;
  padding: 20px 0;
  text-align: left;
  z-index: 1;
  font-size: 18px;
}
#content07 h2 {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #96d232;
  line-height: 1;
  position: relative;
  text-align: center;
}
#content07 h2 img {
  display: block;
  height: 30px;
  margin: 0 auto;
}
#content07 table {
  display: block;
  width: 90%;
  text-align: left;
  font-weight: 400;
  margin: 20px auto 0;
  border-collapse: separate;
  border-spacing: 0 25px;
}
#content07 table th {
  display: inline-block;
  vertical-align: middle;
  width: 30%;
}
#content07 table th img {
  display: block;
  width: 70%;
  margin: 0 0 20px 0;
}
#content07 table td {
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  line-height: 1.75;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}
#content07 a {
  width: 50%;
  display: block;
  text-align: center;
  color: white;
  text-decoration: none;
  font-size: 20px;
  background-color: #96d232;
  padding: 20px 0;
  margin: 40px auto 0;
  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;
}
#content07 a:hover {
  color: #96d232;
  background-color: white;
  transition: .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%;
  z-index: 10;
}
#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: auto; /* ← 高さ固定を外す（これが一番重要！） */
  min-height: 600px; /* ← 最低でも画面1枚分は確保 */
  background-size: contain; /* ← 画像全体見せたい → containにする */
  background-repeat: no-repeat;
  background-position: top center;
  background-attachment: scroll; /* ← これ入れないと変な固定になることがある */
  background-image: url('../image/sp/interview_top02.jpg');
  background-size: 100%;
  background-repeat: no-repeat;
  position: relative;
}
#top .inner {
  display: block;
  width: 50%;
  height: 10vh;
  color: white;
  position: absolute;
  bottom: 200px;
  right: 30px;
}
#top .inner h2 {
  display: block;
  width: 50%;
  filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, .6));
}
#top .inner h3 {
  display: block;
  font-size: 24px;
  font-weight: 200;
  padding: 15px 0;
  line-height: 1.5;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, .6);
}
#top .inner h3 br.pc { display: none; }
#top .inner p {
  display: block;
  background-color: rgba(0, 0, 0, .3);
  padding: 14px 20px;
  font-size: 24px;
  font-weight: 200;
}
#top .inner p span.green {
  color: #96d232;
  font-size: 16px;
}
#top .inner p span.small { font-size: 16px; }
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: #999; /* 記号の色 */
}
.breadcrumb li a {
  color: #999; /* 記号の色 */
  transition: .2s;
}
.breadcrumb li a:hover {
  transition: .2s;
  color: #96d232;
}

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

#content01 {
  display: block;
  width: 70%;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.75;
}
#content01 .inner {
  display: block;
  width: 100%;
  padding: 80px 0;
}
#content01 .inner div h2 {
  display: block;
  width: 50%;
}
#content01 .inner div h2 img {
  display: block;
  width: 100%;
}
#content01 .inner div table {
  text-align: left;
  font-weight: 400;
  margin-top: 40px;
  border-collapse: collapse;
}
#content01 .inner div table th {
  color: #96d232;
  padding: 5px 0;
  font-size: 26px;
  vertical-align: middle;
  /* 必要なら横中央も */
  text-align: center;
  /* もし display:block；にしてるなら元に戻す */
  display: table-cell;
  text-align: left;
}
#content01 .inner div table td {
  padding: 5px 40px;
  vertical-align: middle;
  /* 必要なら横中央も */
  text-align: center;
  /* もし display:block；にしてるなら元に戻す */
  display: table-cell;
  text-align: left;
}
#content01 .inner div.image {
  display: block;
  width: 100%;
  margin: 0 auto;
}
#content01 .inner div.image img {
  display: block;
  width: 100%;
  border-radius: 30px;
  margin: 80px 0 0;
}

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

#content02 {
  display: block;
  position: relative;
  background-color: white;
  width: 90%;
  margin: 0 auto;
  text-align: left;
  z-index: 1;
  line-height: 1.75;
  font-size: 20px;
}
#content02 h2 {
  font-family: "din-2014", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 50px;
  color: #96d232;
  position: relative;
  padding-top: 25px;
  padding-left: 40px;
  line-height: 2;
}
#content02 h2:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 75px;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  border-radius: 5px;
  background: #96d232;
}
#content02 h3 {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  color: #96d232;
  line-height: 1.25;
  position: relative;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}
#content02 .inner {
  display: block;
  width: 90%;
  margin: 0 auto;
}
#content02 .inner p {
  position: relative;
  display: block;
  padding: 40px 0;
  line-height: 2;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}
#content02 .inner p span {
  font-weight: bold;
  position: relative;
  padding-left: 42px;
}
#content02 .inner p span:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  border-radius: 5px;
  background: #444;
}

/*----------------------   background_image   ----------------------*/

#background_image {
  display: block;
  position: relative;
  width: 100%;
  z-index: 0;
  margin-top: -60px;
}
#background_image img {
  display: block;
  width: 100%;
}

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

#content03 {
  display: block;
  position: relative;
  background-color: white;
  width: 90%;
  margin: -60px auto 0;
  padding-bottom: 10px;
  text-align: left;
  z-index: 1;
  line-height: 1.75;
  font-size: 18px;
}
#content03 h2 {
  font-family: "din-2014", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 50px;
  color: #96d232;
  position: relative;
  padding-top: 25px;
  padding-left: 40px;
  line-height: 2;
}
#content03 h2:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 75px;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  border-radius: 5px;
  background: #96d232;
}
#content03 h3 {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  color: #96d232;
  line-height: 1.25;
  position: relative;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}
#content03 h3 br.pc { display: none; }
#content03 .inner {
  display: block;
  width: 90%;
  margin: 0 auto;
}
#content03 .inner p {
  position: relative;
  display: block;
  padding: 40px 0;
  line-height: 2;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}
#content03 .inner p span {
  font-weight: bold;
  position: relative;
  padding-left: 42px;
}
#content03 .inner p span:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  border-radius: 5px;
  background: #444;
}
#content03 .image_inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax( 10px, 1fr ));
  gap: 30px;     /* 行／列の両方に 20px の隙間 */
  padding: 0 30px;
}
#content03 .image_inner img {
  display: block;
  width: 100%;
  border-radius: 15px;
  margin: 0 auto 40px;
}

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

#content04 {
  display: block;
  position: relative;
  background-color: white;
  width: 90%;
  margin: 40px auto 80px;
  text-align: left;
  z-index: 1;
  line-height: 1.75;
  font-size: 18px;
}
#content04 h2 {
  font-family: "din-2014", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 50px;
  color: #96d232;
  position: relative;
  padding-top: 25px;
  padding-left: 40px;
  line-height: 2;
}
#content04 h2:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 75px;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  border-radius: 5px;
  background: #96d232;
}
#content04 h3 {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  color: #96d232;
  line-height: 1.25;
  position: relative;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}
#content04 h3 br.pc { display: none; }
#content04 .inner {
  display: block;
  width: 90%;
  margin: 0 auto;
}
#content04 .inner p {
  position: relative;
  display: block;
  padding: 40px 0;
  line-height: 2;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}
#content04 .inner p span {
  font-weight: bold;
  position: relative;
  padding-left: 42px;
}
#content04 .inner p span:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  border-radius: 5px;
  background: #444;
}

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

#content05 {
  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;
}
#content05 .inner {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 90%;
  margin: 0 auto;
}
#content05 .inner .inner_box {
  display: block;
  width: 48%;
  margin: 0;
  padding: 0;
}
#content05 .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;
}
#content05 .inner .inner_box div h2 span { font-size: 18px; }
#content05 .inner .inner_box div p {
  font-size: 18px;
  line-height: 1.75;
  color: white;
  padding-top: 20px;
}
#content05 .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;
}
#content05 .inner .inner_box a.link_button {
  display: block;
  width: 90%;
  text-decoration: none;
  margin: 60px auto 0;
  padding: 0;
  transition: .3s;
}
#content05 .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;
}

/*----------------------   content06   ----------------------*/

#content06 {
  display: block;
  position: relative;
  background-color: white;
  width: 90%;
  margin: 40px auto 80px;
  padding: 50px 0;
  text-align: left;
  z-index: 1;
  line-height: 1.75;
  font-size: 18px;
}
#content06 h2 {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #96d232;
  line-height: 1;
  position: relative;
  text-align: center;
}
#content06 h2 img {
  display: block;
  margin: 0 auto;
  height: 36px;
}
#content06 img.schedule {
  display: block;
  width: 90%;
  margin: 40px auto 120px;
}
#content06 img.schedule.pc { display: none; }
#content06 .inner {
  display: block;
  width: 70%;
  margin: 20px auto;
}
#content06 .inner div {
  display: block;
  width: 100%;
}
#content06 .inner div p {
  display: block;
  width: 100%;
  margin: 0;
  line-height: 1.75;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}
#content06 .inner div p br.pc { display: none; }
#content06 .inner img {
  display: block;
  width: 100%;
  border-radius: 30px;
  margin: 20px auto;
}

/*----------------------   content_wrap   ----------------------*/

#content_wrap {
  display: block;
  width: 100%;
  background-color: white;
  margin: 0;
  padding: 1px 0;
}

/*----------------------   content07   ----------------------*/

#content07 {
  display: block;
  position: relative;
  background-color: white;
  width: 90%;
  margin: 0 auto;
  padding-top: 60px;
  text-align: left;
  z-index: 1;
  font-size: 18px;
}
#content07 h2 {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #96d232;
  line-height: 1;
  position: relative;
  text-align: center;
}
#content07 h2 img {
  display: block;
  height: 36px;
  margin: 0 auto;
}
#content07 table {
  display: block;
  width: 100%;
  text-align: left;
  font-weight: 400;
  margin: 20px auto 0;
  border-collapse: separate;
  border-spacing: 0 25px;
}
#content07 table th {
  display: inline-block;
  vertical-align: middle;
  width: 30%;
  margin: 0 0 20px 0;
}
#content07 table th img {
  display: block;
  width: 50%;
}
#content07 table td {
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  line-height: 1.75;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}
#content07 a {
  display: block;
  width: 50%;
  text-align: center;
  color: white;
  text-decoration: none;
  font-size: 20px;
  background-color: #96d232;
  padding: 20px 0;
  margin: 60px auto 0;
  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;
}
#content07 a:hover {
  color: #96d232;
  background-color: white;
  transition: .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%;
  z-index: 100;
}
#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: 200;
}
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: 600px; /* ← 最低でも画面1枚分は確保 */
  background-size: contain; /* ← 画像全体見せたい → containにする */
  background-repeat: no-repeat;
  background-position: top center;
  background-attachment: scroll; /* ← これ入れないと変な固定になることがある */
  background-image: url('../image/sp/interview_top02.jpg');
  background-size: 100%;
  background-repeat: no-repeat;
  position: relative;
}
#top .inner {
  display: block;
  width: 50%;
  height: 10vh;
  color: white;
  position: absolute;
  bottom: 230px;
  right: 30px;
}
#top .inner h2 {
  display: block;
  width: 60%;
  filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, .6));
}
#top .inner h3 {
  display: block;
  font-size: 20px;
  font-weight: 200;
  padding: 15px 0;
  line-height: 1.5;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, .6);
}
#top .inner h3 br.pc { display: none; }
#top .inner p {
  display: block;
  background-color: rgba(0, 0, 0, .3);
  padding: 14px 20px;
  font-size: 20px;
  font-weight: 200;
}
#top .inner p span.green {
  color: #96d232;
  font-size: 14px;
}
#top .inner p span.small { font-size: 14px; }
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: #999; /* 記号の色 */
}
.breadcrumb li a {
  color: #999; /* 記号の色 */
  transition: .2s;
}
.breadcrumb li a:hover {
  transition: .2s;
  color: #96d232;
}

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

#content01 {
  display: block;
  width: 70%;
  margin: 0 auto;
  text-align: left;
  font-size: 18px;
  line-height: 2.5;
}
#content01 .inner {
  display: block;
  width: 100%;
  padding: 40px 0;
}
#content01 .inner div h2 {
  display: block;
  width: 40%;
}
#content01 .inner div h2 img {
  display: block;
  width: 100%;
}
#content01 .inner div table {
  text-align: left;
  font-weight: 400;
  margin-top: 20px;
}
#content01 .inner div table th {
  color: #96d232;
  padding-right: 20px;
}
#content01 .inner div.image {
  display: block;
  width: 100%;
  margin: 0 auto;
}
#content01 .inner div.image img {
  display: block;
  width: 100%;
  border-radius: 25px;
  margin: 20px 0 0;
}

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

#content02 {
  display: block;
  position: relative;
  background-color: white;
  width: 90%;
  margin: 0 auto;
  text-align: left;
  font-size: 18px;
  z-index: 2;
}
#content02 h2 {
  font-family: "din-2014", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 50px;
  color: #96d232;
  position: relative;
  padding-top: 25px;
  padding-left: 40px;
  line-height: 2;
}
#content02 h2:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 74px;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  border-radius: 5px;
  background: #96d232;
}
#content02 h3 {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  color: #96d232;
  line-height: 1.25;
  position: relative;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}
#content02 .inner {
  display: block;
  width: 80%;
  margin: 0 auto;
}
#content02 .inner p {
  position: relative;
  display: block;
  padding: 40px 0;
  line-height: 1.75;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}
#content02 .inner p span {
  font-weight: bold;
  position: relative;
  padding-left: 42px;
}
#content02 .inner p span:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  border-radius: 5px;
  background: #444;
}

/*----------------------   background_image   ----------------------*/

#background_image {
  display: block;
  position: relative;
  width: 100%;
  z-index: 0;
}
#background_image img {
  display: block;
  width: 100%;
  margin-top: -20px;
}

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

#content03 {
  display: block;
  position: relative;
  background-color: white;
  width: 90%;
  margin: -20px auto 0;
  padding-bottom: 10px;
  text-align: left;
  z-index: 1;
  font-size: 18px;
}
#content03 h2 {
  font-family: "din-2014", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 30px;
  color: #96d232;
  position: relative;
  padding-top: 25px;
  padding-left: 40px;
  line-height: 2;
}
#content03 h2:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 54px;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  border-radius: 5px;
  background: #96d232;
}
#content03 h3 {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  color: #96d232;
  line-height: 1.25;
  position: relative;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}
#content03 h3 br.pc { display: none; }
#content03 .inner {
  display: block;
  width: 80%;
  margin: 0 auto;
}
#content03 .inner p {
  position: relative;
  display: block;
  padding: 40px 0;
  line-height: 1.75;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}
#content03 .inner p span {
  font-weight: bold;
  position: relative;
  padding-left: 42px;
}
#content03 .inner p span:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  border-radius: 5px;
  background: #444;
}
#content03 .image_inner {
  display: block;
  width: 80%;
  margin: 0 auto;
}
#content03 .image_inner img {
  display: block;
  width: 100%;
  border-radius: 15px;
  margin: 0 auto 30px;
}

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

#content04 {
  display: block;
  position: relative;
  background-color: white;
  width: 90%;
  margin: 40px auto 0;
  text-align: left;
  z-index: 1;
  font-size: 18px;
}
#content04 h2 {
  font-family: "din-2014", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 30px;
  color: #96d232;
  position: relative;
  padding-top: 25px;
  padding-left: 40px;
  line-height: 2;
}
#content04 h2:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 54px;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  border-radius: 5px;
  background: #96d232;
}
#content04 h3 {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  color: #96d232;
  line-height: 1.25;
  position: relative;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}
#content04 h3 br.pc { display: none; }
#content04 .inner {
  display: block;
  width: 80%;
  margin: 0 auto;
}
#content04 .inner p {
  position: relative;
  display: block;
  padding: 40px 0;
  line-height: 1.75;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}
#content04 .inner p span {
  font-weight: bold;
  position: relative;
  padding-left: 42px;
}
#content04 .inner p span:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  border-radius: 5px;
  background: #444;
}

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

#content05 {
  display: block;
  width: 90%;
  padding: 60px 0;
  margin: 40px auto 80px;
  background-image: linear-gradient(60deg, rgba(150, 210, 50, 1), rgba(210, 255, 125, 1));
  border-radius: 30px;
}
#content05 .inner {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 90%;
  margin: 0 auto;
}
#content05 .inner .inner_box {
  display: block;
  width: 48%;
  margin: 0;
  padding: 0;
}
#content05 .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;
}
#content05 .inner .inner_box div h2 span { font-size: 18px; }
#content05 .inner .inner_box div p {
  font-size: 18px;
  line-height: 1.75;
  color: white;
  padding-top: 20px;
}
#content05 .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;
}
#content05 .inner .inner_box a.link_button {
  display: block;
  width: 90%;
  text-decoration: none;
  margin: 60px auto 0;
  padding: 0;
  transition: .3s;
}
#content05 .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;
}

/*----------------------   content06   ----------------------*/

#content06 {
  display: block;
  position: relative;
  background-color: white;
  width: 90%;
  margin: 40px auto;
  padding: 40px 0 20px;
  text-align: left;
  z-index: 1;
  font-size: 18px;
}
#content06 h2 {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #96d232;
  line-height: 1;
  position: relative;
  text-align: center;
}
#content06 h2 img {
  display: block;
  height: 30px;
  margin: 0 auto;
}
#content06 img.schedule {
  display: block;
  width: 90%;
  margin: 60px auto 80px;
}
#content06 img.schedule.pc { display: none; }
#content06 .inner {
  display: block;
  width: 70%;
  margin: 20px auto;
}
#content06 .inner div {
  display: block;
  width: 100%;
}
#content06 .inner div p {
  display: block;
  width: 100%;
  margin: 0;
  line-height: 1.75;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}
#content06 .inner div p br.pc { display: none; }
#content06 .inner img {
  display: block;
  width: 100%;
  border-radius: 30px;
  margin: 40px auto;
}

/*----------------------   content_wrap   ----------------------*/

#content_wrap {
  display: block;
  width: 100%;
  background-color: white;
  margin: 0;
  padding: 1px 0;
}

/*----------------------   content07   ----------------------*/

#content07 {
  display: block;
  position: relative;
  background-color: white;
  width: 90%;
  margin: 40px auto;
  padding: 20px 0;
  text-align: left;
  z-index: 1;
  font-size: 18px;
}
#content07 h2 {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #96d232;
  line-height: 1;
  position: relative;
  text-align: center;
}
#content07 h2 img {
  display: block;
  height: 30px;
  margin: 0 auto;
}
#content07 table {
  display: block;
  width: 90%;
  text-align: left;
  font-weight: 400;
  margin: 20px auto 0;
  border-collapse: separate;
  border-spacing: 0 25px;
}
#content07 table th {
  display: inline-block;
  vertical-align: middle;
  width: 30%;
}
#content07 table th img {
  display: block;
  width: 70%;
  margin: 0 0 20px 0;
}
#content07 table td {
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  line-height: 1.75;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}
#content07 a {
  width: 50%;
  display: block;
  text-align: center;
  color: white;
  text-decoration: none;
  font-size: 20px;
  background-color: #96d232;
  padding: 20px 0;
  margin: 40px auto 0;
  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;
}
#content07 a:hover {
  color: #96d232;
  background-color: white;
  transition: .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%;
  z-index: 100;
}
#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 --*/
/*-- サブ紫　#8c64b4 --*/

/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*----------------------- 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 {
  position: relative;
  display: flex;               /* これで子をフレックスアイテムに */
  align-items: center;         /* 縦方向の中央揃え */
  justify-content: flex-end;   /* 横方向は右寄せ */
  width: 100%;
  min-height: 50vh;
  background-image: url('../image/interview_top02.jpg');
  background-size: cover;      /* どんな比率でも左右いっぱいに */
  background-position: center;
}
#top .inner {
  /* 横幅はお好みで％指定 */
  width: 40%;
  /* 右から余白を開けたいならマージンで */
  margin-right: 5%;
  /* あとは普通にテキストスタイルだけ */
  color: white;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}
#top .inner h2 {
  width: 80%;
  filter: drop-shadow(1px 1px 4px rgba(0,0,0,.6));
}
#top .inner h3 {
  font-size: 30px;
  padding: 20px 0;
  line-height: 1.5;
}
#top .inner h3 br.pc { display: none; }
#top .inner p {
  display: block;
  background-color: rgba(0, 0, 0, .3);
  padding: 14px 20px;
  font-size: 26px;
  font-weight: 200;
}
#top .inner p span.green {
  color: #96d232;
  font-size: 16px;
}
#top .inner p span.small { font-size: 16px; }
nav {
  font-size: 14px;
  display: block;
  margin: 0 auto;
  padding: 24px 0 40px;
  width: 70%;
  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: #999;
}
.breadcrumb li a {
  color: #999;
  transition: .2s;
}
.breadcrumb li a:hover {
  transition: .2s;
  color: #96d232;
}

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

#content01 {
  display: block;
  width: 70%;
  margin: 40px auto 80px;
  text-align: left;
  line-height: 2.5;
  font-size: 16px;
}
#content01 .inner {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
  margin: 0 auto;
  padding: 0
}
#content01 .inner div {
  display: inline-block;
  width: 30%;
  margin: 0 auto 0 0;
}
#content01 .inner div h2 {
  display: block;
  width: 80%;
}
#content01 .inner div h2 img {
  display: block;
  width: 100%;
}
#content01 .inner div table {
  text-align: left;
  font-weight: 400;
  margin-top: 25px;
}
#content01 .inner div table th {
  color: #96d232;
  padding-right: 40px;
}
#content01 .inner div.image {
  display: block;
  width: 60%;
  margin: 0 0 0 auto;
}
#content01 .inner div.image img {
  display: block;
  width: 100%;
  border-radius: 50px;
}

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

#content02 {
  display: block;
  position: relative;
  background-color: white;
  width: 70%;
  margin: 0 auto;
  text-align: left;
  line-height: 2.5;
  z-index: 1;
}
#content02 h2 {
  font-family: "din-2014", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 50px;
  color: #96d232;
  position: relative;
  padding-top: 40px;
  padding-left: 60px;
}
#content02 h2:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 100px;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  border-radius: 5px;
  background: #96d232;
}
#content02 h3 {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 36px;
  color: #96d232;
  line-height: 1.25;
  position: relative;
}
#content02 .inner {
  display: block;
  width: 90%;
  margin: 0 auto;
}
#content02 .inner p {
  font-size: 16px;
  padding: 40px 0;
  position: relative;
  display: block;
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-ideograph;
}
#content02 .inner p span {
  font-weight: bold;
  position: relative;
  padding-left: 42px;
}
#content02 .inner p span:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  border-radius: 5px;
  background: #444;
}

/*----------------------   background_image   ----------------------*/

#background_image {
  display: block;
  position: relative;
  width: 100%;
  z-index: 0;
  margin-top: -100px;
}
#background_image img {
  display: block;
  width: 100%;
}

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

#content03 {
  display: block;
  position: relative;
  background-color: white;
  width: 70%;
  margin: 0 auto;
  text-align: left;
  line-height: 2.5;
  z-index: 1;
  margin: -50px auto 0;
  z-index: 1;
  padding-bottom: 60px;
}
#content03 h2 {
  font-family: "din-2014", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 50px;
  color: #96d232;
  position: relative;
  padding-top: 40px;
  padding-left: 60px;
}
#content03 h2:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 100px;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  border-radius: 5px;
  background: #96d232;
}
#content03 h3 {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 36px;
  color: #96d232;
  line-height: 1.25;
  position: relative;
}
#content03 .inner {
  display: block;
  width: 90%;
  margin: 0 auto;
}
#content03 .inner p {
  font-size: 16px;
  padding: 40px 0;
  position: relative;
  display: block;
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-ideograph;
}
#content03 .inner p span {
  font-weight: bold;
  position: relative;
  padding-left: 42px;
}
#content03 .inner p span:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  border-radius: 5px;
  background: #444;
}
#content03 .image_inner {
  display: flex;
  justify-content: center;  /* ← 左右の余白ゼロで中央寄せ */
  align-items: center;
  gap: 20px;                 /* ← 画像間だけ 20px 開く */
  width: 43%;
  margin: 0 auto;
}
#content03 .image_inner img {
  flex: 1;                   /* ← 余白を差っ引いた幅を等分 */
  max-width: 100%;
  height: auto;
  border-radius: 30px;
}

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

#content04 {
  display: block;
  position: relative;
  background-color: white;
  width: 70%;
  margin: 60px auto;
  text-align: left;
  line-height: 2.5;
  z-index: 1;
}
#content04 h2 {
  font-family: "din-2014", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 50px;
  color: #96d232;
  position: relative;
  padding-top: 40px;
  padding-left: 60px;
}
#content04 h2:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 100px;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  border-radius: 5px;
  background: #96d232;
}
#content04 h3 {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 36px;
  color: #96d232;
  line-height: 1.25;
  position: relative;
}
#content04 .inner {
  display: block;
  width: 90%;
  margin: 0 auto;
}
#content04 .inner p {
  font-size: 16px;
  padding: 40px 0;
  position: relative;
  display: block;
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-ideograph;
}
#content04 .inner p span {
  font-weight: bold;
  position: relative;
  padding-left: 42px;
}
#content04 .inner p span:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  border-radius: 5px;
  background: #444;
}

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

#content05 {
  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;
}
#content05 .inner {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 90%;
  margin: 0 auto;
  padding: 60px 0;
}
#content05 .inner .inner_box {
  display: block;
  width: 40%;
  margin: 0;
  padding: 0;
}
#content05 .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;
}
#content05 .inner .inner_box div h2 span { font-size: 14px; }
#content05 .inner .inner_box div p {
  display: block;
  margin: 0 auto;
  font-size: 16px;
  padding: 40px;
  line-height: 2;
  color: white;
}
#content05 .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;
}
#content05 .inner .inner_box a.link:hover {
  color: #96d232;
  background-color: white;
  transition: .3s;
}
#content05 .inner .inner_box a.link_button {
  display: block;
  width: 80%;
  text-decoration: none;
  margin: 30px auto;
  padding: 10px;
  transition: .3s;
}
#content05 .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;
}

/*----------------------   content06   ----------------------*/

#content06 {
  display: block;
  width: 70%;
  margin: 0 auto 60px;
  padding: 80px 0 40px;
  text-align: left;
  line-height: 2.5;
  font-size: 16px;
  background-color: white;
}
#content06 h2 {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  color: #96d232;
  line-height: 1.25;
  position: relative;
  text-align: center;
}
#content06 h2 img {
  display: block;
  height: 36px;
  margin: 0 auto;
}
#content06 img.schedule {
  display: block;
  width: 90%;
  margin: 60px auto 120px;
}
#content06 img.schedule.sp { display: none; }
#content06 .inner {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 70%;
  margin: 60px auto;
}
#content06 .inner div {
  display: block;
  width: 50%;
  margin: 0 auto;
}
#content06 .inner div p {
  display: block;
  margin: 0 auto;
  font-size: 17px;
  padding: 0 40px 0 0;
  line-height: 2.25;
  text-align: justify;
  text-justify: inter-ideograph;
}
#content06 .inner img {
  display: block;
  border-radius: 30px;
  margin: 0 0 0 auto;
}

/*----------------------   content_wrap   ----------------------*/

#content_wrap {
  display: block;
  width: 100%;
  background-color: white;
  margin: 0;
  padding: 20px 0;
}

/*----------------------   content07   ----------------------*/

#content07 {
  display: block;
  position: relative;
  background-color: white;
  width: 70%;
  margin: 60px auto 0;
  text-align: left;
  line-height: 1.75;
  font-size: 16px;
  z-index: 1;
}
#content07 h2 {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  color: #96d232;
  line-height: 1.25;
  position: relative;
  text-align: center;
}
#content07 h2 img {
  display: block;
  height: 36px;
  margin: 0 auto;
}
#content07 table {
  display: block;
  width: 80%;
  text-align: left;
  font-weight: 400;
  margin: 80px auto 0;
  border-collapse: separate;
  border-spacing: 0 25px;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}
#content07 table th {
  display: inline-block;
  vertical-align: middle;
  width: 20%;
}
#content07 table th img {
  display: block;
  width: 60%;
}
#content07 table td {
  display: inline-block;
  width: 80%;
  vertical-align: middle;
}
#content07 a {
  display: block;
  text-align: center;
  width: 400px;
  color: white;
  text-decoration: none;
  background-color: #96d232;
  padding: 20px 40px;
  margin: 100px auto 0;
  border-radius: 50px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .2);
  transition: .3s;
}
#content07 a:hover {
  color: #96d232;
  background-color: white;
  transition: .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;
}

}
