/* ------------------------------------------------
 */
.top-feature-catch {
  text-align: center;
  font-weight: bold;
  margin-bottom: 60px;
}

@media screen and (min-width: 768px) {
  .top-feature-catch {
    font-size: 32px;
  }
}

@media screen and (max-width: 767px) {
  .top-feature-catch {
    font-size: 20px;
  }
}

.top-feature {
  position: relative;
}

.fig-round-w01 {
  position: absolute;
  right: -3vw;
  top: 1vw;
  max-width: 140px;
  width: 25vw;
  animation: yurayura 7s linear infinite;
}

/* ------------------------------------------------
 */

.top-course-bg {
  background: var(--bg-course);
}

/* 
.top-course-desc {
  font-weight: 500;
} */

.top-course-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px 12px;
}

.top-course-list li {
  width: 100%;
}


@media screen and (max-width: 767px) {
  .top-course-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 15px;
  }
}

.top-course-list .-cnt {
  text-align: left;
  background: #fff;
  box-shadow: var(--box-shadow);
  padding: 0 8px;
  font-size: 13px;
  min-height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-course-list .arrow {
  position: relative;
  padding-right: 1.5em;
  width: 100%;
}


.top-course-list .arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  content: "";
  background: url(../images/arrow-r03.svg);
  background-size: cover;
  width: 16px;
  height: 16px;
}

.top-course-list .-fig {
  width: 100%;
}

.top-course-list .-fig img {
  aspect-ratio: 85/57;
  width: 100%;

}


.top-course-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 5vw;
  margin-top: 50px;
}

.top-course-text {
  position: relative;
}

.top-course-img {
  width: 50%;
  position: relative;
}

@media screen and (max-width: 767px) {
  .top-course-flex {
    margin: 0;
  }

  .top-course-text {
    width: 100%;
    font-size: 16px;
  }

  .top-course-img {
    width: 100%;
  }

  .top-course-text .p-sec-h {
    margin-bottom: .5em;
  }

  .top-course-text .desc {
    margin-bottom: 1em;
  }

}

.top-course-btn-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media screen and (max-width: 767px) {
.top-course-btn-list {
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;

}

}
.top-course-btn-list li {
  
}

.top-course-btn {
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  max-width: 252px;
  width: 100%;
  padding: .7em 2em;
  position: relative;
  transition: all .7s;
  margin: auto;
  border-radius: 8px;
  border: solid 2px var(--sub-color);
  background: #fff;
  color: var(--sub-color);
  box-shadow: var(--box-shadow);
}
@media screen and (max-width: 767px) {
.top-course-btn {
  /* padding: .5em 1em; */
    font-size: min(3vw, 14px);
}
}

.top-course-btn::after {
  position: absolute;
  right: 16px;
  content: "";
  background: url(../images/arrow-r.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  rotate: 90deg;
}


.top-course-btn:hover {
  box-shadow: none;
}

.top-course-btn-img {
  width: 40%;
}

.top-course-btn-ttl {
  width: 85%;
  font-size: min(1.5vw, 20px);
  font-weight: bold;
  padding: 0 1.2em;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .top-course-btn-ttl {
    font-size: min(3vw, 20px);
  }
}

.top-course-btn-ttl-icon {
  margin-right: 1em;
}

@media screen and (max-width: 767px) {
  .top-course-btn-ttl-icon {
    width: 24px;
  }
}

.top-course-btn-ttl .fa-circle-down {
  position: absolute;
  right: 5%;
}

/* ------------ */

.top-course-sec {
  position: relative;
}

/* .fig-round03 {
  position: absolute;
  left: 36vw;
  top: 5vw;
  max-width: 134px;
  width: 13vw;
  -webkit-animation: rotation 30s infinite linear;
  animation: rotation 30s infinite linear;
}

@media screen and (max-width: 767px) {
  .fig-round03 {
    top: 3vw;
    left: 80vw;
  }
}

@media screen and (max-width: 480px) {
  .fig-round03 {
    top: 11vw;
  }
} */

.top-course-sec-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 1em;
}

.top-course-sec-flex:nth-child(even) {
  flex-direction: row-reverse;
}

.top-course-sec-content {
  width: 50%;
}

.top-course-sec-img {
  width: 46%;
  position: relative;
}

@media screen and (max-width: 767px) {
  .top-course-sec-content {
    width: 100%;
    order: 1;
  }

  .top-course-sec-img {
    width: 100%;
    order: 0;
    margin-bottom: 16px;
  }

  .top-course-sec-img img {
    width: 100%;
  }
}

.btn-course-wrap {
  display: flex;
  gap: 20px;
}

