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

.event-detail {
  position: relative;
}
.event-detail::before {
  position: absolute;
  inset-block: 628px -140px;
  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) {
  .event-detail::before {
    background: none;
  }
}
.event-detail__wrapper {
  margin-bottom: 140px;
}
@media screen and (max-width: 48rem) {
  .event-detail__wrapper {
    margin-bottom: 128px;
  }
}
.event-detail__course {
  margin-top: 118px;
}
@media screen and (max-width: 48rem) {
  .event-detail__course {
    margin-top: 80px;
  }
}
.event-detail__location {
  display: grid;
  gap: 32px;
  margin-top: 140px;
}
@media screen and (max-width: 48rem) {
  .event-detail__location {
    gap: 24px;
    margin-top: 80px;
  }
}
.event-detail__more-btn_wrapper {
  display: flex;
  justify-content: center;
  padding: 24px 0 40px;
  border-bottom: 1px solid #e0e1e2;
}
@media screen and (max-width: 48rem) {
  .event-detail__more-btn_wrapper {
    display: none;
  }
}
.event-detail__more-btn_wrapper.is-hidden {
  display: none;
}
.event-detail__more-btn {
  display: inline-grid;
  grid-auto-flow: column;
  -moz-column-gap: 16px;
       column-gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 13px 24px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #ec661b;
  letter-spacing: 0.04em;
  overflow-wrap: normal;
  background-color: #fff;
  border: 1px solid #e0e1e2;
  border-radius: calc(infinity * 1px);
  box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.08);
  transition: color 0.3s, background-color 0.3s;
}
@media screen and (max-width: 48rem) {
  .event-detail__more-btn {
    display: none;
  }
}
@media (any-hover: hover) {
  .event-detail__more-btn:hover {
    color: #fff;
    background-color: #ec661b;
  }
}
.event-detail__more-btn:focus-visible {
  color: #fff;
  background-color: #ec661b;
}
.event-detail__more-btn.is-hidden {
  display: none;
}
.event-detail__more-icon {
  width: 12px;
  fill: currentcolor;
  transition: fill 0.3s;
}
.event-detail__hide-container {
  position: relative;
  max-height: 678px;
  overflow: hidden;
}
.event-detail__hide-container::after {
  position: absolute;
  inset: auto 0 0;
  height: 100%;
  max-height: 200px;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
}
.event-detail__reservation-btn {
  display: grid;
  inline-size: 320px;
  margin: 64px auto 0;
}
@media screen and (max-width: 48rem) {
  .event-detail__reservation-btn {
    inline-size: auto;
    margin-top: 40px;
  }
}

@media screen and (max-width: 48rem) {
  .bl-course {
    display: none;
  }
}
.bl-course:not(:first-of-type) {
  margin-top: 48px;
}
@media screen and (max-width: 48rem) {
  .bl-course:not(:first-of-type) {
    margin-top: 16px;
  }
}
.bl-course--sp {
  display: none;
}
@media screen and (max-width: 48rem) {
  .bl-course--sp {
    display: block;
  }
}
.bl-course::details-content {
  overflow: clip;
  transition-duration: 0.3s;
  transition-property: content-visibility, block-size;
  transition-behavior: allow-discrete;
  interpolate-size: allow-keywords;
}
.bl-course:not(:open)::details-content {
  block-size: 0;
}
.bl-course:open .bl-course__heading-line::before {
  transform: rotate(0deg);
}
@media screen and (max-width: 48rem) {
  .bl-course__summary {
    display: flex;
    -moz-column-gap: 8px;
         column-gap: 8px;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    border: 1px solid #e0e1e2;
    border-radius: 6.1875em;
  }
}
.bl-course__heading-wrapper {
  display: flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding-inline: 16px;
}
@media screen and (max-width: 48rem) {
  .bl-course__heading-wrapper {
    -moz-column-gap: 12px;
         column-gap: 12px;
    justify-content: flex-start;
    padding: 0;
  }
}
.bl-course__heading {
  position: relative;
  display: flex;
  gap: 8px;
  align-items: center;
  padding-left: 22px;
}
@media screen and (max-width: 48rem) {
  .bl-course__heading {
    padding-right: 0;
  }
}
.bl-course__heading::before {
  position: absolute;
  inset-inline-start: 0;
  width: 14px;
  height: 14px;
  content: "";
  background-color: #0063b2;
  border-radius: 0.125em;
}
.bl-course__time {
  font-size: 1.75rem;
  font-weight: 700;
}
@media screen and (max-width: 48rem) {
  .bl-course__time {
    font-size: 1rem;
  }
}
.bl-course__time-label {
  flex-shrink: 0;
}
.bl-course__days {
  display: flex;
  flex-shrink: 0;
  -moz-column-gap: 16px;
       column-gap: 16px;
  align-items: center;
}
@media screen and (max-width: 48rem) {
  .bl-course__days {
    -moz-column-gap: 8px;
         column-gap: 8px;
    padding-left: 12px;
    line-height: 1;
    border-left: 1px solid #e0e1e2;
  }
}
.bl-course__icon {
  display: flex;
  gap: 4px;
  align-items: center;
}
@media screen and (max-width: 48rem) {
  .bl-course__icon {
    font-size: 0.8125rem;
    line-height: 1;
  }
}
.bl-course__heading-line {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  width: 12px;
  height: 2px;
  background-color: #ec661b;
  border-radius: calc(infinity * 1px);
  transition: transform 0.3s;
}
.bl-course__heading-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;
}
.bl-course__content {
  padding-bottom: 16px;
  border-bottom: 1px solid #e0e1e2;
}
.bl-course__price {
  padding: 24px 32px;
  margin-top: 24px;
  font-weight: 700;
  background-color: #f4f4f4;
}
@media screen and (max-width: 48rem) {
  .bl-course__price {
    padding: 24px 16px;
    margin-top: 16px;
  }
}
.bl-course__price-total {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}
@media screen and (max-width: 48rem) {
  .bl-course__price-total {
    font-size: 0.875rem;
  }
}
.bl-course__price-amount {
  margin-left: 16px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #ec661b;
  text-align: right;
}
@media screen and (max-width: 48rem) {
  .bl-course__price-amount {
    margin: 0;
    font-size: 1rem;
  }
}
.bl-course__unit {
  margin-left: 4px;
  font-size: 0.8125rem;
  color: #555;
}
.bl-course__fee {
  margin-left: 16px;
  font-weight: 500;
}
@media screen and (max-width: 48rem) {
  .bl-course__fee {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 9px;
    align-items: center;
    padding-top: 16px;
    margin: 16px 0 0;
    border-top: 1px solid #fff;
  }
}
.bl-course__fee-label {
  margin-inline: 4px 8px;
  font-weight: 700;
}
@media screen and (max-width: 48rem) {
  .bl-course__fee-label {
    margin: 0;
    font-size: 0.875rem;
  }
}
.bl-course__price-line, .bl-course__fee-line {
  display: inline-block;
  width: 100%;
  border-top: 1px dashed #555;
}
.bl-course__fee-amount {
  text-align: right;
}
.bl-course__condition-wrapper {
  padding: 24px 32px;
  margin-top: 16px;
  border: 1px solid #e0e1e2;
  border-radius: 0.5em;
}
@media screen and (max-width: 48rem) {
  .bl-course__condition-wrapper {
    padding: 24px 26px;
  }
}
.bl-course__condition-title {
  font-weight: 700;
}
.bl-course__detail {
  margin-top: 16px;
  white-space: pre-line;
}
@media screen and (max-width: 48rem) {
  .bl-course__detail {
    font-size: 0.875rem;
  }
}
.bl-course__note {
  margin-top: 16px;
  font-size: 0.875rem;
  white-space: pre-line;
}
@media screen and (max-width: 48rem) {
  .bl-course__note {
    font-size: 0.8125rem;
  }
}

