@charset "UTF-8";
/* 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 {
  margin: 0;
}

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

/* 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]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

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

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

/* Remove all animations and transitions 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;
  }
}
:root {
  --zIndex: 100;
  --zIndex-header: calc(var(--zIndex) * 2);
  --zIndex-menu: calc(var(--zIndex) * 2);
  --zIndex-logo: calc(var(--zIndex) * 3);
  --zIndex-menuBtn: calc(var(--zIndex) * 3);
  --zIndex-fixedCta: calc(var(--zIndex) * 4);
  --color-main: #f99900;
  --color-accent: #135779;
  --color-white: #fff;
  --color-black: #000;
  --color-text-body: #013A65;
  --color-text-body-secondary: #2677A7;
  --color-text-body-tertiary: #AAAAAA;
  --color-text-body-emphasis: #FF5228;
  --color-text-body-emphasis02: #FFFA58;
  --background-body: #F3F3F3;
  --background-body-secondary: #EAF7FF;
  --background-gradation: linear-gradient(90deg, #F3A217 0%, #FF5128 100%);
  --fontFamily-base: "Noto Sans JP", sans-serif;
  --fontFamily-accent: "M PLUS 1", sans-serif;
  --fontFamily-poppins: "Poppins", sans-serif;
  --lineHeight-base: 1.7;
  --fontSize-base: 1.8rem;
  --fontWeight-base: 500;
  --fontWeight-regular: 400;
  --fontWeight-medium: 500;
  --fontWeight-semiBold: 600;
  --fontWeight-bold: 700;
  --fontWeight-exBold: 800;
  --fontWeight-black: 900;
  --fontColor-base: #013A65;
}

/* base */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 8.4rem;
}
@media screen and (max-width: 1200px) {
  html {
    scroll-padding-top: 7.2rem;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  font-family: var(--fontFamily-base);
  font-size: var(--fontSize-base);
  font-weight: var(--fontWeight-base);
  line-height: var(--lineHeight-base);
  color: var(--fontColor-base);
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* l-body */
.l-body.noScroll {
  overflow: hidden;
}

/* l-header */
.l-header {
  height: 7rem;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--zIndex-header);
  background-color: var(--color-white);
}
@media screen and (max-width: 1200px) {
  .l-header {
    height: 7.2rem;
  }
}
.l-header__inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 3rem;
}
@media screen and (max-width: 1320px) {
  .l-header__inner {
    padding: 0 1.6rem;
  }
}
@media screen and (max-width: 1200px) {
  .l-header__inner {
    padding: 0 1.6rem;
  }
}
.l-header__logo {
  width: 11.7rem;
  position: relative;
  z-index: var(--zIndex-logo);
}
.l-header__logo img {
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .l-header__gnav {
    display: none;
  }
  .l-header__gnav.menu_isOpen {
    display: block;
    overflow-y: scroll;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 7.2rem;
    padding-bottom: 8rem;
    background-color: #EAF7FF;
    z-index: var(--zIndex-menu);
  }
  .l-header__gnav.menu_isOpen::before {
    content: "";
    display: block;
    width: 100%;
    height: 7.2rem;
    background-color: var(--color-white);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
  }
}
.l-header__btn {
  display: none;
}
@media screen and (max-width: 1200px) {
  .l-header__btn {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: var(--zIndex-menuBtn);
  }
}

/* l-footer */
.l-footer {
  border-top: 1px solid #E8E8E8;
}
.l-footer__top {
  padding: 4rem 0;
}
@media screen and (max-width: 768px) {
  .l-footer__top {
    padding: 2.4rem 0;
  }
}
.l-footer__logo {
  max-width: 16.2rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-footer__logo {
    max-width: 14rem;
  }
}
.l-footer__bottom {
  padding: 1.8rem 0;
  color: var(--color-white);
  background: var(--color-text-body);
}
@media screen and (max-width: 768px) {
  .l-footer__bottom {
    padding: 1.6rem 0 9.6rem;
  }
}
.l-footer__bottomInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .l-footer__bottomInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.8rem;
  }
}
.l-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-footer__nav li:not(:last-child) {
  padding-right: 1rem;
  margin-right: 1rem;
  position: relative;
}
.l-footer__nav li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 1.6rem;
  background: var(--color-white);
}
.l-footer__nav li a {
  display: block;
  color: var(--color-white);
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .l-footer__nav li a {
    font-size: 1.4rem;
  }
}
.l-footer__nav li a:hover {
  text-decoration: underline;
}
.l-footer__copy {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .l-footer__copy {
    font-size: 1rem;
  }
}

/* l-inner */
.l-inner {
  width: 114.8rem;
  max-width: 100%;
  padding: 0 1.6rem;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .l-inner--difference, .l-inner--voice {
    padding: 0;
  }
}

/* c-site */
.c-site {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  margin-top: 7rem;
}
@media screen and (max-width: 1200px) {
  .c-site {
    margin-top: 7.2rem;
  }
}
.c-site__main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* c-gnav*/
.c-gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 1200px) {
  .c-gnav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.6rem;
  }
}
.c-gnav__list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
}
@media screen and (max-width: 1320px) {
  .c-gnav__list {
    width: 100%;
    gap: 1.6rem;
  }
}
@media screen and (max-width: 1200px) {
  .c-gnav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    padding: 3rem 0;
  }
}
.c-gnav__link {
  display: block;
  font-family: var(--fontFamily-accent);
  font-size: 1.4rem;
  font-weight: var(--fontWeight-bold);
  color: var(--fontColor-base);
}
@media screen and (max-width: 1200px) {
  .c-gnav__link {
    font-size: 1.6rem;
    text-align: center;
  }
}
.c-gnav__btnList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 1200px) {
  .c-gnav__btnList {
    padding: 1.6rem 0.6rem;
    gap: 0.8rem;
  }
}

