@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&display=swap");
.zen-maru-gothic {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
a:hover {
  opacity: 0.8;
}

body {
  background-color: #fff;
  color: #255241;
  font-family: "Zen Maru Gothic", sans-serif;
  font-optical-sizing: auto;
  font-feature-settings: "palt";
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.03em;
  color: #333;
}
@media screen and (min-width: 768.1px) {
  body {
    font-size: 14px;
  }
}

@media screen and (min-width: 768.1px) {
  .sp {
    display: none !important;
  }
  .pcDib {
    display: inline-block !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
.section {
  margin: 100px auto 0;
}
@media screen and (max-width: 768px) {
  .section {
    margin: 60px auto 0;
  }
}
.section__inner {
  margin: auto;
  max-width: 1120px;
  padding-inline: 20px;
  box-sizing: content-box;
}
@media screen and (max-width: 768px) {
  .section__inner {
    padding-inline: 17px;
    max-width: calc(100% - 34px);
  }
}
.section__inner.inner--2col {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .section__inner.inner--2col {
    flex-direction: column;
  }
}
.section__inner__left {
  display: block;
}
.section__head {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #255241;
}
@media screen and (max-width: 768px) {
  .section__head {
    font-size: 26px;
  }
}
.section__head__link {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 30px;
  color: #255241;
  font-size: 16px;
}
.section__head__link::before {
  content: "";
  background: url("../icons/icon_arrow_link.png");
  width: 15px;
  height: 15px;
}
@media screen and (max-width: 768px) {
  .section__head__link {
    justify-content: center;
  }
}
.section__co__head {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #255241;
}

header {
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  height: 140px;
  width: 100%;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  header {
    height: 90px;
  }
}

.header__inner {
  position: relative;
  max-width: 1360px;
  height: 100%;
  margin: auto;
  padding-inline: 20px;
  box-sizing: content-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1050px) {
  .header__inner {
    padding-inline: 40px;
  }
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding-inline: 17px;
  }
}
.header__logo {
  width: 266px;
}
@media screen and (max-width: 950px) {
  .header__logo {
    width: 170px;
  }
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 235px;
  }
}
.header__nav__school {
  display: none;
  background-color: #fff;
  padding-bottom: 40px;
}
.header__nav__school__item {
  flex: 1 1 20%;
  text-align: center;
  line-height: 1.3;
}
.header__nav__school__item__wrapper {
  max-width: 1360px;
  width: 100%;
  margin: auto;
  display: flex;
  gap: 45px;
}
.header__nav__school__item__text {
  margin-top: 0.8em;
}
.header__hamburger__menu {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__hamburger__menu {
    position: absolute;
    top: 50%;
    right: 17px;
    transform: translateY(-50%);
    width: 40px;
    height: 25px;
    display: block;
    cursor: pointer;
  }
  .header__hamburger__menu span {
    background-color: #000;
    position: absolute;
    width: 100%;
    height: 1px;
    border-radius: 1px;
    left: 0;
    transition: all 0.2s;
  }
  .header__hamburger__menu span:nth-of-type(1) {
    top: 0;
  }
  .header__hamburger__menu span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .header__hamburger__menu span:nth-of-type(3) {
    bottom: 0;
  }
  .header__hamburger__menu.is-active span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 50%;
  }
  .header__hamburger__menu.is-active span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 50%;
  }
  .header__hamburger__menu.is-active span:nth-of-type(2) {
    opacity: 0;
  }
}

header.is-nav-school-active .header__nav__school {
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 950px) {
  nav {
    gap: 35px;
  }
}
@media screen and (max-width: 860px) {
  nav {
    gap: 25px;
    font-size: 14.5px;
  }
}
@media screen and (max-width: 768px) {
  nav {
    display: none;
  }
}

.nav__searchIcon__close {
  display: none;
  padding: 2.5px;
}
.nav__searchIcon.is-open .nav__searchIcon__open {
  display: none;
}
.nav__searchIcon.is-open .nav__searchIcon__close {
  display: block;
}

body:has(.header__hamburger__menu.is-active) .navSp__container {
  left: 0;
}

.navSp__container {
  z-index: 99;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 150vw;
  width: 100%;
  min-height: 100dvh;
  padding: 90px 17px;
  background-color: #fff;
  font-size: 20px;
  font-weight: 500;
  transition: all 0.1s;
  overflow-y: auto;
}

