@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap";
:where(*, *::before, *::after) {
  box-sizing: border-box;
}

:where(body) {
  margin: 0;
}

:where(h1, h2, h3, h4, h5, h6) {
  margin: 0;
}

:where(img) {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

:where(a) {
  color: inherit;
  text-decoration: none;
}

:root {
  --green: #8DB008;
  --green-hover: #738D0D;
  --red: #D7000F;
  --yellow: #FFFEEA;
  --pale-yellow: #FFFEEA;
  --ink: #000;
  --white: #fff;
  --container: 1158px;
}

@keyframes float-y-10 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes float-x-10 {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  line-height: 2;
  color: var(--ink);
}

.c-section-title {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.11;
  text-align: center;
}
.c-section-title::before, .c-section-title::after {
  display: block;
  width: 39px;
  height: 53px;
  content: "";
  background: url("../img/common/section-title_deco.svg") no-repeat center/contain;
}
.c-section-title::after {
  transform: rotateX(180deg);
}
@media (width <= 768px) {
  .c-section-title {
    font-size: 26px;
    line-height: 1.15;
  }
  .c-section-title::before, .c-section-title::after {
    width: 31px;
    height: 41px;
  }
}

.c-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 444px;
  max-width: 100%;
  padding: 20px;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.8;
  color: #fff;
  text-align: center;
  background: var(--green);
  border-radius: 9999px;
}
@media (any-hover: hover) {
  .c-button {
    transition: background-color 0.3s;
  }
  .c-button:hover {
    background: var(--green-hover);
  }
}
@media (width <= 768px) {
  .c-button {
    width: 300px;
    padding: 15px;
    font-size: 16px;
    line-height: 1.5;
  }
}
.c-button--center {
  margin-inline: auto;
}

.c-red-circle {
  position: absolute;
  z-index: 2;
  display: block;
  width: var(--circle-width);
  aspect-ratio: 1;
  background: var(--red);
  border-radius: 50%;
  animation: var(--circle-anime);
}

.c-green-circle {
  position: absolute;
  z-index: 2;
  display: block;
  width: var(--circle-width);
  aspect-ratio: 1;
  background: var(--green);
  border-radius: 50%;
  animation: var(--circle-anime);
}

.l-wrapper {
  min-width: 1320px;
  overflow: clip;
}
@media (width <= 768px) {
  .l-wrapper {
    min-width: auto;
  }
}

.p-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  min-height: 94px;
  background: var(--white);
}

.p-header__logo-area {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 20px 0 0 55px;
  background: var(--white);
  border-bottom-right-radius: 40px;
}

.p-header__logo {
  display: block;
  width: 243px;
}

.p-header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.p-header__toggle {
  display: none;
}

.p-header__nav-area {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  padding: 15px 40px 15px 24px;
}

.p-header__nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: center;
  min-width: 0;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.p-header__nav::-webkit-scrollbar {
  display: none;
}

.p-header__nav-link {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}
.p-header__nav-link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  content: "";
  background: #D9D9D9;
  opacity: 0;
  transition: opacity 0.3s;
}

.p-header__download {
  flex: 0 0 auto;
  margin: 0;
}

.p-header__download a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 188px;
  min-height: 40px;
  padding: 4px 18px;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  color: var(--white);
  background: var(--green);
  border-radius: 22px;
  transition: background-color 0.3s;
}

.p-header__download--disabled a {
  font-size: 14px;
  pointer-events: none;
}

@media (any-hover: hover) {
  .p-header__nav-link {
    transition: color 0.3s;
  }
  .p-header__nav-link:hover {
    color: var(--green);
  }
  .p-header__nav-link:hover::after {
    opacity: 1;
  }
  .p-header__download a:hover {
    background: var(--green-hover);
  }
}
@media (width <= 768px) {
  .p-header {
    display: block;
    min-height: 70px;
  }
  .p-header__logo-area {
    align-items: center;
    justify-content: flex-start;
    min-height: 70px;
    padding: 16px 20px;
    border-bottom: 0;
    border-bottom-right-radius: 0;
  }
  .p-header__toggle {
    position: absolute;
    top: 21px;
    right: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 29px;
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
  }
  .p-header__toggle-line {
    display: block;
    width: 34px;
    height: 3px;
    background: var(--ink);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
  }
  .p-header.is-open .p-header__toggle-line:nth-child(1) {
    transform: translateY(13px) rotate(45deg);
  }
  .p-header.is-open .p-header__toggle-line:nth-child(2) {
    opacity: 0;
  }
  .p-header.is-open .p-header__toggle-line:nth-child(3) {
    transform: translateY(-13px) rotate(-45deg);
  }
  .p-header__nav-area {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    z-index: 10;
    display: block;
    max-height: calc(100vh - 70px);
    padding: 0 20px;
    padding: 10px 20px 20px;
    overflow-y: auto;
    pointer-events: none;
    background: #fff;
    transition: transform 0.3s ease, padding 0.3s ease;
    transform: translateX(100%);
  }
  .p-header.is-open .p-header__nav-area {
    height: calc(100lvh - 70px);
    pointer-events: auto;
    transform: translateX(0);
  }
  .p-header__nav {
    display: block;
    margin-bottom: 0;
    border-top: 1px solid rgba(141, 176, 8, 0.6);
  }
  .p-header__nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 10px 14px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.875;
    border-bottom: 1px solid rgba(141, 176, 8, 0.6);
  }
  .p-header__nav-link::after {
    display: none;
  }
  .p-header__nav-link--current {
    background: rgba(141, 176, 8, 0.12);
  }
  .p-header__download {
    display: none;
  }
}
@media (width <= 768px) {
  .p-header__logo {
    width: 165px;
  }
}
.p-top-hero {
  position: relative;
  padding: 52px 0 97px;
  overflow: clip;
}
.p-top-hero > .c-red-circle {
  --circle-width: 24px;
  --circle-anime: float-x-10 2.4s ease-in-out infinite;
  bottom: 14px;
  left: 505px;
}
.p-top-hero > .c-green-circle {
  --circle-width: 24px;
  --circle-anime: float-x-10 2.5s ease-in-out infinite;
  bottom: 21px;
  left: 550px;
}

.p-top-hero__copy {
  position: relative;
  width: min(var(--container), 100% - 40px);
  margin-inline: auto;
}

.p-top-hero__date {
  display: inline-block;
  padding-bottom: 2px;
  font-size: 40px;
  font-weight: 700;
  line-height: 2;
  color: var(--ink);
  border-bottom: 3px solid var(--green);
}

.p-top-hero__title {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0 18px;
  align-items: flex-end;
  margin: 0;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.6;
}
.p-top-hero__title .c-red-circle {
  --circle-width: 24px;
  --circle-anime: float-y-10 2.4s ease-in-out infinite;
  top: 6px;
  left: -47px;
}
@media (width <= 768px) {
  .p-top-hero__title .c-red-circle {
    --circle-width: 17px;
    top: 25px;
    right: 16px;
    left: auto;
  }
}
.p-top-hero__title .c-green-circle {
  --circle-width: 24px;
  --circle-anime: float-y-10 2.5s ease-in-out infinite;
  top: 33px;
  left: -76px;
}
@media (width <= 768px) {
  .p-top-hero__title .c-green-circle {
    --circle-width: 17px;
    top: 45px;
    right: 37px;
    left: auto;
  }
}

.p-top-hero__lead {
  position: relative;
  width: fit-content;
  margin: 26px 0 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}
.p-top-hero__lead .c-red-circle {
  --circle-width: 16px;
  --circle-anime: float-x-10 2.4s ease-in-out infinite;
  top: 22px;
  right: -57px;
}
@media (width <= 768px) {
  .p-top-hero__lead .c-red-circle {
    top: 69px;
    right: 177px;
  }
}
.p-top-hero__lead .c-green-circle {
  --circle-width: 16px;
  --circle-anime: float-x-10 2.5s ease-in-out infinite;
  top: 32px;
  right: -31px;
}
@media (width <= 768px) {
  .p-top-hero__lead .c-green-circle {
    top: 78px;
    right: 155px;
  }
}

