/* archive */
.under-mv {
  width: 100%;
  height: 450px;
  position: relative;
  margin-bottom: 100px;
}

.under-mv div {
  width: 100%;
  height: 100%;
}

.under-mv img {
  width: 100%;
  height: 100%;
}

.under_contents .main_title {
  position: absolute;
  z-index: 1000;
  color: var(--main-color2);
  font-size: var(--fs32);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.15em;
  top: calc(50% + 50px);
  left: 50%;
  translate: -50% -50%;
}

.under_contents .main_title span {
  display: block;
  font-size: var(--fs14);
  margin-bottom: 0;
}

.archive-menu {
  padding: 100px 0 180px;
}

.archive_list {
  padding: 0 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.archive_list_item {
  width: calc((100% / 3) - 20px);
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .under-mv {
    height: 300px;
  }

  .under_contents .main_title {
    font-size: var(--fs26);
  }

  .archive_list_item {
    width: calc((100% / 2) - 20px);
  }
}

/* staff */
.staff_container {
  padding: 100px 0;
}

.staff_container:nth-of-type(2) {
  background: url(../images/bg-white.jpg) no-repeat center / cover;
}

.staff_grid {
  display: grid;
  padding: 0 10%;
  grid-template-columns: 300px 1fr;
  column-gap: 50px;
}

.staff_img {
  width: 300px;
  height: 400px;
  overflow: hidden;
  margin-bottom: 30px;
  grid-column: 1 / 2;
  grid-row: 1 / 4;
}

.staff_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff_icon {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  margin-bottom: 20px;
}

.staff_icon li {
  display: inline-block;
  background: #000;
  color: #fff;
  font-size: var(--fs16);
  padding: 6px 10px;
  margin-right: 8px;
  margin-bottom: 8px;
}

.staff_title {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  font-size: var(--fs16);
  margin-bottom: 20px;
}

.staff_text {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
}

.staff_grid--reverse {
  grid-template-columns: 1fr 320px;
  text-align: right;
}

.staff_grid--reverse .staff_img {
  grid-column: 2 / 3;
}

.staff_grid--reverse .staff_icon,
.staff_grid--reverse .staff_title,
.staff_grid--reverse .staff_text {
  grid-column: 1 / 2;
}

@media (max-width: 767px) {
  .staff_grid,
  .staff_grid--reverse {
    grid-template-columns: 1fr;
    padding: 0;
    margin-inline: auto;
    text-align: left;
  }

  .staff_img {
    margin-inline: auto;
    grid-column: auto;
    grid-row: auto;
    width: 80%;
  }

  .staff_icon,
  .staff_title,
  .staff_text {
    grid-column: auto;
    grid-row: auto;
  }

  .staff_icon li {
    font-size: var(--fs14);
  }

  .staff_grid--reverse .staff_img {
    grid-column: auto;
    grid-row: auto;
  }
}

/* menu */
.menu-section {
  padding: 100px 0;
}

.menu-section:nth-child(odd) {
  background: url(../images/bg-white.jpg);
}

.menu-section:nth-child(odd) .sub_title {
  border-bottom: 1px solid var(--sub-color1);
}

.menu-section:nth-child(odd) .menu-sub_title {
  background-color: var(--sub-color1);
  color: #fff;
}

.sub_title_container {
  position: relative;
}

.sub_title_caution {
  position: absolute;
  right: 0;
  top: 10px;
}

.menu-sub_title {
  padding: 0.1em 22px;
  background-color: var(--main-color2);
  display: inline-block;
  margin-bottom: 30px;
  font-size: var(--fs20);
  /*  font-weight: normal; */
}

.menu-flex {
  display: flex;
  justify-content: space-between;
  gap: 20%;
}

.menu-flex_item {
  width: 50%;
}

.menu-flex_px {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.menu-section:first-child .menu-price {
  width: 50%;
}

.menu-price {
  width: 100%;
}
.menu-price a:hover {
  color: var(--sub-color1);
  transition: 0.6s;
}
.menu-price div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  line-height: 3;
}

.menu-price dd {
  text-align: right;
}

.menu-marker {
  color: var(--main-color2);
  background-color: #000;
  display: inline-block;
  width: 70px;
  height: 25px;
  line-height: 25px;
  vertical-align: middle;
  text-align: center;
  margin-right: 5px;
}

.menu-content {
  width: 50%;
}

.menu-flex_item:has(h4) .menu-price {
  text-indent: 2em;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .menu-section {
    padding: 50px 20px;
  }

  .menu-section .inner {
    padding: 0;
  }

  .menu-sub_title {
    font-size: var(--fs16);
  }

  .menu-flex {
    flex-direction: column;
  }

  .menu-flex_item {
    width: 100%;
    margin-bottom: 50px;
  }

  .menu-flex_px {
    flex-direction: column;
  }

  .menu-section:first-child .menu-price {
    width: 100%;
  }

  .menu-price {
    width: 100%;
  }

  .menu-content {
    width: 100%;
    margin-bottom: 50px;
  }
}
/* school */
.school-section {
  padding: 100px 0;
}
.school .sub_title {
  font-family:
    "Yu Gothic", "游ゴシック体", YuGothic, "游ゴシック Medium",
    "Yu Gothic Medium", "游ゴシック", sans-serif;
  font-size: var(--fs24);
  letter-spacing: normal;
}
.school-catch {
  text-align: center;
  line-height: 2.5;
  margin-bottom: 30px;
}
.school-summary_list {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}
.school-summary_img {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background-color: var(--main-color2);
  margin-bottom: 20px;
}
.school-summary_item {
  text-align: center;
}
.school-summary_item:first-child .school-summary_img img {
  width: 80px;
  height: 100px;
  margin-top: 30px;
}
.school-summary_item:nth-child(2) .school-summary_img img {
  width: 85px;
  height: 85px;
  margin-top: 40px;
}
.school-summary_item:last-child .school-summary_img img {
  width: 110px;
  height: 95px;
  margin-top: 40px;
}
.school-lesson_content {
  width: 860px;
  margin: 0 auto 50px auto;
  background-color: var(--main-color2);
  display: flex;
}
.school-lesson_img {
  width: 40%;
}
.school-lesson_list {
  width: 100%;
  padding: 30px 30px 20px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.school-lesson_list ul li {
  margin-bottom: 20px;
}
.school-lesson_list ul li::before {
  content: "●";
}
.school-lesson_price {
  font-size: var(--fs24);
  align-self: flex-end;
}
.school-lesson_price span {
  background-color: var(--sub-color1);
  color: var(--main-color2);
  padding: 0 0.5em;
  font-size: var(--fs14);
  display: inline-block;
}
.school-staff_img {
  width: 80px;
  height: 80px;
}
.school-staff_img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.school-staff_item {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}
.school-staff_container {
  display: flex;
  padding: 0 30px;
}
.school-staff_container_left {
  width: 65%;
  text-align: center;
}
.school-staff_container_right {
  position: relative;
  width: 35%;
}
.img1 {
  position: absolute;
  right: 0;
}
.img2 {
  position: absolute;
  left: 0;
  bottom: 0;
}
.school-staff_text {
  margin-bottom: 50px;
}
.school-info {
  width: 400px;
  margin: 100px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}
.school-btn_line {
  display: inline-block;
  color: #fff;
  padding: 14px 14px 14px 5em;
  background-color: #06c755;
  position: relative;
  box-sizing: border-box;
}
.school-btn_line:hover {
  border-radius: 8px;
  transform: scale(0.95);
}
.school-btn_line::before {
  content: "";
  background: url(../images/line_132.png) center/ cover;
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  top: 50%;
  left: 8%;
  translate: 0 -50%;
  pointer-events: none;
}
a.school-btn_tel {
  display: inline-block;
  color: #fff;
  background-color: var(--sub-color1);
  position: relative;
  box-sizing: border-box;
  font-size: var(--fs36);
  font-family: "Shippori Mincho", serif;
}
.school-btn_tel:hover {
  border-radius: 8px;
  transform: scale(0.95);
}
@media (max-width: 767px) {
  .school-section {
    padding: 50px 20px;
  }
  .school-summary_list {
    flex-wrap: wrap;
  }
  .school-summary_img {
    width: 120px;
    height: 120px;
  }
  .school-summary_item:first-child .school-summary_img img {
    width: 55px;
    height: 70px;
    margin-top: 25px;
  }
  .school-summary_item:nth-child(2) .school-summary_img img {
    width: 55px;
    height: 55px;
    margin-top: 35px;
  }
  .school-summary_item:last-child .school-summary_img img {
    width: 80px;
    height: 70px;
    margin-top: 25px;
  }
  .school-lesson_content {
    width: 100%;
    flex-direction: column;
  }
  .school-lesson_img {
    width: 100%;
  }
  .school-lesson_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .school-staff_item {
    flex-direction: column;
  }
  .school-staff_container {
    flex-direction: column;
  }
  .school-staff_container_left {
    width: 100%;
    margin-bottom: 50px;
  }
  .school-staff_container_right {
    width: 100%;
    height: 300px;
  }
  .img1 {
    position: absolute;
    right: 0;
  }
  .img2 {
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .school-staff_text {
    margin-bottom: 50px;
  }
  .school-info {
    width: 90%;
    margin: 50px auto 100px;
  }
  a.school-btn_tel {
    font-size: var(--fs30);
  }
}