.footer {
  background-color: #fff;
  padding: 45px 0 40px;
  color: #255241;
}
.footer__inner {
  max-width: 1120px;
  margin: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 50px 100px;
  padding-inline: 17px;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    max-width: 100%;
    grid-template-columns: auto;
    gap: 20px;
  }
}
.footer__inner__right {
  grid-area: 1/2/2/3;
}
@media screen and (max-width: 768px) {
  .footer__inner__right {
    grid-area: 2/1/3/2;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 40px 17px;
    margin: auto;
  }
}
.footer__logo {
  width: 335px;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 100%;
  }
}
.footer__text {
  margin-top: 10px;
  font-size: 14px;
}
.footer__copyright {
  grid-area: 2/1/3/3;
  margin-top: 30px;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    grid-area: 3/1/4/2;
    margin-top: 35px;
    text-align: center;
  }
}

main {
  margin-top: 140px;
}
@media screen and (max-width: 768px) {
  main {
    margin-top: 90px;
  }
}

.middle__image {
  max-width: 1360px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .middle__image {
    padding: 0 17px;
    margin: 30px auto 0;
  }
  .middle__image img {
    aspect-ratio: 5.7;
    object-fit: cover;
    border-radius: 7px;
  }
}

@media screen and (max-width: 768px) {
  .foot__link {
    margin: auto;
  }
}
.foot__link__group {
  color: #255241;
}
.foot__link__group__wrapper {
  border-top: 1px solid #cbcbcb;
  border-bottom: 1px solid #cbcbcb;
  padding: 30px 0;
  display: flex;
  gap: 2em;
}
@media screen and (max-width: 768px) {
  .foot__link__group__wrapper {
    flex-direction: column;
    gap: 1.2em;
    border-top: 0;
  }
}
.foot__link__group__head {
  display: flex;
  align-items: center;
  gap: 0.5em;
  color: #255241;
  font-weight: 500;
}
.foot__link__group__head::before {
  content: "";
  background: url("../icons/icon_arrow_link.png");
  width: 15px;
  height: 15px;
}
.foot__link__group__item__wrapper {
  margin-top: 1em;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  font-size: 14px;
  padding-left: 1.8em;
}