.p-top-hero__message {
  margin: 18px 0 0;
  font-size: clamp(18px, 1.8vw, 20px);
  font-weight: 700;
  line-height: 1.6;
}

.p-top-hero__visual {
  position: relative;
  margin-top: 50px;
  overflow: hidden;
}

.p-top-hero__swiper {
  overflow: hidden;
}

.p-top-hero__track {
  align-items: center;
}

.p-top-hero__photo {
  width: 100%;
  aspect-ratio: 1030/588;
  margin: 0;
  overflow: hidden;
  border-radius: 7.3637702504vw;
}
.p-top-hero__photo.swiper-slide-active {
  border-radius: 0 7.3637702504vw 7.3637702504vw 0;
}

.p-top-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-top-hero__overlay {
  position: absolute;
  top: 19%;
  left: 40.5%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--white);
  pointer-events: none;
}

.p-top-hero__overlay-line {
  display: inline-block;
  width: fit-content;
  padding: 4px 14px 3px;
  background: #8eb200;
}

.p-top-hero__overlay-line + .p-top-hero__overlay-line {
  margin-left: 26px;
}

.p-top-hero__dl-button {
  display: none;
}

@media (width >= 1358px) {
  .p-top-hero__photo {
    width: 75.8468335788vw;
  }
}
@media (width <= 768px) {
  .p-top-hero {
    padding: 22px 0 44px;
  }
  .p-top-hero__copy {
    width: calc(100% - 32px);
  }
  .p-top-hero__date {
    padding-bottom: 1px;
    font-size: 20px;
    line-height: 1;
  }
  .p-top-hero__title {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    font-size: 32px;
    line-height: 1.5;
  }
  .p-top-hero__lead,
  .p-top-hero__message {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.7;
  }
  .p-top-hero__visual {
    margin-top: 22px;
  }
  .p-top-hero__overlay {
    position: static;
    display: block;
    padding: 0 18px;
    margin-top: 22px;
  }
  .p-top-hero__overlay-line {
    display: block;
    padding: 0;
    margin: 0;
    font-size: 16px;
    line-height: 1.25;
    color: var(--green);
    background: none;
  }
  .p-top-hero__overlay-line + .p-top-hero__overlay-line {
    margin: 5px 0 0;
  }
  .p-top-hero__dl-button {
    display: block;
    padding: 12px 0 18px;
    margin-top: 30px;
    font-size: 18px;
    font-weight: 700;
    line-height: 32px;
    color: var(--white, #FFF);
    text-align: center;
    background: var(--green);
    transition: background-color 0.3s;
  }
  .p-top-hero__dl-button:hover {
    background: var(--green-hover);
  }
  .p-top-hero__dl-button--disabled {
    pointer-events: none;
  }
}
.p-top-info-block {
  background: rgba(141, 176, 8, 0.1);
}

.p-top-cta {
  padding: 36px 0 44px;
}
.p-top-cta--news {
  padding-bottom: 10px;
}
.p-top-cta--bottom {
  padding: 46px 0 10px;
}
.p-top-cta__inner {
  position: relative;
  width: min(var(--container), 100% - 40px);
  margin-inline: auto;
}
.p-top-cta__link {
  position: relative;
  display: block;
  padding: 16px 82px 25px 280px;
  color: var(--white);
  background: var(--green);
  border-radius: 9999px;
  box-shadow: 0 10px 0 var(--green-hover);
}
.p-top-cta__person {
  position: absolute;
  bottom: -33px;
  left: 55px;
  pointer-events: none;
  transition: transform 0.3s;
}
.p-top-cta__person img {
  display: block;
  width: 100%;
  height: auto;
}
.p-top-cta__lead {
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
}
.p-top-cta__main {
  display: block;
  font-size: 33px;
  font-weight: 700;
  line-height: 1.1;
}
.p-top-cta__arrow {
  position: absolute;
  top: 50%;
  right: 44px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 14px solid var(--white);
  transform: translateY(-50%);
}

.p-top-cta--news .p-top-cta__link {
  padding-left: 280px;
}

.p-top-cta--news .p-top-cta__person {
  bottom: -45px;
  left: 48px;
}

.p-top-cta--between {
  padding: 114px 0;
}
.p-top-cta--between .c-red-circle {
  --circle-width: 20px;
  --circle-anime: float-x-10 2.4s ease-in-out infinite;
  right: 74px;
  bottom: -89px;
}
@media (width <= 768px) {
  .p-top-cta--between .c-red-circle {
    right: 206px;
    bottom: -72px;
  }
}
.p-top-cta--between .c-green-circle {
  --circle-width: 20px;
  --circle-anime: float-x-10 2.5s ease-in-out infinite;
  right: 31px;
  bottom: -93px;
}
@media (width <= 768px) {
  .p-top-cta--between .c-green-circle {
    right: 173px;
    bottom: -76px;
  }
}

.p-top-cta--between .p-top-cta__link {
  padding-right: 220px;
  padding-left: 38px;
}

.p-top-cta--between .p-top-cta__person {
  right: 87px;
  bottom: -18px;
  left: auto;
}

.p-top-cta--between .p-top-cta__lead,
.p-top-cta--between .p-top-cta__main {
  text-align: center;
}

@media (any-hover: hover) {
  .p-top-cta__link {
    transition: box-shadow 0.3s, transform 0.3s, background-color 0.3s;
  }
  .p-top-cta__link:hover {
    background: var(--green-hover);
    box-shadow: 0 3px 0 #3D4D00;
    transform: translateY(7px);
  }
  .p-top-cta__link:hover .p-top-cta__person {
    transform: rotate(-7deg) translateY(-7px);
  }
}
@media (width <= 768px) {
  .p-top-cta {
    padding: 28px 0 34px;
  }
  .p-top-cta--bottom {
    padding-top: 34px;
    padding-bottom: 10px;
  }
  .p-top-cta--between {
    padding-top: 60px;
    padding-bottom: 100px;
  }
  .p-top-cta__link {
    width: 350px;
    max-width: 100%;
    min-height: 0;
    padding: 19px 0 20px 27px;
    margin-inline: auto;
    border-radius: 30px;
  }
  .p-top-cta__person {
    inset: -18px auto auto 8px;
    width: 100px;
  }
  .p-top-cta--between .p-top-cta__person {
    right: 6px;
    bottom: -4px;
    display: block;
    width: 86px;
  }
  .p-top-cta__lead {
    padding-right: 0;
    padding-left: 92px;
    margin-top: 0;
    font-size: 16px;
    line-height: 1.375;
  }
  .p-top-cta__main {
    width: 12em;
    max-width: 100%;
    margin-top: 7px;
    font-size: 24px;
    line-height: 1.33;
  }
  .p-top-cta--between .p-top-cta__link {
    min-height: 0;
    padding: 19px 0 20px 27px;
    border-radius: 24px;
  }
  .p-top-cta--between .p-top-cta__lead {
    padding: 0 97px 0 0;
    line-height: 1.45;
    text-align: left;
  }
  .p-top-cta--between .p-top-cta__person {
    inset: -11px 10px auto auto;
    width: 105px;
  }
  .p-top-cta--news .p-top-cta__link {
    padding: 19px 0 20px 27px;
  }
  .p-top-cta--news .p-top-cta__person {
    inset: -24px auto auto -6px;
    width: 116px;
  }
  .p-top-cta__arrow {
    right: 22px;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 7px solid transparent;
    border-right: 0;
    border-bottom: 7px solid transparent;
    border-left: 12px solid;
    transform: translateY(48px);
  }
}
.p-top-news {
  padding: 110px 0 120px;
}
.p-top-news__inner {
  width: min(var(--container), 100% - 40px);
  margin-inline: auto;
}
.p-top-news__list-wrapper {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
}
.p-top-news__list-wrapper .c-red-circle {
  --circle-width: 24px;
  --circle-anime: float-y-10 2.4s ease-in-out infinite;
}
.p-top-news__list-wrapper .c-red-circle--01 {
  top: -115px;
  right: 73px;
}
@media (width <= 768px) {
  .p-top-news__list-wrapper .c-red-circle--01 {
    --circle-width: 20px;
    top: -129px;
    right: 71px;
  }
}
.p-top-news__list-wrapper .c-red-circle--02 {
  bottom: -85px;
  left: -56px;
}
@media (width <= 768px) {
  .p-top-news__list-wrapper .c-red-circle--02 {
    --circle-width: 20px;
    bottom: -149px;
    left: 34px;
  }
}
.p-top-news__list-wrapper .c-green-circle {
  --circle-width: 24px;
  --circle-anime: float-y-10 2.5s ease-in-out infinite;
}
.p-top-news__list-wrapper .c-green-circle--01 {
  top: -94px;
  right: 40px;
}
@media (width <= 768px) {
  .p-top-news__list-wrapper .c-green-circle--01 {
    --circle-width: 20px;
    top: -112px;
    right: 43px;
  }
}
.p-top-news__list-wrapper .c-green-circle--02 {
  bottom: -110px;
  left: -26px;
}
@media (width <= 768px) {
  .p-top-news__list-wrapper .c-green-circle--02 {
    --circle-width: 20px;
    bottom: -164px;
    left: 57px;
  }
}
.p-top-news__list {
  width: 798px;
  max-width: 100%;
  padding: 0;
  margin: 0 auto 70px;
  list-style: none;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.2) 4px, transparent 4px, transparent 8px);
  background-repeat: repeat-x;
  background-position: top;
  background-size: 8px 1px;
}
.p-top-news__item {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.2) 4px, transparent 4px, transparent 8px);
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: 8px 1px;
}
.p-top-news__link {
  display: flex;
  gap: 22px;
  padding: 22px 10px;
}
@media (any-hover: hover) {
  .p-top-news__link {
    transition: color 0.3s;
  }
  .p-top-news__link:hover {
    color: var(--green);
  }
}
.p-top-news__date, .p-top-news__text {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6;
}
.p-top-news__date {
  flex-shrink: 0;
}
.p-top-news__title {
  margin-bottom: 60px;
}
@media (width <= 768px) {
  .p-top-news {
    padding: 100px 0;
  }
  .p-top-news__list {
    margin-bottom: 50px;
  }
  .p-top-news__link {
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
  }
  .p-top-news__date, .p-top-news__text {
    font-size: 16px;
    line-height: 2;
  }
  .p-top-news__title {
    margin-bottom: 40px;
  }
}

