@charset "UTF-8";
/* 濃いブルー */
/* 薄い緑 */
/* 薄い青 */
/* フッターの青 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
}
body.is-locked {
  overflow: hidden;
}

.header {
  background: rgba(255, 255, 255, 0.7);
  padding: 10px 0;
  border-bottom: 1px solid rgba(238, 238, 238, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
@media (max-width: 768px) {
  .header {
    background: rgb(255, 255, 255);
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .header__inner {
    padding-right: 80px;
  }
}
.header__logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.header__logo-icon {
  width: 50px;
  height: auto;
}
.header__logo-text {
  height: 50px;
  width: auto;
}
@media (max-width: 768px) {
  .header__contact {
    display: none;
  }
}
.header__tel {
  font-size: 1.6rem;
  font-weight: bold;
  color: #18438e;
  text-decoration: none;
}

.footer {
  background: #3776e3;
  color: #fff;
  padding: 4rem 0;
}
.footer__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    gap: 2rem;
    text-align: left;
  }
}
.footer__logo a {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}
.footer__logo-icon {
  width: 100px;
  height: auto;
}
.footer__logo-text {
  height: 100px;
  width: auto;
}
.footer__info {
  font-size: 0.9rem;
  line-height: 1.8;
}
.footer__desc {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .nav__wrapper {
    position: fixed;
    top: 71px;
    left: 0;
    width: 100%;
    height: calc(100vh - 71px);
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .nav__wrapper.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.nav__list {
  display: flex;
  align-items: center;
  list-style: none;
}
@media (max-width: 768px) {
  .nav__list {
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    align-items: stretch;
  }
}
.nav__item {
  margin: 0;
  position: relative;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .nav__item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background-color: #ccc;
  }
}
@media (max-width: 768px) {
  .nav__item {
    padding: 0;
    border-bottom: 1px solid #eee;
  }
  .nav__item--accent {
    background-color: #18438e;
    border-bottom: none;
  }
  .nav__item--accent .nav__link {
    color: #fff;
    justify-content: center;
    padding: 1.5rem;
  }
  .nav__item--accent .nav__link::after {
    border-color: #fff;
  }
}
.nav__link {
  color: #18438e;
  font-weight: bold;
  font-size: 0.85rem;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media (max-width: 768px) {
  .nav__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
  }
  .nav__link::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #18438e;
    border-right: 2px solid #18438e;
    transform: rotate(45deg);
  }
}
.nav__link:hover {
  opacity: 0.7;
}
.nav__toggle {
  display: none;
}
@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 60px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: transparent;
    border: none;
    color: #18438e;
    cursor: pointer;
    z-index: 2000;
  }
}
.nav__toggle-icon {
  position: relative;
  width: 24px;
  height: 18px;
}
.nav__toggle-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #18438e;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav__toggle-line:nth-child(1) {
  top: 0;
}
.nav__toggle-line:nth-child(2) {
  top: 8px;
}
.nav__toggle-line:nth-child(3) {
  bottom: 0;
}
.nav__toggle-text {
  font-size: 0.65rem;
  font-weight: bold;
  line-height: 1;
}
.nav__toggle-text::after {
  content: "MENU";
}
.nav__toggle.is-active .nav__toggle-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav__toggle.is-active .nav__toggle-line:nth-child(2) {
  opacity: 0;
}
.nav__toggle.is-active .nav__toggle-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.nav__toggle.is-active .nav__toggle-text::after {
  content: "CLOSE";
}

.button {
  display: inline-block;
  padding: 0.6em 1.5em;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s;
}
.button--primary {
  background: #18438e;
  color: #fff;
}
.button--primary:hover {
  background: rgb(21.6, 60.3, 127.8);
}

.hero {
  height: 100vh;
  width: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url("../img/top/img1.webp") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__inner {
  text-align: center;
  padding-top: 60px;
}
.hero__logo {
  width: 350px;
  max-width: 80%;
  height: auto;
  animation: fadeIn 1.5s ease-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.news {
  background: #e8f7d6;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .news {
    padding: 3rem 0;
  }
}
.news::after {
  content: "Forest\aKids Club";
  white-space: pre;
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10rem;
  font-family: Arial, sans-serif;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.6);
  line-height: 0.9;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 768px) {
  .news::after {
    font-size: 5rem;
    right: 5%;
  }
}
.news__inner {
  max-width: 1000px;
  margin: 0 0;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .news__inner {
    flex-direction: column;
    gap: 3rem;
  }
}
.news__header {
  flex-basis: 30%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 2rem;
}
@media (max-width: 768px) {
  .news__header {
    flex-basis: auto;
    align-items: flex-start;
    padding-right: 0;
  }
}
.news__title {
  font-size: 5rem;
  color: #1121c2;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1rem;
  font-family: Arial, sans-serif;
  letter-spacing: -0.05em;
}
@media (max-width: 768px) {
  .news__title {
    font-size: 3.5rem;
  }
}
.news__subtitle {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 2rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .news__subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}
.news__header-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}
@media (max-width: 768px) {
  .news__header-inner {
    align-items: flex-start;
  }
}
.news__more {
  text-decoration: none;
  color: #333;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: bold;
  transition: opacity 0.3s;
}
.news__more:hover {
  opacity: 0.7;
}
.news__more span {
  background: #1121c2;
  color: #fff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  padding-left: 2px;
}
.news__content {
  flex-basis: 65%;
  padding-top: 1rem;
}
.news__list {
  list-style: none;
}
.news__item {
  margin-bottom: 2rem;
}
.news__item:last-child {
  margin-bottom: 0;
}
.news__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.news__label {
  border: 1px solid #1121c2;
  color: #1121c2;
  border-radius: 20px;
  padding: 0.1rem 1rem;
  font-size: 0.75rem;
}
.news__date {
  color: #999;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.news__text {
  width: 100%;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

.point {
  padding: 4rem 0;
  background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.664)), url("../img/top/img2.webp") center/cover no-repeat;
}
@media (max-width: 768px) {
  .point {
    padding: 2rem 0;
  }
}
.point__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}
.point__title {
  text-align: center;
  font-size: 4rem;
  color: #18438e;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .point__title {
    font-size: 2.5rem;
  }
}
.point__lead {
  text-align: center;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .point__lead {
    font-size: 0.9rem;
    text-align: left;
  }
}
.point__cards {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .point__cards {
    flex-direction: column;
  }
}
.point__card {
  flex: 1;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  animation: floating 3s ease-in-out infinite;
}
.point__card:nth-child(1) {
  animation-delay: 0s;
}
.point__card:nth-child(2) {
  animation-delay: 0.5s;
}
.point__card:nth-child(3) {
  animation-delay: 1s;
}
.point__card--blue {
  background: #bcedff;
}
.point__card--green {
  background: #ccffc0;
}
.point__card--yellow {
  background: #ffffa5;
}
.point__card-badge {
  background: #2a3a50;
  color: #fff;
  display: inline-block;
  padding: 0.2rem 2rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.point__card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
}
.point__card-text {
  font-size: 0.9rem;
  text-align: left;
  line-height: 1.6;
}
.point__info {
  display: flex;
  gap: 2rem;
  justify-content: center;
}
@media (max-width: 768px) {
  .point__info {
    flex-direction: column;
  }
}
.point__info-box {
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 576px) {
  .point__info-box {
    gap: 1rem;
    padding: 1.5rem 1rem;
    align-items: center;
    text-align: center;
  }
}
.point__info-box--time {
  align-items: flex-start;
}
@media (max-width: 576px) {
  .point__info-box--time {
    align-items: center;
  }
}
.point__info-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto;
}
.point__info-label {
  background: #2a3a50;
  color: #fff;
  padding: 0.2rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  margin: auto;
}
.point__info-val {
  font-size: 1.2rem;
  font-weight: bold;
}
.point__info-time {
  font-size: 0.95rem;
  line-height: 1.6;
}
.point__info-time p {
  margin-bottom: 0.5rem;
}
.point__info-time .point__info-note {
  font-size: 0.8rem;
  color: #666;
  margin-top: 1rem;
}

@keyframes floating {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
/* Course Intro (円の並び部分) */
.course-intro {
  text-align: center;
  padding: 4rem 1rem;
}
@media (max-width: 768px) {
  .course-intro {
    padding: 1.5rem 1rem;
  }
}
.course-intro__title {
  color: #18438e;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.course-intro__subtitle {
  color: #18438e;
  font-weight: bold;
  margin-bottom: 2rem;
}
.course-intro__circles {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .course-intro__circles {
    display: grid;
    grid-template-columns: repeat(2, 100px);
    justify-content: center;
    gap: 1.5rem;
  }
}
.course-intro__circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px dotted #4fb3f6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
}
.course-intro__circle span {
  font-size: 0.7rem;
}

