@import url(https://fonts.googleapis.com/css2?family=Jost:wght@100..900&family=Noto+Sans+JP:wght@100..900&display=swap);
.bl-section-heading {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 30px;
  font-size: 1.75rem;
  font-weight: 700;
}
@media screen and (max-width: 48rem) {
  .bl-section-heading {
    padding-left: 22px;
    font-size: 1.5rem;
  }
}
.bl-section-heading::before {
  position: absolute;
  inset-inline-start: 0;
  width: 14px;
  height: 14px;
  content: "";
  background-color: #0063b2;
  border-radius: 0.125em;
}

.bl-event {
  display: grid;
  row-gap: 64px;
}
@media screen and (max-width: 48rem) {
  .bl-event {
    row-gap: 0;
  }
}
.bl-event__header {
  display: grid;
  grid-template-areas: "area . img" "title tags img" "description description img";
  grid-template-rows: auto auto 1fr;
  grid-template-columns: 1fr auto auto;
  row-gap: 16px;
  align-items: start;
}
@media screen and (max-width: 48rem) {
  .bl-event__header {
    grid-template-areas: "area area" "title title" "description description" "img tags";
    grid-template-rows: repeat(4, auto);
    grid-template-columns: 1fr auto;
    row-gap: 0;
  }
}
.bl-event__header-area {
  grid-area: area;
  width: -moz-max-content;
  width: max-content;
  padding: 8px 16px;
  color: #ec661b;
  background-color: rgba(236, 102, 27, 0.15);
  border-radius: 0.25em;
}
@media screen and (max-width: 48rem) {
  .bl-event__header-area {
    padding: 8px;
    font-size: 0.875rem;
  }
}
.bl-event__header-title {
  grid-area: title;
  font-size: 2rem;
  font-weight: 700;
  color: #ec661b;
}
@media screen and (max-width: 48rem) {
  .bl-event__header-title {
    margin-top: 8px;
    font-size: 1.75rem;
  }
}
.bl-event__header-description {
  grid-area: description;
  font-size: 1.125rem;
}
@media screen and (max-width: 48rem) {
  .bl-event__header-description {
    margin-top: 16px;
    font-size: 0.9375rem;
  }
}
.bl-event__img {
  grid-area: img;
  align-self: center;
  width: 262px;
  aspect-ratio: 1/1;
  margin-left: 40px;
}
@media screen and (max-width: 48rem) {
  .bl-event__img {
    justify-self: center;
    margin: 27px -56px 0 0;
  }
}
.bl-event__tags {
  position: relative;
  display: flex;
  grid-area: tags;
  -moz-column-gap: 4px;
       column-gap: 4px;
  justify-content: flex-end;
  height: -moz-fit-content;
  height: fit-content;
  margin-block: 6px;
  margin-left: 24px;
}
@media screen and (max-width: 48rem) {
  .bl-event__tags {
    flex-direction: column;
    row-gap: 4px;
    margin-top: 24px;
    margin-bottom: 0;
    margin-left: 0;
  }
}
.bl-event__tag {
  display: grid;
  justify-items: center;
  padding: 8px;
  background-color: #0063b2;
  border-radius: 0.25em;
}
.bl-event__tag-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
}
.bl-event__tag-value {
  margin-top: -5px;
  font-size: 1.25rem;
  color: #fff;
}
@media screen and (max-width: 48rem) {
  .bl-event__tag-value {
    font-size: 1rem;
  }
}
.bl-event__compatible {
  display: grid;
  row-gap: 16px;
  padding: 24px;
  border: 1px solid #e0e1e2;
  border-radius: 0.5em;
}
@media screen and (max-width: 48rem) {
  .bl-event__compatible {
    padding-inline: 20px;
    padding-bottom: 32px;
    margin-top: 48px;
    box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.08);
  }
}
.bl-event__compatible-title {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 22px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0063b2;
}
@media screen and (max-width: 48rem) {
  .bl-event__compatible-title {
    font-size: 1rem;
  }
}
.bl-event__compatible-title::before {
  position: absolute;
  left: 0;
  width: 14px;
  aspect-ratio: 1/1;
  content: "";
  background-color: #0063b2;
  border-radius: 0.125em;
}
.bl-event__compatible-text {
  font-size: 1rem;
}
@media screen and (max-width: 48rem) {
  .bl-event__compatible-text {
    font-size: 0.9375rem;
  }
}

.bl-master-detail {
  position: relative;
  display: grid;
  grid-template-columns: 160px 1fr;
}
.bl-master-detail__tab {
  display: grid;
  grid-template-rows: min-content;
  grid-template-columns: 160px;
  align-content: flex-start;
  color: #ec661b;
}
.bl-master-detail__tab-item {
  display: flex;
  align-items: center;
  align-self: start;
  justify-content: space-between;
  padding: 11px 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}
