@charset "UTF-8";
@-webkit-keyframes loader_katatsumuri {
  0% {
    -webkit-transform: scale(1.01, 0.95);
    transform: scale(1.01, 0.95);
  }
  50% {
    -webkit-transform: scale(0.95, 1.1);
    transform: scale(0.95, 1.1);
  }
  90% {
    -webkit-transform: scale(1.01, 0.95);
    transform: scale(1.01, 0.95);
  }
  100% {
    -webkit-transform: scale(1.01, 0.95);
    transform: scale(1.01, 0.95);
  }
}
@keyframes loader_katatsumuri {
  0% {
    -webkit-transform: scale(1.01, 0.95);
    transform: scale(1.01, 0.95);
  }
  50% {
    -webkit-transform: scale(0.95, 1.1);
    transform: scale(0.95, 1.1);
  }
  90% {
    -webkit-transform: scale(1.01, 0.95);
    transform: scale(1.01, 0.95);
  }
  100% {
    -webkit-transform: scale(1.01, 0.95);
    transform: scale(1.01, 0.95);
  }
}
#loading {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#loading .loader {
  opacity: 0;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}
#loading .loader img {
  -webkit-animation: loader_katatsumuri 1s infinite linear;
  animation: loader_katatsumuri 1s infinite linear;
}
@media screen and (max-width: 480px) {
  #loading .loader img {
    width: 60px;
    height: auto;
  }
}
#loading .loader p {
  margin-top: 15px;
  color: #004b36;
  font-family: "Lexend Peta", sans-serif;
  font-weight: 500;
  font-size: 1rem;
}

body.loading {
  position: fixed;
  width: 100%;
  overflow: hidden;
}
body.loading #layer {
  z-index: 99;
  background: #fff;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  opacity: 1;
}
body.loading #loading .loader {
  opacity: 1;
}

.s_ttl .en {
  display: block;
  color: #004b36;
  font-family: "Lexend Peta", sans-serif;
  font-weight: 500;
}
.s_ttl .en:first-child {
  margin-bottom: 52px;
  font-size: 3rem;
}
@media screen and (max-width: 480px) {
  .s_ttl .en:first-child {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 480px) {
  .s_ttl img {
    width: 288px;
    height: auto;
  }
}
.s_ttl img + .en {
  margin-top: 20px;
  font-size: 1.6rem;
}
@media screen and (max-width: 480px) {
  .s_ttl img + .en {
    font-size: 1.1rem;
  }
}

.article_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1100px;
  margin: 0 auto;
  text-align: left;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .article_list {
    width: 250px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 25px;
  }
}
.article_list article {
  position: relative;
  background: #fff;
  width: 250px;
  border-radius: 8px;
}
.article_list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (any-hover: hover) {
  .article_list a:hover .thumb::before {
    opacity: 0.7;
  }
  .article_list a:hover .thumb p {
    -webkit-animation: fade_in 0.5s 75ms forwards;
    animation: fade_in 0.5s 75ms forwards;
  }
  .article_list a:hover .ttl {
    color: #008e66;
  }
}
.article_list .thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 8px 8px 0 0;
}
.article_list .thumb::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #004b36;
  opacity: 0;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
  z-index: 1;
}
.article_list .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.article_list .thumb p:not(.host) {
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  font-family: "Inter", "TazuganeGothicStdN-Bold", sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}
.article_list .thumb p:not(.host)::after {
  content: "";
  display: block;
  width: 30px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: url("/img/arr1_wh.svg") no-repeat center center/6px;
}
.article_list .txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  gap: 15px;
  padding: 20px;
}
.article_list .ttl {
  margin-bottom: auto;
  font-family: "Inter", "TazuganeGothicStdN-Bold", sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.5;
  max-height: 6em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  -webkit-transition: color 0.25s;
  transition: color 0.25s;
}
.article_list .date {
  padding-left: 18px;
  position: relative;
  color: #4c5d67;
  line-height: 1;
  letter-spacing: 0.02em;
  font-family: "Inter", "TazuganeGothicStdN-Light", sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
}
.article_list .date::before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background: #008e66;
  position: absolute;
  left: 0;
  top: calc(0.5em - 0.5px);
}
.article_list .partner {
  margin-bottom: 10px;
}
.article_list .partner .label {
  display: inline-block;
  vertical-align: top;
  padding: 0 6px;
  background: #008e66;
  color: #fff;
  border-radius: 4px;
  font-family: "Inter", "TazuganeGothicStdN-Light", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.82;
  letter-spacing: 0;
}
.article_list .partner .name {
  display: block;
  margin-top: 5px;
  font-size: 1.2rem;
  line-height: 1.4;
}

#p_mv {
  height: 1206px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 480px) {
  #p_mv {
    height: 632px;
  }
}
#p_mv .shape1 {
  position: absolute;
  top: 18px;
  left: calc(50% - 361px);
}
@media screen and (max-width: 480px) {
  #p_mv .shape1 {
    width: 413px;
    height: auto;
    top: 20px;
    left: calc(50% - 134px);
  }
}
#p_mv .shape2 {
  position: absolute;
  top: 70px;
  left: calc(50% - 645px);
}
@media screen and (max-width: 480px) {
  #p_mv .shape2 {
    width: 115px;
    height: auto;
    top: 12px;
    left: calc(50% - 192px);
  }
}
#p_mv .shape3 {
  position: absolute;
  top: 688px;
  left: calc(50% - 815px);
}
@media screen and (max-width: 480px) {
  #p_mv .shape3 {
    width: 91px;
    height: auto;
    top: 249px;
    left: calc(50% - 225px);
  }
}
#p_mv .shape4 {
  position: absolute;
  top: 994px;
  left: calc(50% - 656px);
}
@media screen and (max-width: 480px) {
  #p_mv .shape4 {
    width: 226px;
    height: auto;
    top: 494px;
    left: calc(50% - 265px);
  }
}
#p_mv .shape5 {
  position: absolute;
  top: 948px;
  left: calc(50% + 620px);
}
@media screen and (max-width: 480px) {
  #p_mv .shape5 {
    width: 52px;
    height: auto;
    top: 715px;
    left: calc(50% + 151px);
  }
}
#p_mv .shape6 {
  position: absolute;
  top: -11px;
  left: calc(50% - 1130px);
}
@media screen and (max-width: 480px) {
  #p_mv .shape6 {
    display: none;
  }
}
#p_mv .shape7 {
  position: absolute;
  top: 96px;
  left: calc(50% + 920px);
}
@media screen and (max-width: 480px) {
  #p_mv .shape7 {
    display: none;
  }
}
#p_mv .shape8 {
  position: absolute;
  top: 625px;
  left: calc(50% + 844px);
}
@media screen and (max-width: 480px) {
  #p_mv .shape8 {
    display: none;
  }
}
#p_mv .inr {
  position: relative;
  z-index: 1;
  padding-top: 93px;
}
@media screen and (max-width: 480px) {
  #p_mv .inr {
    padding-top: 61px;
  }
}
#p_mv .ttl img {
  opacity: 0;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  -webkit-transition: opacity 0.5s, -webkit-clip-path 0.5s;
  transition: opacity 0.5s, -webkit-clip-path 0.5s;
  transition: opacity 0.5s, clip-path 0.5s;
  transition: opacity 0.5s, clip-path 0.5s, -webkit-clip-path 0.5s;
}
@media screen and (max-width: 480px) {
  #p_mv .ttl img {
    width: 301px;
    height: auto;
  }
}
#p_mv.done .ttl img {
  opacity: 1;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
