@charset "UTF-8";
:root {
  --interval: 10px;
  --column: 2;
}

/*===*/
/*===========================
  @use
===========================*/
/*===========================
  @use
===========================*/
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  font-size: inherit;
  font-style: normal;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html {
  overflow-y: scroll;
}

blockquote,
q {
  quotes: none;
}

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

input,
textarea {
  margin: 0;
  padding: 0;
}

button,
input,
select,
textarea {
  font: inherit;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #555555;
}

textarea {
  resize: vertical;
}

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

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

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

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}

ol,
ul {
  list-style: none;
}

img {
  vertical-align: middle;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

caption,
th {
  text-align: left;
}

a {
  vertical-align: bottom;
  text-decoration: none;
  color: inherit;
}
a:focus {
  text-decoration: none;
  color: inherit;
}
@media (hover) {
  a:hover {
    text-decoration: none;
    color: inherit;
  }
}
.ua-ie a:hover {
  text-decoration: none;
  color: inherit;
}

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

a:focus {
  outline: none;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

/*===========================
  @use
===========================*/
/* General
------------------------------------*/
body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.75;
  width: 100%;
  max-width: 375px;
  margin: 0 auto;
  height: 100%;
  color: #555555;
  background: #fff;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
  overflow-X: hidden;
  /*font-feature-settings: 'palt';*/
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  letter-spacing: 0.05em;
}
*::-moz-selection {
  background: #97cbe2;
}
*::selection {
  background: #97cbe2;
}
*::-moz-selection {
  background: #97cbe2;
}

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

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

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

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

.xlUnder {
  display: none;
}
@media screen and (max-width: 1200px) {
  .xlUnder {
    display: block;
  }
}

.lgUnder {
  display: none;
}
@media screen and (max-width: 1024px) {
  .lgUnder {
    display: block;
  }
}

.mdUnder {
  display: none;
}
@media screen and (max-width: 768px) {
  .mdUnder {
    display: block;
  }
}

.smUnder {
  display: none;
}
@media screen and (max-width: 576px) {
  .smUnder {
    display: block;
  }
}

.indent_word {
  display: inline-block;
  text-indent: inherit;
}
.indent_word::after {
  content: ".";
  display: inline-block;
  width: 0;
  color: transparent;
  pointer-events: none;
}

.groval-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1024px) {
  .gloval-nav {
    position: fixed;
    width: 100vw;
    height: auto;
    padding: 50px;
    background-color: #fff;
    top: -100%;
    left: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .gloval-nav.open {
    top: 0;
    left: 0;
  }
}

.gloval-nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.gloval-nav__item {
  margin-right: 10px;
}

.ham-menu {
  display: none;
}
@media screen and (max-width: 1024px) {
  .ham-menu {
    position: relative;
    z-index: 1;
    width: 35px;
    height: 24px;
    cursor: pointer;
  }
  .ham-menu span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 3px;
    background-color: #000;
  }
  .ham-menu, .ham-menu span {
    display: inline-block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .ham-menu span:nth-of-type(1) {
    top: 0;
  }
  .ham-menu span:nth-of-type(2) {
    top: 10px;
  }
  .ham-menu span:nth-of-type(3) {
    bottom: 1px;
  }
  .ham-menu.open span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(45deg);
    transform: translateY(10px) rotate(45deg);
  }
  .ham-menu.open span:nth-of-type(2) {
    opacity: 0;
  }
  .ham-menu.open span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
  }
}

/*===========================
  @use
===========================*/
/*===============
    utility
===============*/
.container {
  padding-left: 18px;
  padding-right: 18px;
}

.section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.content {
  padding-left: 18px;
  padding-right: 18px;
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.button a {
  text-align: center;
  font-weight: bold;
  border: solid 2px #555555;
  line-height: 60px;
  max-width: 270px;
  border-radius: 60px;
  width: 100%;
  -webkit-box-shadow: 5px 5px 0 #32A99A;
          box-shadow: 5px 5px 0 #32A99A;
}

.highlight {
  border-bottom: solid;
  border-width: 2px;
  border-color: #EFFA64;
}

.small-text {
  font-size: 14px;
}

.header {
  background-color: #6ED0B2;
  padding-top: 20px;
  padding-bottom: 70px;
}
.header-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 50px;
}
.header-logo img {
  width: 140px;
  height: auto;
}
.header .mv {
  width: 100%;
  height: auto;
  margin-bottom: 22px;
}
.header-button a {
  line-height: 50px;
  max-width: 200px;
  border-radius: 50px;
  background-color: #fff;
}

