@charset "utf-8";

.hero__wrapper {
  width: 100%;
  height: 95dvh;
  height: 95vh;
  background-color: var(--yellow);
  background-image: url('./asset/hero/hero-sp@2x.jpg');
  background-size: cover;
  background-position: center center;
  position: relative;
}

.hero__chatch-a {
  width: 100%;
  max-width: 300px;
  height: 35%;
  position: absolute;
  top: 0;
  left: 0;
}

.hero__chatch-iro {
  position: absolute;
  height: 20%;
  bottom: 25%;
}

.hero__logo {
  position: absolute;
  height: 25%;
  min-height: 140px;
  bottom: 0%;
}



@media screen and (min-width: 600px) {
  .hero__wrapper {
    width: 100%;
    height: 95dvh;
    height: 95vh;
    max-height: 900px;
    background-color: var(--yellow);
    background-image: url('./asset/hero/hero-pc@2x.jpg');
    background-size: cover;
    background-position: center center;
  }

  .hero__chatch-a {
    height: 32%;
    position: absolute;
    top: 0;
    left: 0;
  }

  .hero__chatch-iro {
    position: absolute;
    height: 10%;
    bottom: 32%;
  }

  .hero__logo {
    position: absolute;
    height: 32%;
    min-height: 140px;
    bottom: 0%;
  }
}

@media screen and (min-width: 1025px) {
  .hero__wrapper {
    width: 100%;
    height: 95dvh;
    height: 95vh;
    max-height: 900px;
    background-color: var(--yellow);
    background-image: url('./asset/hero/hero-pc@2x.jpg');
    background-size: cover;
    background-position: center center;
  }

  .hero__chatch-a {
    height: 40%;
    position: absolute;
    top: 0;
    left: 0;
  }

  .hero__chatch-iro {
    position: absolute;
    height: 100%;
    bottom: auto;
    top: 0;
    right: 0;
  }

  .hero__logo {
    position: absolute;
    height: 32%;
    min-height: 140px;
    bottom: 0%;
  }
}

@media screen and (min-width: 1300px) {
  .hero__chatch-a {
    height: 50%;
    position: absolute;
    top: 0;
    left: 0;
  }
}

/* 重要なお知らせ */
.news-updates {
  width: 96%;
  padding: 40px 6%;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 20px;
}

.news-updates__header {
  margin: 40px auto;
}

.news-updates__body {
  margin-top: 20px;
}

.news-updates__feed {
  display: flex;
  flex-flow: wrap;
  padding-top: 12px;
  padding-bottom: 12px;
}

.news-updates__feed+.news-updates__feed {
  border-top: 1px solid silver;
}

.news-updates__date {
  flex: 1 0 100%;
  font-family: var(--en-font);
  font-weight: 600;
  font-size: 0.95em;
  color: #666;
}

.news-updates__ttl {
  flex: 1 0 100%;
  margin-top: 4px;
}