#p_mv .video {
  margin: 62px calc(50% - 485px) 0 calc(50% - 495px);
  position: relative;
  width: 980px;
  aspect-rato: 980/710;
  position: relative;
}
@media screen and (max-width: 480px) {
  #p_mv .video {
    margin: 25px auto 0;
    margin: 25px calc(50% - 253px) 0 calc(50% - 210px);
    width: 463px;
  }
}
#p_mv .video::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("/img/mv_en.png") no-repeat center center/contain;
}
#p_mv video {
  width: 100%;
  height: auto;
  position: relative;
  -webkit-mask-image: url("/img/mv_mask.svg");
  mask-image: url("/img/mv_mask.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
#p_mv .logo {
  position: absolute;
  top: 355px;
  left: calc(50% + 264px);
  -webkit-transform: scale(0.2);
  transform: scale(0.2);
  opacity: 0;
  -webkit-transition: opacity 0.25s 0.5s, -webkit-transform 0.5s 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.25s 0.5s, -webkit-transform 0.5s 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.25s 0.5s, transform 0.5s 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.25s 0.5s, transform 0.5s 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.5s 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media screen and (max-width: 480px) {
  #p_mv .logo {
    top: 187px;
    left: calc(50% + 69px);
  }
  #p_mv .logo img {
    width: 106px;
    height: auto;
  }
}
#p_mv.done .logo {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
#p_mv .nature1 {
  position: absolute;
  top: 61px;
  left: calc(50% - 47px);
  opacity: 0;
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-transition: opacity 0.25s 0.25s, -webkit-transform 0.25s 0.25s cubic-bezier(0.61, 1, 0.88, 1);
  transition: opacity 0.25s 0.25s, -webkit-transform 0.25s 0.25s cubic-bezier(0.61, 1, 0.88, 1);
  transition: opacity 0.25s 0.25s, transform 0.25s 0.25s cubic-bezier(0.61, 1, 0.88, 1);
  transition: opacity 0.25s 0.25s, transform 0.25s 0.25s cubic-bezier(0.61, 1, 0.88, 1), -webkit-transform 0.25s 0.25s cubic-bezier(0.61, 1, 0.88, 1);
}
@media screen and (max-width: 480px) {
  #p_mv .nature1 {
    top: 47px;
    left: calc(50% - 22px);
    width: 26px;
    height: auto;
  }
}
#p_mv.done .nature1 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
#p_mv .nature2 {
  position: absolute;
  top: 180px;
  left: calc(50% - 550px);
}
@media screen and (max-width: 480px) {
  #p_mv .nature2 {
    top: 44px;
    left: calc(50% - 162px);
    width: 33px;
    height: auto;
  }
}
#p_mv .nature3 {
  position: absolute;
  top: 340px;
  left: calc(50% + 418px);
  opacity: 0;
  -webkit-transform: translate(20px, -20px);
  transform: translate(20px, -20px);
  -webkit-transition: opacity 0.25s 1s, -webkit-transform 1s 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.25s 1s, -webkit-transform 1s 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.25s 1s, transform 1s 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.25s 1s, transform 1s 1s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 1s 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media screen and (max-width: 480px) {
  #p_mv .nature3 {
    top: 182px;
    left: calc(50% + 137px);
    width: 27px;
    height: auto;
  }
}
#p_mv.done .nature3 {
  opacity: 1;
  -webkit-transform: translate(0);
  transform: translate(0);
}
#p_mv .nature4 {
  position: absolute;
  top: 606px;
  left: calc(50% - 621px);
}
@media screen and (max-width: 480px) {
  #p_mv .nature4 {
    top: 262px;
    left: calc(50% - 167px);
    width: 34px;
    height: auto;
  }
}
#p_mv .nature5 {
  position: absolute;
  top: 1001px;
  left: calc(50% - 652px);
}
@media screen and (max-width: 480px) {
  #p_mv .nature5 {
    top: 535px;
    left: calc(50% - 169px);
    width: 137px;
    height: auto;
  }
}
#p_mv .child1 {
  position: absolute;
  top: 837px;
  left: calc(50% + 447px);
}
@media screen and (max-width: 480px) {
  #p_mv .child1 {
    top: 499px;
    left: calc(50% + 115px);
    width: 47px;
    height: auto;
  }
}
#p_mv .hand1 {
  position: absolute;
  top: 272px;
  left: calc(50% - 878px);
  opacity: 0;
  -webkit-transform: translate(-20px, -20px);
  transform: translate(-20px, -20px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
@media screen and (max-width: 480px) {
  #p_mv .hand1 {
    top: 158px;
    left: calc(50% - 269px);
    width: 203px;
    height: auto;
    -webkit-transform: rotate(10.78deg);
    transform: rotate(10.78deg);
  }
}
#p_mv .hand1.done {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
#p_mv .hand2 {
  position: absolute;
  top: 985px;
  left: calc(50% + 129px);
  opacity: 0;
  -webkit-transform: translate(30px, 20px);
  transform: translate(30px, 20px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
@media screen and (max-width: 480px) {
  #p_mv .hand2 {
    top: 554px;
    left: calc(50% + 9px);
    width: 276px;
    height: auto;
  }
}
#p_mv .hand2.done {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

#s_about {
  position: relative;
}
#s_about::before, #s_about::after {
  content: "";
  display: block;
  position: absolute;
}
#s_about::before {
  background: url("/img/about_children1.png") no-repeat 0 0/contain;
  aspect-ratio: 272/294;
  width: 136px;
  bottom: 74px;
  left: calc(50% - 515px);
}
@media screen and (max-width: 480px) {
  #s_about::before {
    display: none;
  }
}
#s_about::after {
  width: 100%;
  left: 0;
  bottom: -50px;
  height: 535px;
  background: url("/img/pat1_ye.svg") repeat-x center bottom/3000px;
}
@media screen and (max-width: 480px) {
  #s_about::after {
    height: 143px;
    bottom: -13px;
    background: url("/img/pat1_ye.svg") repeat-x center bottom/800px;
  }
}
#s_about .inr {
  width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 100px 0 205px;
}
@media screen and (max-width: 480px) {
  #s_about .inr {
    padding: 50px 0 108px;
    width: 300px;
  }
}
#s_about .shape1 {
  position: absolute;
  top: 200px;
  left: calc(50% - 1175px);
}
@media screen and (max-width: 480px) {
  #s_about .shape1 {
    display: none;
  }
}
#s_about .shape2 {
  position: absolute;
  top: 366px;
  left: calc(50% + 775px);
}
@media screen and (max-width: 480px) {
  #s_about .shape2 {
    display: none;
  }
}
#s_about .s_ttl {
  position: absolute;
  top: 100px;
  left: 0;
  padding-left: 51px;
}
@media screen and (max-width: 480px) {
  #s_about .s_ttl {
    position: relative;
    top: 0;
    padding-left: 0;
  }
  #s_about .s_ttl img {
    width: 162px;
    height: auto;
  }
}
#s_about .txt {
  position: relative;
  padding-left: 495px;
  color: #004b36;
  text-align: left;
  font-size: 1.8rem;
  line-height: 2.78;
}
@media screen and (max-width: 480px) {
  #s_about .txt {
    margin-top: 55px;
    padding-left: 0;
    font-size: 1.6rem;
    line-height: 2.5;
  }
}
#s_about .txt::before, #s_about .txt::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
}
#s_about .txt::before {
  aspect-ratio: 194/134;
  background: url("/img/about_nature1.png") no-repeat 0 0/contain;
  width: 97px;
  top: 385px;
  left: -63px;
}
@media screen and (max-width: 480px) {
  #s_about .txt::before {
    width: 59px;
    top: auto;
    bottom: 315px;
    left: calc(50% + 91px);
  }
}
#s_about .txt::after {
  aspect-ratio: 256/170;
  background: url("/img/about_nature2.png") no-repeat 0 0/contain;
  width: 128px;
  top: 568px;
  right: -50px;
}
@media screen and (max-width: 480px) {
  #s_about .txt::after {
    width: 68px;
    top: -85px;
    right: calc(50% + 103px);
  }
}
#s_about .txt > p + p {
  margin-top: 2.78em;
}
@media screen and (max-width: 480px) {
  #s_about .txt > p + p {
    margin-top: 2.5em;
  }
}
#s_about .illust {
  position: absolute;
  left: -9px;
  bottom: 35px;
  text-align: center;
  width: 373px;
}
@media screen and (max-width: 480px) {
  #s_about .illust {
    position: relative;
    left: 0;
    bottom: 0;
    width: 225px;
    margin: 30px auto 0;
  }
}
#s_about .illust img {
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
@media screen and (max-width: 480px) {
  #s_about .illust img {
    width: 100%;
    height: auto;
  }
}
#s_about .illust.done img {
  opacity: 1;
}
#s_about .illust p {
  margin-top: 50px;
  color: #008e66;
  font-family: "Lexend Peta", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
}
@media screen and (max-width: 480px) {
  #s_about .illust p {
    margin-top: 20px;
    font-size: 1rem;
  }
}
#s_about .illust span {
  display: block;
  opacity: 0;
}
#s_about .illust span:nth-child(1) {
  -webkit-transform: rotate(-2.9deg) translateY(10%);
  transform: rotate(-2.9deg) translateY(10%);
  -webkit-transition: opacity 0.5s 0.25s, -webkit-transform 0.5s 0.25s;
  transition: opacity 0.5s 0.25s, -webkit-transform 0.5s 0.25s;
  transition: opacity 0.5s 0.25s, transform 0.5s 0.25s;
  transition: opacity 0.5s 0.25s, transform 0.5s 0.25s, -webkit-transform 0.5s 0.25s;
}
#s_about .illust span:nth-child(2) {
  margin-top: 20px;
  -webkit-transform: rotate(2.1deg) translateY(10%);
  transform: rotate(2.1deg) translateY(10%);
  -webkit-transition: opacity 0.5s 0.5s, -webkit-transform 0.5s 0.5s;
  transition: opacity 0.5s 0.5s, -webkit-transform 0.5s 0.5s;
  transition: opacity 0.5s 0.5s, transform 0.5s 0.5s;
  transition: opacity 0.5s 0.5s, transform 0.5s 0.5s, -webkit-transform 0.5s 0.5s;
}
@media screen and (max-width: 480px) {
  #s_about .illust span:nth-child(2) {
    margin-top: 10px;
  }
}
#s_about .illust.done span {
  opacity: 1;
}
#s_about .illust.done span:nth-child(1) {
  -webkit-transform: rotate(-2.9deg);
  transform: rotate(-2.9deg);
}
#s_about .illust.done span:nth-child(2) {
  -webkit-transform: rotate(2.1deg);
  transform: rotate(2.1deg);
}
#s_about .btn1 {
  margin-top: 50px;
}
@media screen and (max-width: 480px) {
  #s_about .btn1 {
    margin-top: 20px;
  }
}