.worries {
  background-color: #EEEEEE;
}
.worries-title {
  width: 278px;
  height: auto;
  margin: 0 auto;
}
.worries-illust01 {
  margin-top: 18px;
  width: 100%;
  height: auto;
}
.worries-illust02 {
  margin-top: -27px;
  width: 100%;
  height: auto;
}
.worries-text {
  text-align: center;
  margin-top: 55px;
  line-height: 1.875;
}
.worries-text p:not(:last-child) {
  margin-bottom: 30px;
}
.worries-text_bold {
  font-weight: bold;
  font-size: 20px;
}

.message {
  background-color: #6ED0B2;
  color: #fff;
  padding-left: 52px;
  padding-right: 52px;
  position: relative;
}
.message-title {
  width: 273px;
  height: auto;
}
.message-text {
  margin-top: 17px;
}
.message-text p {
  line-height: 1.875;
}
.message-text p:not(:last-child) {
  margin-bottom: 22px;
}
.message-button {
  margin-top: 50px;
  color: #6ED0B2;
}
.message-button a {
  background-color: #fff;
}
.message::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 27px 25px 0 25px;
  border-color: #EEEEEE transparent transparent transparent;
}

.brain {
  background-color: #E7F7F2;
}
.brain-title {
  width: 293px;
  height: auto;
  margin: 0 auto 30px;
}
.brain-text p:not(:last-child) {
  margin-bottom: 15px;
}

.point {
  background-color: #EEEEEE;
}
.point-title {
  width: 205px;
  height: auto;
  margin: 0 auto 50px;
}
.point-content {
  background-color: #fff;
  border: solid 2px #555555;
  border-radius: 5px;
  padding: 66px 16px 23px;
}
.point-content:not(:last-child) {
  margin-bottom: 15px;
}
.point-content_title {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.444;
  margin-bottom: 13px;
  position: relative;
}
.point-content_title::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 36px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  top: -10px;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
}
.point-content .point01::before {
  background-image: url(../img/point01.webp);
}
.point-content .point02::before {
  background-image: url(../img/point02.webp);
}
.point-content .point03::before {
  background-image: url(../img/point03.webp);
}
.point-content .point04::before {
  background-image: url(../img/point04.webp);
}
.point-button {
  margin-top: 50px;
}
.point-button a {
  background-color: #6ED0B2;
  color: #fff;
  -webkit-box-shadow: 5px 5px 0 #969696;
          box-shadow: 5px 5px 0 #969696;
}

.QA {
  background-color: #6ED0B2;
}
.QA-title {
  width: 234px;
  height: auto;
  margin: 0 auto 40px;
}
.QA-img:not(:last-child) {
  margin-bottom: 40px;
}

.es {
  background-color: #EEEEEE;
}
.es-title {
  width: 273px;
  height: auto;
  margin: 0 auto 40px;
}
.es-content {
  background-color: #fff;
  padding-bottom: 28px;
  padding-left: 18px;
  padding-right: 18px;
}
.es-content-title {
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  padding-bottom: 6px;
  margin-bottom: 18px;
  position: relative;
}
.es-content-title::after {
  content: "";
  width: 156px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.es-content .es-point {
  margin-top: 25px;
}
.es-content .es-point-title {
  font-size: 18px;
  text-align: center;
  padding-bottom: 12px;
  border-bottom: solid 1px #555555;
}
.es-content .es-point-list {
  margin-top: 13px;
}
.es-content .es-point-list li {
  padding-left: 1em;
  text-indent: -1em;
}
.es-content .es-point-list li:not(:last-child) {
  margin-bottom: 13px;
}
.es-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 25px;
}
.es-button button {
  font-weight: bold;
  text-align: center;
  line-height: 32px;
  max-width: 162px;
  width: 100%;
  border-radius: 32px;
  border: solid 2px;
  position: relative;
}
.es-button button::after {
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 8px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.es-before {
  padding-top: 20px;
  border-top: solid 2px #969696;
  border-left: solid 2px #969696;
  border-right: solid 2px #969696;
}
.es-before-title {
  color: #969696;
}
.es-before-title::after {
  background-color: #969696;
}
.es-before-text {
  height: 164px;
}
.es-before-button button {
  border-color: #969696;
  color: #969696;
}
.es-before-button button::after {
  background-image: url(../img/icon-arrow_grey.webp);
}
.es-after {
  padding-top: 33px;
  border: solid 2px #555555;
  position: relative;
}
.es-after::before {
  content: "";
  display: inline-block;
  width: 46px;
  height: 16px;
  background-image: url(../img/es-triangle.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.es-after-title {
  color: #6ED0B2;
}
.es-after-title::after {
  background-color: #6ED0B2;
}
.es-after-text {
  height: 165px;
}
.es-after-button button {
  border-color: #6ED0B2;
  color: #6ED0B2;
}
.es-after-button button::after {
  background-image: url(../img/icon-arrow_green.webp);
}
.es-content-text {
  overflow: hidden;
  position: relative;
}
.es-content-text::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 50px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255, 255, 255, 0)), color-stop(110%, rgb(255, 255, 255)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, rgb(255, 255, 255) 110%);
  position: absolute;
  bottom: 0;
  left: 0;
}
.es-content-text.open {
  height: auto;
}
.es-content-text.open::after {
  display: none;
}
.es-button.open button::after {
  -webkit-transform: translateY(-50%) scale(1, -1);
          transform: translateY(-50%) scale(1, -1);
}

