@charset "UTF-8";


/*================================================
* modal
================================================*/
.modal {
  position: fixed;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 9999;
  overflow: scroll;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal_backdrop {
  position: absolute;
  width: 100%;
  height: auto;
  min-height: 100vh;
}

.modal_backdrop::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgb(255 255 255 / 96%);
  inset: 0;
}



.modal_panel {
  position: relative;
  width: 100%;
  transition: transform .25s ease;
  padding-bottom: 10rem;
}

.modal.is-open .modal_panel {
  transform: translateY(0);
}

.modal_close {
  position: absolute;
  top: 4rem;
  right: 10rem;
  cursor: pointer;
  color: var(--color-primary);
  font-size: 3rem;
  z-index: 20;
}

@media screen and (max-width:767px) {
  .modal_close {
    top: 2rem;
    right: 2rem;
  }
}

/*================================================
* 
================================================*/
.staffMain_wrap {
  width: 70%;
  margin: 0 auto;
  display: flex;
  align-items: start;
  gap: 5.3rem;
}

.staffmain_img {
  width: 64rem;
}

.staffmain_txt {
  font-size: 1.8rem;
  padding-top: 30rem;
}

.staffmain_txt h2 {
  font-size: 4rem;
  margin-bottom: 14rem;
}

.staffmain_txt h3 {
  font-size: 3.1rem;
}

.staffmain_txt h3 span {
  font-size: 1.8rem;
}

@media screen and (max-width:767px) {
  .staffMain_wrap {
    flex-wrap: wrap;
    width: 90%;
    gap: 0;
  }

  .staffmain_txt {
    font-size: 1.4rem;
    padding-top: 3rem;
  }

  .staffmain_txt h2 {
    font-size: 2.2rem;
    margin-bottom: 0;
  }

  .staffmain_txt h3 {
    font-size: 1.8rem;
  }

  .staffmain_txt h3 span {
    font-size: 1.4rem;
  }
}

/*================================================
* 
================================================*/
.qa_wrap {
  width: 83rem;
  margin: 0 auto;
}

.qa_wrap .hd {
  font-size: 6rem;
}

.qa_wrap dt,
.qa_wrap dd {
  display: flex;
  align-items: start;
  gap: 2.6rem;
  font-size: 1.8rem;
}

.qa_wrap dd {
  font-size: 1.6rem;
  margin-top: 3rem;
  margin-bottom: 6rem;
}

.qa_wrap dt span,
.qa_wrap dd span {
  color: var(--color-primary);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  width: 5rem;
}



@media screen and (max-width:767px) {
  .qa_wrap {
    width: 90%;
    margin: 0 auto;
  }

  .qa_wrap dt,
  .qa_wrap dd {
    flex-wrap: wrap;
    gap: 2.6rem;
    font-size: 1.8rem;
  }

  .qa_wrap .hd {
    font-size: 3rem;
  }

  .qa_wrap dt,
  .qa_wrap dd {
    flex-wrap: wrap;
    gap: 0;
    font-size: 1.5rem;
  }

  .qa_wrap dd {
    font-size: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 3rem;
  }

  .qa_wrap dt span,
  .qa_wrap dd span {
    font-size: 2rem;
    width: 100%;
  }
}

/*================================================
* price
================================================*/
.schedule_wrap {
  width: 83rem;
  margin: 0 auto;
}

.schedule_wrap img {
  margin-bottom: 6rem;
}


.schedule_wrap h3 {
  text-align: center;
  font-size: 2.7rem;
  color: var(--color-primary);
  font-weight: 700;
  margin-top: 10rem;
}


.schedule_wrap ul {
  display: flex;
  align-items: start;
  justify-content: space-between;
  color: var(--color-primary);
  position: relative;
}

.schedule_wrap ul::before {
  position: absolute;
  content: "";
  width: calc(100% - 2rem);
  height: 2px;
  background: var(--color-primary);
  left: 50%;
  transform: translateX(-50%);
  top: 2rem;
}

.schedule_wrap ul li {
  position: relative;
  padding-top: 6rem;
  font-size: 2rem;
}

.schedule_wrap ul li::before {
  position: absolute;
  content: "";
  width: 1.7rem;
  height: 1.7rem;
  background: var(--color-white);
  border: .2rem solid var(--color-primary);
  border-radius: 1000px;
  top: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
}

.schedule_wrap ul li:first-child::before,
.schedule_wrap ul li:last-child::before {
  width: 4rem;
  height: 4rem;
  background: var(--color-primary);
  top: 0;
}

.schedule_wrap ul li p {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  width: fit-content;

  margin: auto;
}

.schedule_wrap ul li>span {
  width: fit-content;
  margin: auto;
  display: block;
}

.schedule_wrap ul li p span {
  -webkit-writing-mode: unset;
  -ms-writing-mode: unset;
  writing-mode: unset;
  transform: rotate(-90deg);
  position: relative;
  display: inline-block;
}




@media screen and (max-width:767px) {
  .schedule_wrap {
    width: 90%;
    margin: 0 auto;
  }

  .schedule_wrap ul {
    flex-wrap: wrap;
    color: var(--color-primary);
    position: relative;
  }

  .schedule_wrap ul::before {
    width: 2px;
    height: calc(100% - 6rem);
    left: 1.2rem;
    transform: translateX(0%);
    top: 2rem;
  }

  .schedule_wrap ul li {
    width: 100%;
    padding-top: 0;
    padding-left: 4rem;
    font-size: 1.5rem;
  }

  .schedule_wrap ul li::before {

    width: 1rem;
    height: 1rem;

    top: 1.2rem;
    left: 0.8rem;
    transform: translateX(0%);
  }

  .schedule_wrap ul li:first-child::before,
  .schedule_wrap ul li:last-child::before {
    width: 2.6rem;
    height: 2.6rem;
    top: 0.6rem;
    left: 0rem;
  }

  .schedule_wrap ul li p {
    -webkit-writing-mode: unset;
    -ms-writing-mode: unset;
    writing-mode: unset;
    width: 100%;
    font-size: 1.6rem;
    margin-left: 0;
    line-height: 1.4;
  }

  .schedule_wrap ul li p span {
    transform: rotate(0);
  }

  .schedule_wrap ul li>span {
    margin-left: 0;

  }
}

/*================================================
* access
================================================*/


@media screen and (max-width:767px) {}

/*================================================
* price
================================================*/

@media screen and (max-width:767px) {}

/*================================================
* access
================================================*/


@media screen and (max-width:767px) {}

/*================================================
* price
================================================*/

@media screen and (max-width:767px) {}

/*================================================
* access
================================================*/


@media screen and (max-width:767px) {}