.p-news-archive {
  padding: 110px 0 120px;
}
.p-news-archive__inner {
  width: min(var(--container), 100% - 40px);
  margin-inline: auto;
}
.p-news-archive__title {
  margin-bottom: 60px;
}
.p-news-archive__circle-wrapper {
  position: relative;
  width: fit-content;
  margin-inline: auto;
}
.p-news-archive__circle-wrapper .c-red-circle--01 {
  --circle-width: 24px;
  --circle-anime: float-y-10 2.4s ease-in-out infinite;
  top: -72px;
  right: -326px;
}
@media (width <= 768px) {
  .p-news-archive__circle-wrapper .c-red-circle--01 {
    --circle-width: 14px;
    top: -126px;
    right: 0;
    left: -174px;
  }
}
.p-news-archive__circle-wrapper .c-red-circle--02 {
  --circle-width: 24px;
  --circle-anime: float-y-10 2.4s ease-in-out infinite;
  top: 427px;
  left: -456px;
}
@media (width <= 768px) {
  .p-news-archive__circle-wrapper .c-red-circle--02 {
    display: none;
  }
}
.p-news-archive__circle-wrapper .c-green-circle--01 {
  --circle-width: 24px;
  --circle-anime: float-y-10 2.4s ease-in-out infinite;
  top: -52px;
  right: -360px;
}
@media (width <= 768px) {
  .p-news-archive__circle-wrapper .c-green-circle--01 {
    --circle-width: 14px;
    top: -110px;
    right: 0;
    left: -158px;
  }
}
.p-news-archive__circle-wrapper .c-green-circle--02 {
  --circle-width: 24px;
  --circle-anime: float-y-10 2.5s ease-in-out infinite;
  top: 447px;
  left: -427px;
}
@media (width <= 768px) {
  .p-news-archive__circle-wrapper .c-green-circle--02 {
    display: none;
  }
}
.p-news-archive__circle-wrapper-bottom {
  position: relative;
  width: fit-content;
  margin-inline: auto;
}
.p-news-archive__circle-wrapper-bottom .c-red-circle {
  --circle-width: 20px;
  --circle-anime: float-y-10 2.4s ease-in-out infinite;
  display: none;
}
@media (width <= 768px) {
  .p-news-archive__circle-wrapper-bottom .c-red-circle {
    right: -122px;
    bottom: -46px;
    display: block;
  }
}
.p-news-archive__circle-wrapper-bottom .c-green-circle {
  --circle-width: 20px;
  --circle-anime: float-y-10 2.4s ease-in-out infinite;
  display: none;
}
@media (width <= 768px) {
  .p-news-archive__circle-wrapper-bottom .c-green-circle {
    right: -145px;
    bottom: -62px;
    display: block;
  }
}
.p-news-archive__list {
  width: 758px;
  max-width: 100%;
  padding: 0;
  margin: 0 auto;
  list-style: none;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.2) 4px, transparent 4px, transparent 8px);
  background-repeat: repeat-x;
  background-position: top;
  background-size: 8px 1px;
}
.p-news-archive__item {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.2) 4px, transparent 4px, transparent 8px);
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: 8px 1px;
}
.p-news-archive__link {
  display: grid;
  grid-template-columns: 75px minmax(0, 1fr);
  column-gap: 22px;
  align-items: start;
  padding: 23px 0;
}
@media (any-hover: hover) {
  .p-news-archive__link {
    transition: color 0.3s;
  }
  .p-news-archive__link:hover {
    color: var(--green);
  }
}
.p-news-archive__date, .p-news-archive__text {
  margin: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 2;
}
.p-news-archive__pagination {
  margin-top: 48px;
  text-align: center;
}
.p-news-archive__pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
.p-news-archive__pagination li {
  margin: 0;
  line-height: 1;
}
.p-news-archive__pagination a.page-numbers,
.p-news-archive__pagination span.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  color: var(--white);
  background: rgba(141, 176, 8, 0.5);
  border-radius: 50%;
}
.p-news-archive__pagination span.page-numbers.current {
  background: var(--green);
}
.p-news-archive__pagination a.page-numbers.prev,
.p-news-archive__pagination a.page-numbers.next {
  background: var(--white);
  border: 1px solid var(--green);
}
.p-news-archive__pagination .dots {
  font-size: 20px;
  color: var(--green);
  background: transparent;
}
@media (any-hover: hover) {
  .p-news-archive__pagination a.page-numbers {
    transition: opacity 0.3s;
  }
  .p-news-archive__pagination a.page-numbers:hover {
    opacity: 0.7;
  }
}
.p-news-archive__arrow {
  display: block;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-right: 10px solid var(--green);
  border-bottom: 7px solid transparent;
}
.p-news-archive__arrow--next {
  transform: rotate(180deg);
}
.p-news-archive__empty {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  text-align: center;
}
.p-news-archive__button {
  margin-top: 120px;
}
@media (width <= 768px) {
  .p-news-archive {
    padding: 100px 0;
  }
  .p-news-archive__title {
    margin-bottom: 40px;
  }
  .p-news-archive__link {
    display: block;
    padding: 20px 0;
  }
  .p-news-archive__date, .p-news-archive__text {
    display: block;
    font-size: 16px;
    line-height: 2;
  }
  .p-news-archive__pagination {
    margin-top: 40px;
  }
  .p-news-archive__pagination .page-numbers {
    gap: 10px;
  }
  .p-news-archive__pagination a.page-numbers,
  .p-news-archive__pagination span.page-numbers {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }
  .p-news-archive__arrow {
    border-top-width: 5px;
    border-right-width: 8px;
    border-bottom-width: 5px;
  }
  .p-news-archive__button {
    margin-top: 50px;
  }
}