#modal {
  padding: 20px 0 25px;
}
@media screen and (max-width: 480px) {
  #modal {
    padding: 10px 0 20px;
  }
}
#modal .content {
  position: relative;
}
#modal .content .close {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: default;
}
#modal .content .close > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  #modal .content .close > span {
    gap: 6px;
  }
}
#modal .content .close.hd {
  width: 78.5%;
  max-width: 1100px;
  margin: 0 auto;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-bottom: 20px;
}
@media screen and (max-width: 480px) {
  #modal .content .close.hd {
    width: 93.3%;
    padding-bottom: 10px;
  }
}
#modal .content .box {
  width: 78.5%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  background: #fff;
  border-radius: 20px;
}
@media screen and (max-width: 480px) {
  #modal .content .box {
    width: 93.3%;
    border-radius: 10px;
  }
}
#modal .content .img {
  width: 100%;
  aspect-ratio: 1100/600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px 20px 0 0;
  background: url("/img/why.webp") no-repeat center center/cover;
}
@media screen and (max-width: 480px) {
  #modal .content .img {
    border-radius: 10px 10px 0 0;
  }
}
#modal .content h2 {
  color: #fff;
  font-family: "Lexend Peta", sans-serif;
  font-weight: 500;
  font-size: 4rem;
  line-height: 1.63;
}
@media screen and (max-width: 480px) {
  #modal .content h2 {
    font-size: 2rem;
  }
}
#modal .content .txt {
  width: 480px;
  margin: 0 auto;
  padding: 120px 0;
  text-align: left;
  color: #004b36;
}
@media screen and (max-width: 480px) {
  #modal .content .txt {
    width: 80vw;
    padding: 45px 0;
  }
}
#modal .content h3 {
  font-size: 3rem;
  line-height: 1.67;
}
@media screen and (max-width: 480px) {
  #modal .content h3 {
    font-size: 2.5rem;
  }
}
#modal .content h3:not(:first-child) {
  margin-top: 2.8em;
}
#modal .content p {
  margin-top: 2.78em;
  font-size: 1.8rem;
  line-height: 2.78;
}
@media screen and (max-width: 480px) {
  #modal .content p {
    margin-top: 2.5em;
    font-size: 1.6rem;
    line-height: 2.5;
  }
  #modal .content p br {
    display: none;
  }
}
#modal .close.ft {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 25px;
}
@media screen and (max-width: 480px) {
  #modal .close.ft {
    padding-top: 20px;
  }
}

#s_project {
  position: relative;
  background: #fbf8e9;
}
#s_project .inr {
  position: relative;
  padding: 100px 0 110px;
}
@media screen and (max-width: 480px) {
  #s_project .inr {
    padding: 50px 0 65px;
  }
}
#s_project .shape1,
#s_project .shape2,
#s_project .shape3 {
  position: absolute;
}
#s_project .shape1 {
  top: -207px;
  left: calc(50% + 810px);
}
#s_project .shape2 {
  top: 560px;
  left: calc(50% + 700px);
}
#s_project .shape3 {
  top: 766px;
  left: calc(50% - 1090px);
}
@media screen and (max-width: 1400px) {
  #s_project .shape1,
  #s_project .shape2,
  #s_project .shape3 {
    display: none;
  }
}
#s_project .s_ttl {
  position: relative;
}
#s_project .s_ttl::before {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 240/212;
  width: 120px;
  top: 88px;
  left: calc(50% + 340px);
  background: url("/img/project_nature1.png") no-repeat 0 0/contain;
}
@media screen and (max-width: 480px) {
  #s_project .s_ttl::before {
    width: 52px;
    top: -59px;
    left: calc(50% + 104px);
  }
}
#s_project .project {
  width: 960px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  #s_project .project {
    width: auto;
    text-align: center;
  }
  #s_project .project .ttl img {
    width: 93.4%;
    max-width: 350px;
    height: auto;
  }
}
#s_project .project .img {
  position: absolute;
}
@media screen and (max-width: 480px) {
  #s_project .project .img {
    position: relative;
    margin: 0 auto;
  }
}
#s_project .project .img img {
  opacity: 0;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
}
@media screen and (max-width: 480px) {
  #s_project .project .img img {
    width: 100%;
    height: auto;
  }
}
#s_project .project .img .en {
  position: absolute;
  font-family: "Lexend Peta", sans-serif;
  font-weight: 500;
  white-space: nowrap;
  font-size: 12px;
  opacity: 0;
  -webkit-transition: opacity 0.5s 0.25s;
  transition: opacity 0.5s 0.25s;
}
@media screen and (max-width: 480px) {
  #s_project .project .img .en {
    font-size: 10px;
    line-height: 1.6;
    text-align: left;
  }
}
#s_project .project .img.done img {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
#s_project .project .img.done .en {
  opacity: 1;
}
#s_project .project .txt {
  margin-top: 30px;
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 480px) {
  #s_project .project .txt {
    margin: 0 auto;
    width: 84vw;
    text-align: left;
    font-size: 1.4rem;
  }
}
#s_project .project .btn1 {
  margin-top: 50px;
}
@media screen and (max-width: 480px) {
  #s_project .project .btn1 {
    margin-top: 25px;
  }
}
#s_project .project.pj1 {
  margin-top: 50px;
  padding-right: 625px;
}
@media screen and (max-width: 480px) {
  #s_project .project.pj1 {
    padding-right: 0;
  }
  #s_project .project.pj1 .txt {
    margin-top: 25px;
  }
}
#s_project .project.pj1 .ttl {
  margin-left: -12px;
}
@media screen and (max-width: 480px) {
  #s_project .project.pj1 .ttl {
    margin-left: 0;
  }
}
#s_project .project.pj1 .img {
  left: 433px;
  top: 85px;
}
@media screen and (max-width: 480px) {
  #s_project .project.pj1 .img {
    left: 0;
    top: 0;
    width: 300px;
    margin-top: 25px;
  }
}
#s_project .project.pj1 .en {
  color: #d37068;
  top: 315px;
  left: 342px;
  -webkit-transform: rotate(-3.8deg);
  transform: rotate(-3.8deg);
}
@media screen and (max-width: 480px) {
  #s_project .project.pj1 .en {
    top: 178px;
    left: 30px;
  }
}
#s_project .project.pj2 {
  margin-top: 20px;
  padding-left: 625px;
}
@media screen and (max-width: 480px) {
  #s_project .project.pj2 {
    margin-top: 57px;
    padding-left: 0;
  }
  #s_project .project.pj2 .txt {
    margin-top: 15px;
  }
}
#s_project .project.pj2 .img {
  left: -45px;
  top: 140px;
}
@media screen and (max-width: 480px) {
  #s_project .project.pj2 .img {
    left: 0;
    top: 0;
    width: 308px;
    margin-top: -5px;
  }
}
#s_project .project.pj2 .en {
  color: #2c8496;
  top: 60px;
  left: -50px;
  -webkit-transform: rotate(1.5deg);
  transform: rotate(1.5deg);
}
@media screen and (max-width: 480px) {
  #s_project .project.pj2 .en {
    top: 25px;
    left: -18px;
    -webkit-transform: rotate(3.5deg);
    transform: rotate(3.5deg);
  }
}
#s_project .project.pj3 {
  margin-top: 57px;
  padding-right: 625px;
  position: relative;
}
@media screen and (max-width: 480px) {
  #s_project .project.pj3 {
    margin-top: 65px;
    padding-right: 0;
  }
  #s_project .project.pj3 .txt {
    margin-top: 20px;
  }
}
#s_project .project.pj3::before {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 232/332;
  background: url("/img/project_nature2.png") no-repeat 0 0/contain;
  width: 116px;
  left: -155px;
  top: 25px;
}
#s_project .project.pj3 .img {
  left: 418px;
  top: 83px;
}
@media screen and (max-width: 480px) {
  #s_project .project.pj3 .img {
    left: 0;
    top: 0;
    width: 313px;
    margin-top: -17px;
  }
}
#s_project .project.pj3 .en {
  color: #cbb640;
  top: 82px;
  left: 62px;
  -webkit-transform: rotate(-2.5deg);
  transform: rotate(-2.5deg);
}
@media screen and (max-width: 480px) {
  #s_project .project.pj3 .en {
    top: 25px;
    left: 14px;
  }
}

