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

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
  background: white;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 4rem;
}

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;
}

/*========================
common
========================*/
.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 16px;
  }
}

.center {
  text-align: center;
}

.sec-title {
  font-size: 36px;
  font-weight: 900;
  line-height: 56px;
  /* 155.556% */
  letter-spacing: 3.24px;
}
@media screen and (max-width: 767px) {
  .sec-title {
    font-size: 26px;
    letter-spacing: 1px;
    line-height: 1.4;
  }
}
.sec-title span {
  font-size: 44px;
  letter-spacing: 3.96px;
  color: #23CCB7;
}
@media screen and (max-width: 767px) {
  .sec-title span {
    letter-spacing: 1px;
    font-size: 35px;
  }
}

.sub-title {
  margin: 16px 0;
  font-size: 28px;
  font-weight: 900;
  line-height: 51px;
  /* 182.143% */
  letter-spacing: 2.52px;
}
@media screen and (max-width: 767px) {
  .sub-title {
    font-size: 22px;
    letter-spacing: 1px;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.small {
  font-size: 0.8em;
}

.sticky {
  position: fixed;
  display: none;
  z-index: 100;
  bottom: 0;
  width: 100%;
  background: #23CCB7;
  padding: 7px 16px 4px;
  text-align: center;
}
.sticky a {
  display: inline-block;
  max-width: 250px;
}

.section {
  padding: 56px 0;
}
@media screen and (max-width: 767px) {
  .section {
    padding: 48px 0;
  }
}

/*========================
header
========================*/
.header-area {
  width: 100%;
  max-width: 425px;
  margin: 0 auto;
  position: fixed;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .header-area {
    max-width: none;
  }
}

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

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

.hamburger-menu {
  position: absolute;
  top: 2px;
  right: 14px;
  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: 30px;
  height: 2px;
  background-color: #23CCB7;
  margin: 2.5px 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 10px;
}

.drawer {
  position: absolute;
  top: 0;
  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: 56px 16px 24px;
}
.drawer li {
  padding: 10px 0;
}
.drawer a {
  font-size: 18px;
  padding-left: 13px;
  font-weight: bold;
  border-left: 5px solid #23CCB7;
}
.drawer a:hover {
  color: #23CCB7;
}

.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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow-x: hidden;
  margin-bottom: -40px;
}
@media screen and (max-width: 767px) {
  .mv {
    padding-top: 44px;
  }
}
.mv .mv__img {
  min-width: 1790px;
  max-width: 2100px;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .mv .mv__img {
    min-width: 1270px;
  }
}
@media screen and (max-width: 767px) {
  .mv .mv__img {
    min-width: 0;
  }
}

/*========================
cta
========================*/
.cta {
  margin: 0 auto;
  max-width: 674px;
}
.cta .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .cta .btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.cta .btn1 {
  max-width: 370px;
}
@media screen and (max-width: 767px) {
  .cta .btn1 {
    max-width: 310px;
  }
}
.cta .btn2 {
  max-width: 288px;
}

/*========================
intro
========================*/
.intro {
  text-align: center;
}
.intro .intro-top {
  margin-top: 40px;
}
.intro .cta {
  margin-left: 0;
}

/*========================
yarubeki
========================*/
.yarubeki {
  text-align: center;
  padding: 76px 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .yarubeki {
    padding: 76px 0 106px;
  }
}
.yarubeki .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 490px;
  margin: 0 auto;
  gap: 22px 20px;
  position: relative;
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .yarubeki .items {
    margin-top: 24px;
  }
}
.yarubeki .items .img {
  position: absolute;
  width: 151px;
  bottom: 0;
  right: -174px;
}
@media screen and (max-width: 767px) {
  .yarubeki .items .img {
    right: 0px;
    width: 111px;
    bottom: -116px;
  }
}
.yarubeki .items .item {
  background: #23CCB7;
  color: white;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 900;
  line-height: 25px;
  /* 138.889% */
  letter-spacing: 1.62px;
  padding: 10px 10px 12px;
  width: calc(50% - 10px);
}
@media screen and (max-width: 767px) {
  .yarubeki .items .item {
    font-size: 16px;
  }
}

/*========================
course
========================*/
.course {
  text-align: center;
  background: url(../img/course-bg.jpg) no-repeat center center/cover;
  padding: 54px 0 88px;
}
.course .course-text {
  font-weight: 900;
  line-height: 30px;
  /* 187.5% */
  letter-spacing: 1.44px;
}
@media screen and (max-width: 767px) {
  .course .course-text {
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 1.3px;
  }
}