/* c-btnMenu*/
.c-btnMenu {
  width: 5rem;
  height: 5rem;
  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;
  padding: 0;
  background-color: transparent;
  border: none;
}
.c-btnMenu span {
  display: inline-block;
  width: 60%;
  height: 3px;
  background-color: var(--fontColor-base);
  position: relative;
  border-radius: 10px;
}
.c-btnMenu span::before, .c-btnMenu span::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 3px;
  border-radius: 10px;
  background-color: var(--fontColor-base);
  position: absolute;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.c-btnMenu span::before {
  top: 0.8rem;
}
.c-btnMenu span::after {
  top: -0.8rem;
}

/* btnMenu_isOnがついた時のスタイル */
.c-btnMenu.btnMenu_isOn span {
  background-color: transparent;
}
.c-btnMenu.btnMenu_isOn span::before, .c-btnMenu.btnMenu_isOn span::after {
  top: 0;
}
.c-btnMenu.btnMenu_isOn span::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-btnMenu.btnMenu_isOn span::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* c-ttl*/
.c-ttl {
  font-family: var(--fontFamily-accent);
  font-weight: var(--fontWeight-bold);
  font-size: 3.8rem;
  line-height: 1.4473684211;
}
@media screen and (max-width: 768px) {
  .c-ttl {
    font-size: 2rem;
    line-height: 1.2;
  }
}
.c-ttl--center {
  text-align: center;
}
.c-ttl--large {
  font-size: 4.8rem;
}
@media screen and (max-width: 768px) {
  .c-ttl--large {
    font-size: 2.8rem;
  }
}
.c-ttl--yellow {
  color: var(--color-text-body-emphasis02);
}
.c-ttl--white {
  color: var(--color-white);
}
.c-ttl--reason, .c-ttl--feature, .c-ttl--merit, .c-ttl--curriculum, .c-ttl--teacher, .c-ttl--message {
  font-size: 4rem;
}
@media screen and (max-width: 768px) {
  .c-ttl--reason, .c-ttl--feature, .c-ttl--merit, .c-ttl--curriculum, .c-ttl--teacher, .c-ttl--message {
    font-size: 2.8rem;
  }
}
.c-ttl--reason .c-ttl--large, .c-ttl--feature .c-ttl--large, .c-ttl--merit .c-ttl--large, .c-ttl--curriculum .c-ttl--large, .c-ttl--teacher .c-ttl--large, .c-ttl--message .c-ttl--large {
  font-size: 4.8rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-ttl--reason .c-ttl--large, .c-ttl--feature .c-ttl--large, .c-ttl--merit .c-ttl--large, .c-ttl--curriculum .c-ttl--large, .c-ttl--teacher .c-ttl--large, .c-ttl--message .c-ttl--large {
    font-size: 2.8rem;
  }
}
.c-ttl--reason .c-ttl--exLarge, .c-ttl--feature .c-ttl--exLarge, .c-ttl--merit .c-ttl--exLarge, .c-ttl--curriculum .c-ttl--exLarge, .c-ttl--teacher .c-ttl--exLarge, .c-ttl--message .c-ttl--exLarge {
  font-size: 5.6rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-ttl--reason .c-ttl--exLarge, .c-ttl--feature .c-ttl--exLarge, .c-ttl--merit .c-ttl--exLarge, .c-ttl--curriculum .c-ttl--exLarge, .c-ttl--teacher .c-ttl--exLarge, .c-ttl--message .c-ttl--exLarge {
    font-size: 4.4rem;
  }
}
.c-ttl--message {
  font-size: 4rem;
}
@media screen and (max-width: 768px) {
  .c-ttl--message {
    font-size: 2rem;
  }
}
.c-ttl--teacher, .c-ttl--difference {
  font-size: 4rem;
}
@media screen and (max-width: 768px) {
  .c-ttl--teacher, .c-ttl--difference {
    font-size: 2rem;
  }
}
.c-ttl--teacher .c-ttl--large, .c-ttl--difference .c-ttl--large {
  font-size: 4.8rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-ttl--teacher .c-ttl--large, .c-ttl--difference .c-ttl--large {
    font-size: 2.8rem;
    line-height: 1.4;
  }
}
.c-ttl--teacher .c-ttl--exLarge, .c-ttl--difference .c-ttl--exLarge {
  font-size: 5.6rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-ttl--teacher .c-ttl--exLarge, .c-ttl--difference .c-ttl--exLarge {
    font-size: 2.8rem;
  }
}