.info {
  background-color: #E7F7F2;
}
.info-title {
  width: 278px;
  height: auto;
  margin: 0 auto 35px;
}
.info-text {
  line-height: 1.875;
  margin-bottom: 35px;
}
.info-content {
  background-color: #fff;
  border-radius: 5px;
  border: solid 2px #555555;
  padding: 18px 16px 48px;
  position: relative;
}
.info-content::after {
  content: "";
  display: inline-block;
  width: 56px;
  height: 28px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}
.info-content-title {
  text-align: center;
  font-size: 20px;
  padding-bottom: 18px;
  border-bottom: solid 1px #555555;
}
.info-content-text {
  line-height: 1.5;
  margin-top: 25px;
}
.info-main {
  margin-bottom: 50px;
}
.info-main::after {
  background-image: url(../img/tail.webp);
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  left: 18px;
  bottom: -56px;
}
.info-main-title {
  color: #6ED0B2;
  font-weight: bold;
}
.info-main-text dt {
  font-weight: bold;
  margin-bottom: 8px;
}
.info-main-text dd {
  margin-bottom: 23px;
}
.info-main-text dd .main-address {
  margin-top: 5px;
}
.info-main-text dd .map-button {
  display: inline-block;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 32px;
  width: 184px;
  border: solid 1px #555555;
  border-radius: 32px;
  margin-top: 5px;
}
.info-main-text dd .main-list {
  font-weight: bold;
  margin-bottom: 5px;
}
.info-main-text dd .main-list li {
  padding-left: 1em;
  text-indent: -1em;
}
.info-main-text dd .main-list li:not(:last-child) {
  margin-bottom: 5px;
}
.info-button {
  margin-top: 50px;
}
.info-button a {
  background-color: #6ED0B2;
  color: #fff;
  -webkit-box-shadow: 5px 5px 0 #B4B4B4;
          box-shadow: 5px 5px 0 #B4B4B4;
}
.info-sub {
  padding-bottom: 20px;
  margin-bottom: 28px;
}
.info-sub::after {
  background-image: url(../img/tail.webp);
  -webkit-transform: scale(-1, 1) translateY(-100%);
          transform: scale(-1, 1) translateY(-100%);
  right: 18px;
  bottom: -56px;
}
.info-sub-title {
  font-weight: normal;
}
.info-sub-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.info-sub-text:not(:last-child) {
  margin-bottom: 13px;
}
.info-sub-text dt {
  width: 63px;
}
.info-sub-text dd {
  width: calc(100% - 63px);
}
.info-sub-small {
  margin-top: 20px;
}

.teacher {
  background-color: #6ED0B2;
}
.teacher-title {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 30px;
}
.teacher-content {
  background-color: #fff;
  padding: 20px 16px 35px;
  border: solid 2px #555555;
  border-radius: 5px;
  position: relative;
}
.teacher-content-head {
  font-size: 14px;
  line-height: 1.357;
  margin-bottom: 10px;
}
.teacher-content-name {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: solid 1px #555555;
}
.teacher-content-name .read {
  font-size: 12px;
  margin-left: 10px;
}
.teacher-content-img {
  width: 140px;
  height: auto;
  position: absolute;
  right: 9px;
  top: -14px;
}
.teacher-content-text {
  margin-top: 12px;
}