/*========================
support
========================*/
.support {
  text-align: center;
}
.support .cta:first-child {
  margin-top: -44px;
  margin-bottom: 60px;
}
.support .sec-title span {
  font-size: 66px;
}
@media screen and (max-width: 767px) {
  .support .sec-title span {
    font-size: 40px;
  }
}
.support .sec-title span span {
  letter-spacing: -27.06px;
}
@media screen and (max-width: 767px) {
  .support .sec-title span span {
    letter-spacing: -10px;
  }
}
.support h3 {
  font-size: 24px;
  font-weight: 900;
  line-height: 51px;
  /* 212.5% */
  letter-spacing: 2.16px;
  color: #23CCB7;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .support h3 {
    font-size: 22px;
  }
}
.support p {
  text-align: center;
  font-weight: 900;
  line-height: 30px;
  /* 187.5% */
  letter-spacing: 1.44px;
}
.dojo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
  margin: 38px 0;
}
@media screen and (max-width: 767px) {
  .dojo {
    gap: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.dojo .item {
  border-radius: 12px;
  background: #EDFAFA;
  -webkit-box-shadow: 0 4px 0 0 #DDF7F7;
          box-shadow: 0 4px 0 0 #DDF7F7;
  max-width: 189px;
  width: 100%;
  padding: 39px 10px 16px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .dojo .item {
    max-width: none;
    padding: 21px 10px 16px;
    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;
  }
}
.dojo .item:first-child {
  font-size: 20px;
}
.dojo .item .img {
  max-width: 129px;
  margin: 0 auto 24px;
}
@media screen and (max-width: 767px) {
  .dojo .item .img {
    margin: 0;
    max-width: 100px;
  }
}

.schedule .sec-title {
  font-size: 44px;
  margin: 58px 0 32px;
}
@media screen and (max-width: 767px) {
  .schedule .sec-title {
    font-size: 26px;
  }
}
.schedule .sec-title span {
  font-size: 44px;
}
@media screen and (max-width: 767px) {
  .schedule .sec-title span {
    font-size: 35px;
  }
}
.schedule .table {
  max-width: 422px;
  margin: 32px auto 34px;
}
.schedule .schedule__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 27px;
  margin-bottom: 59px;
}
@media screen and (max-width: 767px) {
  .schedule .schedule__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.schedule .schedule__items .item .img {
  max-width: 170px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .schedule .schedule__items .item .img {
    max-width: 100px;
  }
}
.schedule .schedule__items .item h4 {
  margin: 16px 0 8px;
  font-size: 37px;
  color: #23CCB7;
  font-weight: 900;
  line-height: 56px;
  /* 151.351% */
  letter-spacing: 0.37px;
}
@media screen and (max-width: 767px) {
  .schedule .schedule__items .item h4 {
    font-size: 29px;
    line-height: 1.5;
  }
}
.schedule .schedule__items .item h5 {
  font-size: 22px;
  font-weight: 900;
  line-height: 51px;
  /* 231.818% */
  letter-spacing: 1.98px;
  margin: 0;
  margin-bottom: 14px;
}
.schedule .schedule__items .item p {
  line-height: 30px;
  /* 187.5% */
  letter-spacing: 1.44px;
}

/*========================
johosen
========================*/
.johosen {
  overflow: hidden;
}
.johosen .inner {
  max-width: 849px;
}
.johosen .flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 55px;
  margin-right: -129px;
  margin-top: 54px;
}
@media screen and (max-width: 767px) {
  .johosen .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: 0;
  }
}
.johosen .flex .sec-title {
  font-size: 44px;
  color: #23CCB7;
  line-height: 56px;
  /* 127.273% */
  letter-spacing: 3.96px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .johosen .flex .sec-title {
    font-size: 34px;
    letter-spacing: 1px;
  }
}
.johosen .flex .sub-title {
  text-align: center;
}
.johosen .flex .content {
  width: calc(100% - 400px - 55px);
}
@media screen and (max-width: 767px) {
  .johosen .flex .content {
    width: 100%;
  }
}
.johosen .flex .img {
  max-width: 400px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .johosen .flex .img {
    max-width: 280px;
  }
}
.johosen .flex ul {
  border-radius: 12px;
  background: #EDFAFA;
  -webkit-box-shadow: 0 4px 0 0 #DDF7F7;
          box-shadow: 0 4px 0 0 #DDF7F7;
  font-size: 16px;
  font-weight: 900;
  line-height: 30px;
  /* 187.5% */
  letter-spacing: 1.44px;
  padding: 18px 56px;
  margin-top: 24px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .johosen .flex ul {
    padding: 18px 16px;
  }
}
.johosen .flex ul li {
  text-indent: -1em;
  padding-left: 1em;
}

