@media screen and (width <= 767px) {
  .section__block__title .-pc {
    display: none;
  }
}

.tab__wrap {
  border-color: var(--color-light);
}

@media screen and (width <= 767px) {
  .tab__list {
    padding: 0 0.8rem;
    gap: 0.8rem;
  }
}

.tab__item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 9rem;
  margin-bottom: 0;
  padding: 2.2rem 0 1.4rem;
  border-color: var(--color-light);
  border-bottom: 0;
  font-size: 2rem;
  line-height: 1;
  color: var(--color-primary);
  text-decoration: none;
}
@media screen and (767px < width <= 820px) {
  .tab__item {
    font-size: 1.8rem;
  }
}
@media screen and (width <= 767px) {
  .tab__item {
    width: calc((100% - 2.4rem) / 4);
    height: 7.2rem;
    padding: 1rem 0 0.5rem;
    border-radius: 1rem 1rem 0 0;
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.2307692308;
  }
}
.tab__item::after {
  content: "";
  width: 2rem;
  height: 2rem;
  display: block;
  background: var(--img--arrow--link) no-repeat 0 0;
  background-size: contain;
  rotate: 90deg;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.tab__item.-active {
  height: 11rem;
  padding-top: 3rem;
  background-color: var(--color-light);
}
.tab__item.-active.-preschool, .tab__item.-active.-kindergarten, .tab__item.-active.-baby {
  color: #fff;
}
.tab__item.-active.-preschool::after, .tab__item.-active.-kindergarten::after, .tab__item.-active.-baby::after {
  background-image: var(--img--arrow--link-active);
  rotate: 0deg;
}
@media screen and (width <= 767px) {
  .tab__item.-active {
    height: 8rem;
    padding-top: 1.5rem;
  }
}
.tab__item .-sp {
  display: none;
}
@media screen and (width <= 767px) {
  .tab__item .-sp {
    display: block;
  }
}

.top__block {
  padding-top: 6rem;
}

.class__title {
  margin-bottom: 1.6rem;
  font-size: 4.4rem;
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
}
@media screen and (width <= 767px) {
  .class__title {
    font-size: 3.6rem;
    line-height: 1.4;
  }
}
.class__title > span {
  display: inline-block;
}

.class__target {
  margin-bottom: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (width <= 767px) {
  .class__target {
    font-size: 1.4rem;
  }
}
.class__target .class__target__content {
  position: relative;
  display: inline-block;
  padding: 0.8rem 4rem;
}
@media screen and (width <= 767px) {
  .class__target .class__target__content {
    padding: 1rem 3rem;
  }
}
.class__target .class__target__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-light);
  border-radius: calc(infinity * 1px);
  opacity: 0.15;
}
.class__target .class__target__content.-class2 {
  padding: 2.4rem 4rem;
}
@media screen and (width <= 767px) {
  .class__target .class__target__content.-class2 {
    padding: 2rem 3rem;
  }
}
.class__target .class__target__content.-class2::before {
  border-radius: 3rem;
  opacity: 0.15;
}
.class__target .class__target__content.-class2 dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  margin-bottom: 0.4rem;
}
@media screen and (width <= 767px) {
  .class__target .class__target__content.-class2 dl {
    -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: flex-start;
    gap: 0;
    margin-bottom: 1.5rem;
  }
}
.class__target .class__target__content.-class2 dl dt {
  color: var(--color-primary);
}
.class__target .class__target__content.-class2 .note__list {
  margin-top: 0.6rem;
}
@media screen and (width <= 767px) {
  .class__target .class__target__content.-class2 .note__list {
    line-height: 1.2;
  }
}

.class__contents__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5rem 4rem;
  margin-top: 6rem;
}
@media screen and (width <= 767px) {
  .class__contents__list {
    gap: 4rem 3rem;
  }
}

.class__contents__item {
  width: calc((100% - 12rem) / 4);
  padding-bottom: 1rem;
  border-bottom: 0.1rem dashed #8A8A8A;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: #3D3C3B;
}
@media screen and (width <= 767px) {
  .class__contents__item {
    width: calc((100% - 3rem) / 2);
  }
}
.class__contents__item figure {
  width: 100%;
  aspect-ratio: 25/17;
  margin-bottom: 1.2rem;
  border-radius: 2rem;
  overflow: hidden;
}
@media screen and (width <= 767px) {
  .class__contents__item figure {
    border-radius: 1rem;
  }
}
.class__contents__item figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.class__contents__item span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.class__contents__item:hover figure img {
  scale: 1.2;
}
.class__contents__item.-anchor span::after {
  content: "";
  width: 2rem;
  height: 2rem;
  display: block;
  background: var(--img--arrow--link) no-repeat 0 0;
  background-size: contain;
  rotate: 90deg;
}

