.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 (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;
}
.tab__item.-active {
  height: 11rem;
  padding-top: 3rem;
  background-color: var(--color-light);
}
.tab__item.-active.-senior, .tab__item.-active.-middle, .tab__item.-active.-junior {
  color: #fff;
}
.tab__item.-active.-senior::after, .tab__item.-active.-middle::after, .tab__item.-active.-junior::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;
  }
}

.class__target {
  margin-bottom: 6rem;
  text-align: center;
}
@media screen and (width <= 767px) {
  .class__target {
    font-size: 1.4rem;
  }
}
.class__target span {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 auto;
  padding: 0.8rem 4rem;
}
@media screen and (width <= 767px) {
  .class__target span {
    padding: 1rem 3rem;
  }
}
.class__target span::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__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: 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;
}

.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;
  line-height: 1.4;
  color: var(--color-primary);
}
.class__section__item__body dt br.-sp {
  display: none;
}
@media screen and (width <= 767px) {
  .class__section__item__body dt br.-sp {
    display: block;
  }
}

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

.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-bottom: 1.6rem;
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary);
}

@media screen and (width > 767px) {
  #test.-senior .schedule__list__month {
    height: 35.6rem;
  }
  #test.-senior .schedule__list__month .schedule__item[data-row="1"] {
    top: 3rem;
  }
  #test.-senior .schedule__list__month .schedule__item[data-row="2"] {
    top: 8.1rem;
  }
  #test.-senior .schedule__list__month .schedule__item[data-row="3"] {
    top: 15.2rem;
  }
  #test.-senior .schedule__list__month .schedule__item[data-row="4"] {
    top: 19.8rem;
  }
  #test.-senior .schedule__list__month .schedule__item[data-row="5"] {
    top: 24.4rem;
  }
  #test.-senior .schedule__list__month .schedule__item[data-row="6"] {
    top: 29rem;
  }
}
@media screen and (width <= 767px) {
  #test.-senior .schedule__list__month .schedule__item[data-row="1"] {
    left: 4.7rem;
  }
  #test.-senior .schedule__list__month .schedule__item[data-row="2"] {
    left: 12.3rem;
  }
  #test.-senior .schedule__list__month .schedule__item[data-row="3"] {
    left: 18.9rem;
  }
  #test.-senior .schedule__list__month .schedule__item[data-row="4"] {
    left: 23.6rem;
  }
  #test.-senior .schedule__list__month .schedule__item[data-row="5"] {
    left: 28.3rem;
  }
  #test.-senior .schedule__list__month .schedule__item[data-row="6"] {
    left: 33rem;
  }
}
@media screen and (width >= 1160px) {
  #test.-senior .schedule__list__month[data-month=dec] .schedule__item[data-row="1"] {
    right: -6rem;
  }
}
@media screen and (767px < width < 1160px) {
  #test.-senior .schedule__list__month[data-month=dec] .schedule__item[data-row="1"] {
    right: -5.1724vw;
  }
}
@media screen and (width <= 767px) {
  #test.-senior .schedule__list__month[data-month=dec] .schedule__item[data-row="1"] {
    left: 4.1rem;
    bottom: -4.5rem;
  }
}
@media screen and (width >= 1160px) {
  #test.-senior .schedule__list__month[data-month=jan] .schedule__item[data-row="2"] {
    left: 0.6rem;
  }
}
@media screen and (767px < width < 1160px) {
  #test.-senior .schedule__list__month[data-month=jan] .schedule__item[data-row="2"] {
    left: 0.51724vw;
  }
}
@media screen and (width <= 767px) {
  #test.-senior .schedule__list__month[data-month=jan] .schedule__item[data-row="2"] {
    left: 9.1rem;
    bottom: -6rem;
  }
}
@media screen and (width >= 1160px) {
  #test.-senior .schedule__list__month[data-month=jan] .schedule__item[data-row="5"] .schedule__line {
    width: 45rem;
  }
}
@media screen and (767px < width < 1160px) {
  #test.-senior .schedule__list__month[data-month=jan] .schedule__item[data-row="5"] .schedule__line {
    width: calc((100vw - 4rem) / 14 * 5 + 1.5rem + 2.5862vw);
  }
}
@media screen and (width <= 767px) {
  #test.-senior .schedule__list__month[data-month=jan] .schedule__item[data-row="5"] .schedule__line {
    height: 26.1rem;
  }
}
@media screen and (width >= 1160px) {
  #test.-senior .schedule__list__month[data-month=mar] .schedule__item[data-row="1"] {
    right: -5.5rem;
  }
}
@media screen and (767px < width < 1160px) {
  #test.-senior .schedule__list__month[data-month=mar] .schedule__item[data-row="1"] {
    right: -4.741379vw;
  }
}
@media screen and (width <= 767px) {
  #test.-senior .schedule__list__month[data-month=mar] .schedule__item[data-row="1"] {
    left: 4.1rem;
    bottom: -4.8rem;
  }
}
@media screen and (width >= 1160px) {
  #test.-senior .schedule__list__month[data-month=may] .schedule__item[data-row="1"] {
    left: 0.6rem;
  }
}
@media screen and (767px < width < 1160px) {
  #test.-senior .schedule__list__month[data-month=may] .schedule__item[data-row="1"] {
    left: 0.51724vw;
  }
}
@media screen and (width <= 767px) {
  #test.-senior .schedule__list__month[data-month=may] .schedule__item[data-row="1"] {
    left: 4.1rem;
    bottom: -1.4rem;
  }
}
@media screen and (width >= 1160px) {
  #test.-senior .schedule__list__month[data-month=may] .schedule__item[data-row="2"] {
    left: -1.2rem;
  }
}
@media screen and (767px < width < 1160px) {
  #test.-senior .schedule__list__month[data-month=may] .schedule__item[data-row="2"] {
    left: -1.034483vw;
  }
}
@media screen and (width <= 767px) {
  #test.-senior .schedule__list__month[data-month=may] .schedule__item[data-row="2"] {
    top: 1.5rem;
    left: 10.9rem;
  }
}
@media screen and (width >= 1160px) {
  #test.-senior .schedule__list__month[data-month=jun] .schedule__item[data-row="2"] {
    left: 3rem;
  }
}
@media screen and (767px < width < 1160px) {
  #test.-senior .schedule__list__month[data-month=jun] .schedule__item[data-row="2"] {
    left: 2.586207vw;
  }
}
@media screen and (width <= 767px) {
  #test.-senior .schedule__list__month[data-month=jun] .schedule__item[data-row="2"] {
    left: 9.1rem;
    bottom: -6.9rem;
  }
}
@media screen and (width > 767px) {
  #test.-middle .schedule__list__month {
    height: 16.7rem;
  }
  #test.-middle .schedule__list__month .schedule__item[data-row="1"] {
    top: 3rem;
  }
  #test.-middle .schedule__list__month .schedule__item[data-row="2"] {
    top: 8.1rem;
  }
}
@media screen and (width <= 767px) {
  #test.-middle .schedule__list__month .schedule__item[data-row="1"] {
    left: 12.5rem;
  }
  #test.-middle .schedule__list__month .schedule__item[data-row="2"] {
    left: 25.7rem;
  }
}
@media screen and (width >= 1160px) {
  #test.-middle .schedule__list__month[data-month=dec] .schedule__item[data-row="1"] {
    right: -6rem;
  }
}
@media screen and (767px < width < 1160px) {
  #test.-middle .schedule__list__month[data-month=dec] .schedule__item[data-row="1"] {
    right: -5.1724vw;
  }
}
@media screen and (width <= 767px) {
  #test.-middle .schedule__list__month[data-month=dec] .schedule__item[data-row="1"] {
    bottom: -4.5rem;
    -webkit-transform: translateX(-0.8rem);
            transform: translateX(-0.8rem);
  }
}
@media screen and (width >= 1160px) {
  #test.-middle .schedule__list__month[data-month=mar] .schedule__item[data-row="1"] {
    right: -5.5rem;
  }
}
@media screen and (767px < width < 1160px) {
  #test.-middle .schedule__list__month[data-month=mar] .schedule__item[data-row="1"] {
    right: -4.741379vw;
  }
}
@media screen and (width <= 767px) {
  #test.-middle .schedule__list__month[data-month=mar] .schedule__item[data-row="1"] {
    bottom: -4.8rem;
    -webkit-transform: translateX(-0.8rem);
            transform: translateX(-0.8rem);
  }
}
#test.-middle .schedule__list__month[data-month=apr] .schedule__item[data-row="2"] {
  -webkit-transform: none;
          transform: none;
}
@media screen and (width >= 1160px) {
  #test.-middle .schedule__list__month[data-month=apr] .schedule__item[data-row="2"] {
    left: 5.2rem;
  }
}
@media screen and (767px < width < 1160px) {
  #test.-middle .schedule__list__month[data-month=apr] .schedule__item[data-row="2"] {
    left: 4.482759vw;
  }
}
@media screen and (width <= 767px) {
  #test.-middle .schedule__list__month[data-month=apr] .schedule__item[data-row="2"] {
    top: 3.2rem;
  }
}
@media screen and (width >= 1160px) {
  #test.-middle .schedule__list__month[data-month=apr] .schedule__item[data-row="2"] .schedule__line {
    width: 32rem;
  }
}
@media screen and (767px < width < 1160px) {
  #test.-middle .schedule__list__month[data-month=apr] .schedule__item[data-row="2"] .schedule__line {
    width: calc((100vw - 4rem) / 14 * 4);
  }
}
@media screen and (width <= 767px) {
  #test.-middle .schedule__list__month[data-month=apr] .schedule__item[data-row="2"] .schedule__line {
    height: 18rem;
  }
}
@media screen and (width >= 1160px) {
  #test.-middle .schedule__list__month[data-month=may] .schedule__item[data-row="1"] {
    left: 0.6rem;
  }
}
@media screen and (767px < width < 1160px) {
  #test.-middle .schedule__list__month[data-month=may] .schedule__item[data-row="1"] {
    left: 0.51724vw;
  }
}
@media screen and (width <= 767px) {
  #test.-middle .schedule__list__month[data-month=may] .schedule__item[data-row="1"] {
    bottom: -1.4rem;
    -webkit-transform: translateX(-0.8rem);
            transform: translateX(-0.8rem);
  }
}
@media screen and (width > 767px) {
  #test.-junior .schedule__list__month {
    height: 10.1rem;
  }
  #test.-junior .schedule__list__month .schedule__item[data-row="1"] {
    top: 3rem;
  }
}
@media screen and (width <= 767px) {
  #test.-junior .schedule__list__month .schedule__item[data-row="1"] {
    left: 11.7rem;
  }
}
@media screen and (width >= 1160px) {
  #test.-junior .schedule__list__month[data-month=dec] .schedule__item[data-row="1"] {
    right: -6rem;
  }
}
@media screen and (767px < width < 1160px) {
  #test.-junior .schedule__list__month[data-month=dec] .schedule__item[data-row="1"] {
    right: -5.1724vw;
  }
}
@media screen and (width <= 767px) {
  #test.-junior .schedule__list__month[data-month=dec] .schedule__item[data-row="1"] {
    left: 24.9rem;
    bottom: -4.5rem;
    -webkit-transform: translateX(-0.8rem);
            transform: translateX(-0.8rem);
  }
}
@media screen and (width >= 1160px) {
  #test.-junior .schedule__list__month[data-month=mar] .schedule__item[data-row="1"] {
    right: -5.5rem;
  }
}
@media screen and (767px < width < 1160px) {
  #test.-junior .schedule__list__month[data-month=mar] .schedule__item[data-row="1"] {
    right: -4.741379vw;
  }
}
@media screen and (width <= 767px) {
  #test.-junior .schedule__list__month[data-month=mar] .schedule__item[data-row="1"] {
    bottom: -4.8rem;
    -webkit-transform: translateX(-0.8rem);
            transform: translateX(-0.8rem);
  }
}
@media screen and (width >= 1160px) {
  #test.-junior .schedule__list__month[data-month=may] .schedule__item[data-row="1"] {
    left: 0.6rem;
  }
}
@media screen and (767px < width < 1160px) {
  #test.-junior .schedule__list__month[data-month=may] .schedule__item[data-row="1"] {
    left: 0.51724vw;
  }
}
@media screen and (width <= 767px) {
  #test.-junior .schedule__list__month[data-month=may] .schedule__item[data-row="1"] {
    left: 24.9rem;
    bottom: -1.4rem;
    -webkit-transform: translateX(-0.8rem);
            transform: translateX(-0.8rem);
  }
}