@media screen and (min-width: 600px) {
  .news-updates {
    display: flex;
  }

  .news-updates__header {
    flex: 1 1 30%;
    min-width: 250px;
  }

  .news-updates__body {
    margin-top: 0;
  }

  .news-updates__feed:first-child {
    padding-top: 0;
  }

  .news-updates__feed {
    flex-flow: wrap;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .news-updates__ttl {
    flex: 1 0 100%;
    margin-top: 0;
  }
}

@media screen and (min-width: 1025px) {
  .news-updates {
    max-width: 1260px;
    padding: 56px 6%;
    border-radius: 20px;
    align-items: center;
  }



  .news-updates__header {
    flex: 0 0 250px;
    min-width: 250px;
    margin-right: 6%;
  }

  .news-updates__body {
    flex: 1 1 auto;
    margin-top: 0;
  }

  .news-updates__feed {
    flex-flow: nowrap;

    padding-top: 16px;
    padding-bottom: 16px;
  }

  .news-updates__feed:first-child {
    padding-top: 16px;
  }

  .news-updates__date {
    flex: 0 0 auto;
    font-family: var(--en-font);
    font-weight: 600;
    font-size: 0.8em;
    color: #666;
    padding-top: 0.1em;
    margin-right: 2em;
  }

  .news-updates__ttl {
    flex: 1 1 auto;
    margin-top: 0;
    font-size: 0.9em;
    letter-spacing: 0.02em;
    text-align: justify;
  }
}


.top-menu-wrapper {
  width: 100%;
  margin: 0 auto;
  margin-top: clamp(100px, 20vw, 140px);
}

.top-menu {
  border-radius: 100px 0 0 100px;
  background-color: #fff;
  width: 98%;
  margin-left: auto;
  margin-right: 0;
  padding-top: 70px;
  padding-bottom: 70px;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
}

.top-menu.--revers {
  margin-left: 0;
  margin-right: auto;
  border-radius: 0 100px 100px 0;
}

.top-menu.--yellow {
  background-color: var(--yellow);
  color: var(--black);
}

.top-menu.--red {
  background-color: var(--red);
  color: #fff;
}

.top-menu.--blue {
  background-color: var(--blue);
  color: #fff;
}

.top-menu.--green {
  background-color: var(--light-green);
  color: #fff;
}


.top-menu+.top-menu {
  margin-top: 44px;
}

.top_memu__ttl {
  text-align: center;
  text-transform: uppercase;
  font-family: var(--en-font);
  color: var(--black);
  font-weight: 500;
  font-size: 3em;
  line-height: 1.1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0.5em;
}

.top_memu__ttl::before,
.top_memu__ttl::after {
  content: '';
  flex-shrink: 0;
  display: block;
  width: 25px;
  height: 50px;
}

.top_memu__ttl::before {
  border-radius: 50px 0 0 50px;
  background-color: var(--black);
  margin-right: 30px;
}

.top_memu__ttl::after {
  border-radius: 0 50px 50px 0;
  background-color: var(--black);
  margin-left: 30px;
}

.top_memu__ttl span {
  display: block;
  font-family: initial;
  letter-spacing: initial;
  font-weight: normal;
  font-size: 0.32em;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  ;
}

.top-menu__text {
  margin-top: 44px;
}

.top-menu__letter {
  margin-top: 20px;
  line-height: 2.3;
  text-align: justify;
}

.top-menu__pic {
  margin: 0 auto;
  margin-top: 40px;
  position: relative;
}

.top-menu__pic img {
  width: 100%;
  height: auto;
}

.top-menu__pic-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.top-menu__boy,
.top-menu__girl {
  position: relative;
  max-height: 410px;
}

.top-menu__boy {
  width: 47%;
}

.top-menu__girl {
  width: 43%;
}

.top-menu__list {
  display: flex;
  flex-flow: column nowrap;
  margin-top: 40px;
  row-gap: 16px;
}

/* トピックス（バナー） */
.topic {
  overflow: hidden;
}

.topic__list {}

.topic__item {
  margin: 0 10px;
}

.top-menu__list>li>a {
  display: inline-block;
  background-color: var(--black);
  color: #fff;
  font-weight: normal;
  text-decoration: none;
  text-align: center;
  padding: 0.75em 2em;
  border-radius: 50px;
  width: 100%;
  position: relative;
  transition: 0.3s;
  border: var(--black) 1px solid;
}

.top-menu__list>li>a:hover {
  background-color: #fff;
  color: var(--black);
  border: var(--black) 1px solid;
}

.top-menu__list>li>a::after {
  content: '\f0da';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 1.05em;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s;
}

.top-menu__list>li>a:hover::after {
  right: 0.9em;
}

@media screen and (min-width: 600px) {
  .top-menu__body {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    gap: 50px;
    margin-top: 40px;
  }

  .top-menu__text {
    flex: 0 1 calc((100% - 50px * 1) / 2);
    margin-top: 0;
  }

  .top-menu__pic {
    flex: 0 1 calc((100% - 50px * 1) / 2);
    padding-top: 50%;
    position: relative;
    margin-top: 0;
  }

  .top-menu__pic-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .top-menu__boy,
  .top-menu__girl {
    position: relative;
    max-height: none;
  }

  .top-menu__boy {
    /* width: 47%; */
    flex: 0 1 47%;
  }

  .top-menu__girl {
    /* width: 43%; */
    flex: 0 1 43%;
    position: relative;
    bottom: -1.5%;
  }

  .top-menu__list {
    display: flex;
    flex-flow: row wrap;
    margin-top: 40px;
    gap: 16px;
  }

  .top-menu__list>li {
    flex: 0 1 calc((100% - 16px * 1) / 2);
  }
}

@media screen and (min-width: 1025px) {
  .top-menu {
    border-radius: 30vw;
    background-color: #fff;
    width: clamp(985px, 95%, 1500px);
    margin-left: auto;
    margin-right: 0;
    padding-top: min(8.12%, 90px);
    padding-bottom: min(8.12%, 90px);
    padding-left: 32px;
    padding-right: 32px;
  }

  .top-menu.--revers {
    margin-left: 0;
    margin-right: auto;
    border-radius: 30vw;
  }

  .top-menu+.top-menu {
    margin-top: clamp(80px, 16vw, 120px);
  }

  .top-menu__body {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    margin-top: min(4%, 60px);
    gap: 50px;
  }

  .top-menu__text {
    flex: 0 1 calc((100% - 50px * 1) / 2);
    padding-left: 5%;
  }

  .top-menu__pic {
    flex: 0 1 calc((100% - 50px * 1) / 2);
    padding-top: max(420px, 30%);
  }

  .top-menu__pic-inner {
    display: flex;
    justify-content: center;
    align-items: center;

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .top-menu__boy,
  .top-menu__girl {
    position: relative;
    max-height: none;
  }

  .--flex-start {
    align-self: flex-start;
  }


  .top-menu__girl {
    bottom: -3%;
  }



  .top-menu__list {
    display: flex;
    flex-flow: row wrap;
    margin-top: 40px;
    row-gap: 16px;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
  }

  .top-menu__list>li {
    flex: 0 1 calc((100% - 16px * 1) / 2);
  }


}

.top-gmap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.top-gmap iframe {
  width: 100%;
  height: calc(100% + 170px);
}

@media screen and (min-width: 600px) {
  .top-gmap {
    width: 100%;
    aspect-ratio: auto;
    height: 600px;
  }

  .top-gmap iframe {
    width: 100%;
    height: 100%;
  }
}

.top-menu--schooltour {
  margin-top: 120px;
  background-color: white;
  background-image: url('./asset/bg--line.svg');
  background-size: cover;
  background-position: center center;
  position: relative;
  padding: 50px 0;
}

.top-menu--schooltour__ttl {
  position: relative;
  top: -1em;
}

.top-menu-schooltour__body {
  background-color: #fff;
  border-radius: 50px;
  width: 98%;
  height: auto;
  margin: 0 auto;
  padding: 70px 20px;
}

.top-menu--schooltour__datawrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  margin-top: 40px;
}

.--top-menu--datawrapper {
  max-width: none;
  margin: 0 auto;
  margin-top: 40px;
}


.top-menu--schooltour__t {}

.top-menu--schooltour__y {
  font-family: var(--en-font);
  font-size: 2em;
  margin-top: 16px;
}

.top-menu--schooltour__d {
  font-family: var(--en-font);
  font-size: min(23vw, 220px);
  line-height: 1;
}

.top-menu--schooltour__day {
  font-family: var(--en-font);
  text-transform: uppercase;
  font-size: initial;
}

.top-menu--schooltour__o {
  font-size: 0.85em;
  margin-top: 14px;
}

@media screen and (min-width: 600px) {
  .top-menu--schooltour {
    margin-top: 80px;
  }
}

@media screen and (min-width: 1025px) {
  .top-menu-schooltour__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    align-items: center;

    background-color: #fff;
    border-radius: 50px;
    width: 98%;
    max-width: 1100px;
    height: auto;
    margin: 0 auto;
    padding: 90px 30px;
  }

  .top-menu--schooltour__tt {
    grid-column: 1;
    grid-row: 1;
  }

  .top-menu--schooltour__t {}

  .top-menu--schooltour__y {
    font-family: var(--en-font);
    font-size: 2em;
    margin-top: 0;
    margin-bottom: -20px;
  }

  .top-menu--schooltour__d {}

  .top-menu--schooltour__day {

    font-size: initial;
  }

  .top-menu--schooltour__o {
    font-size: 0.85em;
    margin-top: 24px;
  }

  .top-menu--schooltour__datawrapper {
    grid-column: 2;
    grid-row: 1;

    margin-top: 0;
  }

  .--top-menu--datawrapper {
    grid-column: 1 / 3;
    grid-row: 2;

    margin-top: 80px;
  }
}