#_ #header {
  position: fixed;
  z-index: 10;
  left: 0;
  top: 20px;
  width: 100%;
  padding-inline: 20px;
}
@media screen and (max-width: 767px) {
  #_ #header {
    display: block;
    top: 12px;
  }
}
#_ #header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  #_ #header .header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
}
#_ #header .header-logo {
  flex-shrink: 0;
  display: block;
  max-width: 132px;
  background-color: var(--color-white);
  border-radius: 5px;
  box-shadow: 4px 4px 16px rgba(24, 42, 44, 0.16);
  padding: 16px;
}
@media screen and (max-width: 1023px) {
  #_ #header .header-logo {
    max-width: 110px;
  }
}
@media screen and (max-width: 767px) {
  #_ #header .header-logo {
    max-width: 100px;
    padding: 12px;
  }
}
#_ #header .header-logo img {
  max-width: 100%;
  width: 100%;
}
#_ #header .header-ham {
  display: none;
}
@media screen and (max-width: 767px) {
  #_ #header .header-ham {
    position: relative;
    display: block;
    width: 42px;
    aspect-ratio: 1;
    background-color: var(--color-primary);
    border-radius: 50%;
    box-shadow: 3px 3px 12px rgba(24, 42, 44, 0.1);
    transition: background-color 0.3s;
  }
}
@media screen and (max-width: 767px) {
  #_ #header.is-menu-open .header-ham {
    background-color: var(--color-white);
  }
}
#_ #header .header-ham-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 50%;
  height: 2px;
  background-color: var(--color-white);
  transition-property: transform, top, bottom, background-color;
  transition-duration: 0.3s;
}
#_ #header .header-ham-line:first-of-type {
  top: 16px;
}
#_ #header .header-ham-line:last-of-type {
  bottom: 16px;
}
#_ #header.is-menu-open .header-ham-line {
  background-color: var(--color-primary);
}
#_ #header.is-menu-open .header-ham-line:first-of-type {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
#_ #header.is-menu-open .header-ham-line:last-of-type {
  bottom: 50%;
  transform: translate(-50%, 50%) rotate(45deg);
}
#_ #header .header-nav {
  box-shadow: 4px 4px 16px rgba(24, 42, 44, 0.16);
  background-color: var(--color-white);
  border-radius: 5px;
  padding: 15px 20px;
}
@media screen and (max-width: 767px) {
  #_ #header .header-nav {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(93, 170, 104, 0.9);
    padding: 84px 20px 50px;
    opacity: 0;
    visibility: hidden;
    transition-property: opacity, visibility;
    transition-duration: 0.3s;
  }
}
#_ #header.is-menu-open .header-nav {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 767px) {
  #_ #header .header-nav-inner {
    width: 100%;
    background-color: var(--color-white);
    border-radius: 5px;
    padding: 30px 25px;
  }
}
#_ #header .header-nav-list {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
@media screen and (max-width: 1023px) {
  #_ #header .header-nav-list {
    column-gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  #_ #header .header-nav-list {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  #_ #header .header-nav-list-item {
    border-top: 1px solid var(--color-primary);
  }
}
@media screen and (max-width: 767px) {
  #_ #header .header-nav-list-item:last-of-type {
    border-bottom: 1px solid var(--color-primary);
  }
}
#_ #header .header-nav-list-item a {
  display: block;
  font-size: 1.6rem;
  font-family: var(--font-en);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1023px) {
  #_ #header .header-nav-list-item a {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) and (hover: hover) {
  #_ #header .header-nav-list-item a {
    position: relative;
    transition: color 0.3s;
  }
  #_ #header .header-nav-list-item a:hover {
    color: var(--color-primary);
  }
  #_ #header .header-nav-list-item a:hover::after {
    transform: scaleX(1);
  }
  #_ #header .header-nav-list-item a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--color-primary);
    transform: scaleX(0);
    transition: transform 0.3s;
  }
}
@media screen and (max-width: 767px) {
  #_ #header .header-nav-list-item a {
    display: flex;
    align-items: center;
    column-gap: 8px;
    color: var(--color-black);
    font-size: 2rem;
    padding-block: 15px 16px;
  }
}
@media screen and (max-width: 767px) {
  #_ #header .header-nav-list-item a::before {
    display: block;
    content: "";
    width: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: var(--color-primary);
  }
}

