.mainv {
  background-color: #f9f9f9;
  padding: 40px 0 80px;
  position: relative;
  margin-bottom: 40px;
}
.mainv .mvSlide {
  margin: 0 !important;
}
.mainv .mvSlide .slick-slide {
  padding: 0 5px;
}
.mainv .mvSlide .slick-slide img {
  width: 800px;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.mainv .mvSlide .slick-slide .readLink {
  width: 100%;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0em;
  font-weight: 500;
  text-align: center;
  text-decoration: underline;
  margin: 8px auto 0;
  max-width: 700px;
}
@media screen and (min-width: 769px) {
  .mainv .mvSlide .slick-slide .readLink:hover {
    text-decoration: none;
  }
}
.mainv .mvSlide .slick-dots {
  bottom: -50px;
}
.mainv .mvSlide .slick-dots li {
  width: 12px;
  height: 12px;
  margin: 0 10px;
  position: relative;
}
.mainv .mvSlide .slick-dots li button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  padding: 0;
  background: #bcc6d4;
  border-radius: 100%;
  display: block;
  cursor: pointer;
  -webkit-transition: width ease 0.3s, height ease 0.3s, background-color ease 0.3s;
  transition: width ease 0.3s, height ease 0.3s, background-color ease 0.3s;
}
.mainv .mvSlide .slick-dots li button::before {
  content: none;
}
.mainv .mvSlide .slick-dots li.slick-active button {
  width: 12px;
  height: 12px;
  background: #014099;
}
.mainv .mvSlide .slick-prev {
  left: calc((100vw - 1000px - 15px) / 2);
}
.mainv .mvSlide .slick-prev::before {
  background-repeat: no-repeat;
  background-size: 6px auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6.165' height='9.687' viewBox='0 0 6.165 9.687'%3E%0A %3Cpath id='%E3%83%91%E3%82%B9_2215' data-name='%E3%83%91%E3%82%B9 2215' d='M-7069.492-5247.477l4.145-4.051,4.144,4.051' transform='translate(-5246.762 7070.191) rotate(90)' fill='none' stroke='%23ffffff' stroke-width='2'/%3E%0A%3C/svg%3E%0A%0A");
  -webkit-transform: translate(-50%, -50%) scale(-1, 1);
          transform: translate(-50%, -50%) scale(-1, 1);
}
.mainv .mvSlide .slick-next {
  right: calc((100vw - 1000px - 15px) / 2);
}
.mainv .mvSlide .slick-next::before {
  background-repeat: no-repeat;
  background-size: 6px auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6.165' height='9.687' viewBox='0 0 6.165 9.687'%3E%0A %3Cpath id='%E3%83%91%E3%82%B9_2215' data-name='%E3%83%91%E3%82%B9 2215' d='M-7069.492-5247.477l4.145-4.051,4.144,4.051' transform='translate(-5246.762 7070.191) rotate(90)' fill='none' stroke='%23ffffff' stroke-width='2'/%3E%0A%3C/svg%3E%0A%0A");
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.mainv .mvSlide .slick-prev, .mainv .mvSlide .slick-next {
  position: absolute;
  top: 225px;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  background-color: rgba(27, 64, 152, 0.7);
  z-index: 1;
}
.mainv .mvSlide .slick-prev::before, .mainv .mvSlide .slick-next::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 12;
  opacity: 1;
}
@media screen and (max-width: 1050px) {
  .mainv .mvSlide .slick-prev {
    left: 10px;
  }
  .mainv .mvSlide .slick-next {
    right: 10px;
  }
}