/* Course Details (詳細カード部分) */
.course {
  background: #d0e7f9;
  padding: 2rem 0;
  overflow-x: hidden;
}
.course__section-title {
  text-align: center;
  color: #000000;
  margin-bottom: 2rem;
  font-size: 3rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .course__section-title {
    font-size: 1rem;
  }
}
.course__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}
.course__section-title {
  text-align: center;
  color: #000000;
  margin-bottom: 2rem;
  font-size: 3rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .course__section-title {
    font-size: 1.8rem;
  }
}
.course__card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  display: flex;
  gap: 2rem;
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.course__card:nth-of-type(odd) {
  transform: translateX(-50px);
}
.course__card:nth-of-type(even) {
  transform: translateX(50px);
}
.course__card.is-active {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 768px) {
  .course__card {
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 0;
  }
  .course__card:nth-of-type(odd), .course__card:nth-of-type(even) {
    transform: translateY(30px);
  }
  .course__card.is-active {
    transform: translateY(0);
  }
}
.course__card-left {
  flex: 1;
}
.course__card-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.course__card-right--image-only {
  justify-content: center;
}
@media (max-width: 768px) {
  .course__card-right--image-only {
    display: none;
  }
}
.course__card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.course__badge {
  border: 1px dotted #4fb3f6;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1em;
  font-weight: bold;
  line-height: 1.2;
  flex-shrink: 0;
}
.course__badge small {
  font-size: 0.55rem;
  transform: scale(0.9);
}
.course__title {
  color: #fff;
  padding: 0.4rem 2rem;
  border-radius: 20px;
  font-size: 1.1rem;
  flex-grow: 1;
  text-align: center;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .course__title  {
    font-size: 0.9rem;
  }
}
.course__title--yellow {
  background: #f5cb88;
}
.course__title--orange {
  background: #f59d73;
}
.course__title--green {
  background: #17a247;
}
.course__title--purple {
  background: #5a5099;
}
.course__detail {
  margin-bottom: 1.5rem;
  padding-left: 1rem;
}
@media (max-width: 576px) {
  .course__detail {
    padding-left: 0;
  }
}
.course__detail-title {
  background: #1f64b0;
  color: #fff;
  display: inline-block;
  padding: 0.2rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.course__detail-text {
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: bold;
  padding-left: 1rem;
}
.course__detail-text small {
  font-weight: normal;
  font-size: 0.8rem;
  color: #666;
}
@media (max-width: 768px) {
  .course__detail-text {
    padding-left: 0;
  }
}
.course__details-row {
  display: flex;
  gap: 2rem;
  text-align: center;
}
@media (max-width: 768px) {
  .course__details-row {
    flex-direction: column;
    gap: 0;
    text-align: left;
  }
}
.course__img {
  width: 100%;
  border-radius: 10px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .course__img {
    display: none;
  }
}
.course__price-box {
  padding-left: 1rem;
}
@media (max-width: 768px) {
  .course__price-box {
    padding-left: 0;
  }
}
.course__price-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.course__price-title {
  background: #1f64b0;
  color: #fff;
  display: inline-block;
  padding: 0.2rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  margin: 0;
}
.course__price-text {
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: bold;
}
.course__price-body {
  padding-left: 6rem;
  text-align: left;
}
@media (max-width: 768px) {
  .course__price-body {
    padding-left: 0;
    margin-top: 1rem;
    text-align: left;
  }
}
.course__price-sub {
  font-size: 0.85rem;
  font-weight: bold;
}
.course__contact-btn {
  text-align: center;
  margin-top: 3rem;
}
.course__contact-btn a {
  display: inline-block;
  background: #fff;
  color: #18438e;
  text-decoration: none;
  font-weight: bold;
  padding: 1rem 3rem;
  border-radius: 30px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  font-size: 1.1rem;
  transition: opacity 0.3s;
}
.course__contact-btn a:hover {
  opacity: 0.8;
}

.access {
  background: #a1c4f5;
  padding: 2rem 0;
}
.access__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}
.access__title {
  color: #18438e;
  font-size: 3rem;
  margin-bottom: 2rem;
  font-weight: bold;
  font-family: Arial, sans-serif;
}
@media (max-width: 768px) {
  .access__title {
    font-size: 2rem;
  }
}
.access__map {
  width: 100%;
  aspect-ratio: 16/7;
  max-height: 500px;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.access__map iframe {
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 768px) {
  .access__map {
    aspect-ratio: 4/3;
  }
}/*# sourceMappingURL=style.css.map */

/* =========================================
   お知らせ一覧ページ用追加スタイル
========================================= */
.news--archive {
  padding-top: 120px;
}
.news--archive::after {
  top: 300px;
}

/* ページネーション */
.news__pagination {
  margin-top: 4rem;
  text-align: center;
}
.news__pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
}
.news__pagination .page-numbers {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: #18438e;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
  border: 1px solid #18438e;
}
.news__pagination .page-numbers:hover,
.news__pagination .page-numbers.current {
  background: #18438e;
  color: #fff;
}
.news__pagination .page-numbers.next,
.news__pagination .page-numbers.prev {
  width: auto;
  border-radius: 20px;
  padding: 0 1.5rem;
}