.form {
  background-color: #EEEEEE;
}
.form-title {
  text-align: center;
  font-size: 22px;
  line-height: 1.364;
  margin-bottom: 30px;
}
.form-text {
  margin-bottom: 30px;
  line-height: 1.5;
}
.form-text-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.form-text-list:not(:last-child) {
  margin-bottom: 15px;
}
.form-text-list dt {
  width: 50px;
  font-weight: bold;
}
.form-text-list dd {
  width: calc(100% - 50px);
}
.form-small {
  color: #969696;
  margin-bottom: 15px;
}
.form-item:not(:last-child) {
  margin-bottom: 25px;
}
.form-item-label {
  display: inline-block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: bold;
}
.form-item-input {
  width: 100%;
  line-height: 45px;
  height: 45px;
  padding: 0 18px;
  background-color: #fff;
  border-radius: 3px;
}
.form-item-input::-webkit-input-placeholder {
  color: #C8C8C8;
}
.form-item-input::-moz-placeholder {
  color: #C8C8C8;
}
.form-item-input:-ms-input-placeholder {
  color: #C8C8C8;
}
.form-item-input::-ms-input-placeholder {
  color: #C8C8C8;
}
.form-item-input::placeholder {
  color: #C8C8C8;
}
.form-item-texta {
  width: 100%;
  height: 110px;
  background-color: #fff;
  border-radius: 3px;
  padding: 10px 18px;
}
.form-item .required::after {
  content: "必須";
  width: 34px;
  line-height: 17px;
  margin-left: 7px;
  display: inline-block;
  font-size: 13px;
  font-weight: normal;
  text-align: center;
  letter-spacing: 0;
  color: #fff;
  background-color: #6ED0B2;
}
.form-item .not-required::after {
  content: "任意";
  width: 34px;
  line-height: 17px;
  margin-left: 7px;
  display: inline-block;
  font-size: 13px;
  font-weight: normal;
  text-align: center;
  letter-spacing: 0;
  color: #fff;
  background-color: #B4B4B4;
}
.form-item .radio:not(:last-child) {
  margin-bottom: 10px;
}
.form-item .radio-label {
  position: relative;
  line-height: 1;
  display: inline-block;
}
.form-item .radio-label-text::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 15px;
  border: solid 1px #555555;
  background-color: #fff;
  vertical-align: -2px;
  margin-right: 5px;
}
.form-item .radio-label-text::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 10px;
  background-color: #6ED0B2;
  position: absolute;
  top: 4px;
  left: 4px;
  opacity: 0;
}
.form-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 40px 0 30px;
  position: relative;
}
.form-submit::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 10px;
  background-image: url(../img/icon-mail.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: calc(50% - 60px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.form-submit input {
  text-align: center;
  font-weight: bold;
  color: #fff;
  border: solid 2px #555555;
  line-height: 60px;
  max-width: 270px;
  border-radius: 60px;
  width: 100%;
  background-color: #6ED0B2;
  -webkit-box-shadow: 5px 5px 0 #969696;
          box-shadow: 5px 5px 0 #969696;
}
.form input[type=radio]:checked + .radio-label-text::after {
  opacity: 1;
}

.footer {
  padding-left: 18px;
  padding-right: 18px;
  line-height: 1.563;
  border-bottom: solid 1px #555555;
}
.footer-logo {
  width: 100%;
  margin-bottom: 25px;
}
.footer-address {
  margin-bottom: 25px;
}
.footer-info {
  margin-bottom: 15px;
}
.footer .link-button {
  display: inline-block;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 32px;
  width: 197px;
  border: solid 1px #555555;
  border-radius: 32px;
}
.footer .link-button-icon::after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-left: 7px;
  background-image: url(../img/icon-link.webp);
  background-repeat: no-repeat;
  background-size: contain;
}
.footer-contact {
  text-align: center;
  margin-top: 55px;
}
.footer-contact-button {
  margin-top: 20px;
}
.footer-contact-button a {
  -webkit-box-shadow: 5px 5px 0 #B4B4B4;
          box-shadow: 5px 5px 0 #B4B4B4;
}
.footer-contact-tel {
  margin-top: 40px;
}

.copyright {
  display: inline-block;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 13px;
}

.thanks {
  padding: 30px 18px 40px;
  border: solid 2px #555555;
  background-color: #fff;
  border-radius: 5px;
  text-align: center;
}
.thanks-title {
  font-size: 18px;
  line-height: 1.5;
  font-weight: bold;
  color: #6ED0B2;
  padding-bottom: 24px;
  margin-bottom: 25px;
  border-bottom: solid 1px #555555;
}
.thanks-button {
  margin-top: 35px;
}
.thanks-button a {
  line-height: 50px;
  max-width: 200px;
  -webkit-box-shadow: 5px 5px 0 #969696;
          box-shadow: 5px 5px 0 #969696;
}

/*===*/