@charset "UTF-8";
.p-tokyo .s-school .school-content {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.p-tokyo .s-school .school-content .school-img img {
  max-width: 480px;
}
.p-tokyo .s-school .school-content .btn-box {
  max-width: 430px;
  margin-top: 30px;
  width: 50%;
}
.p-tokyo .s-school .school-content .btn-box .box {
  margin-bottom: 30px;
}
.p-tokyo .s-school .school-content .btn-box .box h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: #ff4400;
  display: flex;
  height: 40px;
  align-items: center;
  padding: 0 20px;
  margin-bottom: 20px;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
}
.p-tokyo .s-school .school-content .btn-box .box h3::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 2px;
  background-color: #fff;
  border-radius: 30px;
  position: absolute;
  transform: translateY(-50%);
  transition: opacity 0.3s;
  top: 52%;
  right: 16px;
  transform: translate(-50%, -50%) translateY(-50%);
}
.p-tokyo .s-school .school-content .btn-box .box h3::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 2px;
  background-color: #fff;
  border-radius: 30px;
  position: absolute;
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.3s;
  top: 52%;
  right: 16px;
  transform: translate(-50%, -50%) translateY(-50%) rotate(90deg);
}
.p-tokyo .s-school .school-content .btn-box .box h3.active::after {
  display: none;
}
.p-tokyo .s-school .school-content .btn-box .box .link-box {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease; /* スライドアニメーション */
  margin-top: 5px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 10px;
}
.p-tokyo .s-school .school-content .btn-box .box .link-box a {
  display: flex;
  align-items: center;
  width: calc(50% - 10px);
  background: #ffeee8;
  border-radius: 5px;
  font-weight: 700;
  font-size: 14px;
  padding: 10px;
  justify-content: space-between;
}
.p-tokyo .s-school .school-content .btn-box .box .link-box a img {
  width: 14px;
}
.p-tokyo .s-school .school-content .btn-box .box .link-box.active {
  max-height: 1000px; /* 適当に大きめでコンテンツを収める */
}

@media screen and (max-width: 768px) {
  .p-tokyo .s-school .school-content {
    display: block;
  }
  .p-tokyo .s-school .school-content .school-img {
    margin-bottom: 30px;
  }
  .p-tokyo .s-school .school-content .school-img img {
    max-width: unset;
  }
  .p-tokyo .s-school .school-content .btn-box {
    max-width: unset;
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */