@charset "UTF-8";body {
  font-family: Inter, "Noto Sans JP", sans-serif;
  line-height: 1.8;
  margin: 0;
}

.lower-page {
  padding-bottom: 80px;
  width: 100%;
}

@media screen and (width >= 900px) {
  .lower-page {
    padding-bottom: 128px;
  }
}
.main-visual {
  padding: 0 2%;
  position: relative;
  width: 100%;
}

.main-visual__badge {
  align-items: center;
  background-color: #ffffff;
  border-top-left-radius: 16px;
  bottom: -1px;
  display: flex;
  justify-content: center;
  padding: 12px 8px 8px 12px;
  position: absolute;
  right: 8px;
  text-align: center;
}

.main-visual__badge-corner {
  display: block;
  position: absolute;
}

.main-visual__badge-corner img {
  display: block;
  height: 100%;
  width: 100%;
}

.main-visual__badge-corner--bottom {
  bottom: 0;
  height: 16px;
  left: -16px;
  width: 16px;
}

.main-visual__badge-corner--top {
  height: 16px;
  right: 0;
  top: -16px;
  width: 16px;
}

.main-visual__badge-subtitle {
  color: #1e293b;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin: 0;
  white-space: nowrap;
}

.main-visual__badge-text {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.main-visual__badge-title {
  color: #1e293b;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin: 0;
  white-space: nowrap;
}

.main-visual__image {
  display: block;
  height: auto;
  width: 100%;
}

.main-visual__picture {
  border-radius: 16px;
  display: block;
  overflow: hidden;
  width: 100%;
}

@media (min-width: 900px) {
  .main-visual {
    padding: 0 3%;
  }
  .main-visual__badge {
    border-top-left-radius: 24px;
    bottom: 0;
    padding: 20px 8px 8px 24px;
    right: 3%;
  }
  .main-visual__badge-corner--bottom {
    bottom: 0;
    height: 24px;
    left: -24px;
    width: 24px;
  }
  .main-visual__badge-corner--top {
    height: 24px;
    right: 0;
    top: -24px;
    width: 24px;
  }
  .main-visual__badge-subtitle {
    font-size: 16px;
  }
  .main-visual__badge-text {
    gap: 4px;
  }
  .main-visual__badge-title {
    font-size: 24px;
  }
  .main-visual__picture {
    border-radius: 24px;
  }
}body {
  font-family: Inter, "Noto Sans JP", sans-serif;
  line-height: 1.8;
  margin: 0;
}

.lower-page {
  padding-bottom: 80px;
  width: 100%;
}

@media screen and (width >= 900px) {
  .lower-page {
    padding-bottom: 128px;
  }
}
.button {
  align-items: center;
  border-radius: 40px;
  display: inline-flex;
  gap: 40px;
  height: 72px;
  overflow: hidden;
  padding: 16px 16px 16px 28px;
  position: relative;
  text-decoration: none;
  transition: opacity 0.2s ease;
  width: 304px;
}

.button::after {
  background: url("/assets/image/button-texture.png") 0 0/1000px 1000px repeat;
  border-radius: 40px;
  content: "";
  inset: 0;
  opacity: 0.05;
  position: absolute;
  z-index: 2;
}

.button:hover {
  opacity: 0.9;
}

/* Primary variant */
.button--primary::before {
  background: linear-gradient(102.232deg, #173d96 1.9213%, #019bc4 100%);
  border-radius: 40px;
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.button--primary .button__label {
  color: #ffffff;
}

/* Secondary variant */
.button--secondary::before {
  background: #ffffff;
  border-radius: 40px;
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.button--secondary .button__label {
  color: #173d96;
}

.button--primary .button__label,
.button--secondary .button__label {
  flex: 1;
  min-width: 0;
  text-align: left;
}

/* Link variant */
.button--link {
  border-radius: 0;
  gap: 8px;
  height: auto;
  overflow: visible;
  padding: 0;
  width: auto;
}

.button--link::after {
  content: none;
}

.button--link .button__label {
  color: #173d96;
  font-size: 16px;
}

.button__label {
  flex-shrink: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  text-align: center;
  z-index: 3;
}

.button__icon-wrapper {
  align-items: center;
  border-radius: 999px;
  display: flex;
  flex-shrink: 0;
  height: 40px;
  justify-content: center;
  padding: 8px 20px;
  position: relative;
  width: 64px;
  z-index: 3;
}

.button--primary .button__icon-wrapper,
.button--secondary .button__icon-wrapper {
  margin-left: auto;
}

.button__icon-wrapper--primary {
  background-color: rgba(255, 255, 255, 0.2);
}

.button__icon-wrapper--secondary {
  background-color: #e0f2fe;
}

.button__icon {
  display: block;
  overflow: visible;
}

.button--primary .button__icon {
  height: 11.425px;
  width: 15.7px;
}

.button--secondary .button__icon,
.button--link .button__icon {
  height: 9.527px;
  width: 13.66px;
}

@media screen and (width <= 899px) {
  .button {
    height: 62px;
    padding: 16px 16px 16px 28px;
    width: 271px;
  }
  .button--link {
    height: auto;
    padding: 0;
    width: auto;
  }
  .button--primary::before {
    background: linear-gradient(102.649deg, #173d96 1.9213%, #019bc4 100%);
  }
  .button__label {
    font-size: 16px;
  }
  .button__icon-wrapper {
    height: 30px;
    padding: 6px 15px;
    width: 48px;
  }
  .button--primary .button__icon {
    height: 8.569px;
    width: 11.775px;
  }
  .button--secondary .button__icon,
  .button--link .button__icon {
    height: 7.145px;
    width: 10.245px;
  }
}body {
  font-family: Inter, "Noto Sans JP", sans-serif;
  line-height: 1.8;
  margin: 0;
}

.lower-page {
  padding-bottom: 80px;
  width: 100%;
}

@media screen and (width >= 900px) {
  .lower-page {
    padding-bottom: 128px;
  }
}
.image-card {
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 0 50px 0 rgba(226, 232, 240, 0.6);
  display: flex;
  flex-direction: column;
  height: 544px;
  padding: 16px;
  width: 699px;
}

.image-card__image-wrapper {
  aspect-ratio: 200/100;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.image-card__image {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.image-card__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 40px 40px;
  width: 100%;
}

.image-card__title-wrapper {
  align-items: center;
  display: flex;
  width: 100%;
}

.image-card__title {
  color: #1e293b;
  flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.56px;
  line-height: 1.5;
  margin: 0;
  white-space: pre-wrap;
}

.image-card__description {
  color: #1e293b;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.36px;
  line-height: 1.8;
  margin: 0;
  white-space: pre-wrap;
  width: 100%;
}

@media screen and (width <= 1100px) {
  .image-card {
    height: auto;
    max-width: 774px;
    padding: 16px 16px 0;
    width: 100%;
  }
  .image-card__image-wrapper {
    border-radius: 8px;
  }
}body {
  font-family: Inter, "Noto Sans JP", sans-serif;
  line-height: 1.8;
  margin: 0;
}

.lower-page {
  padding-bottom: 80px;
  width: 100%;
}

@media screen and (width >= 900px) {
  .lower-page {
    padding-bottom: 128px;
  }
}
.top-education-item {
  align-items: flex-start;
  display: flex;
  gap: 32px;
  width: 100%;
}

.top-education-item__card.image-card {
  max-width: 699px;
  width: 100%;
}

.top-education-item__cards {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  gap: 48px;
  min-height: 1px;
  min-width: 1px;
}

.top-education-item__eyebrow {
  align-items: center;
  color: #0369a1;
  display: flex;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 500;
  gap: 8px;
  letter-spacing: 0.28px;
  line-height: 1.4;
  margin: 0;
  white-space: nowrap;
}

.top-education-item__eyebrow-dot {
  background-color: #0369a1;
  border-radius: 999px;
  display: block;
  flex-shrink: 0;
  height: 6px;
  width: 6px;
}

.top-education-item__heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 491px;
  width: 100%;
}

.top-education-item__title {
  color: #1e293b;
  display: flex;
  flex-direction: column;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 0.96px;
  line-height: 1.3;
  margin: 0;
  white-space: nowrap;
}

@media screen and (width <= 1100px) {
  .top-education-item {
    flex-direction: column;
    gap: 32px;
  }
  .top-education-item__cards {
    flex: 0 1 auto;
    gap: 16px;
    min-height: 0;
    width: 100%;
  }
  .top-education-item__heading {
    max-width: none;
  }
  .top-education-item__title {
    font-size: 36px;
    letter-spacing: 0.72px;
    white-space: normal;
  }
  .top-education-item__card.image-card {
    border-radius: 16px;
    max-width: none;
    padding: 12px 12px 0;
  }
  .top-education-item__card .image-card__content {
    gap: 8px;
    padding: 16px 12px 24px;
  }
  .top-education-item__card .image-card__description {
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.65;
  }
  .top-education-item__card .image-card__title {
    font-size: 20px;
    letter-spacing: 0.4px;
    line-height: 1.4;
  }
}body {
  font-family: Inter, "Noto Sans JP", sans-serif;
  line-height: 1.8;
  margin: 0;
}

.lower-page {
  padding-bottom: 80px;
  width: 100%;
}

@media screen and (width >= 900px) {
  .lower-page {
    padding-bottom: 128px;
  }
}
.top-education-section {
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 5%, #f0f9ff 95%, #ffffff 100%);
  overflow: hidden;
  padding: 240px 100px 320px;
  position: relative;
  width: 100%;
}

.top-education-section::before {
  background: url("/assets/image/button-texture.png") 0 0/50px 50px repeat;
  content: "";
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  position: absolute;
}

.top-education-section__button {
  align-self: center;
  margin-top: 80px;
}

.top-education-section__description {
  color: #1e293b;
  display: flex;
  flex-direction: column;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.72px;
  line-height: 1.7;
  text-align: center;
}

.top-education-section__description p {
  margin: 0;
}

.top-education-section__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 1800px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.top-education-section__intro {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 100px;
  width: 100%;
}

.top-education-section__intro-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.top-education-section__item--02.top-education-item {
  gap: 31px;
}

.top-education-section__item--03.top-education-item {
  gap: 33px;
}

.top-education-section__items {
  display: flex;
  flex-direction: column;
  gap: 144px;
  margin-top: 128px;
  width: 100%;
}

.top-education-section__title {
  color: #1e293b;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0.72px;
  line-height: 1.2;
  margin: 0;
  text-align: center;
  width: 100%;
}

.top-education-section__visual {
  max-width: 1200px;
  width: 100%;
}

.top-education-section__visual-image {
  display: block;
  height: auto;
  width: 100%;
}

@media screen and (width <= 1100px) {
  .top-education-section {
    padding: 128px 37px;
  }
  .top-education-section__button {
    margin-top: 64px;
  }
  .top-education-section__description {
    font-size: 14px;
    letter-spacing: 0.56px;
    text-align: left;
  }
  .top-education-section__intro {
    padding: 0;
  }
  .top-education-section__item--02.top-education-item {
    gap: 31px;
  }
  .top-education-section__item--03.top-education-item {
    gap: 33px;
  }
  .top-education-section__items {
    gap: 64px;
    margin-top: 64px;
  }
  .top-education-section__title {
    font-size: 28px;
    letter-spacing: 0.56px;
  }
}body {
  font-family: Inter, "Noto Sans JP", sans-serif;
  line-height: 1.8;
  margin: 0;
}

.lower-page {
  padding-bottom: 80px;
  width: 100%;
}

@media screen and (width >= 900px) {
  .lower-page {
    padding-bottom: 128px;
  }
}
.about-section {
  background-color: #ffffff;
  overflow: hidden;
  padding: 160px 0 0;
  width: 100%;
}

.about-section__button--pc {
  margin-top: 80px;
}

.about-section__button--sp {
  display: none;
}

.about-section__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1 1 auto;
  min-width: 1px;
  width: 100%;
}

.about-section__description {
  color: #1e293b;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.32px;
  line-height: 2.2;
  width: 100%;
}

.about-section__description p {
  margin: 0;
  text-align: justify;
}

.about-section__visual {
  flex-shrink: 0;
  min-width: 1px;
  width: min(55.556vw, 800px);
}

.about-section__visual-image {
  aspect-ratio: 1624/1520;
  display: block;
  height: auto;
  width: 100%;
}

.about-section__inner {
  align-items: flex-end;
  display: flex;
  gap: 64px;
  margin: 0 auto;
  max-width: 1600px;
  padding: 0 0 0 min(6.944vw, 100px);
  width: 100%;
}

.about-section__title {
  color: #173d96;
  display: flex;
  flex-direction: column;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin: 0;
  white-space: nowrap;
}

.about-section__title-line {
  display: block;
}

@media screen and (width <= 1100px) {
  .about-section {
    padding: 128px 0 0;
  }
  .about-section__button--pc {
    display: none;
  }
  .about-section__button--sp {
    display: inline-flex;
    margin-top: 48px;
  }
  .about-section__button--sp.button {
    height: 62px;
    padding: 16px 16px 16px 28px;
    width: 271px;
  }
  .about-section__button--sp .button__icon-wrapper {
    height: 30px;
    padding: 6px 15px;
    width: 48px;
  }
  .about-section__button--sp .button__label {
    font-size: 16px;
  }
  .about-section__button--sp.button--primary::before {
    background: linear-gradient(102.649deg, #173d96 1.9213%, #019bc4 100%);
  }
  .about-section__button--sp.button--primary .button__icon {
    height: 8.569px;
    width: 11.775px;
  }
  .about-section__content {
    gap: 24px;
    max-width: none;
    padding: 0 37px;
    width: 100%;
  }
  .about-section__description {
    gap: 24px;
    font-size: 16px;
    letter-spacing: 0.32px;
  }
  .about-section__visual {
    margin-top: 40px;
    width: 100%;
  }
  .about-section__inner {
    align-items: center;
    flex-direction: column;
    gap: 0;
    max-width: none;
    padding: 0;
  }
  .about-section__title {
    font-size: 26px;
  }
}
body {
  font-family: Inter, "Noto Sans JP", sans-serif;
  line-height: 1.8;
  margin: 0;
}

.lower-page {
  padding-bottom: 80px;
  width: 100%;
}

@media screen and (width >= 900px) {
  .lower-page {
    padding-bottom: 128px;
  }
}
.image-slider {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 80px 0 128px;
  width: 100%;
}

.image-slider__track-wrapper {
  overflow: hidden;
  padding-left: 109px;
  width: 100%;
}

.image-slider__track {
  display: flex;
  gap: 16px;
  transition: transform 0.3s ease;
  width: max-content;
}

.image-slider__slide {
  display: block;
  flex-shrink: 0;
  height: 200px;
  text-decoration: none;
  width: 400px;
}

.image-slider__image {
  border-radius: 12px;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.image-slider__controls {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding-right: 109px;
}

.image-slider__button {
  align-items: center;
  background-color: #e0f2fe;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  height: 40px;
  justify-content: center;
  overflow: hidden;
  padding: 8px 20px;
  position: relative;
  transition: opacity 0.2s ease;
  width: 64px;
}

.image-slider__button::after {
  background: url("/assets/image/button-texture.png") 0 0/1000px 1000px repeat;
  content: "";
  inset: 0;
  opacity: 0.05;
  position: absolute;
  z-index: 1;
}

.image-slider__button:hover {
  opacity: 0.8;
}

.image-slider__button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.image-slider__arrow {
  display: block;
  height: 24px;
  position: relative;
  width: 24px;
  z-index: 2;
}

.image-slider__arrow--prev {
  transform: rotate(180deg) scaleY(-1);
}

.image-slider__arrow--next {
  /* デフォルトの向き */
}body {
  font-family: Inter, "Noto Sans JP", sans-serif;
  line-height: 1.8;
  margin: 0;
}

.lower-page {
  padding-bottom: 80px;
  width: 100%;
}

@media screen and (width >= 900px) {
  .lower-page {
    padding-bottom: 128px;
  }
}
.top-news-section {
  padding: 0 7%;
  width: 100%;
}

.top-news-section__card.news-list-item {
  background-color: #f0f9ff;
  border: 0;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 278px;
  padding: 40px 24px 88px 40px;
  position: relative;
}

.top-news-section__card.news-list-item::before {
  background-color: #ffffff;
  background-image: url("/assets/image/button-texture.png");
  background-position: top left;
  background-size: 1000px 1000px;
  border-radius: 999px;
  bottom: 24px;
  content: "";
  height: 40px;
  opacity: 0.95;
  pointer-events: none;
  position: absolute;
  right: 24px;
  width: 64px;
  z-index: 1;
}

.top-news-section__card.news-list-item::after {
  background-image: url("/assets/image/arrow-right.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  bottom: 24px;
  content: "";
  height: 40px;
  pointer-events: none;
  position: absolute;
  right: 24px;
  width: 64px;
  z-index: 2;
}

.top-news-section__card.news-list-item > * {
  position: relative;
  z-index: 3;
}

.top-news-section__card .news-list-item__category {
  padding: 8px;
}

.top-news-section__card .news-list-item__content {
  align-items: flex-start;
  gap: 0;
}

.top-news-section__card .news-list-item__date {
  color: #475569;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.32px;
  line-height: 1.2;
}

.top-news-section__card .news-list-item__header {
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-news-section__card .news-list-item__title {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: #1e293b;
  display: -webkit-box;
  font-feature-settings: "palt";
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.64px;
  line-height: 1.8;
  overflow: hidden;
  padding-right: 16px;
  text-overflow: ellipsis;
  white-space: normal;
}

.top-news-section__cards {
  display: grid;
  flex: 1 0 0;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 1px;
  min-width: 1px;
}

.top-news-section__header {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 32px;
}

.top-news-section__inner {
  align-items: flex-start;
  display: flex;
  gap: 96px;
  width: 100%;
}

.top-news-section__title {
  color: #173d96;
  font-family: Montserrat, sans-serif;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0;
  white-space: nowrap;
}

.top-news-section__more-link {
  align-self: flex-start;
}

@media screen and (width <= 1100px) {
  .top-news-section {
    padding: 0 10%;
  }
  .top-news-section__card.news-list-item {
    border-radius: 16px;
    gap: 12px;
    min-height: 0;
    padding: 24px 24px 70px;
  }
  .top-news-section__card.news-list-item::before {
    background-size: 750px 750px;
    border-radius: 749.25px;
    height: 30px;
    width: 48px;
  }
  .top-news-section__card.news-list-item::after {
    background-size: 18px 18px;
    height: 30px;
    width: 48px;
  }
  .top-news-section__card .news-list-item__title {
    -webkit-line-clamp: 3;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.65;
    padding-right: 0;
  }
  .top-news-section__cards {
    gap: 8px;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .top-news-section__header {
    align-items: center;
    flex-direction: row;
    gap: 24px;
    justify-content: space-between;
    width: 100%;
  }
  .top-news-section__inner {
    flex-direction: column;
    gap: 24px;
  }
  .top-news-section__more-link.button.button--link .button__icon {
    height: 7.145px;
    width: 10.245px;
  }
  .top-news-section__more-link.button.button--link .button__icon-wrapper {
    border-radius: 749.25px;
    height: 30px;
    padding: 6px 15px;
    width: 48px;
  }
  .top-news-section__title {
    font-size: 36px;
  }
}body {
  font-family: Inter, "Noto Sans JP", sans-serif;
  line-height: 1.8;
  margin: 0;
}

.lower-page {
  padding-bottom: 80px;
  width: 100%;
}

@media screen and (width >= 900px) {
  .lower-page {
    padding-bottom: 128px;
  }
}
.top-schoollife-section {
  padding: 0 43px;
  width: 100%;
}

.top-schoollife-section__button {
  align-self: flex-start;
}

.top-schoollife-section__button.button--secondary {
  border: 1px solid #cbd5e1;
}

.top-schoollife-section__content {
  align-items: center;
  border-bottom-right-radius: 24px;
  border-top-right-radius: 24px;
  display: flex;
  flex: 1 1 0;
  min-width: 1px;
  overflow: hidden;
  padding: 128px 60px 128px 64px;
  position: relative;
}

.top-schoollife-section__content::before {
  background: linear-gradient(90deg, #173d96 0%, #0ea5e9 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.top-schoollife-section__content::after {
  background: url("/assets/image/button-texture.png") 0 0/50px 50px repeat;
  content: "";
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  position: absolute;
}

.top-schoollife-section__content-inner {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.top-schoollife-section__description {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.top-schoollife-section__description p {
  margin: 0;
}

.top-schoollife-section__inner {
  display: flex;
  height: 624px;
  width: 100%;
}

.top-schoollife-section__title {
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.3;
  margin: 0;
}

.top-schoollife-section__title-line {
  display: block;
}

.top-schoollife-section__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.top-schoollife-section__visual {
  background-color: #173d96;
  border-bottom-left-radius: 24px;
  border-top-left-radius: 24px;
  flex: 1 1 0;
  min-width: 1px;
  overflow: hidden;
  position: relative;
}

.top-schoollife-section__visual::before {
  background: url("/assets/image/button-texture.png") 0 0/50px 50px repeat;
  content: "";
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.top-schoollife-section__visual-image {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.top-schoollife-section__visual-mobile {
  display: none;
}

.top-schoollife-section__visual-mobile-image {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 783px;
  width: 100%;
}

@media screen and (width <= 899px) {
  .top-schoollife-section {
    background: linear-gradient(180deg, #0ea5e9 0%, #173d96 100%);
    overflow: hidden;
    padding: 0;
    position: relative;
  }
  .top-schoollife-section::before {
    background: url("/assets/image/button-texture.png") 0 0/50px 50px repeat;
    content: "";
    inset: 0;
    opacity: 0.08;
    pointer-events: none;
    position: absolute;
  }
  .top-schoollife-section__inner,
  .top-schoollife-section__visual-mobile {
    position: relative;
    z-index: 1;
  }
  .top-schoollife-section__button.button {
    height: 62px;
    padding: 16px 16px 16px 28px;
    width: 271px;
  }
  .top-schoollife-section__button .button__icon-wrapper {
    height: 30px;
    padding: 6px 15px;
    width: 48px;
  }
  .top-schoollife-section__button .button__label {
    font-size: 16px;
  }
  .top-schoollife-section__button.button--secondary .button__icon {
    height: 7.145px;
    width: 10.245px;
  }
  .top-schoollife-section__content {
    align-items: flex-start;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    flex: none;
    overflow: visible;
    padding: 80px 37px 40px;
    width: 100%;
  }
  .top-schoollife-section__content::before,
  .top-schoollife-section__content::after,
  .top-schoollife-section__visual-mobile::before {
    content: none;
  }
  .top-schoollife-section__description {
    font-size: 16px;
  }
  .top-schoollife-section__inner {
    flex-direction: column;
    height: auto;
  }
  .top-schoollife-section__title {
    font-size: 36px;
    line-height: 1.4;
  }
  .top-schoollife-section__title-line {
    display: inline;
  }
  .top-schoollife-section__visual {
    display: none;
  }
  .top-schoollife-section__visual-mobile {
    background-color: transparent;
    display: block;
    overflow: hidden;
    padding: 0 0 40px;
    position: relative;
  }
  .top-schoollife-section__visual-mobile-image {
    height: auto;
    left: 50%;
    margin: 0;
    max-width: none;
    position: relative;
    transform: translateX(-50%);
    width: max(100%, 783px);
    z-index: 2;
  }
}.faq-card {
  background-color: #f0f9ff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
}

.faq-card[open] {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.faq-card-header {
  align-items: center;
  background: none;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  gap: 40px;
  list-style: none;
  padding: 24px;
  text-align: left;
  width: 100%;
}

.faq-card-header::marker {
  content: "";
}

.faq-card-header::-webkit-details-marker {
  display: none;
}

.faq-card-header:hover {
  opacity: 0.9;
}

.faq-card[open] .faq-card-header {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.faq-card-content {
  align-items: flex-start;
  color: #1e293b;
  display: flex;
  flex: 1 0 0;
  gap: 12px;
  min-height: 1px;
  min-width: 1px;
}

.faq-card-label {
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.faq-card-text {
  flex: 1 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  min-height: 1px;
  min-width: 1px;
  white-space: pre-wrap;
}

.faq-card-button {
  align-items: center;
  border-radius: 999px;
  display: flex;
  flex-shrink: 0;
  height: 40px;
  justify-content: center;
  min-height: 40px;
  min-width: 64px;
  position: relative;
  width: 64px;
}

.faq-card-button-bg {
  background-color: #fff;
  border-radius: 999px;
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.faq-card-button::after {
  background-image: url("https://placehold.jp/1000x1000.png");
  background-position: top left;
  background-size: 1000px 1000px;
  border-radius: 999px;
  content: "";
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.faq-card-icon-container {
  align-items: center;
  display: flex;
  height: 24px;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 24px;
  z-index: 3;
}

.faq-card-icon {
  display: block;
  flex-shrink: 0;
  position: absolute;
  transition: opacity 0.3s ease;
}

.faq-card-icon-plus {
  height: 14px;
  opacity: 1;
  width: 14px;
}

.faq-card-icon-minus {
  height: 1.5px;
  opacity: 0;
  width: 14px;
}

.faq-card[open] .faq-card-icon-plus {
  opacity: 0;
}

.faq-card[open] .faq-card-icon-minus {
  opacity: 1;
}

.faq-card-answer {
  overflow: hidden;
}

.faq-card[open] .faq-card-answer {
  background-color: #f0f9ff;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border-top: 1px solid #e2e8f0;
  opacity: 1;
}

.faq-card-answer-wrapper {
  display: flex;
  gap: 12px;
  min-height: 0;
  padding: 24px;
}

.faq-card-answer-label {
  color: #173d96;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.faq-card-answer-content {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  gap: 12px;
  min-height: 1px;
  min-width: 1px;
}

.faq-card-answer-text {
  color: #1e293b;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.32px;
  line-height: 1.8;
  white-space: pre-wrap;
  width: 100%;
}body {
  font-family: Inter, "Noto Sans JP", sans-serif;
  line-height: 1.8;
  margin: 0;
}

.lower-page {
  padding-bottom: 80px;
  width: 100%;
}

@media screen and (width >= 900px) {
  .lower-page {
    padding-bottom: 128px;
  }
}
.section-heading {
  color: #1e293b;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 0.8px;
  line-height: 1.3;
  margin: 0;
  text-align: center;
}

.section-heading--left {
  text-align: left;
}

.section-heading--center {
  text-align: center;
}

@media screen and (width <= 899px) {
  .section-heading {
    font-size: 36px;
    letter-spacing: 0.72px;
    line-height: 1.3;
  }
}body {
  font-family: Inter, "Noto Sans JP", sans-serif;
  line-height: 1.8;
  margin: 0;
}

.lower-page {
  padding-bottom: 80px;
  width: 100%;
}

@media screen and (width >= 900px) {
  .lower-page {
    padding-bottom: 128px;
  }
}
.faq-list {
  width: 100%;
}

.faq-list__item.faq-card {
  width: 100%;
}

.faq-list__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 64px;
  width: 100%;
}

@media screen and (width <= 899px) {
  .faq-list__items {
    margin-top: 48px;
  }
}body {
  font-family: Inter, "Noto Sans JP", sans-serif;
  line-height: 1.8;
  margin: 0;
}

.lower-page {
  padding-bottom: 80px;
  width: 100%;
}

@media screen and (width >= 900px) {
  .lower-page {
    padding-bottom: 128px;
  }
}
.faq-section {
  padding: 128px 24px;
  width: 100%;
}

.faq-section__button-area {
  display: flex;
  justify-content: center;
  padding-top: 48px;
}

.faq-section__inner {
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
}

@media screen and (width <= 899px) {
  .faq-section {
    padding: 80px 20px;
  }
  .faq-section__button-area {
    padding-top: 40px;
  }
}