@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}
@media screen 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;
}

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

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: normal;
  font-weight: 500;
  color: #231815;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

p {
  line-height: 1.5;
}

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: #DAEDD9;
  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: 56px;
}
@media screen and (max-width: 375px) {
  .pc-bg {
    display: none;
  }
}

.main-area {
  background: white;
  width: 100%;
  max-width: 375px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .main-area {
    border: none;
    max-width: none;
  }
}

.inner {
  padding: 0 16px;
  margin: 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.point + .sectionBgGroup > *:first-child .inner {
  margin-top: -85px;
}

.small {
  font-size: 12px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .small {
    font-size: 12px;
  }
}

.cta {
  padding: 24px 0 32px;
  text-align: center;
}

.btn-text {
  position: relative;
  font-weight: 500;
  font-size: 13px;
}

.btn-text_catch {
  position: relative;
  display: inline-block;
  line-height: 1.2;
  font-size: 21px;
  font-weight: 900;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  position: relative;
  margin: 10px auto 0;
  padding: 8px 8px 8px 20px;
  width: 100%;
  height: 58px;
  border-radius: 4px;
  background: #EB7DBF;
  font-size: 19px;
  font-weight: 900;
  color: white;
  -webkit-box-shadow: 0 4px 0px 0px #D12C90;
          box-shadow: 0 4px 0px 0px #D12C90;
}
@media screen and (max-width: 767px) {
  .btn {
    margin-right: auto;
  }
}
.btn::after {
  content: "";
  background: url(../img/btn-arrow.png) no-repeat center center/contain;
  position: absolute;
  width: 27px;
  height: 27px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 16px;
}
.btn:hover {
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  -webkit-box-shadow: 0px 0px 0px 0px #9D9754;
          box-shadow: 0px 0px 0px 0px #9D9754;
}
.btn .btn-ilust {
  display: block;
  position: absolute;
  left: 16px;
  top: 50%;
  width: 40px;
  height: 40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btn .btn-cursor {
  display: block;
  position: absolute;
  right: 68px;
  bottom: -12px;
  width: 31px;
  height: 31px;
}

.section {
  padding: 30px 0;
  position: relative;
  z-index: 0;
}

.sectionBgGroup {
  background: #FDFAEB;
  padding-bottom: 30px;
}

/*========================
header
========================*/
.header-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 50%;
  width: 100%;
  padding: 0 16px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #094;
  z-index: 999;
}
@media screen and (min-width: 768px) {
  .header-area {
    max-width: 375px;
  }
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  position: relative;
  height: 48px;
  z-index: 999;
  -webkit-transition: height 0.3s;
  transition: height 0.3s;
}
.header.scrolled {
  height: 48px;
}
.header .logo {
  width: auto;
  max-width: 150px;
}
@media screen and (min-width: 1211px) {
  .header .logo {
    max-width: 150px;
  }
}

.overlay {
  background: rgba(0, 0, 0, 0.37);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 800;
  width: 100%;
  height: 100vh;
  display: none;
}
@media screen and (min-width: 768px) {
  .overlay {
    max-width: 375px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.hamburger-menu {
  width: 40px;
  height: 40px;
  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: 34px;
  height: 5px;
  background-color: #fff;
  margin: 3px 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer {
  position: absolute;
  top: 100%;
  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 {
  display: inline-block;
  font-size: 16px;
  padding-left: 13px;
  font-weight: bold;
  border-left: 5px solid #094;
}
.drawer a:hover {
  color: #034387;
}

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

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

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

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

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

/*========================
mv
========================*/
.mv {
  position: relative;
}
.mv .mv__img {
  padding-top: 48px;
  background: #094;
}
.mv .mv-btn {
  position: relative;
  text-align: center;
  margin: 20px 16px 30px;
  font-size: 22px;
}

/*========================
intro
========================*/
.intro {
  padding-top: 10px;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
}
.intro .intro_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  margin-bottom: 10px;
}
.intro h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #094;
  font-size: 24px;
  line-height: 130%;
}
.intro h2 span {
  font-size: 20px;
}
.intro p {
  font-size: 14px;
}
.intro img {
  display: block;
  max-width: 460px;
  margin: auto;
}

/*========================
point
========================*/
.point {
  overflow: hidden;
  padding-bottom: 120px;
}
.point h2 {
  position: relative;
  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: 10px;
  margin-bottom: 20px;
  padding: 9px;
  background: #094;
  color: #fff;
  font-size: 20px;
  text-align: center;
}
.point h2 img {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 45px;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
}
.point .point_head {
  font-weight: 700;
  line-height: 1.3;
}
.point .point_subhead {
  font-family: "M PLUS 1p", sans-serif;
  font-size: 22px;
  letter-spacing: 0.3px;
}
.point .point_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.point .point_item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.point .point_item.bottom {
  margin-bottom: 20px;
}
.point .point_itemHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  padding: 16px 12px;
  background: rgba(0, 153, 68, 0.13);
  font-family: "M PLUS 1p", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #094;
}
.point .point_itemHead .num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 100px;
  background: #094;
  line-height: 1;
  color: #fff;
  font-size: 27px;
}
.point .point_itemBody {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  font-size: 14px;
  padding: 0 12px;
}
.point .point_itemBody .wrap {
  width: calc(100% - 140px);
}
.point .point_itemBody img {
  margin: auto;
}
.point .teacher {
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  min-height: 75px;
}
.point .teacher_name {
  font-size: 20px;
  font-weight: 700;
  color: #094;
  letter-spacing: 1;
}
.point .teacher_post {
  font-size: 13px;
  font-weight: 900;
}
.point .point_image {
  position: absolute;
  top: -20px;
  left: calc(100% - 145px);
  max-width: 145px;
}

/*========================
overview
========================*/
.overview h2 {
  color: #094;
  font-size: 12px;
  font-weight: 700;
}
.overview h2 .strong {
  margin-right: 5px;
  font-size: 20px;
  font-family: "M PLUS 1p", sans-serif;
  letter-spacing: 0.4px;
}
.overview .overview_list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.overview .overview_item {
  padding: 0;
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 6px 8px;
}
.overview .overview_item.vertical {
  grid-template-columns: 1fr;
  justify-items: start;
}
.overview dt, .overview dd {
  margin: 0;
}
.overview dt {
  min-width: 65px;
  padding: 2px 10px;
  background: #4BAC75;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  font-family: "M PLUS 1p", sans-serif;
}
.overview .overview_item:nth-child(even) dt {
  background: #86C482;
}
.overview dd {
  display: contents;
}
.overview dd .overview_content {
  font-size: 14px;
}
.overview dd img {
  max-width: 100%;
}
.overview dd .small {
  font-weight: 500;
  font-size: 10px;
  grid-column: 1/-1;
}
.overview dd .accent1 {
  font-size: 26px;
  font-weight: 700;
  color: #D92124;
}
.overview dd .accent2 {
  font-size: 26px;
  font-weight: 700;
}

/*========================
flow
========================*/
.flow {
  padding-top: 0;
}
.flow .card {
  padding: 16px 12px 12px;
  background: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0 5px 5px 0 rgba(233, 207, 171, 0.25);
          box-shadow: 0 5px 5px 0 rgba(233, 207, 171, 0.25);
}
.flow h2 {
  height: 2.4rem;
  margin-bottom: 10px;
  border-bottom: 2px solid #094;
  text-align: center;
  color: #094;
  font-size: 20px;
  font-weight: 900;
}
.flow .flow_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  padding: 16px 0;
  border-bottom: 1px dashed #D2D2D2;
}
.flow .flow_item:last-child {
  border: 0;
}
.flow .flow_num {
  padding: 4px 10px;
  background: #FF8D28;
  line-height: 1;
  color: #fff;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
}
.flow .flow_num span {
  font-size: 14px;
  font-weight: 700;
}
.flow .flow_title {
  font-size: 14px;
  font-weight: 700;
}
.flow .flow_text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 11px;
}
.flow .flow_text .note {
  font-size: 10px;
}
.flow .flow_illust {
  width: 56px;
  margin: auto;
}

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

.fixed {
  display: none;
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 500;
  text-align: center;
  padding: 8px 0 16px;
  background: #fff;
}
.fixed .btn {
  margin: 0;
}