:root {
  --global-nav-height: 60px;
  --local-nav-height: 80px;
  --mobile-nav-height: 60px;
  --inner-padding: 20px; }

@keyframes fade-in {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(12px); }
  to {
    opacity: 1;
    transform: translateY(0px); } }

@keyframes fade-in-down {
  from {
    opacity: 0;
    transform: translateY(-12px); }
  to {
    opacity: 1;
    transform: translateY(0px); } }

@keyframes fade-in-right {
  from {
    opacity: 0;
    transform: translateX(12px); }
  to {
    opacity: 1;
    transform: translateY(0px); } }

@keyframes fade-in-left {
  from {
    opacity: 0;
    transform: translateX(-12px); }
  to {
    opacity: 1;
    transform: translateY(0px); } }

[data-scroll="fade-in"],
[data-scroll="fade-in-up"] {
  opacity: 0;
  will-change: transform, opacity; }

[data-scroll="fade-in"].is-show {
  animation: fade-in 1.2s cubic-bezier(0.785, 0.135, 0.15, 0.86) forwards; }

[data-scroll="fade-in-up"].is-show {
  animation: fade-in-up 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) forwards; }

a:not([class]) {
  color: #000;
  text-decoration: underline;
  transition: color 0.3s ease; }
  a:not([class]):hover {
    color: #ffda47; }

body {
  position: relative;
  color: #323232;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  word-wrap: break-word; }

button {
  font-family: "Noto Sans JP", sans-serif;
  cursor: pointer; }

html::after {
  content: "";
  background-image: url("../images/icon_plus.svg"), url("../images/icon_minus.svg"), url("../images/icon_plus-white.svg"), url("../images/icon_minus-white.svg"); }

.header-container {
  display: none;
  line-height: 1; }

.header-main-nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: var(--global-nav-height);
  background-color: #f6f6f6; }

.header-gnav {
  display: grid;
  grid-template-columns: repeat(6, 1fr); }

.header-gnav__item,
.header-gnav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%; }

.header-gnav__link {
  color: #333;
  font-size: 13px;
  line-height: 1.23;
  text-decoration: none;
  padding-left: 5px;
  padding-right: 5px; }
  .header-gnav__link span {
    padding-left: 8px; }
  .header-gnav__link::before {
    display: block;
    content: "";
    width: 10px;
    height: 10px;
    background: url("../images/icon_arrow.svg") no-repeat;
    background-size: contain; }
  .header-gnav__link:hover, .header-gnav__link.is-current {
    background-color: #fff; }

.header-buttons-container {
  display: flex;
  justify-content: flex-end;
  padding-left: 10px;
  padding-right: 20px; }

.header-buttons-inner {
  display: flex; }

.header-buttons-column {
  display: flex;
  align-items: center; }
  .header-buttons-column:not(:last-child) {
    margin-right: 10px; }

.header-buttons-item {
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  text-decoration: none;
  border-radius: 10px;
  cursor: pointer; }
  .header-buttons-item:hover {
    opacity: 0.7; }

.header-buttons-item[data-type="contact"] {
  color: #333;
  background-color: #ffda47; }

.header-buttons-item[data-type="student"] {
  color: #fff;
  background-color: #1792cb; }

.header-buttons-item[data-type="teacher"] {
  color: #fff;
  background-color: #66ae32; }

.header-buttons-item__icon {
  position: relative;
  top: 1px;
  fill: currentColor;
  padding-right: 8px; }

.header-login-container {
  position: absolute;
  right: 0;
  top: var(--global-nav-height);
  width: 100%;
  padding: 20px;
  background-color: #1792cb;
  border-bottom-left-radius: 20px;
  opacity: 0;
  visibility: hidden;
  z-index: 1000; }
  .header-buttons-column:hover .header-login-container {
    opacity: 1;
    visibility: visible; }

.header-login-container[data-visible] {
  transition: opacity 0.2s ease-out, visibility 0.2s ease-out; }

.header-login-container[data-visible="false"] {
  opacity: 0;
  visibility: hidden; }

.header-login-container[data-visible="true"] {
  opacity: 1;
  visibility: visible; }

.header-login-all-courses {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px; }

.header-login-all-courses__img {
  margin-bottom: 28px; }

.header-login-all-courses__button {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  width: 100%;
  height: 55px;
  background-color: #1792cb;
  text-decoration: none;
  border-radius: 10px; }
  .header-login-all-courses__button:hover {
    opacity: 0.8; }

.header-login-all-courses__button__icon {
  margin-top: 2px;
  margin-right: 10px; }

.header-login-all-courses__button__label {
  font-size: 18px;
  font-weight: 700; }

.header-login-drill {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  text-align: center; }

.header-login-drill__icon {
  margin-right: 10px; }

.header-login-drill__text {
  color: #fff;
  font-size: 16px;
  font-weight: 700; }
  .header-login-drill__text a {
    color: #fff; }

.header-sub-container {
  display: none;
  position: relative;
  line-height: 1;
  height: var(--local-nav-height);
  z-index: 999; }

.header-sub-container[data-local-nav="true"] {
  background-color: #fff; }

.header-fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  transform: translateY(-100%);
  z-index: 9999; }

.header-fixed-nav[data-visible="true"] {
  transform: translateY(0); }

.header-fixed-nav[data-animation="true"] {
  transition: transform 0.3s ease-out; }

.header-logo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 224px;
  z-index: 1; }

.header-lnav {
  flex: 1;
  display: grid; }

.header-lnav[data-type="high-school"] {
  grid-template-columns: repeat(8, 1fr); }

.header-lnav[data-type="joho1-drill"],
.header-lnav[data-type="middle-school"],
.header-lnav[data-type="org"] {
  grid-template-columns: repeat(auto-fit, calc(calc(100% - 224px) / 8));
  justify-content: center;
  margin-left: -224px; }

.header-lnav__item,
.header-lnav__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%; }

.header-lnav__link {
  flex-direction: column;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease; }

.header-lnav__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  fill: #b3b3b3;
  width: 35px;
  height: 35px;
  margin-bottom: 5px;
  transition: fill 0.2s ease; }

.header-lnav__link:hover,
.header-lnav__link.is-current {
  color: #1792cb; }
  .header-lnav__link:hover .header-lnav__icon,
  .header-lnav__link.is-current .header-lnav__icon {
    fill: currentColor; }

.mobile-nav-bar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: var(--mobile-nav-height);
  padding-left: 20px;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  z-index: 1000; }

.mobile-nav-logo {
  padding-right: 8px; }

.mobile-nav-buttons {
  display: flex; }

.mobile-buttons-container {
  display: flex;
  padding-right: 4px; }
  .mobile-nav-bar[data-device="mobile"] .mobile-buttons-container[data-buttons="default"] {
    display: none; }
  .mobile-nav-bar[data-device="default"] .mobile-buttons-container[data-buttons="mobile"] {
    display: none; }

.mobile-buttons-column {
  display: flex;
  align-items: center; }
  .mobile-buttons-column:last-child {
    margin-left: 8px; }

.mobile-buttons-item {
  font-size: 9px;
  font-weight: 500;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  text-decoration: none;
  border-radius: 10px;
  white-space: nowrap; }
  .mobile-nav-bar[data-device="mobile"] .mobile-buttons-item {
    font-size: 11px;
    min-height: 34px; }

.mobile-buttons-item[data-type="student"] {
  color: #fff;
  background-color: #1792cb; }

.mobile-buttons-item[data-type="teacher"] {
  color: #fff;
  background-color: #66ae32; }

.mobile-buttons-item__icon {
  position: relative;
  top: 2px;
  fill: currentColor;
  padding-right: 4px; }

.mobile-buttons-item__label {
  text-align: left; }

.menu-trigger {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: var(--mobile-nav-height);
  background-color: transparent;
  padding: 0 15px;
  cursor: pointer; }

.menu-trigger__icon {
  position: relative;
  display: block;
  width: 100%;
  height: 20px; }
  .menu-trigger__icon span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #808080;
    transform-origin: 50% 50%;
    transition: transform 0.25s ease;
    border-radius: 10px; }
  .menu-trigger__icon span:nth-of-type(1) {
    top: 0;
    left: 0; }
  .menu-trigger__icon span:nth-of-type(2) {
    top: 50%;
    left: 0;
    transform: translateY(-50%); }
  .menu-trigger__icon span:nth-of-type(3) {
    right: 0;
    bottom: 0;
    width: 65%; }

.menu-trigger[aria-pressed="true"] .menu-trigger__icon span:nth-of-type(1) {
  top: 50%;
  transform: rotate(45deg); }

.menu-trigger[aria-pressed="true"] .menu-trigger__icon span:nth-of-type(2) {
  visibility: hidden; }

.menu-trigger[aria-pressed="true"] .menu-trigger__icon span:nth-of-type(3) {
  top: 50%;
  left: 0;
  right: auto;
  bottom: auto;
  width: 100%;
  transform: rotate(-45deg); }

.menu-container {
  position: fixed;
  top: var(--mobile-nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - var(--mobile-nav-height));
  background-color: #ffda47;
  border-top: 1px solid #aeaeae;
  overflow-y: auto; }

.menu-container[aria-hidden="true"] {
  visibility: hidden;
  opacity: 0; }

.menu-container[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.2s ease-out, visibility 0.2s ease-out; }

.menu-nav__item {
  border-bottom: 1px solid #aeaeae; }

.menu-nav__link,
.menu-nav__button {
  position: relative;
  display: flex;
  align-items: center;
  color: #333;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  width: 100%;
  background-color: #f7f7f7;
  padding: 20px;
  text-decoration: none; }
  .menu-nav__link::before,
  .menu-nav__button::before {
    display: block;
    content: "";
    width: 14px;
    height: 14px;
    background-image: url("../images/icon_arrow.svg");
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 14px; }
  .menu-nav__link.is-current,
  .menu-nav__button.is-current {
    color: #fff;
    background-color: #1792cb; }
    .menu-nav__link.is-current::before,
    .menu-nav__button.is-current::before {
      background-image: url("../images/icon_arrow-white.svg"); }

.sub-menu-nav {
  background-color: #fff; }

.sub-menu-nav__link {
  display: flex;
  align-items: center;
  color: #333;
  font-size: 18px;
  font-weight: 500;
  padding: 16px 38px;
  text-decoration: none; }

.sub-menu-nav__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  fill: #b3b3b3;
  width: 35px;
  height: 35px;
  margin-right: 18px; }

.sub-menu-nav__link.is-current {
  color: #1792cb; }
  .sub-menu-nav__link.is-current .sub-menu-nav__icon {
    fill: currentColor; }

.menu-nav__button {
  padding-right: 70px; }

.menu-nav__button::after {
  position: absolute;
  right: 20px;
  top: 50%;
  content: "";
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%); }

.menu-nav__button[aria-pressed="false"]::after {
  background-image: url("../images/icon_plus.svg"); }

.menu-nav__button[aria-pressed="true"]::after {
  background-image: url("../images/icon_minus.svg"); }

.menu-nav__button.is-current[aria-pressed="false"]::after {
  background-image: url("../images/icon_plus-white.svg"); }

.menu-nav__button.is-current[aria-pressed="true"]::after {
  background-image: url("../images/icon_minus-white.svg"); }

.menu-contact {
  padding: 30px 20px; }

.footer-cta {
  background-color: #ffda47;
  padding-top: 100px;
  padding-bottom: 100px; }

.footer-cta-inner {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto; }

.footer-cta-txt {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 28px;
  line-height: 1.4;
  text-align: center; }

.footer-nav {
  background-color: #fff;
  padding-top: 42px;
  padding-bottom: 32px; }

.footer-nav-menu__link {
  display: inline-flex;
  align-items: center;
  color: #4d4d4d;
  text-decoration: none; }
  .footer-nav-menu__link:hover {
    text-decoration: underline; }
  .footer-nav-menu__link::before {
    display: inline-block;
    content: "";
    width: 14px;
    height: 14px;
    background: url("../images/icon_arrow.svg") no-repeat;
    background-size: contain;
    margin-right: 4px; }

.footer-nav-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px; }

.footer-links__link {
  color: #808080;
  text-decoration: none; }
  .footer-links__link:hover {
    text-decoration: underline; }

.footer-copyright {
  color: #808080; }

.glightbox-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999 !important;
  overflow: hidden;
  touch-action: none;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  backface-visibility: hidden;
  outline: none; }

.glightbox-container.inactive {
  display: none; }

.glightbox-container .gcontainer {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden; }

.glightbox-container .gslider {
  transition: transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex !important;
  justify-content: center;
  align-items: center;
  transform: translate3d(0, 0, 0); }

.glightbox-container .gslide {
  width: 100%;
  position: absolute;
  -webkit-user-select: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0; }

.glightbox-container .gslide.current {
  opacity: 1;
  z-index: 99999;
  position: relative; }

.glightbox-container .gslide.prev {
  opacity: 1;
  z-index: 9999; }

.glightbox-container .gslide-inner-content {
  width: 100%; }

.glightbox-container .ginner-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 100%;
  margin: auto;
  height: 100vh; }

.glightbox-container .ginner-container.gvideo-container {
  width: 100%; }

.glightbox-container .ginner-container.desc-bottom,
.glightbox-container .ginner-container.desc-top {
  flex-direction: column; }

.glightbox-container .ginner-container.desc-left,
.glightbox-container .ginner-container.desc-right {
  max-width: 100% !important; }

.gslide iframe,
.gslide video {
  outline: none !important;
  border: none;
  min-height: 165px;
  -webkit-overflow-scrolling: touch;
  touch-action: auto; }

.gslide:not(.current) {
  pointer-events: none; }

.gslide-image {
  align-items: center; }

.gslide-image img {
  max-height: 100vh;
  display: block;
  padding: 0;
  float: none;
  outline: none;
  border: none;
  -webkit-user-select: none;
  user-select: none;
  max-width: 100vw;
  width: auto;
  height: auto;
  object-fit: cover;
  touch-action: none;
  margin: auto;
  min-width: 200px; }

.desc-top .gslide-image img,
.desc-bottom .gslide-image img {
  width: auto; }

.desc-left .gslide-image img,
.desc-right .gslide-image img {
  width: auto;
  max-width: 100%; }

.gslide-image img.zoomable {
  position: relative; }

.gslide-image img.dragging {
  cursor: grabbing !important;
  transition: none; }

.gslide-video {
  position: relative;
  max-width: 100vh;
  width: 100% !important; }

.gslide-video .plyr__poster-enabled.plyr--loading .plyr__poster {
  display: none; }

.gslide-video .gvideo-wrapper {
  width: 100%;
  /* max-width: 160vmin; */
  margin: auto; }

.gslide-video::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.34);
  display: none; }

.gslide-video.playing::before {
  display: none; }

.gslide-video.fullscreen {
  max-width: 100% !important;
  min-width: 100%;
  height: 75vh; }

.gslide-video.fullscreen video {
  max-width: 100% !important;
  width: 100% !important; }

.gslide-inline {
  background: #fff;
  text-align: left;
  max-height: calc(100vh - 40px);
  overflow: auto;
  max-width: 100%;
  margin: auto; }

.gslide-inline .ginlined-content {
  padding: 20px;
  width: 100%; }

.gslide-inline .dragging {
  cursor: grabbing !important;
  transition: none; }

.ginlined-content {
  overflow: auto;
  display: block !important;
  opacity: 1; }

.gslide-external {
  display: flex;
  width: 100%;
  min-width: 100%;
  background: #fff;
  padding: 0;
  overflow: auto;
  max-height: 75vh;
  height: 100%; }

.gslide-media {
  display: flex;
  width: auto; }

.zoomed .gslide-media {
  box-shadow: none !important; }

.desc-top .gslide-media,
.desc-bottom .gslide-media {
  margin: 0 auto;
  flex-direction: column; }

.gslide-description {
  position: relative;
  flex: 1 0 100%; }

.gslide-description.description-left,
.gslide-description.description-right {
  max-width: 100%; }

.gslide-description.description-bottom,
.gslide-description.description-top {
  margin: 0 auto;
  width: 100%; }

.gslide-description p {
  margin-bottom: 12px; }

.gslide-description p:last-child {
  margin-bottom: 0; }

.zoomed .gslide-description {
  display: none; }

.glightbox-button-hidden {
  display: none; }

/*
 * Description for mobiles
 * something like facebook does the description
 * for the photos
*/
.glightbox-mobile .glightbox-container .gslide-description {
  height: auto !important;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 19px 11px;
  max-width: 100vw !important;
  order: 2 !important;
  max-height: 78vh;
  overflow: auto !important;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  transition: opacity 0.3s linear;
  padding-bottom: 50px; }

.glightbox-mobile .glightbox-container .gslide-title {
  color: #fff;
  font-size: 1em; }

.glightbox-mobile .glightbox-container .gslide-desc {
  color: #a1a1a1; }

.glightbox-mobile .glightbox-container .gslide-desc a {
  color: #fff;
  font-weight: bold; }

.glightbox-mobile .glightbox-container .gslide-desc * {
  color: inherit; }

.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
  color: #fff;
  opacity: 0.4; }

.gdesc-open .gslide-media {
  transition: opacity 0.5s ease;
  opacity: 0.4; }

.gdesc-open .gdesc-inner {
  padding-bottom: 30px; }

.gdesc-closed .gslide-media {
  transition: opacity 0.5s ease;
  opacity: 1; }

.greset {
  transition: all 0.3s ease; }

.gabsolute {
  position: absolute; }

.grelative {
  position: relative; }

.glightbox-desc {
  display: none !important; }

body.glightbox-open {
  overflow: hidden; }

.gloader {
  height: 25px;
  width: 25px;
  animation: lightboxLoader 0.8s infinite linear;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  position: absolute;
  display: block;
  z-index: 9999;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 47%; }

.goverlay {
  width: 100%;
  height: calc(100vh + 1px);
  position: fixed;
  top: -1px;
  left: 0;
  background: #000;
  will-change: opacity; }

.glightbox-mobile .goverlay {
  background: #000; }

.gprev,
.gnext,
.gclose {
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; }

.gprev svg,
.gnext svg,
.gclose svg {
  display: block;
  width: 25px;
  height: auto;
  margin: 0;
  padding: 0; }

.gprev.disabled,
.gnext.disabled,
.gclose.disabled {
  opacity: 0.1; }

.gprev .garrow,
.gnext .garrow,
.gclose .garrow {
  stroke: #fff; }

.gbtn.focused {
  outline: 2px solid #0f3d81; }

iframe.wait-autoplay {
  opacity: 0; }

.glightbox-closing .gnext,
.glightbox-closing .gprev,
.glightbox-closing .gclose {
  opacity: 0 !important; }

/*Skin */
.glightbox-clean .gslide-description {
  background: #fff; }

.glightbox-clean .gdesc-inner {
  padding: 22px 20px; }

.glightbox-clean .gslide-title {
  font-size: 1em;
  font-weight: normal;
  /* font-family: arial; */
  color: #000;
  margin-bottom: 19px;
  line-height: 1.4em; }

.glightbox-clean .gslide-desc {
  font-size: 0.86em;
  margin-bottom: 0;
  /* font-family: arial; */
  line-height: 1.4em; }

.glightbox-clean .gslide-video {
  background: #000; }

.glightbox-clean .gprev,
.glightbox-clean .gnext,
.glightbox-clean .gclose {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 4px; }

.glightbox-clean .gprev path,
.glightbox-clean .gnext path,
.glightbox-clean .gclose path {
  fill: #fff; }

.glightbox-clean .gprev {
  position: absolute;
  top: -100%;
  left: 30px;
  width: 40px;
  height: 50px; }

.glightbox-clean .gnext {
  position: absolute;
  top: -100%;
  right: 30px;
  width: 40px;
  height: 50px; }

.glightbox-clean .gclose {
  width: 35px;
  height: 35px;
  top: 15px;
  right: 10px;
  position: absolute; }

.glightbox-clean .gclose svg {
  width: 18px;
  height: auto; }

.glightbox-clean .gclose:hover {
  opacity: 1; }

/*CSS Animations*/
.gfadeIn {
  animation: gfadeIn 0.5s ease; }

.gfadeOut {
  animation: gfadeOut 0.5s ease; }

.gslideOutLeft {
  animation: gslideOutLeft 0.3s ease; }

.gslideInLeft {
  animation: gslideInLeft 0.3s ease; }

.gslideOutRight {
  animation: gslideOutRight 0.3s ease; }

.gslideInRight {
  animation: gslideInRight 0.3s ease; }

.gzoomIn {
  animation: gzoomIn 0.5s ease; }

.gzoomOut {
  animation: gzoomOut 0.5s ease; }

@keyframes lightboxLoader {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

@keyframes gfadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes gfadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@keyframes gslideInLeft {
  from {
    opacity: 0;
    transform: translate3d(-60%, 0, 0); }
  to {
    visibility: visible;
    transform: translate3d(0, 0, 0);
    opacity: 1; } }

@keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0); }
  to {
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden; } }

@keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    transform: translate3d(60%, 0, 0); }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1; } }

@keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0); }
  to {
    transform: translate3d(60%, 0, 0);
    opacity: 0; } }