#_ #fv {
  position: relative;
  z-index: 1;
  padding-top: 118px;
}
@media screen and (max-width: 767px) {
  #_ #fv {
    padding-top: 72px;
  }
}
#_ #fv::before {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 78.4722222222%;
  height: calc(100% - 230px);
  background-color: var(--color-back);
}
@media screen and (max-width: 767px) {
  #_ #fv::before {
    height: calc(100% - 123px);
    width: 100%;
  }
}
#_ #fv .button-l {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  #_ #fv .button-l {
    margin-top: 30px;
  }
}
#_ #fv .fv-main-slide {
  position: absolute;
  z-index: -1;
  right: 0;
  top: 0;
  width: 49.3055555556%;
  height: calc(100% - 330px);
}
@media screen and (max-width: 767px) {
  #_ #fv .fv-main-slide {
    position: static;
    width: 89.5%;
    margin-top: 30px;
    margin-right: -20px;
    margin-left: auto;
  }
}
#_ #fv .fv-main-slide img {
  min-height: 800px;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  #_ #fv .fv-main-slide img {
    min-height: 0;
  }
}
#_ #fv .fv-sub-slide {
  width: 29.8611111111%;
  margin-top: 48px;
  min-width: 300px;
}
@media screen and (max-width: 767px) {
  #_ #fv .fv-sub-slide {
    width: 51.2%;
    min-width: 0px;
    margin-top: 30px;
  }
}
#_ #fv .fv-title {
  font-size: 10rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  #_ #fv .fv-title {
    font-size: 4.2rem;
  }
}

@media screen and (min-width: 1024px) {
  #_ #news .news-slide .news-list {
    display: flex !important;
    justify-content: center;
    gap: 20px;
    align-items: flex-start;
  }
}
@media screen and (min-width: 1024px) {
  #_ #news .news-list-item {
    width: calc((100% - 60px) / 4);
  }
}
@media (hover: hover) {
  #_ #news .news-list-link .news-list-thumb {
    overflow: hidden;
  }
  #_ #news .news-list-link .news-list-thumb img {
    transition: transform 0.3s;
  }
  #_ #news .news-list-link:hover .news-list-thumb img {
    transform: scale(1.08);
  }
}
#_ #news .news-list-thumb img {
  aspect-ratio: 250/131;
  object-fit: cover;
}
#_ #news .news-list-time {
  display: block;
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-top: 5px;
}
#_ #news .news-list-title {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 5px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
#_ #news .news-list-more {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  column-gap: 8px;
  color: var(--color-primary);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  border-bottom: 1px solid var(--color-primary);
  padding-bottom: 5px;
  margin-top: 15px;
}
#_ #news .news-list-more::after {
  display: block;
  content: "";
  width: 5px;
  aspect-ratio: 5/10;
  background-image: url("../img/arrow-more.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
#_ #news .news-control {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
  margin-top: 30px;
}
@media screen and (min-width: 1024px) {
  #_ #news .news-control {
    display: none;
  }
}
#_ #news .news-control .splide__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  line-height: 1;
}
#_ #news .news-control .splide__arrow--prev {
  transform: rotate(180deg);
}
#_ #news .news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
}
#_ #news .news-pagination * {
  line-height: 0 !important;
}
#_ #news .news-pagination .splide__pagination__page {
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--color-primary);
  opacity: 0.2;
  transition-property: background-color, opacity;
  transition-duration: 0.3s;
}
#_ #news .news-pagination .splide__pagination__page.is-active {
  opacity: 1;
}