.news {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 100px;
}
.news__item {
  position: relative;
  border-bottom: 1px solid #DEDEDE;
}
.news__item:not(:last-child) {
  margin-bottom: 15px;
}
.news__body,
.news span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0em;
  font-weight: 500;
  padding: 0 40px 15px 20px;
  -webkit-transition: color ease 0.3s;
  transition: color ease 0.3s;
  position: relative;
}
.news__body::before,
.news span::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#1B4098), color-stop(60%, #1B4098), color-stop(40%, #DEDEDE), to(#DEDEDE));
  background: linear-gradient(90deg, #1B4098 0%, #1B4098 60%, #DEDEDE 40%, #DEDEDE 100%);
  position: absolute;
  bottom: -1px;
  left: 0;
  -webkit-transition: width 0.5s;
  transition: width 0.5s;
}
.news a {
  position: relative;
  background-repeat: no-repeat;
  background-size: 6px auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6.165' height='9.687' viewBox='0 0 6.165 9.687'%3E%0A %3Cpath id='%E3%83%91%E3%82%B9_2215' data-name='%E3%83%91%E3%82%B9 2215' d='M-7069.492-5247.477l4.145-4.051,4.144,4.051' transform='translate(-5246.762 7070.191) rotate(90)' fill='none' stroke='%231b4098' stroke-width='2'/%3E%0A%3C/svg%3E%0A%0A");
  background-position: right 20px top 10px;
}
@media screen and (min-width: 769px) {
  .news a:hover {
    color: #1B4098;
  }
  .news a:hover::before {
    width: 100%;
  }
}
.news__day {
  margin-right: 15px;
}
.block01 {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 100px;
}
.block01 .topTitle {
  margin-bottom: 55px;
}
.block01 .aboutBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 46px;
}
.block01 .aboutBox__item {
  width: 28%;
}
.block01 .aboutBox__title {
  color: #1B4098;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 33px;
}
.block01 .aboutBox .point {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 700;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.block01 .aboutBox .point span {
  font-size: 26px;
}
.block01 .aboutBox .title {
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0em;
  font-weight: 700;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.block01 .aboutBox img {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  position: relative;
  z-index: -1;
}
.block01 .aboutBox img.img01 {
  margin: 15px 0 13px;
}
.block01 .aboutBox img.img02 {
  margin: -14px 0 -2px;
}
.block01 .aboutBox img.img03 {
  margin: 9px 0 12px;
}
.block01 .aboutBox__main {
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0em;
  font-weight: 500;
}

.block02 {
  margin-bottom: 75px;
  padding: 60px 0 60px;
  background-color: #f9f9f9;
}
.block02__head {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 45px;
}
.block02 .topTitle {
  margin-bottom: 25px;
}
.block02 .read {
  text-align: center;
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.block02__main {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0px;
}
.block02 .learn {
  /* background-color: #f9f9f9; */
  /* padding: 60px; */
}
.block02 .learn:not(:last-child) {
  margin-bottom: 40px;
}
.block02 .learn .headBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.block02 .learn .headBox__photo {
  width: 37%;
  aspect-ratio: 1/1;
}
.block02 .learn .headBox__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.block02 .learn .headBox__details {
  width: 50%;
  width: 58%;
}
.block02 .learn .headBox .title {
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 400;
  position: relative;
  color: #30A6DF;
  padding: 25px 0 0 80px;
  min-height: 70px;
  margin-bottom: 20px;
}
.block02 .learn .headBox .title::before {
  content: "";
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  background: #30A6DF url(../../img/index/learn_icon01.svg) no-repeat center;
  background-size: 36px auto;
  position: absolute;
  top: 0;
  left: 0;
}
.block02 .learn .headBox .title span {
  font-size: 22px;
}
.block02 .learn .headBox .text {
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: 0.025em;
  font-weight: 500;
}
.block02 .learn .headBox .point {
  border: 1px solid #1B4098;
  border-radius: 5px;
  margin-top: 20px;
}
.block02 .learn .headBox .point dt {
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: 0em;
  font-weight: 700;
  background-color: #1B4098;
  color: #fff;
  padding: 0 20px;
}
.block02 .learn .headBox .point dd {
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0em;
  font-weight: 500;
  padding: 18px 20px 20px;
}
.block02 .learn .headBox .point ul li {
  position: relative;
  padding-left: 10px;
}
.block02 .learn .headBox .point ul li:not(:last-child) {
  margin-bottom: 10px;
}
.block02 .learn .headBox .point ul li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background: #BCC6D4;
  position: absolute;
  top: 7px;
  left: 0;
}
.block02 .learn .btn01 {
  margin: 40px auto 0;
}
.block02 .learn.typeSchool .headBox .title {
  color: #30A6DF;
}
.block02 .learn.typeSchool .headBox .title::before {
  background: #30A6DF url(../../img/index/learn_icon01.svg) no-repeat center;
  background-size: 36px auto;
}
.block02 .learn.typeSchool .btn01 {
  margin-top: 10px;
}
.block02 .learn.typeHome .headBox .title {
  color: #33AB8C;
}
.block02 .learn.typeHome .headBox .title::before {
  background: #33AB8C url(../../img/index/learn_icon02.svg) no-repeat center;
  background-size: 22px auto;
}
.block02 .learn .singleBox .singleBoxTitle {
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: 0.025em;
  font-weight: 500;
  border-bottom: 1px solid #EA8282;
  background: url(../../img/index/learn_titleIcon.svg) no-repeat left top 5px;
  background-size: 19px auto;
  padding: 0px 0 10px 28px;
  margin-bottom: 20px;
}
.block02 .learn .singleBox .singleBoxTitle span {
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: 0em;
  font-weight: 700;
  color: #1B4098;
  margin-right: 10px;
}
.block02 .learn .singleBox .courseMap {
  background-color: #fff;
  border-radius: 5px;
  position: relative;
  margin-bottom: 20px;
}
.block02 .learn .singleBox .courseMap__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.block02 .learn .singleBox .courseMap__cell {
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 700;
  color: #959595;
  width: 25%;
  text-align: center;
  height: 163px;
  padding: 15px 10px;
}
.block02 .learn .singleBox .courseMap__cell:not(:last-child) {
  border-right: 1px dashed #DEDEDE;
}
.block02 .learn .singleBox .courseMap__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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  height: 36px;
  text-align: center;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 700;
  color: #EA8282;
  background-color: #fdf0ee;
  background-repeat: no-repeat;
  background-size: 6px auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6.165' height='9.687' viewBox='0 0 6.165 9.687'%3E%0A %3Cpath id='%E3%83%91%E3%82%B9_2215' data-name='%E3%83%91%E3%82%B9 2215' d='M-7069.492-5247.477l4.145-4.051,4.144,4.051' transform='translate(-5246.762 7070.191) rotate(90)' fill='none' stroke='%23EA8282' stroke-width='2'/%3E%0A%3C/svg%3E%0A%0A");
  background-position: right 15px center;
  border-radius: 36px;
  position: absolute;
  z-index: 1;
  padding: 0 25px;
  -webkit-transition: color ease 0.3s, background-color ease 0.3s, background-image ease 0.3s;
  transition: color ease 0.3s, background-color ease 0.3s, background-image ease 0.3s;
}
@media screen and (min-width: 769px) {
  .block02 .learn .singleBox .courseMap__btn:hover {
    color: #fff;
    background-color: #EA8282;
    background-repeat: no-repeat;
    background-size: 6px auto;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6.165' height='9.687' viewBox='0 0 6.165 9.687'%3E%0A %3Cpath id='%E3%83%91%E3%82%B9_2215' data-name='%E3%83%91%E3%82%B9 2215' d='M-7069.492-5247.477l4.145-4.051,4.144,4.051' transform='translate(-5246.762 7070.191) rotate(90)' fill='none' stroke='%23ffffff' stroke-width='2'/%3E%0A%3C/svg%3E%0A%0A");
  }
}
.block02 .learn .singleBox .courseAbout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.block02 .learn .singleBox .courseAbout .courseAboutBody {
  width: 49%;
  display: block;
  border: 1px solid #EA8282;
  border-radius: 5px;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0em;
  font-weight: 500;
  margin-bottom: 20px;
  background-repeat: no-repeat;
  background-size: 6px auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6.165' height='9.687' viewBox='0 0 6.165 9.687'%3E%0A %3Cpath id='%E3%83%91%E3%82%B9_2215' data-name='%E3%83%91%E3%82%B9 2215' d='M-7069.492-5247.477l4.145-4.051,4.144,4.051' transform='translate(-5246.762 7070.191) rotate(90)' fill='none' stroke='%23EA8282' stroke-width='2'/%3E%0A%3C/svg%3E%0A%0A");
  background-position: right 10px bottom 7px;
  padding: 13px 20px 16px;
  position: relative;
  -webkit-transition: background-color ease 0.3s;
  transition: background-color ease 0.3s;
}
@media screen and (min-width: 769px) {
  .block02 .learn .singleBox .courseAbout .courseAboutBody:hover {
    background-color: #fff;
  }
}
.block02 .learn .singleBox .courseAbout .courseAboutBody:has(> a) {
  padding: 0;
  background: none;
}
.block02 .learn .singleBox .courseAbout .courseAboutBody > a {
  border-radius: 5px;
  display: block;
  width: 100%;
  height: 100%;
  padding: 13px 20px 45px;
}
.block02 .learn .singleBox .courseAbout .title {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0em;
  font-weight: 700;
  color: #EA8282;
  margin-bottom: 5px;
}
.block02 .learn .singleBox .courseAbout .btn {
  position: absolute;
  bottom: 18px;
  left: 20px;
  z-index: 1;
  padding-left: 17px;
}
.block02 .learn .singleBox .courseAbout .btn::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  border-radius: 100%;
  background-color: #33AB8C;
  background-image: url(../../img/index/question.svg);
  background-size: 5px auto;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 5px;
  left: 0;
}
.block02 .learn .singleBox .courseAbout .btn a {
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0em;
  font-weight: 500;
  color: #EA8282;
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  .block02 .learn .singleBox .courseAbout .btn a:hover {
    text-decoration: none;
  }
}
.block02 .learn .singleBox.typeSchool01 {
  /*margin-top: 40px;*/
  margin-bottom: 20px;
}
.block02 .learn .singleBox.typeSchool01 .singleBoxTitle {
  border-bottom: 1px solid #EA8282;
}
.block02 .learn .singleBox.typeSchool01 .courseMap__cell {
  height: 140px;
}
.block02 .learn .singleBox.typeSchool01 .courseMap__btn {
  color: #EA8282;
  background-color: #fdf0ee;
  background-repeat: no-repeat;
  background-size: 6px auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6.165' height='9.687' viewBox='0 0 6.165 9.687'%3E%0A %3Cpath id='%E3%83%91%E3%82%B9_2215' data-name='%E3%83%91%E3%82%B9 2215' d='M-7069.492-5247.477l4.145-4.051,4.144,4.051' transform='translate(-5246.762 7070.191) rotate(90)' fill='none' stroke='%23EA8282' stroke-width='2'/%3E%0A%3C/svg%3E%0A%0A");
  background-position: right 15px center;
}
@media screen and (min-width: 769px) {
  .block02 .learn .singleBox.typeSchool01 .courseMap__btn:hover {
    color: #fff;
    background-color: #EA8282;
    background-repeat: no-repeat;
    background-size: 6px auto;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6.165' height='9.687' viewBox='0 0 6.165 9.687'%3E%0A %3Cpath id='%E3%83%91%E3%82%B9_2215' data-name='%E3%83%91%E3%82%B9 2215' d='M-7069.492-5247.477l4.145-4.051,4.144,4.051' transform='translate(-5246.762 7070.191) rotate(90)' fill='none' stroke='%23ffffff' stroke-width='2'/%3E%0A%3C/svg%3E%0A%0A");
  }
}
.block02 .learn .singleBox.typeSchool01 .courseMap__btn.mapBtn01 {
  top: 88px;
  left: 2%;
  width: 70%;
}
.block02 .learn .singleBox.typeSchool01 .courseMap__btn.mapBtn02 {
  top: 42px;
  left: 27%;
  width: 20%;
  padding: 0 25px 0 15px;
}
.block02 .learn .singleBox.typeSchool01 .courseAbout .courseAboutBody {
  border: 1px solid #EA8282;
  background-repeat: no-repeat;
  background-size: 6px auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6.165' height='9.687' viewBox='0 0 6.165 9.687'%3E%0A %3Cpath id='%E3%83%91%E3%82%B9_2215' data-name='%E3%83%91%E3%82%B9 2215' d='M-7069.492-5247.477l4.145-4.051,4.144,4.051' transform='translate(-5246.762 7070.191) rotate(90)' fill='none' stroke='%23EA8282' stroke-width='2'/%3E%0A%3C/svg%3E%0A%0A");
}
.block02 .learn .singleBox.typeSchool01 .courseAbout .title {
  color: #EA8282;
}
.block02 .learn .singleBox.typeSchool01 .courseAbout .btn a {
  color: #EA8282;
}
.block02 .learn .singleBox.typeSchool02 .singleBoxTitle {
  border-bottom: 1px solid #33AB8C;
}
.block02 .learn .singleBox.typeSchool02 .courseMap__cell {
  height: 188px;
}
.block02 .learn .singleBox.typeSchool02 .courseMap__btn {
  color: #33AB8C;
  background-color: #D3EBE4;
  background-repeat: no-repeat;
  background-size: 6px auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6.165' height='9.687' viewBox='0 0 6.165 9.687'%3E%0A %3Cpath id='%E3%83%91%E3%82%B9_2215' data-name='%E3%83%91%E3%82%B9 2215' d='M-7069.492-5247.477l4.145-4.051,4.144,4.051' transform='translate(-5246.762 7070.191) rotate(90)' fill='none' stroke='%2333AB8C' stroke-width='2'/%3E%0A%3C/svg%3E%0A%0A");
  background-position: right 15px center;
}
@media screen and (min-width: 769px) {
  .block02 .learn .singleBox.typeSchool02 .courseMap__btn:hover {
    color: #fff;
    background-color: #33AB8C;
    background-repeat: no-repeat;
    background-size: 6px auto;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6.165' height='9.687' viewBox='0 0 6.165 9.687'%3E%0A %3Cpath id='%E3%83%91%E3%82%B9_2215' data-name='%E3%83%91%E3%82%B9 2215' d='M-7069.492-5247.477l4.145-4.051,4.144,4.051' transform='translate(-5246.762 7070.191) rotate(90)' fill='none' stroke='%23ffffff' stroke-width='2'/%3E%0A%3C/svg%3E%0A%0A");
  }
}
.block02 .learn .singleBox.typeSchool02 .courseMap__btn.mapBtn01 {
  top: 42px;
  left: 2%;
  width: 20%;
  padding: 0 25px 0 15px;
}
.block02 .learn .singleBox.typeSchool02 .courseMap__btn.mapBtn02, .block02 .learn .singleBox.typeSchool02 .courseMap__btn.mapBtn03, .block02 .learn .singleBox.typeSchool02 .courseMap__btn.mapBtn04 {
  top: 42px;
  left: 27%;
  width: 70%;
}
.block02 .learn .singleBox.typeSchool02 .courseMap__btn.mapBtn03 {
  top: 88px;
}
.block02 .learn .singleBox.typeSchool02 .courseMap__btn.mapBtn04 {
  top: 134px;
}
.block02 .learn .singleBox.typeSchool02 .courseAbout .courseAboutBody {
  border: 1px solid #33AB8C;
}
.block02 .learn .singleBox.typeSchool02 .courseAbout .courseAboutBody > a {
  background-repeat: no-repeat;
  background-size: 6px auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6.165' height='9.687' viewBox='0 0 6.165 9.687'%3E%0A %3Cpath id='%E3%83%91%E3%82%B9_2215' data-name='%E3%83%91%E3%82%B9 2215' d='M-7069.492-5247.477l4.145-4.051,4.144,4.051' transform='translate(-5246.762 7070.191) rotate(90)' fill='none' stroke='%2333AB8C' stroke-width='2'/%3E%0A%3C/svg%3E%0A%0A");
  background-position: right 10px bottom 10px;
}
.block02 .learn .singleBox.typeSchool02 .courseAbout .title {
  color: #33AB8C;
}
.block02 .learn .singleBox.typeSchool02 .courseAbout .btn a {
  color: #33AB8C;
}

