@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 425px) {
  .is-sp {
    display: none !important;
  }
}
@media screen and (max-width: 424.5px) and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
  color: #333333;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 52px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #333333;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img {
  vertical-align: middle;
  max-width: 100%;
  width: 100%;
  height: auto;
  line-height: 1;
}

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

body,
h1,
h2,
h3,
h4,
p,
ul,
ol {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/*========================
common
========================*/
.pc-bg {
  background: #E9F0F5;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  padding: 0 40px;
}
.pc-bg .dummy {
  width: 425px;
}
.pc-bg .img1,
.pc-bg .img2 {
  max-width: 668px;
  width: calc((100% - 40px - 40px - 425px) / 2);
}

.main-area {
  background: white;
  width: 100%;
  max-width: 425px;
  margin: 0 auto;
  position: relative;
}

.inner {
  max-width: 425px;
  padding: 0 16px;
  margin: 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.center {
  text-align: center;
}

.small {
  font-size: 14px;
  font-weight: 400;
}

.cta {
  padding: 32px 0;
  text-align: center;
}
.cta h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 14px;
}
.cta h2 span {
  color: #1B91E0;
}

.cta-jh {
  background: #E6F7FC;
  padding-top: 0;
}

.cta-h {
  background: #F4FCE7;
  padding-top: 0;
}

.btn-text {
  padding-left: 20px;
  padding-bottom: 6px;
}

.btn {
  border-radius: 100px;
  background: #FFE11A;
  -webkit-box-shadow: 0px 5.5px 0px 0px #E2AA00;
          box-shadow: 0px 5.5px 0px 0px #E2AA00;
  display: inline-block;
  width: 100%;
  padding: 5px 0 9px;
  padding-right: 10px;
  padding-left: 32px;
  font-size: 23px;
  font-weight: bold;
  position: relative;
  margin: 6px 0 10px;
  line-height: 1.2;
}
.btn:hover {
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
  -webkit-box-shadow: 0px 0px 0px 0px #E2AA00;
          box-shadow: 0px 0px 0px 0px #E2AA00;
}
.btn::before {
  content: "";
  background: url(../img/arrow-right.png) no-repeat center center/contain;
  position: absolute;
  width: 10px;
  height: 17px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 24px;
}
.btn::after {
  content: "";
  background: url(../img/free.png) no-repeat center center/contain;
  position: absolute;
  width: 90px;
  height: 90px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -4px;
}

.sec-title {
  text-align: center;
  color: white;
  font-size: 24px;
  font-weight: 700;
  background: #1B91E0;
  padding: 12px;
}
.sec-title span {
  display: inline-block;
  position: relative;
  padding-left: 45px;
}
.sec-title span::before {
  content: "";
  background: url(../img/question.png) no-repeat center center/contain;
  position: absolute;
  width: 39px;
  height: 37px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*========================
header
========================*/
.header-area {
  width: 100%;
  max-width: 425px;
  margin: 0 auto;
  position: fixed;
  z-index: 999;
}

.header {
  padding: 10px 16px;
  background: white;
  position: relative;
  z-index: 999;
}
.header .logo {
  max-width: 160px;
}

.overlay {
  background: rgba(0, 0, 0, 0.37);
  position: absolute;
  z-index: 800;
  width: 100%;
  height: 100vh;
  display: none;
}

.hamburger-menu {
  position: absolute;
  top: 5px;
  right: 16px;
  width: 40px;
  height: 40px;
  background-color: #1B91E0;
  border: 1px solid #1B91E0;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  z-index: 1000;
}

.hamburger-menu span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: white;
  margin: 2.5px 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 10px;
}

.drawer {
  position: absolute;
  top: 52px;
  right: 0;
  width: 290px;
  background: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 980;
  visibility: hidden;
  opacity: 0;
  border-top: 1px solid #D9D9D9;
  padding: 24px 16px;
}
.drawer li {
  padding: 10px 0;
}
.drawer a {
  font-size: 18px;
  padding-left: 13px;
  font-weight: bold;
  border-left: 5px solid #1B91E0;
}
.drawer a:hover {
  color: #1B91E0;
}

.hamburger-menu.active {
  background: white;
}
.hamburger-menu.active span {
  background: #1B91E0;
}

.hamburger-menu.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
          transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(5px, -5px);
          transform: rotate(-45deg) translate(5px, -5px);
}

.drawer.open {
  visibility: visible;
  opacity: 1;
}

/*========================
mv
========================*/
.mv {
  padding-top: 50px;
}

/*========================
top
========================*/
.top-text {
  text-align: center;
  padding: 24px 0;
}
.top-text .strong {
  font-weight: 700;
  font-size: 21px;
  margin-bottom: 4px;
}
.top-text .strong span:first-child {
  color: #78BE00;
}
.top-text .strong span:last-child {
  color: #1B91E0;
}

