@charset "UTF-8";
/*!
global > font
------------------------------
*/
:root {
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-family-input: Arial, sans-serif;
}

/*!
global > z-index
------------------------------
*/
:root {
  --z-index-hamburger: 40;
  --z-index-header: 30;
  --z-index-default: 1;
  --z-index-negative: -1;
}

/*!
foundation > reset
------------------------------
*/
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 100%;
  border-radius: 0;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

input,
textarea,
select {
  font-size: 16px;
}

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: #000;
}

tbody {
  -webkit-text-size-adjust: 100%;
}

main {
  display: block;
}

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

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

svg {
  display: block;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

/*!
foundation > base
------------------------------
*/
html {
  font-size: calc(100vw / 375);
  scroll-behavior: smooth;
}

@media (min-width: 768px) {
  html {
    font-size: calc(100vw / 1440);
  }
}

body {
  line-height: calc(27.2 / 16);
  font-size: 16rem;
  color: #6B7280;
  font-family: var(--font-family-base);
}

/*!
utility > utility
------------------------------
*/
.u-visually-hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

.u-d-block {
  display: block !important;
}

.u-text-primary {
  color: #22C55E !important;
}

.u-fw-bold {
  font-weight: 700;
}

/*!
component > hamburger
------------------------------
*/
.c-hamburger {
  display: grid;
  place-content: center;
  width: 41rem;
  height: 43rem;
  cursor: pointer;
  position: absolute;
  top: 16rem;
  right: 15rem;
  z-index: var(--z-index-hamburger);
}

.c-hamburger__line {
  position: relative;
  width: 25rem;
  height: 3rem;
  background-color: #374151;
}

.c-hamburger__line::before,
.c-hamburger__line::after {
  position: absolute;
  content: "";
  display: block;
  width: 25rem;
  height: 3rem;
  background-color: #374151;
  transition: transform 0.3s;
}

.c-hamburger__line::before {
  top: -9rem;
}

.c-hamburger__line::after {
  bottom: -9rem;
}

.c-hamburger[aria-expanded=true] .c-hamburger__line {
  background: transparent;
}

.c-hamburger[aria-expanded=true] .c-hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
}

.c-hamburger[aria-expanded=true] .c-hamburger__line::after {
  bottom: 0;
  transform: rotate(-45deg);
}

@media (min-width: 768px) {
  .c-hamburger {
    display: none;
  }
}

/*!
component > gnav
------------------------------
*/
.c-gnav {
  padding: 15rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: var(--z-index-header);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(220, 252, 231, 0.95);
  overflow-y: scroll;
  scrollbar-width: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .c-gnav {
    padding: 0;
    display: block;
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    overflow-y: visible;
    opacity: 1;
    visibility: visible;
  }
}

.c-gnav::-webkit-scrollbar {
  display:none;
}

@media (min-width: 768px) {
  .c-gnav__list {
    display: flex;
    align-items: center;
    gap: 28rem;
  }
}

.c-gnav__link {
  padding: 15rem 0;
  display: block;
  font-size: 20rem;
  color: #374151;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .c-gnav__link {
    padding: 0;
    font-size: 16rem;
  }
}

@media (any-hover: hover) {
  .c-gnav__link:hover {
    color: #22C55E;
  }
}

/*!
component > button
------------------------------
*/
.c-button {
  display: block;
  font-size: 14rem;
  line-height: calc(22.4 / 14);
  font-weight: 600;
  color: #fff;
  background-color: #22C55E;
  text-align: center;
  padding: 11.5rem 24rem 11.89rem;
  border-radius: 8rem;
  transition: all 0.3s;
  cursor: pointer;
}

@media (any-hover: hover) {
  .c-button:hover {
    background-color: #16A34A;
  }
}

@media (min-width: 768px) {
  .c-button {
    display: inline-block;
    font-size: 16rem;
    line-height: calc(25.6 / 16);
    padding: 11rem 32rem 12.59rem;
  }
}