#topics {
  padding: 7rem 0 5rem;
  background-color: #F7F5ED;
}

.section__title .-small {
  margin-left: 2.4rem;
  font-size: 1.7rem;
}
@media screen and (width <= 767px) {
  .section__title .-small {
    display: block;
    margin-top: 0.8rem;
    margin-left: 0;
  }
}

.topics__list {
  margin-top: -3rem;
}

.topics__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 0.1rem dashed #8A8A8A;
}
@media screen and (width <= 767px) {
  .topics__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.topics__item dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 26rem;
  font-weight: 400;
}
.topics__item dt span {
  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: 13rem;
  height: 2.5rem;
  margin-left: auto;
  background-color: #fff;
  border: 0.1rem solid #C7AA76;
  font-size: 1.4rem;
  font-weight: 500;
  color: #C7AA76;
}
.topics__item.-new dd::after {
  content: "NEW";
  margin-left: 0.8rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: #CC4040;
}

.topics__more {
  margin-top: 2rem;
  text-align: right;
}

.class__section__list {
  margin-top: 4rem;
}
.schedule__figure + .class__section__list {
  margin-top: 7rem;
}

.class__section__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5rem;
  margin-bottom: 7rem;
}
@media screen and (width <= 767px) {
  .class__section__item {
    gap: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.class__section__item figure {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 36.6%;
  aspect-ratio: 41/25;
  overflow: hidden;
  border-radius: 4rem;
}
@media screen and (width <= 767px) {
  .class__section__item figure {
    width: 100%;
    border-radius: 2rem;
  }
}
.class__section__item figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.class__section__item:last-child {
  margin-bottom: 0;
}

.class__section__item__body dt {
  margin-bottom: 1.6rem;
  font-size: 2.7rem;
  color: var(--color-primary);
  line-height: 1.4;
}

.class__section__item__title {
  margin-bottom: 1.2rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}

.btn__link {
  margin-top: 3rem;
}
#other .btn__link {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0;
}

.btn__link__item {
  background-color: var(--color-light);
}

.note__list {
  margin-top: 2rem;
}

.class__section__title {
  margin-top: 6rem;
  margin-bottom: 1.6rem;
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary);
}
.section__title + .class__section__title {
  margin-top: 0;
}
.class__section__title br.-sp {
  display: none;
}
@media screen and (width <= 767px) {
  .class__section__title br.-sp {
    display: block;
  }
}

.class__question__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4rem;
}
@media screen and (width <= 767px) {
  .class__question__list {
    gap: 2rem;
  }
}

.class__question__item {
  width: calc((100% - 4rem) / 2);
  padding: 2.5rem 3.5rem;
  border: 0.5rem solid rgba(236, 160, 115, 0.3);
  border-radius: 3rem;
}
@media screen and (width <= 767px) {
  .class__question__item {
    width: 100%;
    padding: 2rem;
  }
}
.class__question__item dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}
.class__question__item dt::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  background: url(../images/kind/icon_question.svg) no-repeat 0 0;
  background-size: contain;
}