@keyframes gzoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 1; } }

@keyframes gzoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

.inner {
  width: 100%;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--inner-padding);
  padding-right: var(--inner-padding); }

.xl-section {
  position: relative; }

.lg-section {
  position: relative; }

.md-section {
  position: relative; }

.headline {
  color: #000;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 30px;
  text-align: center; }
  .headline > span {
    background-position: 100% 1em; }
    .headline > span > span {
      font-size: 19px; }
    .headline > span > i {
      font-style: normal; }
  .headline.is-show > span {
    background-image: linear-gradient(to right, #ffe866 50%, transparent 50%);
    background-repeat: no-repeat;
    background-size: 200% 1em;
    background-position: 0% 1em;
    transition: background-position 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition-delay: 0.3s; }
  .headline.-hd-space {
    margin-bottom: 60px; }
  .headline[data-mb="md"] {
    margin-bottom: 48px; }

.headline .sm-txt {
  display: block;
  font-size: 20px;
  background: transparent; }

.logo-lit {
  line-height: 1;
  margin-bottom: 12px;
  text-align: center; }

.md-caption {
  font-size: 22px;
  font-weight: 700;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  border-top: 3px solid #ffda47;
  border-bottom: 3px solid #ffda47;
  margin-bottom: 24px;
  padding: 5px 8px;
  text-align: center; }

.sm-caption {
  font-size: 23px;
  font-weight: 700; }
  .sm-caption.-center {
    text-align: center; }

.xs-caption {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  background-color: #f7f7f7;
  border-radius: 12px;
  margin-bottom: 30px;
  padding: 12px;
  text-align: center; }
  .xs-caption.-white {
    background-color: #fff; }
  .xs-caption.-rounded {
    border-radius: 30px; }
  .xs-caption.-large {
    border-radius: 20px; }
  .xs-caption__lg-text, .xs-caption__sm-text {
    display: block; }
  .xs-caption__lg-text {
    margin-bottom: 0.1em; }
  .xs-caption__sm-text {
    font-size: 12px;
    font-weight: 400; }

.heading-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.4;
  background-color: #fff;
  margin-bottom: 40px;
  padding: 14px;
  border-radius: 30px; }

.heading-bar__icon {
  margin-right: 14px; }

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #323232;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
  background-color: #ffda47;
  border: 5px solid #ffda47;
  border-radius: 20px;
  margin-left: auto;
  margin-right: auto;
  padding: 18px 25px;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease;
  cursor: pointer; }
  .button:hover {
    color: #323232;
    background-color: #fff;
    text-decoration: none; }
  .button::after {
    display: inline-block;
    content: "";
    width: 24px;
    height: 24px;
    background: url("../images/icon_arrow.svg") no-repeat;
    background-size: contain;
    margin-left: 8px; }
  .button.-cta {
    font-size: 19px;
    font-weight: 900;
    max-width: 620px; }
    .button.-cta span {
      position: relative;
      top: -3px;
      color: #1792cb;
      font-size: 27px;
      font-weight: 900;
      margin-right: 3px; }
    .button.-cta::before {
      position: relative;
      top: -3px;
      display: inline-block;
      content: "";
      width: 50px;
      height: 50px;
      background: url("../images/img_symbol.svg") no-repeat;
      background-size: contain;
      margin-right: 6px; }
  .button.-cta-fixed {
    color: #333;
    background-color: #ffda47;
    border-color: #ffda47; }
    .button.-cta-fixed strong {
      color: #1792cb;
      font-weight: 900; }
    .button.-cta-fixed:hover {
      font-weight: 900;
      background-color: #fff; }
  .button.-primary-fixed {
    font-weight: 900;
    background-color: #d53f37;
    border-color: #d53f37; }
    .button.-primary-fixed > div span {
      position: relative;
      padding-top: 0.2em; }
      .button.-primary-fixed > div span::before {
        position: absolute;
        top: 0;
        left: 50%;
        content: "";
        width: 3px;
        height: 3px;
        border-radius: 50%;
        transform: translateX(-50%); }
    .button.-primary-fixed > .button-label span::before {
      display: none; }
    .button.-primary-fixed:hover {
      color: #d53f37;
      font-weight: 900;
      background-color: #fff; }
      .button.-primary-fixed:hover strong {
        color: #d53f37; }
        .button.-primary-fixed:hover strong span {
          color: #d53f37; }
  .button.-contact {
    text-align: left; }
  .button__icon {
    width: 40px; }
    .button__icon svg {
      fill: #333; }
  .button__txt {
    flex: 1;
    padding-left: 18px; }
    .button__txt__title {
      color: #1793cc;
      font-size: 23px;
      margin-bottom: 4px; }
    .button__txt__phone {
      display: flex;
      align-items: center; }
      .button__txt__phone span:nth-child(1) {
        font-size: 23px;
        font-family: "Heebo", sans-serif;
        margin-right: 8px; }
      .button__txt__phone span:nth-child(2) {
        font-size: 13px;
        font-weight: 500; }
    .button__txt__mail {
      font-size: 16px;
      font-weight: 500; }
  .button.-details-toggle {
    font-size: 18px;
    width: 100%;
    max-width: 420px;
    padding: 12px 30px;
    border-radius: 10px; }
    .button.-details-toggle::after {
      transform: rotate(90deg);
      transition: transform 0.3s ease; }
    .button.-details-toggle.is-open::after {
      transform: rotate(-90deg); }

.button.more-button {
  width: 100%;
  max-width: 100%;
  border-radius: 35px;
  text-align: left; }

.button.-arrow-down::after {
  transform: rotate(90deg); }

.button-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; }

.button-wrap__item {
  width: 100%; }

.button.reference-button:not([href]):hover {
  background-color: #ffda47;
  cursor: auto; }

.button.reference-button:not([href])::after {
  display: none; }

.button-contest {
  display: inline-block;
  transition: opacity 0.3s ease; }
  .button-contest:hover {
    opacity: 0.8; }
  .button-contest img {
    filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.15)); }

.button-jikkyo {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
  max-width: 270px;
  min-height: 33px;
  background-color: #333;
  border: 1px solid #fff;
  border-radius: 16px;
  padding: 10px;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.2s ease; }
  .button-jikkyo::after {
    display: inline-block;
    content: "";
    width: 13px;
    height: 13px;
    background: url("../images/icon_arrow-white.svg") no-repeat;
    background-size: contain;
    margin-left: 8px; }
  .button-jikkyo:hover {
    background-color: #555; }

.bg-gray {
  background-color: #f7f7f7; }

.bg-blue {
  background-color: #1792cb; }

.bg-arrow {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  content: "";
  width: 100%;
  height: 44px; }
  .bg-arrow::before, .bg-arrow::after {
    position: absolute;
    content: "";
    display: block;
    width: 50%; }
  .bg-arrow::before {
    left: 0;
    border-right: 64px solid transparent; }
  .bg-arrow::after {
    right: 0;
    border-left: 64px solid transparent; }
  .bg-arrow.-white::before, .bg-arrow.-white::after {
    border-bottom: 44px solid #fff; }
  .bg-arrow.-gray::before, .bg-arrow.-gray::after {
    border-bottom: 44px solid #f7f7f7; }
  .bg-arrow.-blue::before, .bg-arrow.-blue::after {
    border-bottom: 44px solid #1792cb; }
  .bg-arrow.-base {
    border-bottom: 1px solid #c5c5c5;
    z-index: 2; }
  .bg-arrow.-border {
    bottom: 1px;
    z-index: 1; }
  .bg-arrow.-border::before, .bg-arrow.-border::after {
    border-bottom: 44px solid #c5c5c5; }

.fixed-contest-btn {
  position: fixed;
  display: block;
  z-index: 999; }

.contents-lead {
  font-size: 20px;
  line-height: 2;
  margin-bottom: 60px; }
  .contents-lead strong {
    color: #1792cb;
    font-size: 22px;
    font-weight: 700; }

.contents-lead__notes {
  display: block;
  font-size: 13px;
  padding-top: 8px; }

.contents-container {
  position: relative;
  background-color: #fff;
  border: 3px solid #e5e5e5;
  border-radius: 0 0 20px 20px;
  overflow: hidden; }

.contents-container.-no-border {
  border-radius: 10px;
  border: none; }

.contents-container.-with-arrow {
  padding-top: 35px; }
  .contents-container.-with-arrow::before {
    position: absolute;
    top: 0;
    left: 50%;
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 35px 50px 0 50px;
    border-color: #f7f7f7 transparent transparent transparent;
    transform: translateX(-50%); }

.contents-container.bg-gray {
  background-color: #f7f7f7; }
  .contents-container.bg-gray.-with-arrow::before {
    border-color: #fff transparent transparent transparent; }

.contents-caption {
  color: #000;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.2;
  border-top: 10px solid #ffda47;
  border-bottom: 1px solid #e5e5e5;
  padding: 30px 15px;
  text-align: center; }

.contents-lg-caption {
  color: #000;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 40px;
  padding-bottom: 25px;
  text-align: center; }

.product-outline {
  width: 100%;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto; }

.table-list {
  font-size: 15px;
  width: 100%; }
  .table-list tr {
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5; }
  .table-list th {
    color: #000;
    width: 160px;
    background-color: #f7f7f7;
    padding: 15px 25px;
    text-align: left;
    vertical-align: top; }
  .table-list td {
    padding: 15px 25px; }
  .table-list dl dt {
    font-weight: bold; }
  .table-list dl:not(:first-child) {
    margin-top: 25px; }
  .table-list ul li {
    padding-left: 1em;
    text-indent: -1em; }
  .table-list strong {
    color: #1792cb;
    font-weight: 700; }
  .table-list .note {
    color: #4d4d4d;
    font-size: 13px;
    line-height: 1.8; }

.table-list__caption {
  color: #1792cb;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
  background-color: #f7f7f7; }

.nav-buttons {
  display: flex;
  justify-content: center; }

.nav-buttons__item .button {
  padding: 0;
  text-align: left; }
  .nav-buttons__item .button span {
    color: #1792cb; }
  .nav-buttons__item .button::after {
    position: relative;
    top: 1px;
    width: 18px;
    height: 18px; }

.lesson-points {
  display: flex; }

.lesson-points__num {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 15px;
  z-index: 1; }
  .lesson-points__num span {
    position: relative;
    color: #ffda47;
    font-size: 75px;
    font-family: "Heebo", sans-serif;
    font-weight: 800;
    margin-left: -28px;
    line-height: 1;
    z-index: -1; }

.lesson-points__caption {
  color: #000;
  line-height: 1.6;
  margin-bottom: 20px; }

.lesson-points__list li {
  position: relative;
  font-size: 16px;
  line-height: 1.8;
  padding-left: 24px; }
  .lesson-points__list li span {
    font-weight: 900; }
  .lesson-points__list li::before {
    position: absolute;
    top: 8px;
    left: 0;
    display: block;
    content: "";
    width: 14px;
    height: 14px;
    background-color: #ffda47;
    border-radius: 50%; }

.lesson-points__list li:not(:last-child) {
  margin-bottom: 5px; }

.carousel .swiper-container {
  max-width: 1000px;
  margin: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  overflow: visible; }

.carousel__button-prev,
.carousel__button-next {
  position: absolute;
  display: block;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2050.21%2050.21%22%3E%3Ccircle%20cx%3D%2225.11%22%20cy%3D%2225.11%22%20r%3D%2225.11%22%20style%3D%22fill%3A%23ffda47%22%2F%3E%3Cpath%20d%3D%22M22.76%2C37.18a3.51%2C3.51%2C0%2C0%2C1-2.47-6l6.13-6.13L20.35%2C19a3.5%2C3.5%2C0%2C0%2C1%2C4.95-5l11%2C11L25.24%2C36.15A3.51%2C3.51%2C0%2C0%2C1%2C22.76%2C37.18Z%22%2F%3E%3C%2Fsvg%3E") no-repeat;
  background-size: contain;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  outline: none;
  cursor: pointer;
  z-index: 10; }

.carousel__item {
  display: flex;
  align-items: flex-start;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1); }

.carousel__button-prev {
  transform: scale(-1, 1); }

.works__img {
  max-width: 300px; }

.works__contents {
  position: relative; }

.works__title {
  color: #353c3e;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 24px; }

.works__txt {
  font-size: 15px;
  margin-bottom: 25px; }

.works__name {
  display: flex;
  align-items: center; }
  .works__name__img {
    width: 70px; }
  .works__name__txt {
    font-size: 15px;
    font-weight: 700;
    padding-left: 15px; }

.voice__img {
  max-width: 300px;
  border-radius: 10px;
  overflow: hidden; }

.voice__contents {
  position: relative; }

.voice__caption {
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 20px; }

.voice__txt {
  font-size: 15px; }
  .voice__txt p:not(:last-child) {
    margin-bottom: 20px; }

.voice__name {
  font-weight: 700; }

.movie-lead {
  margin-bottom: 20px;
  text-align: center; }

.movie-container {
  width: 100%;
  max-width: 700px;
  margin: 0 auto; }

.movie-caption {
  font-size: 14px;
  padding-top: 12px; }

.lesson-details-caption {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px; }
  .lesson-details-caption strong {
    color: #1792cb;
    font-weight: 900; }
  .lesson-details-caption.-left-txt {
    text-align: left; }

.lesson-details-contents.-website {
  border: 1px solid #dfdfdf;
  padding: 20px; }

.lesson-details-img-website {
  width: 1130px;
  padding-right: 20px; }

.lesson-details-notes {
  font-size: 13px;
  text-align: center; }

.progress {
  width: 100%;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto; }

.results-lead {
  display: flex; }

.results-lead__map-img {
  text-align: center; }

.results-lead__count {
  position: relative;
  color: #000;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 15px; }
  .results-lead__count div:nth-child(1) {
    margin-bottom: 8px; }
    .results-lead__count div:nth-child(1) strong {
      color: #1792cb; }

.results-lead__label {
  margin-top: 30px;
  margin-bottom: 5px; }

.results-lead__note {
  font-size: 15px;
  line-height: 1.4;
  padding-left: 1em;
  text-indent: -1em; }

.cta-logo {
  margin-bottom: 20px;
  text-align: center; }

.cta-txt {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center; }

.contact-cta {
  background-color: #ffda47;
  padding-top: 48px;
  padding-bottom: 48px; }

.contact-cta-logo {
  margin-bottom: 20px;
  text-align: center; }

.contact-cta-txt {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 32px;
  line-height: 1.4;
  text-align: center; }

.contact-cta-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px; }

.contact-cta-buttons__item.button {
  width: 100%;
  background-color: #fff;
  border-color: #fff; }

span.contact-cta-buttons__item.button {
  cursor: auto; }
  span.contact-cta-buttons__item.button::after {
    display: none; }

a.contact-cta-buttons__item.button {
  cursor: pointer; }

.caption-solution-for {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #1792cb;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 30px;
  text-align: center; }
  .caption-solution-for::before, .caption-solution-for::after {
    display: block;
    content: "";
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain; }
  .caption-solution-for::before {
    background-image: url("../images/common/img_solution_left.svg");
    margin-right: 6px; }
  .caption-solution-for::after {
    background-image: url("../images/common/img_solution_right.svg");
    margin-left: 6px; }

.hide-container {
  display: none; }
  .button.-details-toggle + .hide-container {
    margin-top: 80px; }

.common-link-txt {
  color: #1792cb; }
  .common-link-txt::before {
    position: relative;
    top: 1px;
    display: inline-block;
    content: "";
    width: 15px;
    height: 15px;
    background: url("../images/common/icon_arrow-blue.svg") no-repeat;
    background-size: contain;
    margin-right: 5px; }

.bnr-voice-container {
  margin-top: 60px; }

.bnr-voice-item {
  position: relative;
  display: block;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto; }
  .bnr-voice-item::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity 0.2s ease; }
  .bnr-voice-item:hover::before {
    opacity: 1; }

.joho-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center; }
  .joho-banner a {
    transition: opacity 0.2s ease; }
  .joho-banner a:hover {
    opacity: 0.8; }

.voice-heading {
  margin-bottom: 40px;
  text-align: center; }

.voice-container {
  display: flex;
  margin-bottom: 40px; }

.voice-teacher__name__post {
  color: #fff;
  font-size: 17px;
  font-weight: 900; }
  .voice-teacher__name__post span {
    display: block; }

.voice-teacher__name__text {
  color: #fff;
  font-size: 16px;
  font-weight: 500; }

.voice-balloon {
  position: relative;
  flex: 1;
  background-color: #fff;
  border-radius: 30px 0 30px 0; }
  .voice-balloon::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid; }

.voice-balloon__caption {
  position: relative;
  font-weight: 700;
  line-height: 1.3;
  z-index: 1; }
  .voice-balloon__caption::before {
    position: absolute;
    content: "";
    width: 120px;
    height: 120px;
    background-color: #f7f7f7;
    border-radius: 50%;
    z-index: -1; }

.voice-balloon__text {
  font-size: 16px; }

.page-header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 140px;
  padding: 20px;
  z-index: 1; }

.page-header-title {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  width: 100%;
  max-width: 420px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px; }

.page-header-title__icon {
  position: relative;
  fill: #1792cb;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  margin-right: 10px; }
  .page-header-title__icon svg {
    height: auto;
    max-height: 100%; }

.page-header-title__text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 700; }

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1; }
  .page-header-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }

.modal {
  display: none; }

.modal.is-open {
  display: block; }

.gslide-inline .ginlined-content {
  padding: 0; }

.gprev.glightbox-button-hidden,
.gnext.glightbox-button-hidden {
  display: none;
  opacity: 0; }

.glightbox-clean .gslide-description {
  background-color: transparent; }

.glightbox-mobile .glightbox-container .gslide-desc {
  color: #fff; }

.glightbox-clean .gslide-desc {
  color: #fff;
  font-size: 14px;
  font-weight: 400; }

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; }

@keyframes modalFadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes modalFadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

.modal[aria-hidden="false"] .modal-overlay,
.modal[aria-hidden="false"] .modal-container {
  animation: modalFadeIn 0.3s cubic-bezier(0, 0, 0.2, 1); }

.modal[aria-hidden="true"] .modal-overlay,
.modal[aria-hidden="true"] .modal-container {
  animation: modalFadeOut 0.3s cubic-bezier(0, 0, 0.2, 1); }

.contact-modal-inner {
  position: relative;
  width: 820px;
  background-color: #fff;
  border: 10px solid #ffda47;
  padding: 80px 20px; }

.contact-modal-close-button {
  position: absolute;
  right: 12px;
  top: 12px;
  line-height: 1;
  background-color: transparent; }

.contact-modal-info {
  display: flex;
  justify-content: center; }

.contact-modal-info__item {
  padding-left: 40px;
  padding-right: 40px;
  text-align: center; }
  .contact-modal-info__item:not(:last-child) {
    border-right: 1px solid #c4c4c4; }

.contact-modal-info__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin: 0 auto 10px; }
  .contact-modal-info__icon svg {
    fill: #1792cb; }

.contact-modal-info__text {
  line-height: 1.3; }

.contact-modal-info__caption {
  color: #1792cb;
  font-size: 23px;
  font-weight: 900;
  margin-bottom: 0.3em; }

.contact-modal-info__phone {
  display: flex;
  align-items: center; }

.contact-modal-info__phone__number {
  font-size: 23px;
  font-weight: 700; }

.contact-modal-info__phone__hour {
  font-size: 13px;
  font-weight: 500;
  padding-left: 6px; }

.contact-modal-info__mail {
  font-size: 18px;
  font-weight: 500; }

.c-contents-container {
  position: relative;
  background-color: #fff;
  border: 1px solid #aeaeae;
  border-radius: 0 0 30px 30px;
  padding-top: 10px;
  overflow: hidden; }
  .c-contents-container::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    content: "";
    width: 100%;
    height: 10px;
    background-color: #ffda47; }

.c-contents-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #aeaeae;
  padding-top: 20px;
  padding-bottom: 12px; }

.c-contents-heading__caption {
  display: flex;
  align-items: flex-end;
  line-height: 1;
  color: #ffda47; }

.c-contents-heading__caption__alphabet {
  position: relative; }

.c-contents-heading__caption__number {
  font-size: 40px;
  font-weight: bold; }

.c-contents-heading__text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35; }

.supervision {
  border-radius: 20px;
  overflow: hidden; }

.supervision__heading {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  background-color: #1792cb;
  padding: 22px;
  text-align: center; }

.supervision__contents {
  background-color: #f7f7f7;
  padding: 30px 20px; }

.supervision__contents.bg-white {
  background-color: #fff; }

.supervision__profile {
  display: flex;
  align-items: center;
  margin-bottom: 32px; }

.supervision__img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden; }

.supervision__name__lead {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 0.4em; }

.supervision__name__text {
  font-weight: 700;
  line-height: 1.3; }

.supervision__message {
  line-height: 1.9; }

.outline-heading {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  background-color: #1792cb;
  padding: 18px;
  border-radius: 20px 20px 0 0;
  text-align: center; }

.outline-inner {
  background-color: #fff;
  padding: 40px 20px;
  border-radius: 0 0 20px 20px; }

.outline-container.bg-white .outline-inner {
  border-left: 1px solid #adadad;
  border-right: 1px solid #adadad;
  border-bottom: 1px solid #adadad; }

.article-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding-left: 15px;
  padding-right: 15px; }

.article-grid__item {
  display: flex;
  flex-direction: column; }

.article-grid__link {
  flex: 1;
  color: #000;
  background-color: #fff;
  border: 1px solid #d6d6d6;
  text-decoration: none;
  box-shadow: 0 0px 5px rgba(37, 23, 20, 0.1); }

.article-grid__image {
  position: relative;
  border-bottom: 1px solid #d6d6d6; }
  .article-grid__image::after {
    display: block;
    content: "";
    padding-top: 62.258%; }
  .article-grid__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }

.article-grid__content {
  padding: 20px; }

.article-grid__title {
  font-size: 16px;
  font-weight: 700; }

.article-grid__published {
  color: #a2a2a2;
  font-size: 11px;
  margin-top: 8px;
  text-align: right; }

.section-pagetop {
  position: relative;
  bottom: -55px;
  font-size: 17px;
  font-weight: 700;
  padding-top: 7px;
  padding-bottom: 10px;
  text-align: right; }

.section-pagetop__link {
  display: inline-flex;
  align-items: center;
  color: #000;
  text-decoration: none; }
  .section-pagetop__link:hover {
    text-decoration: underline; }
  .section-pagetop__link::before {
    display: inline-block;
    content: "";
    width: 23px;
    height: 23px;
    background: url("../images/icon_arrow.svg") no-repeat;
    background-size: contain;
    transform: rotate(-90deg);
    margin-right: 10px; }

.tab-list {
  display: grid;
  border: 1px solid #dcdcdc;
  border-radius: 10px 10px 0 0;
  overflow: hidden; }
  .tab-list[data-button="2"] {
    grid-template-columns: repeat(2, 1fr); }
  .tab-list[data-button="4"] {
    grid-template-columns: repeat(2, 1fr); }

.tab-list__item {
  display: flex; }
  .tab-list__item:not(:last-child) {
    border-right: 1px solid #dcdcdc; }

.tab-button {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #323232;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
  width: 100%;
  padding: 20px 14px;
  background-color: #f7f7f7; }
  .tab-button[aria-selected="true"] {
    color: #fff;
    background-color: #1792cb; }

.tab-panel[hidden] {
  display: none; }

.hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  animation: fade-in 2s linear forwards;
  z-index: 1; }

.hero__content {
  width: 100%;
  opacity: 0;
  animation: fade-in 1s linear 0.8s forwards;
  text-align: center; }

.hero__catch {
  width: 100%;
  max-width: 834px;
  margin-left: auto;
  margin-right: auto; }
  .hero__catch img {
    width: 100%; }

.hero__note {
  color: #fff;
  width: 100%;
  max-width: 1000px;
  padding-bottom: 15px; }
  .hero__note.-home {
    margin-top: auto; }

.about-lit {
  position: relative; }

.about-lit__img {
  position: relative;
  background: url("../images/img_lit.jpg") center bottom no-repeat;
  background-size: cover; }

.about-lit__txt {
  position: relative;
  font-weight: 500;
  z-index: 1; }
  .about-lit__txt div:nth-child(1) {
    margin-bottom: 15px; }
  .about-lit__txt div:nth-child(2) {
    display: flex;
    align-items: baseline;
    margin-bottom: 15px;
    line-height: 1; }
    .about-lit__txt div:nth-child(2) span {
      position: relative;
      top: -4px;
      display: inline-block;
      margin-left: 12px; }
  .about-lit__txt div:nth-child(3) span {
    color: #1792cb;
    font-size: 22px;
    font-weight: 700; }

.compulsory__caption {
  margin-bottom: 10px;
  text-align: center; }
  .compulsory__caption span {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px; }

.compulsory__item {
  position: relative;
  text-align: center; }

.school {
  background-color: #fff;
  border-radius: 20px; }
  .school__contents > div {
    border-top: 1px solid #e5e5e5; }
    .school__contents > div:last-child {
      border-bottom: 1px solid #e5e5e5; }
    .school__contents > div > dt {
      position: relative;
      font-weight: 700;
      padding: 18px 40px;
      cursor: pointer; }
      .school__contents > div > dt::before {
        position: absolute;
        top: 50%;
        left: 8px;
        display: block;
        content: "";
        width: 16px;
        height: 16px;
        background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2023%2023%22%3E%3Ccircle%20cx%3D%2211.5%22%20cy%3D%2211.5%22%20r%3D%2211.5%22%20style%3D%22fill%3A%23ffda47%22%2F%3E%3Cpath%20d%3D%22M6.07%2C10.43A1.5%2C1.5%2C0%2C0%2C1%2C8.63%2C9.37l2.88%2C2.88L14.37%2C9.4a1.49%2C1.49%2C0%2C0%2C1%2C2.11%2C0h0a1.51%2C1.51%2C0%2C0%2C1%2C0%2C2.12l-5%2C5-5-5A1.52%2C1.52%2C0%2C0%2C1%2C6.07%2C10.43Z%22%2F%3E%3C%2Fsvg%3E") no-repeat;
        margin-top: -8px;
        border-radius: 100%;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease; }
      .school__contents > div > dt.is-open::before {
        transform: rotate(180deg); }
    .school__contents > div > dd {
      line-height: 2;
      padding-bottom: 20px;
      padding-right: 8px;
      padding-left: 40px; }
    .school__contents > div table {
      font-size: 13px;
      width: 100%; }
      .school__contents > div table th {
        font-weight: 700;
        width: 68px;
        text-align: left;
        vertical-align: top; }

.awards__edtechx {
  max-width: 535px;
  margin: 0 auto 40px; }

.awards__seal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto; }
  .awards__seal__item:nth-child(1) {
    width: 227px; }
  .awards__seal__item:nth-child(2), .awards__seal__item:nth-child(3) {
    width: 238px; }

.faq__container {
  max-width: 660px;
  margin: 0 auto 100px; }

.faq__content {
  margin-bottom: 30px; }

.faq__question, .faq__answer {
  position: relative;
  padding: 26px 30px 26px 82px; }
  .faq__question::before, .faq__answer::before {
    position: absolute;
    font-size: 50px;
    font-family: "Heebo", sans-serif;
    font-weight: 800;
    line-height: 1; }

.faq__question {
  font-size: 18px;
  font-weight: 700; }
  .faq__question::before {
    top: 16px;
    left: 30px;
    color: #ffda47;
    content: "Q"; }

.faq__answer {
  position: relative;
  background-color: #f7f7f7;
  border-radius: 10px; }
  .faq__answer::before {
    top: 18px;
    left: 30px;
    color: #1792cb;
    content: "A"; }
  .faq__answer span {
    font-weight: 700; }

.other-media {
  background-color: #fff;
  border: 3px solid #e0e0e0;
  border-radius: 20px;
  padding: 40px 70px; }
  .other-media__caption {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 34px;
    text-align: center; }
  .other-media__list {
    display: flex;
    justify-content: center; }
    .other-media__list li {
      position: relative;
      padding-left: 17px; }
      .other-media__list li:not(:last-child) {
        margin-bottom: 6px; }
      .other-media__list li::before {
        position: absolute;
        left: 0;
        top: 6px;
        display: block;
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 6px 0 6px 10px;
        border-color: transparent transparent transparent #ffda47; }

.home-service-list {
  display: grid;
  row-gap: 20px; }

.home-service-list__item {
  display: flex;
  flex-direction: column; }

.home-service-container {
  flex: 1; }
  .home-service-container[data-columns="2"] {
    display: grid; }

.home-service-heading {
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
  padding: 12px;
  text-align: center; }
  .home-service-heading[data-color="green"] {
    background-color: #749127; }
  .home-service-heading[data-color="blue"] {
    background-color: #008cc9; }
  .home-service-heading[data-color="red"] {
    background-color: #dd6645; }

.home-service-contents {
  display: flex;
  flex-direction: column; }

.home-service-head {
  background-color: #f7f7f7;
  padding: 20px 10px;
  text-align: center; }

.home-service-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px; }

.home-service-caption {
  font-size: 19px;
  font-weight: 700; }

.home-service-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  line-height: 1.5;
  padding: 20px 10px;
  text-align: center; }

.home-service-button {
  width: 100%;
  min-height: 60px;
  padding: 4px 8px;
  box-shadow: none;
  border-radius: 0;
  margin-top: auto; }

.ms-hero {
  position: relative;
  width: 100%;
  background-color: #ffdb29;
  z-index: 1; }

.ms-hero__content {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  z-index: 1; }

.ms-hero__note {
  color: #004976; }

.ms-lead {
  width: 100%;
  max-width: 845px;
  margin: auto;
  text-align: center; }
  .ms-lead p + p {
    margin-top: 40px; }

.hs-hero {
  position: relative;
  width: 100%;
  background-color: #215187;
  background-repeat: no-repeat;
  z-index: 1; }
  .hs-hero::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    width: 100%;
    height: 120px;
    background-image: linear-gradient(180deg, rgba(33, 81, 135, 0) 0%, #215187 80%);
    z-index: -1; }

.hs-hero__content {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  z-index: 2; }

.hs-hero__label {
  display: inline-block;
  background-color: #215187; }

.hs-lead-container {
  position: relative; }

.hs-lead-content {
  display: grid;
  margin-bottom: 30px; }

.hs-lead-content__item {
  position: relative;
  z-index: 1; }

.hs-lead-labels {
  position: relative;
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
  z-index: 1; }

.hs-lead-labels__item {
  text-align: center; }

.hs-lead-illust {
  position: absolute;
  z-index: -1; }

.hs-lead-text {
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: 0.1em;
  margin-bottom: 1em; }

.hs-lead-text__line {
  display: block; }
  .hs-lead-text__line b {
    font-size: 30px;
    font-weight: 900; }
  .hs-lead-text__line strong {
    color: #0e94cc;
    font-size: 36px;
    font-weight: 900; }
    .hs-lead-text__line strong > span {
      font-size: 47px; }
  .hs-lead-text__line:nth-child(1) {
    margin-bottom: 0.4em; }
  .hs-lead-text__line:nth-child(2) {
    margin-bottom: 0.8em; }
  .hs-lead-text__line.-normal-letters {
    letter-spacing: 0.04em; }

.hs-lead-notes {
  font-size: 12px;
  line-height: 1.6; }

.hs-home-contents {
  display: grid;
  row-gap: 60px; }

.hs-home-contents__item {
  text-align: center; }

.hs-home-three-year {
  width: 100%;
  max-width: 795px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px; }

.units-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 10px;
  row-gap: 28px; }

.units-table__column {
  display: grid;
  row-gap: 10px; }

.units-table__title {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  background-color: #1792cb;
  padding: 8px;
  text-align: center; }

.units-table__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #0080a0;
  background-color: #f7f7f7; }

.units-table__title,
.units-table__item {
  min-height: 85px; }

.units-table__label {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  width: 100%;
  padding: 8px;
  text-align: center; }
  .units-table__label span {
    font-size: 12px; }

.button.units-table__button {
  flex-direction: row-reverse;
  font-size: 14px;
  line-height: 1;
  width: 100%;
  border: none;
  border-radius: 0;
  padding: 5px;
  box-shadow: none; }
  .button.units-table__button:hover {
    background-color: #ffda47;
    opacity: 0.8; }
  .button.units-table__button::after {
    width: 12px;
    height: 12px;
    margin-left: 0px;
    margin-right: 6px; }

.hs-feature-sample {
  display: flex;
  justify-content: center; }

.hs-toolkit-img05 {
  margin-bottom: 80px; }

.hs-textbook-container {
  padding-top: 30px;
  padding-bottom: 40px; }

.hs-textbook-contents {
  display: flex; }

.hs-textbook-contents__img {
  max-width: 378px; }

.hs-textbook-contents__text {
  flex: 1;
  padding-top: 20px; }

.hs-3year-figure-notes {
  font-size: 13px;
  padding-bottom: 1em; }

.reference-container {
  background-color: #f7f7f7;
  border-radius: 30px; }

.reference-list__item:not(:last-child) {
  margin-bottom: 60px; }

.reference-list__text {
  padding-top: 30px; }

.reference-list__books {
  font-size: 13px;
  margin-top: 1em; }
  .reference-list__books > div {
    display: flex; }
    .reference-list__books > div:not(:last-child) {
      margin-bottom: 10px; }
  .reference-list__books dt {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 105px;
    background-color: #fff;
    text-align: center; }
  .reference-list__books dd {
    flex: 1;
    padding-left: 12px; }
  .reference-list__books a {
    color: #1792cb; }

.org-hero {
  position: relative;
  width: 100%;
  background: url("../images/org/bg_hero.jpg") center center no-repeat;
  background-size: cover;
  z-index: 1; }

.org-hero__content {
  position: relative;
  width: 100%;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  z-index: 2; }

.org-hero__img {
  display: flex;
  align-items: center; }
  .org-hero__img img {
    position: relative;
    filter: drop-shadow(0 0 30px #271613); }

.org-service-img {
  max-width: 826px;
  margin-left: auto;
  margin-right: auto; }

.org-service-arrow {
  position: relative;
  display: flex;
  align-items: center;
  height: 162px;
  padding-bottom: 32px; }

.org-service-arrow__text {
  position: relative;
  color: #1792cb;
  font-size: 17px;
  font-weight: bold;
  text-align: center;
  width: 100%;
  padding: 10px;
  background-color: #fff;
  border: 1px dashed currentColor;
  border-radius: 6px;
  z-index: 2; }

.org-service-arrow__img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%); }

.org-service-list {
  display: flex;
  justify-content: space-between; }

.org-service-list__item {
  background-color: #fff;
  border: 1px solid #d5d5d5;
  border-top: 8px solid #ffd500; }

.org-service-list__head {
  display: flex;
  align-items: center;
  padding: 20px 20px 12px; }

.org-service-list__num {
  color: #ffda47;
  font-size: 50px;
  font-weight: bold;
  line-height: 1; }

.org-service-list__title {
  flex: 1;
  line-height: 1.6;
  padding-left: 15px; }

.org-service-list__heading {
  font-size: 23px;
  font-weight: bold; }

.org-service-list__text {
  font-size: 16px;
  padding-bottom: 5px; }

.org-service-list__img {
  position: relative;
  width: 100%; }
  .org-service-list__img img {
    width: 100%; }

.org-service-list__feature {
  position: absolute;
  top: -10px;
  right: -14px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  width: 115px;
  height: 115px;
  border-radius: 100%;
  background-color: #ffd800;
  text-align: center;
  transform: rotate(7deg); }
  .org-service-list__feature span {
    display: block; }
  .org-service-list__feature strong {
    color: #1792cb;
    font-size: 17px; }
    .org-service-list__feature strong i {
      font-size: 23px;
      font-style: normal;
      line-height: 1; }

.org-service-list__contents {
  position: relative;
  padding: 25px 20px; }

.org-section-title {
  margin-bottom: 40px; }

.org-section-title__headline {
  display: flex;
  justify-content: center;
  align-items: center; }

.org-section-title__headline__num {
  color: #ffda47;
  font-size: 78px;
  font-weight: bold;
  line-height: 1;
  margin-right: 6px;
  padding-top: 0.2em; }

.org-section-title__text {
  font-size: 20px;
  text-align: center; }

.anxiety__img {
  margin-bottom: 50px;
  text-align: center; }

.anxiety__cause {
  max-width: 685px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 70px; }
  .anxiety__cause.-lg {
    max-width: 800px; }

.anxiety__cause__item {
  display: flex;
  align-items: center; }
  .anxiety__cause__item + .anxiety__cause__item {
    margin-top: 8px; }

.anxiety__cause__caption {
  color: #000;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  width: 96px;
  height: 89px;
  background: url("../images/common/bg_anxiety.svg") no-repeat;
  background-size: contain;
  padding-top: 10px;
  margin-right: -6px;
  text-align: center; }
  .anxiety__cause__caption span {
    display: block;
    font-size: 38px;
    margin-top: 3px; }

.anxiety__cause__balloon {
  position: relative;
  flex: 1;
  font-size: 18px;
  background-color: #fff;
  padding: 20px 28px;
  margin-left: 30px;
  border-radius: 10px; }
  .anxiety__cause__balloon::before {
    position: absolute;
    left: -30px;
    top: 50%;
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 30px 8px 0;
    border-color: transparent #fff transparent transparent;
    transform: translateY(-50%); }

.org-training-inner {
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto; }

.org-training-title__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #1792cb;
  padding: 20px; }

.org-training-title__label {
  color: #1792cb;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  width: 200px;
  background-color: #fff;
  margin-bottom: 8px;
  padding: 6px;
  border-radius: 12px; }

.org-training-title__caption {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4; }

.org-training-title__description {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.6;
  background-color: #f7f7f7;
  padding: 24px var(--inner-padding); }

.org-step-container {
  display: grid; }

.org-step-title {
  position: relative;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4; }
  .org-step-title::before, .org-step-title::after {
    position: absolute;
    display: block;
    content: "";
    background-size: 100% 100%;
    background-repeat: no-repeat; }
  .org-step-title[data-color="green"] {
    background-color: #749127; }
  .org-step-title[data-color="yellow"] {
    color: #000;
    background-color: #ffd500; }
  .org-step-title[data-color="gray"] {
    background-color: #849074; }
  .org-step-title[data-color="red"] {
    background-color: #dd6645; }

.org-step-column {
  display: flex; }

.org-step-column:not(:first-child) .org-step-title::before {
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg height='12' width='40' xmlns='http://www.w3.org/2000/svg' fill='%23fff' preserveAspectRatio='none'%3E%3Cpath d='M20 12 40 0H0z'/%3E%3C/svg%3E"); }

.org-step-column:not(:last-child) .org-step-title[data-color="green"]::after {
  background-image: url("data:image/svg+xml,%3Csvg height='12' width='40' xmlns='http://www.w3.org/2000/svg' fill='%23749127' preserveAspectRatio='none'%3E%3Cpath d='M20 12 40 0H0z'/%3E%3C/svg%3E"); }

.org-step-column:not(:last-child) .org-step-title[data-color="yellow"]::after {
  background-image: url("data:image/svg+xml,%3Csvg height='12' width='40' xmlns='http://www.w3.org/2000/svg' fill='%23ffd500' preserveAspectRatio='none'%3E%3Cpath d='M20 12 40 0H0z'/%3E%3C/svg%3E"); }

.org-step-column:not(:last-child) .org-step-title[data-color="gray"]::after {
  background-image: url("data:image/svg+xml,%3Csvg height='12' width='40' xmlns='http://www.w3.org/2000/svg' fill='%23849074' preserveAspectRatio='none'%3E%3Cpath d='M20 12 40 0H0z'/%3E%3C/svg%3E"); }

.org-step-column:not(:last-child) .org-step-title[data-color="red"]::after {
  background-image: url("data:image/svg+xml,%3Csvg height='12' width='40' xmlns='http://www.w3.org/2000/svg' fill='%23dd6645' preserveAspectRatio='none'%3E%3Cpath d='M20 12 40 0H0z'/%3E%3C/svg%3E"); }

.org-step-contents {
  flex: 1;
  display: grid; }

.org-step-contents__item {
  display: flex;
  flex-direction: column; }

.org-step-contents__detail {
  flex: 1;
  padding-bottom: 20px; }

.org-step-contents__caption {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px; }

.org-step-contents__caption__num {
  color: #1792cb;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  margin-right: 10px; }

.org-step-contents__caption__text {
  flex: 1;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.4; }
  .org-step-contents__caption__text span {
    display: block; }

.org-step-contents__text {
  font-size: 15px;
  line-height: 1.7; }
  .org-step-contents__text strong {
    color: #1792cb;
    font-weight: bold; }

.org-step-contents__notes {
  font-size: 12px;
  padding-left: 1em;
  text-indent: -1em; }

.org-before-after {
  max-width: 715px;
  margin-left: auto;
  margin-right: auto; }

.org-voice {
  margin-top: 50px;
  padding-right: 20px; }

.org-voice__item {
  position: relative;
  max-width: 750px;
  padding: 40px 50px 40px 70px;
  z-index: 1; }
  .org-voice__item::before, .org-voice__item::after {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 100%; }
  .org-voice__item::before {
    top: 0;
    left: 0;
    background-color: #fff;
    border-radius: 15px;
    z-index: -1; }
  .org-voice__item::after {
    top: 18px;
    left: 20px;
    border: 3px solid #ffda47;
    border-radius: 10px;
    z-index: -2; }
  .org-voice__item > span {
    position: absolute;
    top: -25px;
    left: 12px;
    display: block;
    width: 62px;
    height: 48px;
    background: url("../images/org/img_voice.svg") center center no-repeat;
    background-size: contain; }
  .org-voice__item + .org-voice__item {
    margin-top: 55px; }
  .org-voice__item:nth-child(2n) {
    margin-left: auto; }

.org-mid-school-map__text__inner {
  width: 550%;
  max-width: 2063px; }

.org-next-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center; }

.org-next-page__logo {
  margin-bottom: 40px; }

.org-next-page__caption {
  color: #000;
  margin-bottom: 24px; }

.org-next-page__description {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 40px;
  text-align: center; }

.org-casestudy-index {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px; }

.org-casestudy-index__item {
  display: flex;
  flex-direction: column; }

.org-casestudy-index__link {
  flex: 1;
  display: flex;
  color: #000;
  text-decoration: none;
  border: 1px solid #d6d6d6;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15); }

.org-casestudy-index__link:not([href]) {
  opacity: 0.4;
  pointer-events: none; }

.org-casestudy-index__text {
  flex: 1;
  display: grid;
  align-items: center;
  grid-template-areas: "num title" "num place";
  grid-template-columns: 40px 1fr;
  padding: 15px; }

.org-casestudy-index__num {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  grid-area: num;
  align-self: center;
  color: #ffda47;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap; }
  .org-casestudy-index__num span {
    display: block;
    font-size: 30px; }

.org-casestudy-index__title {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: title;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  padding-left: 6px; }

.org-casestudy-index__place {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: place;
  display: flex; }
  .org-casestudy-index__place span {
    font-size: 12px;
    background-color: #f7f7f7;
    border-radius: 12px;
    padding: 3px 15px;
    text-align: center; }

.org-casestudy-index__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  background-color: #ffda47; }
  .org-casestudy-index__arrow::after {
    display: block;
    content: "";
    width: 23px;
    height: 23px;
    background: url("../images/icon_arrow.svg") no-repeat;
    background-size: contain;
    transform: rotate(90deg); }

.org-casestudy-number {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px; }

.org-casestudy-number__text {
  font-size: 18px;
  font-weight: 700;
  width: 208px;
  line-height: 1;
  background-color: #ffda47;
  padding: 5px 20px;
  border-radius: 20px;
  text-align: center; }
  .org-casestudy-number__text span {
    font-size: 28px;
    padding-left: 0.2em; }

.org-casestudy-charts {
  display: grid;
  row-gap: 40px;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  text-align: center; }

.org-casestudy-websites {
  margin-bottom: 40px;
  text-align: center; }

.org-casestudy-websites__img {
  margin-bottom: 45px; }

.org-casestudy-question {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #d6d6d6;
  padding: 35px 20px; }

.org-casestudy-question__caption {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  border-bottom: 1px solid #d6d6d6;
  margin-bottom: 30px;
  padding-bottom: 15px; }

.org-casestudy-question__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1em -1em; }
  .org-casestudy-question__list span {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 1.2;
    font-weight: bold;
    margin: 0 1em 1em; }
    .org-casestudy-question__list span::before {
      content: "";
      width: 20px;
      height: 20px;
      margin-right: 6px; }
    .org-casestudy-question__list span:nth-child(1)::before {
      background-color: #dd6645; }
    .org-casestudy-question__list span:nth-child(2)::before {
      background-color: #b2b2b2; }
    .org-casestudy-question__list span:nth-child(3)::before {
      background-color: #cccccc; }
    .org-casestudy-question__list span:nth-child(4)::before {
      background-color: #e5e5e5; }
    .org-casestudy-question__list span:nth-child(5)::before {
      background-color: #f2f2f2; }

.org-casestudy-comprehension {
  display: flex;
  flex-direction: column;
  align-items: center; }

.org-casestudy-comprehension__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px; }

.org-casestudy-comprehension__question__caption {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-left: 1em;
  text-indent: -1em; }

.org-casestudy-comprehension__question__list {
  justify-content: center; }
  .org-casestudy-comprehension__question__list span:nth-child(2)::before {
    background-color: #f3b7af; }
  .org-casestudy-comprehension__question__list span:nth-child(3)::before {
    background-color: #b2b2b2; }
  .org-casestudy-comprehension__question__list span:nth-child(4)::before {
    background-color: #cccccc; }

.org-casestudy-img-kumamoto {
  margin-bottom: 40px; }

.org-casestudy-img-saitama {
  margin-bottom: 40px; }

.org-effect-container {
  position: relative;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto; }
  .org-effect-container::before {
    position: relative;
    display: block;
    content: "";
    width: 80px;
    height: 70px;
    background: url("../images/org/casestudy/img_arrow.svg") no-repeat;
    background-size: contain;
    margin: 0 auto -2px; }

.org-effect-caption {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  background-color: #1792cb;
  padding: 12px;
  border: 1px solid #1792cb;
  border-radius: 25px 25px 0 0;
  text-align: center; }

.org-effect-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  background-color: #fff;
  border: 1px solid #1792cb;
  border-top: none;
  border-radius: 0 0 25px 25px;
  padding: 12px;
  text-align: center; }

.drill-hero {
  position: relative;
  width: 100%;
  background-color: #fff;
  background-repeat: no-repeat;
  z-index: 1; }

.drill-hero__content {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  z-index: 2; }

.iframe-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%; }

.iframe-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.gslide-iframe-container {
  padding-top: 59.375%; }

.text-alphabet {
  font-family: "Heebo", sans-serif; }

.text-center {
  text-align: center; }

.text-left {
  text-align: left; }

.text-notes {
  font-size: 13px;
  padding-left: 1em;
  text-indent: -1em; }

.-x-hidden {
  overflow-x: hidden; }

.-y-hidden {
  overflow-y: hidden; }

.-none-mb {
  margin-bottom: 0; }

@media only screen and (max-width: 1079px) {

  html {
    scroll-padding-top: var(--mobile-nav-height); }

  .carousel {
    padding-left: 3%;
    padding-right: 3%; }

  .carousel__button-prev {
    left: -14px; }

  .carousel__button-next {
    right: -14px; }

  .results-lead {
    flex-direction: column;
    align-items: center; }

  .results-lead__map-img {
    width: 100%;
    max-width: 520px; }

  .results-lead__logo {
    width: 100%;
    padding-top: 30px;
    text-align: center; }

  .contact-cta-buttons {
    grid-template-columns: 1fr; }

  .contact-modal {
    display: none !important; }

  .tab-list[data-button="4"] .tab-list__item:nth-child(2n) {
    border-right: none; }

  .tab-list[data-button="4"] .tab-list__item:nth-last-child(n + 3) {
    border-bottom: 1px solid #dcdcdc; }

  .hero__content {
    padding-left: 20px;
    padding-right: 20px; }

  .hero__note {
    padding-right: 20px;
    padding-left: 20px; }

  .home-service-container {
    border: 1px solid #c8c8c8;
    border-top: none; }

  .ms-hero__content {
    padding-left: 20px;
    padding-right: 20px; }

  .hs-lead-content {
    row-gap: 30px;
    text-align: center; }

  .hs-lead-illust {
    right: 0;
    top: 21%; }

  .hs-lead-notes {
    padding-bottom: 15px; }

  .units-table__column:nth-child(1),
  .units-table__column:nth-child(2) {
    grid-template-rows: repeat(6, 1fr); }

  .units-table__column:nth-child(3),
  .units-table__column:nth-child(4) {
    grid-template-rows: repeat(8, 1fr); }

  .reference-container {
    padding: 60px var(--inner-padding); }

  .org-step-container {
    row-gap: 24px; }

  .org-step-title {
    padding: 18px 8px;
    writing-mode: vertical-rl; }

  .org-step-title::before, .org-step-title::after {
    left: 0;
    width: 100%;
    height: 12px; }

  .org-step-column:not(:first-child) .org-step-title {
    margin-top: -10px;
    padding-top: 30px; }

  .org-step-column:not(:first-child) .org-step-title::before {
    top: 0; }

  .org-step-column:not(:last-child) .org-step-title::after {
    bottom: -12px; }

  .org-step-column:last-child .org-step-contents {
    padding-bottom: 0; }

  .org-step-contents {
    padding: 18px 0 18px 10px; }

  .org-step-contents[data-items="3"] {
    row-gap: 30px; } }

@media print, screen and (min-width: 1080px) {

  html {
    scroll-padding-top: 0; }

  .header-container {
    display: block; }

  .header-sub-container {
    display: flex; }

  .mobile-nav-bar {
    display: none; }

  .button.-contact::after {
    display: none; }

  .nav-buttons__item:not(:first-child) {
    margin-left: 30px; }

  .lesson-points__img {
    width: 486px; }

  .lesson-points__content {
    width: 470px; }

  .carousel__item {
    transform: scale(0.95);
    transition: transform 0.5s ease; }

  .carousel__item.swiper-slide-active {
    transform: scale(1); }

  .carousel__button-prev {
    left: -25px; }

  .carousel__button-next {
    right: -25px; }

  .works__img {
    width: 300px; }

  .works__contents {
    padding-left: 50px; }

  .results-lead {
    align-items: center; }

  .results-lead.-reverse {
    flex-direction: row-reverse; }

  .results-lead.-start {
    align-items: flex-start; }

  .results-lead__txt {
    width: 48%; }

  .results-lead__map-img {
    width: 52%;
    margin-top: -20px; }

  .results-lead__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%; }

  .supervision__contents {
    padding: 40px 50px 40px 75px; }

  .outline-heading {
    font-size: 30px;
    padding: 22px; }

  .outline-inner {
    padding: 70px 110px; }

  .tab-list[data-button="4"] {
    grid-template-columns: repeat(4, 1fr); }

  .hero__note.-home {
    text-align: center; }

  .about-lit__txt {
    padding-left: 50px; }

  .compulsory__item.-stepup {
    margin-top: -40px; }

  .home-service-list {
    border: 1px solid #c8c8c8;
    grid-template-columns: repeat(4, 1fr); }

  .home-service-list__item:not(:last-child) {
    border-right: 1px solid #c8c8c8; }

  .home-service-list__item:nth-child(1) {
    grid-column: 1 / 2; }

  .home-service-list__item:nth-child(2) {
    grid-column: 2 / 4; }

  .home-service-list__item:nth-child(3) {
    grid-column: 4 / 5; }

  .ms-hero__content::after {
    right: -90px;
    width: 804px;
    height: 562px; }

  .hs-hero__note {
    text-align: center; }

  .hs-lead-content {
    column-gap: 40px;
    grid-template-columns: repeat(2, 1fr); }

  .hs-lead-illust {
    right: 16px;
    bottom: -60px; }

  .hs-lead-notes span {
    display: block; }

  .units-table {
    grid-template-columns: repeat(4, 1fr); }

  .units-table__column {
    grid-template-rows: repeat(8, 1fr); }

  .hs-3year-figure-container {
    display: flex;
    flex-direction: column;
    align-items: center; }

  .reference-container {
    padding: 70px 50px; }

  .org-hero__img img {
    margin-left: -30px; }

  .org-service-list__item {
    width: 47.5%; }

  .org-service-list__contents {
    padding: 30px 55px; }

  .org-step-container {
    column-gap: 26px; }

  .org-step-container[data-columns="3"] {
    grid-template-columns: repeat(3, 1fr); }

  .org-step-container[data-columns="3-1"] {
    grid-template-columns: repeat(4, 1fr); }

  .org-step-container[data-columns="3-1"] .org-step-column:nth-child(1) {
    grid-column: 1 / 4; }

  .org-step-container[data-columns="3-1"] .org-step-column:nth-child(2) {
    grid-column: 4 / 5; }

  .org-step-title {
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center; }

  .org-step-title::before, .org-step-title::after {
    bottom: 0;
    width: 14px;
    height: 100%; }

  .org-step-column {
    flex-direction: column; }

  .org-step-column:not(:first-child) .org-step-title {
    margin-left: -14px;
    padding-left: 14px; }

  .org-step-column:not(:first-child) .org-step-title::before {
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='44' fill='%23fff' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 22 0 0v44z'/%3E%3C/svg%3E"); }

  .org-step-column:not(:last-child) .org-step-title::after {
    right: -14px; }

  .org-step-column:not(:last-child) .org-step-title[data-color="green"]::after {
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='44' fill='%23749127' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 22 0 0v44z'/%3E%3C/svg%3E"); }

  .org-step-column:not(:last-child) .org-step-title[data-color="yellow"]::after {
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='44' fill='%23ffd500' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 22 0 0v44z'/%3E%3C/svg%3E"); }

  .org-step-column:not(:last-child) .org-step-title[data-color="gray"]::after {
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='44' fill='%23849074' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 22 0 0v44z'/%3E%3C/svg%3E"); }

  .org-step-column:not(:last-child) .org-step-title[data-color="red"]::after {
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='44' fill='%23dd6645' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 22 0 0v44z'/%3E%3C/svg%3E"); }

  .org-step-contents {
    padding-top: 15px; }

  .org-step-contents[data-items="3"] {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 26px; }

  .org-step-contents__item[data-direction="reverse"] {
    flex-direction: column-reverse; }

  .org-step-contents__item[data-direction="reverse"] .org-step-contents__detail {
    padding-bottom: 0; }

  .org-step-contents__item[data-direction="reverse"] .org-step-contents__img {
    margin-bottom: 10px; }

  .org-step-contents__caption {
    min-height: 2.8em; }

  .org-step-contents__img {
    text-align: center; }

  .org-casestudy-index__title span {
    display: block; } }

@media only screen and (max-width: 767px) {

  body {
    font-size: 15px; }

  .footer-nav {
    padding-bottom: 80px; }

  .footer-nav-menu {
    margin-bottom: 30px; }

  .footer-nav-menu__item {
    font-size: 14px; }

  .footer-nav-menu__item:not(:last-child) {
    margin-bottom: 8px; }

  .footer-nav-bottom {
    flex-direction: column;
    text-align: center; }

  .footer-links {
    margin-bottom: 40px; }

  .xl-section {
    padding-top: 80px;
    padding-bottom: 80px; }

  .lg-section {
    padding-top: 80px;
    padding-bottom: 20px; }

  .md-section {
    padding-top: 60px;
    padding-bottom: 120px; }

  .headline {
    font-size: 25px; }

  .headline > span > span {
    font-size: 15px; }

  .md-caption {
    font-size: 15px;
    max-width: 320px;
    padding: 5px 10px; }

  .sm-caption {
    font-size: 21px; }

  .button::after {
    width: 20px;
    height: 20px;
    margin-left: 6px; }

  .button.-cta span {
    top: -2px; }

  .button.-cta {
    font-size: 14px;
    max-width: 100%;
    padding: 20px 0;
    border-width: 3px;
    border-radius: 10px;
    white-space: nowrap; }

  .button.-cta span {
    font-size: 18px; }

  .button.-cta::before {
    top: -1px;
    width: 24px;
    height: 24px; }

  .button.-cta-fixed.-pc {
    display: none; }

  .button.-cta-fixed.-sp {
    position: fixed;
    align-items: center;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 12px;
    letter-spacing: 0.03em;
    line-height: 1;
    max-width: 100%;
    height: 60px;
    border-width: 3px;
    padding: 0;
    border-radius: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 999; }

  .button.-cta-fixed.-sp strong {
    position: relative;
    top: -1px;
    font-size: 16px; }

  .button.-cta-fixed.-sp::before {
    position: relative;
    display: inline-block;
    content: "";
    width: 28px;
    height: 28px;
    background: url("../images/img_symbol.svg") no-repeat;
    background-size: contain;
    margin-right: 6px; }

  .button.-primary-fixed {
    position: fixed;
    align-items: center;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 17px;
    letter-spacing: 0.03em;
    line-height: 1;
    max-width: 100%;
    height: 60px;
    padding: 0 10px;
    border-width: 3px;
    border-radius: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    z-index: 999; }

  .button.-primary-fixed > div {
    color: #fff;
    font-size: 11px;
    padding-right: 5px;
    text-align: left; }

  .button.-primary-fixed > div span {
    color: #ffda47; }

  .button.-primary-fixed > div span::before {
    background-color: #ffda47; }

  .button.-primary-fixed strong {
    position: relative;
    top: -3px;
    color: #fff;
    font-size: 13px; }

  .button.-primary-fixed strong i {
    font-style: normal; }

  .button.-primary-fixed strong span {
    font-size: 19px;
    color: #ffda47; }

  .button.-primary-fixed:hover > div {
    color: #d53f37; }

  .button.-primary-fixed:hover > div span {
    color: #d53f37; }

  .button.-primary-fixed:hover > div span::before {
    background-color: #d53f37; }

  .button.-primary-fixed > .button-label {
    font-weight: 700;
    line-height: 1.2;
    border: 1px solid #fff;
    margin-right: 12px;
    padding: 4px;
    text-align: center; }

  .button.-primary-fixed:hover > .button-label {
    border-color: #d53f37; }

  .button-wrap {
    align-items: center;
    flex-direction: column; }

  .button-wrap__item:not(:last-child) {
    margin-bottom: 20px; }

  .button.reference-button {
    justify-content: space-between;
    text-align: left; }

  .fixed-contest-btn {
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 60px;
    background: #fff url("../images/bg_btn_contest_sp.png?v=2.0") center center repeat;
    background-size: 62px 38px;
    border: 5px solid #f9cc00;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1); }

  .fixed-contest-btn img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center; }

  .contents-lead {
    font-size: 16px;
    margin-bottom: 40px; }

  .contents-lead strong {
    font-size: 16px; }

  .contents-caption {
    font-size: 21px;
    line-height: 1.4; }

  .contents-caption span {
    display: block; }

  .contents-inner {
    padding: 32px 3%; }

  .table-list {
    font-size: 13px; }

  .table-list th {
    width: 115px;
    padding: 12px; }

  .table-list td {
    padding: 12px; }

  .table-list strong span {
    font-size: 12px; }

  .table-list .note {
    font-size: 12px; }

  .table-list__caption {
    font-size: 14px;
    padding: 8px 12px; }

  .nav-buttons {
    flex-direction: column; }

  .nav-buttons__item {
    width: 100%; }

  .nav-buttons__item:not(:first-child) {
    margin-top: 16px; }

  .nav-buttons__item .button {
    font-size: 14px;
    height: 55px;
    border-radius: 15px; }

  .lesson-points {
    flex-direction: column-reverse; }

  .lesson-points__img {
    max-width: 486px;
    margin: 0 auto; }

  .lesson-points__content {
    margin-bottom: 21px; }

  .lesson-points__img,
  .lesson-points__content {
    width: 100%; }

  .lesson-points__num span {
    font-size: 66px; }

  .lesson-points__caption {
    font-size: 21px; }

  .carousel__button-prev,
    .carousel__button-next {
    top: 25%;
    width: 36px;
    height: 36px; }

  .carousel__item {
    padding: 40px 20px; }

  .carousel__item {
    flex-direction: column; }

  .page-hero__label {
    display: flex;
    justify-content: space-between; }

  .page-hero__label__item.-lg {
    width: 44%; }

  .page-hero__label__item.-sm {
    width: 53%; }

  .page-hero__label__item.-sm div + div {
    margin-top: 5px; }

  .works__img {
    margin: 0 auto 20px; }

  .works__title {
    font-size: 21px;
    margin-bottom: 12px; }

  .works__name__img {
    width: 45px; }

  .works__name__txt {
    font-size: 14px; }

  .voice__img {
    margin: 0 auto 20px; }

  .voice__caption {
    font-size: 21px;
    margin-bottom: 12px; }

  .voice__name {
    font-size: 14px;
    margin-bottom: 20px; }

  .movie-lead {
    font-size: 16px; }

  .lesson-details-inner {
    padding: 35px 3%; }

  .lesson-details-contents.-website {
    padding: 20px 3%; }

  .lesson-details-contents.-python {
    margin-bottom: 40px;
    border: 1px solid #dfdfdf;
    padding: 20px 3%; }

  .lesson-details-contents.-python:last-child {
    margin-bottom: 0; }

  .lesson-details-img-website {
    padding-right: 3%; }

  .lesson-details-img-python01 {
    width: 931px;
    padding-right: 3%; }

  .lesson-details-img-python02 {
    width: 746px;
    padding-right: 3%; }

  .progress__img {
    width: 700px;
    padding-right: 3%; }

  .results-lead__count div:nth-child(1) {
    font-size: 8.6vw; }

  .results-lead__count div:nth-child(1) span {
    font-size: 14vw; }

  .results-lead__count div:nth-child(2) {
    font-size: 8.2vw; }

  .results-lead__count div:nth-child(2) span {
    font-size: 10.6vw; }

  .results-lead__label {
    width: 85%; }

  .cta-txt {
    font-size: 18px;
    margin-bottom: 16px; }

  .cta-txt span {
    display: block; }

  .button.-details-toggle + .hide-container {
    margin-top: 60px; }

  .voice-container {
    flex-direction: column;
    align-items: center; }

  .voice-teacher {
    display: flex;
    align-items: center;
    margin-bottom: 52px; }

  .voice-teacher__img {
    width: 35.82%;
    padding-left: 4.48%; }

  .voice-teacher__name {
    flex: 1; }

  .voice-balloon {
    padding: 80px 25px 50px; }

  .voice-balloon::before {
    top: 0;
    left: 50%;
    border-width: 0 16px 32px 16px;
    border-color: transparent transparent #fff transparent;
    transform: translate(-50%, -100%); }

  .voice-balloon__caption {
    font-size: 25px;
    padding-left: 8px;
    margin-bottom: 48px; }

  .voice-balloon__caption::before {
    top: -35px;
    left: -25px; }

  .c-contents-heading {
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px; }

  .c-contents-heading__caption {
    margin-bottom: 4px; }

  .c-contents-heading__caption__alphabet {
    top: -4px;
    transform: scale(0.8); }

  .c-contents-inner {
    padding: 40px var(--inner-padding); }

  .scrollable-wrapper {
    position: relative;
    margin-left: calc(var(--inner-padding) * -1);
    margin-right: calc(var(--inner-padding) * -1); }

  .scrollable-inner {
    padding-left: var(--inner-padding);
    padding-right: var(--inner-padding); }

  .study-flow-chart {
    width: 820px; }

  .supervision__profile {
    flex-direction: column; }

  .supervision__img {
    margin: 0 auto 24px; }

  .supervision__name__text {
    font-size: 22px; }

  .tab-panels {
    border: 1px solid #1792cb;
    border-top: none;
    border-radius: 0 0 10px 10px; }

  .hero {
    height: auto;
    min-height: calc(100vh - var(--mobile-nav-height));
    min-height: calc(100svh - var(--mobile-nav-height));
    background-image: url("../images/bg_hero_sp.jpg");
    background-position: right center; }

  .hero__content {
    flex: 1;
    display: flex;
    align-items: center; }

  .hero__catch {
    padding-top: 21.33333vw;
    padding-bottom: 21.33333vw; }

  .hero__note {
    font-size: 12px;
    margin-top: 20px;
    text-align: left; }

  .about-lit {
    margin-bottom: 40px; }

  .about-lit__img {
    margin: 0 calc(50% - 50vw) 25px;
    padding-top: 54%; }

  .about-lit__txt {
    font-size: 17px; }

  .about-lit__txt div:nth-child(2) img {
    width: 86%;
    max-width: 260px; }

  .about-lit__txt div:nth-child(3) span {
    font-size: 18px; }

  .compulsory__caption span {
    font-size: 16px;
    padding: 16px 25px; }

  .compulsory__item__img {
    width: 700px; }

  .school {
    padding: 32px 15px; }

  .awards__edtechx {
    max-width: 400px; }

  .awards__seal {
    flex-direction: column; }

  .awards__seal__item {
    margin: 0 auto 20px; }

  .awards__seal__item:nth-child(3) {
    margin-bottom: 0; }

  .faq__container {
    margin-bottom: 60px; }

  .faq__question, .faq__answer {
    padding: 20px 20px 20px 50px; }

  .faq__question::before, .faq__answer::before {
    font-size: 40px; }

  .faq__question::before {
    left: 12px; }

  .faq__answer::before {
    top: 12px;
    left: 12px; }

  .other-media {
    padding: 40px 20px;
    margin-bottom: 60px; }

  .other-media__list li:not(:last-child) {
    margin-bottom: 12px; }

  .home-service-container[data-columns="2"] {
    border: none;
    row-gap: 10px; }

  .home-service-container[data-columns="2"] .home-service-contents {
    border: 1px solid #c8c8c8; }

  .home-service-container[data-columns="2"] .home-service-contents:first-child {
    border-top: none; }

  .ms-hero {
    padding-top: 16%; }

  .ms-hero__catch::after {
    position: relative;
    display: block;
    content: "";
    width: 100%;
    background: url("../images/ms/bg_hero-ms.png?ver=2.0.0") right center no-repeat;
    background-size: cover;
    padding-top: 80%;
    margin-top: 14px; }

  .ms-hero__label {
    margin-top: 20px; }

  .hs-hero {
    background-image: url("../images/hs/bg_hero-hs_sp.png");
    background-position: center bottom 12%;
    background-size: 100% auto; }

  .hs-hero__txt {
    position: relative;
    padding-top: 16%;
    padding-left: 6%;
    padding-right: 6%;
    padding-bottom: 60%;
    overflow-x: hidden; }

  .hs-hero__catch {
    margin-bottom: 8vw; }

  .hs-lead-container {
    padding-top: 110px;
    padding-bottom: 154px; }

  .hs-lead-content__item:nth-child(3),
  .hs-lead-content__item:nth-child(4) {
    max-width: 230px;
    margin-left: auto;
    margin-right: auto; }

  .hs-lead-notes {
    text-align: left; }

  .hs-home-three-year__table {
    width: 700px; }

  .hs-toolkit-list-img {
    width: 100%;
    max-width: 335px; }

  .hs-toolkit-figure {
    width: 820px; }

  .hs-textbook-contents {
    align-items: center;
    flex-direction: column; }

  .hs-3year-figure-01,
  .hs-3year-figure-02 {
    width: 700px; }

  .hs-3year-figure-04 {
    width: 720px; }

  .reference-list__img {
    margin-bottom: 20px;
    text-align: center; }

  .org-hero__content {
    padding-top: 10.66667vw; }

  .org-hero__catch {
    margin-bottom: 8vw; }

  .org-hero__img {
    justify-content: center;
    width: 83%;
    margin: 0 auto 8vw; }

  .org-service-img-inner {
    width: 700px; }

  .org-service-list {
    flex-direction: column; }

  .org-service-list__item {
    width: 100%; }

  .org-service-list__item + .org-service-list__item {
    margin-top: 40px; }

  .org-section-title__headline {
    flex-direction: column; }

  .org-training-list {
    display: none; }

  .org-training-panel {
    padding: 40px var(--inner-padding); }

  .org-training-title {
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden; }

  .org-before-after {
    max-width: 260px; }

  .org-voice__item {
    padding: 35px 20px; }

  .org-voice__item > span {
    top: -15px;
    width: 40px;
    height: 32px; }

  .org-next-page__caption {
    line-height: 1.3; }

  .org-casestudy-index__place {
    padding-top: 6px;
    padding-left: 6px; }

  .org-casestudy-index__place span {
    min-width: 180px; }

  .org-casestudy-table {
    width: 700px; }

  .org-effect-text span {
    display: block; }

  .drill-hero {
    background-image: url("../images/joho1-drill/bg_hero_sp.png");
    background-position: center bottom;
    background-size: 100% auto; }

  .drill-hero__catch {
    position: relative;
    padding-top: 20%;
    padding-left: 6%;
    padding-right: 6%;
    padding-bottom: 96.8%;
    overflow-x: hidden; }

  .responsive-sm-img {
    width: 100%;
    max-width: 320px; }

  .-lg-space {
    margin-bottom: 80px; }

  .-slg-space {
    margin-bottom: 70px; }

  .-md-space {
    margin-bottom: 60px; }

  .-sm-space {
    margin-bottom: 30px; }

  .-xs-space {
    margin-bottom: 20px; }

  .is-only-pc {
    display: none; } }

@media only screen and (min-width: 1280px) {

  .header-gnav {
    width: 64.17%; }

  .header-buttons-container {
    width: 35.83%;
    padding-right: 30px; }

  .header-buttons-item {
    padding: 12px 18px; } }

@media only screen and (min-width: 561px) {

  .header-login-container {
    width: 520px;
    padding: 30px; }

  .mobile-nav-bar[data-device="default"] .mobile-buttons-item {
    font-size: 12px;
    padding: 8px 12px; }

  .footer-cta-txt {
    font-size: 30px; }

  .button.more-button {
    max-width: 330px; }

  .button.more-button br {
    display: none; }

  .button.more-button.-lg-size {
    max-width: 465px; }

  .button-wrap__item {
    width: 330px; }

  .button.reference-button br {
    display: none; }

  .movie-caption {
    text-align: center; }

  .lesson-details-caption span {
    display: block; }

  .lesson-details-img-search {
    width: 934px; }

  .joho-banner {
    margin-bottom: 100px; }

  .article-grid {
    gap: 40px 30px;
    grid-template-columns: repeat(2, 1fr);
    padding-left: 0;
    padding-right: 0; }

  .tab-button {
    font-size: 18px; }

  .hs-feature-sample {
    column-gap: 20px; }

  .org-service-list__num {
    font-size: 82px; }

  .org-training-title__label {
    font-size: 13px;
    width: 240px; }

  .org-training-title__caption {
    font-size: 20px; }

  .org-mid-school-map__text {
    display: none; }

  .org-next-page__caption {
    font-size: 35px; }

  .org-next-page__caption::before, .org-next-page__caption::after {
    width: 32px;
    height: 32px; }

  .org-next-page__description {
    font-size: 18px; }

  .org-casestudy-charts {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px; }

  .org-casestudy-question {
    padding: 35px; }

  .org-casestudy-question__caption {
    font-size: 19px;
    padding: 15px; }

  .org-casestudy-comprehension__list {
    grid-template-columns: repeat(2, 1fr); }

  .org-effect-text {
    font-size: 25px; } }

@media only screen and (max-width: 560px) {

  .mobile-nav-bar[data-device="default"] .mobile-buttons-item span {
    display: block; }

  .footer-cta-txt span {
    display: block; }

  .headline {
    font-size: 22px; }

  .sm-caption {
    font-size: 19px; }

  .button.-contact {
    padding: 18px 12px; }

  .button__icon {
    width: 25px; }

  .button__txt {
    padding-left: 12px; }

  .button__txt__title {
    font-size: 18px; }

  .button__txt__phone span:nth-child(1) {
    font-size: 15px; }

  .button__txt__phone span:nth-child(2) {
    font-size: 11px; }

  .button__txt__mail {
    font-size: 13px; }

  .button.-details-toggle {
    font-size: 15px; }

  .contents-lg-caption {
    font-size: 20px;
    margin-bottom: 25px; }

  .lesson-details-contents.-search {
    width: 100%;
    max-width: 226px;
    margin-left: auto;
    margin-right: auto; }

  .results-lead__txt {
    padding-left: 3%;
    padding-right: 3%; }

  .results-lead__note {
    font-size: 13px; }

  .caption-solution-for {
    font-size: 20px; }

  .bnr-voice-container {
    margin-top: 45px; }

  .joho-banner {
    margin-bottom: 60px; }

  .supervision__heading span {
    display: block; }

  .supervision__profile {
    align-items: flex-start; }

  .hero__note {
    font-size: 9px; }

  .hs-feature-sample {
    flex-direction: column;
    align-items: center;
    row-gap: 30px; }

  .reference-list__img img {
    width: 100%; }

  .org-service-list__head {
    flex-direction: column;
    text-align: center; }

  .org-service-list__feature strong {
    font-size: 13px; }

  .org-service-list__caption {
    font-size: 18px; }

  .anxiety__cause__caption {
    font-size: 12px;
    width: 72px;
    height: 67px; }

  .anxiety__cause__caption span {
    font-size: 33px; }

  .anxiety__cause__balloon {
    font-size: 16px;
    padding: 18px 12px; }

  .org-step-contents__img img {
    width: 100%; }

  .org-mid-school-map__img {
    margin-bottom: 20px; }

  .org-next-page__caption {
    font-size: 28px; }

  .org-casestudy-question img {
    position: relative;
    margin-right: -20px; }

  .org-casestudy-question__result {
    margin-bottom: 30px; }

  .drill-ss-img01 {
    width: 100%;
    max-width: 200px; }

  .drill-ss-img02 {
    width: 100%;
    max-width: 243px; }

  .responsive-img {
    width: 100%;
    max-width: 320px; } }

@media only screen and (max-width: 360px) {

  .menu-nav__link,
    .menu-nav__button {
    font-size: 16px; }

  .sub-menu-nav__link {
    font-size: 15px;
    padding: 16px 20px; }

  .button__txt__title {
    font-size: 16px; }

  .button__txt__phone span:nth-child(1) {
    font-size: 14px;
    margin-right: 4px; }

  .button__txt__phone span:nth-child(2) {
    font-size: 10px; }

  .contact-cta-buttons__item.button .button__txt__title {
    font-size: 15px; } }

@media only screen and (min-width: 768px) {

  .footer-cta {
    padding-top: 120px; }

  .footer-nav-menu {
    display: flex;
    flex-wrap: wrap;
    column-gap: 24px;
    row-gap: 15px;
    max-width: 840px;
    margin-bottom: 34px;
    line-height: 1; }

  .footer-nav-menu__item {
    font-size: 15px; }

  .footer-links {
    display: flex;
    align-items: center;
    line-height: 1; }

  .footer-links__item:not(:last-child) {
    margin-right: 18px;
    padding-right: 18px;
    border-right: 1px solid #808080; }

  .xl-section {
    padding-top: 100px;
    padding-bottom: 100px; }

  .lg-section {
    padding-top: 100px;
    padding-bottom: 30px; }

  .md-section {
    padding-top: 80px;
    padding-bottom: 140px; }

  .md-section.-top {
    padding-top: 100px; }

  .headline > span > i {
    font-size: 35px; }

  .xs-caption__lg-text {
    font-size: 23px; }

  .xs-caption__sm-text {
    font-size: 15px; }

  .button.-cta {
    padding-top: 21px; }

  .button.-cta-fixed.-pc {
    position: fixed;
    flex-direction: column;
    right: 40px;
    bottom: 40px;
    font-size: 16px;
    width: 150px;
    height: 150px;
    line-height: 1.3;
    padding: 0 0 28px 0;
    border-radius: 50%;
    z-index: 999; }

  .button.-cta-fixed.-pc strong {
    font-size: 26px; }

  .button.-cta-fixed.-pc::after {
    position: absolute;
    bottom: 7px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0; }

  .button.-cta-fixed.-sp {
    display: none; }

  .button.-primary-fixed {
    position: fixed;
    flex-direction: column;
    right: 40px;
    bottom: 40px;
    font-size: 18px;
    width: 150px;
    height: 150px;
    line-height: 1.2;
    padding: 0 0 5px 0;
    border-radius: 50%;
    z-index: 999; }

  .button.-primary-fixed > div {
    position: absolute;
    top: -50px;
    left: -5%;
    display: block;
    font-size: 14px;
    color: #000;
    width: 110%;
    line-height: 1.4;
    background-color: #fff;
    border: 1px solid #e6e6e6;
    padding: 17px 0;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); }

  .button.-primary-fixed > div::before, .button.-primary-fixed > div::after {
    position: absolute;
    left: 50%;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    transform: translateX(-50%); }

  .button.-primary-fixed > div::before {
    bottom: -14px;
    border-width: 14px 9px 0 9px;
    border-color: #e6e6e6 transparent transparent transparent;
    z-index: 1; }

  .button.-primary-fixed > div::after {
    bottom: -13px;
    border-width: 13px 8.5px 0 8.5px;
    border-color: #fff transparent transparent transparent;
    z-index: 2; }

  .button.-primary-fixed > div span {
    color: #d53f37; }

  .button.-primary-fixed > div span::before {
    background-color: #d53f37; }

  .button.-primary-fixed strong {
    display: block;
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
    padding-bottom: 8px; }

  .button.-primary-fixed strong i {
    font-style: normal; }

  .button.-primary-fixed strong span {
    display: block;
    font-size: 21px;
    color: #ffda47; }

  .button.-primary-fixed strong .sm-text {
    font-size: 16px; }

  .button.-primary-fixed strong .lg-text {
    font-size: 20px; }

  .button.-primary-fixed::after {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0; }

  .button.-primary-fixed > .button-label {
    padding: 12px 0; }

  .button-wrap__item:not(:last-child) {
    margin-right: 40px; }

  .fixed-contest-btn {
    right: 30px;
    bottom: 30px;
    width: 175px;
    height: 175px; }

  .contents-lead {
    text-align: center; }

  .contents-lead span {
    display: block; }

  .contents-lead__notes {
    font-size: 14px; }

  .contents-inner {
    padding: 40px 50px; }

  .table-list strong {
    font-size: 16px; }

  .table-list strong span {
    font-size: 13px; }

  .table-list__caption {
    font-size: 16px;
    padding: 8px 16px; }

  .nav-buttons__item {
    width: 33%;
    max-width: 290px; }

  .nav-buttons__item .button {
    font-size: 16px;
    height: 62px; }

  .lesson-points {
    flex-direction: row-reverse;
    justify-content: space-between; }

  .lesson-points.-reverse {
    flex-direction: row; }

  .lesson-points__caption {
    font-size: 23px; }

  .lesson-points__caption span {
    display: block; }

  .carousel {
    height: 100%; }

  .carousel .swiper-container {
    height: 100%; }

  .carousel__button-prev,
    .carousel__button-next {
    top: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px; }

  .carousel__item {
    padding: 60px;
    height: auto; }

  .page-hero__label {
    max-width: 506px;
    margin-top: 40px; }

  .page-hero__label__item.-lg {
    margin-bottom: 20px; }

  .page-hero__label__item.-sm {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas: "label01 label01" "label02 label03";
    gap: 10px; }

  .page-hero__label__item.-sm > div:nth-child(1) {
    grid-area: label01; }

  .page-hero__label__item.-sm > div:nth-child(2) {
    grid-area: label02; }

  .page-hero__label__item.-sm > div:nth-child(3) {
    grid-area: label03;
    margin-left: 3px; }

  .page-hero__label__item.-sm > div:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3; }

  .page-hero__label__item.-sm > div:nth-child(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1; }

  .page-hero__label__item.-sm > div:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 3; }

  .works__contents {
    flex: 1; }

  .voice__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 35%; }

  .voice__contents {
    flex: 1;
    padding-left: 39%; }

  .voice__name {
    font-size: 15px;
    margin-bottom: 5px; }

  .movie-lead {
    font-size: 20px; }

  .lesson-details-inner {
    padding: 35px 30px; }

  .lesson-details-caption {
    text-align: center; }

  .lesson-details-caption.-lg-txt {
    font-size: 18px; }

  .lesson-details-contents.-python {
    margin-bottom: 60px;
    text-align: center; }

  .lesson-details-contents.-python:last-child {
    margin-bottom: 20px; }

  .lesson-details-notes {
    font-size: 14px; }

  .results-lead__caption {
    max-width: 380px;
    margin: 0 0 10px; }

  .results-lead__count div:nth-child(1) {
    font-size: 43px; }

  .results-lead__count div:nth-child(1) span {
    font-size: 73px; }

  .results-lead__count div:nth-child(2) {
    font-size: 41px; }

  .results-lead__count div:nth-child(2) span {
    font-size: 54px; }

  .contact-cta {
    padding-top: 80px;
    padding-bottom: 80px; }

  .contact-cta-txt {
    font-size: 30px; }

  .voice-heading {
    margin-bottom: 70px; }

  .voice-container {
    flex-direction: row; }

  .voice-teacher {
    width: 320px;
    line-height: 1.4;
    text-align: center;
    padding-left: 20px;
    padding-right: 50px; }

  .voice-teacher__img {
    position: relative;
    left: 18px;
    margin-bottom: 28px; }

  .voice-teacher__name__post {
    font-size: 20px; }

  .voice-teacher__name__text {
    font-size: 18px; }

  .voice-balloon {
    padding: 50px 55px; }

  .voice-balloon::before {
    top: 50%;
    left: 0;
    border-width: 16px 32px 16px 0;
    border-color: transparent #fff transparent transparent;
    transform: translate(-100%, -50%); }

  .voice-balloon__caption {
    font-size: 30px;
    margin-bottom: 32px;
    padding-left: 38px; }

  .voice-balloon__caption span {
    display: block; }

  .voice-balloon__caption::before {
    top: -25px;
    left: -20px; }

  .glightbox-clean .gslide-desc {
    font-size: 18px;
    text-align: center; }

  .c-contents-container {
    padding-left: 50px;
    padding-right: 50px; }

  .c-contents-heading__caption {
    margin-right: 24px; }

  .c-contents-heading__caption__alphabet {
    top: -12px;
    margin-right: 12px; }

  .c-contents-heading__caption__number {
    font-size: 60px; }

  .c-contents-heading__text {
    font-size: 23px; }

  .c-contents-inner {
    padding-top: 45px;
    padding-bottom: 55px; }

  .supervision__profile {
    justify-content: flex-start; }

  .supervision__name {
    padding-left: 50px; }

  .supervision__name__text {
    font-size: 25px; }

  .section-pagetop {
    bottom: -70px; }

  .tab-list {
    border-bottom: none; }

  .tab-panels {
    border: 1px solid #dcdcdc; }

  .hero {
    background-image: url("../images/bg_hero.jpg");
    background-position: center center;
    min-height: 675px;
    height: calc(100vh - var(--mobile-nav-height)); }

  .hero__catch {
    padding-bottom: var(--global-nav-height); }

  .hero__note {
    position: absolute;
    left: 50%;
    bottom: 0;
    font-size: 13px;
    z-index: 2;
    transform: translateX(-50%); }

  .about-lit {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    padding-top: 20px; }

  .about-lit__img {
    flex: 1;
    height: 290px;
    margin-left: calc(50% - 50vw); }

  .about-lit__txt {
    font-size: 20px;
    width: 58%; }

  .about-lit__txt::after {
    position: absolute;
    right: 20px;
    top: 0;
    content: "";
    width: 192px;
    height: 135px;
    background: url("../images/img_mouse.svg") center center no-repeat;
    background-size: contain;
    z-index: -1; }

  .compulsory__caption span {
    min-width: 340px; }

  .school {
    padding: 55px 70px; }

  .home-service-container[data-columns="2"] {
    grid-template-columns: repeat(2, 1fr); }

  .home-service-contents:not(:last-child) {
    border-right: 1px solid #c8c8c8; }

  .home-service-description {
    font-size: 17px;
    min-height: 110px;
    padding: 10px; }

  .ms-hero {
    display: flex;
    align-items: center;
    height: calc(100vh - var(--mobile-nav-height));
    min-height: 675px;
    overflow-x: hidden; }

  .ms-hero__content::after {
    position: absolute;
    top: 50%;
    display: block;
    content: "";
    background: url("../images/ms/bg_hero-ms.png?ver=2.0.0") center center no-repeat;
    background-size: contain;
    margin-top: 10px;
    transform: translateY(-50%);
    z-index: -1; }

  .ms-lesson-points01 {
    align-items: center; }

  .hs-hero {
    height: calc(100vh - var(--mobile-nav-height));
    min-height: 675px;
    background-image: url("../images/hs/bg_hero-hs.png?v=2.0.0");
    background-position: center bottom;
    background-size: cover; }

  .hs-hero__content {
    display: flex;
    align-items: center; }

  .hs-hero__txt {
    padding-bottom: 10%; }

  .hs-hero__catch {
    margin-bottom: 30px; }

  .hs-lead-container {
    padding-top: 140px;
    padding-bottom: 184px; }

  .hs-lead-labels {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 60px; }

  .hs-lead-text {
    font-size: 20px; }

  .hs-lead-text__line br {
    display: none; }

  .hs-home-contents {
    grid-template-columns: repeat(2, 1fr); }

  .hs-home-contents__item {
    padding-left: 20px;
    padding-right: 20px; }

  .hs-home-contents__item:first-child {
    border-right: 1px solid #b7b7b7; }

  .units-table__title {
    font-size: 18px;
    padding: 8px 14px; }

  .units-table__label {
    font-size: 16px;
    padding: 8px 16px; }

  .units-table__label span {
    font-size: 14px; }

  .units-table__title br,
  .units-table__label br {
    display: none; }

  .hs-textbook-contents {
    flex-direction: row-reverse;
    column-gap: 40px;
    max-width: 910px; }

  .hs-3year-figure-notes {
    font-size: 14px; }

  .reference-list__item {
    display: flex; }

  .reference-list__img {
    width: 37.22%; }

  .reference-list__content {
    flex: 1;
    padding-left: 3.89%; }

  .reference-list__books {
    font-size: 15px; }

  .reference-list__books dt {
    width: 115px; }

  .org-hero {
    display: flex;
    align-items: center;
    height: calc(100vh - var(--mobile-nav-height));
    min-height: 675px;
    padding-bottom: 40px; }

  .org-hero__content {
    flex: 1;
    display: grid;
    grid-template-areas: "catch img" "label img";
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
    padding-top: 60px;
    padding-bottom: 60px; }

  .org-hero__catch {
    grid-area: catch; }

  .org-hero__img {
    grid-area: img; }

  .org-hero__label {
    grid-area: label; }

  .org-hero__catch {
    -ms-grid-row: 1;
    -ms-grid-column: 1; }

  .org-hero__img {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 2; }

  .org-hero__label {
    -ms-grid-row: 3;
    -ms-grid-column: 1; }

  .org-service-arrow {
    height: 154px; }

  .org-service-list__feature {
    top: -18px;
    right: -12px; }

  .org-training-list {
    margin-bottom: 60px; }

  .org-training-list th {
    width: 245px; }

  .org-training-title__description {
    display: none; }

  .org-training-contents {
    padding: 30px 45px; }

  .org-casestudy-index {
    grid-template-columns: repeat(3, 1fr); }

  .org-casestudy-index__link {
    flex-direction: column; }

  .org-casestudy-index__link[href] {
    transition: opacity 0.2s ease; }

  .org-casestudy-index__link[href]:hover {
    opacity: 0.7; }

  .org-casestudy-index__text {
    grid-template-areas: "num title" "place place";
    row-gap: 12px;
    padding: 30px 12px 15px; }

  .org-casestudy-index__num {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1; }

  .org-casestudy-index__title {
    -ms-grid-row: 1;
    -ms-grid-column: 2; }

  .org-casestudy-index__place {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2; }

  .org-casestudy-index__place {
    justify-content: center; }

  .org-casestudy-index__place span {
    width: 100%;
    padding: 3px; }

  .org-casestudy-index__arrow {
    width: 100%;
    height: 40px; }

  .org-casestudy-number__text {
    width: 280px; }

  .org-casestudy-websites {
    margin-bottom: 80px; }

  .org-casestudy-websites__img {
    margin-bottom: 60px; }

  .org-casestudy-question__list {
    justify-content: center; }

  .org-casestudy-comprehension__list {
    gap: 28px; }

  .org-casestudy-img-kumamoto {
    margin-left: -13.5px;
    margin-right: -13.5px;
    margin-bottom: 80px; }

  .drill-hero {
    height: calc(100vh - var(--mobile-nav-height));
    min-height: 675px;
    background-image: url("../images/joho1-drill/bg_hero.png");
    background-position: center bottom;
    background-size: cover; }

  .drill-hero__content {
    display: flex;
    align-items: center; }

  .drill-hero__txt {
    padding-bottom: 10%; }

  .text-notes {
    font-size: 14px;
    text-align: center; }

  .-lg-space {
    margin-bottom: 100px; }

  .-lg-space-only-pc {
    margin-bottom: 100px; }

  .-slg-space {
    margin-bottom: 80px; }

  .-md-space {
    margin-bottom: 70px; }

  .-md-space-only-pc {
    margin-bottom: 70px; }

  .-sm-space {
    margin-bottom: 40px; }

  .-xs-space {
    margin-bottom: 30px; }

  .is-only-sp {
    display: none; } }

@media (min-width: 769px) {

  .glightbox-container .ginner-container {
    width: auto;
    height: auto;
    flex-direction: row; }

  .glightbox-container .ginner-container.desc-top .gslide-description {
    order: 0; }

  .glightbox-container .ginner-container.desc-top .gslide-image,
  .glightbox-container .ginner-container.desc-top .gslide-image img {
    order: 1; }

  .glightbox-container .ginner-container.desc-left .gslide-description {
    order: 0; }

  .glightbox-container .ginner-container.desc-left .gslide-image {
    order: 1; }

  .gslide-image img {
    max-height: 97vh;
    max-width: 100%; }

  .gslide-image img.zoomable {
    cursor: zoom-in; }

  .zoomed .gslide-image img.zoomable {
    cursor: grab; }

  .gslide-inline {
    max-height: 95vh; }

  .gslide-external {
    max-height: 100vh; }

  .gslide-description.description-left,
  .gslide-description.description-right {
    max-width: 275px; }

  .glightbox-open {
    height: auto; }

  .goverlay {
    background: rgba(0, 0, 0, 0.92); }

  .glightbox-clean .gslide-media {
    box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65); }

  .glightbox-clean .description-left .gdesc-inner,
  .glightbox-clean .description-right .gdesc-inner {
    position: absolute;
    height: 100%;
    overflow-y: auto; }

  .glightbox-clean .gprev,
  .glightbox-clean .gnext,
  .glightbox-clean .gclose {
    background-color: rgba(0, 0, 0, 0.32); }

  .glightbox-clean .gprev:hover,
  .glightbox-clean .gnext:hover,
  .glightbox-clean .gclose:hover {
    background-color: rgba(0, 0, 0, 0.7); }

  .glightbox-clean .gprev {
    top: 45%; }

  .glightbox-clean .gnext {
    top: 45%; }

  .glightbox-clean .gprev,
  .glightbox-clean .gnext {
    width: 55px;
    height: 55px;
    background-color: #ffda47;
    border-radius: 50%; }

  .glightbox-clean .gprev:hover:not(.disabled),
    .glightbox-clean .gnext:hover:not(.disabled) {
    background-color: #ffda47;
    opacity: 0.8; }

  .glightbox-clean .gprev.disabled:hover,
    .glightbox-clean .gnext.disabled:hover {
    background-color: #ffda47;
    cursor: not-allowed; }

  .glightbox-clean .gprev svg,
    .glightbox-clean .gnext svg {
    fill: #1a1a1a;
    width: 18px; }

  .glightbox-clean .gprev svg path,
      .glightbox-clean .gnext svg path {
    fill: #1a1a1a; }

  .glightbox-clean .gprev {
    padding-right: 5px; }

  .glightbox-clean .gnext {
    padding-left: 5px; } }

@media (min-width: 992px) {

  .glightbox-clean .gclose {
    opacity: 0.7;
    right: 20px; } }

@media screen and (max-height: 420px) {

  .goverlay {
    background: #000; } }

@media only screen and (max-width: 767px) and (max-width: 360px) {

  .button::after {
    display: none; }

  .button.-cta::before {
    width: 20px;
    height: 20px; }

  .button.-cta-fixed.-sp {
    font-size: 11px; }

  .button.-cta-fixed.-sp strong {
    font-size: 15px; }

  .button.-primary-fixed > div {
    font-size: 11px; }

  .button.-primary-fixed strong {
    font-size: 12px; }

  .button.-primary-fixed strong span {
    font-size: 15px; }

  .button.-primary-fixed > .button-label {
    margin-right: 8px;
    padding: 3px; } }

@media only screen and (max-width: 767px) and (max-width: 560px) {

  .button.-cta {
    font-size: 13px; }

  .button.-cta span {
    font-size: 16px; }

  .contents-caption {
    font-size: 18px; } }

@media only screen and (max-width: 767px) and (max-width: 560px) and (max-width: 360px) {

  .button.-cta {
    font-size: 12px; }

  .button.-cta span {
    font-size: 14px; } }

@media only screen and (max-width: 1079px) and (min-width: 768px) {

  .nav-buttons__item:not(:first-child) {
    margin-left: 1.5%; }

  .lesson-points__img,
  .lesson-points__content {
    width: 48%; }

  .works__img {
    width: 40%; }

  .works__contents {
    padding-left: 25px; }

  .about-lit__txt {
    padding-left: 30px; }

  .awards__seal__item {
    width: 31%; }

  .ms-hero__content::after {
    right: -3%;
    width: 70%;
    padding-top: 50%; }

  .hs-hero__content {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 50px; }

  .org-service-list__item {
    width: calc(50% - 8px); }

  .drill-hero__content {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 50px; } }

@media (max-width: 768px) {

  .glightbox-clean .gprev,
  .glightbox-clean .gnext {
    transform: translateY(-50%);
    border-radius: 0; }

  .glightbox-clean .gprev {
    top: 50%;
    left: 8px; }

  .glightbox-clean .gnext {
    top: 50%;
    right: 8px; }

  .glightbox-clean .gprev,
  .glightbox-clean .gnext {
    width: 38px;
    height: 38px;
    background-color: #ffda47;
    border-radius: 50%; }

  .glightbox-clean .gprev svg,
    .glightbox-clean .gnext svg {
    fill: #1a1a1a;
    width: 10px; }

  .glightbox-clean .gprev svg path,
      .glightbox-clean .gnext svg path {
    fill: #1a1a1a; } }

@media only screen and (min-width: 561px) and (min-width: 1080px) {

  .article-grid {
    grid-template-columns: repeat(3, 1fr); } }

@media only screen and (min-width: 768px) and (min-width: 1080px) {

  .hero {
    height: calc(100vh - var(--global-nav-height));
    margin-top: calc(var(--local-nav-height) * -1); }

  .ms-hero {
    height: calc(100vh - var(--global-nav-height));
    margin-top: calc(var(--local-nav-height) * -1); }

  .hs-hero {
    height: calc(100vh - var(--global-nav-height));
    margin-top: calc(var(--local-nav-height) * -1); }

  .org-hero {
    height: calc(100vh - var(--global-nav-height));
    margin-top: calc(var(--local-nav-height) * -1);
    padding-top: var(--local-nav-height); }

  .org-casestudy-index {
    grid-template-columns: repeat(5, 1fr);
    gap: 24px; }

  .drill-hero {
    height: calc(100vh - var(--global-nav-height));
    margin-top: calc(var(--local-nav-height) * -1); } }

@media only screen and (min-width: 561px) and (min-width: 768px) {

  .org-casestudy-charts {
    column-gap: 40px; } }