.p-news-single {
  padding: 110px 0 120px;
}
.p-news-single__inner {
  width: min(var(--container), 100% - 40px);
  margin-inline: auto;
}
.p-news-single__article {
  width: 761px;
  max-width: 100%;
  margin-inline: auto;
}
.p-news-single__section-title {
  margin-bottom: 60px;
}
.p-news-single__title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.44;
}
.p-news-single__date {
  display: block;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}
.p-news-single__content {
  margin-top: 50px;
  font-weight: bold;
}
.p-news-single__content *:first-child {
  margin-top: 0;
}
.p-news-single__content *:last-child {
  margin-bottom: 0;
}
.p-news-single__content :where(a) {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .p-news-single__content :where(a) {
    transition: color 0.3s;
  }
  .p-news-single__content :where(a):hover {
    color: var(--green);
  }
}
.p-news-single__button {
  margin-top: 120px;
}
.p-news-single__empty {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  text-align: center;
}
@media (width <= 768px) {
  .p-news-single {
    padding: 100px 0;
  }
  .p-news-single__section-title {
    margin-bottom: 40px;
  }
  .p-news-single__title {
    font-size: 26px;
    line-height: 1.33;
  }
  .p-news-single__date {
    margin-top: 24px;
    font-size: 16px;
  }
  .p-news-single__content {
    margin-top: 30px;
  }
  .p-news-single__button {
    margin-top: 50px;
  }
}

.p-top-values {
  padding: 113px 0 138px;
  background: rgba(141, 176, 8, 0.1);
}
.p-top-values__inner {
  width: min(var(--container), 100% - 40px);
  margin-inline: auto;
}
.p-top-values__title {
  margin-bottom: 54px;
}
.p-top-values__content {
  display: grid;
  grid-template-columns: 369px 1fr;
  gap: 41px;
  align-items: start;
  padding: 66px 105px 53px;
  background: var(--white);
  border-radius: 50px;
}
.p-top-values__words {
  position: relative;
  width: 369px;
  height: 347px;
}
.p-top-values__word {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 203px;
  height: 203px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  background: rgba(141, 176, 8, 0.76);
  border-radius: 50%;
}
.p-top-values__word:nth-child(1) {
  top: 0;
  left: 83px;
}
.p-top-values__word:nth-child(2) {
  top: 143px;
  left: 0;
}
.p-top-values__word:nth-child(3) {
  top: 143px;
  left: 166px;
}
.p-top-values__list {
  width: 529px;
  max-width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}
.p-top-values__item {
  display: grid;
  grid-template-columns: 83px 1fr;
  gap: 29px;
  align-items: center;
}
.p-top-values__item + .p-top-values__item {
  padding-top: 22px;
  margin-top: 22px;
  border-top: 1px dashed rgba(0, 0, 0, 0.2);
}
.p-top-values__label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 83px;
  aspect-ratio: 1;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
}
.p-top-values__description {
  max-width: 389px;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}
@media (width <= 768px) {
  .p-top-values {
    padding: 100px 0;
  }
  .p-top-values__content {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 50px 20px 47px;
    border-radius: 50px;
  }
  .p-top-values__words {
    width: 290px;
    height: 274px;
    margin-inline: auto;
  }
  .p-top-values__word {
    width: 153px;
    height: 153px;
    font-size: 22px;
  }
  .p-top-values__word:nth-child(1) {
    top: 0;
    left: 65px;
  }
  .p-top-values__word:nth-child(2) {
    top: 114px;
    left: 0;
  }
  .p-top-values__word:nth-child(3) {
    top: 114px;
    left: 130px;
  }
  .p-top-values__list {
    width: 100%;
  }
  .p-top-values__item {
    grid-template-columns: 83px 1fr;
    gap: 20px;
  }
  .p-top-values__item + .p-top-values__item {
    padding-top: 16px;
    margin-top: 16px;
  }
  .p-top-values__label {
    font-size: 20px;
  }
  .p-top-values__description {
    max-width: 100%;
  }
}

.p-top-safe {
  padding: 120px 0 130px;
}
.p-top-safe__inner {
  position: relative;
  width: min(var(--container), 100% - 40px);
  margin-inline: auto;
}
.p-top-safe__title {
  margin-bottom: 100px;
}
.p-top-safe__list-wrapper {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
}
.p-top-safe__list-wrapper .c-red-circle--01 {
  --circle-width: 24px;
  --circle-anime: float-y-10 2.4s ease-in-out infinite;
  top: -115px;
  right: 56px;
}
@media (width <= 768px) {
  .p-top-safe__list-wrapper .c-red-circle--01 {
    top: -228px;
    right: 101px;
  }
}
.p-top-safe__list-wrapper .c-red-circle--02 {
  --circle-width: 16px;
  --circle-anime: float-x-10 2.4s ease-in-out infinite;
  top: 213px;
  right: 395px;
}
@media (width <= 768px) {
  .p-top-safe__list-wrapper .c-red-circle--02 {
    top: 17px;
    right: auto;
    left: 0;
  }
}
.p-top-safe__list-wrapper .c-red-circle--03 {
  --circle-width: 24px;
  --circle-anime: float-y-10 2.4s ease-in-out infinite;
  top: 393px;
  left: 345px;
}
@media (width <= 768px) {
  .p-top-safe__list-wrapper .c-red-circle--03 {
    display: none;
  }
}
.p-top-safe__list-wrapper .c-green-circle--01 {
  --circle-width: 24px;
  --circle-anime: float-y-10 2.5s ease-in-out infinite;
  top: -94px;
  right: 21px;
}
@media (width <= 768px) {
  .p-top-safe__list-wrapper .c-green-circle--01 {
    top: -208px;
    right: 67px;
  }
}
.p-top-safe__list-wrapper .c-green-circle--02 {
  --circle-width: 16px;
  --circle-anime: float-x-10 2.5s ease-in-out infinite;
  top: 205px;
  right: 364px;
}
@media (width <= 768px) {
  .p-top-safe__list-wrapper .c-green-circle--02 {
    top: 10px;
    right: auto;
    left: 33px;
  }
}
.p-top-safe__list-wrapper .c-green-circle--03 {
  --circle-width: 24px;
  --circle-anime: float-y-10 2.4s ease-in-out infinite;
  top: 414px;
  left: 374px;
}
@media (width <= 768px) {
  .p-top-safe__list-wrapper .c-green-circle--03 {
    display: none;
  }
}
.p-top-safe__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 82px 42px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.p-top-safe__item {
  position: relative;
  min-height: 363px;
  padding: 37px 34px 23px;
  background: var(--white);
  border: 3px solid var(--green);
  border-radius: 30px;
}
.p-top-safe__badge {
  position: absolute;
  top: -43px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  font-size: 33px;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  transform: translateX(-50%);
}
.p-top-safe__badge small {
  display: block;
  margin-bottom: 2px;
  font-size: 16px;
  line-height: 1;
}
.p-top-safe__art {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 137px;
  margin: 0 auto;
}
.p-top-safe__text {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}
.p-top-safe__notice {
  position: relative;
  padding: 50px 40px 30px;
  margin: 80px 0 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  background: var(--yellow);
  border: 3px solid var(--green);
  border-radius: 30px;
}
.p-top-safe__notice .c-red-circle {
  --circle-width: 16px;
  --circle-anime: float-y-10 2.4s ease-in-out infinite;
  right: 400px;
  bottom: -120px;
}
@media (width <= 768px) {
  .p-top-safe__notice .c-red-circle {
    right: auto;
    bottom: -60px;
    left: 80px;
  }
}
.p-top-safe__notice .c-green-circle {
  --circle-width: 16px;
  --circle-anime: float-y-10 2.5s ease-in-out infinite;
  right: 374px;
  bottom: -102px;
}
@media (width <= 768px) {
  .p-top-safe__notice .c-green-circle {
    right: auto;
    bottom: -50px;
    left: 110px;
  }
}
.p-top-safe__notice::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  content: "!";
  background: var(--green);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
