@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "HiraKakuProN-W3", sans-serif;
  font-size: 1.6rem;
  line-height: 160%;
  color: #000000;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 3rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

nav ul,
nav ol,
footer ul,
footer ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: normal;
}

p {
  margin: 0;
}

.-min {
  font-family: serif;
}

b {
  font-weight: bold;
}

.-small {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.7rem;
}
@media screen and (min-width: 768px) {
  .-small {
    font-size: 1rem;
  }
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
@media screen and (min-width: 1024px) {
  .site-header {
    height: 80px;
    padding: 0 40px;
  }
}
.site-header__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
  margin: 0 0 0 -10%;
}
.site-header__logo img {
  height: 40px;
  width: auto;
}
@media screen and (min-width: 1024px) {
  .site-header__logo img {
    height: 50px;
  }
}
.site-header__logo-text {
  font-family: "Noto Serif JP", "HiraMinProN-W3", serif;
  font-size: 1.4rem;
  line-height: 1.4;
}
@media screen and (min-width: 1024px) {
  .site-header__logo-text {
    font-size: 1.6rem;
  }
}
.site-header__hamburger {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  font-family: "Noto Sans JP", "HiraKakuProN-W3", sans-serif;
  font-size: 1.2rem;
  color: #000000;
  z-index: 10;
}
.site-header__hamburger-label {
  font-size: 1.2rem;
  display: none;
}
@media screen and (min-width: 1024px) {
  .site-header__hamburger-label {
    display: block;
  }
}
.site-header__hamburger-icon {
  width: 24px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.site-header__hamburger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000000;
  transition: transform 0.35s ease, opacity 0.35s ease;
  transform-origin: center;
}
.site-header__hamburger.is-open .site-header__hamburger-icon span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.site-header__hamburger.is-open .site-header__hamburger-icon span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.site-header__hamburger.is-open .site-header__hamburger-icon span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.global-nav {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 99;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.45s ease;
  opacity: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 1024px) {
  .global-nav {
    top: 80px;
  }
}
.global-nav.is-open {
  max-height: 100%;
  opacity: 1;
  overflow: scroll;
}
.global-nav__inner {
  padding: 30px 20px 40px;
}
@media screen and (min-width: 768px) {
  .global-nav__inner {
    display: flex;
    gap: 40px;
    padding: 40px 140px 50px;
    max-width: 1200px;
    margin: 0 auto;
  }
}
.global-nav__label {
  font-size: 1.2rem;
  color: #707070;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .global-nav__label {
    display: none;
  }
}
.global-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media screen and (min-width: 768px) {
  .global-nav__list {
    flex-direction: row;
    gap: 0;
    width: 100%;
  }
}
.global-nav__item {
  border-bottom: 1px solid #c7c7c7;
}
@media screen and (min-width: 768px) {
  .global-nav__item {
    border-bottom: none;
    flex: 1;
  }
}
.global-nav__item:first-child {
  border-top: 1px solid #c7c7c7;
}
@media screen and (min-width: 768px) {
  .global-nav__item:first-child {
    border-top: none;
  }
}
.global-nav__category {
  display: block;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "HiraKakuProN-W6", sans-serif;
  font-weight: 700;
  padding: 14px 0;
  color: #031d65;
}
@media screen and (min-width: 768px) {
  .global-nav__category {
    font-size: 1.5rem;
    padding: 0 0 12px 0;
    border-bottom: 2px solid #031d65;
    margin-bottom: 12px;
  }
}
.global-nav__sublist {
  padding-bottom: 14px;
  display: none;
}
@media screen and (min-width: 768px) {
  .global-nav__sublist {
    padding-bottom: 0;
    display: block;
  }
}
.global-nav__subitem {
  font-size: 1.3rem;
  color: #666666;
  line-height: 2;
}
.global-nav__subitem a:hover {
  color: #031d65;
  opacity: 1;
}

button.global-nav__category {
  border: none;
  background-color: initial;
  display: block;
  width: 100%;
  text-align: left;
}

/* ============================================
   共通項
============================================ */
.Wrap {
  padding-top: 2rem;
}

.Title {
  font-size: 2rem;
  line-height: 3.5rem;
  margin-top: 0;
  font-weight: bold;
}

.Title_section {
  font-size: 1.8rem;
  margin: 0;
  padding: 0.5rem 0 1.5rem 0;
  font-weight: bold;
}

span.Title-small {
  font-size: 0.7rem;
  letter-spacing: 0.07rem;
}

.-Btn {
  display: block;
  text-align: center;
  border: solid 2px #000;
  border-radius: 999rem;
  padding: 1.5rem 0;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .-Btn {
    max-width: 430px;
    margin: 0 auto;
    font-size: 2.3rem;
    line-height: 4rem;
  }
}
@media screen and (min-width: 1024px) {
  .-Btn {
    font-size: 1.6rem;
    line-height: 2.5rem;
  }
}

