@charset "UTF-8";
.appear.up .item {
  transform: translateY(30px);
}

.appear.down .item {
  transform: translateY(-40px);
}

.appear.left .item {
  transform: translateX(40px);
}

.appear.right .item {
  transform: translateX(-40px);
}

.appear .item {
  transition: all 0.6s ease;
  transform: translate3d(0, 0, 0);
  opacity: 0;
}
.appear.inview .item {
  transform: none;
  opacity: 1;
}
.appear.inview .item:nth-child(1) {
  transition-delay: 0.2s;
}
.appear.inview .item:nth-child(2) {
  transition-delay: 0.4s;
}
.appear.inview .item:nth-child(3) {
  transition-delay: 0.6s;
}
.appear.inview .item:nth-child(4) {
  transition-delay: 0.8s;
}
.appear.inview .item:nth-child(5) {
  transition-delay: 1s;
}
.appear.inview .item:nth-child(6) {
  transition-delay: 1.2s;
}
.appear.inview .item:nth-child(7) {
  transition-delay: 1.4s;
}
.appear.inview .item:nth-child(8) {
  transition-delay: 1.6s;
}
.appear.inview .item:nth-child(9) {
  transition-delay: 1.8s;
}
.appear.inview .item:nth-child(10) {
  transition-delay: 2s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  min-height: 0vw;
}

html {
  font-size: 62.5%;
  -webkit-overflow-scrolling: touch;
}

body {
  font-weight: 400;
  font-size: clamp(1.6rem, 1.554rem + 0.21vw, 1.8rem);
  font-family: "Noto Sans JP", sans-serif;
  color: #191919;
  overflow-x: hidden;
}

.wrapper {
  position: relative;
}

.section_content {
  padding: 0 0 100px;
}
@media screen and (max-width: 600px) {
  .section_content {
    padding: 0 0 60px;
  }
}

img {
  max-width: 100%;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
}

hr {
  margin-top: 3rem;
  padding-block: 1rem;
  border-inline: none;
  border-bottom: none;
}
@media screen and (max-width: 960px) {
  hr {
    margin-top: 2rem;
    padding-block: 0.5rem;
  }
}

a {
  text-decoration: none;
  transition: 0.3s all;
}

.anchor {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}

.lg-inner {
  width: min(800px, 90%);
  margin: 0 auto;
}

.inner {
  width: min(600px, 90%);
  margin: 0 auto;
}

.flex {
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 960px) {
  .flex {
    flex-direction: column;
    flex-wrap: wrap;
  }
}

.pc {
  display: inline-block;
}
@media screen and (max-width: 960px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 960px) {
  .sp {
    display: inline-block;
  }
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: text;
    text-decoration: none;
  }
}
@media screen and (max-width: 960px) {
  img {
    image-rendering: auto;
  }
}
.subat {
  font-size: clamp(1.2rem, 1.154rem + 0.21vw, 1.4rem);
  line-height: 1.6;
}

.bg-white {
  padding-block: 40px;
}
@media screen and (max-width: 960px) {
  .bg-white {
    padding-block: 20px;
  }
}

.bg-blue {
  padding-top: 80px;
  background: #187fc3;
}
@media screen and (max-width: 960px) {
  .bg-blue {
    padding-top: 40px;
  }
}

.mv_bg {
  position: relative;
  z-index: 1;
  background: #def1fb;
}
.mv_bg::before, .mv_bg::after {
  position: absolute;
  content: "";
  z-index: -1;
  background: linear-gradient(180deg, rgb(172, 221, 247) 0%, rgba(222, 241, 251, 0) 90%);
  left: 0;
  width: 100%;
}
.mv_bg::before {
  height: 30%;
  top: 0;
}
.mv_bg::after {
  height: 50%;
  bottom: 0;
  transform: scaleY(-1);
}

.mv {
  text-align: center;
  padding-block: 30px 100px;
  background: url(../images/mv_bg.svg) no-repeat top center/cover;
}
@media screen and (max-width: 960px) {
  .mv {
    padding-block: 20px 65px;
  }
}

.catch {
  display: inline-block;
}

.period {
  margin-block: 2rem 0;
}
@media screen and (max-width: 960px) {
  .period {
    margin-block: 0.5rem 0;
  }
}

.about {
  position: relative;
  z-index: 2;
  background: #acddf7;
}

.about_block {
  position: relative;
  top: -5rem;
  background: linear-gradient(180deg, rgb(255, 251, 199) 0%, rgb(255, 255, 255) 23%);
  border: 6px solid #187fc3;
  border-radius: 25px;
  box-shadow: 3px 3px 0 rgba(0, 66, 109, 0.7);
  margin-bottom: -3.5rem;
}
@media screen and (max-width: 960px) {
  .about_block {
    border-radius: 20px;
    border: 5px solid #187fc3;
  }
}
.about_block_box {
  padding-block: 4rem 6rem;
}
@media screen and (max-width: 960px) {
  .about_block_box {
    padding-block: 2rem 3rem;
  }
}
.about_block_desc {
  background: #187fc3;
  border-radius: 0 0 15px 15px;
}
@media screen and (max-width: 960px) {
  .about_block_desc {
    border-radius: 0 0 10px 10px;
  }
}
.about_block_desc img {
  position: relative;
  top: -2rem;
}
@media screen and (max-width: 960px) {
  .about_block_desc img {
    top: -1rem;
  }
}

.more-btnWrap {
  text-align: center;
  padding-block: 4rem;
}
@media screen and (max-width: 960px) {
  .more-btnWrap {
    padding-block: 3rem;
  }
}
.more-btnWrap .subat {
  color: white;
  display: inline-block;
  margin-top: 3rem;
  text-align: left;
}
.more-btnWrap .subat a {
  color: #fffa32;
  text-decoration: underline;
}
.more-btnWrap .subat a:hover {
  text-decoration: none;
}

/**** アコーディオンメニュー ****/
.accordion_inner {
  --accordion-padding-top: 3rem;
  --accordion-padding-bottom: 3rem;
  --accordion-padding-inline: 2rem;
  height: 0;
  overflow: hidden;
  padding: 0 var(--accordion-padding-inline);
  text-align: left;
  background: white;
  opacity: 0;
  pointer-events: none;
  transition: height 0.35s ease, padding-top 0.35s ease, padding-bottom 0.35s ease, opacity 0.25s ease;
}
.accordion_inner.is-open {
  padding-top: var(--accordion-padding-top);
  padding-bottom: var(--accordion-padding-bottom);
  opacity: 1;
  pointer-events: auto;
}
@media screen and (max-width: 960px) {
  .accordion_inner {
    --accordion-padding-top: 2rem;
    --accordion-padding-bottom: 2rem;
    --accordion-padding-inline: 1.5rem;
  }
}

.aco_btn {
  margin-top: 4rem;
  cursor: pointer;
  background: #187fc3;
  color: white;
}
@media screen and (max-width: 960px) {
  .aco_btn {
    margin-top: 3.5rem;
  }
}