@media (width <= 768px) {
  .p-top-safe {
    padding: 100px 0;
  }
  .p-top-safe__title {
    gap: 0;
    margin-bottom: 56px;
  }
  .p-top-safe__list {
    grid-template-columns: repeat(6, 273px);
    gap: 30px;
    padding-top: 40px;
    overflow: scroll;
  }
  .p-top-safe__item {
    min-height: 320px;
    padding: 52px 34px 28px;
  }
  .p-top-safe__notice {
    padding: 56px 25px 46px;
    text-align: left;
  }
  .p-top-safe__inner::before, .p-top-safe__inner::after {
    display: none;
  }
}

.p-top-environment {
  padding: 112px 0 129px;
  background: var(--pale-yellow);
}
.p-top-environment__inner {
  position: relative;
  width: min(var(--container), 100% - 40px);
  margin-inline: auto;
}
.p-top-environment__title {
  margin-bottom: 56px;
}
.p-top-environment__lead {
  position: relative;
  max-width: 944px;
  margin: 0 auto 53px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
.p-top-environment__lead .c-red-circle {
  --circle-width: 24px;
  --circle-anime: float-x-10 2.4s ease-in-out infinite;
  top: -160px;
  left: 136px;
}
@media (width <= 768px) {
  .p-top-environment__lead .c-red-circle {
    --circle-width: 22px;
    top: -180px;
    right: 67px;
    left: auto;
  }
}
.p-top-environment__lead .c-green-circle {
  --circle-width: 24px;
  --circle-anime: float-x-10 2.5s ease-in-out infinite;
  top: -142px;
  left: 168px;
}
@media (width <= 768px) {
  .p-top-environment__lead .c-green-circle {
    --circle-width: 22px;
    --circle-anime: float-x-10 2.5s ease-in-out infinite;
    top: -165px;
    right: 36px;
    left: auto;
  }
}
.p-top-environment__content {
  position: relative;
  display: grid;
  grid-template-columns: 758px 1fr;
  gap: 42px;
}
.p-top-environment__media-list {
  position: relative;
  flex-shrink: 0;
}
.p-top-environment__track {
  position: sticky;
  top: 0;
  height: 100vh;
}
.p-top-environment__track .c-red-circle {
  --circle-width: 24px;
  --circle-anime: float-y-10 2.4s ease-in-out infinite;
  --media-shift-y: 0px;
  top: calc(50% + 267px + var(--media-shift-y));
  left: 226px;
}
.p-top-environment__track .c-green-circle {
  --circle-width: 24px;
  --circle-anime: float-y-10 2.5s ease-in-out infinite;
  --media-shift-y: 0px;
  top: calc(50% + 244px + var(--media-shift-y));
  left: 266px;
}
.p-top-environment__media {
  position: absolute;
  top: 0;
  left: 0;
  flex-shrink: 0;
  aspect-ratio: 758/446;
  margin: 0;
  overflow: hidden;
  border-radius: 40px;
  transform: translateY(0);
}
.p-top-environment__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-top-environment__body {
  position: relative;
  padding-top: 39px;
}
.p-top-environment__detail {
  display: flex;
  align-items: center;
}
.p-top-environment__detail:not(:first-child) {
  padding-top: 100vh;
}
.p-top-environment__heading {
  margin: 0 0 27px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: var(--green);
}
.p-top-environment__text {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}
.p-top-environment__arrow {
  display: block;
  padding-left: 23px;
  margin-top: 30px;
}
@media (width <= 768px) {
  .p-top-environment {
    padding: 100px 0;
  }
  .p-top-environment__title {
    margin-bottom: 42px;
  }
  .p-top-environment__lead {
    margin-bottom: 32px;
    font-size: 18px;
    text-align: left;
  }
  .p-top-environment__content {
    grid-template-columns: 1fr;
  }
  .p-top-environment__media-list {
    position: sticky;
    top: 20px;
    z-index: 2;
    aspect-ratio: 758/446;
    background: var(--pale-yellow);
  }
  .p-top-environment__media-list::before {
    position: absolute;
    top: -20px;
    left: 0;
    display: block;
    width: 100vw;
    height: 100%;
    content: "";
    background: var(--pale-yellow);
  }
  .p-top-environment__track {
    position: static;
    height: auto;
  }
  .p-top-environment__track .c-red-circle,
  .p-top-environment__track .c-green-circle {
    display: none;
  }
  .p-top-environment__body {
    padding-top: 0;
  }
  .p-top-environment__detail {
    height: auto;
  }
  .p-top-environment__detail:not(:first-child) {
    padding-top: 60px;
  }
  .p-top-environment__heading {
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 1.16;
  }
  .p-top-environment__arrow {
    padding: 0;
    margin-top: 20px;
    text-align: center;
  }
}

.p-top-activity {
  padding: 120px 0 90px;
  background: rgba(141, 176, 8, 0.1);
}
.p-top-activity__inner {
  position: relative;
  width: min(var(--container), 100% - 40px);
  margin-inline: auto;
}
.p-top-activity__title {
  margin-bottom: 60px;
}
.p-top-activity__card {
  position: relative;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 100px;
  align-items: start;
  padding: 58px 58px 58px 57px;
  background: var(--white);
  border-radius: 50px;
}
.p-top-activity__card--program .c-red-circle {
  --circle-width: 20px;
  --circle-anime: float-x-10 2.4s ease-in-out infinite;
  top: -70px;
  left: 86px;
}
@media (width <= 768px) {
  .p-top-activity__card--program .c-red-circle {
    top: -37px;
    right: 37px;
    left: auto;
  }
}
.p-top-activity__card--program .c-green-circle {
  --circle-width: 20px;
  --circle-anime: float-x-10 2.5s ease-in-out infinite;
  top: -62px;
  left: 128px;
}
@media (width <= 768px) {
  .p-top-activity__card--program .c-green-circle {
    top: -33px;
    right: 0;
    left: auto;
  }
}
.p-top-activity__card--learning .c-red-circle--01 {
  --circle-width: 30px;
  --circle-anime: float-y-10 2.4s ease-in-out infinite;
  top: 26px;
  right: 91px;
}
@media (width <= 768px) {
  .p-top-activity__card--learning .c-red-circle--01 {
    --circle-width: 20px;
    top: -7px;
    right: 75px;
    left: auto;
  }
}
.p-top-activity__card--learning .c-red-circle--02 {
  --circle-width: 20px;
  --circle-anime: float-x-10 2.4s ease-in-out infinite;
  right: 434px;
  bottom: -24px;
}
.p-top-activity__card--learning .c-green-circle--01 {
  --circle-width: 30px;
  --circle-anime: float-y-10 2.5s ease-in-out infinite;
  top: 15px;
  right: 48px;
}
@media (width <= 768px) {
  .p-top-activity__card--learning .c-green-circle--01 {
    --circle-width: 20px;
    top: -16px;
    right: 45px;
    left: auto;
  }
}
.p-top-activity__card--learning .c-green-circle--02 {
  --circle-width: 20px;
  --circle-anime: float-x-10 2.5s ease-in-out infinite;
  right: 398px;
  bottom: -30px;
}
.p-top-activity__card--experience .c-red-circle {
  --circle-width: 27px;
  --circle-anime: float-y-10 2.4s ease-in-out infinite;
  bottom: -38px;
  left: 373px;
}
@media (width <= 768px) {
  .p-top-activity__card--experience .c-red-circle {
    --circle-width: 20px;
    top: -1px;
    bottom: auto;
    left: 43px;
  }
}
.p-top-activity__card--experience .c-green-circle {
  --circle-width: 27px;
  --circle-anime: float-y-10 2.5s ease-in-out infinite;
  bottom: -23px;
  left: 411px;
}
@media (width <= 768px) {
  .p-top-activity__card--experience .c-green-circle {
    --circle-width: 20px;
    top: 5px;
    bottom: auto;
    left: 77px;
  }
}
.p-top-activity__card--tour .c-red-circle--01 {
  --circle-width: 33px;
  --circle-anime: float-x-10 2.4s ease-in-out infinite;
  top: 366px;
  left: 67px;
}
@media (width <= 768px) {
  .p-top-activity__card--tour .c-red-circle--01 {
    --circle-width: 22px;
    top: 2px;
    right: 66px;
    left: auto;
  }
}
.p-top-activity__card--tour .c-red-circle--02 {
  --circle-width: 20px;
  --circle-anime: float-x-10 2.4s ease-in-out infinite;
  bottom: 147px;
  left: 268px;
}
@media (width <= 768px) {
  .p-top-activity__card--tour .c-red-circle--02 {
    bottom: -90px;
    left: 188px;
  }
}
.p-top-activity__card--tour .c-green-circle--01 {
  --circle-width: 33px;
  --circle-anime: float-x-10 2.5s ease-in-out infinite;
  top: 370px;
  left: 122px;
}
@media (width <= 768px) {
  .p-top-activity__card--tour .c-green-circle--01 {
    --circle-width: 22px;
    top: -10px;
    right: 36px;
    left: auto;
  }
}
.p-top-activity__card--tour .c-green-circle--02 {
  --circle-width: 20px;
  --circle-anime: float-x-10 2.5s ease-in-out infinite;
  bottom: 158px;
  left: 300px;
}
@media (width <= 768px) {
  .p-top-activity__card--tour .c-green-circle--02 {
    bottom: -92px;
    left: 227px;
  }
}
.p-top-activity__card + .p-top-activity__card {
  margin-top: 58px;
}
.p-top-activity__card + .p-top-activity__card::before {
  position: absolute;
  top: -104px;
  left: 216px;
  width: 16px;
  height: 150px;
  content: "";
  background: url("../img/top/activity_deco_pc.svg") no-repeat center/contain;
}
.p-top-activity__heading {
  margin: 0 0 20px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--green);
}
.p-top-activity__heading::after {
  display: block;
  width: 40px;
  height: 4px;
  margin-top: 20px;
  content: "";
  background: var(--green);
}
.p-top-activity__lead {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}
.p-top-activity__table {
  width: 100%;
  border-spacing: 0 10px;
  border-collapse: separate;
}
.p-top-activity__table th, .p-top-activity__table td {
  height: 50px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  border: 1px solid var(--green);
}
.p-top-activity__table th {
  width: 193px;
  color: var(--green);
  white-space: nowrap;
  background: rgba(141, 176, 8, 0.2);
  border-right: 0;
  border-radius: 25px 0 0 25px;
}
.p-top-activity__table td {
  border-left: 0;
  border-radius: 0 25px 25px 0;
}
.p-top-activity__points {
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: point;
}
.p-top-activity__point {
  position: relative;
  display: flex;
  gap: 17px;
  align-items: center;
  padding: 20px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  counter-increment: point;
}
.p-top-activity__point:first-child {
  padding-top: 0;
}
.p-top-activity__point + .p-top-activity__point {
  border-top: 1px dashed rgba(0, 0, 0, 0.2);
}
.p-top-activity__point::before {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  align-self: flex-start;
  justify-content: center;
  width: 42px;
  aspect-ratio: 1;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  content: counter(point);
  background: var(--green);
  border-radius: 50%;
}
.p-top-activity__tour-lead {
  margin: 2px 0 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}
