@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 1150px) {
  html {
    font-size: 1.3913043478vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Make images easier to work with */
img,
picture {
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1150px;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .inner {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.faq {
  text-align: center;
  background-color: #E4EEF6;
  padding-top: 5rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .faq {
    padding-top: 2.5rem;
    padding-bottom: 3.75rem;
  }
}

.faq__title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .faq__title {
    font-size: 1.5rem;
    line-height: 1.5833333333;
  }
}

.faq__container {
  max-width: 56.25rem;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .faq__container {
    gap: 0.9375rem;
    max-width: 37.5rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    margin-top: 1.875rem;
  }
}

.faq__item {
  background-color: #FFFFFF;
  border-radius: 0.625rem;
  -webkit-box-shadow: 0 0.3125rem 0.625rem rgba(0, 0, 0, .1);
          box-shadow: 0 0.3125rem 0.625rem rgba(0, 0, 0, .1);
  overflow: hidden;
}

.faq__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.25rem 2.5rem 1.25rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .faq__header {
    padding: 0.9375rem 0.9375rem 1.25rem;
  }
}

.faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #000000;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .faq__question {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    font-size: 1rem;
  }
}

.faq__icon {
  font-weight: 700;
  width: 0.9375rem;
  height: 1.875rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.25rem;
  margin-right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .faq__icon {
    font-size: 1rem;
    margin-right: 0.625rem;
    height: 1.5rem;
  }
}

.faq__icon--q {
  color: #005EAC;
}

.faq__icon--a {
  color: #FF7D00;
  margin-right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .faq__icon--a {
    margin-right: 0.625rem;
  }
}

.faq__toggle {
  width: 1.875rem;
  height: 1.875rem;
  background-color: #005EAC;
  color: #FFFFFF;
  font-size: 1.125rem;
  font-weight: 700;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .faq__toggle {
    margin-left: 0.625rem;
  }
}

.faq__content {
  text-align: left;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 5.625rem 0 2.5rem;
  -webkit-transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
}
@media screen and (max-width: 767px) {
  .faq__content {
    padding: 0 0.9375rem 0 0.9375rem;
  }
}

.faq__answer {
  font-size: 1rem;
  line-height: 1.75;
  color: #333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .faq__answer {
    padding-bottom: 1.25rem;
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}
.faq__answer a {
  color: #005EAC;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  white-space: nowrap;
}
.faq__answer a:hover {
  opacity: 0.7;
}

.faq__icon--a {
  color: #FF7D00;
  font-weight: 700;
  font-size: 1.25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1.5;
}

.faq__answer span.faq__icon {
  /* 上下揃える */
}

.faq__item.is-active .faq__content {
  max-height: 40rem;
  opacity: 1;
}

.faq__item.is-active .faq__toggle {
  content: "−";
}

.footer {
  background-color: #005EAC;
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }
}

.footer__inner {
  text-align: center;
}

.footer__text {
  font-size: 0.75rem;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.4166666667;
}
@media screen and (max-width: 767px) {
  .footer__text {
    font-size: 0.625rem;
    line-height: 1.5;
  }
}

.mini-lecture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.5rem 3.75rem;
  margin-top: 3.75rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .mini-lecture {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 1.875rem;
    gap: 0.9375rem;
  }
}

.mini-lecture__card {
  width: calc(50% - 1.875rem);
}
@media screen and (max-width: 767px) {
  .mini-lecture__card {
    width: 100%;
  }
}

.mini-lecture__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.mini-lecture__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-radius: 0.625rem;
  -webkit-box-shadow: 0 0.3125rem 0.625rem rgba(0, 0, 0, .1);
          box-shadow: 0 0.3125rem 0.625rem rgba(0, 0, 0, .1);
  background-color: #FFFFFF;
  padding: 1.875rem;
  border-left: 0.625rem solid #FFE200;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .mini-lecture__header {
    padding: 0.9375rem;
  }
}