#_ #program .program-wrap {
  position: relative;
  z-index: 1;
  background-color: var(--color-back);
  padding-block: 100px 200px;
}
@media screen and (max-width: 767px) {
  #_ #program .program-wrap {
    padding-block: 60px 135px;
  }
}
#_ #program .program-wrap::before, #_ #program .program-wrap::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
  left: 0;
  width: 100%;
  height: 500px;
  background-image: url("../img/program-back.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  #_ #program .program-wrap::before, #_ #program .program-wrap::after {
    height: 200px;
    background-image: url("../img/program-back-sp.png");
  }
}
#_ #program .program-wrap::before {
  top: 0;
}
#_ #program .program-wrap::after {
  bottom: 0;
  transform: scale(-1, -1);
}
#_ #program .program-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px;
  margin-top: 82px;
}
@media screen and (max-width: 767px) {
  #_ #program .program-list {
    grid-template-columns: 1fr;
    row-gap: 40px;
    margin-top: 40px;
  }
}
#_ #program .program-list-item {
  counter-increment: number;
  position: relative;
  background-color: var(--color-white);
  border-radius: 5px;
  padding: 50px 20px 20px;
}
@media screen and (max-width: 767px) {
  #_ #program .program-list-item {
    padding: 40px 15px 20px;
  }
}
#_ #program .program-list-item::before {
  position: absolute;
  top: 0;
  left: 20px;
  transform: translateY(-50%);
  display: block;
  content: counter(number, decimal-leading-zero);
  color: var(--color-accent);
  font-family: var(--font-serif);
  font-size: 6.4rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #_ #program .program-list-item::before {
    font-size: 5.2rem;
    left: 0;
  }
}
#_ #program .program-list-heading {
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #_ #program .program-list-heading {
    font-size: 1.8rem;
  }
}
#_ #program .program-list-heading::after {
  display: block;
  content: "";
  width: 30px;
  height: 1px;
  background-color: var(--color-primary);
  margin-top: 10px;
}
#_ #program .program-list-heading span {
  display: inline-block;
}
#_ #program .program-list-text {
  font-size: 1.6rem;
  line-height: 1.75;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  #_ #program .program-list-text {
    font-size: 1.4rem;
  }
}
#_ #program .program-support {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  #_ #program .program-support {
    margin-top: 50px;
  }
}
#_ #program .program-support-heading {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  width: fit-content;
  padding: 11px 30px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  #_ #program .program-support-heading {
    font-size: 2rem;
  }
}
#_ #program .program-support-heading::before, #_ #program .program-support-heading::after {
  position: absolute;
  top: 0;
  flex-shrink: 0;
  display: block;
  content: "";
  width: 65px;
  height: 100%;
}
#_ #program .program-support-heading::before {
  left: 0;
  border-left: 2px solid var(--color-primary);
  border-radius: calc(infinity * 1px);
}
#_ #program .program-support-heading::after {
  right: 0;
  border-right: 2px solid var(--color-primary);
  border-radius: calc(infinity * 1px);
}
#_ #program .program-support-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  #_ #program .program-support-list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
}
#_ #program .program-support-list-item {
  background-color: var(--color-white);
  border-radius: 10px;
  padding: 30px 15px 50px;
}
@media screen and (max-width: 767px) {
  #_ #program .program-support-list-item {
    padding: 20px 15px 20px;
  }
}
#_ #program .program-support-list-item img {
  display: block;
  max-width: 130px;
  width: 100%;
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  padding: 23px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  #_ #program .program-support-list-item img {
    max-width: 120px;
  }
}
#_ #program .program-support-list-heading {
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  #_ #program .program-support-list-heading {
    font-size: 1.8rem;
    margin-top: 15px;
  }
}
#_ #program .program-support-text {
  line-break: strict;
  font-size: 1.6rem;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  #_ #program .program-support-text {
    font-size: 1.4rem;
  }
}
#_ #program .program-button {
  margin: 50px auto 0;
}
@media screen and (max-width: 767px) {
  #_ #program .program-button {
    margin-top: 40px;
  }
}
#_ #program .program-foot {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: -100px;
}
@media screen and (max-width: 767px) {
  #_ #program .program-foot {
    margin-top: -75px;
  }
}

