@charset "UTF-8";
/* ========== カラー ========== */
/* ========== フォント ========== */
/* ========== テキスト設定（ショートハンド） ========== */
/* ========== ポジション設定（ショートハンド） ========== */
/* ================================================================================


共通パーツ・設定

================================================================================ */
/* ----- タッチ端末 - ホバーステート無効化 ----- */
@media (hover: hover) {
  * a[href^="tel:"] {
    text-decoration: none;
    color: inherit;
    pointer-events: none;
  }
}
/* ----- 別窓アイコン ----- */
a[target=_blank].blank {
  position: relative;
}
a[target=_blank].blank::after {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  background-color: #555555;
  padding-left: 1em;
  mask-image: url(../img/icon/icon-external-link.svg);
  mask-size: 100% 100%;
  mask-position: center;
  mask-repeat: no-repeat;
}

/* ========== インナー余白（左右） ========== */
.inner {
  padding-inline: 1.5rem;
}

/* ================================================================================

header

================================================================================ */
.header {
  position: fixed;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  width: fit-content;
  height: auto;
  background-color: transparent;
  margin-block: 4rem;
  transform: translateX(-50%);
  margin-left: calc((50vw - 187.5px) / 2);
}
.header__inner {
  max-width: 264px;
  margin-inline: auto;
}
.header__logo__link img {
  width: 100%;
  max-width: 210px;
}
.header__head--main img {
  width: 100%;
  max-width: 264px;
  margin-top: 1.5rem;
}
.header__head--sub img {
  width: 100%;
  max-width: 264px;
  margin-top: 1.25rem;
}
.header__nav {
  margin-top: 1.875rem;
}
.header__nav__list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  list-style: none;
}
.header__nav__list__item a {
  position: relative;
  text-decoration: none;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0;
  padding-left: 0.375rem;
}
.header__nav__list__item a:hover {
  opacity: 0.8;
}
.header__nav__list__item a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  transform: translateY(-50%);
  align-items: center;
  width: 4px;
  height: 1px;
  background-color: #3471BC;
}
.header__btn {
  margin-top: 1.5rem;
}
.header__btn__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.header__btn__list__item a {
  width: 215px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: unset;
  line-height: 1.5;
  letter-spacing: 0;
  border-radius: 0.5rem;
  padding: 0.75rem;
}
.header__btn__list__item a.btn--gradation {
  color: #FFFFFF;
  background: linear-gradient(90deg, #3471bc 0%, #00b9ce 100%);
}
.header__btn__list__item a.btn--solid {
  color: #3471BC;
  border: 1px solid #3471BC;
  background-color: #FFFFFF;
}
.header__btn__list__item a:hover {
  opacity: 0.8;
}
.header__sns {
  margin-top: 1.25rem;
}
.header__sns__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header__sns__list__item a {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #EEEEEE;
  border-radius: 50%;
  background-color: #FFFFFF;
}
.header__sns__list__item a:hover {
  opacity: 0.8;
}
.header__sns__list__item a img {
  width: 1rem;
  height: 1rem;
}

@media screen and (max-width: 1079px) {
  .header {
    display: none;
  }
}
/* ================================================================================

aside

================================================================================ */
.aside {
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  width: calc((100% - 375px) / 2);
  height: 100dvh;
  padding-block: 4rem;
  padding-inline: 1.5rem;
}

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



/* ================================================================================

main

================================================================================ */
.main {
  width: 100vw;
  height: 100dvh;
  overflow: auto;
}
.main__inner {
  width: 100%;
  max-width: 375px;
  background-color: #FFFFFF;
  margin-inline: auto;
}

/* =============== #fv =============== */
.fv img {
  width: 100%;
  margin-inline: auto;
}

/* =============== #request =============== */
.request {
  margin-top: 2.5rem;
}
.request__inner {
  border: 1px solid #EEEEEE;
  border-radius: 0.5rem;
  background-color: #FFFFFF;
  padding-block: 2rem;
  padding-inline: 1.5rem;
}
.request__head {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #3471BC;
  line-height: 1.5;
  letter-spacing: 0;
}
.request__text {
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #555555;
  line-height: 1.5;
  letter-spacing: 0;
  margin-top: 0.5rem;
}
.request__btn--download, .request__btn--oc {
  width: 100%;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: unset;
  line-height: 1.5;
  letter-spacing: 0;
  border-radius: 0.5rem;
}
.request__btn--download:hover, .request__btn--oc:hover {
  opacity: 0.8;
}
.request__btn--download {
  color: #FFFFFF;
  border: none;
  background: linear-gradient(90deg, #3471bc 0%, #00b9ce 100%);
  margin-top: 1rem;
}
.request__btn--oc {
  color: #3471BC;
  border: 1px solid #3471BC;
  margin-top: 0.75rem;
}
.request .request__banner {
  display: block;
  margin-top: 0.75rem;
}
.request .request__banner:hover {
  opacity: 0.8;
}

/* =============== #features =============== */
.features {
  margin-top: 5rem;
}
.features__article__head--en {
  text-decoration: underline;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  color: #3471BC;
  line-height: 1.5;
  letter-spacing: 0;
}
.features__article__head--ja {
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0;
  margin-block: 1rem 1.25rem;
}
.features__section {
  margin-bottom: 2.5rem;
}
.features__section__head--main {
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #3471BC;
  line-height: 1.5;
  letter-spacing: 0;
}
.features__section__head--main span {
  font-size: 2.5rem;
  margin-right: 0.5rem;
}
.features__section__img {
  margin-top: 0.5rem;
}
.features__section__item {
  margin-top: 1.25rem;
}
.features__section__item__head--sub {
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0;
}
.features__section__item__text {
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #555555;
  line-height: 1.5;
  letter-spacing: 0;
  margin-top: 0.625rem;
}

/* =============== #tuition =============== */
.tuition {
  padding-block: 2.5rem;
}
.tuition__article__head--en {
  text-decoration: underline;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  color: #3471BC;
  line-height: 1.5;
  letter-spacing: 0;
}
.tuition__article__head--ja {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0;
  margin-block: 1rem 1.25rem;
}
.tuition__inner {
  border: 1px solid #EEEEEE;
  border-radius: 0.5rem;
  background-color: #FFFFFF;
  padding-block: 2.5rem;
  padding-inline: 1.5rem;
}
.tuition__message {
  width: 100%;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #0FB29B;
  line-height: 1.5;
  letter-spacing: 0;
  background-color: #F4F9FF;
  border-radius: 1.25rem;
}
.tuition__btn--download, .tuition__btn--oc {
  width: 100%;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: unset;
  line-height: 1.5;
  letter-spacing: 0;
  border-radius: 0.5rem;
}
.tuition__btn--download:hover, .tuition__btn--oc:hover {
  opacity: 0.8;
}
.tuition__btn--download {
  color: #FFFFFF;
  border: none;
  background: linear-gradient(90deg, #3471bc 0%, #00b9ce 100%);
  margin-top: 1.5rem;
}
.tuition__btn--oc {
  color: #3471BC;
  border: 1px solid #3471BC;
  margin-top: 0.75rem;
}
.tuition__course {
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #3471BC;
  line-height: 1.5;
  letter-spacing: 0;
  margin-top: 1.5rem;
}
.tuition__price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0;
}
.tuition__price span {
  font-size: 1.5rem;
  font-weight: 500;
}
.tuition__breakdown {
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: #555555;
  line-height: 1.5;
  letter-spacing: 0;
  margin-top: 0.75rem;
}
.tuition__list {
  list-style: none;
  margin-top: 2.5rem;
}
.tuition__list__item {
  position: relative;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0;
  padding-left: 1.5rem;
}
.tuition__list__item:not(:first-child) {
  margin-top: 0.25rem;
}
.tuition__list__item::before {
  content: "";
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background: url(../img/icon/icon-check--circle.svg) no-repeat center center/contain;
}
.tuition__detail {
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: #555555;
  line-height: 1.5;
  letter-spacing: 0;
  margin-top: 1.25rem;
}

/* =============== #news =============== */
.news {
  background-color: #FAFAFA;
  padding-block: 2.5rem;
}
.news__article__head--en {
  text-decoration: underline;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  color: #3471BC;
  line-height: 1.5;
  letter-spacing: 0;
}
.news__article__head--ja {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0;
  margin-block: 1rem 1.25rem;
}
.news__list {
  list-style: none;
  margin-top: 2.5rem;
}
.news__list__item {
  border-bottom: 1px solid #EEEEEE;
  padding-block: 1.25rem;
  padding-inline: 1.5rem;
}
.news__list__item__date {
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #555555;
  line-height: 1.5;
  letter-spacing: 0;
}
.news__list__item__link {
  display: block;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #3471BC;
  line-height: 1.5;
  letter-spacing: 0;
  margin-top: 0.5rem;
}
.news__list__item__link:hover {
  opacity: 0.8;
}
.news__list__item__title {
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0;
  margin-top: 0.5rem;
}

/* =============== #shortcut =============== */
.shortcut {
  padding-block: 2.5rem 5rem;
}
.shortcut__list {
  list-style: none;
}
.shortcut__list__item:first-child {
  border-top: 1px solid #EEEEEE;
}
.shortcut__list__item {
  border-bottom: 1px solid #EEEEEE;
}
.shortcut__list__item__link {
  position: relative;
  display: block;
  text-decoration: none;
  padding-block: 2.75rem;
  padding-inline: 1.5rem 4.5rem;
}
.shortcut__list__item__link:hover {
  opacity: 0.8;
}
.shortcut__list__item__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5rem;
  bottom: auto;
  left: auto;
  transform: translateY(-50%);
  width: 0.675rem;
  height: 1.125rem;
  background: url(../img/icon/icon-arrow--right.svg) no-repeat center center/contain;
}
.shortcut__list__item__link__head {
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #3471BC;
  line-height: 1.5;
  letter-spacing: 0;
}
.shortcut__list__item__link__text {
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #555555;
  line-height: 1.5;
  letter-spacing: 0;
  margin-top: 0.5rem;
}
.shortcut__list .disclosure {
  border-bottom: 1px solid #EEEEEE;
  padding-block: 2.75rem;
  padding-inline: 1.5rem 2.625rem;
}
.shortcut__list .disclosure__head {
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #555555;
  line-height: 1.5;
  letter-spacing: 0;
}
.shortcut__list .disclosure__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
  margin-top: 1.5rem;
}
.shortcut__list .disclosure__link {
  position: relative;
  display: block;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #3471BC;
  line-height: 1.5;
  letter-spacing: 0;
  text-decoration: none;
}
.shortcut__list .disclosure__link:hover {
  opacity: 0.8;
}
.shortcut__list .disclosure__link::after {
  content: "";
  position: absolute;
  top: 0.25rem;
  right: -1.5rem;
  bottom: auto;
  left: auto;
  width: 0.5rem;
  height: 0.75rem;
  background: url(../img/icon/icon-arrow--right.svg) no-repeat center center/contain;
}