@media screen and (max-width: 64rem) {
  .bl-master-detail__tab-item {
    padding: 6px 0;
  }
}
.bl-master-detail__tab-item:focus-visible {
  outline-offset: -1px;
}
.bl-master-detail__tab-item.is-active {
  background-color: #e6e6e6;
}
.bl-master-detail__View {
  background-color: rgba(230, 230, 230, 0.4);
  border-bottom-right-radius: 2em;
}
.bl-master-detail__detail {
  position: absolute;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 8px;
  color: #555;
}
.bl-master-detail__detail.is-active {
  position: relative;
  display: grid;
  padding: 32px;
}
.bl-master-detail__link {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 8px;
  font-size: 0.875rem;
}
@media (any-hover: hover) {
  .bl-master-detail__link:hover {
    opacity: 0.7;
  }
}

.bl-section-nav {
  background-color: #fff;
  border: 2px solid #e0e1e2;
  border-radius: 0.5em;
  box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.08);
}
.bl-section-nav__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 48rem) {
  .bl-section-nav__list {
    grid-template-columns: 1fr;
  }
}
.bl-section-nav__list::before {
  position: absolute;
  inset-block-start: 50%;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #e0e1e2;
}
@media screen and (max-width: 48rem) {
  .bl-section-nav__list::before {
    content: none;
  }
}
.bl-section-nav__list--single-row::before {
  content: none;
}
.bl-section-nav__item {
  position: relative;
  display: grid;
  align-items: center;
  margin: 8px;
}
.bl-section-nav__item::before {
  position: absolute;
  inset-inline-start: -8px;
  width: 1px;
  height: 24px;
  content: "";
  background-color: #e0e1e2;
}
@media screen and (max-width: 48rem) {
  .bl-section-nav__item::before {
    inset-block-start: -8px;
    inset-inline: 0;
    width: 100%;
    height: 2px;
  }
}
.bl-section-nav__item:nth-of-type(5n)::before {
  content: none;
}
@media screen and (max-width: 48rem) {
  .bl-section-nav__item:nth-of-type(5n)::before {
    content: "";
  }
}
.bl-section-nav__item .bl-section-nav__item--empty::before {
  content: none;
}
.bl-section-nav__item:first-of-type::before {
  content: none;
}
@media screen and (max-width: 48rem) {
  .bl-section-nav__item:first-of-type::before {
    content: none;
  }
}
@media screen and (max-width: 48rem) {
  .bl-section-nav__item--empty {
    display: none;
  }
}
.bl-section-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 0.5em;
  transition-duration: 0.3s;
  transition-property: background-color, color;
}
@media screen and (max-width: 48rem) {
  .bl-section-nav__link {
    padding-right: 14px;
    font-size: 0.875rem;
  }
}
@media (any-hover: hover) {
  .bl-section-nav__link:hover {
    color: #fff;
    background-color: #ec661b;
  }
  .bl-section-nav__link:hover .bl-section-nav__icon {
    fill: #fff;
  }
}
.bl-section-nav__icon {
  fill: #ec661b;
}

.bl-info-panel {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 48rem) {
  .bl-info-panel {
    flex-direction: column;
  }
}
.bl-info-panel__item {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  width: 100%;
  padding: 16px;
  border: 1px solid #e0e1e2;
  border-radius: 0.5em;
}
.bl-info-panel__heading {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 22px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0063b2;
  word-break: keep-all;
}
@media screen and (max-width: 48rem) {
  .bl-info-panel__heading {
    font-size: 1rem;
  }
}
.bl-info-panel__heading::before {
  position: absolute;
  inset-inline-start: 0;
  width: 14px;
  height: 14px;
  content: "";
  background-color: #0063b2;
  border-radius: 0.125em;
}
.bl-info-panel__content {
  font-size: 0.875rem;
}

.bl-nav-panel {
  padding: 8px;
  background-color: #555;
  border-radius: 0.5em;
}
@media screen and (max-width: 48rem) {
  .bl-nav-panel {
    padding: 12px 4px 4px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  }
}
.bl-nav-panel__item + .bl-nav-panel__item {
  margin-top: 16px;
}
.bl-nav-panel__lead {
  display: flex;
  align-items: center;
  margin: 8px 24px 16px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 48rem) {
  .bl-nav-panel__lead {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
    margin: 0 12px 12px;
    font-size: 0.9375rem;
  }
}
.bl-nav-panel__sub-txt {
  position: relative;
  padding-inline: 24px;
  margin-inline-start: 32px;
  font-size: 0.875rem;
  font-weight: 500;
}
@media screen and (max-width: 48rem) {
  .bl-nav-panel__sub-txt {
    padding: 0;
    margin: 0;
  }
}
.bl-nav-panel__sub-txt::before {
  position: absolute;
  inset-inline-start: 0;
  width: 1px;
  height: 100%;
  content: "";
  background-color: #fff;
}
@media screen and (max-width: 48rem) {
  .bl-nav-panel__sub-txt::before {
    content: none;
  }
}