.top__fv {
  position: relative;
  max-width: 1360px;
  margin: auto;
  padding-inline: 20px;
  box-sizing: content-box;
}
@media screen and (max-width: 768px) {
  .top__fv {
    max-width: 100%;
    padding-inline: 0;
  }
}
.top__fv__image {
  aspect-ratio: 2.17;
  object-fit: cover;
  object-position: left 0 bottom 20%;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .top__fv__image {
    aspect-ratio: 1.5;
    object-position: center;
    border-radius: 0;
  }
}
.top__fv__link {
  height: 144px;
  width: 100%;
  display: grid;
  align-content: center;
  gap: 5px;
  background-color: #78ad8b;
  color: #fff;
  padding: 45px 35px;
  border-radius: 10px;
}
.top__fv__link__wrapper {
  position: absolute;
  right: 20px;
  bottom: 0;
  background-color: #fff;
  padding: 17px 0 0 17px;
  max-width: 544px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top__fv__link__wrapper {
    position: relative;
    right: auto;
    bottom: auto;
    padding: 17px 17px 0;
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  .top__fv__link {
    position: relative;
    height: 100px;
    margin: auto;
    padding: 30px;
  }
}
.top__fv__link:after {
  content: "";
  background: url(../icons/icon_arrow_white_right.png);
  width: 56px;
  height: 56px;
  position: absolute;
  right: 45px;
}
@media screen and (max-width: 768px) {
  .top__fv__link:after {
    background-size: 100%;
    width: 37px;
    height: 37px;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.top__fv__link span:nth-of-type(1) {
  grid-area: 1/1/2/2;
}
@media screen and (max-width: 768px) {
  .top__fv__link span:nth-of-type(1) {
    font-size: 12px;
  }
}
.top__fv__link span:nth-of-type(2) {
  grid-area: 2/1/3/2;
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .top__fv__link span:nth-of-type(2) {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .top__news {
    margin: 60px auto;
  }
}
.top__news__item {
  position: relative;
  background-color: #fff;
  border-bottom: 1px solid #cbcbcb;
  display: grid;
  grid-template-columns: 115px 1fr;
  padding: 20px 0;
  align-items: center;
}
.top__news__item__wrapper {
  max-width: 825px;
  width: 100%;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #cbcbcb;
}
@media screen and (max-width: 768px) {
  .top__news__item__wrapper {
    max-width: 100%;
    margin: 40px auto 0;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .top__news__item {
    grid-template-columns: 100px 1fr;
    padding: 1em 0;
  }
}
.top__news__item:after {
  content: "";
  background: url(../icons/icon_arrow_white_right.png);
  width: 56px;
  height: 56px;
  position: absolute;
  right: 0;
}
.top__news__item__date {
  grid-area: 1/1/2/2;
  align-self: flex-start;
  padding-top: 10px;
  font-size: 14px;
}
.top__news__item__text {
  grid-area: 2/2/3/3;
  padding: 10px 0 0;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .top__news__item__text {
    grid-area: 2/1/3/3;
    padding: 10px 70px 0 0;
  }
}
.top__news__item__text__title {
  font-size: 16px;
}
.top__news__tag {
  grid-area: 1/2/2/3;
  background-color: #e5ede8;
  color: #255241;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 20px;
  font-size: 14px;
  line-height: 1;
  width: -webkit-max-content;
  width: max-content;
}
@media screen and (max-width: 768px) {
  .top__news__tag {
    padding: 0.5em 1.2em;
    border-radius: 10px;
  }
}
.top__news__tag.tag--important {
  background-color: #f76262;
  color: #fff;
}
.top__news__link__wrapper {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .top__news__link__wrapper {
    margin-top: 80px;
  }
}
.top__policy {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .top__policy {
    margin: 60px auto;
  }
}
.top__policy__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
}
.top__policy__item__wrapper {
  width: 100%;
  max-width: 800px;
  margin: 80px 0 60px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .top__policy__item__wrapper {
    margin: 50px auto;
    gap: 1em;
  }
}
@media screen and (max-width: 768px) {
  .top__policy__item {
    grid-template-columns: auto;
    gap: 0;
  }
}
.top__policy__item__number {
  grid-area: 1/1/2/2;
  color: #539a7d;
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .top__policy__item__number {
    font-size: 24px;
  }
}
.top__policy__item__text {
  grid-area: 1/2/2/3;
  padding-top: 0.5em;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .top__policy__item__text {
    grid-area: 2/1/3/2;
    line-height: 1.6;
    padding: 0;
    font-size: 17px;
    letter-spacing: -0.02em;
  }
}
.top__policy__item__title {
  color: #539a7d;
}
.top__policy__item__copy {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .top__policy__item__copy {
    margin-top: 0.7em;
  }
}
.top__policy__item__copy li {
  display: flex;
  gap: 1em;
  margin-top: 0.8em;
}
.top__policy__item__copy li::before {
  content: "";
  width: 20px;
  top: 0.9em;
  position: relative;
  border-top: 1px solid #afd0c2;
}
@media screen and (max-width: 768px) {
  .top__policy__item__copy li {
    margin: 0;
    font-size: 14px;
  }
  .top__policy__item__copy li::before {
    width: 1em;
    top: 0.9em;
  }
}
.top__policy__image {
  align-self: flex-end;
  transform: translateX(-60px);
}
.top__policy__image__wrapper {
  display: flex;
}
@media screen and (max-width: 768px) {
  .top__policy__image__wrapper {
    order: 2;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .top__policy__image {
    transform: unset;
    width: 170px;
  }
}
.top__link {
  margin-top: 100px;
  background-color: #78ad8b;
  padding: 60px 0 70px;
  color: #fff;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .top__link {
    margin-top: 60px;
    padding: 60px 0;
  }
}
.top__link__item {
  flex: 1 0 360px;
  height: auto !important;
}
.top__link__item__container.swiper {
  max-width: 1120px;
  width: 100%;
  overflow: visible;
}
@media screen and (max-width: 768px) {
  .top__link__item__container.swiper {
    width: calc(100% - 34px);
  }
}
.top__link__item__wrapper {
  display: flex;
}
.top__link__item:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.top__link__item__inner {
  position: relative;
  background-color: #fff;
  color: #255241;
  padding: 30px;
  height: 100%;
  border-radius: 15px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: flex-start;
  gap: 30px 25px;
}
.top__link__item:after {
  content: "";
  background: url(../icons/icon_arrow_white_right.png);
  width: 56px;
  height: 56px;
  position: absolute;
  right: 30px;
  bottom: 30px;
}
.top__link__item__image {
  grid-area: 1/1/2/3;
  width: 100%;
}
.top__link__item__icon {
  grid-area: 2/1/3/2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.top__link__item__icon img {
  width: 78px;
}
.top__link__item__icon__text {
  font-size: 18px;
}
.top__link__item__text {
  margin-top: -0.2em;
  font-size: 18px;
  line-height: 1.4;
}
.top__link__item__text__address {
  margin-top: 1em;
  font-size: 15px;
}
.top__link__bottom__wrapper {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .top__link__bottom__wrapper {
    flex-direction: column;
  }
}
.top__link__nav {
  position: relative !important;
  width: auto !important;
  height: auto !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  transition: 0.3s;
}
.top__link__nav__wrapper {
  margin: 30px 0 0;
  display: flex;
  gap: 55px;
}
@media screen and (max-width: 768px) {
  .top__link__nav__wrapper {
    order: 1;
    justify-content: center;
    gap: 40px;
    margin: 20px auto 40px;
  }
}
.top__link__nav:hover {
  opacity: 0.6 !important;
}
.top__link__nav:after {
  content: "" !important;
  background: url(../icons/icon_arrow_white_right.png);
  width: 56px !important;
  height: 56px !important;
}
.top__link__nav.nav--prev:after {
  transform: scaleX(-1);
}
.top__link__text__wrapper {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  column-count: 2;
  column-gap: 4em;
}
@media screen and (max-width: 768px) {
  .top__link__text__wrapper {
    column-count: 1;
    order: 2;
  }
}
.top__link__text__wrapper a {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.top__link__text__wrapper a::before {
  content: "";
  background: url("../icons/icon_arrow_link_white.png");
  width: 15px;
  height: 15px;
}
.top__middle__nav__item {
  position: relative;
  flex: 1 1 25%;
  height: 375px;
  display: grid;
  grid-template-rows: 180px 1fr;
  justify-content: center;
  border-right: 1px solid #cbcbcb;
}
.top__middle__nav__item__wrapper {
  border-left: 1px solid #cbcbcb;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .top__middle__nav__item__wrapper {
    border-left: 0;
    border-top: 1px solid #cbcbcb;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .top__middle__nav__item {
    grid-template-columns: 70px 1fr;
    grid-template-rows: auto;
    align-items: center;
    height: 200px;
    width: 100%;
    gap: 20px;
    border-right: 0;
    border-bottom: 1px solid #cbcbcb;
    padding: 30px 0;
  }
}
.top__middle__nav__item:after {
  content: "";
  background: url(../icons/icon_arrow_white_right.png);
  width: 56px;
  height: 56px;
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .top__middle__nav__item:after {
    background-size: 100%;
    width: 40px;
    height: 40px;
    top: 50%;
    bottom: auto;
    left: auto;
    right: 17px;
    transform: translateY(-50%);
  }
}
.top__middle__nav__item figure {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .top__middle__nav__item figure {
    grid-area: 1/1/2/2;
  }
}
.top__middle__nav__item span {
  color: #255241;
  font-size: 24px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .top__middle__nav__item span {
    grid-area: 1/2/2/3;
    font-size: 18px;
  }
}

.school__fv {
  position: relative;
  max-width: 1360px;
  margin: auto;
  padding-inline: 20px;
  box-sizing: content-box;
}
@media screen and (max-width: 768px) {
  .school__fv {
    max-width: 100%;
    margin: auto;
    padding: 0;
  }
}
.school__fv__image {
  aspect-ratio: 3.78;
  object-fit: cover;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .school__fv__image {
    aspect-ratio: 2.15;
    border-radius: 0;
  }
}
.school__fv__title__container {
  position: relative;
  max-width: 1120px;
  width: 100%;
  margin: auto;
}
.school__fv__title__wrapper {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #fff;
  padding: 17px 0 0 17px;
  max-width: 530px;
  width: 100%;
  height: 160px;
  display: grid;
  place-content: center;
  border-radius: 10px 10px 0 0;
  padding: 0 5px 0 0;
}
.school__fv__title__wrapper.main {
  padding: 0 20px 10px 0;
}
@media screen and (max-width: 768px) {
  .school__fv__title__wrapper {
    position: relative;
    height: auto;
    margin: 35px auto 65px;
  }
}
.school__feature__item {
  flex: 2 1 calc((100% - 70px) / 2);
  background-color: #f1f7f3;
  padding: 30px;
  border-radius: 15px;
}
.school__feature__item__wrapper {
  width: 100%;
  max-width: 960px;
  margin: 100px auto 70px;
  display: flex;
  flex-wrap: wrap;
  gap: 45px 70px;
}
@media screen and (max-width: 768px) {
  .school__feature__item__wrapper {
    margin: 35px auto;
    flex-direction: column;
    gap: 27px;
  }
}
.school__feature__item.item--blank {
  background-color: transparent;
}
@media screen and (max-width: 768px) {
  .school__feature__item.item--blank {
    display: none;
  }
}
.school__feature__item__text {
  color: #131313;
  margin-top: 0.8em;
  line-height: 1.7;
}
.school__feature__item__head {
  color: #255241;
  font-size: 18px;
}
.school__gallery {
  max-width: 1360px;
  width: 100%;
  margin: 70px auto;
}
@media screen and (max-width: 768px) {
  .school__gallery {
    margin: 30px auto;
  }
}
.school__gallery__image__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .school__gallery__image__wrapper {
    flex-wrap: wrap;
    padding: 0 17px;
  }
}
.school__gallery__image__wrapper img {
  width: calc((100% - 64px) / 4);
}
@media screen and (max-width: 768px) {
  .school__gallery__image__wrapper img {
    width: calc((100% - 10px) / 2);
  }
}
.school__event__inner {
  max-width: 900px;
  width: 100%;
  margin: 100px auto 80px;
}
@media screen and (max-width: 768px) {
  .school__event__inner {
    margin: 20px auto 40px;
  }
}
.school__event__text {
  margin: 65px auto;
  color: #131313;
}
@media screen and (max-width: 768px) {
  .school__event__text {
    margin: 20px auto;
  }
}
.school__event__box {
  background-color: #f1f7f3;
  border-radius: 15px;
  margin: 65px auto;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .school__event__box {
    border-radius: 10px;
    margin: 20px auto;
    padding: 25px;
  }
}
.school__event__box p {
  margin: 30px auto 0;
  color: #131313;
}
@media screen and (max-width: 768px) {
  .school__event__box p {
    margin: 17px auto 0;
  }
}
.school__about {
  background-color: #dae6df;
  padding: 70px 20px;
}
@media screen and (max-width: 768px) {
  .school__about {
    padding: 45px 17px;
  }
}
.school__about__inner {
  background-color: #fff;
  max-width: 1120px;
  width: 100%;
  padding: 60px 70px 45px;
  margin: auto;
  border-radius: 15px;
}
@media screen and (max-width: 768px) {
  .school__about__inner {
    padding: 22px 17px;
    border-radius: 10px;
  }
}
.school__about__wrapper {
  margin: 50px auto 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .school__about__wrapper {
    margin: 22px auto 0;
  }
}
.school__about__wrapper img {
  align-self: flex-start;
}
@media screen and (max-width: 768px) {
  .school__about__wrapper img {
    display: none;
  }
}
.school__about__sheet {
  width: 100%;
  max-width: 680px;
  border-top: 1px solid #cbcbcb;
  display: flex;
  flex-wrap: wrap;
}
.school__about__sheet dt {
  width: 160px;
  padding-block: 0.8em;
  padding-inline: 0 1em;
  border-bottom: 1px solid #cbcbcb;
}
@media screen and (max-width: 768px) {
  .school__about__sheet dt {
    width: 100%;
    display: block;
    border-bottom: 0;
    padding: 0.5em 0 0;
    font-size: 12px;
  }
}
.school__about__sheet dd {
  width: calc(100% - 160px);
  padding-block: 0.8em;
  border-bottom: 1px solid #cbcbcb;
  color: #131313;
}
@media screen and (max-width: 768px) {
  .school__about__sheet dd {
    width: 100%;
    display: block;
    padding: 0 0 0.5em;
    font-size: 14px;
  }
}
.school__about__sheet iframe {
  max-width: 100%;
  height: 250px;
  margin: 30px 0 0;
  border-radius: 10px;
}