/** summary **/
.aco_btn--summary {
  position: relative;
  font-size: clamp(1.8rem, 1.662rem + 0.62vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1rem;
  text-align: center;
  padding: 2rem;
}

.aco_btn--summary::before {
  position: absolute;
  content: "";
  background: url("../images/open.svg") no-repeat center center/contain;
  width: 30px;
  height: 30px;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.aco_btn--summary.open::before {
  background: url("../images/close.svg") no-repeat center center/contain;
  z-index: 1;
}

/** details **/
.aco_btn--details {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 3rem;
  padding: 1rem 6rem;
  min-height: 120px;
  border-radius: 80px;
  line-height: 0;
  border: 6px solid white;
  position: relative;
  z-index: 1;
}

.aco_btn--details::before {
  position: absolute;
  content: "";
  background: url("../images/arrow_btm.svg") no-repeat center/contain;
  width: 2.5rem;
  height: 2.5rem;
  right: 5rem;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.3s all;
}

.aco_btn--details.open::before {
  transform: rotate(-180deg);
}

.aco_btn--details img {
  width: 65%;
}

.accordion_inner--details {
  --accordion-padding-top: 10rem;
  --accordion-padding-bottom: 6rem;
  --accordion-padding-inline: 4rem;
  transform: translateY(0);
  margin-bottom: 0;
  border-radius: 25px;
  text-align: center;
  transition: height 0.35s ease, padding-top 0.35s ease, padding-bottom 0.35s ease, opacity 0.25s ease, transform 0.35s ease, margin-bottom 0.35s ease;
}
.accordion_inner--details.is-open {
  transform: translateY(-50px);
  margin-bottom: -50px;
}

.description_list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.description_list_txt {
  margin-bottom: 0.75rem;
}
.description_list .subat {
  margin-top: 0.5rem;
}

.description_list dt,
.description_list dd {
  padding: 1.5rem;
  background: white;
  border-bottom: 1px solid #191919;
}
.description_list dt:first-of-type,
.description_list dd:first-of-type {
  border-top: 1px solid #191919;
}

.description_list dt {
  font-size: clamp(1.4rem, 1.308rem + 0.41vw, 1.8rem);
  letter-spacing: 0.2rem;
  width: 30%;
  background: #b3b3b3;
  color: white;
  font-weight: 500;
}

.description_list dd {
  font-size: clamp(1.4rem, 1.308rem + 0.41vw, 1.8rem);
  line-height: 1.4;
  font-weight: 400;
  width: 70%;
}

.description_list dd span {
  font-weight: 600;
}

@media screen and (max-width: 960px) {
  .aco_btn--summary {
    text-align: left;
  }
  .aco_btn--summary::before {
    width: 25px;
    height: 25px;
    right: 1.5rem;
  }
  .aco_btn--details:before {
    width: 1.75rem;
    height: 1.75rem;
    right: 3rem;
  }
  .aco_btn--details {
    margin-top: 2rem;
    padding: 1rem 3rem;
    min-height: max(90px, 10vw);
    border: 4px solid white;
  }
  .aco_btn--details img {
    width: min(300px, 85%);
  }
  .accordion_inner--details {
    --accordion-padding-top: 8rem;
    --accordion-padding-bottom: 3rem;
    --accordion-padding-inline: 2rem;
  }
  .description_list dt,
  .description_list dd {
    padding: 1rem;
  }
}
.btn_area {
  padding: 60px 0 0;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .btn_area {
    padding: 40px 0 0;
  }
}

.app-ttl {
  width: min(600px, 90%);
  margin-inline: auto;
  margin-bottom: 3rem;
}
@media screen and (max-width: 960px) {
  .app-ttl {
    margin-bottom: 2rem;
  }
}

.app-btn a img {
  position: absolute;
  right: 4rem;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 80px;
  width: auto;
}
@media screen and (max-width: 960px) {
  .app-btn a img {
    right: 2rem;
    height: min(60px, 13vw);
  }
}

.app-btn._blue a {
  box-shadow: 0 10px 0 #006cb6;
  background: #50AAE6;
  margin-bottom: 4rem;
}
@media screen and (max-width: 960px) {
  .app-btn._blue a {
    box-shadow: 0 7px 0 #006cb6;
    margin-bottom: 2rem;
  }
}
.app-btn._blue a:hover {
  box-shadow: 0 0 0 #006cb6;
}

.app-btn._pink a {
  box-shadow: 0 10px 0 #a84b66;
  background: #ee87b4;
}
@media screen and (max-width: 960px) {
  .app-btn._pink a {
    box-shadow: 0 7px 0 #a84b66;
  }
}
.app-btn._pink a:hover {
  box-shadow: 0 0 0 #a84b66;
}

.app-btn a {
  position: relative;
  width: 450px;
  max-width: 90%;
  min-height: 130px;
  margin: 0 auto;
  font-size: clamp(2rem, 1.804rem + 0.87vw, 3.2rem);
  line-height: 1.3;
  letter-spacing: 0.2rem;
  border-radius: 15px;
  font-weight: 800;
  color: #fffa32;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem min(15rem, 25vw) 2rem min(4rem, 5vw);
  text-align: left;
  transition: 0.3s all;
}
@media screen and (max-width: 960px) {
  .app-btn a {
    border-radius: 10px;
    min-height: 100px;
  }
}

.app-btn a:hover {
  transform: translateY(10px);
}
@media screen and (max-width: 960px) {
  .app-btn a:hover {
    transform: translateY(7px);
  }
}

.student_support {
  padding-top: 100px;
  position: relative;
  z-index: 0;
  background: url(../images/bg_dot.svg) repeat center/20px, #bae2f8;
}
@media screen and (max-width: 960px) {
  .student_support {
    padding-top: 30px;
  }
}
.student_support::before, .student_support::after {
  position: absolute;
  content: "";
  z-index: -1;
  background: url(../images/confetti.svg) no-repeat top center/100%;
  top: 0;
  width: 30%;
  height: 100%;
}
@media screen and (max-width: 960px) {
  .student_support::before, .student_support::after {
    width: 50%;
  }
}
.student_support::before {
  left: 0;
}
.student_support::after {
  right: 0;
  transform: scaleX(-1);
}
.student_support_block {
  background: white;
  border-radius: 25px;
  box-shadow: 3px 3px 0 rgba(0, 66, 109, 0.4);
  padding-bottom: 5rem;
}
@media screen and (max-width: 960px) {
  .student_support_block {
    padding-bottom: 2rem;
  }
}
.student_support_ttl {
  width: 90%;
  margin-inline: auto;
  position: relative;
  top: -5rem;
  margin-bottom: -2rem;
}
@media screen and (max-width: 960px) {
  .student_support_ttl {
    top: -5vw;
    margin-bottom: -2vw;
  }
}
@media screen and (max-width: 600px) {
  .student_support_ttl {
    margin-bottom: 0;
  }
}
.student_support_box {
  margin-top: 4rem;
  padding: 3rem 4rem 4rem;
  border: 3px solid #187fc3;
  border-radius: 15px;
  background: #eff8fe;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .student_support_box {
    margin-top: 2rem;
    padding: 2rem 1.5rem 2.5rem;
    border: 2px solid #187fc3;
  }
}
.student_support_box-ttl {
  font-size: clamp(1.6rem, 1.469rem + 0.58vw, 2.4rem);
  color: #187fc3;
  text-align: center;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #187fc3;
  margin-bottom: 1.5rem;
}
.student_support_box-desc {
  font-size: clamp(1.4rem, 1.335rem + 0.29vw, 1.8rem);
  line-height: 1.8;
  letter-spacing: 0.025rem;
  text-align: left;
  margin-bottom: 2rem;
}
.student_support_box-link {
  background: #006cb6;
  display: inline-block;
  width: 350px;
  max-width: 100%;
  border: 1px solid white;
  outline: 5px solid #006cb6;
  border-radius: 50px;
  padding: 1.5rem 2rem;
  box-shadow: 0 10px 0 #00426d;
}
@media screen and (max-width: 960px) {
  .student_support_box-link {
    width: min(260px, 100%);
    outline: 3px solid #006cb6;
    box-shadow: 0 8px 0 #00426d;
  }
}
.student_support_box-link img {
  width: 80%;
  margin-inline: auto;
}
@media screen and (max-width: 960px) {
  .student_support_box-link img {
    width: 90%;
  }
}
.student_support_box-link:hover {
  transform: translateY(10px);
  box-shadow: 0 0 0 #00426d;
}
@media screen and (max-width: 960px) {
  .student_support_box-link:hover {
    transform: translateY(8px);
  }
}

.student_support_img {
  margin-bottom: 1.5rem;
}

.good_cycle {
  background: url(../images/good_cycle_bg.webp) no-repeat center bottom/cover;
}

.good_cycle_ttl {
  position: relative;
  width: 100%;
  background: #006cb6;
  padding: 3rem 0;
}
@media screen and (max-width: 960px) {
  .good_cycle_ttl {
    padding: 2rem 0;
  }
}
.good_cycle_ttl::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-top: 1.75rem solid #006cb6;
  border-right: 1rem solid transparent;
  border-left: 1rem solid transparent;
}
@media screen and (max-width: 960px) {
  .good_cycle_ttl::after {
    border-top: 1.25rem solid #006cb6;
    border-right: 0.75rem solid transparent;
    border-left: 0.75rem solid transparent;
  }
}