.p-top-activity__tour-title {
  margin: 0 0 22px;
  font-size: 20px;
  font-weight: 700;
  line-height: 2.1;
  color: var(--green);
}
.p-top-activity__steps {
  display: grid;
  gap: 33px;
}
.p-top-activity__step {
  display: grid;
  grid-template-columns: 158px 1fr;
  gap: 41px;
  align-items: stretch;
}
.p-top-activity__step-label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 12px;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  color: var(--white);
  text-align: center;
  background: var(--green);
  border-radius: 10px;
}
.p-top-activity__step-items {
  padding: 0;
  margin: 0;
  list-style: none;
}
.p-top-activity__step-item {
  position: relative;
  padding-left: 18px;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}
.p-top-activity__step-item::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--green);
  content: "●";
}
.p-top-activity__step-items a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (width <= 768px) {
  .p-top-activity__title {
    margin-bottom: 34px;
  }
  .p-top-activity__card {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 50px 20px 70px;
    border-radius: 24px;
  }
  .p-top-activity__card + .p-top-activity__card {
    margin-top: 50px;
  }
  .p-top-activity__card + .p-top-activity__card::before {
    position: absolute;
    top: 30px;
    left: calc(50% - 8px);
    width: 16px;
    height: 110px;
    content: "";
    background: url("../img/top/activity_deco_sp.svg") no-repeat center/contain;
    transform: translateY(-100%);
  }
  .p-top-activity__heading {
    font-size: 20px;
    line-height: 2.1;
  }
  .p-top-activity__program {
    position: relative;
    min-width: 0;
    max-width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .p-top-activity__program .scroll-hint-text {
    display: none;
  }
  .p-top-activity__program .scroll-hint-icon-wrap {
    top: 50%;
    left: 50%;
    width: 96px;
    height: 96px;
    padding: 0;
    transform: translate(-50%, -50%);
  }
  .p-top-activity__program .scroll-hint-icon {
    top: 0;
    left: 0;
    width: 96px;
    height: 96px;
    padding: 0;
    margin: 0;
    background: url("../img/common/scroll.svg") no-repeat center/contain;
  }
  .p-top-activity__program .scroll-hint-icon::before, .p-top-activity__program .scroll-hint-icon::after {
    content: none;
  }
  .p-top-activity__card--program .p-top-activity__table {
    width: max-content;
    min-width: 100%;
    margin: auto;
  }
  .p-top-activity__card--program .p-top-activity__table th,
  .p-top-activity__card--program .p-top-activity__table td {
    white-space: nowrap;
  }
  .p-top-activity__tour-lead {
    margin: 0 0 50px;
  }
  .p-top-activity__steps {
    gap: 50px;
  }
  .p-top-activity__step {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .p-top-activity__step-label {
    min-height: 0;
    padding: 5px;
  }
}

.p-top-fee {
  padding: 120px 0;
}
.p-top-fee__inner {
  position: relative;
  width: min(var(--container), 100% - 40px);
  margin-inline: auto;
}
.p-top-fee__inner .c-red-circle--01 {
  --circle-width: 30px;
  --circle-anime: float-y-10 2.4s ease-in-out infinite;
  top: 0;
  left: 238px;
}
.p-top-fee__inner .c-red-circle--02 {
  --circle-width: 20px;
  --circle-anime: float-x-10 2.4s ease-in-out infinite;
  top: 29px;
  right: 69px;
}
@media (width <= 768px) {
  .p-top-fee__inner .c-red-circle {
    display: none;
  }
}
.p-top-fee__inner .c-green-circle--01 {
  --circle-width: 30px;
  --circle-anime: float-y-10 2.5s ease-in-out infinite;
  top: -12px;
  left: 291px;
}
.p-top-fee__inner .c-green-circle--02 {
  --circle-width: 20px;
  --circle-anime: float-x-10 2.5s ease-in-out infinite;
  top: 37px;
  right: 27px;
}
@media (width <= 768px) {
  .p-top-fee__inner .c-green-circle {
    display: none;
  }
}
.p-top-fee__title {
  margin-bottom: 60px;
}
.p-top-fee__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  padding: 0;
  margin: 0;
}
.p-top-fee__item {
  margin: 0;
}
.p-top-fee__label, .p-top-fee__price {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  margin: 0;
  font-weight: 700;
  line-height: 1.4;
}
.p-top-fee__label {
  padding: 10px 12px;
  font-size: 24px;
  color: var(--white);
  text-align: center;
  background: var(--green);
  border-radius: 10px 10px 0 0;
}
.p-top-fee__price {
  gap: 2px;
  padding: 10px 14px;
  font-size: 20px;
  background: var(--white);
  border: 1px solid var(--green);
  border-radius: 0 0 10px 10px;
}
.p-top-fee__price span {
  font-size: 24px;
  line-height: 1.33;
}
@media (width <= 768px) {
  .p-top-fee {
    padding: 100px 0;
  }
  .p-top-fee__title {
    margin-bottom: 50px;
  }
  .p-top-fee__list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.p-top-collaboration {
  padding: 0 0 84px;
}
.p-top-collaboration__inner {
  width: min(var(--container), 100% - 40px);
  margin-inline: auto;
}
.p-top-collaboration__title {
  margin-bottom: 60px;
}
.p-top-collaboration__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
}
.p-top-collaboration__card {
  position: relative;
  padding: 37px 56px 48px;
  background: rgba(141, 176, 8, 0.1);
  border-radius: 30px;
}
.p-top-collaboration__card--school .c-red-circle {
  --circle-width: 24px;
  --circle-anime: float-x-10 2.4s ease-in-out infinite;
  bottom: 43px;
  left: 50px;
}
@media (width <= 768px) {
  .p-top-collaboration__card--school .c-red-circle {
    --circle-width: 18px;
    top: -152px;
    bottom: auto;
    left: 24px;
  }
}
.p-top-collaboration__card--school .c-green-circle {
  --circle-width: 24px;
  --circle-anime: float-x-10 2.5s ease-in-out infinite;
  bottom: 38px;
  left: 84px;
}
@media (width <= 768px) {
  .p-top-collaboration__card--school .c-green-circle {
    --circle-width: 18px;
    top: -148px;
    bottom: auto;
    left: 50px;
  }
}
.p-top-collaboration__card--parent .c-red-circle {
  --circle-width: 22px;
  --circle-anime: float-y-10 2.4s ease-in-out infinite;
  top: -30px;
  left: 125px;
}
@media (width <= 768px) {
  .p-top-collaboration__card--parent .c-red-circle {
    --circle-width: 24px;
    inset: auto 95px -40px auto;
  }
}
.p-top-collaboration__card--parent .c-green-circle {
  --circle-width: 22px;
  --circle-anime: float-y-10 2.5s ease-in-out infinite;
  top: -40px;
  left: 155px;
}
@media (width <= 768px) {
  .p-top-collaboration__card--parent .c-green-circle {
    --circle-width: 24px;
    inset: auto 60px -45px auto;
  }
}
.p-top-collaboration__heading {
  margin: 0 0 11px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--green);
  text-align: center;
}
.p-top-collaboration__text {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}
@media (width <= 768px) {
  .p-top-collaboration {
    padding: 0 0 100px;
  }
  .p-top-collaboration__title {
    margin-bottom: 50px;
  }
  .p-top-collaboration__cards {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .p-top-collaboration__card {
    padding: 37px 35px;
  }
}

.p-top-weekly {
  position: relative;
  z-index: 0;
  padding: 124px 0 230px;
  background: var(--yellow);
}

.p-top-weekly__inner {
  position: relative;
  width: min(var(--container), 100% - 40px);
  margin-inline: auto;
}
.p-top-weekly__inner .c-red-circle--01 {
  --circle-width: 30px;
  --circle-anime: float-y-10 2.4s ease-in-out infinite;
  top: -33px;
  left: 201px;
}
@media (width <= 768px) {
  .p-top-weekly__inner .c-red-circle--01 {
    --circle-width: 24px;
    top: 541px;
    left: 1px;
  }
}
.p-top-weekly__inner .c-red-circle--02 {
  --circle-width: 24px;
  --circle-anime: float-x-10 2.4s ease-in-out infinite;
  right: 398px;
  bottom: -24px;
}
@media (width <= 768px) {
  .p-top-weekly__inner .c-red-circle--02 {
    --circle-width: 24px;
    right: 213px;
    bottom: -214px;
  }
}
.p-top-weekly__inner .c-green-circle--01 {
  --circle-width: 30px;
  --circle-anime: float-y-10 2.5s ease-in-out infinite;
  top: 0;
  left: 244px;
}
@media (width <= 768px) {
  .p-top-weekly__inner .c-green-circle--01 {
    --circle-width: 24px;
    top: 571px;
    left: 21px;
  }
}
.p-top-weekly__inner .c-green-circle--02 {
  --circle-width: 24px;
  --circle-anime: float-x-10 2.5s ease-in-out infinite;
  right: 361px;
  bottom: -30px;
}
@media (width <= 768px) {
  .p-top-weekly__inner .c-green-circle--02 {
    --circle-width: 24px;
    right: 181px;
    bottom: -220px;
  }
}

.p-top-weekly__title {
  margin-bottom: 42px;
}

.p-top-weekly__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
}