@media screen and (width > 767px) {
  #test.-preschool .schedule__list__month, #test.-kindergarten .schedule__list__month {
    height: 20.8rem;
  }
  #test.-preschool .schedule__list__month .schedule__item[data-row="1"], #test.-kindergarten .schedule__list__month .schedule__item[data-row="1"] {
    top: 3rem;
  }
  #test.-preschool .schedule__list__month .schedule__item[data-row="2"], #test.-kindergarten .schedule__list__month .schedule__item[data-row="2"] {
    top: 7.6rem;
  }
  #test.-preschool .schedule__list__month .schedule__item[data-row="3"], #test.-kindergarten .schedule__list__month .schedule__item[data-row="3"] {
    top: 14.2rem;
  }
}
@media screen and (width <= 767px) {
  #test.-preschool .schedule__list__month .schedule__item[data-row="1"], #test.-kindergarten .schedule__list__month .schedule__item[data-row="1"] {
    left: 9.6rem;
  }
  #test.-preschool .schedule__list__month .schedule__item[data-row="2"], #test.-kindergarten .schedule__list__month .schedule__item[data-row="2"] {
    left: 17.3rem;
  }
  #test.-preschool .schedule__list__month .schedule__item[data-row="3"], #test.-kindergarten .schedule__list__month .schedule__item[data-row="3"] {
    left: 27.6rem;
  }
}
@media screen and (width >= 1160px) {
  #test.-preschool .schedule__list__month[data-month=dec] .schedule__item[data-row="1"], #test.-kindergarten .schedule__list__month[data-month=dec] .schedule__item[data-row="1"] {
    right: -6rem;
  }
}
@media screen and (767px < width < 1160px) {
  #test.-preschool .schedule__list__month[data-month=dec] .schedule__item[data-row="1"], #test.-kindergarten .schedule__list__month[data-month=dec] .schedule__item[data-row="1"] {
    right: -5.1724vw;
  }
}
@media screen and (width <= 767px) {
  #test.-preschool .schedule__list__month[data-month=dec] .schedule__item[data-row="1"], #test.-kindergarten .schedule__list__month[data-month=dec] .schedule__item[data-row="1"] {
    left: 8.8rem;
    bottom: -4.5rem;
  }
}
@media screen and (width >= 1160px) {
  #test.-preschool .schedule__list__month[data-month=mar] .schedule__item[data-row="1"], #test.-kindergarten .schedule__list__month[data-month=mar] .schedule__item[data-row="1"] {
    right: -5.5rem;
  }
}
@media screen and (767px < width < 1160px) {
  #test.-preschool .schedule__list__month[data-month=mar] .schedule__item[data-row="1"], #test.-kindergarten .schedule__list__month[data-month=mar] .schedule__item[data-row="1"] {
    right: -4.741379vw;
  }
}
@media screen and (width <= 767px) {
  #test.-preschool .schedule__list__month[data-month=mar] .schedule__item[data-row="1"], #test.-kindergarten .schedule__list__month[data-month=mar] .schedule__item[data-row="1"] {
    left: 8.8rem;
    bottom: -4.8rem;
  }
}
@media screen and (width >= 1160px) {
  #test.-preschool .schedule__list__month[data-month=may] .schedule__item[data-row="1"], #test.-kindergarten .schedule__list__month[data-month=may] .schedule__item[data-row="1"] {
    left: 0.6rem;
  }
}
@media screen and (767px < width < 1160px) {
  #test.-preschool .schedule__list__month[data-month=may] .schedule__item[data-row="1"], #test.-kindergarten .schedule__list__month[data-month=may] .schedule__item[data-row="1"] {
    left: 0.51724vw;
  }
}
@media screen and (width <= 767px) {
  #test.-preschool .schedule__list__month[data-month=may] .schedule__item[data-row="1"], #test.-kindergarten .schedule__list__month[data-month=may] .schedule__item[data-row="1"] {
    left: 8.8rem;
    bottom: -1.4rem;
  }
}
#test.-preschool .schedule__list__month[data-month=jun] .schedule__item[data-row="3"], #test.-kindergarten .schedule__list__month[data-month=jun] .schedule__item[data-row="3"] {
  -webkit-transform: none;
          transform: none;
}
@media screen and (width >= 1160px) {
  #test.-preschool .schedule__list__month[data-month=jun] .schedule__item[data-row="3"], #test.-kindergarten .schedule__list__month[data-month=jun] .schedule__item[data-row="3"] {
    left: 7.1rem;
  }
}
@media screen and (767px < width < 1160px) {
  #test.-preschool .schedule__list__month[data-month=jun] .schedule__item[data-row="3"], #test.-kindergarten .schedule__list__month[data-month=jun] .schedule__item[data-row="3"] {
    left: 6.12069vw;
  }
}
@media screen and (width <= 767px) {
  #test.-preschool .schedule__list__month[data-month=jun] .schedule__item[data-row="3"], #test.-kindergarten .schedule__list__month[data-month=jun] .schedule__item[data-row="3"] {
    top: 4.1rem;
  }
}
@media screen and (width >= 1160px) {
  #test.-preschool .schedule__list__month[data-month=jun] .schedule__item[data-row="3"] .schedule__line, #test.-kindergarten .schedule__list__month[data-month=jun] .schedule__item[data-row="3"] .schedule__line {
    width: 30rem;
  }
}
@media screen and (767px < width < 1160px) {
  #test.-preschool .schedule__list__month[data-month=jun] .schedule__item[data-row="3"] .schedule__line, #test.-kindergarten .schedule__list__month[data-month=jun] .schedule__item[data-row="3"] .schedule__line {
    width: calc((100vw - 4rem) / 14 * 4 - 1.724138vw);
  }
}
@media screen and (width <= 767px) {
  #test.-preschool .schedule__list__month[data-month=jun] .schedule__item[data-row="3"] .schedule__line, #test.-kindergarten .schedule__list__month[data-month=jun] .schedule__item[data-row="3"] .schedule__line {
    height: 17rem;
  }
}

