/*設備一覧見出し
---------------------------------------------------------------------------*/

.section-title{
  position:relative;
  margin:50px 0 30px 0;
  padding:5px 0 5px 20px;
  scroll-margin-top:130px;
  font-size:24px;
  font-weight:700;
  line-height:1.4;
  color:#005bac;
}

.section-title::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:5px;
  background:#005bac;
}

.section-title::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:2px;
  background:#e5e5e5;
}


/* =================================
タブレット
================================= */

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

  .section-title{
    margin-top:70px;
    scroll-margin-top:105px;
  }

}


/* =================================
スマホ
================================= */

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

  .section-title{
    padding:0 0 14px 18px;
    margin-top:40px;
    margin-bottom:15px;
    scroll-margin-top:95px;
    font-size:18px;
  }

  .section-title::before{
    width:4px;
  }

}

/*設備一覧
---------------------------------------------------------------------------*/

.equipment_list {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    background: #f5f5f5;
    padding: 80px 20px;
}


.equipment_list__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.equipment_list__title {
    margin-bottom: 40px;

    color: #2c3e50;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}

.equipment_list__table_wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.equipment_list__table {
    width: 100%;
    min-width: 900px;

    border-collapse: collapse;
    background: #ffffff;
    margin-bottom: 40px;
}

.equipment_list__table th {
    padding: 16px;

    background: #00A3E8;
    color: #ffffff;

    font-size: 15px;
    font-weight: 700;
    text-align: left;

    border: 1px solid #e3e3e3;
    white-space: nowrap;
}

.equipment_list__table td {
    padding: 14px 16px;

    font-size: 15px;
    line-height: 1.6;

    border: 1px solid #e3e3e3;
    color: #333333;

    text-align: left;
    vertical-align: middle;
}

/* 設備名セル */
.equipment_list__table td[rowspan] {
    min-width: 150px;

    padding-top: 18px;

    background: ffffff;

    color: #333333;
    font-weight: 700;

    text-align: left;
    vertical-align: top;
}

/* 台数列のみ中央寄せ */
.equipment_list__table th:last-child,
.equipment_list__table td:last-child {
    text-align: center;
    white-space: nowrap;
}

/* スマホ */
@media (max-width: 768px) {

    .equipment_list {
        padding: 60px 15px;
    }

    .equipment_list__title {
        margin-bottom: 30px;
        font-size: 26px;
    }

    .equipment_list__table {
        min-width: 700px;
    }

    .equipment_list__table th,
    .equipment_list__table td {
        padding: 12px;
        font-size: 14px;
    }

    .equipment_list__table td[rowspan] {
        min-width: 140px;
    }
}