#s_voice {
  margin-top: 180px;
  position: relative;
}
@media screen and (max-width: 480px) {
  #s_voice {
    margin-top: 44px;
  }
}
#s_voice::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
  top: -220px;
  height: 250px;
  background: url("/img/pat2_ye.svg") repeat-x center center/3000px;
}
@media screen and (max-width: 480px) {
  #s_voice::after {
    height: 67px;
    top: -54px;
    background: url("/img/pat2_ye.svg") repeat-x center top/800px;
  }
}
#s_voice .shape1 {
  position: absolute;
  left: calc(50% + 4px);
  top: -180px;
}
@media screen and (max-width: 480px) {
  #s_voice .shape1 {
    left: calc(50% - 3px);
    top: 32px;
    width: 291px;
    height: auto;
  }
}
#s_voice .shape2 {
  position: absolute;
  left: calc(50% - 770px);
  bottom: 10px;
}
@media screen and (max-width: 480px) {
  #s_voice .shape2 {
    left: calc(50% + 69px);
    bottom: 322px;
    width: 139px;
    height: auto;
  }
}
#s_voice .shape3 {
  position: absolute;
  left: calc(50% + 700px);
  bottom: 210px;
}
@media screen and (max-width: 480px) {
  #s_voice .shape3 {
    display: none;
  }
}
#s_voice .inr {
  position: relative;
  z-index: 1;
  padding: 100px 0 190px;
}
@media screen and (max-width: 480px) {
  #s_voice .inr {
    padding: 50px 0 98px;
  }
}
#s_voice .s_ttl {
  position: relative;
}
#s_voice .s_ttl::before {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 196/142;
  background: url("/img/voice_nature1.png") no-repeat 0 0/contain;
  width: 98px;
  top: -89px;
  left: calc(50% + 128px);
}
@media screen and (max-width: 480px) {
  #s_voice .s_ttl::before {
    top: -38px;
    left: calc(50% + 72px);
    width: 41px;
  }
}
#s_voice .voice_list {
  width: 1020px;
  margin: 55px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  text-align: left;
}
@media screen and (max-width: 480px) {
  #s_voice .voice_list {
    width: 92%;
    margin: 50px auto 0;
    display: block;
  }
  #s_voice .voice_list .ttl {
    text-align: center;
  }
}
#s_voice .voice_list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  gap: 20px;
  margin-top: 25px;
}
@media screen and (max-width: 480px) {
  #s_voice .voice_list ul {
    gap: 10px;
    margin-top: 20px;
  }
}
#s_voice .voice_list li {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 25px 0;
  text-align: center;
  border-radius: 10px;
  font-size: 1.6rem;
  line-height: 1.88;
}
@media screen and (max-width: 480px) {
  #s_voice .voice_list li {
    padding: 15px 0;
    font-size: 1.4rem;
    line-height: 1.86;
  }
}
#s_voice .children,
#s_voice .teacher,
#s_voice .parents {
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
}
#s_voice .children.done,
#s_voice .teacher.done,
#s_voice .parents.done {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
#s_voice .children {
  width: 578px;
  margin: 0 auto 0 0;
}
@media screen and (max-width: 480px) {
  #s_voice .children {
    width: auto;
    margin: 0 auto;
  }
}
#s_voice .children .ttl {
  margin-left: 214px;
}
@media screen and (max-width: 480px) {
  #s_voice .children .ttl {
    margin-left: 0;
  }
}
#s_voice .children li {
  width: 410px;
  background: #fbf1e9;
}
@media screen and (max-width: 480px) {
  #s_voice .children li {
    width: auto;
  }
}
#s_voice .children li:nth-child(1) {
  margin-left: 169px;
  position: relative;
}
@media screen and (max-width: 480px) {
  #s_voice .children li:nth-child(1) {
    margin-left: 0;
  }
}
#s_voice .children li:nth-child(1)::before {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 296/220;
  background: url("/img/voice_children_img.png") no-repeat 0 0/contain;
  width: 148px;
  bottom: -20px;
  left: -182px;
}
@media screen and (max-width: 480px) {
  #s_voice .children li:nth-child(1)::before {
    width: 72px;
    bottom: 100%;
    left: 21px;
  }
}
#s_voice .teacher {
  width: 440px;
  margin: 200px 0 0 auto;
  position: relative;
}
@media screen and (max-width: 480px) {
  #s_voice .teacher {
    width: auto;
    margin: 37px auto 0;
  }
}
#s_voice .teacher::before {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 660/488;
  background: url("/img/voice_teacher_img.png") no-repeat 0 0/contain;
  width: 330px;
  left: 210px;
  top: -273px;
  opacity: 0;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
}
@media screen and (max-width: 480px) {
  #s_voice .teacher::before {
    position: relative;
    left: 0;
    top: 0;
    margin: 0 0 9px calc(50% - 9px);
    width: 150px;
  }
}
#s_voice .teacher.done::before {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
#s_voice .teacher .ttl {
  margin-left: 120px;
}
@media screen and (max-width: 480px) {
  #s_voice .teacher .ttl {
    margin-left: 0;
  }
}
#s_voice .teacher li {
  width: 405px;
  background: #f1f5f7;
}
@media screen and (max-width: 480px) {
  #s_voice .teacher li {
    width: auto;
  }
}
#s_voice .teacher li:nth-child(2) {
  margin-left: 34px;
  position: relative;
}
@media screen and (max-width: 480px) {
  #s_voice .teacher li:nth-child(2) {
    margin-left: 0;
  }
}
#s_voice .teacher li:nth-child(2)::before {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 168/228;
  background: url("/img/voice_nature2.png") no-repeat 0 0/contain;
  width: 84px;
  bottom: 100%;
  right: 5px;
}
@media screen and (max-width: 480px) {
  #s_voice .teacher li:nth-child(2)::before {
    bottom: 0;
    right: 12px;
    width: 51px;
  }
}
#s_voice .parents {
  width: 460px;
  margin: -220px 0 0 58px;
  position: relative;
}
@media screen and (max-width: 480px) {
  #s_voice .parents {
    width: auto;
    margin: 31px auto 0;
  }
}
#s_voice .parents::before {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 654/414;
  background: url("/img/voice_parents_img.png") no-repeat 0 0/contain;
  width: 327px;
  left: -210px;
  top: -90px;
  opacity: 0;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
}
@media screen and (max-width: 480px) {
  #s_voice .parents::before {
    width: 169px;
    left: 0;
    top: 0;
    position: relative;
    margin: 0 0 24px calc(50% - 142px);
  }
}
#s_voice .parents.done::before {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
#s_voice .parents .ttl {
  margin-left: 185px;
}
@media screen and (max-width: 480px) {
  #s_voice .parents .ttl {
    margin-left: 0;
  }
}
#s_voice .parents li {
  width: 410px;
  background: #fbf8e9;
}
@media screen and (max-width: 480px) {
  #s_voice .parents li {
    width: auto;
  }
}
#s_voice .parents li:nth-child(1) {
  margin-left: 51px;
}
@media screen and (max-width: 480px) {
  #s_voice .parents li:nth-child(1) {
    margin-left: 0;
  }
}

#s_report {
  position: relative;
}
@media screen and (max-width: 480px) {
  #s_report {
    background: #f1f5f7;
    z-index: 1;
  }
  #s_report::after {
    content: "";
    display: block;
    position: absolute;
    width: 547px;
    height: 120px;
    background: #fff url("/img/shape1_bl.svg") no-repeat left bottom/100%;
    bottom: 0;
    left: calc(50% - 294px);
  }
}
#s_report::before {
  content: "";
  display: block;
  position: absolute;
  background: url("/img/shape1_bl.svg") no-repeat center center/100% 100%;
  width: 1576px;
  top: -145px;
  bottom: 65px;
  left: calc(50% - 788px);
}
@media screen and (max-width: 480px) {
  #s_report::before {
    width: 547px;
    height: 184px;
    background: #fff url("/img/shape1_bl.svg") no-repeat center top/100%;
    top: -50px;
    left: calc(50% - 294px);
    bottom: auto;
  }
}
#s_report .shape1 {
  position: absolute;
  bottom: -5px;
  left: calc(50% + 390px);
}
@media screen and (max-width: 480px) {
  #s_report .shape1 {
    width: 116px;
    height: auto;
    bottom: -11px;
    left: calc(50% + 88px);
  }
}
#s_report .inr {
  position: relative;
  z-index: 1;
  padding: 100px 0 270px;
}
@media screen and (max-width: 480px) {
  #s_report .inr {
    padding: 50px 0 96px;
  }
}
#s_report .inr::before {
  content: "";
  display: block;
  aspect-ratio: 186/352;
  width: 93px;
  background: url("/img/report_nature1.png") no-repeat 0 0/contain;
  position: absolute;
  left: calc(50% + 218px);
  top: 29px;
}
@media screen and (max-width: 480px) {
  #s_report .inr::before {
    width: 39px;
    left: calc(50% + 103px);
    top: -56px;
  }
}
#s_report .inr::after {
  content: "";
  display: block;
  aspect-ratio: 120/124;
  width: 60px;
  background: url("/img/report_nature2.png") no-repeat 0 0/contain;
  position: absolute;
  left: calc(50% - 489px);
  bottom: 91px;
}
@media screen and (max-width: 480px) {
  #s_report .inr::after {
    display: none;
  }
}
#s_report .article_list {
  margin-top: 80px;
}
@media screen and (max-width: 480px) {
  #s_report .article_list {
    margin-top: 40px;
  }
  #s_report .article_list article:nth-child(2)::after {
    content: "";
    display: block;
    aspect-ratio: 120/124;
    width: 47px;
    background: url("/img/report_nature2.png") no-repeat 0 0/contain;
    position: absolute;
    left: -40px;
    bottom: 52px;
  }
}
#s_report .btn1 {
  margin-top: 50px;
}
@media screen and (max-width: 480px) {
  #s_report .btn1 {
    margin-top: 25px;
  }
}

@-webkit-keyframes btn_handsup {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
}

