*,*::before,*::after{box-sizing:border-box}body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}ul[role="list"],ol[role="list"]{list-style:none}html:focus-within{scroll-behavior:smooth}body{min-height:100vh;text-rendering:optimizeSpeed;line-height:1.5}a:not([class]){text-decoration-skip-ink:auto}img,picture{max-width:100%;display:block}input,button,textarea,select{font:inherit}@media(prefers-reduced-motion:reduce){html:focus-within{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}

* {
  color: #333333;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}

.headerWrapper {
  max-width: 1112px;
  margin: 0 auto;
  padding: 0 16px;
  height: 72px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}
.headerWrapper .headerLogo {
  height: 44px;
}
.headerWrapper .headerSnsLinkWrapper {
  display: flex;
  margin: -8px;
}
.headerWrapper .headerSnsIcon {
  height: 32px;
  margin: 8px;
}

section .headingWrapper {
  margin-bottom: 40px;
}
section .heading {
  font-size: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 768px) {
  section .heading {
    font-size: 28px;
  }
}
section .heading:after {
  margin-top: 4px;
  content: "";
  display: block;
  height: 8px;
  width: 80px;
  background: #F15A24;
}
section:nth-of-type(3) .heading:after {
  background: #F4772C;
}
section:nth-of-type(4) .heading:after {
  background: #F89333;
}
section:nth-of-type(5) .heading:after {
  background: #FBB03B;
}
section:nth-of-type(6) .heading:after {
  background: #7AC943;
}
section:nth-of-type(7) .heading:after {
  background: #3FB070;
}
section:nth-of-type(8) .heading:after {
  background: #04979D;
}
section:nth-of-type(9) .heading:after {
  background: #29ABE2;
}
section:nth-of-type(10) .heading:after {
  background: #158ECF;
}
section:nth-of-type(11) .heading:after {
  background: #0071BC;
}

.heroview {
  position: relative;
  height: 90vh;
}
.heroview .heroviewImageWrapper {
  position: relative;
  height: 100%;
  width: 100%;
}
.heroview .heroviewImageWrapper .heroviewImage {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  z-index: 10;
  opacity: 0;
  transition: 3s;
}
.heroview .heroviewImageWrapper .heroviewImage.--show {
  opacity: 1;
}
.heroview .heroviewLogoWrapper {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 1112px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .heroview .heroviewLogoWrapper {
    display: grid;
    place-items: center;
  }
}
.heroview .heroviewLogoWrapper .heroviewLogoBackground {
  height: 100%;
  padding: 24px;
  background: rgba(255, 255, 255, 0.85);
  display: inline-grid;
  place-items: center;
}
@media screen and (max-width: 768px) {
  .heroview .heroviewLogoWrapper .heroviewLogoBackground {
    width: 75%;
    height: auto;
  }
}
.heroview .heroviewLogoWrapper .heroviewLogoBackground .heroviewLogo {
  width: 400px;
}
@media screen and (max-width: 768px) {
  .heroview .heroviewLogoWrapper .heroviewLogoBackground .heroviewLogo {
    width: 100%;
  }
}

.news {
  max-width: 800px;
  margin: 80px auto 0;
  padding: 0 16px;
}
.news .newsList {
  list-style-type: none;
  padding-inline-start: 0;
}
.news .newsList .newsItem {
  margin-top: 24px;
  line-height: 1.5;
  transition: 0.3s;
  padding: 16px;
  border-radius: 2px;
}
.news .newsList .newsItem:hover {
  box-shadow: 0 0 8px #666666;
}
.news .newsList .newsItem .newsLink {
  text-decoration: none;
}
.news .newsList .newsItem .newsTitle {
  text-decoration: underline;
}
.news .newsList .newsItem .newsDate {
  font-size: 12px;
  margin-top: 8px;
  text-decoration: none;
}

.aboutBLab {
  max-width: 800px;
  margin: 80px auto 0;
  padding: 0 16px;
}
.aboutBLab .aboutText {
  font-size: 18px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .aboutBLab .aboutText {
    font-size: 16px;
  }
}

.feature {
  margin: 80px auto 0;
  padding: 0 16px;
}

.point {
  display: flex;
  justify-content: space-between;
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  .point {
    flex-direction: column-reverse;
  }
}
.point:nth-of-type(2) {
  flex-direction: row-reverse;
}
.point:nth-of-type(2) .pointIndex {
  background: #F89333;
}
.point:nth-of-type(3) .pointIndex {
  background: #29ABE2;
}
.point .text,
.point .image {
  flex: 0 0 50%;
}
@media screen and (max-width: 768px) {
  .point .text,
.point .image {
    flex: unset;
  }
}
.point .image {
  width: 100px;
}
@media screen and (max-width: 768px) {
  .point .image {
    width: auto;
  }
}
.point .text {
  padding: 64px;
}
@media screen and (max-width: 1080px) {
  .point .text {
    padding: 0;
  }
}
.point .pointIndex {
  display: inline-block;
  padding: 2px 8px;
  line-height: 1.5;
  font-size: 16px;
  background: #F15A24;
  color: #FFFFFF;
}
.point .pointHeading {
  margin-top: 8px;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .point .pointHeading {
    font-size: 21px;
  }
}
.point .pointDescription {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .point .pointDescription {
    margin-top: 8px;
  }
}
@media screen and (max-width: 768px) {
  .point {
    margin-top: 80px;
    flex-direction: column-reverse;
  }
  .point:nth-of-type(2) {
    flex-direction: column-reverse;
  }
  .point .image {
    margin-bottom: 8px;
  }
}

.courses {
  max-width: 1112px;
  margin: 80px auto 0;
  padding: 0 16px;
}
.courses .period {
  margin-top: 40px;
}
.courses .period .periodHeading {
  font-size: 18px;
  text-align: center;
  margin-bottom: 16px;
}
.courses .courseColumnWrapper {
  display: grid;
  grid-gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1080px) {
  .courses .courseColumnWrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .courses .courseColumnWrapper {
    grid-template-columns: 1fr;
    grid-gap: 24px;
  }
}
.courses .course {
  padding: 16px;
  background: #F4F4F4;
  display: flex;
  flex-direction: column;
}
.courses .course:nth-of-type(1) {
  border-top: 4px solid #F15A24;
}
.courses .course:nth-of-type(2) {
  border-top: 4px solid #F4772C;
}
.courses .course:nth-of-type(3) {
  border-top: 4px solid #F89333;
}
.courses .course:nth-of-type(4) {
  border-top: 4px solid #FBB03B;
}
.courses .course:nth-of-type(5) {
  border-top: 4px solid #7AC943;
}
.courses .course:nth-of-type(6) {
  border-top: 4px solid #3FB070;
}
.courses .course:nth-of-type(7) {
  border-top: 4px solid #04979D;
}
.courses .course:nth-of-type(8) {
  border-top: 4px solid #29ABE2;
}
.courses .course:nth-of-type(9) {
  border-top: 4px solid #158ECF;
}
.courses .course .name {
  font-size: 18px;
}
.courses .course .infomation {
  font-size: 14px;
  margin-top: 4px;
}
.courses .course .infomation:first-of-type {
  margin-top: 8px;
}
.courses .course .infomation .infomationHeading {
  font-weight: bold;
}
.courses .course .infomation .infomationHeading:after {
  content: " ";
  display: inline;
}
.courses .course .description {
  font-size: 14px;
  margin-top: 8px;
}
.courses .course .seeMore {
  font-size: 14px;
  margin-top: auto;
  padding-top: 8px;
  display: block;
  text-align: right;
  color: #0071BC;
}
.courses .periodColumnWrapper {
  display: grid;
  grid-gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .courses .periodColumnWrapper {
    grid-template-columns: 1fr;
    grid-gap: 24px;
  }
}
.courses .coursesDescription {
  margin-top: 40px;
  font-size: 16px;
}

.plans {
  max-width: 1112px;
  margin: 80px auto 0;
  padding: 0 16px;
}
.plans .planWrapper {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .plans .planWrapper {
    grid-template-columns: 1fr;
  }
}
.plans .plan {
  padding: 16px;
  background: #F4F4F4;
}
.plans .plan:nth-of-type(1) {
  border-left: 4px solid #F15A24;
}
.plans .plan:nth-of-type(2) {
  border-left: 4px solid #F89333;
}
.plans .plan:nth-of-type(3) {
  border-left: 4px solid #FBB03B;
}
.plans .plan:nth-of-type(4) {
  border-left: 4px solid #7AC943;
}
.plans .plan:nth-of-type(5) {
  border-left: 4px solid #04979D;
}
.plans .plan:nth-of-type(6) {
  border-left: 4px solid #0071BC;
}
.plans .plan .name {
  font-size: 18px;
}
.plans .plan .price {
  margin-top: 8px;
  font-size: 24px;
  font-weight: bold;
}
.plans .plan .price .taxExclusive {
  font-size: 14px;
  margin-left: 0.5em;
}
.plans .plan .description {
  margin-top: 8px;
  font-size: 16px;
}
.plans .plansDescription {
  font-size: 16px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .plans .plansDescription {
    font-size: 14px;
  }
}

.places {
  max-width: 1112px;
  margin: 80px auto 0;
  padding: 0 16px;
}
.places .placeWrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 40px -16px 16px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .places .placeWrapper {
    grid-template-columns: 1fr;
  }
}
.places .place {
  margin: 0 16px;
  flex-basis: calc(50% - 32px);
  flex-grow: 1;
}
.places .place .name {
  font-size: 24px;
  text-align: center;
}
.places .place .map {
  margin-top: 16px;
  width: 100%;
  height: 360px;
}
.places .place .address {
  font-size: 14px;
  margin-top: 8px;
}

.contact {
  margin: 80px auto 0;
  padding: 0 16px;
  text-align: center;
}
.contact .contactMessage {
  margin-top: 40px;
  font-size: 18px;
}
.contact .contactTelInfomation {
  margin-top: 40px;
  font-size: 12px;
}
.contact .contactTelInfomation .number {
  font-weight: bold;
}
.contact h3 {
  margin-top: 3em;
}
.contact .contactLink {
  margin-top: 1em;
}

.contactLink {
  display: inline-block;
  padding: 16px 32px;
  background: #333333;
  position: relative;
  text-decoration: none;
  line-height: 1.5;
}
.contactLink:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: #3FB070;
  transition: 0.3s;
  z-index: 1;
}
.contactLink:hover:before {
  width: 100%;
  background: #158ECF;
}
.contactLink .contactLinkText {
  color: #FFFFFF;
  font-size: 16px;
  z-index: 10;
  position: relative;
}