.top__anker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 19px;
  margin-top: 27px;
}
.top__anker a {
  display: inline-block;
  color: white;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 10px;
  font-weight: 500;
  line-height: 1.3;
  padding: 10px;
  padding-right: 50px;
  position: relative;
}
.top__anker a:hover {
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
}
.top__anker a::before {
  content: "";
  background: url(../img/arrow.png) no-repeat center center/contain;
  position: absolute;
  width: 35px;
  height: 35px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 16px;
}
.top__anker a span {
  font-size: 24px;
  font-weight: bold;
}
.top__anker a:nth-child(1) {
  background: #1B91E0;
  -webkit-box-shadow: 0px 6px 0px 0px #0B75BB;
          box-shadow: 0px 6px 0px 0px #0B75BB;
}
.top__anker a:nth-child(1):hover {
  -webkit-box-shadow: 0px 0px 0px 0px #0B75BB;
          box-shadow: 0px 0px 0px 0px #0B75BB;
}
.top__anker a:nth-child(2) {
  background: #78BE00;
  -webkit-box-shadow: 0px 6px 0px 0px #5E9500;
          box-shadow: 0px 6px 0px 0px #5E9500;
}
.top__anker a:nth-child(2):hover {
  -webkit-box-shadow: 0px 0px 0px 0px #5E9500;
          box-shadow: 0px 0px 0px 0px #5E9500;
}

/*========================
location
========================*/
.location__items {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}
.location__items .item {
  min-height: 84px;
  background: #F4FCE7;
  text-align: center;
  width: calc(50% - 8px);
  border-radius: 8px;
  padding: 7px 0 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.location__items .item p {
  font-size: 14px;
}
.location__items .item h3 {
  color: #78BE00;
  font-size: 20px;
}

.location__img {
  margin-top: -19px;
}

/*========================
school
========================*/
.school {
  background: #FFFCDA;
  padding-bottom: 37px;
}

.school__img {
  max-width: 289px;
  margin: 32px auto 22px;
}

/*========================
terms
========================*/
.terms {
  background: #FFFCDA;
  padding-bottom: 24px;
}
.terms .inner {
  padding: 0;
}
.terms p {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}
.terms p span {
  color: #78BE00;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.terms__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 32px 0 20px;
  gap: 16px;
  padding-left: 16px;
}
.terms__flex .img {
  max-width: 143px;
}
.terms__flex .img img {
  border-radius: 12px 0 0 12px;
}

.terms__list {
  background: white;
  padding: 13px 18px 18px 14px;
  border-radius: 8px;
}
.terms__list li {
  font-size: 14px;
  font-weight: 500;
  line-height: 137.886%;
  /* 19.304px */
  padding-left: 14px;
  position: relative;
}
.terms__list li:not(:first-child) {
  margin-top: 8px;
}
.terms__list li::before {
  content: "";
  background: #EFD355;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  position: absolute;
  top: 7px;
  left: 0;
}
.terms__list li span {
  display: inline-block;
}

/*========================
about
========================*/
.about {
  background: #FFFCDA;
}

#about-jh {
  background: #E6F7FC;
}
#about-jh .about__balloon {
  border: 1px solid #78BE00;
  color: #78BE00;
}
#about-jh .about__balloon::before {
  background: url(../img/balloon-jh.png) no-repeat center center/contain;
}
#about-jh .about__point .item::before {
  background: url(../img/check-jh.png) no-repeat center center/contain;
}
#about-jh .about__items h3 {
  background: #1B91E0;
}

#about-h {
  background: #F4FCE7;
}
#about-h .sec-title {
  background: #78BE00;
}
#about-h .about__balloon {
  border: 1px solid #1B91E0;
  color: #1B91E0;
}
#about-h .about__balloon::before {
  background: url(../img/balloon-h.png) no-repeat center center/contain;
}
#about-h .about__point .item::before {
  background: url(../img/check-h.png) no-repeat center center/contain;
}
#about-h .about__items h3 {
  background: #78BE00;
}
#about-h .about__items li::before {
  background: #78BE00;
}

.about__balloon {
  margin: 0 auto;
  font-size: 24px;
  font-weight: 700;
  background: white;
  margin-top: 32px;
  max-width: 290px;
  text-align: center;
  padding: 25px 0px;
  border-radius: 7px;
  position: relative;
}
.about__balloon::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 47px;
  top: -16px;
  left: -27px;
}

.about__point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 17px 15px;
  margin-top: 32px;
}
.about__point .item {
  width: calc(50% - 7.5px);
  background: white;
  text-align: center;
  border-radius: 7px;
  padding: 20px 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  position: relative;
}
.about__point .item::before {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  top: -11px;
  left: -8px;
}

.about__items {
  padding: 32px 0;
}
.about__items .item {
  background: white;
  position: relative;
  padding: 20px 24px 16px;
}
.about__items .item:not(:first-child) {
  margin-top: 24px;
}
.about__items .item h3 {
  background: #78BE00;
  color: white;
  text-align: center;
  width: 80px;
  border-radius: 4px;
  position: absolute;
  left: 12px;
  top: -14px;
  padding: 1px 0 2px;
}
.about__items .item ul li {
  padding-left: 15px;
  position: relative;
}
.about__items .item ul li::before {
  content: "";
  background: #1B91E0;
  position: absolute;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  left: 0;
  top: 9px;
}

/*========================
footer
========================*/
.footer {
  text-align: center;
  background: #1B91E0;
  color: white;
  font-size: 13px;
  font-weight: 400;
  padding: 9px 0 10px;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-bottom: 100px;
  }
}

.fixed {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 500;
  background: white;
  text-align: center;
  padding: 6px 0 8px;
}
.fixed .btn {
  padding: 8px 0 9px;
  padding-right: 11px;
  padding-left: 40px;
  margin: 6px 0;
  font-size: 20px;
}
.fixed .btn::before {
  right: 16px;
}
.fixed .btn::after {
  width: 60px;
  height: 60px;
}
.fixed .btn-text {
  padding-bottom: 0;
}