.section_box {
  margin-bottom: 2rem;
}

table.table tr:nth-child(even) {
  background-color: #ddd;
}

.orange {
  background-color: #FF5500;
  color: #fff;
}

/* ガイダンス */
.Guidance {
  margin: 5rem auto;
  width: 90%;
}
@media screen and (min-width: 1024px) {
  .Guidance {
    margin: 8rem auto;
  }
}
.Guidance .Guidance_List {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .Guidance .Guidance_List {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.Guidance .Guidance_List .Guidance_Link_thumb {
  margin-bottom: 2rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .Guidance .Guidance_List .Guidance_Link_thumb {
    width: 30%;
    margin: 0 1.5% 4rem 1.5%;
  }
}
.Guidance .Guidance_List .Guidance_Link {
  display: block;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: solid 1px #707070;
}
@media screen and (min-width: 768px) {
  .Guidance .Guidance_List .Guidance_Link {
    width: 30%;
    padding: 0 1.5% 2rem 1.5%;
    border-bottom: none;
    border-right: solid 1px #707070;
  }
}
@media screen and (min-width: 768px) {
  .Guidance .Guidance_List .Guidance_Link:nth-child(3n) {
    border-right: none;
  }
}
.Guidance .Guidance_List img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 1rem;
}
.Guidance .Guidance_List .Guidance_ttl {
  font-size: 4rem;
  letter-spacing: 0.2rem;
  line-height: 5rem;
}
@media screen and (min-width: 768px) {
  .Guidance .Guidance_List .Guidance_ttl {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 1024px) {
  .Guidance .Guidance_List .Guidance_ttl {
    font-size: 4rem;
  }
}
.Guidance .Guidance_List .Guidance_subttl {
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .Guidance .Guidance_List .Guidance_subttl {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1024px) {
  .Guidance .Guidance_List .Guidance_subttl {
    font-size: 1.4rem;
    font-weight: normal;
    letter-spacing: 0.1rem;
  }
}

.border-short:before {
  content: "";
  width: 10%;
  height: 2px;
  background-color: #000;
  display: block;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* ============================================
   パンくずリスト
============================================ */
.breadcrumb {
  padding: 1.5rem 0 0;
}

.breadcrumb__inner {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  font-size: 1.2rem;
  color: #707070;
  line-height: 3rem;
}

.breadcrumb__item + .breadcrumb__item::before {
  content: ">";
  display: inline-block;
  margin: 0 0.5rem;
  color: #aaa;
}

.breadcrumb__item a {
  color: #707070;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb__item a:hover {
  color: var(--color-navy);
  opacity: 1;
}

/* ============================================
   ページネーション（お知らせ一覧）
============================================ */
.news__pager {
  margin-top: 3rem;
  text-align: center;
}

.news__pager .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
}

.news__pager .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.5rem;
  font-size: 0.9rem;
  color: #333;
  border: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.news__pager .page-numbers:hover {
  border-color: var(--color-navy);
  color: var(--color-navy);
  opacity: 1;
}

.news__pager .page-numbers.current {
  font-weight: 700;
  font-size: 1.1rem;
  color: #000;
  border-color: #000;
}

.news__pager .page-numbers.prev,
.news__pager .page-numbers.next {
  font-size: 0.9rem;
  color: #707070;
}

/* ============================================
   お知らせ詳細
============================================ */
.news-detail {
  padding: 3rem 0 4rem;
}

.news-detail__inner {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
}

.news-detail__header {
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.news-detail__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.news-detail__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
}

.news-detail__body {
  line-height: 2;
  margin-bottom: 3rem;
}

.news-detail__body p {
  margin-bottom: 1.25rem;
}

.news-detail__body h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-navy);
}

.news-detail__body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 1.5rem 0 0.75rem;
}

.news-detail__body ul,
.news-detail__body ol {
  margin: 0 0 1.25rem 1.5rem;
  padding: 0;
}

.news-detail__body ul {
  list-style: disc;
}

.news-detail__body ol {
  list-style: decimal;
}

.news-detail__body li {
  margin-bottom: 0.5rem;
}

.news-detail__body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.news-detail__body table th,
.news-detail__body table td {
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--color-border);
  text-align: left;
}

.news-detail__body table th {
  background-color: #f5f5f5;
  font-weight: 700;
}

.news-detail__back {
  margin-top: 3rem;
  text-align: center;
}