@keyframes btn_handsup {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
}
.btn1.action {
  outline: none !important;
  padding: 23px 96px 0 96px;
  overflow: hidden;
}
@media (any-hover: hover) and (min-width: 481px) {
  .btn1.action:hover::after {
    -webkit-animation: btn_handsup 0.5s forwards cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: btn_handsup 0.5s forwards cubic-bezier(0.34, 1.56, 0.64, 1);
  }
}
@media screen and (max-width: 480px) {
  .btn1.action {
    padding: 19px 74px 0 74px;
  }
  .btn1.action img {
    width: 104px;
    height: auto;
  }
}
.btn1.action::after {
  content: "";
  display: block;
  aspect-ratio: 76/184;
  background: url("/img/action_btn_hand.png") no-repeat 0 0/contain;
  width: 38px;
  position: absolute;
  top: 12px;
  right: 30px;
}
@media screen and (max-width: 480px) {
  .btn1.action::after {
    width: 31px;
    top: 6px;
    right: 24px;
  }
}

@-webkit-keyframes meter_layer {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0.9;
  }
  90% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

@keyframes meter_layer {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0.9;
  }
  90% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes meter_reaction {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
  }
  10% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  90% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes meter_reaction {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
  }
  10% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  90% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
#meter {
  position: relative;
  z-index: 5;
}
#meter::before {
  content: "";
  display: block;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background: #fbf8e9;
  width: 1px;
  height: 1px;
  opacity: 0;
  visibility: hidden;
}
#meter .reaction {
  position: absolute;
  z-index: 2;
  bottom: 100%;
  left: calc(50% - 217px);
  bottom: 100%;
  margin-bottom: 50px;
  aspect-ratio: 1;
  background: #004b36;
  border-radius: 50%;
  width: 435px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.2);
  transform: scale(0.2);
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@media screen and (max-width: 480px) {
  #meter .reaction {
    margin-bottom: 25px;
    width: 270px;
    left: calc(50% - 135px);
  }
}
#meter .reaction::before {
  content: "";
  display: block;
  position: absolute;
  width: 34px;
  height: 30px;
  background: #004b36;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  left: calc(50% - 17px);
  bottom: -18px;
}
@media screen and (max-width: 480px) {
  #meter .reaction::before {
    bottom: -10px;
  }
}
#meter .reaction img {
  position: relative;
  width: 100%;
  height: auto;
}
#meter .num {
  width: 335px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
@media screen and (max-width: 480px) {
  #meter .num {
    width: 204px;
    gap: 4px;
  }
}
#meter .num::before {
  content: "";
  display: block;
  background: #004b36 url("/img/action_meter_now.png") no-repeat center center/contain;
  border-radius: 50%;
  aspect-ratio: 1;
  width: 50px;
  position: absolute;
  z-index: 3;
  left: -36px;
  top: -27px;
}
@media screen and (max-width: 480px) {
  #meter .num::before {
    width: 28px;
    left: -15px;
    top: -15px;
  }
}
#meter .num > span {
  position: relative;
  width: 80px;
  height: 120px;
  overflow: hidden;
  border-radius: 10px;
  background: #008e66;
  color: #fff;
  font-family: "AvenirNextLTPro-Regular", sans-serif;
  font-size: 100px;
  display: block;
}
@media screen and (max-width: 480px) {
  #meter .num > span {
    width: 48px;
    height: 71px;
    border-radius: 7px;
    font-size: 59px;
  }
}
#meter .num > span span {
  width: 80px;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  #meter .num > span span {
    width: 48px;
    height: 71px;
  }
}
#meter .num > span:nth-child(1) span {
  -webkit-transition: margin-top 0.5s 950ms;
  transition: margin-top 0.5s 950ms;
}
#meter .num > span:nth-child(2) span {
  -webkit-transition: margin-top 0.5s 800ms;
  transition: margin-top 0.5s 800ms;
}
#meter .num > span:nth-child(3) span {
  -webkit-transition: margin-top 0.5s 650ms;
  transition: margin-top 0.5s 650ms;
}
#meter .num > span:nth-child(4) span {
  -webkit-transition: margin-top 0.5s 500ms;
  transition: margin-top 0.5s 500ms;
}
#meter .target {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: calc(50% + 185px);
  font-family: "AvenirNextLTPro-Demi", sans-serif;
  font-size: 30px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
@media screen and (max-width: 480px) {
  #meter .target {
    left: calc(50% + 105px);
    font-size: 12px;
  }
}
#meter .preload {
  position: absolute;
  right: 0;
  bottom: 0;
  font-family: "AvenirNextLTPro-Regular", sans-serif;
  font-size: 1px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
#meter.counted .num > span:has(span:nth-child(2)) span:first-child {
  margin-top: -120px;
}
@media screen and (max-width: 480px) {
  #meter.counted .num > span:has(span:nth-child(2)) span:first-child {
    margin-top: -71px;
  }
}

.windows #meter .num > span span {
  padding-top: 0.2em;
}

body.action_clicked {
  position: fixed;
  width: 100%;
  overflow: hidden;
}
body.action_clicked #meter::before {
  visibility: visible;
  width: 100%;
  height: 100%;
  -webkit-animation: meter_layer 4000ms forwards;
  animation: meter_layer 4000ms forwards;
}
body.action_clicked #meter .reaction {
  visibility: visible;
  -webkit-animation: meter_reaction 3750ms 250ms forwards cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: meter_reaction 3750ms 250ms forwards cubic-bezier(0.34, 1.56, 0.64, 1);
}

#s_action {
  background: #f7f2ee;
  position: relative;
}
#s_action::before, #s_action::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
}
#s_action::before {
  top: -15px;
  height: 670px;
  background: #fff url("/img/pat1_be.svg") repeat-x center bottom/3840px;
}
@media screen and (max-width: 480px) {
  #s_action::before {
    top: -10px;
    height: 268px;
    background: #fff url("/img/pat1_be.svg") repeat-x center bottom/1300px;
  }
}
#s_action::after {
  bottom: -6px;
  height: 260px;
  background: #fff url("/img/pat2_be.svg") repeat-x center top/3840px;
}
@media screen and (max-width: 480px) {
  #s_action::after {
    height: 116px;
    background: #fff url("/img/pat2_be.svg") repeat-x center top/1300px;
  }
}
#s_action .inr {
  position: relative;
  z-index: 1;
  padding: 100px 0 290px;
}
@media screen and (max-width: 480px) {
  #s_action .inr {
    padding: 50px 0 128px;
  }
}
#s_action .shape1 {
  position: absolute;
  top: 1178px;
  left: calc(50% - 980px);
}
#s_action .shape2 {
  position: absolute;
  bottom: 2096px;
  left: calc(50% + 700px);
}
#s_action .shape3 {
  position: absolute;
  bottom: 1756px;
  left: calc(50% - 1095px);
}
#s_action .shape4 {
  position: absolute;
  bottom: 684px;
  left: calc(50% + 725px);
}
#s_action .action_note {
  margin-top: 25px;
  font-size: 1.4rem;
}
@media screen and (max-width: 480px) {
  #s_action .action_note {
    margin-top: 10px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  #s_action .s_ttl img {
    width: 251px;
    height: auto;
  }
}
#s_action .s_copy {
  position: absolute;
  top: 158px;
  left: calc(50% - 403px);
}
@media screen and (max-width: 480px) {
  #s_action .s_copy {
    display: none;
  }
}
#s_action .loupe {
  width: 143px;
  position: absolute;
  left: calc(50% + 340px);
  top: 306px;
}
@media screen and (max-width: 480px) {
  #s_action .loupe {
    width: 55px;
    top: 169px;
    left: calc(50% + 115px);
  }
}
#s_action .loupe::before {
  content: "";
  display: block;
  aspect-ratio: 132/120;
  background: url("/img/action_nature1.png") no-repeat 0 0/contain;
  position: absolute;
  left: 45px;
  top: 33px;
  width: 66px;
}
@media screen and (max-width: 480px) {
  #s_action .loupe::before {
    width: 25px;
    top: 12px;
    left: 17px;
  }
}
#s_action .loupe img {
  position: relative;
  opacity: 0;
  -webkit-transform: scale(1.5) rotate(5deg);
  transform: scale(1.5) rotate(5deg);
  -webkit-transform-origin: 50% 25%;
  transform-origin: 50% 25%;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.75s;
  transition: opacity 0.5s, -webkit-transform 0.75s;
  transition: opacity 0.5s, transform 0.75s;
  transition: opacity 0.5s, transform 0.75s, -webkit-transform 0.75s;
}
@media screen and (max-width: 480px) {
  #s_action .loupe img {
    width: 100%;
    height: auto;
  }
}
#s_action .loupe.done img {
  opacity: 1;
  -webkit-transform: scale(1) rotate(0deg);
  transform: scale(1) rotate(0deg);
}
#s_action .s_lead {
  margin-top: 60px;
  font-family: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B", sans-serif;
  letter-spacing: 0.05em;
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (max-width: 480px) {
  #s_action .s_lead {
    margin-top: 25px;
    font-size: 1.6rem;
  }
}
#s_action .meter {
  margin-top: 75px;
  position: relative;
}
@media screen and (max-width: 480px) {
  #s_action .meter {
    margin-top: 30px;
  }
}
#s_action .meter .ttl {
  margin-bottom: 47px;
}
@media screen and (max-width: 480px) {
  #s_action .meter .ttl {
    margin-bottom: 11px;
  }
  #s_action .meter .ttl img {
    width: 148px;
    height: auto;
  }
}
#s_action .meter .bal {
  position: absolute;
  top: 7px;
  left: calc(50% + 205px);
  opacity: 0;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
  -webkit-transition: opacity 0.25s 0.25s, -webkit-transform 0.75s 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.25s 0.25s, -webkit-transform 0.75s 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.25s 0.25s, transform 0.75s 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.25s 0.25s, transform 0.75s 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.75s 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#s_action .meter .bal.done {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