/* =========================================
   個別記事ページ用追加スタイル
========================================= */
.single-news {
  padding: 120px 1rem 6rem;
  background-color: #f5f5f5;
}
.single-news__inner {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 3rem 4rem;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .single-news__inner {
    padding: 2rem 1.5rem;
  }
}
.single-news__header {
  margin-bottom: 2rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 1.5rem;
}
.single-news__title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .single-news__title {
    font-size: 1.4rem;
  }
}
.single-news__content {
  line-height: 1.8;
  color: #333;
}
.single-news__content h2 {
  font-size: 1.4rem;
  border-bottom: 2px solid #18438e;
  padding-bottom: 0.5rem;
  margin: 2rem 0 1rem;
}
.single-news__content h3 {
  font-size: 1.2rem;
  margin: 1.5rem 0 1rem;
}
.single-news__content p {
  margin-bottom: 1.5rem;
}
.single-news__content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.single-news__footer {
  margin-top: 4rem;
  text-align: center;
}

/* =========================================
   お知らせ一覧ページ用追加スタイル
========================================= */
.news--archive {
  padding-top: 120px;
  /* 画面の高さ(100vh)から、フッターの高さ(約250px)を引く */
  min-height: calc(100vh - 250px); 
}

/* スマホ表示のときはフッターが高くなるため、引く数値を大きくする */
@media (max-width: 768px) {
  .news--archive {
    min-height: calc(100vh - 400px);
  }
}

.news--archive::after {
  top: 300px;
}