@charset "utf-8";
/* SUPPORT CSS
---------------------------------- */

/* ---------------------------------------------------------
派遣事業 共通
--------------------------------------------------------- */
.sup {
    vertical-align: super;
    font-size: 0.7em;
}
.sec-about{
	counter-reset: list-number 0;
}
.about-box {
  border-radius: 10px;
  border-left:  10px solid #fabe00;
  background-color: #f9f7f2;
  padding-left: 8%;
  padding-right: 8%;
}
.document-area {
  background-color: #fff9e5;
  padding-left: 10%;
  padding-right: 10%;
}
.document-area .ttl {
  width: 140px;
  line-height: 40px;
  border-radius: 0 0 10px 10px;
  background-color: #ed6c1e;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.document-area .btnarea:last-child {
  margin-bottom: 0;
}
.yel-sq{
  padding-left: 25px;
  position: relative;
}
.yel-sq::before{
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 5px;
  background-color: #fabe00;
  position: absolute;
  top: 0.75em;
  left: 0;
  transform: translateY(-50%);
}
.ttl-num{
  position: absolute;
  top: 0;
  left: 0;
  /* padding-left: 35px; */
}
.ttl-num::before{
  content: "";
  display: block;
  color: #fff;
  counter-increment: list-number 1;
  content: counter(list-number);
  width: 28px;
  height: 28px;
  text-align: center;
  border-radius: 5px;
  background-color: #f29600;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 767px) {
  .document-area {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* お申込･ご利用の流れ -------------- */
.sec-flow {
  background-color: #f9f7f2;
  position: relative;
}
.sec-flow .flow-cont {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
	counter-reset: number 0;
}
.sec-flow::after{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 0;
}


/* ---------------------------------------------------------
手話通訳者の派遣
--------------------------------------------------------- */
.sign .about-box .desc {
  font-size: clamp(1.7rem, 1.6336rem + 0.14vw, 1.79rem);
}


/* ---------------------------------------------------------
要約筆記者の派遣
--------------------------------------------------------- */
.notetaker .about-term {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
.notetaker .about-term .about-illust{
  max-width: 340px;
  width: calc(50% - 20px);
}
.notetaker .about-term .about-illust .illust-area{
  padding: calc(10px + 10%);
  background-color: #fff;
  border-radius: 5px;
  text-align: center;
}
.notetaker .about-term .about-illust .illust-area {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
}
.notetaker .about-term .about-illust .illust-area img{
  max-width: 200px;
}

@media (max-width: 767px) {
    .notetaker .about-term {
        gap: 25px;
    }
    .notetaker .about-term .about-illust {
        width: 100%;
        max-width: none;
    }
    .notetaker .about-term .about-illust .term-ttl {
        text-align: center;
    }
}
@media (max-width: 480px) {
    .notetaker .about-term .about-illust .term-ttl {
        text-align: left;
    }
}


.notetaker #sec-flow .txt-link{
  color: #d48200;
  text-underline-offset: 0.1em;
}

@media (min-width: 768px) {
  .notetaker #sec-flow .txt-link:hover{
    text-decoration: underline;
  }
}


/* ---------------------------------------------------------
講座・講師の派遣
--------------------------------------------------------- */
.instructor .about-box{
  padding-left: 5%;
}
.instructor .about-icon{
  width: 100px;
  margin-right: 30px;
}
.instructor .about-icon img{
  border-radius: 5px;
  background-color: #fff;
}
.instructor .about-txt{
  flex: 1;
}

/*price-table*/
.instructor .price-table {
    width: 100%;
    border-spacing: 0;
    border-collapse: separate;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #fabe00;
}
.instructor .price-table th,
.instructor .price-table td {
  padding: 10px;
  border-bottom: 2px solid #fabe00;
}
.instructor .price-table th {
    background-color: #fabe00;
}
.instructor .price-table td {
}
.instructor .price-table td.no-border {
    border-bottom: none;
    position: relative;
}
.instructor .price-table td.no-border::before {
    content: "";
    width: calc(100% - 40px);
    height: 1px;
    background-color: rgba(0,0,0,0.3);
    position: absolute;
    bottom: 0;
    left: 20px;
}
.instructor .price-table tbody tr:last-child th,
.instructor .price-table tbody tr:last-child td {
  border-bottom: none;
}
.instructor .price-table .head {
    width: 160px;
    text-align: center;
    position: relative;
}
.instructor .price-table .head::before {
    content: "";
    width: 1px;
    height: calc(100% - 40px);
    background-color: rgba(0,0,0,0.3);
    position: absolute;
    top: 20px;
    right: 0;
}
.instructor .price-table thead .head::before {
    height: calc(100% - 20px);
    background-color: #fff;;
    top: 10px;
}
.instructor .price-table .cont {
    padding: 20px 30px;
}
.instructor .price-table .cont .cont-inr {
    align-items: center;
    justify-content: space-between;
}
.instructor .price-table .cont .cont-inr > span {
    text-align: center;
    line-height: 1.4;
}
@media (max-width: 991px) {
    .instructor .price-table .cont .cont-inr {
        display: block;
        text-align: center;
    }
}
@media (max-width: 640px) {
    .instructor .price-table .head {
        width: 120px;
    }
    .instructor .price-table .cont {
        padding: 20px 20px;
    }
}
@media (max-width: 480px) {
    .instructor .price-table .head {
        width: 60px;
    }
    .instructor .price-table .head:not(.col-txt) span {
        -webkit-writing-mode: vertical-rl;
        -moz-writing-mode: vertical-rl;
        writing-mode: vertical-rl;
        white-space: nowrap;
        display: inline-block;
        writing-mode: vertical-rl;
        margin: 0 auto;
        display: inline-block;
    }
}
@media (max-width: 400px) {
    .instructor .price-table th,
    .instructor .price-table td {
        padding: 10px 6px;
        font-size: 0.9em;
    }
    .instructor .price-table .head {
        width: 50px;
    }
    .instructor .price-table .cont {
        padding: 20px 10px;
    }
}


.instructor .price-area{
  padding-left: 25px;
}
.instructor .price-area .price-ttl{
  position: relative;
  padding-left: 35px;
}
.instructor .price-ex{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-color: #f9f7f2;
}
.instructor .price-ex .price-left,
.instructor .price-ex .price-right{
  text-align: center;
  padding: 20px;
  flex: 1;
}
.instructor .price-left{
  position: relative;
}
.instructor .price-left::after{
  content: url(../img/support/arrow_yel.svg);
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
}
.instructor .price-right{
  margin-left: 18px;
}
@media (max-width: 767px) {
    .instructor .about-icon {
        width: 80px;
        margin-right: 20px;
    }
    .instructor .price-area {
        padding-left: 0;
    }
}

@media (max-width: 575px) {
  .instructor .price-ex{
    padding: 20px;
  }
  .instructor .price-ex .price-left,
  .instructor .price-ex .price-right{
    width: 100%;
    padding: 0;
    flex: auto;
  }
  .instructor .price-left::after {
    top: 110%;
    left: 50%;
    transform: translatex(-50%) rotateZ(90deg);
  }
  .instructor .price-right{
    margin-left: 0;
    margin-top: 30px;
  }
}
@media (max-width: 480px) {
    .instructor .about-icon {
        width: 100px;
        margin-right: 0;
        margin: 0 auto;
    }
    .instructor .about-box .head {
        text-align: center;
    }
    .instructor .about-txt {
        flex: auto;
        padding-top: 10px;
    }
}


/* ---------------------------------------------------------
機材の貸出・レンタル
--------------------------------------------------------- */
.rental .sub-list li{
  position: relative;
  padding-bottom: 20px;
  padding-left: 35px;
}
.rental .sub-list li:last-child{
  padding-bottom: 0;
}
.rental .sub-list .ttl-num{
  position: absolute;
  top: 0.25em;
  left: 0;
}
.rental .sub-list .ttl-num::before{
  width: 22px;
  height: 22px;
  line-height: 1.3;
}
.rental .eq-list{
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
}
.rental .eq-list .yel-sq{
  padding-left: 20px;
}
.rental .eq-list .yel-sq::before {
  width: 12px;
  height: 12px;
  border-radius: 3px;
}

@media (max-width: 480px) {
  .rental .eq-list{
    gap: 15px 25px;
  }
}
@media (max-width: 400px) {
  .rental .eq-list li{
    width: 100%;
  }
}
