@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;
  }
}

.confirmation {
  position: relative;
  padding-bottom: 140px;
}
@media screen and (max-width: 48rem) {
  .confirmation {
    padding-bottom: 128px;
  }
}
.confirmation::before {
  position: absolute;
  inset-block: -150px 0;
  inset-inline: 0;
  z-index: -1;
  content: "";
  background: top left/100% repeat url("/wp-content/themes/my-theme/dist/assets/bg/general.png");
}
@media screen and (max-width: 80rem) {
  .confirmation::before {
    background: none;
  }
}
.confirmation__section-wrapper {
  display: grid;
  row-gap: 140px;
}
@media screen and (max-width: 48rem) {
  .confirmation__section-wrapper {
    row-gap: 120px;
  }
}
.confirmation__header-btn {
  margin-top: 16px;
}
@media screen and (max-width: 48rem) {
  .confirmation__header-btn {
    margin-top: 40px;
  }
}
.confirmation__header-btn .el-button {
  -moz-column-gap: 16px;
       column-gap: 16px;
  padding: 13px 24px;
}
@media screen and (max-width: 48rem) {
  .confirmation__header-btn .el-button {
    padding: 10px 40px 10px 32px;
    font-size: 0.875rem;
    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) {
  .confirmation__header-btn .el-button__text {
    text-align: left;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
}
@media screen and (max-width: 48rem) {
  .confirmation__header-btn .el-button__icon {
    width: 16px;
  }
}
.confirmation__title {
  margin-bottom: 16px;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 48rem) {
  .confirmation__title {
    font-size: 1rem;
  }
}
.confirmation__note {
  display: block;
  font-size: 0.875rem;
}
.confirmation__note--red {
  color: #d83323;
}
.confirmation .highlight {
  font-weight: 600;
  color: #ec661b;
}
.confirmation__list {
  display: grid;
  gap: 48px;
  counter-reset: counter;
}
.confirmation__list-item {
  position: relative;
  counter-increment: counter;
}
.confirmation__list-item:not(:first-of-type)::before {
  position: absolute;
  inset-block-start: -24px;
  inset-inline: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #e0e1e2;
}
.confirmation__list-title {
  padding-left: 1em;
  margin: 0;
  text-indent: -1em;
}
@media screen and (max-width: 48rem) {
  .confirmation__list-title {
    margin-left: 4px;
  }
}
.confirmation__list-title::before {
  content: counter(counter) ". ";
}
.confirmation__list-content {
  margin-top: 16px;
}
.confirmation__list-note {
  margin-top: 8px;
}
.confirmation__payment, .confirmation__meeting-time, .confirmation__items {
  display: grid;
  row-gap: 32px;
}
@media screen and (max-width: 48rem) {
  .confirmation__payment, .confirmation__meeting-time, .confirmation__items {
    row-gap: 24px;
  }
}
.confirmation__dress-code, .confirmation__facilities {
  display: grid;
  row-gap: 6px;
}
.confirmation__dress-code ul, .confirmation__facilities ul {
  padding: 0;
  margin: 0;
  list-style: inside;
}
.confirmation__dress-code li, .confirmation__facilities li {
  padding: 4px 0;
  margin: 0;
}
.confirmation__dress-code li:first-child, .confirmation__facilities li:first-child {
  padding-top: 0;
}
.confirmation__dress-code li:last-child, .confirmation__facilities li:last-child {
  padding-bottom: 0;
}
.confirmation__accommodation {
  display: grid;
  row-gap: 32px;
}
@media screen and (max-width: 48rem) {
  .confirmation__accommodation {
    row-gap: 24px;
  }
}
@media screen and (max-width: 48rem) {
  .confirmation__accommodation .confirmation__title {
    margin-bottom: 8px;
  }
}
.confirmation__accommodation-group + .confirmation__accommodation-group {
  margin-top: 16px;
}
@media screen and (max-width: 48rem) {
  .confirmation__accommodation-group + .confirmation__accommodation-group {
    margin-top: 0;
  }
}
.confirmation__accommodation-group.bl-info-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 48rem) {
  .confirmation__accommodation-group.bl-info-panel {
    display: flex;
  }
}
.confirmation__payment-note, .confirmation__meeting-time-note, .confirmation__dress-code-note, .confirmation__facilities-note {
  margin-top: 16px;
}
.confirmation__meeting-time-btn {
  display: grid;
  justify-content: center;
  margin-top: 16px;
}
.confirmation__meeting-time-btn .el-button {
  padding: 25px 32px;
  font-size: 0.875rem;
}
@media screen and (max-width: 48rem) {
  .confirmation__meeting-time-btn .el-button {
    padding: 10px 32px;
  }
}
.confirmation__table {
  width: 100%;
  margin-top: 16px;
  overflow: hidden;
  border-spacing: 0;
  border-collapse: separate;
}
@media screen and (max-width: 48rem) {
  .confirmation__table {
    width: calc(100vw - 40px);
  }
}
@media screen and (max-width: 48rem) {
  .confirmation__table .confirmation__table-group {
    display: flex;
    flex-direction: column;
  }
  .confirmation__table .confirmation__table-title,
  .confirmation__table .confirmation__table-content {
    width: 100%;
  }
  .confirmation__table .confirmation__table-group:last-child .confirmation__table-content:first-child {
    border-bottom-left-radius: 0em;
  }
  .confirmation__table .confirmation__table-group:last-child .confirmation__table-content:last-child {
    border-bottom-left-radius: 0.625em;
  }
}
@media screen and (max-width: 48rem) {
  .confirmation__table--certificate {
    width: 100%;
    white-space: nowrap;
  }
}
@media screen and (max-width: 48rem) {
  .confirmation__table-wrapper {
    width: 100vw;
    padding-inline: 20px;
    margin-inline: -20px;
    margin-top: 16px;
    overflow-x: scroll;
    scrollbar-width: none;
  }
  .confirmation__table-wrapper::-webkit-scrollbar {
    display: none;
  }
}
.confirmation__table-group:last-child .confirmation__table-content:first-child {
  border-bottom-left-radius: 0.625em;
}
.confirmation__table-group:last-child .confirmation__table-content:last-child {
  border-bottom-right-radius: 0.625em;
}
.confirmation__table-title {
  padding: 8px 12px;
  font-weight: 500;
  color: #fff;
  background-color: #63696e;
  border: 1px solid #e0e1e2;
}
.confirmation__table-title:first-child {
  border-top-left-radius: 0.625em;
}
.confirmation__table-title:last-child {
  border-top-right-radius: 0.625em;
}
.confirmation__table-title:first-child, .confirmation__table-content:first-child {
  border-left: 1px solid #e0e1e2;
}
.confirmation__table-content {
  padding: 8px 12px;
  border-top: none;
  border-right: 1px solid #e0e1e2;
  border-bottom: 1px solid #e0e1e2;
}
.confirmation__table-content:first-child {
  vertical-align: middle;
  background-color: #f4f4f4;
}
@media screen and (max-width: 48rem) {
  .confirmation__table-content {
    border-left: 1px solid #e0e1e2;
  }
}
.confirmation .bl-section-nav {
  margin-top: 140px;
}
@media screen and (max-width: 48rem) {
  .confirmation .bl-section-nav {
    margin-top: 48px;
  }
}
.confirmation .ly-content__description {
  margin-top: 32px;
}
@media screen and (max-width: 48rem) {
  .confirmation .ly-content__description {
    margin-top: 16px;
  }
}