@media screen and (max-width: 480px) {
  #s_action .meter .bal {
    top: -4px;
    left: calc(50% + 73px);
  }
  #s_action .meter .bal img {
    width: 127px;
    height: auto;
  }
}
#s_action .hands {
  position: absolute;
  left: calc(50% - 621px);
  top: -400px;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
#s_action .hands.done {
  opacity: 1;
}
@media screen and (max-width: 480px) {
  #s_action .hands {
    left: calc(50% - 174px);
    top: -95px;
  }
  #s_action .hands .hand1 {
    width: 60px;
    height: auto;
  }
}
#s_action .hand1 {
  -webkit-transform: rotate(-5deg) translateY(10px);
  transform: rotate(-5deg) translateY(10px);
  -webkit-transition: -webkit-transform 0.75s;
  transition: -webkit-transform 0.75s;
  transition: transform 0.75s;
  transition: transform 0.75s, -webkit-transform 0.75s;
}
#s_action .hands.done .hand1 {
  -webkit-transform: rotate(0) translateY(0);
  transform: rotate(0) translateY(0);
}
#s_action .hand2 {
  position: absolute;
  bottom: -14px;
  right: -81px;
  -webkit-transform: translate(-5px, 20px);
  transform: translate(-5px, 20px);
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
}
@media screen and (max-width: 480px) {
  #s_action .hand2 {
    width: 45px;
    height: auto;
    bottom: -5px;
    right: -25px;
  }
}
#s_action .hands.done .hand2 {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
#s_action .btn_area1 {
  margin-top: 45px;
}
@media screen and (max-width: 480px) {
  #s_action .btn_area1 {
    margin-top: 20px;
  }
}
#s_action .action_list {
  width: 1150px;
  margin: 62px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 480px) {
  #s_action .action_list {
    width: 87%;
    margin: 40px auto 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 20px;
  }
}
#s_action .action_list li {
  position: relative;
}
@media screen and (max-width: 480px) {
  #s_action .action_list li {
    width: 100%;
  }
}
#s_action .action_list li:nth-child(1) {
  margin: 0 auto 0 50px;
}
@media screen and (max-width: 480px) {
  #s_action .action_list li:nth-child(1) {
    margin: 0;
  }
  #s_action .action_list li:nth-child(1)::before {
    content: "";
    display: block;
    aspect-ratio: 339/364;
    background: url("/img/action_shape1.png") no-repeat 0 0/contain;
    position: absolute;
    right: -30px;
    top: -34px;
    width: 99px;
  }
}
#s_action .action_list li:nth-child(2) {
  margin: 100px 0 0 auto;
}
@media screen and (max-width: 480px) {
  #s_action .action_list li:nth-child(2) {
    margin: 0;
  }
}
#s_action .action_list li:nth-child(2)::before {
  content: "";
  display: block;
  aspect-ratio: 339/364;
  background: url("/img/action_shape1.png") no-repeat 0 0/contain;
  position: absolute;
  right: -140px;
  top: -240px;
  width: 339px;
}
@media screen and (max-width: 480px) {
  #s_action .action_list li:nth-child(2)::before {
    aspect-ratio: 360/572;
    background: url("/img/action_shape3.png") no-repeat 0 0/contain;
    left: -49px;
    top: -59px;
    width: 106px;
  }
}
#s_action .action_list li:nth-child(2)::after {
  content: "";
  display: block;
  aspect-ratio: 108/166;
  background: url("/img/action_nature2.png") no-repeat 0 0/contain;
  position: absolute;
  z-index: 2;
  right: -34px;
  top: 227px;
  width: 54px;
}
@media screen and (max-width: 480px) {
  #s_action .action_list li:nth-child(2)::after {
    width: 30px;
    top: 141px;
    right: -17px;
  }
}
#s_action .action_list li:nth-child(3) {
  margin: -55px auto 0 0;
}
@media screen and (max-width: 480px) {
  #s_action .action_list li:nth-child(3) {
    margin: 0;
  }
}
#s_action .action_list li:nth-child(3)::before {
  content: "";
  display: block;
  aspect-ratio: 360/572;
  background: url("/img/action_shape3.png") no-repeat 0 0/contain;
  position: absolute;
  left: -200px;
  bottom: -356px;
  width: 360px;
}
@media screen and (max-width: 480px) {
  #s_action .action_list li:nth-child(3)::before {
    display: none;
  }
}
#s_action .action_list li:nth-child(3)::after {
  content: "";
  display: block;
  aspect-ratio: 142/124;
  background: url("/img/action_nature3.png") no-repeat 0 0/contain;
  position: absolute;
  z-index: 2;
  left: -2px;
  top: -39px;
  width: 71px;
}
@media screen and (max-width: 480px) {
  #s_action .action_list li:nth-child(3)::after {
    width: 43px;
    left: 25px;
    top: -12px;
  }
}
#s_action .action_list li:nth-child(4) {
  margin: 75px 70px 0 0;
}
@media screen and (max-width: 480px) {
  #s_action .action_list li:nth-child(4) {
    margin: 0;
  }
  #s_action .action_list li:nth-child(4) img {
    margin-top: -15px;
  }
}
#s_action .action_list li:nth-child(5) {
  margin: -60px auto 0 50px;
}
@media screen and (max-width: 480px) {
  #s_action .action_list li:nth-child(5) {
    margin: 0;
  }
}
#s_action .action_list li:nth-child(6) {
  margin: 40px 0 0 auto;
}
@media screen and (max-width: 480px) {
  #s_action .action_list li:nth-child(6) {
    margin: 0;
  }
}
#s_action .action_list li:nth-child(6)::after {
  content: "";
  display: block;
  aspect-ratio: 696/428;
  background: url("/img/action_nature4.png") no-repeat 0 0/contain;
  position: absolute;
  z-index: 2;
  right: -70px;
  top: -31px;
  width: 348px;
}
@media screen and (max-width: 480px) {
  #s_action .action_list li:nth-child(6)::after {
    width: 215px;
    top: -43px;
    right: -8px;
  }
}
#s_action .action_list li:nth-child(7) {
  margin: -20px auto 0 0;
}
@media screen and (max-width: 480px) {
  #s_action .action_list li:nth-child(7) {
    margin: 0;
  }
}
#s_action .action_list li:nth-child(7)::after {
  content: "";
  display: block;
  aspect-ratio: 160/216;
  background: url("/img/action_nature5.png") no-repeat 0 0/contain;
  position: absolute;
  z-index: 2;
  left: -33px;
  top: 53px;
  width: 80px;
}
@media screen and (max-width: 480px) {
  #s_action .action_list li:nth-child(7)::after {
    width: 53px;
    left: -27px;
    top: 34px;
  }
}
#s_action .action_list li:nth-child(8) {
  margin: 100px 70px 0 0;
}
@media screen and (max-width: 480px) {
  #s_action .action_list li:nth-child(8) {
    margin: 0;
  }
  #s_action .action_list li:nth-child(8)::before {
    content: "";
    display: block;
    aspect-ratio: 471/332;
    background: url("/img/action_shape6.png") no-repeat 0 0/contain;
    position: absolute;
    right: -40px;
    top: -62px;
    width: 138px;
  }
}
#s_action .action_list li:nth-child(8)::after {
  content: "";
  display: block;
  aspect-ratio: 130/196;
  background: url("/img/action_nature6.png") no-repeat 0 0/contain;
  position: absolute;
  z-index: 2;
  right: -21px;
  top: 460px;
  width: 65px;
}
@media screen and (max-width: 480px) {
  #s_action .action_list li:nth-child(8)::after {
    width: 40px;
    top: 297px;
  }
}
#s_action .action_list li:nth-child(9) {
  margin: -30px auto 0 50px;
}
@media screen and (max-width: 480px) {
  #s_action .action_list li:nth-child(9) {
    margin: 0;
  }
}
#s_action .action_list li:nth-child(9)::before {
  content: "";
  display: block;
  aspect-ratio: 174/169;
  background: url("/img/action_shape7.png") no-repeat 0 0/contain;
  position: absolute;
  left: -84px;
  bottom: -120px;
  width: 174px;
}
@media screen and (max-width: 480px) {
  #s_action .action_list li:nth-child(9)::before {
    bottom: -36px;
    width: 51px;
    left: -36px;
  }
}
#s_action .action_list li:nth-child(10) {
  margin: 100px 0 0 auto;
}
@media screen and (max-width: 480px) {
  #s_action .action_list li:nth-child(10) {
    margin: 0;
  }
}
#s_action .action_list li:nth-child(10)::before {
  content: "";
  display: block;
  aspect-ratio: 471/332;
  background: url("/img/action_shape6.png") no-repeat 0 0/contain;
  position: absolute;
  right: -223px;
  top: -76px;
  width: 471px;
}
@media screen and (max-width: 480px) {
  #s_action .action_list li:nth-child(10)::before {
    display: none;
  }
}
#s_action .action_list .box {
  position: relative;
  z-index: 1;
  width: 500px;
  border: 1px solid #008e66;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 20px;
  background: #fff;
  padding: 60px 0;
}
@media screen and (max-width: 480px) {
  #s_action .action_list .box {
    width: auto;
    border-radius: 12px;
    padding: 40px 0 36px;
  }
  #s_action .action_list .box img {
    width: 100%;
    max-width: 290px;
    height: auto;
  }
}
#s_action .action_list .ttl {
  margin-top: 30px;
  color: #008e66;
  font-family: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B", sans-serif;
  letter-spacing: 0.05em;
  font-size: 3rem;
  line-height: 1.5;
}
@media screen and (max-width: 480px) {
  #s_action .action_list .ttl {
    margin-top: 15px;
    font-size: 2.1rem;
  }
}
#s_action .action_list .txt {
  margin: 25px auto 0;
  width: 370px;
  text-align: left;
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 480px) {
  #s_action .action_list .txt {
    margin: 15px auto 0;
    width: 75vw;
    font-size: 1.4rem;
  }
}
#s_action .btn_area2 {
  margin-top: 75px;
}
@media screen and (max-width: 480px) {
  #s_action .btn_area2 {
    margin-top: 40px;
  }
  #s_action .btn_area2 .ttl img {
    width: 186px;
    height: auto;
  }
}
#s_action .btn_area2 .txt {
  margin-top: 28px;
  font-family: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B", sans-serif;
  letter-spacing: 0.05em;
  font-size: 1.8rem;
}
@media screen and (max-width: 480px) {
  #s_action .btn_area2 .txt {
    margin-top: 25px;
    font-size: 1.6rem;
    line-height: 2;
  }
}
#s_action .btn_area2 .btn1 {
  margin-top: 36px;
}
@media screen and (max-width: 480px) {
  #s_action .btn_area2 .btn1 {
    margin-top: 20px;
  }
}
#s_action .notice {
  background: #fff;
  width: 900px;
  border-radius: 25px;
  margin: 70px auto 0;
  padding: 55px 0 70px;
  position: relative;
}
@media screen and (max-width: 480px) {
  #s_action .notice {
    width: 92%;
    border-radius: 12px;
    margin: 30px auto 0;
    padding: 35px 0 30px;
  }
}
#s_action .notice::before {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 110/170;
  width: 55px;
  top: 27px;
  left: 100%;
  background: url("/img/action_nature7.png") no-repeat 0 0/contain;
}
@media screen and (max-width: 480px) {
  #s_action .notice::before {
    display: none;
  }
}
#s_action .notice .ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  font-family: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B", sans-serif;
  letter-spacing: 0.05em;
  font-size: 2rem;
}
@media screen and (max-width: 480px) {
  #s_action .notice .ttl {
    gap: 10px;
    font-size: 1.6rem;
  }
}
#s_action .notice .ttl::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  width: 40px;
  border-radius: 50%;
  background: #ec6b61 url("/img/i_notice.svg") no-repeat center center/contain;
}
@media screen and (max-width: 480px) {
  #s_action .notice .ttl::before {
    width: 24px;
  }
}
#s_action .notice .txt {
  width: 635px;
  margin: 30px auto 0;
  text-align: left;
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 480px) {
  #s_action .notice .txt {
    width: 80vw;
    margin: 25px auto 0;
    font-size: 1.4rem;
  }
}