/*========================
shikumi 
========================*/
.shikumi {
  margin-top: 42px;
}
.shikumi .inner {
  max-width: 849px;
}
.shikumi .sec-title {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .shikumi .sec-title {
    font-size: 22px;
  }
  .shikumi .sec-title span {
    font-size: 30px;
  }
}
.shikumi .box {
  border-radius: 12px;
  background: #EDFAFA;
  padding: 44px 41px 38px 84px;
  margin: 22px 0 54px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .shikumi .box {
    padding: 32px 16px;
  }
}
.shikumi .box .img {
  position: absolute;
  width: 78px;
  top: -78px;
  left: -2px;
}
@media screen and (max-width: 767px) {
  .shikumi .box .img {
    width: 50px;
    left: inherit;
    right: -4px;
    top: -52px;
  }
}
.shikumi .box .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 31px;
  gap: 24px;
  padding-left: 32px;
}
@media screen and (max-width: 767px) {
  .shikumi .box .head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 0;
    gap: 0;
  }
}
.shikumi .box .title {
  font-size: 29px;
  font-weight: 900;
  line-height: 43px;
  /* 148.276% */
  letter-spacing: 2.61px;
}
@media screen and (max-width: 767px) {
  .shikumi .box .title {
    font-size: 25px;
    letter-spacing: 1px;
    line-height: 1.4;
    margin-bottom: 20px;
  }
}
.shikumi .box .title span {
  color: #23CCB7;
}
.shikumi .box ul li {
  text-indent: -1em;
  padding-left: 1em;
  font-family: "Noto Sans CJK JP";
  font-size: 16px;
  font-weight: 900;
  line-height: 37px;
  /* 231.25% */
}
@media screen and (max-width: 767px) {
  .shikumi .box ul li {
    line-height: 1.5;
    margin-top: 5px;
  }
}

.strong-box {
  border-radius: 8px;
  border: 1px solid #000;
  background: #FF2D64;
  font-size: 20px;
  font-weight: 900;
  line-height: 37px;
  letter-spacing: 1.8px;
  color: white;
  text-align: center;
  padding: 7px 15px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .strong-box {
    padding: 10px 32px;
    letter-spacing: 1px;
    line-height: 1.3;
  }
}
.strong-box span {
  font-size: 34px;
  line-height: 37px;
  letter-spacing: 3.06px;
}
@media screen and (max-width: 767px) {
  .strong-box span {
    font-size: 29px;
  }
}

/*========================
school
========================*/
.school {
  padding: 98px 0 117px;
}
@media screen and (max-width: 767px) {
  .school {
    padding: 48px 0;
  }
}
.school .sec-title {
  text-align: center;
  margin-bottom: 42px;
}
.school .inner {
  max-width: 763px;
}

.school__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .school__flex {
    gap: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.school__contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.school__area:not(:first-child) {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .school__area:not(:first-child) {
    margin-top: 16px;
  }
}

.school__head {
  background: #23CCB7;
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 13px 20px;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .school__head {
    padding: 10px 13px;
    padding-right: 37px;
  }
}
.school__head.open::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.school__head::after {
  content: "";
  background: url(../img/arrow-down2.png) no-repeat center center/contain;
  position: absolute;
  width: 25px;
  height: 22px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .school__head::after {
    width: 24px;
    height: 24px;
    right: 8px;
  }
}

.school__body {
  padding: 0 20px;
  display: none;
}
@media screen and (max-width: 767px) {
  .school__body {
    padding: 0 14px;
  }
}

.school__item {
  padding: 20px 0;
  border-bottom: 2px solid #23CCB7;
}
.school__item h3 {
  color: #23CCB7;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .school__item h3 {
    font-size: 24px;
  }
}
.school__item li {
  position: relative;
  padding-left: 25px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .school__item li {
    font-size: 18px;
    padding-left: 34px;
  }
}
.school__item li:not(:first-child) {
  margin-top: 10px;
}
.school__item li::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0;
  top: 2px;
}
@media screen and (max-width: 767px) {
  .school__item li::before {
    width: 27px;
    height: 27px;
  }
}
.school__item .address::before {
  background: url(../img/school-icon1.png) no-repeat center center/contain;
}
.school__item .tel::before {
  background: url(../img/school-icon2.png) no-repeat center center/contain;
}
.school__item .access::before {
  width: 18px;
  height: 21px;
  left: 0px;
  background: url(../img/school-icon3.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .school__item .access::before {
    width: 30px;
    height: 30px;
    left: -1px;
    top: 1px;
  }
}

/*========================
footer
========================*/
.footer {
  background: #23CCB7;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-bottom: 81px;
  }
}