@charset "UTF-8";
/*
  Last Update 20250725
*/
/* mainImg
---------------------------------------*/
.mainImg {
  background: #fff;
  width: 100%;
  position: relative;
}

@media screen and (min-width: 981px) {
  .mainImg {
    /* padding: 0 0 30px; */
    padding: 30px 0;
  }
}
@media screen and (max-width: 980px) {
  .mainImg {
    padding: 0 0 30px;
  }
}
.mainImg .mainImg_inner {
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .mainImg .mainImg_inner {
    background-image: url(../img/top/bg_main-pc.webp);
    background-position: center;
    background-size: cover;
    border-radius: 15px;
  }
}
@media screen and (min-width: 769px) {
  .mainImg .mainImg_inner.is-pc {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .mainImg .mainImg_inner.is-pc {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .mainImg .mainImg_inner.is-sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .mainImg .mainImg_inner.is-sp {
    display: block;
  }
}
.mainImg .mainImg_inner .link-btn {
  max-width: 400px;
  margin: 0;
  position: absolute;
  left: 50%;
  bottom: 18px;
  translate: -50% 0;
}
@media screen and (max-width: 768px) {
  .mainImg .mainImg_inner .link-btn {
    max-width: 80%;
    height: 15%;
    bottom: 12%;
   padding: 0 15px;
  }
}
.mainImg h2 {
  position: relative;
  width: 100%;
  margin: 0 auto;
  line-height: normal;
  background: none;
  border: none;
}
@media screen and (min-width: 769px) {
  .mainImg h2 {
    max-width: 500px;
    padding: 41px 0 91px;
  }
}
@media screen and (max-width: 768px) {
  .mainImg h2 {
    padding: 0;
  }
}
.mainImg h2 img {
  max-width: 100%;
}
.mainImg .img1,
.mainImg .img2,
.mainImg .img3,
.mainImg .img4 {
  position: absolute;
  width: 23%;
}
.mainImg .img1 {
  max-width: 246px;
  top: 25px;
  left: 7.5%;
}
@media screen and (max-width: 970px) {
  .mainImg .img1 {
    left: -3%;
  }
}
.mainImg .img2 {
  max-width: 255px;
  top: -22px;
  right: -1.5%;
}
.mainImg .img3 {
  max-width: 279px;
  bottom: -46px;
  left: -6.5%;
}
@media screen and (max-width: 970px) {
  .mainImg .img3 {
    left: -2%;
  }
}
.mainImg .img4 {
  max-width: 224px;
  bottom: 24px;
  right: 9.5%;
}
@media screen and (max-width: 970px) {
  .mainImg .img4 {
    right: -2%;
  }
}
.mainImg .character {
  display: block;
  position: absolute;
}
.mainImg .character.ball {
  top: 189px;
  right: -0.5%;
}
.mainImg .character.beaker {
  top: 36px;
  right: 28%;
}
.mainImg .character.book {
  top: 145px;
  left: 4.5%;
  rotate: 15deg;
}
.mainImg .character.clover {
  top: 15px;
  left: 40%;
}
.mainImg .character.eraser {
  bottom: 80px;
  left: 26%;
}
@media screen and (max-width: 970px) {
  .mainImg .character.eraser {
    left: 18%;
  }
}
.mainImg .character.hammer {
  bottom: -18px;
  right: 32%;
}
.mainImg .character.leaf {
  bottom: 27px;
  left: 13%;
}
@media screen and (max-width: 970px) {
  .mainImg .character.leaf {
    bottom: 74px;
    left: 2%;
  }
}
.mainImg .character.moon {
  bottom: 21px;
  left: 31%;
}
.mainImg .character.note {
  bottom: 27px;
  right: 2%;
}
@media screen and (max-width: 970px) {
  .mainImg .character.note {
    bottom: 8px;
    right: 4%;
  }
}
.mainImg .character.pencil {
  bottom: 163px;
  right: 16%;
}
@media screen and (max-width: 970px) {
  .mainImg .character.pencil {
    bottom: 180px;
    right: 11%;
  }
}
.mainImg .character.pumpkin {
  top: 6px;
  left: 21%;
}
@media screen and (max-width: 970px) {
  .mainImg .character.pumpkin {
    left: 19%;
  }
}
.mainImg .character.rabbit {
  top: 40px;
  left: 0;
}
@media screen and (max-width: 970px) {
  .mainImg .character.rabbit {
    top: -6px;
  }
}
.mainImg .character.star {
  top: 36px;
  right: 23.5%;
}
.mainImg .topImgLoop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 30px;
  overflow: hidden;
}
.mainImg .topImgLoop .topImgLoop_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-animation: loop 50s linear infinite;
  animation: loop 50s linear infinite;
}
.mainImg .topImgLoop .topImgLoop_inner img {
  display: block;
  width: 250px;
  height: 215px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-right: 20px;
  border-radius: 5px;
}