#s_support {
  position: relative;
}
#s_support .inr {
  position: relative;
  z-index: 1;
  padding: 100px 0 177px;
}
@media screen and (max-width: 480px) {
  #s_support .inr {
    padding: 50px 0 90px;
  }
}
#s_support .shape1 {
  position: absolute;
  top: 10px;
  left: calc(50% - 1040px);
}
@media screen and (max-width: 480px) {
  #s_support .shape1 {
    display: none;
  }
}
#s_support .shape2 {
  position: absolute;
  top: 594px;
  left: calc(50% + 705px);
}
@media screen and (max-width: 480px) {
  #s_support .shape2 {
    display: none;
  }
}
#s_support .s_copy {
  position: relative;
}
@media screen and (max-width: 480px) {
  #s_support .s_copy img {
    width: 240px;
    height: auto;
  }
}
#s_support .s_copy::before {
  content: "";
  display: block;
  aspect-ratio: 262/332;
  width: 131px;
  background: url("/img/support_nature1.png") no-repeat 0 0/contain;
  position: absolute;
  left: calc(50% + 298px);
  top: 0;
}
@media screen and (max-width: 480px) {
  #s_support .s_copy::before {
    width: 63px;
    top: -143px;
    left: calc(50% + 74px);
  }
}
#s_support .s_ttl {
  margin-top: 47px;
}
@media screen and (max-width: 480px) {
  #s_support .s_ttl {
    margin-top: 28px;
  }
}
#s_support .s_lead {
  margin-top: 50px;
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (max-width: 480px) {
  #s_support .s_lead {
    margin-top: 28px;
    font-size: 1.6rem;
  }
}
#s_support .support_list {
  margin: 65px auto 0;
  width: 1100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  gap: 60px;
}
@media screen and (max-width: 480px) {
  #s_support .support_list {
    margin: 30px auto 0;
    width: 92%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 15px;
  }
}
#s_support .support_list li {
  width: 520px;
}
@media screen and (max-width: 480px) {
  #s_support .support_list li {
    width: 100%;
  }
}
#s_support .support_list a {
  display: block;
  text-decoration: none;
  background: #008e66;
  color: #fff;
  height: 100%;
  border-radius: 25px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 50px 50px 45px;
  text-align: left;
  position: relative;
}
@media (any-hover: hover) and (min-width: 481px) {
  #s_support .support_list a:hover {
    background: #004b36;
  }
  #s_support .support_list a:hover .ttl::before {
    background: #008e66 url("/img/arr1_wh.svg") no-repeat center center/6px;
  }
}
@media screen and (max-width: 480px) {
  #s_support .support_list a {
    border-radius: 12px;
    padding: 25px 20px 20px;
  }
}
#s_support .support_list .ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-family: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B", sans-serif;
  letter-spacing: 0.05em;
  font-size: 3rem;
}
@media screen and (max-width: 480px) {
  #s_support .support_list .ttl {
    gap: 6px;
    font-size: 2.2rem;
  }
}
#s_support .support_list .ttl::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  width: 48px;
  border-radius: 50%;
  background: #004b36 url("/img/arr1_wh.svg") no-repeat center center/6px;
}
@media screen and (max-width: 480px) {
  #s_support .support_list .ttl::before {
    width: 36px;
  }
}
#s_support .support_list .txt {
  display: block;
  margin-top: 25px;
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 480px) {
  #s_support .support_list .txt {
    margin-top: 15px;
    font-size: 1.4rem;
  }
}
#s_support .support_list img {
  position: absolute;
}
@media screen and (max-width: 480px) {
  #s_support .support_list img {
    height: auto;
  }
}
#s_support .support_list .donate img {
  right: 51px;
  top: 20px;
}
@media screen and (max-width: 480px) {
  #s_support .support_list .donate img {
    right: 18px;
    top: 19px;
    width: 58px;
  }
}
#s_support .support_list .book img {
  right: 64px;
  top: -31px;
}
@media screen and (max-width: 480px) {
  #s_support .support_list .book img {
    right: 31px;
    top: -23px;
    width: 59px;
  }
}
#s_support .support_list .shidouin img {
  right: 16px;
  top: -33px;
}
@media screen and (max-width: 480px) {
  #s_support .support_list .shidouin img {
    right: -4px;
    top: -23px;
    width: 80px;
  }
}
#s_support .support_list .event img {
  right: -17px;
  top: -42px;
}
@media screen and (max-width: 480px) {
  #s_support .support_list .event img {
    right: -4px;
    top: -33px;
    width: 91px;
  }
}

#s_company {
  background: #fbf8e9;
  position: relative;
}
#s_company::before, #s_company::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
}
#s_company::before {
  top: -352px;
  height: 535px;
  background: #fff url("/img/pat1_ye.svg") repeat-x center center/3000px;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
@media screen and (max-width: 480px) {
  #s_company::before {
    top: -128px;
    height: 142px;
    background: #fff url("/img/pat1_ye.svg") repeat-x center bottom/800px;
  }
}
#s_company::after {
  bottom: -73px;
  height: 250px;
  background: #fff url("/img/pat2_ye.svg") repeat-x center center/3000px;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