.section-tabs {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
@media screen and (max-width: 48rem) {
  .section-tabs {
    flex-wrap: wrap;
  }
}
.section-tabs__item {
  display: flex;
  width: 100%;
  border-top: 1px solid #e0e1e2;
  border-bottom: 1px solid #e0e1e2;
  box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 48rem) {
  .section-tabs__item {
    flex: 0 1 33.3333333333%;
  }
}
.section-tabs__item + .section-tabs__item .section-tabs__tab::before {
  content: "";
}
.section-tabs__item:first-of-type {
  border-left: 1px solid #e0e1e2;
  border-top-left-radius: 0.5em;
  border-bottom-left-radius: 0.5em;
}
.section-tabs__item:first-of-type .section-tabs__tab {
  border-top-left-radius: 0.5em;
  border-bottom-left-radius: 0.5em;
}
.section-tabs__item:last-of-type {
  border-right: 1px solid #e0e1e2;
  border-top-right-radius: 0.5em;
  border-bottom-right-radius: 0.5em;
}
.section-tabs__item:last-of-type .section-tabs__tab {
  border-top-right-radius: 0.5em;
  border-bottom-right-radius: 0.5em;
}
@media screen and (max-width: 48rem) {
  .section-tabs__item:nth-child(3) {
    border-right: 1px solid #e0e1e2;
    border-top-right-radius: 0.5em;
    border-bottom-right-radius: 0.5em;
  }
  .section-tabs__item:nth-child(3) .section-tabs__tab {
    border-top-right-radius: 0.5em;
    border-bottom-right-radius: 0.5em;
  }
}
@media screen and (max-width: 48rem) {
  .section-tabs__item:nth-child(4) {
    border-left: 1px solid #e0e1e2;
    border-top-left-radius: 0.5em;
    border-bottom-left-radius: 0.5em;
  }
  .section-tabs__item:nth-child(4) .section-tabs__tab {
    border-top-left-radius: 0.5em;
    border-bottom-left-radius: 0.5em;
  }
}
@media screen and (max-width: 48rem) {
  .section-tabs__item:nth-child(n+4) {
    margin-top: 20px;
  }
}
.section-tabs__item:nth-child(4n) .section-tabs__tab::before {
  content: none;
}
.section-tabs__tab {
  position: relative;
  display: grid;
  align-items: center;
  justify-items: center;
  width: 100%;
  padding-block: 16px;
  font-size: 0.875rem;
  background-color: #fff;
  transition: color 0.3s;
}
.section-tabs__tab::before {
  position: absolute;
  left: 0;
  width: 1px;
  height: 22px;
  background-color: #e0e1e2;
}
.section-tabs__tab::after {
  position: absolute;
  bottom: 0;
  width: 80px;
  height: 4px;
  pointer-events: none;
  content: "";
  background-color: #ec661b;
  border-radius: 0.125em 0.125em 0 0;
  opacity: 0;
  transition: opacity 0.3s;
}
@media screen and (max-width: 40rem) {
  .section-tabs__tab::after {
    width: 66px;
  }
}
@media (any-hover: hover) {
  .section-tabs__tab:hover {
    color: #ec661b;
  }
  .section-tabs__tab:hover::after {
    opacity: 1;
  }
}
.section-tabs__tab:focus-visible {
  color: #ec661b;
}
.section-tabs__tab:focus-visible::after {
  opacity: 1;
}
.section-tabs__tab.is-active {
  color: #ec661b;
}
.section-tabs__tab.is-active::after {
  opacity: 1;
}

.ly-header {
  position: relative;
}
.ly-header__follow {
  position: fixed;
  inset: 0 0 auto;
  z-index: 998;
  padding-inline: 100px;
  padding-top: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
}
@media screen and (max-width: 64rem) {
  .ly-header__follow {
    padding: 0;
  }
}
.ly-header__inner-lg {
  display: grid;
  grid-template-areas: "branding links" "phone    phone" "nav      nav";
  grid-template-columns: 1fr auto;
  justify-content: space-between;
}
@media screen and (max-width: 64rem) {
  .ly-header__inner-lg {
    display: none;
  }
}
.ly-header__inner-md {
  width: 100%;
}
.ly-header__inner-md .ly-header__company {
  width: auto;
  padding: 6px 20px;
  font-size: 0.75rem;
  background-color: #e0e1e2;
}
.ly-header__branding {
  display: flex;
  grid-area: branding;
  -moz-column-gap: 24px;
       column-gap: 24px;
  align-items: flex-end;
}
.ly-header__branding-wrap {
  display: none;
  -moz-column-gap: 24px;
       column-gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
}
@media screen and (max-width: 64rem) {
  .ly-header__branding-wrap {
    display: flex;
    padding-inline: 0;
    padding-inline: 20px;
    background-color: #fff;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
  }
}
.ly-header__logo {
  width: 107px;
  height: auto;
}
.ly-header__logo-link {
  display: block;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .ly-header__logo-link:hover {
    opacity: 0.7;
  }
}
.ly-header__logo-link:focus-visible {
  opacity: 0.7;
}
.ly-header__school-link {
  display: block;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .ly-header__school-link:hover {
    opacity: 0.7;
  }
}
.ly-header__school-link:focus-visible {
  opacity: 0.7;
}
.ly-header__company {
  font-size: 1rem;
}
.ly-header__guide {
  font-size: 0.875rem;
  color: #ec661b;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .ly-header__guide:hover {
    opacity: 0.7;
  }
}
.ly-header__guide:focus-visible {
  opacity: 0.7;
}
.ly-header__phone {
  display: flex;
  grid-area: phone;
  -moz-column-gap: 24px;
       column-gap: 24px;
  justify-self: end;
  margin-top: 8px;
}
.ly-header__icon {
  width: 16px;
  aspect-ratio: 1/1;
}
.ly-header__nav {
  position: relative;
  grid-area: nav;
  margin-top: 16px;
}
@media screen and (max-width: 48rem) {
  .ly-header__nav.ly-header__lg-only {
    display: none;
  }
}
.ly-header__list {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  padding: 8px;
  background-color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid #e0e1e2;
  border-radius: 2em;
  box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.08);
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
  transition: border-radius 0.3s, box-shadow 0.3s;
}
.ly-header__list.is-active {
  border-radius: 2em 2em 0 0;
  box-shadow: none;
}
.ly-header__item {
  padding-inline: 8px;
}
.ly-header__item + .ly-header__item {
  border-left: 1px solid #e0e1e2;
}
.ly-header__link {
  display: block;
  width: 100%;
  padding-block: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #ec661b;
  text-align: center;
  border-radius: calc(infinity * 1px);
  transition: color 0.3s, background-color 0.3s;
}
@media screen and (max-width: 48rem) {
  .ly-header__link {
    font-size: 1rem;
  }
}
.ly-header__link.js-tabToggle span {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-right: 28px;
}
.ly-header__link.js-tabToggle span::before, .ly-header__link.js-tabToggle span::after {
  position: absolute;
  right: 2px;
  display: block;
  width: 12px;
  height: 2px;
  content: "";
  background-color: #ec661b;
  border-radius: calc(infinity * 1px);
  transition: background-color 0.3s, rotate 0.3s;
}
.ly-header__link.js-tabToggle span::after {
  rotate: 90deg;
}
.ly-header__link.js-tabToggle.is-active span::after {
  rotate: 0deg;
}
@media (any-hover: hover) {
  .ly-header__link:hover {
    color: #fff;
    background-color: #ec661b;
  }
  .ly-header__link:hover.js-tabToggle span::before, .ly-header__link:hover.js-tabToggle span::after {
    background-color: #fff;
  }
}
.ly-header__link:focus-visible {
  color: #fff;
  background-color: #ec661b;
}
.ly-header__link:focus-visible.js-tabToggle span::before, .ly-header__link:focus-visible.js-tabToggle span::after {
  background-color: #fff;
}
.ly-header__dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 1;
  display: none;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 0 0 2em 2em;
  box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.08);
  opacity: 0;
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
  translate: 0 -1rem;
  transition: opacity 0.3s, translate 0.3s;
}
.ly-header__dropdown.is-animating {
  display: flex;
}
.ly-header__dropdown.is-visible {
  display: flex;
  opacity: 1;
  translate: 0 0;
}
.ly-header__dropdown--qualifications {
  flex-direction: column;
  row-gap: 32px;
  padding: 40px 0 0 24px;
}
.ly-header__dropdownTop {
  width: 240px;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 1rem;
  font-weight: 700;
}
.ly-header__dropdownList {
  display: grid;
}
.ly-header__dropdownList--schools {
  grid-template-rows: repeat(5, auto);
  grid-template-columns: repeat(4, 128px);
  grid-auto-flow: column;
  row-gap: 8px;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
.ly-header__dropdownList--material {
  display: flex;
  -moz-column-gap: 60px;
       column-gap: 60px;
}
.ly-header__dropdownList--material:not(:first-of-type) {
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid #e0e1e2;
}
.ly-header__dropdownLink {
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1rem;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .ly-header__dropdownLink:hover {
    opacity: 0.7;
  }
}
.ly-header__dropdownLink:focus-visible {
  opacity: 0.7;
}
.ly-header__note {
  display: contents;
  font-size: 0.875rem;
}
@media screen and (max-width: 48rem) {
  .ly-header__note {
    font-size: 0.6875rem;
  }
}
.ly-header__hamburgerLine {
  position: relative;
  display: block;
  width: 32px;
  height: 2px;
  background-color: #555;
  transition: all 0.3s;
}
.ly-header__hamburgerLine:nth-child(1) {
  content: "";
  transform: translateY(-10px) rotate(0deg);
}
.ly-header__hamburgerLine:nth-child(3) {
  content: "";
  transform: translateY(10px) rotate(0deg);
}
.ly-header__hamburger.is-open .ly-header__hamburgerLine:nth-child(1) {
  transform: translateY(2px) rotate(45deg);
}
.ly-header__hamburger.is-open .ly-header__hamburgerLine:nth-child(2) {
  display: none;
}
.ly-header__hamburger.is-open .ly-header__hamburgerLine:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}
.ly-header .ly-spNav {
  position: fixed;
  top: calc(-100vh - var(--header-height-sass));
  left: 0;
  z-index: 998;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  width: 100vw;
  height: calc(100vh - 112px);
  padding: 40px 20px 184px;
  overflow-y: scroll;
  overscroll-behavior: contain;
  background-color: #fff;
}
@media screen and (min-width: 64rem), print {
  .ly-header .ly-spNav {
    display: none;
  }
}
.ly-header .ly-spNav.is-open {
  top: var(--header-height-sass);
}
.ly-header .ly-spNav__item {
  min-height: 56px;
  border-top: 1px solid #e0e1e2;
}
.ly-header .ly-spNav__item:last-child {
  border-bottom: 1px solid #e0e1e2;
}
.ly-header .ly-spNav__details::details-content {
  overflow: clip;
  transition-duration: 0.3s;
  transition-property: content-visibility, block-size;
  transition-behavior: allow-discrete;
  interpolate-size: allow-keywords;
}
.ly-header .ly-spNav__details:not(:open)::details-content {
  block-size: 0;
}
.ly-header .ly-spNav__details:open > .ly-spNav__link .ly-spNav__line::before {
  transform: rotate(0deg);
}
.ly-header .ly-spNav__link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 10px 16px 0;
  color: #ec661b;
}
.ly-header .ly-spNav__txt {
  display: inline-flex;
  width: 100%;
  padding: 16px 10px 16px 0;
  color: #7a7a7a;
}
.ly-header .ly-spNav__line {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 2px;
  background-color: #ec661b;
  border-radius: calc(infinity * 1px);
  transition: transform 0.3s;
}
.ly-header .ly-spNav__line::before {
  position: absolute;
  top: 0;
  width: 12px;
  height: 2px;
  content: "";
  background-color: #ec661b;
  border-radius: calc(infinity * 1px);
  transform: rotate(-90deg);
  transition: transform 0.3s;
}
.ly-header .ly-spNav__icon {
  display: inline-block;
  width: 16px;
  aspect-ratio: 1/1;
}
.ly-header .ly-spNav__dropdown {
  box-sizing: content-box;
  font-size: 0.875rem;
}
.ly-header .ly-spNav__dropdownList {
  display: grid;
  grid-auto-flow: row;
  row-gap: 20px;
  -moz-column-gap: 24px;
       column-gap: 24px;
  padding-top: 24px;
  padding-bottom: 16px;
}
.ly-header .ly-spNav__dropdownList--qualifications {
  grid-template-columns: repeat(2, 1fr);
  padding-top: 0;
  border-bottom: 1px solid #f4f4f4;
}
.ly-header .ly-spNav__dropdownList--material {
  flex-direction: column;
  padding-top: 0;
}
.ly-header .ly-spNav__dropdownLink {
  display: inline-block;
  width: 100%;
}
.ly-header .ly-spNav__guides {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
.ly-header .ly-spNav__guide {
  display: flex;
  -moz-column-gap: 4px;
       column-gap: 4px;
  align-items: center;
  font-size: 0.8125rem;
  color: #ec661b;
}
.ly-header .ly-spNav__phone {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ly-header .ly-spNav__phone .el-telButton__number {
  font-weight: 700;
}
.ly-header .ly-header__dropdownList li.has-submenu {
  position: relative;
}
.ly-header .submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 999;
  display: none;
  min-width: 200px;
  background: #fff;
  border: 1px solid #ccc;
}
.ly-header .ly-header__dropdownList li.has-submenu:hover .submenu {
  display: block;
}
.ly-header .submenu li a {
  display: block;
  padding: 8px 12px;
  color: #333;
  text-decoration: none;
}
.ly-header .submenu li a:hover {
  background: #f5f5f5;
}

*,
*::after,
*::before {
  scroll-behavior: smooth;
}

:where(body) {
  min-height: 100svh;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  font-feature-settings: normal;
  line-height: 1.6;
  color: #555;
  letter-spacing: 0.04em;
  word-break: normal;
  overflow-wrap: anywhere;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-break: strict;
}
@media screen and (max-width: 48rem) {
  :where(body) {
    font-size: 0.9375rem;
  }
}
:where(body).is-open {
  overflow: hidden;
}

:where(::-moz-selection) {
  color: #fff;
  background: #ec661b;
}

:where(::selection) {
  color: #fff;
  background: #ec661b;
}

[id],
:focus {
  scroll-margin-block-start: var(--header-height-sass);
}

.ly-breadcrumb {
  padding-inline: 124px;
  padding-top: calc(var(--header-height-sass) + 32px);
}
@media screen and (max-width: 64rem) {
  .ly-breadcrumb {
    padding: calc(var(--header-height-sass) + 32px) 60px 0 20px;
  }
}
@media screen and (max-width: 64rem) {
  .ly-breadcrumb--news-school {
    padding-right: 20px;
  }
}
@media screen and (max-width: 64rem) {
  .ly-breadcrumb--news-school .el-breadcrumb__list {
    flex-wrap: wrap;
  }
}

.guide {
  position: relative;
  overflow: visible;
}
.guide::before {
  position: absolute;
  inset-block: 619px 0;
  inset-inline: 0;
  z-index: -1;
  content: "";
  background: top left/100% repeat url("/wp-content/themes/my-theme/dist/assets/bg/general_icon.png");
}
@media screen and (max-width: 80rem) {
  .guide::before {
    background: none;
  }
}
.guide::after {
  position: absolute;
  inset-block-start: -183px;
  inset-inline-end: 0;
  z-index: -1;
  width: 173px;
  height: 574px;
  content: "";
  background: top left/auto no-repeat url("/wp-content/themes/my-theme/dist/assets/bg/general_square.png");
}
@media screen and (max-width: 80rem) {
  .guide::after {
    background: none;
  }
}
@media screen and (max-width: 48rem) {
  .guide {
    overflow: hidden;
  }
}
@media screen and (max-width: 48rem) {
  .guide .ly-content__title {
    margin-right: 32px;
    word-break: keep-all;
  }
}
.guide__section {
  margin-top: 140px;
}
@media screen and (max-width: 48rem) {
  .guide__section {
    margin-top: 120px;
  }
}
.guide__section:last-of-type {
  margin-bottom: 140px;
}
@media screen and (max-width: 48rem) {
  .guide__section:last-of-type {
    margin-bottom: 128px;
  }
}
.guide .section-tabs {
  margin-top: 96px;
}
@media screen and (max-width: 48rem) {
  .guide .section-tabs {
    margin-top: 40px;
  }
}
@media screen and (max-width: 48rem) {
  .guide .section-tabs__item {
    flex: 1;
  }
}
.guide .bl-nav-panel {
  margin-top: 74px;
}
@media screen and (max-width: 48rem) {
  .guide .bl-nav-panel {
    margin-top: 60px;
  }
}
@media screen and (max-width: 48rem) {
  .guide__section-txt {
    margin-top: 24px;
    font-size: 0.9375rem;
  }
}
.guide__section-txt + .guide__section-txt {
  margin-top: 8px;
}
.guide__center-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
  text-align: center;
}
@media screen and (max-width: 48rem) {
  .guide__center-content {
    gap: 16px;
  }
}
.guide__center-content .guide__section-txt {
  margin-top: 0;
}
.guide__center-content .el-button {
  margin-top: 0;
}
.guide__flow-section {
  margin-bottom: 140px;
}
@media screen and (max-width: 48rem) {
  .guide__flow-section {
    margin-bottom: 120px;
  }
}
.guide__sub-title {
  margin-bottom: 16px;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 48rem) {
  .guide__sub-title {
    font-size: 1rem;
    word-break: keep-all;
  }
}
.guide__note {
  margin-top: 8px;
  font-size: 0.875rem;
  white-space: pre-line;
}
.guide__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media screen and (max-width: 48rem) {
  .guide__links {
    grid-template-columns: 1fr;
  }
}
.guide__links-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  font-weight: 700;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.5em;
  box-shadow: 0 4px 16px 0 rgba(181, 180, 181, 0.4);
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
}
@media screen and (max-width: 48rem) {
  .guide__links-panel {
    padding-inline: 20px;
  }
}
.guide__links-panel .el-button {
  max-width: 320px;
  margin-top: 40px;
}
@media screen and (max-width: 48rem) {
  .guide__links-panel .el-button {
    max-width: auto;
  }
}
.guide__links-title {
  margin-bottom: 16px;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 48rem) {
  .guide__links-title {
    word-break: keep-all;
  }
}
.guide__links-txt {
  margin-bottom: auto;
}
.guide__grant {
  padding: 32px;
  background-color: #fff;
  border: 1px solid #e0e1e2;
  border-radius: 0.5em;
}
@media screen and (max-width: 48rem) {
  .guide__grant {
    padding: 24px 16px;
  }
}
.guide__grant .ly-content__heading {
  margin-bottom: 24px;
  font-size: 1.5rem;
}
@media screen and (max-width: 48rem) {
  .guide__grant .ly-content__heading {
    font-size: 1.25rem;
  }
}
.guide__grant .bl-info-panel {
  margin-top: 16px;
}
.guide__grant .el-telButton {
  margin-right: 16px;
}
.guide__grant .el-button {
  padding-block: 13px;
  margin-top: 16px;
}
@media screen and (max-width: 48rem) {
  .guide__grant .el-button {
    width: 100%;
  }
}
.guide__grant-content {
  display: grid;
  row-gap: 48px;
}
@media screen and (max-width: 48rem) {
  .guide__grant-description {
    font-size: 0.9375rem;
  }
}
.guide__grant-note {
  font-size: 0.875rem;
}
@media screen and (max-width: 48rem) {
  .guide__grant-fax {
    display: block;
    margin-top: 8px;
  }
}
.guide--highlight {
  font-weight: 700;
  color: #d83323;
}