/* =============== #remind-01, #remind-02 =============== */
.remind {
  background: url(../img/top-remind/img-top__remind__background.png) no-repeat center center/cover;
  padding-block: 5rem;
}
.remind__head {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.5;
  letter-spacing: 0;
}
.remind__btn--download, .remind__btn--oc {
  width: 100%;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: unset;
  line-height: 1.5;
  letter-spacing: 0;
  border-radius: 0.5rem;
}
.remind__btn--download:hover, .remind__btn--oc:hover {
  opacity: 0.8;
}
.remind__btn--download {
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  background: linear-gradient(90deg, #3471bc 0%, #00b9ce 100%);
  margin-top: 1.5rem;
}
.remind__btn--oc {
  color: #3471BC;
  background-color: #FFFFFF;
  margin-top: 0.75rem;
}

/* =============== #footer =============== */
.footer {
  width: 100%;
  background-color: #FFFFFF;
  padding-block: 2.5rem;
  padding-inline: 1.5rem;
}
.footer__inner {
  max-width: 264px;
  margin-inline: auto;
}
.footer__logo__link img {
  width: 100%;
  max-width: 210px;
}
.footer__head--main img {
  width: 100%;
  max-width: 264px;
  margin-top: 1.5rem;
}
.footer__head--sub img {
  width: 100%;
  max-width: 264px;
  margin-top: 1.25rem;
}
.footer__nav {
  margin-top: 1.875rem;
}
.footer__nav__list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  list-style: none;
}
.footer__nav__list__item a {
  position: relative;
  text-decoration: none;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0;
  padding-left: 0.375rem;
}
.footer__nav__list__item a:hover {
  opacity: 0.8;
}
.footer__nav__list__item a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  transform: translateY(-50%);
  align-items: center;
  width: 4px;
  height: 1px;
  background-color: #3471BC;
}
.footer__btn {
  margin-top: 1.5rem;
}
.footer__btn__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__btn__list__item a {
  width: 215px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: unset;
  line-height: 1.5;
  letter-spacing: 0;
  border-radius: 0.5rem;
  padding: 0.75rem;
}
.footer__btn__list__item a.btn--gradation {
  color: #FFFFFF;
  background: linear-gradient(90deg, #3471bc 0%, #00b9ce 100%);
}
.footer__btn__list__item a.btn--solid {
  color: #3471BC;
  border: 1px solid #3471BC;
  background-color: #FFFFFF;
}
.footer__btn__list__item a:hover {
  opacity: 0.8;
}
.footer__sns {
  margin-top: 1.25rem;
}
.footer__sns__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__sns__list__item a {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #EEEEEE;
  border-radius: 50%;
  background-color: #FFFFFF;
}
.footer__sns__list__item a:hover {
  opacity: 0.8;
}
.footer__sns__list__item a img {
  width: 1rem;
  height: 1rem;
}
.footer__copyright {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.625rem;
  font-weight: 400;
  color: #555555;
  line-height: 1.5;
  letter-spacing: 0;
  margin-top: 2.5rem;
}

/* =============== #ocBanner =============== */
#ocBanner {
  position: fixed;
  top: auto;
  right: 1.5rem;
  bottom: 1.5rem;
  left: auto;
}

