@charset "UTF-8";

/************ for esapos8060 (renkei) ************/

#includeHeader {
  position: relative;
  z-index: 999;
}

/* =======================
list-anchor
======================= */
.list-anchor {
  padding-bottom: 64px;
  border-bottom: 1px solid #757578;
}
.list-anchor li {
  display: flex;
  align-items: center;
}
.list-anchor li + li {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .list-anchor li {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =======================
heading-content
======================= */
.heading-content {
  position: relative;
  padding-left: 30px;
  font-weight: 700;
}
.heading-content::before {
  content: "";
  width: 10px;
  height: 48px;
  position: absolute;
  top: 1px;
  left: 0;
  background-color: #347AB8;
}

@media screen and (max-width: 767px) {
  .heading-content::before {
    height: 42px;
  }
  .heading-content.js-trg {
    padding-right: 50px;
    cursor: pointer;
  }
  .heading-content.js-trg::after {
    content: "";
    width: 30px;
    height: 30px;
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    border-radius: 100vh;
    background-image: url(../img/renkei/icon_plus.png);
    background-repeat: no-repeat;
    background-size: 30px 30px;
    transform: translateY(-50%);
    transition: .2s ease;
  }
  .heading-content.js-trg.-open::after {
    background-image: url(../img/renkei/icon_minus.png);
  }
}

.js-trg {
  pointer-events: none;
}
.js-tgl {
  display: block;
}

@media screen and (max-width: 767px) {
  .js-trg {
    margin-bottom: 24px;
    pointer-events: auto;
  }
  .js-tgl {
    display: none;
    margin-top: 0 !important;
  }
}

/* =======================
flow-step__list
======================= */
.flow-step__list ol {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin-right: -120px;
}
.flow-step__list li {
  position: relative;
  max-width: calc((100% / 3) - 120px);
  margin-right: 120px;
}
.flow-step__list li::after {
  position: absolute;
  top: calc(calc(50% - 18px) - 2em);
  right: -70px;
  content: url(../pages/assets/img/common/icon_arw_black.png);
}
.flow-step__list li:nth-of-type(3n) {
  margin-right: 0;
  background-image: none;
}
.flow-step__list li:nth-of-type(3n)::after {
  content: none;
}
.flow-step__list li:last-child::after {
  content: none;
}
.flow-step__list li:nth-child(n+4) {
  margin-top: 32px;
}
.flow-step__list figure {
  width: 100%;
}
.flow-step__list figure img {
  width: 100%;
}
.flow-step__list figcaption {
  margin-top: 20px;
}
.flow-step__list figcaption .label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 142px;
  height: 32px;
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.7;
  color: #333;
  border-radius: 20px;
}
.flow-step__list figcaption .label.label-mp {
  background-color: #D2E6F1;
}
.flow-step__list figcaption .label.label-ks {
  background-color: #78DAD2;
}
.flow-step__list figcaption .label.label-es {
  color: #FFF;
  background-color: #005AAB;
}
.flow-step__list figcaption .notes {
  display: block;
  font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
  .flow-step__list ol {
    flex-direction: column;
    margin-right: 0;
  }
  .flow-step__list li {
    width: 100%;
    max-width: 240px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 60px;
  }
  .flow-step__list li::after {
    position: absolute;
    top: auto;
    right: calc(50% - 8px);
    bottom: -50px;
    transform: rotate(90deg);
  }
  .flow-step__list li:nth-of-type(3n) {
    margin-right: auto;
  }
  .flow-step__list li:nth-of-type(3n)::after {
    content: url(../pages/assets/img/common/icon_arw_black.png);
  }
  .flow-step__list li:nth-child(n+4) {
    margin-top: 0;
  }
  .flow-step__list li:last-child {
    margin-bottom: 0;
  }
  .flow-step__list li:last-child::after {
    content: none;
  }
}