#_ #startup .startup-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  #_ #startup .startup-list {
    gap: 10px;
  }
}
#_ #startup .startup-list-item {
  background-color: #f7fbf7;
  border-radius: 5px;
  width: 308px;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  #_ #startup .startup-list-item {
    width: 100%;
    max-width: 255px;
    padding: 10px;
  }
}
#_ #startup .startup-list-item img {
  height: 54px;
  width: 100%;
  object-fit: contain;
  object-position: center;
}
@media screen and (max-width: 767px) {
  #_ #startup .startup-list-item img {
    height: 48px;
  }
}
#_ #startup .startup-list-item h3 {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  #_ #startup .startup-list-item h3 {
    font-size: 1.4rem;
  }
}

#_ #section-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px 100px;
}
@media screen and (max-width: 767px) {
  #_ #section-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
#_ #section-wrap .section-wrap-item {
  max-width: 500px;
  width: 100%;
  box-shadow: 6px 6px 30px 0 rgba(93, 170, 104, 0.2);
  border-radius: 10px;
  padding: 50px 30px;
}
@media screen and (max-width: 767px) {
  #_ #section-wrap .section-wrap-item {
    max-width: 500px;
    padding: 25px;
    margin-inline: auto;
  }
}
#_ #section-wrap .section-wrap-item .heading {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  #_ #section-wrap .section-wrap-item .heading {
    font-size: 1.6rem;
  }
}
#_ #section-wrap .section-wrap-item .heading::before {
  font-size: 4.8rem;
}
@media screen and (max-width: 767px) {
  #_ #section-wrap .section-wrap-item .heading::before {
    font-size: 4rem;
  }
}
#_ #section-wrap .section-wrap-item .button {
  margin-top: 40px;
}
#_ #section-wrap .section-wrap-icon {
  display: block;
  width: 140px;
  aspect-ratio: 1;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  padding: 20px;
  margin: 30px auto 0;
}
@media screen and (max-width: 767px) {
  #_ #section-wrap .section-wrap-icon {
    width: 120px;
    margin-top: 40px;
  }
}

#_ #footslider img {
  border-radius: 10px;
}

#_ #footer {
  background-image: url("../img/footer-back.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-block: 55px 10px;
}
@media screen and (max-width: 767px) {
  #_ #footer {
    background-image: url("../img/footer-back-sp.jpg");
    padding-top: 60px;
  }
}
#_ #footer .footer-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 0.56em;
  color: var(--color-white);
  font-size: 6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #_ #footer .footer-text {
    font-size: 3.2rem;
  }
}
#_ #footer .footer-text span {
  letter-spacing: inherit;
}
#_ #footer .footer-data {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 30px;
  margin-top: 45px;
}
@media screen and (max-width: 767px) {
  #_ #footer .footer-data {
    margin-top: 30px;
  }
}
#_ #footer .footer-data-wrap {
  max-width: 200px;
  width: 100%;
}
#_ #footer .footer-data-wrap dt {
  color: var(--color-white);
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #_ #footer .footer-data-wrap dt {
    font-size: 2rem;
  }
}
#_ #footer .footer-data-wrap dd {
  background-color: var(--color-white);
  border-radius: 5px;
  padding: 20px 30px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  #_ #footer .footer-data-wrap dd {
    margin-top: 10px;
  }
}
#_ #footer .footer-data-wrap dd img {
  object-fit: contain;
  min-height: 54px;
}
@media screen and (max-width: 767px) {
  #_ #footer .footer-data-wrap dd img {
    min-height: 0px;
  }
}
#_ #footer .footer-copy {
  display: block;
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  #_ #footer .footer-copy {
    font-size: 1.2rem;
    margin-top: 60px;
  }
}