.btn-course {
  background: #FFFFFF;
  box-shadow: var(--box-shadow);
  width: 100%;
  max-width: 260px;
  padding: 16px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.btn-course::after {
  content: "";
  background: url(../images/arrow-r03.svg);
  background-size: cover;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  margin: auto;
}

@media screen and (max-width: 767px) {
.btn-course {
  max-width: 180px;
}
}

/* .top-course-sec .icon-mic {
  margin-right: .5em;
}

@media screen and (max-width: 767px) {
  .top-course-sec .icon-mic {
    width: 32px;
  }
}

.top-course-sec .btn-arrow {
  margin-right: 30px;
} */

.top-course-sec-desc {
  font-weight: 500;
}

.top-course-sec .course-list li {
  margin-bottom: 20px;
  width: calc((100% - 80px) / 5);
  margin-right: 20px;
}

.top-course-sec .course-list li:nth-child(5n) {
  margin-right: 0;
}

@media screen and (max-width: 767px) {

  .top-course-sec .course-list li {
    margin-bottom: 0;
    width: calc((100% - 16px) / 2);
    margin-right: 16px;
  }

  .top-course-sec .course-list li:nth-child(5n) {
    margin-right: 16px;
  }

  .top-course-sec .course-list li:nth-child(2n) {
    margin-right: 0;
  }
}

.top-course-sec.-kids {
  padding-bottom: 80px;
}


.top-course-sec-h {
  line-height: 2;
}

.-instrument .top-course-sec-h .-inner {
  margin-left: auto;
}

.top-course-sec-h .-link {
  padding-bottom: 1em;
}

@media screen and (max-width: 767px) {
  .top-course-sec-h .-link {
    margin-top: 0;
  }

}

.top-course-sec-h .-link a {
  color: inherit;
}




.top-course-sec-h>* {
  padding-bottom: .7em;
}


.top-course-sec-ttl {
  font-size: 24px;
  font-weight: bold;
  color: var(--sub-color);
  display: inline-block;
}

@media screen and (max-width: 767px) {

  .top-course-sec-h>* {
    /* padding-top: 44px; */
    padding-bottom: 8px;
  }


  .top-course-sec-ttl {
    font-size: 18px;
  }
}



/* ------------ */


.course-list dt,
.course-list dd {
  margin: 0;
}

.course-list dd {
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .course-list.-detail dt {
    font-size: 14px;
  }
}

/* ------------------------------------------------
*/

.course-swiper img {
  aspect-ratio: 1/1;
  width: 100%;
}

@media screen and (min-width: 768px) {

  .course-swiper {
    overflow: visible;
  }

  .course-swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    transform: none !important; /* Swiper無効化対策 */
  }

  .course-swiper .swiper-slide {
    width: auto !important;
  }
}


/* ------------------------------------------------
   top-school
*/

.top-school {
  position: relative;
}

/* .fig-round-w02 {
  position: absolute;
  left: 13vw;
  top: -5vw;
  max-width: 190px;
  width: 17vw;
  animation: yurayura 7s linear infinite;
}

@media screen and (max-width: 767px) {
  .fig-round-w02 {
    left: 3vw;
  }
}

.fig-round04 {
  position: absolute;
  right: 20vw;
  top: -13vw;
  max-width: 196px;
  width: 21vw;
  -webkit-animation: rotation 30s infinite linear;
  animation: rotation 30s infinite linear;
}

@media screen and (max-width: 767px) {
  .fig-round04 {
    right: 3vw;
  }
} */



.top-school-bg {
  background: #F9F9F9;
}

.top-school-list {
  display: flex;
  flex-wrap: wrap;
}

.top-school-list li {
  width: calc((100% - 76px)/ 3);
  margin-right: 38px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .top-school-list li {
    width: 100%;
    margin-right: 0;
    margin-top: 20px;
  }

  .top-school-list li:first-child {
    margin-top: 0;
  }
}

.top-school-list li:nth-child(3n) {
  margin-right: 0;
}

.top-school-name {
  font-size: 20px;
  line-height: 1.4;
}

.top-school-name span {
  font-size: 14px;
}

/* ------------------------------------------------
   top-teacher
*/

.top-teacher-bg {
  background: #F9F9F9;
}

.top-teacher {
  position: relative;
}

.fig-round-w03 {
  position: absolute;
  right: 7vw;
  top: -7vw;
  max-width: 256px;
  width: 18vw;
  animation: yurayura 7s linear infinite;
}

.top-teacher-list.pctb-tile-4>* {
  margin: 0;
  flex: unset;
  max-width: unset;
}

.top-teacher-list li {
  background: #FFF;
  margin-bottom: 40px;
  width: calc(100% / 4);
}

@media screen and (max-width: 767px) {
  .top-teacher-list li {
    width: calc(100% / 2);
  }
}


.top-teacher-list .-fig {
  width: 100%;
  margin: auto;
  position: relative;
  overflow: hidden;
}

.top-teacher-list .-fig img {
  width: 100%;
  aspect-ratio: 320/180;
  object-fit: cover;
  height: 100%;
  transition: 1s all;
}

.top-teacher-list .-fig img:hover {
  transform: scale(1.1, 1.1);
  transition: 1s all;
}

.top-teacher-list a:hover {
  opacity: 1;
}

.top-teacher-list .-title {
  font-weight: bold;
  font-size: 14px;
  margin: 0;
  background: rgba(0, 0, 0, 0.4);
  padding: 1em;
  text-align: center;
  color: #fff;
  position: absolute;
  bottom: 0;
  width: 100%;
}




/* ------------------------------------------------
top-student
 */



.top-student {
  position: relative;
}



/* ------------------------------------------------
top-blog
 */

.top-blog {
  background: #F9E6DF;
}

.blog-slider {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}


.blog-slider li {
  margin: 0 1em;
}

/* ------------------------------------------------
top-column
 */



/* .top-column-bg {
  background: #fff;
} */

.top-column img {
  width: 100%;
  max-width: 580px;
}


@media screen and (max-width: 767px) {
  .top-column.p-sec {
    padding-bottom: 64px;
  }
}

/* ------------------------------------------------
   最新の投稿
*/

.top-news-bg {
  background: var(--bg-news);
}

.recent-posts {
  font-size: 14px;
}

.recent-posts .post-list .-title {
  margin-top: 0;
}