@-webkit-keyframes loop {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes loop {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@media screen and (max-width: 768px) {
  .mainImg .topImgLoop .topImgLoop_inner img {
    width: 150px;
    height: 129px;
  }
}
figure {
  max-width: 400px;
}

@media screen and (max-width: 768px) {
  .gtc2 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.link-btn {
  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;
  max-width: 496px;
  width: 100%;
  margin: 56px auto 0;
  padding-right: 8px;
  position: relative;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  background-color: #0687b5;
  border-radius: 6px;
}
@media screen and (min-width: 769px) {
  .link-btn {
    height: 65px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .link-btn {
    height: 50px;
    font-size: 1.25rem;
  }
}
.link-btn.green {
  background-color: #39b54a;
}
.link-btn.white {
  color: #000;
  background-color: #fff;
}
.link-btn.orange {
  background-color: #f2644e;
}
.link-btn:hover {
  text-decoration: none;
}
.link-btn img {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
}

.img_heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 36px;
  position: relative;
  background-color: #33bbf2;
  border: none;
  border-radius: 50px;
}
@media screen and (min-width: 769px) {
  .img_heading {
    min-height: 60px;
    padding: 11px 30px 13px 80px;
    gap: 26px;
  }
}
@media screen and (max-width: 768px) {
  .img_heading {
    min-height: 48px;
    padding: 5px 30px 7px 58px;
    gap: 12px;
  }
}
.img_heading .icon {
  display: block;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .img_heading .icon {
    max-width: 50px;
  }
}
@media screen and (min-width: 769px) {
  .img_heading .icon.pumpkin {
    top: -27px;
    left: 8px;
  }
}
@media screen and (max-width: 768px) {
  .img_heading .icon.pumpkin {
    top: -17px;
    left: 4px;
  }
}
@media screen and (min-width: 769px) {
  .img_heading .icon.note {
    top: -29px;
    left: 11px;
  }
}
@media screen and (max-width: 768px) {
  .img_heading .icon.note {
    top: -19px;
    left: 7px;
  }
}
@media screen and (min-width: 769px) {
  .img_heading .icon.beaker {
    top: -40px;
    left: 8px;
  }
}
@media screen and (max-width: 768px) {
  .img_heading .icon.beaker {
    top: -30px;
    left: 4px;
  }
}
@media screen and (min-width: 769px) {
  .img_heading .icon.pencil {
    top: -12px;
    left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .img_heading .icon.pencil {
    top: -12px;
    left: 12px;
  }
}
@media screen and (min-width: 769px) {
  .img_heading .icon.eraser {
    top: -23px;
    left: 10px;
  }
}
@media screen and (max-width: 768px) {
  .img_heading .icon.eraser {
    top: -13px;
    left: 6px;
  }
}
@media screen and (min-width: 769px) {
  .img_heading .icon.book {
    top: 6px;
    left: 10px;
  }
}
@media screen and (max-width: 768px) {
  .img_heading .icon.book {
    top: 4px;
    left: 4px;
  }
}
.img_heading span {
  color: #ff0;
  letter-spacing: 0.05em;
}
.img_heading a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 36px;
  padding: 6px 14px;
  color: #f2644e;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  letter-spacing: -0.0425em;
  background-color: #ffff00;
  border-radius: 100px;
}
@media screen and (min-width: 769px) {
  .img_heading a {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .img_heading a {
    font-size: 1rem;
  }
}
.img_heading a:hover {
  text-decoration: none;
}

.schedule-text {
  margin: 40px 0 35px;
  color: #00a7e3;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
}

.sec * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.sec_about {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .sec_about {
    margin-bottom: -140px;
    padding-bottom: 140px;
  }
}
.sec_about_balloon-bottom {
  width: 1920px;
  height: 140px;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1;
  translate: -50% 0;
  background-image: url(../../common/img/top/bg_about-balloon-under.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.sec_about_balloon-bottom::before,
.sec_about_balloon-bottom::after {
  content: "";
  display: block;
  width: 50vw;
  position: absolute;
  top: 0;
  background-image: url(../../common/img/top/bg_about.svg);
  background-repeat: repeat;
}
.sec_about_balloon-bottom::before {
  height: 32px;
  left: -50vw;
}
.sec_about_balloon-bottom::after {
  height: 11px;
  right: -50vw;
}
@media screen and (max-width: 768px) {
  .sec_about_balloon-bottom {
    display: none;
  }
}

.sec_about_inner {
  max-height: calc(100% - 10px);
  position: relative;
  z-index: 2;
  background-image: url(../../common/img/top/bg_about.svg);
  background-repeat: repeat;
}
@media screen and (max-width: 768px) {
  .sec_about_inner {
    padding-bottom: 32px;
  }
}
.sec_about_content {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 32px 0 0;
}
@media screen and (max-width: 1075px) {
  .sec_about_content {
    width: 95%;
  }
}
.sec_about_content .logo {
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .sec_about_content .logo {
    translate: 32px 0;
  }
}
.sec_about_content .text {
  max-width: 817px;
  margin: 30px auto 50px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .sec_about_content .text {
    margin-bottom: 36px;
  }
}
.sec_about_content .opportunity {
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .sec_about_content .opportunity {
    translate: 3px 0;
  }
}
.sec_about_content .details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 885px;
  margin: 0 auto;
  padding: 0;
}
@media screen and (min-width: 769px) {
  .sec_about_content .details {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    translate: 6px 0;
  }
}
@media screen and (max-width: 768px) {
  .sec_about_content .details {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 16px;
  }
}
.sec_about_content .details li {
  margin: 0;
  list-style: none;
}
@media screen and (min-width: 769px) {
  .sec_about_content .details li {
    width: 32.3163841808%;
  }
}
@media screen and (max-width: 768px) {
  .sec_about_content .details li {
    width: calc((100% - 16px) / 2);
  }
}

.sec_bg-blue {
  background-color: #33bbf2;
}

@media screen and (min-width: 769px) {
  .sec_bg-blue {
    padding: 35px 0 35px;
  }
}
@media screen and (max-width: 768px) {
  .sec_bg-blue {
    padding: 20px 0 20px;
  }
}
@media screen and (min-width: 769px) {
  .sec_bg-blue.sec_first {
    padding-top: 165px;
  }
}
@media screen and (min-width: 769px) {
  .sec_bg-blue.sec_last {
    padding-bottom: 65px;
  }
}
.sec_bg-blue_inner {
  width: 95%;
  max-width: 1100px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 20px;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .sec_bg-blue_inner {
    padding: 40px 38px;
  }
}
@media screen and (max-width: 768px) {
  .sec_bg-blue_inner {
    padding: 20px 10px;
  }
}

.sec_start-text .sec_bg-blue_inner {
  padding: 20px 30px;
}
.sec_start-text p {
  color: #00a7e3;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}

@media screen and (min-width: 769px) {
  .sec_start-text p {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 768px) {
  .sec_start-text p {
    font-size: 1.5rem;
  }
}
.sec_start-text .link-btn.orange {
  margin: 34px auto 32px;
  background-color: #f2644e;
}

.sec_reg_step {
  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: 30px;
  padding: 0;
  font-family: "Zen Maru Gothic", sans-serif;
}

.sec_reg_step-item {
  position: relative;
  list-style: none;
  background-color: #e3f3fb;
  border-radius: 20px;
}
@media screen and (min-width: 801px) {
  .sec_reg_step-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 320px;
    min-height: 330px;
    padding: 64px 15px 16px;
  }
}
@media screen and (max-width: 800px) {
  .sec_reg_step-item {
    display: block;
    width: 100%;
    padding: 50px 10px 33px;
  }
}
.sec_reg_step-item:not(:last-child)::after {
  content: "";
  display: block;
  width: 31px;
  height: 35px;
  position: absolute;
  background-image: url(../img/top/arrow-blue-l.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 801px) {
  .sec_reg_step-item:not(:last-child)::after {
    top: 50%;
    right: -25px;
    translate: 0 -50%;
  }
}
@media screen and (max-width: 800px) {
  .sec_reg_step-item:not(:last-child)::after {
    bottom: -16px;
    left: 50%;
    translate: -50% 0;
    rotate: 90deg;
  }
}
.sec_reg_step-item .step {
  display: block;
  position: absolute;
  left: 50%;
  translate: -50% 0;
}
@media screen and (min-width: 801px) {
  .sec_reg_step-item .step {
    height: 4rem;
    top: -20px;
  }
}
@media screen and (max-width: 800px) {
  .sec_reg_step-item .step {
    width: 180px;
    top: -24px;
  }
}
.sec_reg_step-item .heading {
  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;
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.2666666667;
}
@media screen and (min-width: 801px) {
  .sec_reg_step-item .heading {
    height: 4rem;
  }
}
.sec_reg_step-item .text {
  margin: 0 0;
  font-size: 1.125rem;
  font-weight: 500;
}
.sec_reg_step-item .link-btn {
  width: 100%;
  margin: auto auto 0;
  padding-right: 1.5rem;
}
@media screen and (max-width: 800px) {
  .sec_reg_step-item .link-btn {
    margin-top: 1.5rem;
  }
}

.sec_search .link-btn {
  margin: 40px auto 35px;
}
.sec_search figure img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.sec_news h2:not([class]) {
  display: none;
}
.sec_news .news_list {
  margin-top: -21px;
}
.sec_news .news_list ul {
  width: 100%;
  margin: 0 auto 30px auto;
  padding: 0;
}
.sec_news .news_list li {
  width: 100%;
  margin: 0 0 0 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px dashed #b5b5b5;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.sec_news .news_list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  font-family: "Zen Maru Gothic", sans-serif;
  text-decoration: none;
  color: initial;
}
@media screen and (min-width: 769px) {
  .sec_news .news_list a {
    gap: 12px;
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .sec_news .news_list a {
    gap: 10px;
    padding: 12px;
  }
}
.sec_news .news_list a:hover {
  text-decoration: none;
}
.sec_news .news_list a .pub {
  color: #00a7e3;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .sec_news .news_list a .pub {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .sec_news .news_list a .pub {
    font-size: 1rem;
  }
}
.sec_news .news_list a p {
  width: 100%;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .sec_news .news_list a p {
    font-size: 1.125rem;
    font-size: 1.125rem;
    font-weight: 500;
    font-size: 1.125rem;
    font-weight: 500;
  }
}
@media screen and (max-width: 768px) {
  .sec_news .news_list a p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .sec_news .link-btn {
    margin-top: 32px;
  }
}

.sec_recruiting .link-btn.orange {
  margin: 34px auto 32px;
  background-color: #f2644e;
}
.sec_recruiting .link-btn:not(.orange) {
  margin-top: 45px;
}
.sec_recruiting .img_heading_lv3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 0 18px;
  margin: 0 0 20px 5px;
}
.sec_recruiting .img_heading_lv3 img {
  display: block;
  margin-bottom: -2px;
}

.sec_contact_inner {
  width: 95%;
  max-width: 720px;
  min-height: 320px;
  margin: 0 auto;
  padding: 63px 0 60px;
}

.sec_contact_box {
  position: relative;
}
@media screen and (min-width: 769px) {
  .sec_contact_box {
    padding: 68px 15.5555555556% 52px;
  }
}
@media screen and (max-width: 768px) {
  .sec_contact_box {
    padding: 68px 10% 52px;
  }
}
.sec_contact_box > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: fill;
  object-fit: fill;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.sec_contact_box h2 {
  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: 173px;
  height: 47px;
  margin: 0;
  padding: 0;
  position: absolute;
  top: -8px;
  left: 50%;
  translate: -50% 0;
  color: #fff;
  font-size: 1.3125rem;
  font-weight: 900;
  border: none;
  background-image: url(../img/top/bg_contact-heading.svg);
  background-size: cover;
}
.sec_contact_box .address {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 21px;
  font-weight: 500;
  text-align: center;
  line-height: 1;
}
.sec_contact_box .address span {
  display: block;
  margin-top: 16px;
  font-size: 1rem;
}
.sec_contact_box .link-btn {
  margin: 30px auto 27px;
}
.sec_contact_box .tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1;
}
@media screen and (min-width: 769px) {
  .sec_contact_box .tel {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}
@media screen and (max-width: 768px) {
  .sec_contact_box .tel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
}
.sec_contact_box .tel span {
  display: block;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .sec_contact_box .tel span {
    margin-top: 4px;
  }
}

.sec06 .contact {
  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;
  padding: 36px 0 40px;
  background-color: #f2f2f2;
}
.sec06 .contact .contact_item {
  width: 100%;
  max-width: 280px;
}
.sec06 .contact .contact_item + .contact_item {
  margin-left: 24px;
  border-left: 1px solid #bfbfbf;
}
.sec06 .contact .contact_item p {
  text-align: center;
}
.sec06 .contact .contact_item p span:not([class]) {
  font-size: 12px;
}
.sec06 .contact .contact_item p .tel {
  margin: 10px 0 0;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .sec06 .contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .sec06 .contact .contact_item + .contact_item {
    margin-top: 20px;
    margin-left: 0;
    padding-top: 20px;
    border-top: 1px solid #bfbfbf;
    border-left: none;
  }
}
@media screen and (max-width: 768px) {
  .sec07 .accordion .accordion_head {
    padding: 15px 50px;
    font-size: 1.125rem;
  }
  .sec07 .accordion .accordion_head::before {
    font-size: 26px;
  }
  .sec07 .accordion .accordion_head::after {
    right: 20px;
  }
}
.sec_qa .accordion + .accordion {
  margin-top: 10px;
}
.sec_qa .accordion .accordion_head {
  display: block;
  position: relative;
  font-family: "Zen Maru Gothic", sans-serif;
  cursor: pointer;
  background-color: #e3f3fb;
  border-radius: 5px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.sec_qa .accordion .accordion_head p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
}

@media screen and (min-width: 769px) {
  .sec_qa .accordion .accordion_head {
    padding: 21px 66px 21px 60px;
  }
}
@media screen and (max-width: 768px) {
  .sec_qa .accordion .accordion_head {
    padding: 14px 54px 14px 48px;
  }
}
.sec_qa .accordion .accordion_head:hover {
  opacity: 0.7;
}
.sec_qa .accordion[open] .accordion_head {
  border-radius: 5px 5px 0 0;
}
.sec_qa .accordion .accordion_head::before {
  content: "Q";
  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;
  padding-bottom: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  translate: 0 50%;
  color: #fff;
  font-weight: 500;
  line-height: 1;
  background-color: #00a6e3;
  border-radius: 50%;
}
@media screen and (min-width: 769px) {
  .sec_qa .accordion .accordion_head::before {
    width: 32px;
    height: 32px;
    left: 20px;
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 768px) {
  .sec_qa .accordion .accordion_head::before {
    width: 28px;
    height: 28px;
    left: 10px;
    font-size: 1.125rem;
  }
}
.sec_qa .accordion .accordion_head::after {
  content: "+";
  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;
  padding-bottom: 2px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  translate: 0 50%;
  color: #00a6e3;
  font-weight: 500;
  line-height: 1;
  background-color: #fff;
  border-radius: 50%;
}
@media screen and (min-width: 769px) {
  .sec_qa .accordion .accordion_head::after {
    width: 32px;
    height: 32px;
    right: 20px;
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 768px) {
  .sec_qa .accordion .accordion_head::after {
    width: 28px;
    height: 28px;
    right: 10px;
    font-size: 1.125rem;
  }
}
.sec_qa .accordion[open] .accordion_head::after {
  content: "ー";
}
.sec_qa .accordion .accordion_body {
  display: block;
  position: relative;
  font-family: "Zen Maru Gothic", sans-serif;
  background-color: #e3f3fb;
  border-radius: 0 0 5px 5px;
}
.sec_qa .accordion .accordion_body p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
}

@media screen and (min-width: 769px) {
  .sec_qa .accordion .accordion_body {
    padding: 21px 66px 21px 60px;
  }
}
@media screen and (max-width: 768px) {
  .sec_qa .accordion .accordion_body {
    padding: 14px 54px 14px 48px;
  }
}
.sec_qa .accordion .accordion_body::before {
  content: "A";
  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;
  padding-bottom: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  translate: 0 50%;
  color: #f7b100;
  font-weight: 500;
  line-height: 1;
  background-color: #fff;
  border-radius: 50%;
}
@media screen and (min-width: 769px) {
  .sec_qa .accordion .accordion_body::before {
    width: 32px;
    height: 32px;
    left: 20px;
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 768px) {
  .sec_qa .accordion .accordion_body::before {
    width: 28px;
    height: 28px;
    left: 10px;
    font-size: 1.125rem;
  }
}
.sec_qa .accordion .accordion_body::after {
  content: "";
  width: calc(100% - 20px);
  height: 1px;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  background-color: #fff;
}

.sec_how-to-use {
}
.sec_how-to-use_inner {
  max-width: 1100px;
  width: 95%;
  margin: 0 auto;
  padding: 30px 0 50px;
}
.sec_how-to-use h2 {
  padding: 0;
  color: initial;
  text-align: center;
  background-color: initial;
}
.sec_how-to-use .btn-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .sec_how-to-use .btn-list {
    gap: 10px;
  }
}
.sec_how-to-use .btn-list-item {
  width: 100%;
  margin: 0;
}
@media screen and (min-width: 769px) {
  .sec_how-to-use .btn-list-item {
    max-width: 300px;
  }
}
@media screen and (max-width: 768px) {
  .sec_how-to-use .btn-list-item {
    max-width: calc((100% - 10px) / 2);
  }
}
.sec_how-to-use .btn-list-item button {
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;

  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  background-color: #0687b5;
  border-radius: 6px;
}
@media screen and (min-width: 769px) {
  .sec_how-to-use .btn-list-item button {
    height: 65px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .sec_how-to-use .btn-list-item button {
    height: 50px;
    font-size: 1.25rem;
  }
}
.how-to-use-modal {
  display: none;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.how-to-use-modal.is-open {
  display: block;
}
.how-to-use-modal-inner {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding: 20px;
  position: relative;
}
.how-to-use-modal-bg {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
}
.how-to-use-modal-content {
  max-width: 1100px;
  width: calc(100% - 40px);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 1;
  background-color: #fff;
  border-radius: 20px;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .how-to-use-modal-content {
    border-radius: 20px;
  }
}
@media screen and (max-width: 768px) {
  .how-to-use-modal-content {
    border-radius: 10px;
  }
}
.how-to-use-modal-content-inner {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .how-to-use-modal-content-inner {
    padding: 40px 30px 30px;
  }
}
@media screen and (max-width: 768px) {
  .how-to-use-modal-content-inner {
    padding: 30px 10px 10px;
  }
}
.how-to-use-modal-content-inner iframe {
  aspect-ratio: 16 / 9;
  pointer-events: auto;
}
.how-to-use-modal-content-inner .how-to-use-close {
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  pointer-events: auto;

  display: block;

  position: absolute;

  background-color: #000;
  clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
}
@media screen and (min-width: 769px) {
  .how-to-use-modal-content-inner .how-to-use-close {
    width: 20px;
    height: 20px;
    top: 12px;
    right: 12px;
  }
}
@media screen and (max-width: 768px) {
  .how-to-use-modal-content-inner .how-to-use-close {
    width: 16px;
    height: 16px;
    top: 8px;
    right: 8px;
  }
}

/* よくある質問
------------------------------*/
.faq_alist ul {
  list-style: none;
  padding-left: 0;
}
.faq_alist li {
  background-color: #f2f2f2;
  padding: 20px;
  position: relative;
  padding-left: 62px;
}
.faq_alist li::before {
  content: "Q";
  display: block;
  position: absolute;
  left: 15px;
  font-size: 30px;
  color: #00a7e3;
  text-shadow: 0.5px 0.5px #00a7e3, -0.5px 0.5px #00a7e3, -0.5px -0.5px #00a7e3, 0.5px -0.5px #00a7e3, 0.5px 0px #00a7e3, 0px 0.5px #00a7e3, -0.5px 0px #00a7e3, 0px -0.5px #00a7e3;
}
.faq_alist li h3 {
  margin: 3px 0 20px;
}

/* プログラムサンプル
------------------------------*/
.program_info {
}

.program_info .info_box {
  padding: 20px 0 0;
  margin: 0 auto 30px auto;
}

.program_info .info_box_inner,
.program_info .info_box_inner {
  position: relative;
  border: 2px solid #f8b100;
  padding: 15px;
  box-sizing: border-box;
  background: #fff8eb;
  border-radius: 10px;
  text-align: center;
}

.program_info .info_box_inner p,
.program_info .info_box_inner p {
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  width: 80%;
  background: #f8b100;
  color: #ffffff;
  text-align: center;
  padding: 5px;
  box-sizing: border-box;
  margin: -30px auto 20px auto;
  border-radius: 5px;
  font-weight: bold;
}

.program_info .info_box_inner figure,
.program_info .info_box_inner figure {
  text-align: center;
/*
 height: 50px;
  overflow: hidden;
 */
}

.program_info .info_box_inner figure img,
.program_info .info_box_inner figure img {
  max-width: 100%;
}

.program_info .show_more,
.program_info .show_more2 {
  position: absolute;
  bottom: 20px;
  left: 0px;
  width: 100%;
  height: 17px;
  padding-top: 44px;
  text-align: center;
  line-height: 10px;
  background: linear-gradient(180deg, rgb(255, 248, 235, 0) 0%, rgb(255, 248, 235, 1) 70%);
  cursor: pointer;
  transition: bottom 0.2s;
}
.program_info .active {
  background: none;
  bottom: -30px;
}