.mini-lecture__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000000;
  line-height: 1.5;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 0.625rem;
}
@media screen and (max-width: 767px) {
  .mini-lecture__title {
    font-size: 1rem;
    line-height: 1.625;
  }
}

.mini-lecture__toggle {
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  background-color: #1EC8AA;
  border: none;
  color: #FFFFFF;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.mini-lecture__toggle:hover {
  opacity: 0.7;
}

.programs-detail--purple .mini-lecture__toggle {
  background-color: #BE8CC8;
}

.mini-lecture__content {
  border-left: 0.625rem solid #FFE200;
  background-color: #FFFFFF;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
  border-radius: 0;
  -webkit-transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease;
  transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease;
}
@media screen and (max-width: 767px) {
  .mini-lecture__content {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.mini-lecture__card .mini-lecture__header {
  border-radius: 0.625rem;
  -webkit-transition: border-radius 0.3s;
  transition: border-radius 0.3s;
}
.mini-lecture__card.is-active .mini-lecture__header {
  border-radius: 0.625rem 0.625rem 0 0;
}
.mini-lecture__card.is-active .mini-lecture__content {
  max-height: 37.5rem;
  opacity: 1;
  padding-bottom: 1.875rem;
  border-radius: 0 0 0.625rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .mini-lecture__card.is-active .mini-lecture__content {
    padding-bottom: 1.25rem;
  }
}

.mini-lecture__description {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .mini-lecture__description {
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}

.mini-lecture__image-group {
  position: relative;
  margin-top: 1.875rem;
  max-width: 28.75rem;
}
@media screen and (max-width: 767px) {
  .mini-lecture__image-group {
    margin-top: 1.25rem;
    max-width: 19.6875rem;
  }
}

.mini-lecture__image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 460/259;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .mini-lecture__image img {
    aspect-ratio: 315/177;
  }
}

.mini-lecture__footer {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .mini-lecture__footer {
    margin-top: 0.9375rem;
  }
}

.mini-lecture__lab {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  font-weight: 700;
  color: #1EC8AA;
  letter-spacing: 0;
  line-height: 1.25;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .mini-lecture__lab {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}
@media (hover: hover) {
  .mini-lecture__lab:hover {
    opacity: 0.7;
  }
}

.mini-lecture__icon {
  display: inline-block;
  margin-left: 0.3125rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #1EC8AA;
  position: relative;
}
.mini-lecture__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 45%;
  width: 0.3125rem;
  height: 0.3125rem;
  border-right: 1px solid #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.mini-lecture__name {
  font-size: 1.25rem;
  font-weight: 500;
  color: #000000;
  letter-spacing: 0;
  line-height: 1.2;
  margin-top: 0.125rem;
}
@media screen and (max-width: 767px) {
  .mini-lecture__name {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.mv {
  position: relative;
  padding: 1.875rem 1.875rem 7.1875rem 6%;
  background-image: url("../images/mv-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .mv {
    background-image: url("../images/mv-bg_sp.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 1.25rem 0.9375rem 3.75rem 0;
    min-height: 41.6875rem;
  }
}

.mv__logo {
  max-width: 85.375rem;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  top: 0;
  left: -3rem;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .mv__logo {
    left: 0.625rem;
  }
}
.mv__logo img {
  width: 15rem;
  height: auto;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .mv__logo img {
    width: 10.625rem;
  }
}
.mv__logo img:hover {
  opacity: 0.7;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .mv__logo img:hover {
    opacity: 1;
  }
}

.mv__logo a {
  display: inline-block;
}

.mv__inner {
  max-width: 78.375rem;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 3%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .mv__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    padding-left: 0.9375rem;
    margin-top: 2.5rem;
  }
}

.mv__content {
  width: 48%;
  text-align: left;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .mv__content {
    width: 100%;
    margin-top: 0;
  }
}

.mv__title {
  font-size: 8.125rem;
  line-height: 1;
  font-weight: 300;
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .mv__title {
    font-size: 4.0625rem;
  }
}

.mv__sub {
  font-size: 3.4375rem;
  line-height: 1.4545454545;
  font-weight: 500;
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.08em;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .mv__sub {
    font-size: 1.6875rem;
    line-height: 2;
  }
}

.mv__dates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1.625rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .mv__dates {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    margin-top: 1.125rem;
  }
}

.mv__date {
  font-size: 5.625rem;
  font-weight: 700;
  line-height: 1;
  color: #FFFFFF;
  font-family: "Roboto", sans-serif;
  letter-spacing: -0.04em;
}
@media screen and (max-width: 767px) {
  .mv__date {
    font-size: 2.875rem;
    line-height: 1.1739130435;
  }
}

.mv__circle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #FFFFFF;
  color: #00C8FF;
  border-radius: 50%;
  font-size: 1.875rem;
  font-weight: 700;
  width: 3.125rem;
  height: 3.125rem;
  line-height: 1;
  vertical-align: middle;
  margin-left: 0.5rem;
  padding-right: 0.125rem;
}
@media screen and (max-width: 767px) {
  .mv__circle {
    font-size: 1rem;
    width: 1.625rem;
    height: 1.625rem;
  }
}

.mv__circle--red {
  color: #F0002D;
}

.mv__hyphen {
  margin: 0 0.9375rem;
  font-size: 1.5rem;
  color: #FFFFFF;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .mv__hyphen {
    margin: 0 0.4375rem;
  }
}

.mv__button {
  display: inline-block;
  margin-top: 1.5625rem;
  max-width: 31.25rem;
  width: 100%;
  padding: 0.75rem 6.25rem;
  border: 3px solid #FFFFFF;
  border-radius: 1.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .mv__button {
    padding: 0.5rem 0.625rem;
    border: 2px solid #FFFFFF;
    border-radius: 1.1875rem;
    font-size: 1rem;
    max-width: 15.625rem;
    width: 100%;
    margin-top: 0.4375rem;
  }
}

.mv__photos {
  position: relative;
  width: 50%;
  height: 33.75rem;
  min-width: 18.75rem;
  margin-top: -3.125rem;
}
@media screen and (max-width: 767px) {
  .mv__photos {
    max-width: 23.4375rem;
    width: 100%;
    height: auto;
    margin-top: 2.125rem;
  }
}

.mv__photo {
  position: absolute;
  border-radius: 0.625rem;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateY(1.25rem);
          transform: translateY(1.25rem);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.mv__photo.is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.mv__photo img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .mv__photo {
    width: 100%;
    margin-bottom: 1rem;
  }
  .mv__photo img {
    width: 100%;
  }
}

.mv__photo--a {
  top: 0;
  left: 3.75rem;
  max-width: 21.25rem;
}
@media screen and (max-width: 767px) {
  .mv__photo--a {
    left: 0;
    max-width: 10rem;
  }
}
@media screen and (max-width: 425px) {
  .mv__photo--a {
    left: -0.9375rem;
  }
}

.mv__photo--b {
  top: 14.6875rem;
  right: 0;
  max-width: 30.625rem;
}
@media screen and (max-width: 767px) {
  .mv__photo--b {
    top: 1.25rem;
    max-width: 11.25rem;
  }
}

.mv__photo--c {
  bottom: -8.125rem;
  left: -0.625rem;
  max-width: 12.5rem;
}
@media screen and (max-width: 767px) {
  .mv__photo--c {
    bottom: -12.5rem;
    left: 6.875rem;
    max-width: 5.3125rem;
  }
}

.programs {
  text-align: center;
  padding-top: 8.75rem;
  padding-bottom: 11.25rem;
}
@media screen and (max-width: 767px) {
  .programs {
    padding-top: 3.75rem;
    padding-bottom: 5.625rem;
  }
}

.programs--bg {
  background-image: url("../images/programs-bg.png");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 10;
}

.programs__lead {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .programs__lead {
    font-size: 1.5rem;
    line-height: 1.5833333333;
  }
}

.programs__lead--highlight {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #FFE200));
  background: linear-gradient(transparent 60%, #FFE200 60%);
}

.programs__list {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.875rem;
  grid-template-columns: repeat(2, 1fr);
  margin-right: auto;
  margin-left: auto;
  max-width: 37.5rem;
}
@media screen and (max-width: 767px) {
  .programs__list {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 1.25rem;
    max-width: 17.8125rem;
  }
}

.programs__card {
  background-color: #FFFFFF;
  border: 3px solid #1EC8AA;
  border-radius: 0.625rem;
  padding: 0.9375rem 1.25rem 2.1875rem;
  text-align: center;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .programs__card {
    border: none;
    border-radius: 0;
    border-bottom: solid 2px #1EC8AA;
    background-color: transparent;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0;
    gap: 0.625rem;
  }
}
.programs__card--purple {
  border-color: #BE8CC8;
}
@media screen and (max-width: 767px) {
  .programs__card--purple {
    border-color: transparent;
    border-bottom: solid 2px #BE8CC8;
  }
}

.programs__icon {
  width: 5rem;
  height: 5rem;
}
@media screen and (max-width: 767px) {
  .programs__icon {
    width: 4.375rem;
    height: 4.375rem;
  }
}

.programs__title {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .programs__title {
    margin-left: -1.875rem;
  }
}

.programs__arrow {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #1EC8AA;
  position: absolute;
  bottom: -1.25rem;
}
.programs__arrow::before {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  width: 0.625rem;
  height: 0.625rem;
  border-right: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.programs__arrow--purple {
  background-color: #BE8CC8;
}
@media screen and (max-width: 767px) {
  .programs__arrow {
    position: relative;
    width: 1.875rem;
    height: 1.875rem;
    bottom: 0;
    right: 0;
  }
}

.programs-detail {
  padding-top: 5rem;
  padding-bottom: 10rem;
  color: #FFFFFF;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .programs-detail--green {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .programs-detail--purple {
    padding-top: 3.25rem;
    padding-bottom: 3.75rem;
  }
}

.programs-detail--green {
  margin-top: -2.5625rem;
}
@media screen and (max-width: 767px) {
  .programs-detail--green {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}
@media screen and (max-width: 600px) {
  .programs-detail--green {
    margin-top: -1.875rem;
  }
}
@media screen and (max-width: 425px) {
  .programs-detail--green {
    margin-top: -2.5625rem;
  }
}

@media screen and (min-width: 1441px) {
  .programs-detail--green {
    margin-top: -5.0625rem;
  }
  .programs-detail__inner {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .programs-detail__inner {
    max-width: 37.5rem;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

@media screen and (max-width: 767px) {
  .programs-detail--green.programs-detail__inner {
    margin-top: 0.3125rem;
  }
}

.programs-detail__icon {
  width: 5rem;
  margin-right: auto;
  margin-left: auto;
  border-radius: 50%;
}

.programs-detail__icon img {
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.programs-detail__heading {
  margin-top: 1.25rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.25rem;
}

.programs-detail__title {
  font-size: 2.5rem;
  color: #fff;
  font-weight: 800;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .programs-detail__title {
    font-size: 1.5rem;
    line-height: 1.5833333333;
  }
}

.programs-detail__badge {
  display: inline-block;
  padding: 0.3125rem 1.25rem;
  background-color: transparent;
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  border: 2px solid #FFFFFF;
}
@media screen and (max-width: 767px) {
  .programs-detail__badge {
    font-size: 0.875rem;
    line-height: 1.2857142857;
    border: 1px solid #FFFFFF;
    padding: 0.25rem 0.9375rem;
  }
}

.programs-detail__text {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2;
  color: #FFFFFF;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .programs-detail__text {
    text-align: left;
    margin-top: 1.25rem;
    font-size: 0.875rem;
    line-height: 2;
  }
}

.programs-detail--green,
.programs-detail--purple {
  position: relative;
  background: none;
  overflow: hidden;
}

.programs-detail--green::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/programs-detail01-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  z-index: -1;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .programs-detail--green::before {
    background-image: url("../images/programs-detail01-bg_sp.png");
  }
}
.programs-detail--purple::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/programs-detail02-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  z-index: -1;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .programs-detail--purple::before {
    background-image: url("../images/programs-detail02-bg_sp.png");
  }
}
.video {
  background-color: #E4EEF6;
  padding-top: 4.6875rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .video {
    padding-top: 2.5rem;
    padding-bottom: 3.75rem;
  }
}

.video__inner {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .video__inner {
    max-width: 37.5rem;
    margin-right: auto;
    margin-left: auto;
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
}

.video__heading {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .video__heading {
    font-size: 1.5rem;
    line-height: 1.5833333333;
  }
}

.video__grid {
  margin-top: 3.75rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .video__grid {
    margin-top: 1.875rem;
    gap: 2.5rem;
  }
}

.video__item {
  text-align: left;
}

.video__frame {
  width: 100%;
  aspect-ratio: 520/292;
  border: none;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .video__frame {
    aspect-ratio: 315/177;
  }
}

.video__caption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 0.625rem;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .video__caption {
    font-size: 0.875rem;
    margin-top: 0.625rem;
  }
}

.video__icon {
  width: 1.5rem;
  height: 1.125rem;
}

.video__button-wrap {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .video__button-wrap {
    margin-top: 2.5rem;
  }
}

.video__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.25rem 1.5625rem 1.25rem 5.5rem;
  background-color: #005EAC;
  color: #FFFFFF;
  border-radius: 2.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  text-decoration: none;
  position: relative;
}
.video__button:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .video__button:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .video__button {
    padding: 0.5625rem 0.625rem 0.5625rem 4.375rem;
    font-size: 0.875rem;
  }
}

.video__button-icon {
  display: inline-block;
  margin-left: 1.6875rem;
  width: 2.5rem;
  height: 2.5rem;
  background: url("../images/icon-external.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .video__button-icon {
    margin-left: 1.25rem;
  }
}

.video__note {
  margin-top: 2.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .video__note {
    margin-top: 2.125rem;
    font-size: 0.875rem;
  }
}

.video__note-icon {
  display: inline-block;
  width: 1.25rem;
  height: 1.875rem;
  background: url("../images/icon-location.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .video__note-icon {
    width: 1rem;
    height: 1.5rem;
  }
}

.point {
  padding-top: 5rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .point {
    padding-top: 2.5rem;
    padding-bottom: 3.75rem;
  }
}

.point--bg {
  background-image: url("../images/point-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.point__inner {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .point__inner {
    max-width: 31.25rem;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.point__heading {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .point__heading {
    font-size: 1.5rem;
    line-height: 1.5833333333;
  }
}

.point__list {
  margin-top: 3.75rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
  gap: 4.125rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .point__list {
    margin-top: 1.875rem;
    grid-template-columns: repeat(auto-fit, minmax(9.375rem, 2fr));
    gap: 1.875rem 0.9375rem;
  }
}

.point__card {
  background: #FFFFFF;
  border-radius: 0.625rem;
  -webkit-box-shadow: 0 0.3125rem 0.625rem rgba(0, 0, 0, .1);
          box-shadow: 0 0.3125rem 0.625rem rgba(0, 0, 0, .1);
  padding: 1.25rem 1.875rem 1.875rem;
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(1.25rem);
          transform: translateY(1.25rem);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}
.point__card.is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (max-width: 767px) {
  .point__card {
    padding: 0.625rem 0.625rem 0.9375rem;
  }
}

.point__card::after {
  content: "";
  position: absolute;
  bottom: -1.625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 1.25rem solid transparent;
  border-right: 1.25rem solid transparent;
  border-top: 1.625rem solid #fff;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .point__card::after {
    border-top: 0.9375rem solid #fff;
    bottom: -0.9375rem;
    border-left: 0.8125rem solid transparent;
    border-right: 0.8125rem solid transparent;
  }
}

.point__card::before {
  content: "";
  position: absolute;
  bottom: -1.75rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 1.25rem solid transparent;
  border-right: 1.25rem solid transparent;
  border-top: 1.125rem solid rgba(0, 0, 0, .1);
  z-index: 1;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="2" /></filter></svg>#filter');
  -webkit-filter: blur(0.125rem);
          filter: blur(0.125rem);
}
@media screen and (max-width: 767px) {
  .point__card::before {
    border-top: 0.625rem solid rgba(0, 0, 0, .1);
    bottom: -0.9375rem;
    border-left: 0.8125rem solid transparent;
    border-right: 0.8125rem solid transparent;
  }
}

.point__label {
  font-size: 1rem;
  font-weight: 700;
  border-radius: 1.0625rem;
  padding: 0.3125rem 0.625rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .point__label {
    padding: 0.1875rem 0.3125rem;
    font-size: 0.75rem;
  }
}

.point__card--blue .point__label {
  background-color: #78C8DC;
}

.point__card--green .point__label {
  background-color: #8CD28C;
}

.point__number {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #FFFFFF;
  color: inherit;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 50%;
  margin-left: 0.3125rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .point__number {
    width: 1rem;
    height: 1rem;
    font-size: 0.75rem;
  }
}

.point__card--blue .point__number {
  color: #78C8DC;
}

.point__card--green .point__number {
  color: #8CD28C;
}

.point__text {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .point__text {
    font-size: 0.875rem;
    line-height: 1.4285714286;
    margin-top: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .point__text.text-center {
    margin-top: 0.9375rem;
  }
}

.feature {
  padding-top: 6.25rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .feature {
    padding-top: 2.5rem;
    padding-bottom: 3.75rem;
  }
}

.feature--bg {
  background-image: url("../images/feature-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .feature--bg {
    background-image: url("../images/feature-bg_sp.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

.feature__inner {
  text-align: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .feature__inner {
    max-width: 37.5rem;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    margin-bottom: 2.5rem;
  }
}

.feature__heading {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.5;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .feature__heading {
    font-size: 1.5rem;
    line-height: 1.5833333333;
  }
}

.feature__grid {
  border: 2px solid #FFFFFF;
  border-radius: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.125rem;
  padding: 3.125rem 3.75rem 3.75rem;
  max-width: 56.25rem;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-shadow: 0px 0.3125rem 0.625rem rgba(0, 0, 0, .1);
          box-shadow: 0px 0.3125rem 0.625rem rgba(0, 0, 0, .1);
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .feature__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    padding: 1.25rem;
    margin-top: 1.875rem;
  }
}

.feature__list {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .feature__list {
    padding-top: 0.625rem;
  }
}

.feature__item {
  position: relative;
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 800;
  padding-left: 1.5625rem;
}
.feature__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 1rem;
  height: 1rem;
  background-color: #FFE200;
}
@media screen and (max-width: 767px) {
  .feature__item {
    font-size: 1rem;
  }
  .feature__item::before {
    top: 0.4375rem;
    width: 0.875rem;
    height: 0.875rem;
  }
}

.feature__item + .feature__item {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .feature__item + .feature__item {
    margin-top: 0.625rem;
  }
}

.reservation--bg {
  background-image: url("../images/reservation-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  text-align: center;
  padding: 3.75rem 0 5rem;
}
@media screen and (max-width: 767px) {
  .reservation--bg {
    background-image: url("../images/reservation-bg_sp.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2.5rem 0 3.75rem;
  }
}

.reservation {
  text-align: center;
}

.reservation__text {
  position: relative;
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .reservation__text {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}

.reservation__text::before, .reservation__text::after {
  content: "";
  position: absolute;
  top: 59%;
  width: 2px;
  height: 3.125rem;
  background-color: #FFFFFF;
  -webkit-transform: translateY(-50%) rotate(25deg);
          transform: translateY(-50%) rotate(25deg);
}
.reservation__text::before {
  left: -1.875rem;
  -webkit-transform: translateY(-50%) rotate(-25deg);
          transform: translateY(-50%) rotate(-25deg);
}
.reservation__text::after {
  right: -1.875rem;
}

.reservation__button {
  margin-top: 0.9375rem;
  display: inline-block;
  padding: 1.6875rem 4.375rem;
  border-radius: 3.125rem;
  max-width: 35rem;
  width: 100%;
  border: 2px solid #FF7D00;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFA44D), color-stop(50%, #FF7D00), to(#FF7D00));
  background: linear-gradient(180deg, #FFA44D 0%, #FF7D00 50%, #FF7D00 100%);
  color: #FFFFFF;
  font-size: 1.875rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  position: relative;
  -webkit-box-shadow: 0 0.3125rem 0.625rem rgba(0, 0, 0, .1);
          box-shadow: 0 0.3125rem 0.625rem rgba(0, 0, 0, .1);
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .reservation__button {
    margin-top: 0.625rem;
    padding: 1rem 3rem;
    font-size: 1.125rem;
    border-radius: 1.875rem;
    max-width: 19.6875rem;
  }
}
.reservation__button:hover {
  opacity: 0.7 !important;
}
.reservation__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.875rem;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 0.875rem;
  height: 0.875rem;
  border-top: 0.25rem solid #FFFFFF;
  border-right: 0.25rem solid #FFFFFF;
}
@media screen and (max-width: 767px) {
  .reservation__button::after {
    right: 1.25rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #FFFFFF;
    border-right: 0.125rem solid #FFFFFF;
  }
}

.reservation__text-wrap,
.reservation__button {
  opacity: 0;
  -webkit-transform: translateY(1.25rem);
          transform: translateY(1.25rem);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}
.reservation__text-wrap.is-inview,
.reservation__button.is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.university-info {
  text-align: center;
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .university-info {
    padding-top: 2.5rem;
    padding-bottom: 3.125rem;
  }
}

.university-info__logo {
  margin: 0 auto;
  width: 15rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .university-info__logo {
    width: 10.625rem;
  }
}

.university-info__logo img:hover {
  opacity: 0.7;
}

.university-info__address {
  font-size: 1rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.75;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .university-info__address {
    margin-top: 0.9375rem;
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}

@media screen and (max-width: 767px) {
  .md-none {
    display: none;
  }
}

.md-show {
  display: none;
}
@media screen and (max-width: 767px) {
  .md-show {
    display: block;
  }
}

.title01 {
  font-size: 3.75rem;
  line-height: 0.5833333333;
  font-weight: 700;
  letter-spacing: 0;
  color: #F0002D;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .title01 {
    font-size: 2.375rem;
    line-height: 0.9210526316;
  }
}

.title02 {
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0;
  color: #00C8FF;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .title02 {
    font-size: 1.5rem;
    line-height: 1.25;
  }
}

.subtitle01 {
  font-size: 2.5rem;
  line-height: 1.475;
  font-weight: 400;
  letter-spacing: 0;
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .subtitle01 {
    font-size: 1.25rem;
    line-height: 0.6896551724;
  }
}

.text01 {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .text01 {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.text02 {
  font-size: 1.125rem;
  line-height: 1.4444444444;
  font-weight: 400;
  letter-spacing: 0;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .text02 {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.js-inview {
  opacity: 0;
  -webkit-transform: translateY(1.25rem);
          transform: translateY(1.25rem);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}

.is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
/*# sourceMappingURL=styles.css.map */