@media screen and (width > 767px) {
  #guardian.-senior .schedule__list__month {
    height: 19.8rem;
  }
  #guardian.-senior .schedule__list__month .schedule__item[data-row="1"] {
    top: 3rem;
  }
  #guardian.-senior .schedule__list__month .schedule__item[data-row="2"] {
    top: 8.2rem;
  }
  #guardian.-senior .schedule__list__month .schedule__item[data-row="3"] {
    top: 13.2rem;
  }
}
@media screen and (width <= 767px) {
  #guardian.-senior .schedule__list__month .schedule__item[data-row="1"] {
    left: 9.6rem;
  }
  #guardian.-senior .schedule__list__month .schedule__item[data-row="2"] {
    left: 17.3rem;
  }
  #guardian.-senior .schedule__list__month .schedule__item[data-row="3"] {
    left: 27.6rem;
  }
}
@media screen and (width >= 1160px) {
  #guardian.-senior .schedule__list__month[data-month=dec] .schedule__item[data-row="2"] {
    left: 7.2rem;
  }
}
@media screen and (767px < width < 1160px) {
  #guardian.-senior .schedule__list__month[data-month=dec] .schedule__item[data-row="2"] {
    left: 6.206891vw;
  }
}
@media screen and (width <= 767px) {
  #guardian.-senior .schedule__list__month[data-month=dec] .schedule__item[data-row="2"] {
    top: 3.2rem;
  }
}
@media screen and (width >= 1160px) {
  #guardian.-senior .schedule__list__month[data-month=jan] .schedule__item[data-row="1"] .schedule__line {
    width: 29rem;
  }
}
@media screen and (767px < width < 1160px) {
  #guardian.-senior .schedule__list__month[data-month=jan] .schedule__item[data-row="1"] .schedule__line {
    width: calc((100vw - 4rem) / 14 * 3 + 1.5rem + 2.5862vw);
  }
}
@media screen and (width <= 767px) {
  #guardian.-senior .schedule__list__month[data-month=jan] .schedule__item[data-row="1"] .schedule__line {
    height: 16.6rem;
  }
}
#guardian.-senior .schedule__list__month[data-month=apr] .schedule__item[data-row="1"] {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (width >= 1160px) {
  #guardian.-senior .schedule__list__month[data-month=apr] .schedule__item[data-row="1"] {
    left: 9.8rem;
  }
  #guardian.-senior .schedule__list__month[data-month=apr] .schedule__item[data-row="1"] .schedule__line {
    width: 8.3rem;
  }
}
@media screen and (767px < width < 1160px) {
  #guardian.-senior .schedule__list__month[data-month=apr] .schedule__item[data-row="1"] {
    left: 8.448276vw;
  }
  #guardian.-senior .schedule__list__month[data-month=apr] .schedule__item[data-row="1"] .schedule__line {
    width: calc(3.706897vw + 3rem);
  }
}
@media screen and (width <= 767px) {
  #guardian.-senior .schedule__list__month[data-month=apr] .schedule__item[data-row="1"] {
    top: 5.7rem;
  }
  #guardian.-senior .schedule__list__month[data-month=apr] .schedule__item[data-row="1"] .schedule__line {
    height: 5.1rem;
  }
}
@media screen and (width > 767px) {
  #guardian.-middle .schedule__list__month {
    height: 23rem;
  }
  #guardian.-middle .schedule__list__month .schedule__item[data-row="1"] {
    top: 2.4rem;
  }
  #guardian.-middle .schedule__list__month .schedule__item[data-row="2"] {
    top: 8rem;
  }
  #guardian.-middle .schedule__list__month .schedule__item[data-row="3"] {
    top: 12.9rem;
  }
  #guardian.-middle .schedule__list__month .schedule__item[data-row="4"] {
    top: 17.8rem;
  }
}
@media screen and (width <= 767px) {
  #guardian.-middle .schedule__list__month .schedule__item[data-row="1"] {
    left: 8.8rem;
  }
  #guardian.-middle .schedule__list__month .schedule__item[data-row="2"] {
    left: 15.5rem;
  }
  #guardian.-middle .schedule__list__month .schedule__item[data-row="3"] {
    left: 21.6rem;
  }
  #guardian.-middle .schedule__list__month .schedule__item[data-row="4"] {
    left: 27rem;
  }
}
@media screen and (width >= 1160px) {
  #guardian.-middle .schedule__list__month[data-month=oct] .schedule__item[data-row="1"] {
    left: 3.6rem;
  }
}
@media screen and (767px < width < 1160px) {
  #guardian.-middle .schedule__list__month[data-month=oct] .schedule__item[data-row="1"] {
    left: 3.103448vw;
  }
}
@media screen and (width <= 767px) {
  #guardian.-middle .schedule__list__month[data-month=oct] .schedule__item[data-row="1"] {
    top: 4rem;
    -webkit-transform: translateX(-0.8rem);
            transform: translateX(-0.8rem);
  }
}
@media screen and (width >= 1160px) {
  #guardian.-middle .schedule__list__month[data-month=feb] .schedule__item[data-row="1"] {
    left: -1.9rem;
  }
}
@media screen and (767px < width < 1160px) {
  #guardian.-middle .schedule__list__month[data-month=feb] .schedule__item[data-row="1"] {
    left: -1.63793vw;
  }
}
@media screen and (width <= 767px) {
  #guardian.-middle .schedule__list__month[data-month=feb] .schedule__item[data-row="1"] {
    top: 1.5rem;
    -webkit-transform: translateX(-0.8rem);
            transform: translateX(-0.8rem);
  }
}
@media screen and (width >= 1160px) {
  #guardian.-middle .schedule__list__month[data-month=apr] .schedule__item[data-row="3"] {
    left: 8rem;
  }
}
@media screen and (767px < width < 1160px) {
  #guardian.-middle .schedule__list__month[data-month=apr] .schedule__item[data-row="3"] {
    left: 6.896552vw;
  }
}
@media screen and (width <= 767px) {
  #guardian.-middle .schedule__list__month[data-month=apr] .schedule__item[data-row="3"] {
    top: 4rem;
    -webkit-transform: none;
            transform: none;
  }
}
@media screen and (width >= 1160px) {
  #guardian.-middle .schedule__list__month[data-month=apr] .schedule__item[data-row="3"] .schedule__line {
    width: 46rem;
  }
}
@media screen and (767px < width < 1160px) {
  #guardian.-middle .schedule__list__month[data-month=apr] .schedule__item[data-row="3"] .schedule__line {
    width: calc((100vw - 4rem) / 14 * 6 - 1.724138vw);
  }
}
@media screen and (width <= 767px) {
  #guardian.-middle .schedule__list__month[data-month=apr] .schedule__item[data-row="3"] .schedule__line {
    height: 26rem;
  }
}
@media screen and (width >= 1160px) {
  #guardian.-middle .schedule__list__month[data-month=may] .schedule__item[data-row="1"] .schedule__line {
    width: 16.5rem;
  }
}
@media screen and (767px < width < 1160px) {
  #guardian.-middle .schedule__list__month[data-month=may] .schedule__item[data-row="1"] .schedule__line {
    width: calc((100vw - 4rem) / 14 * 2 + 0.43103vw);
  }
}
@media screen and (width <= 767px) {
  #guardian.-middle .schedule__list__month[data-month=may] .schedule__item[data-row="1"] .schedule__line {
    height: 9.4rem;
  }
}
@media screen and (width > 767px) {
  #guardian.-junior .schedule__list__month {
    height: 19rem;
  }
  #guardian.-junior .schedule__list__month .schedule__item[data-row="1"] {
    top: 1.8rem;
  }
  #guardian.-junior .schedule__list__month .schedule__item[data-row="2"] {
    top: 6.8rem;
  }
  #guardian.-junior .schedule__list__month .schedule__item[data-row="3"] {
    top: 13rem;
  }
}
@media screen and (width <= 767px) {
  #guardian.-junior .schedule__list__month .schedule__item[data-row="1"] {
    left: 18.2%;
  }
  #guardian.-junior .schedule__list__month .schedule__item[data-row="2"] {
    left: 46.3%;
  }
  #guardian.-junior .schedule__list__month .schedule__item[data-row="3"] {
    left: 74%;
  }
}
@media screen and (width <= 767px) {
  #guardian.-junior .schedule__list__month[data-month=feb] .schedule__item[data-row="1"] {
    -webkit-transform: translateY(-1.3rem);
            transform: translateY(-1.3rem);
  }
}