.block03 {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 100px;
}
.block03 .topTitle {
  margin-bottom: 45px;
}
.block03 .menuBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.block03 .menuBox__item {
  width: 32%;
}
.block03 .menuBox__body {
  border: 1px solid #DEDEDE;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  min-height: 213px;
  padding: 10px;
  position: relative;
  -webkit-transform: border-color ease 0.3s;
          transform: border-color ease 0.3s;
}
.block03 .menuBox__body::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: 6px auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6.165' height='9.687' viewBox='0 0 6.165 9.687'%3E%0A %3Cpath id='%E3%83%91%E3%82%B9_2215' data-name='%E3%83%91%E3%82%B9 2215' d='M-7069.492-5247.477l4.145-4.051,4.144,4.051' transform='translate(-5246.762 7070.191) rotate(90)' fill='none' stroke='%231b4098' stroke-width='2'/%3E%0A%3C/svg%3E%0A%0A");
  width: 6px;
  height: 10px;
  position: absolute;
  right: 12px;
  bottom: 10px;
  opacity: 0;
  -webkit-transition: opacity ease 0.3s;
  transition: opacity ease 0.3s;
}
@media screen and (min-width: 769px) {
  .block03 .menuBox__body:hover {
    border-color: #1B4098;
  }
  .block03 .menuBox__body:hover img {
    opacity: 1;
  }
  .block03 .menuBox__body:hover::before {
    opacity: 1;
  }
}
.block03 .menuBox .title {
  color: #1B4098;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin: 20px 0 10px;
}
.block03 .menuBox .text {
  font-size: 13px;
  line-height: 2.2;
  letter-spacing: 0.025em;
  font-weight: 500;
}
.block03 .menuBox img.img02 {
  margin: 0 0 5px;
}

.block04 {
  background: #fafafa;
  padding: 100px 0;
}
.block04 .topTitle {
  margin-bottom: 65px;
}
.block04 .btn01 {
  display: block;
  margin: 35px auto 0;
}

.block05 {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  padding-top: 80px;
  padding-bottom: 60px;
}
.block05 .bannerBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.block05 .bannerBox li {
  width: 48%;
}
.block05 .bannerBox li a {
  position: relative;
  background: #fff;
  border: 0 solid #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
}
.block05 .bannerBox li a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 0 solid #014099;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 0;
  -webkit-transition: border-width 0.2s ease-in;
  transition: border-width 0.2s ease-in;
}
@media screen and (min-width: 769px) {
  .block05 .bannerBox li a:hover::after {
    border-width: 5px;
    -webkit-transition: border-width 0.2s ease;
    transition: border-width 0.2s ease;
  }
  .block05 .bannerBox li a:hover img {
    opacity: 1;
  }
}