@media screen and (max-width: 480px) {
  #s_company::after {
    bottom: 0;
    height: 84px;
    background: #fff url("/img/pat2_ye.svg") repeat-x center top/800px;
  }
}
#s_company .inr {
  position: relative;
  z-index: 1;
  padding: 245px 0 220px;
}
@media screen and (max-width: 480px) {
  #s_company .inr {
    padding: 50px 0 130px;
  }
}
#s_company .shape1 {
  position: absolute;
  top: -208px;
  left: calc(50% - 1095px);
}
@media screen and (max-width: 480px) {
  #s_company .shape1 {
    display: none;
  }
}
#s_company .shape2 {
  position: absolute;
  top: 496px;
  left: calc(50% + 740px);
}
@media screen and (max-width: 480px) {
  #s_company .shape2 {
    display: none;
  }
}
#s_company .shape3 {
  position: absolute;
  bottom: 475px;
  left: calc(50% - 950px);
}
@media screen and (max-width: 480px) {
  #s_company .shape3 {
    display: none;
  }
}
#s_company .shape4 {
  position: absolute;
  bottom: -130px;
  left: calc(50% + 800px);
}
@media screen and (max-width: 480px) {
  #s_company .shape4 {
    display: none;
  }
}
#s_company .hand {
  position: absolute;
  top: 193px;
  left: calc(50% + 204px);
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
@media screen and (max-width: 480px) {
  #s_company .hand {
    position: relative;
    top: 0;
    left: 0;
    padding-top: 35px;
    width: 220px;
    margin: 0 auto;
  }
}
#s_company .hand > img:not(.en) {
  -webkit-transform: scaleX(0.8) translateY(10%);
  transform: scaleX(0.8) translateY(10%);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
@media screen and (max-width: 480px) {
  #s_company .hand > img:not(.en) {
    width: 100%;
    height: auto;
  }
}
#s_company .hand .en {
  position: absolute;
  left: 17px;
  top: -30px;
  opacity: 0;
  -webkit-transition: opacity 0.75s 0.25s;
  transition: opacity 0.75s 0.25s;
}
@media screen and (max-width: 480px) {
  #s_company .hand .en {
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
    width: 97px;
    height: auto;
    top: 125px;
    left: 134px;
  }
}
#s_company .hand .logo {
  position: absolute;
  top: -182px;
  left: 174px;
  background: #008e66;
  padding: 4px;
  border-radius: 50%;
  opacity: 0;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
  -webkit-transition: opacity 0.5s 0.75s, -webkit-transform 0.5s 0.75s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.5s 0.75s, -webkit-transform 0.5s 0.75s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.5s 0.75s, transform 0.5s 0.75s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.5s 0.75s, transform 0.5s 0.75s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.5s 0.75s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media screen and (max-width: 480px) {
  #s_company .hand .logo {
    position: relative;
    width: 104px;
    padding: 2px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    top: 0;
    left: 0;
    margin: 0 auto 9px;
  }
}
#s_company .hand .logo::before {
  content: "";
  display: block;
  position: absolute;
  left: calc(50% - 10px);
  bottom: -9px;
  width: 20px;
  height: 18px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: #008e66;
}
@media screen and (max-width: 480px) {
  #s_company .hand .logo::before {
    bottom: -6px;
  }
}
#s_company .hand .logo img {
  position: relative;
}
@media screen and (max-width: 480px) {
  #s_company .hand .logo img {
    width: 100%;
    height: auto;
  }
}
#s_company .hand.done {
  opacity: 1;
}
#s_company .hand.done > img:not(.en) {
  -webkit-transform: scaleX(1) translateY(0);
  transform: scaleX(1) translateY(0);
}
#s_company .hand.done .en {
  opacity: 1;
}
#s_company .hand.done .logo {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
#s_company .s_copy {
  position: absolute;
  top: 50px;
  left: calc(50% - 480px);
}
@media screen and (max-width: 480px) {
  #s_company .s_copy {
    top: 152px;
    left: calc(50% - 157px);
  }
}
#s_company .s_copy img {
  opacity: 0;
  -webkit-transform: translateY(10%);
  transform: translateY(10%);
  -webkit-transition: opacity 0.5s 0.25s, -webkit-transform 0.5s 0.25s;
  transition: opacity 0.5s 0.25s, -webkit-transform 0.5s 0.25s;
  transition: opacity 0.5s 0.25s, transform 0.5s 0.25s;
  transition: opacity 0.5s 0.25s, transform 0.5s 0.25s, -webkit-transform 0.5s 0.25s;
}
@media screen and (max-width: 480px) {
  #s_company .s_copy img {
    width: 56px;
    height: auto;
  }
}
#s_company .s_copy.done img {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
#s_company .s_lead {
  margin-top: 45px;
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (max-width: 480px) {
  #s_company .s_lead {
    margin-top: 25px;
    font-size: 1.6rem;
  }
}
#s_company .case {
  margin-top: 100px;
}
@media screen and (max-width: 480px) {
  #s_company .case {
    margin-top: 35px;
  }
  #s_company .case h3 img {
    width: 168px;
    height: auto;
  }
}
#s_company .case .article_list {
  margin-top: 48px;
}
@media screen and (max-width: 480px) {
  #s_company .case .article_list {
    margin-top: 24px;
  }
  #s_company .case .article_list article:nth-child(1)::before {
    content: "";
    display: block;
    position: absolute;
    aspect-ratio: 110/170;
    width: 20px;
    top: 173px;
    left: 100%;
    background: url("/img/action_nature7.png") no-repeat 0 0/contain;
  }
}
#s_company .case .btn1 {
  margin-top: 40px;
}
@media screen and (max-width: 480px) {
  #s_company .case .btn1 {
    margin-top: 25px;
  }
}
#s_company .case + .company::before {
  content: "";
  display: block;
  width: 960px;
  height: 1px;
  background: #008e66;
  margin: 0 auto 85px;
}
@media screen and (max-width: 480px) {
  #s_company .case + .company::before {
    width: 86.7%;
    margin: 0 auto 48px;
  }
}
#s_company .case + .company::after {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 188/106;
  background: url("/img/company_nature1.png") no-repeat 0 0/contain;
  width: 94px;
  top: -50px;
  left: calc(50% + 340px);
}
@media screen and (max-width: 480px) {
  #s_company .case + .company::after {
    width: 47px;
    top: -25px;
    left: calc(50% + 94px);
  }
}
#s_company .company {
  margin-top: 100px;
  position: relative;
}
@media screen and (max-width: 480px) {
  #s_company .company {
    margin-top: 50px;
  }
  #s_company .company h3 img {
    width: 168px;
    height: auto;
  }
}
#s_company .company .notes {
  margin-top: 15px;
  font-size: 1.4rem;
}
@media screen and (max-width: 480px) {
  #s_company .company .notes {
    font-size: 1.2rem;
  }
}
#s_company .company .company_list {
  width: 1100px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  border-radius: 25px;
  margin: 40px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  gap: 20px;
  padding: 35px 70px 45px;
}
@media screen and (max-width: 480px) {
  #s_company .company .company_list {
    width: 92%;
    border-radius: 12px;
    gap: 0 10px;
    padding: 24px;
  }
}
#s_company .company .company_list li {
  aspect-ratio: 450/250;
  width: 225px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#s_company .company .company_list li img {
  width: auto;
  height: auto;
  max-width: 200px;
  max-height: 100px;
}
@media screen and (max-width: 480px) {
  #s_company .company .company_list li {
    width: calc(50% - 5px);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 8px;
  }
  #s_company .company .company_list li img {
    max-width: 100%;
    max-height: 100%;
  }
}
#s_company .company + .form::before {
  content: "";
  display: block;
  width: 960px;
  height: 1px;
  background: #008e66;
  margin: 0 auto 85px;
}
@media screen and (max-width: 480px) {
  #s_company .company + .form::before {
    width: 86.7%;
    margin: 0 auto 48px;
  }
}
#s_company .company + .form::after {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 232/212;
  background: url("/img/company_nature2.png") no-repeat 0 0/contain;
  width: 116px;
  top: -32px;
  left: calc(50% - 415px);
}
@media screen and (max-width: 480px) {
  #s_company .company + .form::after {
    width: 54px;
    top: -25px;
    left: calc(50% - 146px);
  }
}
#s_company .form {
  margin-top: 100px;
  position: relative;
}
@media screen and (max-width: 480px) {
  #s_company .form {
    margin-top: 50px;
  }
  #s_company .form h3 img {
    width: 278px;
    height: auto;
  }
}
#s_company .form .entry {
  margin-top: 35px;
}
@media screen and (max-width: 480px) {
  #s_company .form .entry {
    margin-top: 25px;
  }
}
#s_company .form .entry p {
  font-family: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B", sans-serif;
  letter-spacing: 0.05em;
  font-size: 1.8rem;
}
@media screen and (max-width: 480px) {
  #s_company .form .entry p {
    font-size: 1.6rem;
  }
}
#s_company .form .entry .btn1 {
  margin-top: 28px;
}
@media screen and (max-width: 480px) {
  #s_company .form .entry .btn1 {
    margin-top: 16px;
  }
}
#s_company .form .contact {
  margin-top: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 480px) {
  #s_company .form .contact {
    margin-top: 20px;
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
  }
}
#s_company .form .contact p {
  font-family: "FOT-筑紫A丸ゴシック Std D", "TsukuARdGothicStd-D", sans-serif;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
}
@media screen and (max-width: 480px) {
  #s_company .form .contact p {
    font-size: 1.2rem;
  }
}

footer .aboutus {
  position: relative;
}
footer .aboutus::before {
  content: "";
  display: block;
  aspect-ratio: 556/360;
  background: url("/img/aboutus_img.png") no-repeat 0 0/contain;
  position: absolute;
  top: -233px;
  width: 278px;
  left: calc(50% + 288px);
  opacity: 0;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
}
@media screen and (max-width: 480px) {
  footer .aboutus::before {
    width: 179px;
    top: -145px;
    left: calc(50% - 91px);
  }
}
footer .aboutus.done::before {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}