.bl-event-location {
  padding: 40px;
  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: 48rem) {
  .bl-event-location {
    padding: 30px 20px 40px;
  }
}
.bl-event-location__contents {
  display: grid;
  grid-template-columns: 368px 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 24px;
}
@media screen and (max-width: 48rem) {
  .bl-event-location__contents {
    grid-template-columns: auto;
    gap: 24px;
  }
}
.bl-event-location__map {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 184/117;
}
.bl-event-location__map iframe {
  width: 100%;
  height: 100%;
  border-radius: 0.5em;
}
.bl-event-location__name {
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 48rem) {
  .bl-event-location__name {
    font-size: 1.25rem;
  }
}
.bl-event-location__address {
  margin-top: 24px;
}
@media screen and (max-width: 48rem) {
  .bl-event-location__address {
    margin-top: 8px;
    font-size: 0.9375rem;
  }
}
.bl-event-location__btn {
  margin-top: 16px;
}
@media screen and (max-width: 48rem) {
  .bl-event-location__btn {
    display: grid;
    inline-size: auto;
  }
}
.bl-event-location__btn .el-button {
  padding: 13px 24px;
  font-size: 0.875rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.06), 0 1px 3px 0 rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 48rem) {
  .bl-event-location__btn .el-button {
    padding: 9px 13px;
  }
}
@media screen and (max-width: 48rem) {
  .bl-event-location__btn .el-button__icon {
    width: 10px;
  }
}

.bl-event-relation {
  display: grid;
  justify-content: center;
  justify-items: center;
  padding: 32px;
  color: #fff;
  background-color: #63696e;
  border-radius: 0.5em;
}
@media screen and (max-width: 48rem) {
  .bl-event-relation {
    padding: 24px 20px 32px;
  }
}
.bl-event-relation__title {
  font-size: 1rem;
  font-weight: 700;
}
@media screen and (max-width: 48rem) {
  .bl-event-relation__title {
    font-size: 0.875rem;
  }
}
.bl-event-relation__list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 16px;
  -moz-column-gap: 16px;
       column-gap: 16px;
  justify-content: center;
  margin-top: 24px;
}
@media screen and (max-width: 48rem) {
  .bl-event-relation__list {
    -moz-column-gap: 8px;
         column-gap: 8px;
    margin-top: 16px;
  }
}
.bl-event-relation__list-item {
  display: grid;
}
@media screen and (max-width: 48rem) {
  .bl-event-relation__list-item {
    min-block-size: 40px;
  }
}

.bl-event-btn-list {
  display: grid;
  row-gap: 16px;
  justify-items: center;
}
.bl-event-btn-list__title {
  font-size: 1rem;
  font-weight: 700;
}
@media screen and (max-width: 48rem) {
  .bl-event-btn-list__title {
    font-size: 0.875rem;
  }
}
.bl-event-btn-list__list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 16px;
  -moz-column-gap: 16px;
       column-gap: 16px;
  justify-content: center;
}
@media screen and (max-width: 48rem) {
  .bl-event-btn-list__list {
    gap: 16px 8px;
    width: 100%;
  }
}
.bl-event-btn-list__list-item {
  display: grid;
  inline-size: 164px;
  min-block-size: 48px;
}
@media screen and (max-width: 48rem) {
  .bl-event-btn-list__list-item {
    width: calc(50% - 4px);
    min-block-size: 40px;
  }
}

.bl-line {
  width: 100%;
  height: 1px;
  background-color: #f4f4f4;
}