.bl-flow-slide-wrapper {
  display: grid;
  overflow: visible;
}

.bl-flow-slide {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -moz-column-gap: 52px;
       column-gap: 52px;
  margin-top: 50px;
  overflow: visible;
  font-weight: 700;
  color: #ec661b;
}
@media screen and (max-width: 48rem) {
  .bl-flow-slide {
    margin-top: 40px;
  }
}
.bl-flow-slide.swiper-wrapper {
  -moz-column-gap: 0;
       column-gap: 0;
  height: auto;
  padding-bottom: 16px;
}
.bl-flow-slide__item {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  align-items: center;
  padding: 32px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #e0e1e2;
  border-radius: 0.5em;
  box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.08);
}
.bl-flow-slide__item.swiper-slide {
  display: flex;
  width: 216px;
  height: auto;
  padding-inline: 0;
}
.bl-flow-slide__item.swiper-slide:not(:last-of-type) {
  margin-right: 52px;
}
@media screen and (max-width: 48rem) {
  .bl-flow-slide__item.swiper-slide:not(:last-of-type) {
    margin-right: 64px;
  }
}
.bl-flow-slide__item:not(:first-of-type)::before {
  position: absolute;
  inset-block: 0;
  inset-inline-start: -38px;
  display: flex;
  align-items: center;
  content: url("/wp-content/themes/my-theme/dist/assets/icons/icon_triangle.svg");
  transform: rotate(-90deg);
}
@media screen and (max-width: 48rem) {
  .bl-flow-slide__item:not(:first-of-type)::before {
    inset-inline-start: -44px;
  }
}
.bl-flow-slide__num {
  font-family: "Jost", sans-serif;
}
.bl-flow-slide__txt {
  text-align: center;
  white-space: pre-line;
}
.bl-flow-slide__img-wrapper {
  display: flex;
  justify-content: center;
  height: 80px;
}
.bl-flow-slide__btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
@media screen and (max-width: 48rem) {
  .bl-flow-slide__btn-wrapper {
    margin-top: 40px;
  }
}
@media screen and (max-width: 48rem) {
  .bl-flow-slide__btn-wrapper .el-button {
    width: 100%;
  }
}