.news-detail__back .__btn {
  max-width: 300px;
  display: block;
  text-align: center;
  border: solid 2px #000;
  border-radius: 999rem;
  padding: 0.5rem 0;
  font-weight: bold;
  margin: 0 auto;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.news-detail__back .__btn:hover {
  background-color: #000;
  color: #fff;
  opacity: 1;
}

.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 400px;
  max-height: 700px;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .hero {
    max-height: 100vh;
  }
}
.hero__slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero__slide.is-active {
  opacity: 1;
}
.hero__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}
.hero__content {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  color: #ffffff;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .hero__content {
    bottom: 80px;
    left: 140px;
  }
}
.hero__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 16vw, 13rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  text-align: center;
}
.hero__subtitle {
  font-family: "Noto Serif JP", "HiraMinProN-W3", serif;
  font-size: clamp(1.2rem, 3vw, 2.5rem);
  letter-spacing: 0.15em;
}
.hero__indicators {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 2;
  display: flex;
  gap: 8px;
}
@media screen and (min-width: 1024px) {
  .hero__indicators {
    right: 140px;
    bottom: 30px;
  }
}
.hero__indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.hero__indicator.is-active {
  background-color: #ffffff;
  transform: scale(1.3);
}

.news {
  padding: 50px 0 60px;
  background-color: #ffffff;
}
@media screen and (min-width: 1024px) {
  .news {
    padding: 70px 0 80px;
  }
}
.news__inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 1024px) {
  .news__inner {
    padding-left: 140px;
    padding-right: 140px;
  }
}
@media screen and (min-width: 768px) {
  .news__inner {
    width: 90%;
    margin: 0 auto;
    padding: 0;
  }
}
.news__title {
  font-family: "Noto Sans JP", "HiraKakuProN-W6", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .news__title {
    font-size: 2.4rem;
    margin-bottom: 32px;
  }
}
.news__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0 0 3rem 0;
  margin: 0 0 3rem 0;
  border-bottom: 1px solid #000;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .news__item {
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
  }
}
.news__date {
  font-size: 1.3rem;
  color: #000000;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .news__date {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1024px) {
  .news__date {
    width: 15%;
  }
}
.news__category {
  display: inline-block;
  padding: 0.5rem 10px;
  line-height: 100%;
  font-size: 1.1rem;
  white-space: nowrap;
  border: 1px solid currentColor;
}
@media screen and (min-width: 768px) {
  .news__category {
    font-size: 1.2rem;
  }
}
.news__category--school-event {
  color: #031d65;
  border-color: #031d65;
}
.news__category--admission {
  color: #e87400;
  border-color: #e87400;
}
.news__category--notice {
  color: #707070;
  border-color: #707070;
}
.news__ttl {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .news__ttl {
    font-size: 1.8rem;
  }
}
.news__text {
  font-size: 1.4rem;
  flex: 1;
  min-width: 0;
}
.news__more {
  margin-top: 32px;
  text-align: center;
}
.news__more-btn {
  display: inline-block;
  padding: 12px 60px;
  border: 1px solid #000000;
  font-size: 1.4rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.news__more-btn:hover {
  background-color: #000000;
  color: #ffffff;
  opacity: 1;
}

.school-photo {
  width: 100%;
  height: 260px;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .school-photo {
    height: 500px;
  }
}
.school-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 60%;
     object-position: center 60%;
}

.philosophy {
  padding: 60px 0 70px;
}
@media screen and (min-width: 768px) {
  .philosophy {
    padding: 3rem 0 6rem;
  }
}
@media screen and (min-width: 1024px) {
  .philosophy {
    padding: 80px 0 100px;
  }
}
.philosophy__inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 1024px) {
  .philosophy__inner {
    padding-left: 140px;
    padding-right: 140px;
  }
}
@media screen and (min-width: 768px) {
  .philosophy__inner {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  .philosophy__inner {
    padding: 0;
    gap: 7%;
  }
}
.philosophy__heading {
  flex-shrink: 0;
  margin-bottom: 30px;
}
@media screen and (min-width: 1024px) {
  .philosophy__heading {
    margin-bottom: 0;
    min-width: 240px;
  }
}
.philosophy__title {
  font-family: "Noto Serif JP", "HiraMinProN-W3", serif;
  font-size: clamp(2.8rem, 11vw, 5rem);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .philosophy__title {
    font-size: 6rem;
  }
}
.philosophy__content {
  flex: 1;
}
.philosophy__en-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: #aaaaaa;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}
.philosophy__text {
  font-size: 1.5rem;
  line-height: 2;
  color: #000000;
  margin-bottom: 36px;
}
@media screen and (min-width: 1024px) {
  .philosophy__text {
    font-size: 1.6rem;
  }
}
.philosophy__text .highlight {
  position: relative;
  display: inline;
}
.philosophy__text .highlight::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #ffff00;
  transition: width 0.6s ease;
}
.philosophy__text .highlight.is-underlined::after {
  width: 100%;
}
.philosophy__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.philosophy__btn {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid #000000;
  font-size: 1.4rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.philosophy__btn:hover {
  background-color: #000000;
  color: #ffffff;
  opacity: 1;
}
.philosophy .Top_School_Btn {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .philosophy .Top_School_Btn {
    display: flex;
    justify-content: space-between;
  }
  .philosophy .Top_School_Btn .-Btn {
    width: 45%;
    margin: 0;
    font-size: 2rem;
    line-height: 2.6rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  .philosophy .Top_School_Btn .-Btn {
    font-size: 1.6rem;
    line-height: 2.5rem;
  }
}

.menu-grid {
  padding: 0 0 60px;
}
@media screen and (min-width: 1024px) {
  .menu-grid {
    padding: 0 0 80px;
  }
}
.menu-grid__inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 1024px) {
  .menu-grid__inner {
    padding-left: 140px;
    padding-right: 140px;
  }
}
.menu-grid__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 32px;
}
@media screen and (min-width: 1024px) {
  .menu-grid__title {
    font-size: 2.4rem;
  }
}
.menu-grid__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .menu-grid__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
.menu-grid__item {
  display: block;
  overflow: hidden;
}
.menu-grid__item:hover {
  opacity: 1;
}
.menu-grid__item:hover .menu-grid__img img {
  transform: scale(1.04);
}
.menu-grid__img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 14px;
}
.menu-grid__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-grid__en-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
@media screen and (min-width: 1024px) {
  .menu-grid__en-title {
    font-size: 2.6rem;
  }
}
.menu-grid__ja-title {
  font-size: 1.2rem;
  color: #707070;
  letter-spacing: 0.1em;
}