.c-button--ghost {
  background-color: transparent;
  color: #22C55E;
  border: 2rem solid #22C55E;
}

@media (any-hover: hover) {
  .c-button--ghost:hover {
    background-color: #fff;
  }
}

.c-button--lg {
  font-size: 14rem;
  line-height: calc(22.4 / 14);
  padding: 13.5rem 26rem 13.89rem;
  display: block;
}

.c-button--submit {
  font-size: 16rem;
  font-weight: 700;
  padding: 10rem 32rem 10.59rem;
}

/*!
component > level2-title
------------------------------
*/
.c-level2-title {
  font-size: 28rem;
  line-height: calc(44.8 / 28);
  font-weight: 700;
  color: #1F2937;
  text-align: center;
}

@media (min-width: 768px) {
  .c-level2-title {
    font-size: 40rem;
    line-height: calc(64 / 40);
  }
}

.c-level2-title--icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22.59rem;
}

.c-level2-title--icon::before {
  content: "";
  width: 64rem;
  height: 64rem;
  background-image: url('../img/icon_calendar.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/*!
component > lead
------------------------------
*/
.c-lead {
  font-size: 18rem;
  line-height: calc(28.8 / 18);
  text-align: center;
}

@media (min-width: 768px) {
  .c-lead {
    font-size: 20rem;
    line-height: calc(32 / 20);
  }
}

/*!
component > form
------------------------------
*/
.c-form-required {
  color: #EF4444;
}

.c-form-text {
  width: 100%;
  padding: 9rem 12rem 7rem;
  border: 1rem solid #D1D5DB;
  border-radius: 8rem;
  background-color: #fff;
  font-family: var(--font-family-input);
  color: #374151;
  font-size: 16rem;
}

.c-form-text::placeholder {
  font-family: var(--font-family-input);
}

.c-form-text:focus {
  outline: 1rem solid #22C55E;
}

.c-form-text--select {
  background-color: #EFEFEF;
  color: #000000;
  font-size: 16rem;
  padding: 8rem 16rem 6rem;
  cursor: pointer;
}

.c-form-text--textarea {
  min-height: 108rem;
}

/*!
layout > container
------------------------------
*/
.l-container {
  padding-inline: 15rem;
}

@media (min-width: 768px) {
  .l-container {
    padding-inline: 140rem;
  }
}

/*!
layout > header
------------------------------
*/
.l-header {
  background-color: #fff;
  box-shadow: 0 2rem 10rem rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-index-header);
}

.l-header__inner {
  height: 75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .l-header__inner {
    height: 70rem;
  }
}

.l-header__logo {
  display: flex;
  align-items: center;
  gap: 8rem;
}

.l-header__logo::before {
  content: "";
  width: 32rem;
  height: 32rem;
  background-image: url('../img/logo.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.l-header__logo-text {
  font-size: 24rem;
  font-weight: 700;
  line-height: calc(38.4 / 24);
  color: #1F2937;
}

/*!
layout > footer
------------------------------
*/
.l-footer {
  background-color: #1F2937;
  color: #D1D5DB;
  padding: 47rem 0 16rem;
}

.l-footer__inner {
  display: grid;
  gap: 32rem;
}

@media (min-width: 768px) {
  .l-footer__inner {
    grid-template-columns: 1fr 274rem 274rem;
  }
}

.l-footer__logo {
  display: flex;
  align-items: center;
  gap: 8rem;
  font-size: 24rem;
  font-weight: 700;
  line-height: calc(38.4 / 24);
  color: #FFFFFF;
}

.l-footer__logo::before {
  content: "";
  width: 32rem;
  height: 32rem;
  background-image: url('../img/logo.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.l-footer__info-text {
  margin-top: 15.2rem;
}

.l-footer__info-tel-wrap {
  margin-top: 24rem;
  display: grid;
  grid-template-columns: 40rem auto;
  align-items: center;
  gap: 5.5rem 12rem;
}

.l-footer__info-tel-wrap::before {
  content: "";
  width: 40rem;
  height: 40rem;
  background-image: url('../img/icon_telephone02.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #22C55E;
  border-radius: 50%;
  grid-row: 1 / 3;
}

.l-footer__info-tel {
  color: #FFFFFF;
  font-weight: 600;
}

.l-footer__info-biztime {
  color: #9CA3AF;
  font-size: 14rem;
  line-height: calc(22.4 / 14);
}

.l-footer__nav-title {
  font-size: 18rem;
  font-weight: 600;
  line-height: calc(28.8 / 18);
  color: #fff;
}

.l-footer__nav-list {
  margin-top: 15rem;
  display: flex;
  flex-direction: column;
  gap: 7rem;
}

.l-footer__nav-link {
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .l-footer__nav-link:hover {
    color: #22C55E;
  }
}

.l-footer__classroom-info-title {
  font-size: 18rem;
  font-weight: 600;
  line-height: calc(28.8 / 18);
  color: #fff;
}

.l-footer__classroom-info-address {
  margin-top: 15rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.l-footer__classroom-info-mail {
  margin-top: 15rem;
  display: inline-block;
  color: #22C55E;
}

@media (min-width: 768px) {
  .l-footer__classroom-info-mail {
    margin-top: 18rem;
  }
}

.l-footer__copyright {
  margin-top: 38rem;
  display: block;
  font-size: 16rem;
  text-align: center;
  color: #9CA3AF;
  border-top: 1rem solid #374151;
  padding-top: 16rem;
}

@media (min-width: 768px) {
  .l-footer__copyright {
    padding-top: 10rem;
  }
}

/*!
page > top > top-kv
------------------------------
*/
.top-kv {
  background-image: linear-gradient(135deg, #F0FDF4, #DCFCE7);
  padding: 100rem 0 60rem;
}

@media (min-width: 768px) {
  .top-kv {
    padding: 192rem 0 152rem;
  }
}

.top-kv__inner {
  display: grid;
  gap: 32rem;
}

@media (min-width: 768px) {
  .top-kv__inner {
    grid-template-columns: 1fr 556rem;
    align-items: center;
    gap: 48rem;
  }
}

.top-kv__copy {
  font-size: 32rem;
  font-weight: 700;
  line-height: calc(38.4 / 32);
  color: #333333;
}

@media (min-width: 768px) {
  .top-kv__copy {
    font-size: 56rem;
    line-height: calc(67.2 / 56);
  }
}

.top-kv__text {
  margin-top: 23.2rem;
  line-height: calc(28.8 / 16);
}

@media (min-width: 768px) {
  .top-kv__text {
    margin-top: 24rem;
    font-size: 20rem;
    line-height: calc(36 / 20);
  }
}

.top-kv__news {
  margin-top: 23.2rem;
  padding: 32.8rem 24rem 24rem 24rem;
  background-color: #DCFCE7;
  border-left: 4rem solid #22C55E;
}

@media (min-width: 768px) {
  .top-kv__news {
    margin-top: 24rem;
    padding: 32rem 24rem 24rem 24rem;
  }
}

.top-kv__news-title {
  font-size: 18rem;
  font-weight: 600;
  line-height: calc(28.8 / 18);
  color: #166534;
}

.top-kv__news-text {
  margin-top: 6.8rem;
  color: #15803D;
}

.top-kv__cta {
  margin-top: 30rem;
  display: flex;
  flex-direction: column;
  gap: 16rem;
}

@media (min-width: 768px) {
  .top-kv__cta {
    margin-top: 32rem;
    flex-direction: row;
  }
}

.top-kv__box {
  background-color: #fff;
  padding: 24rem;
  border-radius: 16rem;
  box-shadow:
    0 20rem 25rem -5rem rgba(0, 0, 0, 0.1),
    0 10rem 10rem -5rem rgba(0, 0, 0, 0.04);
}

@media (min-width: 768px) {
  .top-kv__box {
    padding: 32rem;
  }
}

.top-kv__list {
  display: grid;
  gap: 24rem;
  text-align: center;
}

@media (min-width: 768px) {
  .top-kv__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.top-kv__item::before {
  content: '';
  display: block;
  width: 64rem;
  height: 64rem;
  margin: 0 auto 11rem;
  background-color: #F0FDF4;
  border-radius: 50%;
  background-size: 32rem;
  background-repeat: no-repeat;
  background-position: center;
}

.top-kv__item--personal::before {
  background-image: url(../img/icon_note.svg);
}

.top-kv__item--easy::before {
  background-image: url(../img/icon_heart.svg);
}

.top-kv__item--result::before {
  background-image: url(../img/icon_line_chart.svg);
}

.top-kv__item--achievement::before {
  background-image: url(../img/icon_medal.svg);
}

.top-kv__item-title {
  font-weight: 600;
  color: #1F2937;
}

.top-kv__item-text {
  margin-top: 8rem;
  font-size: 14rem;
  line-height: calc(22.4 / 14);
}

/*!
page > top > top-about
------------------------------
*/
.top-about {
  padding-block: 80rem;
}

.top-about__lead {
  margin-top: 15.19rem;
}

.top-about__body {
  margin-top: 64rem;
}

.top-about-list {
  display: grid;
  gap: 32rem;
  text-align: center;
}

@media (min-width: 768px) {
  .top-about-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.top-about-list__item {
  padding: 32rem;
}

.top-about-list__item::before {
  content: '';
  display: block;
  width: 80rem;
  height: 80rem;
  margin: 0 auto 24rem;
  background-color: #F0FDF4;
  border-radius: 50%;
  background-size: 40rem;
  background-repeat: no-repeat;
  background-position: center;
}

.top-about-list__item--graduate::before {
  background-image: url(../img/icon_human.svg);
}

.top-about-list__item--curriculum::before {
  background-image: url(../img/icon_target.svg);
}

.top-about-list__item--all-subject::before {
  background-image: url(../img/icon_note.svg);
}

.top-about-list__item-title {
  font-size: 20rem;
  font-weight: 600;
  line-height: calc(32 / 20);
  color: #1F2937;
}

.top-about-list__item-text {
  margin-top: 15rem;
  font-size: 16rem;
  line-height: calc(27.2 / 16);
}

/*!
page > top > top-feature
------------------------------
*/
.top-feature {
  padding-block: 84rem;
  background-color: #F9FAFB;
}

@media (min-width: 768px) {
  .top-feature {
    padding-block: 80rem;
  }
}

.top-feature__lead {
  margin-top: 16rem;
}

.top-feature__body {
  margin-top: 64rem;
}

.top-feature__list {
  display: grid;
  gap: 64rem;
  counter-reset: number;
}

.top-feature-item {
  display: grid;
  gap: 32rem;
}

@media (min-width: 768px) {
  .top-feature-item {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 48rem;
  }
}

.top-feature-item__title {
  font-size: 24rem;
  font-weight: 700;
  line-height: calc(38.4 / 24);
  color: #1F2937;
  display: flex;
  align-items: center;
  gap: 12rem;
}

.top-feature-item__title::before {
  content: counter(number);
  counter-increment: number;
  width: 40rem;
  height: 40rem;
  background-color: #F0FDF4;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16rem;
  font-weight: 700;
  line-height: calc(25.6 / 16);
  color: #22C55E;
}

.top-feature-item__text {
  margin-top: 23.5rem;
  font-size: 18rem;
  line-height: calc(32.4 / 18);
}

@media (min-width: 768px) {
  .top-feature-item__text {
    margin-top: 24.2rem;
  }

  .top-feature-item__text--relationship {
    margin-top: 23.4rem;
  }
}

.top-feature-item__list {
  margin-top: 23.5rem;
  display: flex;
  flex-direction: column;
  gap: 11.59rem;
}

@media (min-width: 768px) {
  .top-feature-item__list {
    margin-top: 22.57rem;
    gap: 11rem;
  }

  .top-feature-item__list--relationship {
    margin-top: 23.4rem;
  }
}

.top-feature-item__item {
  color: #333333;
  line-height: calc(25.6 / 16);
  display: flex;
  align-items: center;
  gap: 8rem;
}

.top-feature-item__item::before {
  content: '';
  width: 20rem;
  height: 20rem;
  background-image: url('../img/icon_check.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.top-feature-item__box {
  background-color: #fff;
  border-radius: 16rem;
  padding: 32rem;
  display: flex;
  flex-direction: column;
  gap: 26rem;
  text-align: center;
  box-shadow:
    0 10rem 15rem -3rem rgba(0, 0, 0, 0.1),
    0 4rem 6rem -2rem rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .top-feature-item__box {
    width: 400rem;
    justify-self: center;
  }
}

.top-feature-item__box-title {
  font-size: 20rem;
  font-weight: 600;
  line-height: calc(32 / 20);
  color: #333333;
}

.top-feature-item__box-title::before {
  content: '';
  display: block;
  width: 64rem;
  height: 64rem;
  margin: 0 auto 22.6rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.top-feature-item__box-title--learning::before {
  background-image: url(../img/icon_clock.svg);
}

.top-feature-item__box-title--success::before {
  background-image: url(../img/icon_medal.svg);
}

.top-feature-item__box-title--relationship::before {
  background-image: url(../img/icon_heart.svg);
}

.top-feature-item__bar-chart {
  display: flex;
  flex-direction: column;
  gap: 12rem;
}

.top-feature-item__bar-chart-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12rem;
}

.top-feature-item__bar-chart-item-bar {
  height: 8rem;
  background-color: #E5E7EB;
  border-radius: 100vh;
  position: relative;
}

.top-feature-item__bar-chart-item-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 8rem;
  border-radius: 100vh;
}

.top-feature-item__bar-chart-item-bar--thirty-minutes::before {
  width: 41.24rem;
  background-color: #EF4444;
}

@media (min-width: 768px) {
  .top-feature-item__bar-chart-item-bar--thirty-minutes::before {
    width: 55rem;
  }
}

.top-feature-item__bar-chart-item-bar--ninety-minutes::before {
  width: 123.74rem;
  background-color: #22C55E;
}

@media (min-width: 768px) {
  .top-feature-item__bar-chart-item-bar--ninety-minutes::before {
    width: 165rem;
  }
}


.top-feature-item__bar-chart-item-title {
  font-size: 14rem;
  line-height: calc(22.4 / 14);
  color: #333333;
  order: -1;
}

.top-feature-item__bar-chart-item-value {
  font-size: 14rem;
  line-height: calc(22.4 / 14);
  color: #333333;
}

.top-feature-item__success {
  display: flex;
  flex-direction: column;
  gap: 16rem;
}

@media (min-width: 768px) {
  .top-feature-item__success {
    flex-direction: row;
  }
}

.top-feature-item__success-item {
  background-color: #F0FDF4;
  padding: 15rem 16rem 16rem;
}

@media (min-width: 768px) {
  .top-feature-item__success-item {
    width: calc((100% - 16rem) / 2);
  }
}

.top-feature-item__success-item-title {
  font-size: 24rem;
  font-weight: 700;
  line-height: calc(38.4 / 24);
  color: #22C55E;
}

.top-feature-item__success-item-value {
  font-size: 14rem;
  line-height: calc(22.4 / 14);
  color: #6B7280;
}

.top-feature-item__relationship {
  display: flex;
  flex-direction: column;
  gap: 15rem;
}

.top-feature-item__relationship-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-feature-item__relationship-item-title {
  font-size: 16rem;
  line-height: calc(25.6 / 16);
  color: #333333;
}

.top-feature-item__relationship-item-value {
  display: flex;
  gap: 4rem;
}

.top-feature-item__relationship-item-value-star {
  font-size: 16rem;
  line-height: calc(25.6 / 16);
  color: #FCD34D;
}

/*!
page > top > top-information
------------------------------
*/
.top-information {
  padding-block: 80rem;
  background-image: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
}

.top-information__lead {
  margin-top: 15.2rem;
}

@media (min-width: 768px) {
  .top-information__lead {
    margin-top: 16rem;
  }
}

.top-information__body {
  margin-top: 64.2rem;
}

@media (min-width: 768px) {
  .top-information__body {
    margin-top: 64rem;
  }
}

.top-information__box-wrap {
  display: grid;
}

@media (min-width: 768px) {
  .top-information__box-wrap {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    gap: 32rem 48rem;
  }
}

.top-information__box {
  background-color: #fff;
  padding: 23rem 24rem 24rem;
  border-radius: 16rem;
  box-shadow:
    0 10rem 15rem -3rem rgba(0, 0, 0, 0.1),
    0 4rem 6rem -2rem rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .top-information__box {
    padding: 31rem 32rem 32rem;
  }
}

.top-information__box--campaign {
  background-color: #22C55E;
  padding: 31rem 32rem 35rem;
  color: #fff;
}

@media (min-width: 768px) {
  .top-information__box--campaign {
    padding: 31rem 32rem 32rem;
  }
}

.top-information__box-title {
  font-size: 24rem;
  font-weight: 700;
  line-height: calc(38.4 / 24);
  color: #1F2937;
}

.top-information__box-title--campaign {
  color: #fff;
}

.top-information-period__list {
  margin-top: 24rem;
  display: flex;
  flex-direction: column;
  gap: 16rem;
}

.top-information-period__item {
  color: #333333;
  line-height: calc(25.6 / 16);
  text-indent: -1.2em;
  padding-left: 1.2em;
}

.top-information-period__item::before {
  content: '';
  display: inline-block;
  vertical-align: baseline;
  width: 8rem;
  height: 8rem;
  background-color: #22C55E;
  border-radius: 50%;
  margin-right: 12rem;
  translate: 0 -2.2rem;
}

.top-information-period__item-title {
  font-weight: 700;
}

.top-information-feature {
  margin-top: 32rem;
}

@media (min-width: 768px) {
  .top-information-feature {
    margin-top: 0;
    grid-column: 1 / 2;
    grid-row: 2 / 4;
  }
}

.top-information-feature__list {
  margin-top: 24rem;
  display: flex;
  flex-direction: column;
  gap: 24rem;
}

.top-information-feature__item {
  text-align: center;
  display: grid;
  column-gap: 12rem;
}

@media (min-width: 768px) {
  .top-information-feature__item {
    grid-template-columns: 20rem max-content;
  }
}

.top-information-feature__item::before {
  content: '';
  align-self: center;
  width: 20rem;
  height: 20rem;
  background-image: url('../img/icon_check.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.top-information-feature__item-title {
  font-weight: 700;
  line-height: calc(25.6 / 16);
  color: #1F2937;
  grid-column: 2 / 3;
}

.top-information-feature__item-text {
  margin-top: 4rem;
  font-size: 14rem;
  line-height: calc(22.4 / 14);
  grid-column: 2 / 3;
}

.top-information-plan {
  margin-top: 48rem;
}

@media (min-width: 768px) {
  .top-information-plan {
    margin-top: 0;
    grid-column: 2 / 3;
    grid-row: 1 / 3;
  }
}

.top-information-plan__list {
  margin-top: 26rem;
  display: flex;
  flex-direction: column;
  gap: 24rem;
}

.top-information-plan__item {
  border-left: 4rem solid #22C55E;
  padding-left: 16rem;
}

.top-information-plan__item-title {
  font-size: 18rem;
  font-weight: 600;
  line-height: calc(28.8 / 18);
  color: #1F2937;
}

.top-information-plan__item-text {
  margin-top: 9rem;
  line-height: calc(25.6 / 16);
}

.top-information-plan__item-price {
  font-size: 24rem;
  font-weight: 700;
  line-height: calc(38.4 / 24);
  color: #22C55E;
  vertical-align: sub;
}

.top-information-plan__item-note {
  margin-top: 5.5rem;
  font-size: 14rem;
  line-height: calc(22.4 / 14);
  color: #9CA3AF;
}

.top-information-campaign {
  margin-top: 34rem;
}

@media (min-width: 768px) {
  .top-information-campaign {
    margin-top: 0;
    grid-column: 2 / 3;
    grid-row: 3 / 4;
  }
}

.top-information-campaign__list {
  margin-top: 15rem;
  display: flex;
  flex-direction: column;
  gap: 12rem;
}

.top-information-campaign__item {
  line-height: calc(25.6 / 16);
  display: flex;
  gap: 8rem;
}

.top-information-campaign__item::before {
  content: '';
  width: 20rem;
  height: 20rem;
  flex-shrink: 0;
  mask-image: url('../img/icon_check.svg');
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #fff;
  translate: 0 2.5rem;
}

.top-information-campaign__note {
  margin-top: 16rem;
  font-size: 14rem;
  line-height: calc(22.4 / 14);
}

/*!
page > top > top-voice
------------------------------
*/
.top-voice {
  padding-block: 80rem;
}

.top-voice__lead {
  margin-top: 16.39rem;
}

@media (min-width: 768px) {
  .top-voice__lead {
    margin-top: 16rem;
  }
}

.top-voice__body {
  margin-top: 64rem;
}

.top-voice__list {
  display: grid;
  gap: 34rem;
}

@media (min-width: 768px) {
  .top-voice__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 32rem;
  }
}

.top-voice-item {
  padding: 23rem 24rem 24rem;
  border-radius: 16rem;
  background-color: #F9FAFB;
  box-shadow:
    0 4rem 6rem -1rem rgba(0, 0, 0, 0.1),
    0 2rem 4rem -1rem rgba(0, 0, 0, 0.06);
}

@media (min-width: 768px) {
  .top-voice-item {
    padding: 23rem 24rem 25rem;
  }
}

.top-voice-item__name-wrap {
  display: grid;
  grid-template-columns: 48rem 1fr;
  column-gap: 12rem;
}

.top-voice-item__position {
  grid-row: 1 / 3;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  background-color: #F0FDF4;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14rem;
  font-weight: 600;
  line-height: calc(22.4 / 14);
  color: #22C55E;
}

.top-voice-item__name {
  font-weight: 600;
  line-height: calc(25.6 / 16);
  color: #1F2937;
}

.top-voice-item__evaluation {
  margin-top: 3.59rem;
  display: flex;
  gap: 4rem;
}

.top-voice-item__evaluation-star {
  line-height: calc(25.6 / 16);
  color: #FCD34D;
}

.top-voice-item__text {
  margin-top: 15.4rem;
}

@media (min-width: 768px) {
  .top-voice-item__text {
    margin-top: 16.4rem;
  }
}

.top-voice-item__text02 {
  margin-top: 16rem;
  font-size: 14rem;
  font-weight: 500;
  line-height: calc(22.4 / 14);
  color: #22C55E;
}

/*!
page > top > top-contact
------------------------------
*/
.top-contact {
  padding: 79.4rem 0 69rem;
  background-color: #F9FAFB;
}

@media (min-width: 768px) {
  .top-contact {
    padding: 80rem 0 76rem;
  }
}

.top-contact__lead {
  margin-top: 15.41rem;
}

@media (min-width: 768px) {
  .top-contact__lead {
    margin-top: 16rem;
  }
}

.top-contact__body {
  margin-top: 64rem;
}

.top-contact__box-wrap {
  display: grid;
}

@media (min-width: 768px) {
  .top-contact__box-wrap {
    align-items: start;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto 1fr;
    gap: 32rem 48rem;
  }
}

.top-contact__box {
  padding: 26rem 24rem 28rem;
  background-color: #fff;
  border-radius: 16rem;
  box-shadow:
    0 10rem 15rem -3rem rgba(0, 0, 0, 0.1),
    0 4rem 6rem -2rem rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .top-contact__box {
    padding: 31rem 32rem 36rem;
  }
}

.top-contact__box--flow {
  padding: 31rem 32rem;
  background-color: #22C55E;
  color: #fff;
}

@media (min-width: 768px) {
  .top-contact__box--flow {
    padding: 31rem 32rem 32rem;
    grid-column: 1 / 2;
  }
}

@media (min-width: 768px) {
  .top-contact__box--apply {
    grid-row: 1 / 3;
    grid-column: 2 / 3;
  }
}

.top-contact__box-title {
  font-size: 24rem;
  font-weight: 700;
  line-height: calc(38.4 / 24);
  color: #1F2937;
}

.top-contact-classroom__list {
  margin-top: 24rem;
  display: flex;
  flex-direction: column;
  gap: 22rem;
}

@media (min-width: 768px) {
  .top-contact-classroom__list {
    gap: 21rem;
  }
}

.top-contact-classroom__item {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12rem;
}

.top-contact-classroom__item::before {
  content: '';
  width: 20rem;
  height: 20rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  grid-row: 1 / 3;
  translate: 0 4rem;
}

.top-contact-classroom__item--address::before {
  background-image: url('../img/icon_map_marker.svg');
}

.top-contact-classroom__item--tel::before {
  background-image: url('../img/icon_telephone.svg');

}

.top-contact-classroom__item--mail::before {
  background-image: url('../img/icon_mail.svg');
}

.top-contact-classroom__item-title {
  font-weight: 700;
  line-height: calc(25.6 / 16);
  color: #1F2937;
}

.top-contact-classroom__item-text {
  margin-top: 3rem;
  line-height: calc(25.6 / 16);
  color: #1F2937;
}

@media (min-width: 768px) {
  .top-contact-classroom__item-text {
    margin-top: 3.69rem;
  }
}

.top-contact-classroom__item-biztime {
  margin-top: 6rem;
  font-size: 14rem;
  line-height: calc(22.4 / 14);
  color: #9CA3AF;
}

@media (min-width: 768px) {
  .top-contact-classroom__item-biztime {
    margin-top: 3rem;
  }
}

.top-contact-flow {
  margin-top: 32rem;
}

@media (min-width: 768px) {
  .top-contact-flow {
    margin-top: 0;
  }
}

.top-contact__box-title--flow {
  color: #fff;
}

.top-contact-flow__list {
  margin-top: 16rem;
  display: flex;
  flex-direction: column;
  gap: 16rem;
  counter-reset: number;
}

.top-contact-flow__item {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12rem;
}

.top-contact-flow__item::before {
  content: counter(number);
  counter-increment: number;
  width: 24rem;
  height: 24rem;
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  font-size: 14rem;
  font-weight: 700;
  line-height: calc(22.4 / 14);
  color: #22C55E;
  background-color: #fff;
  border-radius: 50%;
}

.top-contact-flow__item-title {
  line-height: calc(25.6 / 16);
  font-weight: 700;
}

.top-contact-flow__item-text {
  margin-top: 4rem;
  font-size: 14rem;
  line-height: calc(22.4 / 14);
}

.top-contact-apply {
  margin-top: 48rem;
}

@media (min-width: 768px) {
  .top-contact-apply {
    margin-top: 0;
  }
}

.top-contact-form {
  margin-top: 24rem;
  display: flex;
  flex-direction: column;
  gap: 23rem;
}

@media (min-width: 768px) {
  .top-contact-form {
    gap: 24rem;
  }
}

.top-contact-form__item {
  display: flex;
  flex-direction: column;
  gap: 8.6rem;
}

.top-contact-form__item--privacy {
  gap: 0;
}

.top-contact-form__label {
  line-height: calc(25.6 / 16);
  font-weight: 500;
  color: #374151;
}

.top-contact-form-privacy {
  padding: 16rem;
  border-radius: 8rem;
  background-color: #F9FAFB;
}

.top-contact-form-privacy__title {
  font-size: 14rem;
  font-weight: 700;
  line-height: calc(22.4 / 14);
}

.top-contact-form-privacy__text {
  font-size: 14rem;
  line-height: calc(22.4 / 14);
}