.bl-swiper-controls {
  margin-top: 32px;
}
@media screen and (max-width: 48rem) {
  .bl-swiper-controls {
    margin-top: 24px;
  }
}
@media screen and (max-width: 48rem) {
  .bl-swiper-controls--pc {
    display: none;
  }
}
.bl-swiper-controls--sp {
  display: none;
}
@media screen and (max-width: 48rem) {
  .bl-swiper-controls--sp {
    display: block;
  }
}
.bl-swiper-controls__button-wrap {
  position: relative;
  display: flex;
  -moz-column-gap: 24px;
       column-gap: 24px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 48rem) {
  .bl-swiper-controls__button-wrap {
    -moz-column-gap: 16px;
         column-gap: 16px;
    margin: 0;
  }
}
.bl-swiper-controls__pagination-btn {
  flex-shrink: 0;
  padding: 27px;
  background-color: #fff;
  border: 1px solid #f4f4f4;
  border-radius: 50%;
  box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 64rem) {
  .bl-swiper-controls__pagination-btn {
    padding: 23px;
  }
}
.bl-swiper-controls .swiper-pagination-bullets.swiper-pagination-horizontal {
  position: static;
  width: -moz-max-content;
  width: max-content;
}
.bl-swiper-controls .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}
.bl-swiper-controls .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px;
}
.bl-swiper-controls .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet:first-of-type {
  margin-left: 0;
}
.bl-swiper-controls .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet:last-of-type {
  margin-right: 0;
}
.bl-swiper-controls .swiper-pagination-bullet-active {
  background-color: #ec661b;
}
.bl-swiper-controls .swiper-button-disabled {
  opacity: 0.5;
}