@media screen and (width > 767px) {
  #guardian.-preschool .schedule__list__month, #guardian.-kindergarten .schedule__list__month {
    height: 25.9rem;
  }
  #guardian.-preschool .schedule__list__month .schedule__item[data-row="1"], #guardian.-kindergarten .schedule__list__month .schedule__item[data-row="1"] {
    top: 3rem;
  }
  #guardian.-preschool .schedule__list__month .schedule__item[data-row="2"], #guardian.-kindergarten .schedule__list__month .schedule__item[data-row="2"] {
    top: 7.4rem;
  }
  #guardian.-preschool .schedule__list__month .schedule__item[data-row="3"], #guardian.-kindergarten .schedule__list__month .schedule__item[data-row="3"] {
    top: 14rem;
  }
  #guardian.-preschool .schedule__list__month .schedule__item[data-row="4"], #guardian.-kindergarten .schedule__list__month .schedule__item[data-row="4"] {
    top: 19.3rem;
  }
}
@media screen and (width <= 767px) {
  #guardian.-preschool .schedule__list__month .schedule__item[data-row="1"], #guardian.-kindergarten .schedule__list__month .schedule__item[data-row="1"] {
    left: 7.7rem;
  }
  #guardian.-preschool .schedule__list__month .schedule__item[data-row="2"], #guardian.-kindergarten .schedule__list__month .schedule__item[data-row="2"] {
    left: 14.5rem;
  }
  #guardian.-preschool .schedule__list__month .schedule__item[data-row="3"], #guardian.-kindergarten .schedule__list__month .schedule__item[data-row="3"] {
    left: 23.6rem;
  }
  #guardian.-preschool .schedule__list__month .schedule__item[data-row="4"], #guardian.-kindergarten .schedule__list__month .schedule__item[data-row="4"] {
    left: 30rem;
  }
}
@media screen and (width >= 1160px) {
  #guardian.-preschool .schedule__list__month[data-month=jun] .schedule__item[data-row="2"], #guardian.-kindergarten .schedule__list__month[data-month=jun] .schedule__item[data-row="2"] {
    left: -8rem;
  }
}
@media screen and (767px < width < 1160px) {
  #guardian.-preschool .schedule__list__month[data-month=jun] .schedule__item[data-row="2"], #guardian.-kindergarten .schedule__list__month[data-month=jun] .schedule__item[data-row="2"] {
    left: -6.896552vw;
  }
}
@media screen and (width <= 767px) {
  #guardian.-preschool .schedule__list__month[data-month=jun] .schedule__item[data-row="2"], #guardian.-kindergarten .schedule__list__month[data-month=jun] .schedule__item[data-row="2"] {
    top: 1.5rem;
  }
}
@media screen and (width > 767px) {
  #guardian.-baby .schedule__list__month {
    height: 15.7rem;
  }
  #guardian.-baby .schedule__list__month .schedule__item[data-row="1"] {
    top: 3rem;
  }
  #guardian.-baby .schedule__list__month .schedule__item[data-row="2"] {
    top: 9.6rem;
  }
}
@media screen and (width <= 767px) {
  #guardian.-baby .schedule__list__month .schedule__item[data-row="1"] {
    left: 11.7rem;
  }
  #guardian.-baby .schedule__list__month .schedule__item[data-row="2"] {
    left: 24.9rem;
  }
}
#guardian.-baby .schedule__list__month[data-month=apr] .schedule__item[data-row="1"] {
  -webkit-transform: none;
          transform: none;
}
@media screen and (width >= 1160px) {
  #guardian.-baby .schedule__list__month[data-month=apr] .schedule__item[data-row="1"] {
    left: 7.2rem;
  }
}
@media screen and (767px < width < 1160px) {
  #guardian.-baby .schedule__list__month[data-month=apr] .schedule__item[data-row="1"] {
    left: 6.206897vw;
  }
}
@media screen and (width <= 767px) {
  #guardian.-baby .schedule__list__month[data-month=apr] .schedule__item[data-row="1"] {
    top: 3.9rem;
  }
}