.p-top-weekly__card {
  position: relative;
  min-height: 385px;
  padding: 44px 38px 130px;
  margin: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% 100%;
}

.p-top-weekly__card--1 {
  background-image: url("../img/top/weekly01_bubble.webp");
}

.p-top-weekly__card--2 {
  background-image: url("../img/top/weekly02_bubble.webp");
}

.p-top-weekly__card--3 {
  background-image: url("../img/top/weekly03_bubble.webp");
}

.p-top-weekly__text {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

.p-top-weekly__person {
  position: absolute;
  right: 28px;
  bottom: -117px;
  max-width: none;
  height: auto;
}

.p-top-weekly__card--1 .p-top-weekly__person {
  right: 37px;
}

.p-top-weekly__card--2 .p-top-weekly__person {
  bottom: -115px;
  left: 74px;
}

.p-top-weekly__card--3 .p-top-weekly__person {
  right: 46px;
  bottom: -135px;
}

@media (width <= 768px) {
  .p-top-weekly {
    padding: 100px 0 240px;
  }
  .p-top-weekly__title {
    align-items: flex-end;
    margin-bottom: 30px;
  }
  .p-top-weekly__cards {
    grid-template-columns: 1fr;
    gap: 200px;
    width: 348px;
    max-width: 100%;
    margin-inline: auto;
  }
  .p-top-weekly__card {
    min-height: auto;
    padding: 40px 50px 65px;
  }
  .p-top-weekly__text {
    font-size: 15px;
    line-height: 1.85;
  }
  .p-top-weekly__card--1 .p-top-weekly__person {
    right: 21px;
    bottom: -151px;
  }
  .p-top-weekly__card--2 .p-top-weekly__person {
    bottom: -149px;
  }
  .p-top-weekly__card--3 .p-top-weekly__person {
    right: 31px;
    bottom: -171px;
  }
}
.p-top-faq {
  padding: 104px 0 96px;
}

.p-top-faq__inner {
  width: min(958px, 100% - 40px);
  margin-inline: auto;
}

.p-top-faq__title {
  margin-bottom: 72px;
}

.p-top-faq__list {
  position: relative;
  display: grid;
  gap: 16px;
}
.p-top-faq__list .c-red-circle--01 {
  --circle-width: 24px;
  --circle-anime: float-x-10 2.4s ease-in-out infinite;
  top: -105px;
  right: 2px;
}
@media (width <= 768px) {
  .p-top-faq__list .c-red-circle--01 {
    display: none;
  }
}
.p-top-faq__list .c-red-circle--02 {
  --circle-width: 20px;
  --circle-anime: float-x-10 2.4s ease-in-out infinite;
  top: 220px;
  left: -70px;
}
@media (width <= 768px) {
  .p-top-faq__list .c-red-circle--02 {
    display: none;
  }
}
.p-top-faq__list .c-red-circle--03 {
  --circle-width: 30px;
  --circle-anime: float-y-10 2.4s ease-in-out infinite;
  top: 413px;
  right: -57px;
}
@media (width <= 768px) {
  .p-top-faq__list .c-red-circle--03 {
    display: none;
  }
}
.p-top-faq__list .c-red-circle--04 {
  --circle-width: 24px;
  --circle-anime: float-y-10 2.4s ease-in-out infinite;
  bottom: -65px;
  left: -94px;
}
@media (width <= 768px) {
  .p-top-faq__list .c-red-circle--04 {
    --circle-width: 18px;
    right: 54px;
    bottom: -77px;
    left: auto;
  }
}
.p-top-faq__list .c-green-circle--01 {
  --circle-width: 24px;
  --circle-anime: float-x-10 2.5s ease-in-out infinite;
  top: -100px;
  right: -32px;
}
@media (width <= 768px) {
  .p-top-faq__list .c-green-circle--01 {
    display: none;
  }
}
.p-top-faq__list .c-green-circle--02 {
  --circle-width: 20px;
  --circle-anime: float-x-10 2.5s ease-in-out infinite;
  top: 217px;
  left: -105px;
}
@media (width <= 768px) {
  .p-top-faq__list .c-green-circle--02 {
    display: none;
  }
}
.p-top-faq__list .c-green-circle--03 {
  --circle-width: 30px;
  --circle-anime: float-y-10 2.5s ease-in-out infinite;
  top: 443px;
  right: -100px;
}
@media (width <= 768px) {
  .p-top-faq__list .c-green-circle--03 {
    display: none;
  }
}
.p-top-faq__list .c-green-circle--04 {
  --circle-width: 24px;
  --circle-anime: float-y-10 2.5s ease-in-out infinite;
  bottom: -53px;
  left: -60px;
}
@media (width <= 768px) {
  .p-top-faq__list .c-green-circle--04 {
    --circle-width: 18px;
    right: 28px;
    bottom: -80px;
    left: auto;
  }
}

.p-top-faq__item {
  overflow: hidden;
  background: var(--yellow);
  border: 3px solid var(--green);
  border-radius: 20px;
}

.p-top-faq__item > summary {
  list-style: none;
}

.p-top-faq__item > summary::-webkit-details-marker {
  display: none;
}

.p-top-faq__question {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr 40px;
  gap: 20px;
  align-items: center;
  padding: 15px 20px 14px;
  cursor: pointer;
}

.p-top-faq__question::after {
  position: absolute;
  right: 20px;
  bottom: 0;
  left: 20px;
  height: 1px;
  content: "";
  background: rgba(141, 176, 8, 0.6);
  transition: opacity 0.25s ease;
}

.p-top-faq__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
}