.good_cycle_img {
  margin-block: 5rem 2rem;
}
@media screen and (max-width: 960px) {
  .good_cycle_img {
    margin-block: 3.5rem 2rem;
  }
}

.good_cycle_subttl {
  font-size: clamp(1.7rem, 1.487rem + 0.95vw, 3rem);
  color: white;
  background: #006cb6;
  text-align: center;
  padding: 1rem;
  border-radius: 50px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 960px) {
  .good_cycle_subttl {
    margin-bottom: 1.5rem;
  }
}

.good_cycle_txt {
  font-size: clamp(1.5rem, 1.418rem + 0.36vw, 2rem);
  font-weight: 600;
  line-height: 2;
  text-shadow: 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 16px #fff, 0 0 16px #fff, 0 0 16px #fff, 0 0 24px #fff;
}
@media screen and (max-width: 960px) {
  .good_cycle_txt {
    line-height: 1.8;
  }
}

.contribution {
  background: #e3f4f9;
  padding-top: 80px;
}
@media screen and (max-width: 960px) {
  .contribution {
    padding-top: 40px;
  }
}

.contribution_ttl {
  font-size: clamp(1.8rem, 1.669rem + 0.58vw, 2.6rem);
  line-height: 1.6;
  color: #006cb6;
  text-align: center;
}
.contribution_ttl span {
  font-size: clamp(2.2rem, 2.069rem + 0.58vw, 3rem);
  background: #fffa32;
}

