.c-school__aboutWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.c-school__about {
  cursor: pointer;
  font-size: 18px;
  color: #8E2247;
  text-align: right;
  margin-left: auto;
  border-bottom: 1px solid #8E2247;
}
@media screen and (max-width: 1024px) {
  .c-school__about {
    font-size: 16px;
  }
}
.c-school__about:hover {
  color: #7C7C7C;
  border-bottom: 1px solid #7C7C7C;
}

.modal {
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 9999;
  width: 100vw;
  height: 100%;
  background: rgba(246, 230, 235, 0.7);
}

.modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 100%;
  max-width: 540px;
  padding: 30px;
  border-radius: 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 5px rgba(124, 124, 124, 0.5);
          box-shadow: 0 0 5px rgba(124, 124, 124, 0.5);
}
@media screen and (max-width: 1024px) {
  .modal__content {
    width: calc(100% - 40px);
  }
}

@media screen and (min-width: 1025px) {
  .modal__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 1024px) {
  .modal__list {
    display: block;
  }
}

@media screen and (min-width: 1025px) {
  .modal__item {
    display: table-cell;
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (max-width: 1024px) {
  .modal__item {
    display: block;
  }
  .modal__item:nth-child(n+2) {
    margin-top: 30px;
  }
}

.modal__head {
  position: relative;
  color: #8E2247;
  font-size: 20px;
  margin-bottom: 10px;
  text-align: center;
}

.modal__text {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}

.modal__bg {
  width: 100%;
  height: 100%;
}

.js-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  cursor: pointer;
  width: 22px;
  height: 22px;
}
.js-modal-close:before, .js-modal-close:after {
  content: "";
  position: absolute;
  top: 48%;
  left: 0;
  width: 100%;
  height: 7%;
  background: #8E2247;
}
.js-modal-close:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.js-modal-close:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media screen and (min-width: 501px) {
  .taxonomy-school {
    padding: 80px 0 120px;
  }
}
@media screen and (max-width: 500px) {
  .taxonomy-school {
    padding: 50px 0 100px;
  }
}

@media screen and (min-width: 501px) {
  .taxonomy-school__btnWrap {
    margin: 60px 0 40px;
  }
}
@media screen and (max-width: 500px) {
  .taxonomy-school__btnWrap {
    margin: 40px 0 20px;
  }
}

.taxonomy-school__wrap {
  position: relative;
}
.taxonomy-school__wrap.--w500 {
  max-width: 500px;
}

.taxonomy-school__box {
  display: none;
}

.taxonomy-school__list {
  border-bottom: 1px dashed #333;
}

.taxonomy-school__item {
  padding: 30px 20px;
}
@media screen and (max-width: 500px) {
  .taxonomy-school__item {
    padding: 20px 0;
  }
}
.taxonomy-school__item:nth-child(n+2) {
  border-top: 1px dashed #333;
}

.taxonomy-school__area {
  background-color: #8E2247;
  color: #fff;
  padding: 8px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 23px;
  position: relative;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 500px) {
  .taxonomy-school__area {
    padding: 8px 10px;
    font-size: 20px;
    line-height: 1.45;
  }
}
.taxonomy-school__area:nth-child(n+2) {
  border-top: 0;
  margin-top: 40px;
}
@media screen and (max-width: 500px) {
  .taxonomy-school__area:nth-child(n+2) {
    margin-top: 20px;
  }
}
.taxonomy-school__area:before, .taxonomy-school__area:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 16px;
  height: 1.5px;
  display: block;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.taxonomy-school__area:before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.taxonomy-school__area.is-open:before {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.taxonomy-school__area:hover {
  opacity: 0.8;
}

.taxonomy-school__type {
  padding: 8px 20px;
  color: #8E2247;
  background-color: #FBF3F5;
  border: 1px solid #8E2247;
  border-radius: 5px;
  font-size: 23px;
  font-family: "Zen Old Mincho", serif;
  font-style: normal;
  font-weight: 500;
}
@media screen and (min-width: 501px) {
  .taxonomy-school__type {
    margin: 30px auto 0;
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 500px) {
  .taxonomy-school__type {
    margin: 20px auto 0;
    padding: 4px 10px;
    font-size: 20px;
  }
}

.taxonomy-school__info {
  margin: 80px auto;
}

.taxonomy-school__wrap02 {
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .taxonomy-school__wrap02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 1024px) {
  .taxonomy-school__wrap02 {
    display: block;
  }
}
.taxonomy-school__wrap02.--mb0 {
  margin-bottom: 0;
}

.taxonomy-school__title {
  font-size: 23px;
  color: #8E2247;
  display: block;
  line-height: 1.2;
}
@media screen and (max-width: 500px) {
  .taxonomy-school__title {
    font-size: 21px;
  }
}
.taxonomy-school__title > a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.taxonomy-school__sub {
  font-size: 18px;
  display: inline-block;
}
@media screen and (min-width: 501px) {
  .taxonomy-school__sub {
    margin-left: 10px;
  }
}
@media screen and (max-width: 500px) {
  .taxonomy-school__sub {
    width: 100%;
    font-size: 16px;
    margin-top: 5px;
  }
}

.taxonomy-school__telWrap {
  display: block;
}
@media screen and (max-width: 1024px) {
  .taxonomy-school__telWrap {
    text-align: right;
    margin-top: 20px;
  }
}

.taxonomy-school__tel {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 29px;
  line-height: 1.2;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) and (min-width: 501px) {
  .taxonomy-school__tel {
    font-size: 26px;
  }
}
@media screen and (max-width: 500px) {
  .taxonomy-school__tel {
    font-size: 24px;
  }
}
.taxonomy-school__tel:before {
  content: "";
  background: url("../img/school/icon-tel.svg") no-repeat center/contain;
  width: 31px;
  height: 27px;
  display: block;
  margin-right: 20px;
}
@media screen and (max-width: 500px) {
  .taxonomy-school__tel:before {
    width: 25px;
    height: 22px;
    margin-top: 4px;
    margin-right: 10px;
  }
}
.taxonomy-school__tel .taxonomy-school__telLink {
  border-bottom: 2px solid #8E2247;
}
.taxonomy-school__tel .taxonomy-school__telLink:hover {
  color: #8E2247;
}

.taxonomy-school__telInfo {
  font-family: "Zen Old Mincho", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  margin-left: 40px;
}
@media screen and (max-width: 500px) {
  .taxonomy-school__telInfo {
    font-size: 16px;
    margin-left: 30px;
  }
}

.taxonomy-school__detail .dl-row {
  font-size: 16px;
  color: #2C2C2C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
}
.taxonomy-school__detail .dl-row dt {
  width: 120px;
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
}
.taxonomy-school__detail .dl-row dd {
  width: calc(100% - 120px);
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}

.taxonomy-school__snsList {
  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;
  margin: 20px 0 0;
}

.taxonomy-school__snsItem:nth-child(n+2) {
  margin-left: 15px;
}

.taxonomy-school__culList {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 20px 0 0;
}

.taxonomy-school__culItem {
  border: 1px solid #795D01;
  color: #795D01;
  border-radius: 50px;
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  padding: 5px 10px;
  margin-right: 10px;
}
@media screen and (max-width: 500px) {
  .taxonomy-school__culItem {
    margin-bottom: 10px;
  }
}

.taxonomy-school__other {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  padding: 15px 0 0;
}

.taxonomy-school__anchor {
  max-width: 900px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  margin: 40px auto 0;
}

.taxonomy-school__anchor > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.taxonomy-school__anchor > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.taxonomy-school__anchor > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}

.taxonomy-school__anchor > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}

.taxonomy-school__anchorLink {
  position: relative;
  display: block;
  background-color: #8E2247;
  color: #fff;
  border-radius: 10px;
  padding: 20px 10px 36px;
  font-size: 22px;
  font-family: "Zen Old Mincho", serif;
  font-style: normal;
  font-weight: 600;
  text-align: center;
}
.taxonomy-school__anchorLink:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 15px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url("../img/school/icon-arrow.svg") no-repeat center/contain;
  display: block;
  width: 18px;
  height: 11px;
}