.footer {
  margin-top: 80px;
  padding: 32px;
  border-top: 1px rgba(97, 97, 97, 0.5) solid;
}
.footer .footerText {
  text-align: center;
  font-size: 12px;
}

.newsArticleWrapper {
  margin-top: 200px;
}

.newsArticle {
  margin: 0 auto;
  padding: 0 16px;
  max-width: 832px;
  line-height: 2;
}
.newsArticle h1 {
  font-size: 32px;
  line-height: 1.5;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .newsArticle h1 {
    font-size: 24px;
  }
}
.newsArticle h2 {
  font-size: 24px;
  line-height: 1.5;
  margin-top: 80px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.newsArticle h2:after {
  margin-top: 4px;
  content: "";
  display: block;
  height: 8px;
  width: 80px;
  background: #0071BC;
}
.newsArticle h2:nth-of-type(2):after {
  background: #158ECF;
}
.newsArticle h2:nth-of-type(3):after {
  background: #29ABE2;
}
.newsArticle h2:nth-of-type(4):after {
  background: #04979D;
}
.newsArticle h2:nth-of-type(5):after {
  background: #3FB070;
}
.newsArticle h2:nth-of-type():after {
  background: #7AC943;
}
.newsArticle h2:nth-of-type(7):after {
  background: #FBB03B;
}
.newsArticle h2:nth-of-type(8):after {
  background: #F89333;
}
.newsArticle h2:nth-of-type(9):after {
  background: #F4772C;
}
.newsArticle h2:nth-of-type(10):after {
  background: #F15A24;
}
.newsArticle h3 {
  margin-top: 3em;
  margin-bottom: 1em;
  font-size: 20px;
}
.newsArticle h4 {
  margin-top: 2em;
  margin-bottom: 1em;
  font-size: 18px;
}
.newsArticle ul {
  padding-left: 1em;
}
.newsArticle .contactLink {
  margin-top: 1em;
}
.newsArticle .description {
  margin-bottom: 2em;
}
.newsArticle .center {
  display: flex;
  justify-content: center;
}
.newsArticle img {
  margin-top: 1em;
}
.newsArticle p {
  margin-top: 1em;
}
.newsArticle iframe {
  margin-top: 1em;
  max-width: 100%;
}
.newsArticle details {
  margin-top: 24px;
}
.newsArticle details summary {
  font-size: 18px;
  font-weight: bold;
  padding: 8px 16px;
  border: 1px solid #333;
  margin-top: 8px;
  border-radius: 8px;
}
.newsArticle .notification {
  text-align: center;
  padding: 12px 8px;
  color: #7D5B0A;
  border: 2px solid #7D5B0A;
  font-weight: bold;
}

/*# sourceMappingURL=/20240215.1d241b96.css.map */