.sub-menu-grid {
  background-color: #f5f5f5;
  padding: 50px 0 60px;
}
@media screen and (min-width: 1024px) {
  .sub-menu-grid {
    padding: 70px 0 80px;
  }
}
.sub-menu-grid__inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 1024px) {
  .sub-menu-grid__inner {
    padding-left: 140px;
    padding-right: 140px;
  }
}
.sub-menu-grid__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media screen and (min-width: 768px) {
  .sub-menu-grid__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.sub-menu-grid__item {
  display: block;
  padding: 40px 30px;
  text-align: center;
  border-bottom: 1px solid #c7c7c7;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .sub-menu-grid__item {
    border-bottom: none;
    border-right: 1px solid #c7c7c7;
  }
  .sub-menu-grid__item:last-child {
    border-right: none;
  }
}
.sub-menu-grid__item:hover {
  background-color: rgb(237.35, 237.35, 237.35);
  opacity: 1;
}
.sub-menu-grid__en-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
@media screen and (min-width: 1024px) {
  .sub-menu-grid__en-title {
    font-size: 3rem;
  }
}
.sub-menu-grid__ja-title {
  font-size: 1.2rem;
  color: #707070;
  letter-spacing: 0.1em;
}

.site-footer {
  background-color: #F7F7F7;
  padding: 50px 0 20px;
}
.site-footer__inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 1024px) {
  .site-footer__inner {
    padding-left: 140px;
    padding-right: 140px;
  }
}
.site-footer__logo-area {
  text-align: center;
  margin-bottom: 40px;
}
.site-footer__logo-area img {
  height: 60px;
  width: auto;
  margin: 0 auto 12px;
}
.site-footer__school-name {
  font-family: "Noto Serif JP", "HiraMinProN-W3", serif;
  font-size: 2rem;
  margin-bottom: 4px;
}
.site-footer__school-name-en {
  font-size: 1.1rem;
  color: #aaaaaa;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.site-footer__address {
  font-style: normal;
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
  color: #000;
  line-height: 1.9;
}
.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 16px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .site-footer__nav {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }
}
.site-footer__nav-col-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #c7c7c7;
}
.site-footer__nav-col-list li {
  font-size: 1.4rem;
  line-height: 2.2;
  color: #666666;
}
.site-footer__copyright {
  text-align: center;
  font-size: 1.1rem;
  color: #aaaaaa;
  padding-top: 20px;
  border-top: 1px solid #c7c7c7;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.nav-overlay.is-active {
  opacity: 1;
  pointer-events: all;
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.-marker {
  background: linear-gradient(transparent 0%, rgb(255, 255, 0) 0%);
  display: inline;
  font-weight: bold;
  padding: 0.25rem 0;
  /* 背景の繰り返しを停止 */
  background-repeat: no-repeat;
  /* マーカーの横方向を0にして縮める */
  background-size: 0% 100%;
  /* マーカーが引かれる速度を指定 */
  transition: background-size 1.5s;
}

/* マーカーが引かれる際に付与するクラス */
.-marker.on {
  /* 横方向を100%にして、マーカーを引く */
  background-size: 100% 100%;
}/*# sourceMappingURL=style.css.map */