/* c-btn */
.c-btn {
  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;
  gap: 1rem;
  font-family: var(--fontFamily-accent);
  font-size: 1.8rem;
  font-weight: var(--fontWeight-bold);
  color: var(--fontColor-white);
  background-color: var(--color-accent);
  border-radius: 99px;
  padding: 1.5rem 2rem;
  position: relative;
  -webkit-box-shadow: 0 3px 10px 0 rgba(1, 58, 101, 0.2);
          box-shadow: 0 3px 10px 0 rgba(1, 58, 101, 0.2);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .c-btn {
    font-size: 1.6rem;
    padding: 1rem 1.2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-btn:hover {
    opacity: 0.8;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .c-btn:hover {
    opacity: 0.8;
  }
}
.c-btn--header {
  font-size: 1.6rem;
  padding: 0.8rem 2rem;
}
@media screen and (max-width: 1300px) {
  .c-btn--header {
    font-size: 1.4rem;
    padding: 0.8rem 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .c-btn--header {
    font-size: 1.2rem;
    gap: 0.8rem;
    padding: 1rem 1.2rem;
  }
}
@media screen and (max-width: 1200px) {
  .c-btn--mv {
    font-size: 1.25vw;
  }
  .c-btn--mv.c-btn--download, .c-btn--mv.c-btn--contact {
    padding: 0.6944444444vw 1.1111111111vw;
    gap: 0.5555555556vw;
  }
  .c-btn--mv.c-btn--download::before, .c-btn--mv.c-btn--contact::before {
    width: 1.6666666667vw;
    height: 1.6666666667vw;
  }
}
.c-btn--download {
  color: var(--color-white);
  background-color: var(--fontColor-base);
}
.c-btn--download::before {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  background-image: url(../../assets/images/i_download.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.c-btn--contact {
  color: var(--color-white);
  background: var(--gradation_red, linear-gradient(270deg, #B82635 0%, #EA7323 100%));
}
.c-btn--contact::before {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  background-image: url(../../assets/images/i_mail.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* c-cardReason*/
.c-cardReason {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
  background-color: var(--color-white);
  border-radius: 10px;
  padding: 3.2rem 4rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-cardReason {
    padding: 2rem 1.6rem;
  }
}
.c-cardReason__imgArea {
  width: 100%;
  height: 16rem;
}
@media screen and (max-width: 768px) {
  .c-cardReason__imgArea {
    height: 12rem;
  }
}
.c-cardReason__imgArea img {
  max-height: 100%;
  margin: 0 auto;
}
.c-cardReason__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-cardReason__num {
  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;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background-color: #4678BD;
  color: var(--color-white);
  font-family: var(--fontFamily-poppins);
  font-size: 4rem;
  font-weight: var(--fontWeight-medium);
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
}
@media screen and (max-width: 768px) {
  .c-cardReason__num {
    width: 4.8rem;
    height: 4.8rem;
    font-size: 3.6rem;
    top: 0.4rem;
    left: 0.4rem;
  }
}
.c-cardReason__ttl {
  font-family: var(--fontFamily-accent);
  font-size: 2.2rem;
  font-weight: var(--fontWeight-exBold);
  line-height: 1.7;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-cardReason__ttl {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
.c-cardReason__sup {
  font-size: 1.2rem;
}
.c-cardReason__color {
  color: var(--color-text-body-emphasis);
}
.c-cardReason__txt {
  font-size: 1.6rem;
  font-weight: var(--fontWeight-medium);
  line-height: 1.7;
  margin-top: 1.6rem;
}
@media screen and (max-width: 768px) {
  .c-cardReason__txt {
    font-size: 1.4rem;
    margin-top: 1.2rem;
  }
}
.c-cardReason__note {
  font-size: 1.2rem;
  margin-top: 0.4rem;
}

/* c-cta */
.c-cta {
  padding: 4rem 0;
  background-color: var(--color-text-body);
}
@media screen and (max-width: 768px) {
  .c-cta {
    padding: 2.4rem 0;
  }
}
.c-cta__inner {
  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;
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .c-cta__inner {
    gap: 1.6rem;
  }
}
.c-cta__ttl {
  max-width: 60.2rem;
  margin: 0 auto;
}
.c-cta__box {
  width: 80rem;
  max-width: 100%;
  background-color: var(--color-white);
  border-radius: 10px;
  padding: 2rem;
}
@media screen and (max-width: 768px) {
  .c-cta__box {
    max-width: 31.4rem;
    padding: 1.6rem 2.4rem;
  }
}
.c-cta__list {
  max-width: 62rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .c-cta__list {
    max-width: 31.4rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.4rem;
  }
}
.c-cta__item {
  width: 30rem;
  max-width: 100%;
}

/* c-cardFeature */
.c-cardFeature {
  height: 100%;
  background-color: var(--color-white);
  border-radius: 10px;
  padding: 4rem 3rem;
  -webkit-box-shadow: 0 0 30px 0 rgba(14, 77, 155, 0.2);
          box-shadow: 0 0 30px 0 rgba(14, 77, 155, 0.2);
}
@media screen and (max-width: 768px) {
  .c-cardFeature {
    padding: 0.8rem 1.6rem;
  }
}
.c-cardFeature.is-active .c-cardFeature__trigger::after {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}
.c-cardFeature.is-active .c-cardFeature__txt {
  height: auto;
  opacity: 1;
  line-height: 1.6;
  padding-top: 1.6rem;
}
@media screen and (max-width: 768px) {
  .c-cardFeature__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.6rem;
  }
}
.c-cardFeature__icon {
  min-height: 13rem;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 768px) {
  .c-cardFeature__icon {
    min-height: initial;
    width: 4rem;
    margin-bottom: 0;
  }
}
.c-cardFeature__icon img {
  width: 13rem;
  margin: 0 auto;
}
.c-cardFeature__ttl {
  font-family: var(--fontFamily-accent);
  font-size: 2.4rem;
  line-height: 1.3;
  font-weight: var(--fontWeight-exBold);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-cardFeature__ttl {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 1.6rem;
    text-align: left;
  }
}
.c-cardFeature__txt {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-top: 1.6rem;
}
@media screen and (max-width: 768px) {
  .c-cardFeature__txt {
    font-size: 1.3rem;
    line-height: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
    margin-top: 0;
  }
}
.c-cardFeature__trigger {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-cardFeature__trigger {
    display: block;
    width: 1.7rem;
    height: 1.7rem;
    background-color: var(--color-accent);
    border-radius: 50%;
    position: relative;
  }
  .c-cardFeature__trigger::before, .c-cardFeature__trigger::after {
    content: "";
    display: block;
    width: 47.0588235294%;
    height: 2px;
    background-color: var(--color-white);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .c-cardFeature__trigger::after {
    -webkit-transform: translate(-50%, -50%) rotate(-90deg);
            transform: translate(-50%, -50%) rotate(-90deg);
  }
}

/* c-cardMerit*/
.c-cardMerit {
  display: block;
  height: 100%;
  background-color: #CBEBFF;
  padding: 3.2rem 1.8rem;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .c-cardMerit {
    padding: 1.6rem;
  }
}
.c-cardMerit__icon {
  width: 12rem;
  margin: 0 auto 2.4rem;
}
@media screen and (max-width: 768px) {
  .c-cardMerit__icon {
    width: 9rem;
    margin-bottom: 1.6rem;
  }
}
.c-cardMerit__icon img {
  width: 100%;
}
.c-cardMerit__ttl {
  font-size: 1.8rem;
  line-height: 1;
  text-align: center;
  font-family: var(--fontFamily-accent);
  font-weight: var(--fontWeight-exBold);
}
@media screen and (max-width: 768px) {
  .c-cardMerit__ttl {
    font-size: 1.6rem;
    line-height: 1.3;
  }
}
.c-cardMerit__ttl span {
  color: var(--color-text-body-emphasis);
}
.c-cardMerit__txt {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-top: 1.6rem;
}
@media screen and (max-width: 768px) {
  .c-cardMerit__txt {
    font-size: 1.2rem;
    margin-top: 0.8rem;
  }
}

/* c-cardTeacher*/
.c-cardTeacher {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  background-color: var(--color-white);
  border-radius: 10px;
  padding: 2rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-cardTeacher {
    padding: 1.6rem 2rem;
  }
}
.c-cardTeacher__imgArea {
  width: 17rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .c-cardTeacher__imgArea {
    width: 12rem;
  }
}
.c-cardTeacher__imgArea img {
  width: 100%;
}
.c-cardTeacher__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-cardTeacher__jobTtl {
  font-family: var(--fontFamily-accent);
  text-shadow: 1.5rem voff blur #000;
  font-weight: var(--fontWeight-bold);
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .c-cardTeacher__jobTtl {
    font-size: 1.3rem;
  }
}
.c-cardTeacher__name {
  font-family: var(--fontFamily-accent);
  font-weight: var(--fontWeight-bold);
  font-size: 2.2rem;
  margin-top: 0.2rem;
}
@media screen and (max-width: 768px) {
  .c-cardTeacher__name {
    font-size: 2rem;
  }
}
.c-cardTeacher__txt {
  font-size: 1.4rem;
  font-weight: var(--fontWeight-medium);
  line-height: 1.7;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .c-cardTeacher__txt {
    font-size: 1.2rem;
  }
}

/* c-cardVoice*/
.c-cardVoice {
  height: 100%;
  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.6rem;
  position: relative;
}
.c-cardVoice__imgArea {
  aspect-ratio: 358/180;
  overflow: hidden;
}
.c-cardVoice__imgArea img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-cardVoice__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-cardVoice__industory {
  font-size: 1.2rem;
}
.c-cardVoice__industory span {
  display: inline-block;
  color: var(--color-white);
  background-color: #013A65;
  padding: 0.3rem 1rem;
}
.c-cardVoice__ttl {
  font-weight: var(--fontWeight-bold);
  font-size: 1.8rem;
  line-height: 1.7;
  margin-top: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.c-cardVoice__txtArea {
  margin-top: 1rem;
  background: #F2FAFF;
  padding: 1.8rem 1.6rem;
}
@media screen and (max-width: 768px) {
  .c-cardVoice__txtArea {
    padding: 1.6rem;
  }
}
.c-cardVoice__txt {
  font-size: 1.6rem;
  font-weight: var(--fontWeight-medium);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-cardVoice__txt {
    font-size: 1.4rem;
  }
}
.c-cardVoice__company {
  font-size: 1.4rem;
  font-weight: var(--fontWeight-medium);
  margin-top: 1rem;
}
.c-cardVoice__btnArea {
  max-width: 20rem;
  margin: 1.6rem auto 0;
}
.c-cardVoice__btn {
  color: var(--color-text-body);
  text-align: center;
  font-family: var(--fontFamily-accent);
  font-size: 1.6rem;
  font-weight: var(--fontWeight-bold);
  padding: 0.8rem;
  border-radius: 100px;
  display: block;
  border: 1px solid;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-cardVoice__btn:hover {
  background-color: var(--color-text-body);
  color: var(--color-white);
}

/* c-cardThoughts */
.c-cardThoughts {
  height: 100%;
  background: var(--color-white);
  padding: 4rem;
  -webkit-box-shadow: 0 0 40px 0 rgba(1, 58, 101, 0.3);
          box-shadow: 0 0 40px 0 rgba(1, 58, 101, 0.3);
}
@media screen and (max-width: 768px) {
  .c-cardThoughts {
    padding: 2rem;
  }
}
.c-cardThoughts__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .c-cardThoughts__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
.c-cardThoughts__txtArea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
.c-cardThoughts__txtArea--02 {
  max-width: 50.8rem;
}
.c-cardThoughts__tag {
  color: var(--color-white);
  font-family: var(--fontFamily-accent);
  font-weight: var(--fontWeight-bold);
  font-size: 1.8rem;
  background: var(--color-text-body);
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 768px) {
  .c-cardThoughts__tag {
    font-size: 1.6rem;
  }
}
.c-cardThoughts__ttl {
  font-family: var(--fontFamily-accent);
  font-weight: var(--fontWeight-bold);
  font-size: 2.8rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .c-cardThoughts__ttl {
    font-size: 2.2rem;
  }
}
.c-cardThoughts__icon {
  max-width: 4.2rem;
  margin: 2.4rem auto;
}
@media screen and (max-width: 768px) {
  .c-cardThoughts__icon {
    max-width: 3.2rem;
    margin: 1.6rem auto;
  }
}
.c-cardThoughts__icon img {
  width: 100%;
}
.c-cardThoughts__txt {
  font-size: 1.8rem;
  font-weight: var(--fontWeight-bold);
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .c-cardThoughts__txt {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
.c-cardThoughts__note {
  font-size: 1.6rem;
  font-weight: var(--fontWeight-medium);
  line-height: 1.7;
  margin-top: 2.4rem;
}
@media screen and (max-width: 768px) {
  .c-cardThoughts__note {
    font-size: 1.4rem;
    margin-top: 1.6rem;
  }
}
.c-cardThoughts__note--history {
  text-align: left;
  line-height: 1.6;
}
.c-cardThoughts__imgArea {
  width: 48.4rem;
  max-width: 60%;
  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;
}
@media screen and (max-width: 768px) {
  .c-cardThoughts__imgArea {
    width: 100%;
    max-width: 100%;
  }
}
.c-cardThoughts__imgArea--02 {
  width: 49rem;
}

/* c-toggleBox */
.c-toggleBox {
  background-color: var(--background-body-secondary);
}
.c-toggleBox__trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  padding: 1.6rem 3.2rem 1.6rem 2rem;
  background: #F3F3F3;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .c-toggleBox__trigger {
    padding: 1.6rem;
    gap: 0;
  }
}
.c-toggleBox__triggerEn {
  font-family: var(--fontFamily-accent);
  font-weight: var(--fontWeight-bold);
  font-size: 2.4rem;
  line-height: 1;
  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;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--color-text-body);
}
@media screen and (max-width: 768px) {
  .c-toggleBox__triggerEn {
    margin-right: 2rem;
  }
}
.c-toggleBox__triggerTxt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: var(--fontFamily-accent);
  font-size: 1.8rem;
  font-weight: var(--fontWeight-bold);
}
@media screen and (max-width: 768px) {
  .c-toggleBox__triggerTxt {
    font-size: 1.6rem;
    line-height: 1.4375;
  }
}
.c-toggleBox__triggerIcon {
  width: 3.2rem;
  height: 3.2rem;
  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-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 768px) {
  .c-toggleBox__triggerIcon {
    width: 2.4rem;
    height: 2.4rem;
  }
}
.c-toggleBox__content {
  line-height: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  padding: 0 4rem 0 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .c-toggleBox__content {
    padding: 0 1.6rem;
  }
}
.c-toggleBox__contentEn {
  font-family: var(--fontFamily-accent);
  font-weight: var(--fontWeight-bold);
  font-size: 2.4rem;
  line-height: 1;
  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;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid var(--color-text-body);
}
.c-toggleBox__contentTxt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.6rem;
  font-weight: var(--fontWeight-medium);
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .c-toggleBox__contentTxt {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.c-toggleBox.is-active .c-toggleBox__triggerIcon {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.c-toggleBox.is-active .c-toggleBox__content {
  padding: 2.4rem 4rem 2.4rem 2rem;
  line-height: normal;
  height: auto;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .c-toggleBox.is-active .c-toggleBox__content {
    padding: 1.2rem 1.6rem;
  }
}

/* c-fixedCta*/
.c-fixedCta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: var(--zIndex-fixedCta);
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 768px) {
  .c-fixedCta {
    display: block;
  }
}
.c-fixedCta.is-active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.c-fixedCta__btnList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.6rem 0.6rem;
  gap: 0.8rem;
}
.c-fixedCta__btnItem {
  width: 100%;
}

/* p-mv */
.p-mv {
  position: relative;
}
.p-mv__main img {
  width: 100%;
}
.p-mv__ctaArea {
  width: 80rem;
  max-width: 100%;
  background-color: var(--color-white);
  border-radius: 10px;
  padding: 2rem;
  position: absolute;
  left: 50%;
  bottom: 2.0833333333vw;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .p-mv__ctaArea {
    padding: 1.3888888889vw;
    width: 55.5555555556vw;
  }
}
@media screen and (max-width: 768px) {
  .p-mv__ctaArea {
    display: none;
  }
}
.p-mv__ctaList {
  max-width: 62rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}
@media screen and (max-width: 1200px) {
  .p-mv__ctaList {
    gap: 0.6944444444vw;
  }
}
.p-mv__ctaItem {
  max-width: 100%;
}

/* p-logo */
.p-logo {
  padding: 6.4rem 0 5.6rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .p-logo {
    padding: 3.2rem 0;
  }
}
.p-logo__ttl {
  font-size: 3rem;
  font-family: var(--fontFamily-accent);
  font-weight: var(--fontWeight-bold);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-logo__ttl {
    font-size: 2rem;
    line-height: 1.45;
  }
}
.p-logo__ttl span {
  color: var(--color-text-body-emphasis);
}
.p-logo__body {
  margin-top: 2.4rem;
}
@media screen and (max-width: 768px) {
  .p-logo__body {
    margin-top: 1.2rem;
  }
}
.p-logo .swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.p-logo .swiper .swiper-slide img {
  width: 100%;
  height: auto;
}

/* p-about */
.p-about {
  padding: 4rem 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-about {
    padding: 2rem 0 2.4rem;
  }
}
.p-about__img {
  max-width: 108rem;
  margin: 5.6rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-about__img {
    margin-top: 2.4rem;
  }
}
.p-about__img img {
  width: 100%;
}
.p-about__deco {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-about__deco {
    display: block;
    width: 4.2rem;
    position: absolute;
    top: 0;
    left: 1.6rem;
  }
}
.p-about__deco img {
  width: 100%;
}

/* p-reason */
.p-reason {
  padding: 4rem 0 6.4rem;
  background-color: #0E4D9B;
}
@media screen and (max-width: 768px) {
  .p-reason {
    padding: 3.2rem 0;
  }
}
.p-reason__body {
  margin-top: 5.6rem;
}
@media screen and (max-width: 768px) {
  .p-reason__body {
    margin-top: 2.4rem;
  }
}
.p-reason__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .p-reason__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.6rem;
  }
}

/* p-feature */
.p-feature {
  padding: 6.4rem 0;
  background-color: var(--background-body-secondary);
}
@media screen and (max-width: 768px) {
  .p-feature {
    padding: 3.2rem 0;
  }
}
.p-feature__txt {
  font-size: 1.8rem;
  line-height: 1.7;
  text-align: center;
  margin-top: 3.2rem;
}
@media screen and (max-width: 768px) {
  .p-feature__txt {
    font-size: 1.4rem;
    margin-top: 2.4rem;
  }
}
.p-feature__body {
  margin-top: 5.6rem;
}
@media screen and (max-width: 768px) {
  .p-feature__body {
    margin-top: 2.4rem;
  }
}
.p-feature__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .p-feature__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}

/* p-reality */
.p-reality {
  padding: 6.4rem 0 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#B2B9D6), to(#FFF));
  background: linear-gradient(180deg, #B2B9D6 0%, #FFF 100%);
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-reality {
    padding: 3.2rem 0 0;
  }
}
.p-reality__lead {
  font-family: var(--fontFamily-accent);
  color: var(--color-white);
  font-size: 3.2rem;
  line-height: 1.1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-reality__lead {
    font-size: 1.8rem;
    line-height: 1.2;
  }
}
.p-reality__ttl {
  font-family: var(--fontFamily-accent);
  font-size: 3.2rem;
  font-weight: var(--fontWeight-bold);
  line-height: 1;
  text-align: center;
  margin-top: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-reality__ttl {
    font-size: 2rem;
    line-height: 0.8rem;
  }
}
.p-reality__ttl span {
  font-size: 4.8rem;
}
@media screen and (max-width: 768px) {
  .p-reality__ttl span {
    font-size: 2.8rem;
  }
}
.p-reality__body {
  margin-top: 4.8rem;
}
@media screen and (max-width: 768px) {
  .p-reality__body {
    margin-top: 3.2rem;
  }
}
.p-reality__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .p-reality__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.6rem;
  }
}
.p-reality__list img {
  width: 100%;
}
.p-reality__txt {
  font-size: 2.6rem;
  font-family: var(--fontFamily-accent);
  font-weight: var(--fontWeight-bold);
  line-height: 1;
  text-align: center;
  margin-top: 4.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  padding-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .p-reality__txt {
    font-size: 1.8rem;
    margin-top: 2.4rem;
  }
}
.p-reality__txt .bg {
  font-size: 3rem;
  background-color: var(--color-text-body);
  color: var(--color-white);
  padding: 0.6rem 0.7rem 1rem 0.6rem;
}
@media screen and (max-width: 768px) {
  .p-reality__txt .bg {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-reality__txt .top {
    width: 100%;
  }
}
.p-reality__footer {
  width: 100%;
}
.p-reality__footer img {
  width: 100%;
}

/* p-merit */
.p-merit {
  background: #EAF7FF;
}
.p-merit__connection {
  width: 100%;
}
.p-merit__connection img {
  width: 100%;
}
.p-merit__lead {
  font-size: 1.8rem;
  line-height: 1;
  text-align: center;
  font-weight: var(--fontWeight-bold);
  margin-bottom: 0.8rem;
}
.p-merit__body {
  margin-top: 4.2rem;
}
@media screen and (max-width: 768px) {
  .p-merit__body {
    margin-top: 7.2rem;
  }
}
.p-merit__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-merit__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
  }
}
.p-merit__txt {
  font-size: 2.6rem;
  font-family: var(--fontFamily-accent);
  font-weight: var(--fontWeight-bold);
  line-height: 1;
  text-align: center;
  margin-top: 6.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.6rem 1rem;
}
@media screen and (max-width: 768px) {
  .p-merit__txt {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-top: 4rem;
  }
}
.p-merit__txt .first {
  width: 100%;
}
.p-merit__txt .bg {
  font-size: 4.8rem;
  display: inline-block;
  background: -webkit-gradient(linear, right top, left top, from(#0E4D9B), to(#2677A7));
  background: linear-gradient(270deg, #0E4D9B 0%, #2677A7 100%);
  color: var(--color-white);
  padding: 0.8rem 1rem 1.2rem;
}
@media screen and (max-width: 768px) {
  .p-merit__txt .bg {
    font-size: 2.6rem;
  }
}
.p-merit__txt .dot {
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  background-color: var(--color-white);
  border-radius: 50%;
  margin: 0 0.5rem;
  position: relative;
  top: -1rem;
}
@media screen and (max-width: 768px) {
  .p-merit__txt .dot {
    width: 0.6rem;
    height: 0.6rem;
    top: -0.4rem;
  }
}
.p-merit__txt .last {
  font-size: 2.8rem;
}
@media screen and (max-width: 768px) {
  .p-merit__txt .last {
    display: block;
    font-size: 1.8rem;
    margin-top: 0.8rem;
  }
}

/* p-achieve */
.p-achieve {
  padding: 6.4rem 0;
}
@media screen and (max-width: 768px) {
  .p-achieve {
    padding: 4rem 0;
  }
}
.p-achieve__box {
  color: var(--color-white);
  padding: 4.8rem 8.5125448029% 0;
  background-color: #0E4D9B;
  border-radius: 10px 10px 0 0;
}
@media screen and (max-width: 768px) {
  .p-achieve__box {
    padding: 1.6rem;
  }
}
.p-achieve__ttl {
  max-width: 94rem;
  margin: 0 auto;
}
.p-achieve__ttl img {
  width: 100%;
}
.p-achieve__lead {
  text-align: center;
  font-size: 1.8rem;
  font-weight: var(--fontWeight-medium);
  line-height: 1.7;
  margin-top: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-achieve__lead {
    font-size: 1.4rem;
  }
}
.p-achieve__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  margin-top: 4rem;
}
.p-achieve__list img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-achieve__list {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 2rem;
  }
}
.p-achieve__note {
  font-size: 1.2rem;
  font-weight: var(--fontWeight-regular);
  line-height: 1.3;
  margin-top: 1.6rem;
  word-break: break-all;
  overflow-wrap: break-word;
}
@media screen and (max-width: 768px) {
  .p-achieve__note {
    font-size: 1rem;
  }
}
.p-achieve__banner {
  padding: 5.4rem 7.8853046595% 4.4rem;
  border-radius: 0 0 10px 10px;
  background: -webkit-gradient(linear, left bottom, left top, from(#007ECA), to(#0E4D9B));
  background: linear-gradient(0deg, #007ECA 0%, #0E4D9B 100%);
}
@media screen and (max-width: 768px) {
  .p-achieve__banner {
    padding: 1.6rem;
  }
}
.p-achieve__banner img {
  width: 100%;
}

/* p-curriculum */
.p-curriculum {
  padding-top: 6.4rem;
  background: -webkit-gradient(linear, left bottom, left top, from(#007ECA), to(#0E4D9B));
  background: linear-gradient(0deg, #007ECA 0%, #0E4D9B 100%);
}
@media screen and (max-width: 768px) {
  .p-curriculum {
    padding-top: 3.2rem;
  }
}
.p-curriculum__lead {
  color: var(--color-white);
  font-size: 2.4rem;
  font-weight: var(--fontWeight-bold);
  line-height: 1.7;
  text-align: center;
  margin-top: 3.2rem;
}
@media screen and (max-width: 768px) {
  .p-curriculum__lead {
    font-size: 1.8rem;
    line-height: 1.7;
  }
}
.p-curriculum__lead span {
  display: inline-block;
  line-height: 1.2;
  color: var(--color-text-body-emphasis02);
  border-bottom: 1px solid;
}
.p-curriculum__txt {
  color: var(--color-white);
  font-size: 1.8rem;
  font-weight: var(--fontWeight-medium);
  line-height: 1.7;
  text-align: center;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .p-curriculum__txt {
    font-size: 1.4rem;
    margin-top: 1.6rem;
  }
}
.p-curriculum__body {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .p-curriculum__body {
    margin-top: 1rem;
  }
}
.p-curriculum__imgArea {
  max-width: 80.1rem;
  margin: 0 auto 0;
}
.p-curriculum__imgArea img {
  width: 100%;
}
.p-curriculum__subttl {
  display: none;
  color: var(--color-white);
  font-family: var(--fontFamily-accent);
  font-weight: var(--fontWeight-exBold);
  text-align: center;
  font-size: 1.8rem;
  background: #1A73E8;
  padding: 0.5rem;
  margin-top: 3.4rem;
}
.p-curriculum__subttl span {
  color: var(--color-text-body-emphasis02);
}
@media screen and (max-width: 768px) {
  .p-curriculum__subttl {
    display: block;
  }
}
.p-curriculum__list {
  padding: 2.4rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.6rem 1rem;
  display: none;
}
@media screen and (max-width: 768px) {
  .p-curriculum__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.p-curriculum__list li {
  width: calc((100% - 2rem) / 3);
}
.p-curriculum__list li a {
  display: block;
  font-family: var(--fontFamily-accent);
  font-weight: var(--fontWeight-exBold);
  color: var(--color-text-body);
  font-size: 1.3rem;
  text-align: center;
  padding: 0.6rem 0.6rem;
  background-color: var(--color-white);
  border-radius: 100px;
}
.p-curriculum__main {
  width: 100%;
  margin-top: 4rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-curriculum__main {
    margin-top: 0;
  }
}
.p-curriculum__main img {
  width: 100%;
}
.p-curriculum__link {
  width: 100%;
  height: 10rem;
  position: absolute;
  left: 0;
}
.p-curriculum__link--day1 {
  top: 0;
}
.p-curriculum__link--day2 {
  top: 82.4rem;
}
.p-curriculum__link--day3 {
  top: 166.4rem;
}
.p-curriculum__link--day4 {
  top: 253.5rem;
}
.p-curriculum__link--day5 {
  top: 341rem;
}
.p-curriculum__support {
  position: relative;
  margin-top: 4rem;
}
.p-curriculum__support img {
  width: 100%;
}
.p-curriculum__supportTable {
  overflow: scroll;
  padding-left: 1rem;
  padding-bottom: 1.6rem;
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: 100%;
}
.p-curriculum__supportTable img {
  width: 75.6rem;
  max-width: none;
}

/* p-teacher */
.p-teacher {
  padding: 6.4rem 0;
}
@media screen and (max-width: 768px) {
  .p-teacher {
    padding: 4rem 0 2rem;
  }
}
.p-teacher__txt {
  color: var(--color-white);
  font-size: 1.8rem;
  font-weight: var(--fontWeight-medium);
  line-height: 1.7;
  text-align: center;
  margin-top: 3.2rem;
}
@media screen and (max-width: 768px) {
  .p-teacher__txt {
    font-size: 1.4rem;
    margin-top: 2.4rem;
  }
}
.p-teacher__body {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-teacher__body {
    margin-top: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-teacher__sliderArea .swiper {
    padding-bottom: 5rem;
  }
}
.p-teacher__sliderArea .swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
@media screen and (max-width: 768px) {
  .p-teacher__sliderArea .swiper .swiper-wrapper {
    -webkit-transition-timing-function: initial;
            transition-timing-function: initial;
  }
}
.p-teacher__sliderArea .swiper .swiper-wrapper .swiper-slide {
  height: auto;
}
.p-teacher__sliderArea .swiper .swiper-wrapper .swiper-slide.u-display--spNone {
  display: none !important;
}
.p-teacher__sliderArea .swiper .swiper-pagination {
  display: none;
}
.p-teacher__sliderArea .swiper .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  background: var(--color-white);
}
.p-teacher__sliderArea .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--color-text-body-emphasis02);
}
@media screen and (max-width: 768px) {
  .p-teacher__sliderArea .swiper .swiper-pagination {
    display: block;
  }
}

/* p-system */
.p-system {
  padding: 6.4rem 0;
  background-color: #EAF7FF;
}
@media screen and (max-width: 768px) {
  .p-system {
    padding: 3.2rem 0;
  }
}
.p-system__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .p-system__inner {
    gap: 2.4rem;
  }
}
.p-system__header {
  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;
}
.p-system__lead {
  font-family: var(--fontFamily-accent);
  font-weight: var(--fontWeight-bold);
  font-size: 2.8rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-system__lead {
    font-size: 1.6rem;
  }
}
.p-system__ttl {
  font-family: var(--fontFamily-accent);
  font-weight: var(--fontWeight-bold);
  font-size: 4rem;
  line-height: 1.4;
  margin-top: 0.6rem;
}
@media screen and (max-width: 768px) {
  .p-system__ttl {
    font-size: 2.2rem;
  }
}
.p-system__logo {
  max-width: 34.2rem;
  margin: 2rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-system__logo {
    max-width: 24.2rem;
    margin-top: 1rem;
  }
}
.p-system__note {
  font-size: 1.4rem;
  line-height: 1.7;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .p-system__note {
    font-size: 1.2rem;
  }
}
.p-system__txt {
  font-size: 1.8rem;
  font-weight: var(--fontWeight-medium);
  line-height: 1.7;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-system__txt {
    font-size: 1.4rem;
    text-align: left;
  }
}
.p-system__box {
  background-color: var(--color-white);
  padding: 3.4rem 4rem 4rem 4rem;
  margin-top: 6.4rem;
  border-radius: 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-system__box {
    padding: 2rem;
    margin-top: 2.4rem;
  }
}
.p-system__list {
  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.2rem;
}
@media screen and (max-width: 768px) {
  .p-system__list {
    gap: 2rem;
  }
}
.p-system__item {
  font-family: var(--fontFamily-accent);
  font-weight: var(--fontWeight-bold);
  font-size: 1.8rem;
  line-height: 1.7;
  padding-left: 3.4rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-system__item {
    font-size: 1.6rem;
    line-height: 1.3;
  }
}
.p-system__item::before {
  content: "";
  display: inline-block;
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/system_list_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.p-system__gif {
  max-width: 47.2rem;
  position: absolute;
  top: -3.6rem;
  right: 1.2rem;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  .p-system__gif {
    max-width: calc(100% - 65rem);
  }
}
@media screen and (max-width: 1100px) {
  .p-system__gif {
    top: -5.6rem;
    max-width: 26rem;
  }
}
@media screen and (max-width: 768px) {
  .p-system__gif {
    width: 100%;
    max-width: 100%;
    position: initial;
    top: initial;
    right: initial;
    margin-top: 3.2rem;
  }
}
.p-system__gif img {
  width: 100%;
}

/* p-difference */
.p-difference {
  padding: 6.4rem 0 3rem;
  background-color: #EAF7FF;
}
@media screen and (max-width: 768px) {
  .p-difference {
    padding: 0 0 3.2rem;
  }
}
.p-difference__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .p-difference__inner {
    gap: 3.2rem;
  }
}
.p-difference__body {
  margin-top: -4rem;
}
@media screen and (max-width: 768px) {
  .p-difference__body {
    margin-top: -3rem;
  }
}
.p-difference__table {
  max-width: 102rem;
  margin: 0 auto;
  overflow: auto;
}
.p-difference__table img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-difference__table img {
    width: 68.3rem;
    max-width: none;
  }
}

/* p-price */
.p-price {
  padding: 6.4rem 0;
  background-color: #CBEBFF;
}
@media screen and (max-width: 768px) {
  .p-price {
    padding: 3.2rem 0;
  }
}
.p-price__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .p-price__inner {
    gap: 3.2rem;
  }
}
.p-price__imgArea {
  max-width: 94rem;
  margin: 0 auto;
  -webkit-box-shadow: 0 0 40px 0 rgba(1, 58, 101, 0.3);
          box-shadow: 0 0 40px 0 rgba(1, 58, 101, 0.3);
}
.p-price__imgArea img {
  width: 100%;
}

/* p-voice */
.p-voice {
  padding: 6.4rem 0;
}
@media screen and (max-width: 768px) {
  .p-voice {
    padding: 3.2rem 0;
  }
}
.p-voice__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .p-voice__inner {
    gap: 3.2rem;
  }
}
@media screen and (min-width: 769px) {
  .p-voice__slider .swiper {
    overflow: initial;
  }
}
@media screen and (max-width: 768px) {
  .p-voice__slider .swiper {
    padding-bottom: 5rem;
  }
}
@media screen and (min-width: 769px) {
  .p-voice__slider .swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4rem;
  }
}
.p-voice__slider .swiper .swiper-pagination .swiper-pagination-bullet {
  background: #C4C4C4;
  opacity: 1;
}
.p-voice__slider .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #013A65;
}

/* p-thoughts */
.p-thoughts {
  padding: 6.4rem 0;
  background: #CBEBFF;
}
@media screen and (max-width: 768px) {
  .p-thoughts {
    padding: 3.2rem 0;
  }
}
.p-thoughts__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .p-thoughts__inner {
    gap: 3.2rem;
  }
}
.p-thoughts__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .p-thoughts__list {
    gap: 1.6rem;
  }
}

/* p-message */
.p-message {
  padding: 6.4rem 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#EAF7FF), to(#EAF7FF)), #FFF;
  background: linear-gradient(0deg, #EAF7FF 0%, #EAF7FF 100%), #FFF;
}
@media screen and (max-width: 768px) {
  .p-message {
    padding: 3.2rem 0;
  }
}
.p-message__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .p-message__inner {
    gap: 2.4rem;
  }
}
.p-message__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  padding: 4rem;
  background: var(--color-white);
  border-radius: 10px;
  -webkit-box-shadow: 0 0 40px 0 rgba(1, 58, 101, 0.3);
          box-shadow: 0 0 40px 0 rgba(1, 58, 101, 0.3);
}
@media screen and (max-width: 768px) {
  .p-message__box {
    padding: 2rem 1.6rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.6rem;
  }
}
.p-message__imgArea {
  width: 35.6rem;
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  .p-message__imgArea {
    width: 100%;
    max-width: 20.5rem;
    margin: 0 auto;
  }
}
.p-message__profile {
  font-family: var(--fontFamily-accent);
  font-weight: var(--fontWeight-bold);
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: center;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .p-message__profile {
    font-size: 1.2rem;
  }
}
.p-message__profile span {
  display: block;
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  .p-message__profile span {
    font-size: 2rem;
  }
}
.p-message__txtArea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-message__txtArea p {
  font-size: 1.6rem;
  font-weight: var(--fontWeight-medium);
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .p-message__txtArea p {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}

/* p-faq */
.p-faq {
  padding: 6.4rem 0;
}
@media screen and (max-width: 768px) {
  .p-faq {
    padding: 3.2rem 0;
  }
}
.p-faq__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .p-faq__inner {
    gap: 2.4rem;
  }
}
.p-faq__list {
  max-width: 92.6rem;
  margin: 0 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: 2rem;
}
@media screen and (max-width: 768px) {
  .p-faq__list {
    gap: 1rem;
  }
}

/* u-align */
.u-align--center {
  text-align: center !important;
}
.u-align--right {
  text-align: right !important;
}

/* u-txt */
.u-txt--accent {
  color: var(--color-text-body-emphasis);
}

/* u-display */
.u-display--pcNone {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u-display--pcNone {
    display: block !important;
  }
}
@media screen and (max-width: 768px) {
  .u-display--spNone {
    display: none !important;
  }
}
.u-display--inlineBlock {
  display: inline-block;
}