#ocCloseBtn {
  position: absolute;
  top: -1rem;
  right: 0;
  bottom: auto;
  left: auto;
  width: 1rem;
  height: 1rem;
  border: none;
  cursor: pointer;
}
#ocCloseBtn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1rem;
  height: 1rem;
  background: url(../img/icon/icon-close.svg) no-repeat center center/contain;
}

#ocBannerImg {
  display: block;
  width: 240px;
  height: 240px;
}
#ocBannerImg:hover {
  filter: brightness(90%);
}

/*# sourceMappingURL=style.css.map */

/* ================================================================================

static

================================================================================ */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.header_s {
    background-color: #f5f5f5;
    text-align: center;
    padding: 10px;
}
.header_s img {
    max-width: 100%;
    height: auto;
}
.header_s h1 {
    margin: 10px 0;
}
nav {
    background-color: #ffffff;
    overflow: hidden;
}
nav .menu-toggle {
    display: none;
    background-color: #333;
    color: white;
    padding: 14px 20px;
    cursor: pointer;
    text-align: left;
}
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}
nav ul li {
    flex: 1 1 auto;
}
nav ul li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px;
    text-decoration: none;
    background-color: #067eee;
    margin: 2px;
}
nav ul li a:hover {
    background-color: #555;
}
@media screen and (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
    }
    nav .menu-toggle {
        display: block;
    }
}
main {
    padding: 20px;
}

