@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;
  color: #333333;
}

html {
  scroll-behavior: smooth;
}

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

img {
  width: 100%;
  height: auto;
  display: block;
}

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: #FFFDF4;
  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: 34px;
}
@media screen and (max-width: 375px) {
  .pc-bg {
    display: none;
  }
}
.pc-bg .bg-logo {
  position: absolute;
  max-width: 238px;
  left: 20px;
  top: 5px;
}
@media screen and (max-width: 1210px) {
  .pc-bg .bg-logo {
    display: none;
  }
}
.pc-bg .dummy {
  width: 377px;
  height: 100%;
}
.pc-bg .wrap1,
.pc-bg .wrap2 {
  max-width: 380px;
  text-align: right;
  width: calc((100% - 34px - 34px - 377px) / 2);
}
@media screen and (max-width: 1210px) {
  .pc-bg .wrap1,
  .pc-bg .wrap2 {
    display: none;
  }
}
.pc-bg .wrap2 .btns {
  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-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 16px;
  padding-left: 8px;
  margin-left: 14px;
}
.pc-bg .wrap2 .btns a {
  text-align: left;
  color: #0659AD;
  font-weight: bold;
  display: inline-block;
  font-size: 16px;
  border-bottom: 1px solid #0659AD;
  position: relative;
  padding-right: 22px;
}
.pc-bg .wrap2 .btns a::before {
  content: "";
  background: url(../img/arrow.png) no-repeat center center/contain;
  position: absolute;
  width: 18px;
  height: 8px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.pc-bg .btn-wrap {
  max-width: 343px;
  margin-left: auto;
  margin-top: 44px;
  text-align: center;
}
.pc-bg .btn-wrap .btn-text {
  margin: 0 auto 3px;
}
.pc-bg .btn-wrap .btn {
  margin-bottom: 20px;
}
.pc-bg .btn-wrap .link {
  font-size: 16px;
  border-bottom: 1px solid #000;
  font-weight: bold;
}

.main-area {
  overflow: hidden;
  background: white;
  width: 100%;
  max-width: 377px;
  margin: 0 auto;
  position: relative;
  border: 1px solid #CECECE;
}
@media screen and (max-width: 767px) {
  .main-area {
    border: none;
  }
}

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

.section {
  padding: 40px 0;
}

.center {
  text-align: center;
}

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

.cta {
  text-align: center;
}
.cta .btn2 {
  margin-top: 8px;
}
.cta .link {
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: bold;
  margin-top: 12px;
  display: inline-block;
}

.btn-text {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}
.btn-text span {
  font-size: 20px;
  font-weight: bold;
  display: inline-block;
  margin-left: 3px;
}

.btn {
  border-radius: 100px;
  background: #FE8D02;
  -webkit-box-shadow: 0 5px 0 0 #FEE198;
          box-shadow: 0 5px 0 0 #FEE198;
  color: white;
  display: inline-block;
  width: 100%;
  padding: 18px 0 20px;
  padding-right: 16px;
  font-size: 22px;
  font-weight: bold;
  position: relative;
  margin: 6px 0 10px;
  line-height: 1.2;
  max-width: 335px;
}
.btn:hover {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  -webkit-box-shadow: 0 0 0 0 #FEE198;
          box-shadow: 0 0 0 0 #FEE198;
}
.btn::before {
  content: "";
  background: url(../img/arrow-right.png) no-repeat center center/contain;
  position: absolute;
  width: 26px;
  height: 26px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 35px;
}

.btn2 {
  background: #FEF02F;
  -webkit-box-shadow: 0 3px 0 0 #ADADAD;
          box-shadow: 0 3px 0 0 #ADADAD;
  color: #444;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  padding: 10px;
  max-width: 180px;
  width: 100%;
  border-radius: 100px;
  display: inline-block;
}
.btn2:hover {
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
  -webkit-box-shadow: 0 0 0 0 #ADADAD;
          box-shadow: 0 0 0 0 #ADADAD;
}

.sec-title {
  font-size: 26px;
  font-weight: 900;
  line-height: 140%;
  color: #0659AD;
}

.pen1::before {
  content: "";
  background: url(../img/pen1.png) no-repeat center center/contain;
  position: absolute;
  width: 30px;
  height: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

.pen2::before {
  content: "";
  background: url(../img/pen2.png) no-repeat center center/contain;
  position: absolute;
  width: 30px;
  height: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

.bg2 {
  position: relative;
}
.bg2::before {
  content: "";
  background: url(../img/bg2.png) no-repeat center center/contain;
  position: absolute;
  width: 86px;
  height: 86px;
}

.bg3 {
  position: relative;
}
.bg3::before {
  content: "";
  background: url(../img/bg3.png) no-repeat center center/contain;
  position: absolute;
  width: 86px;
  height: 86px;
}

/*========================
header
========================*/
header {
  position: absolute;
  width: 100%;
  max-width: 376px;
  z-index: 10000;
  top: 0;
}

.header-fix {
  display: none;
  width: 100%;
  background: #ffffff;
  z-index: 1000;
  border-right: 1px solid #CECECE;
  border-bottom: 1px solid #cccccc;
  height: 51px;
  padding: 0 10px;
  position: relative;
}
@media screen and (max-width: 1210px) {
  .header-fix {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .header-fix {
    border-right: none;
  }
}

.f-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.header__logo {
  max-width: 228px;
}

.common_logo {
  margin-right: 5px;
}

.menu-trigger {
  position: relative;
  width: 30px;
  height: 24px;
  margin: 13px 0 0 0;
  cursor: pointer;
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.sp-nav-btn {
  float: right;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #009b4b;
  border-radius: 4px;
}

.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
          transform: translateY(10px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active-menu-bar02 0.8s forwards;
          animation: active-menu-bar02 0.8s forwards;
}
.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
          transform: translateY(-10px) rotate(45deg);
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 10px;
}

@-webkit-keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}

@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

nav {
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: -100%;
  width: 100%;
  max-width: 376px;
  z-index: 500;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  height: 100%;
  opacity: 0;
  padding: 12px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

nav.list-open {
  top: 51px;
  opacity: 1;
}

.list-main-nav {
  background: #fff;
  width: 94%;
  margin: 0 auto;
}

.list-main-nav li {
  border-top: solid 1px #cccccc;
}

.list-main-nav li a {
  display: block;
  color: #0b4427;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 11px 20px;
  font-size: 12px;
  font-weight: 600;
  background: url(../img/nav-arrow.png) no-repeat 95% center;
  background-size: 7px 12px;
}

.accordion_sp {
  width: 100%;
}

.option_sp {
  position: relative;
}

.toggle_sp {
  display: none;
}

.title_sp {
  border-top: solid 1px #cccccc;
  padding: 11px 20px;
  display: block;
  color: #0b4427;
  font-weight: bold;
  font-size: 13px;
}

.sp_menu_contact {
  background-color: #ebf5ec;
}

.title_sp::after,
.title_sp::before {
  content: "";
  position: absolute;
  right: 1.25em;
  top: 1.25em;
  width: 2px;
  height: 0.75em;
  background-color: #999;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.title_sp::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.toggle_sp:checked + .title_sp::before {
  -webkit-transform: rotate(90deg) !important;
          transform: rotate(90deg) !important;
}

.title_sp,
.content_sp {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.option_sp_1st {
  border: none !important;
}

.content_sp {
  max-height: 0;
  overflow: hidden;
}

.toggle_sp:checked + .title_sp + .content_sp {
  max-height: 500px;
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}

.accordion_sp li a {
  display: block;
  color: #0b4427;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 11px 35px;
  font-size: 12px;
  font-weight: 600;
  background: url(../img/nav-arrow.png) no-repeat 95% center;
  background-size: 7px 12px;
}

/*========================
mv
========================*/
@media screen and (max-width: 1210px) {
  .mv {
    padding-top: 50px;
  }
}
@media screen and (max-width: 1210px) {
  .mv .pc {
    display: none;
  }
}
.mv .sp {
  display: none;
}
@media screen and (max-width: 1210px) {
  .mv .sp {
    display: block;
  }
}

/*========================
intro
========================*/
.intro {
  background: #FAF6E5;
  padding-bottom: 40px;
}
.intro .img1 {
  margin-top: -20px;
  margin-bottom: 48px;
}
.intro .parents {
  margin-top: 37px;
  padding: 0 14px;
}
.intro .parents .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
}
.intro .parents .head .img2 {
  max-width: 96px;
}
.intro .parents .items {
  margin-top: 19px;
}
.intro .parents .items .item {
  background: white;
  border-radius: 10px;
  -webkit-box-shadow: 2px 2px 4px 0 rgba(110, 110, 110, 0.25);
          box-shadow: 2px 2px 4px 0 rgba(110, 110, 110, 0.25);
  padding: 16px 10px;
}
.intro .parents .items .item:not(:last-child) {
  margin-bottom: 20px;
}
.intro .parents .items .item .star {
  max-width: 80px;
  margin-bottom: 6px;
}

/*========================
point1
========================*/
.point1 {
  padding-top: 40px;
  text-align: center;
}
.point1 .sec-title {
  max-width: 261px;
  display: inline-block;
}

/*========================
point2
========================*/
.point2 {
  padding: 40px 0;
  text-align: center;
}
.point2 .img {
  margin-top: 20px;
}
.point2 .strong-textset {
  margin: 20px 0 40px;
}

.strong-textset {
  text-align: center;
  color: #0659AD;
  font-size: 24px;
  font-weight: 900;
  line-height: 150%;
  letter-spacing: 0.48px;
}
.strong-textset span {
  display: inline-block;
  border-radius: 4px;
  background: #0169B8;
  color: #F7E56C;
  font-size: 26px;
  letter-spacing: 0.52px;
  padding: 2px 12px;
}

/*========================
point3
========================*/
.point3 {
  padding-bottom: 40px;
}
.point3 .img {
  margin-bottom: 10px;
}
.point3 .sec-title {
  font-size: 24px;
}
.point3 .items {
  margin: 20px 0 40px;
}
.point3 .item {
  margin-bottom: 30px;
}
.point3 .item .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 6px;
  border-bottom: 3px solid #0169B8;
  margin-bottom: 10px;
}
.point3 .item .head .num {
  background: url(../img/point3-icon-bg.png) no-repeat center center/contain;
  width: 47px;
  height: 54px;
  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;
  color: white;
  font-family: "Barlow", sans-serif;
  font-style: italic;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  padding-right: 3px;
}
.point3 .item .head .text {
  font-weight: bold;
  font-size: 20px;
  width: calc(100% - 47px - 6px);
  line-height: 1.3;
  padding-bottom: 4px;
}
.point3 .item .head .text .small {
  font-size: 16px;
  font-weight: bold;
}
.point3 .item .body {
  padding-left: 8px;
}
.point3 .item .body h4 {
  font-weight: bold;
  position: relative;
  padding-left: 16px;
  margin-top: 8px;
}
.point3 .item .body h4::before {
  content: "";
  background: #0169B8;
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  left: 0;
  top: 7px;
}
.point3 .item .body p {
  padding-left: 16px;
}

/*========================
voice
========================*/
.voice {
  background: #FAF6E5;
  padding: 40px 0;
}
.voice .sec-title {
  text-align: center;
  margin-bottom: 20px;
}
.voice .item {
  margin-top: 20px;
  background: white;
  border-radius: 10px;
  -webkit-box-shadow: 2px 2px 4px 0 rgba(110, 110, 110, 0.25);
          box-shadow: 2px 2px 4px 0 rgba(110, 110, 110, 0.25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  padding: 16px;
}
.voice .item .left {
  width: 59px;
}
.voice .item .left .name {
  font-size: 12px;
  text-align: center;
}
.voice .item .right {
  width: calc(100% - 59px - 10px);
}
.voice .item .right .star {
  width: 81px;
  margin-bottom: 6px;
}

/*========================
scheme
========================*/
.scheme {
  padding: 40px 0;
  background: url(../img/bg-square.jpg) repeat-y center top/100% auto;
}
.scheme .items {
  margin-bottom: 40px;
}
.scheme .item {
  border-radius: 8px;
  background: #F5F5F5;
  -webkit-box-shadow: 0 2px 4px 0 rgba(110, 110, 110, 0.25);
          box-shadow: 0 2px 4px 0 rgba(110, 110, 110, 0.25);
  padding: 20px;
  margin-top: 20px;
}
.scheme h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px 0;
}
.scheme h3 .num {
  background: #0169B8;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: white;
  font-family: "Barlow", sans-serif;
  font-weight: bold;
  font-size: 29px;
  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;
}
.scheme h3 .text {
  width: calc(100% - 42px - 10px);
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
}

/*========================
about
========================*/
.about {
  padding: 40px 0 30px;
}
.about .items {
  margin-top: 11px;
}
.about .item {
  border-bottom: 1px solid #CACACA;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  padding: 19px 0;
}
.about .item .head {
  width: 72px;
  font-size: 15px;
  font-weight: bold;
}
.about .item .body {
  width: calc(100% - 72px - 10px);
}
.about .item .body .small {
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
}
.about .item .body h3 {
  color: #0659AD;
  font-size: 15px;
  font-weight: bold;
}
.about .item .body .date {
  font-size: 15px;
  font-weight: 500;
}
.about .item .body .box {
  background: #F2F2F2;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 10px;
}
.about .item .body .box .label {
  border-radius: 60px;
  background: #3891EA;
  color: white;
  width: 107px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  padding: 2px;
}
.about .item .body .box:nth-child(2) {
  margin-top: 10px;
}
.about .item .body .box:nth-child(2) .label {
  background: #0169B8;
}
.about .item .body .strong {
  font-size: 18px;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #FEF02F));
  background: linear-gradient(transparent 70%, #FEF02F 70%);
}
.about .box2 {
  border-radius: 6px;
  border: 3px solid #0659AD;
  padding: 25px;
  margin: 30px 19px;
}
.about .box2 .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.about .box2 .row:not(:first-child) {
  margin-top: 19px;
}
.about .box2 .row .head {
  width: 60px;
  color: #0659AD;
  font-weight: 900;
}
.about .box2 .row .body {
  width: calc(100% - 60px - 16px);
}
.about .box2 .row .body.strong {
  font-size: 20px;
  font-weight: bold;
}
.about .box3 {
  padding: 16px;
  background: #E9F4FD;
  margin: 30px 21px;
}
.about .box3 h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.about .box3 h3 img {
  width: 32px;
}
.about .box3 h3 span {
  font-size: 20px;
  color: #0659AD;
  font-weight: 900;
  border-bottom: 1px solid #0659AD;
  line-height: 1.2;
  display: block;
}
.about .box3 p {
  text-align: right;
  margin: 16px 0;
}
.about .box3 .note {
  font-size: 12px;
}
.about .subtitle {
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  color: #0659AD;
  margin: 20px 0 10px;
}
.about .schedule-wrap {
  position: relative;
}
.about .schedule-wrap .arrow {
  content: "";
  background: url(../img/chevron.png) no-repeat center center/contain;
  position: absolute;
  width: 24px;
  height: 24px;
  top: 88px;
}
.about .schedule-wrap .arrow-left {
  left: -13px;
}
.about .schedule-wrap .arrow-right {
  right: -13px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.about .schedule {
  overflow: auto;
  padding-bottom: 8px;
  width: 100%;
}
.about .schedule .img {
  width: 513px;
}
.about .schedule-note {
  max-width: 135px;
  margin-top: 10px;
}

/*========================
tokuten
========================*/
.tokuten {
  padding: 40px 0;
  background: #BFDCF2;
}
.tokuten .box {
  border-radius: 8px;
  background: #FFF;
  padding: 20px;
  margin-top: 20px;
}

/*========================
school
========================*/
.school {
  padding: 48px 0 40px;
}
.school .sec-title {
  margin: 73px 0 30px;
  text-align: center;
}

.school__items {
  margin-top: 20px;
}
.school__items .item {
  border-radius: 10px;
  background: #E5F5FF;
  padding: 9px 12px;
}
.school__items .item:not(:last-child) {
  margin-bottom: 16px;
}
.school__items .item .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  margin-top: 4px;
}
.school__items .item .icon {
  width: 22px;
}
.school__items .item h3 {
  font-size: 18px;
  font-weight: bold;
}
.school__items .item p {
  width: calc(100% - 22px - 5px);
  font-size: 12px;
  font-weight: bold;
  margin-top: 4px;
}
.school__items .item.new {
  padding-top: 41px;
  position: relative;
}
.school__items .item.new::before {
  content: "";
  background: url(../img/new.png) no-repeat center center/contain;
  position: absolute;
  width: 69px;
  height: 34px;
  top: 9px;
  left: -6px;
}

/*========================
page-bottom
========================*/
.page-bottom {
  padding-bottom: 40px;
  text-align: center;
}
.page-bottom p {
  font-size: 16px;
  margin: 10px 0 16px;
}
.page-bottom .logo {
  max-width: 123px;
  margin: 0 auto;
}

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

.fixed {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 500;
  background: #ffffff;
  text-align: center;
  padding: 4px 0;
}
.fixed .btn {
  padding: 10px 0 12px;
  padding-right: 20px;
  margin: 6px 0;
  font-size: 20px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.fixed .btn span {
  font-size: 30px;
}