.responsible__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem 5rem;
}

.responsible__box {
  width: calc(50% - 2.5rem);
  padding: 3rem;
  border: 0.5rem solid #F7F5ED;
  border-radius: 3rem;
}
@media screen and (width <= 767px) {
  .responsible__box {
    width: 100%;
    padding: 2rem 1.5rem;
  }
}
.responsible__box dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.6rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.2rem;
  font-weight: 700;
}
.responsible__box dt::before {
  content: "";
  display: inline-block;
  width: 3.7rem;
  height: 3.6rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.responsible__box:first-of-type dt {
  color: #D06B44;
}
.responsible__box:first-of-type dt::before {
  background-image: url(../images/elem/icon_reason_red.svg);
}
.responsible__box:nth-of-type(2) dt {
  color: #BDA12B;
}
.responsible__box:nth-of-type(2) dt::before {
  background-image: url(../images/elem/icon_reason_yellow.svg);
}
.responsible__box:nth-of-type(3) dt {
  color: #5396BE;
}
.responsible__box:nth-of-type(3) dt::before {
  background-image: url(../images/elem/icon_reason_blue.svg);
}
.responsible__box:nth-of-type(4) dt {
  color: #9770BA;
}
.responsible__box:nth-of-type(4) dt::before {
  background-image: url(../images/elem/icon_reason_purple.svg);
}

.elem__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem 5rem;
  margin-top: 3rem;
}
.elem__list__item {
  width: calc(50% - 2.5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.8rem;
  padding-bottom: 1.7rem;
  border-bottom: 0.1rem dashed #8A8A8A;
}
@media screen and (width <= 767px) {
  .elem__list__item {
    width: 100%;
  }
}
.elem__list__item dt {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.4;
}
.elem__list__item dt .-note {
  font-size: 1.4rem;
  font-weight: 400;
  display: inline-block;
  margin-left: 1rem;
}
.elem__list__item dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 2rem;
  font-size: 1.5rem;
}
.elem__list + p {
  margin-top: 6rem;
}

.consul__worries {
  margin-block: 3rem;
  padding: 4rem 5rem;
  border: 0.5rem solid #F7F5ED;
  border-radius: 3rem;
}
@media screen and (width <= 767px) {
  .consul__worries {
    padding: 2.5rem;
  }
}

#consultation-a {
  margin-top: 12rem;
}
@media screen and (width <= 767px) {
  #consultation-a {
    margin-top: 10rem;
  }
}

.consultation__detail .section__table td .-strong {
  font-weight: 700;
}
.consultation__detail .section__box--color + p {
  margin-top: 5rem;
}