.bl-flow {
  display: grid;
  row-gap: 64px;
}
.bl-flow__item {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 32px;
  padding: 32px;
  background-color: #fff;
  border: 1px solid #e0e1e2;
  border-radius: 0.5em;
  box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 64rem) {
  .bl-flow__item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 16px;
  }
}
.bl-flow__item:not(:first-of-type)::before {
  position: absolute;
  top: -38px;
  display: flex;
  justify-content: center;
  width: 100%;
  content: url("/wp-content/themes/my-theme/dist/assets/icons/icon_triangle.svg");
}
.bl-flow__step {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  font-family: "Jost", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  color: #0063b2;
  background-color: rgba(0, 99, 178, 0.1);
  border-radius: 0.5em;
}
@media screen and (max-width: 48rem) {
  .bl-flow__step {
    flex-direction: row;
    padding: 12px 0;
    font-size: 0.8125rem;
  }
}
.bl-flow__num {
  font-size: 1.5rem;
}
.bl-flow__title {
  margin-bottom: 24px;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 48rem) {
  .bl-flow__title {
    margin-bottom: 16px;
    font-size: 1.25rem;
  }
}
.bl-flow__description {
  margin-top: 16px;
}
@media screen and (max-width: 48rem) {
  .bl-flow__description {
    font-size: 0.9375rem;
  }
}
.bl-flow__description a {
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .bl-flow__description a:hover {
    opacity: 0.7;
  }
}
.bl-flow__description a:focus-visible {
  opacity: 0.7;
}
.bl-flow__content-wrapper {
  margin-block: 16px;
}
@media screen and (max-width: 48rem) {
  .bl-flow__content-wrapper {
    margin-block: 8px;
  }
}
.bl-flow__content-group + .bl-flow__content-group {
  margin-top: 32px;
}
.bl-flow__content-group--mt-small + .bl-flow__content-group--mt-small {
  margin-top: 24px;
}
.bl-flow .bl-info-panel {
  margin-top: 32px;
}
.bl-flow .el-button {
  gap: 16px;
  padding-block: 13px;
  margin-top: 24px;
}
@media screen and (max-width: 48rem) {
  .bl-flow .el-button {
    width: 100%;
    padding: 9px 13px;
  }
}
.bl-flow .el-button + .el-button {
  margin-left: 16px;
}
@media screen and (max-width: 48rem) {
  .bl-flow .el-button + .el-button {
    margin-left: 0;
  }
}
.bl-flow .el-telButton {
  padding: 4px 10px;
  margin-right: 14px;
}
.bl-flow__sub-title {
  margin-bottom: 16px;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 48rem) {
  .bl-flow__sub-title {
    margin-bottom: 8px;
    font-size: 1rem;
  }
}
.bl-flow__sub-title + .el-button {
  margin: 0;
}
@media screen and (max-width: 48rem) {
  .bl-flow__txt {
    font-size: 0.9375rem;
  }
}
.bl-flow__txt--payment {
  white-space: pre-line;
}
@media screen and (max-width: 48rem) {
  .bl-flow__fax {
    display: block;
    margin-top: 8px;
  }
}
.bl-flow__note {
  margin-top: 16px;
  font-size: 0.875rem;
}
.bl-flow__note--highlight {
  margin-top: 16px;
  color: #d83323;
}