.p-top-faq__question-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--green);
}

.p-top-faq__toggle {
  position: relative;
  width: 30px;
  height: 17px;
  margin-left: auto;
  background: url("../img/common/toggle_arrow.svg") no-repeat center/contain;
  transition: transform 0.25s ease;
}

.p-top-faq__answer {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  align-items: start;
  height: 0;
  padding: 0 20px;
  overflow: hidden;
  opacity: 0;
  transition: height 0.35s ease, padding 0.35s ease, opacity 0.2s ease;
}

.p-top-faq__item[open] .p-top-faq__answer {
  padding: 16px 20px 20px;
  opacity: 1;
}

.p-top-faq__item.is-closing .p-top-faq__answer {
  padding: 0 20px;
  opacity: 0;
}

.p-top-faq__answer-text {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

.p-top-faq__item:not([open]) .p-top-faq__question::after,
.p-top-faq__item.is-closing .p-top-faq__question::after {
  opacity: 0;
}

.p-top-faq__item:not([open]) .p-top-faq__toggle,
.p-top-faq__item.is-closing .p-top-faq__toggle {
  transform: rotate(180deg);
}

@media (width <= 768px) {
  .p-top-faq {
    padding: 100px 0;
  }
  .p-top-faq__title {
    margin-bottom: 40px;
  }
  .p-top-faq__question {
    grid-template-columns: 40px 1fr 28px;
    gap: 12px;
    padding: 15px 20px 17px;
  }
  .p-top-faq__badge {
    align-self: flex-start;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .p-top-faq__question::after {
    right: 12px;
    left: 12px;
  }
  .p-top-faq__answer {
    grid-template-columns: 40px 1fr;
    gap: 20px;
    padding-inline: 12px;
  }
  .p-top-faq__item[open] .p-top-faq__answer {
    padding: 18px 10px 30px 20px;
  }
  .p-top-faq__item.is-closing .p-top-faq__answer {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.p-top-access__inner {
  position: relative;
  width: min(var(--container), 100% - 40px);
  padding: 145px 0 34px;
  margin-inline: auto;
}
.p-top-access__inner .c-red-circle {
  --circle-width: 30px;
  --circle-anime: float-y-10 2.4s ease-in-out infinite;
  top: 80px;
  right: 293px;
}
@media (width <= 768px) {
  .p-top-access__inner .c-red-circle {
    --circle-width: 20px;
    top: 60px;
    right: auto;
    left: 10px;
  }
}
.p-top-access__inner .c-green-circle {
  --circle-width: 30px;
  --circle-anime: float-y-10 2.5s ease-in-out infinite;
  top: 38px;
  right: 339px;
}
@media (width <= 768px) {
  .p-top-access__inner .c-green-circle {
    --circle-width: 20px;
    right: auto;
    left: 0;
  }
}
.p-top-access__title {
  margin-bottom: 30px;
}
.p-top-access__lead {
  max-width: 695px;
  margin: 0;
  margin-inline: auto;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  text-align: center;
}
.p-top-access__map {
  margin: 0;
  overflow: hidden;
}
.p-top-access__map iframe {
  display: block;
  width: 100%;
  height: 358px;
  border: 0;
}

@media (width <= 768px) {
  .p-top-access__inner {
    width: min(var(--container), 100% - 40px);
    padding: 100px 0 50px;
  }
  .p-top-access__title {
    margin-bottom: 48px;
  }
  .p-top-access__lead {
    font-size: 16px;
    line-height: 1.9;
  }
  .p-top-access__map iframe {
    height: 283px;
  }
}
.p-footer {
  background: var(--white);
}
.p-footer__inner {
  width: min(var(--container), 100% - 40px);
  padding: 58px 0 74px;
  margin-inline: auto;
  text-align: center;
}
.p-footer__logo {
  display: inline-block;
  width: 243px;
  max-width: 100%;
  margin-bottom: 22px;
}
.p-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.p-footer__nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}
.p-footer__download {
  margin: 0 0 34px;
}
.p-footer__download a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 188px;
  min-height: 40px;
  padding: 4px 22px;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  color: var(--white);
  background: var(--green);
  border-radius: 9999px;
  transition: background-color 0.3s;
}
.p-footer__download--disabled a {
  pointer-events: none;
}
.p-footer__address {
  margin: 0 0 22px;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 2;
}
.p-footer__address a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.p-footer__copy {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

@media (any-hover: hover) {
  .p-footer__download a:hover {
    background: var(--green-hover);
  }
}
@media (width <= 768px) {
  .p-footer__inner {
    width: min(var(--container), 100% - 24px);
    padding: 60px 0;
  }
  .p-footer__logo {
    margin-bottom: 20px;
  }
  .p-footer__nav {
    flex-wrap: wrap;
    gap: 10px 20px;
    width: calc(100% - 20px);
    margin-inline: auto;
    margin-bottom: 40px;
  }
  .p-footer__download {
    margin-bottom: 40px;
  }
  .p-footer__address {
    margin-bottom: 40px;
  }
  .p-footer__copy {
    line-height: 1.5;
  }
}
@media (width <= 768px) {
  .u-pc {
    display: none !important;
  }
}

@media (width >= 769px) {
  .u-sp {
    display: none !important;
  }
}