.contribution_list {
  margin-top: 3rem;
  background: white;
  font-weight: 500;
  text-align: center;
  padding: 3.5rem 7rem;
  border-radius: 15px;
}
@media screen and (max-width: 960px) {
  .contribution_list {
    padding: 2.5rem;
    font-size: 1.4rem;
  }
}

.contribution_item:not(:last-child) {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #b3b3b3;
}
@media screen and (max-width: 960px) {
  .contribution_item:not(:last-child) {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }
}

.contribution_year {
  margin-bottom: 1.25rem;
  text-align: center;
}
.contribution_year span {
  font-size: clamp(1.5rem, 1.451rem + 0.22vw, 1.8rem);
  line-height: 1.6;
  padding: 0.25rem 2rem;
  background: #006cb6;
  color: white;
  border-radius: 50px;
  display: inline-block;
}
@media screen and (max-width: 960px) {
  .contribution_year span {
    line-height: 1.4;
  }
}

.contribution_desc {
  padding-left: 1rem;
  border-left: 3px solid #006cb6;
  text-align: left;
  margin-bottom: 1.5rem;
}

.contribution_amount {
  display: flex;
  align-items: center;
}

.contribution_amount_label {
  padding: 1rem;
  color: #006cb6;
  border: 1px solid #006cb6;
}

.btn_list {
  margin-top: 5rem;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .btn_list {
    margin-top: 3.5rem;
  }
}
.btn_list li:not(:last-child) {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 960px) {
  .btn_list li:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.btn_list a {
  font-size: clamp(1.8rem, 1.767rem + 0.15vw, 2rem);
  font-weight: 600;
  padding: 2.5rem;
  width: min(350px, 90%);
  display: inline-block;
  color: white;
  background: #006cb6;
  border-radius: 50px;
  box-shadow: 0 5px 0 #00426d;
  transition: 0.3s all;
}
@media screen and (max-width: 960px) {
  .btn_list a {
    padding: 2rem;
  }
}
.btn_list a:hover {
  box-shadow: 0 0 0 #00426d;
  transform: translateY(5px);
}
.btn_list a span {
  display: inline-block;
  font-size: 1.4rem;
  vertical-align: top;
}

header {
  position: absolute;
  z-index: 100;
  width: 100%;
  padding: 20px;
}
@media screen and (max-width: 960px) {
  header {
    padding: 15px;
  }
}

.logo {
  width: 150px;
  transition: 0.3s all;
}
.logo:hover {
  opacity: 0.5;
}
@media screen and (max-width: 960px) {
  .logo {
    width: 100px;
  }
}

.footer {
  background: #e3f4f9;
  padding: 20px 0;
  text-align: center;
}
.footer a:hover {
  opacity: 0.5;
}

.backtotop {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 80px;
  height: 80px;
  z-index: 500;
}
@media screen and (max-width: 480px) {
  .backtotop {
    width: 60px;
    height: 60px;
  }
}
.backtotop.show {
  opacity: 1;
  visibility: visible;
}
.backtotop a {
  transition: 0.5s all;
}
.backtotop a:hover {
  opacity: 0.5;
}
.backtotop a img {
  width: 100%;
}

.backtotop a {
  position: fixed;
  bottom: 15px;
  right: 15px;
  background: #187fc3;
  width: 60px;
  height: 60px;
  z-index: 1000;
  border-radius: 50px;
  transition: 0.3s all;
}
.backtotop a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 1em;
  height: 1em;
  border: 3px solid white;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
}
.backtotop a:hover {
  opacity: 0.5;
}

.copy {
  font-size: clamp(1rem, 0.954rem + 0.21vw, 1.2rem);
}/*# sourceMappingURL=style.css.map */