body {
  background-color: #fff;
}

/* layout
----------------------------------------------- */
.l-inner {
  padding: 65px 15px;
}

@media (max-width: 767px) {
  .l-inner {
    padding: 40px 15px;
  }
}

.l-list {
  width: 100%;
  max-width: 800px;
  list-style-type: none;
  margin: 0 auto;
}

.l-list-block + .l-list-block {
  margin-top: 50px;
}

@media (max-width: 767px) {
  .l-list-block + .l-list-block {
    margin-top: 30px;
  }
}

.l-list-inner {
  padding: 0 70px;
}

@media (max-width: 767px) {
  .l-list-inner {
    padding: 0 15px;
  }
}

.l-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.l-column-block {
  width: calc((100% - 60px) / 3);
  border: #e8e5e5 solid 1px;
  padding: 20px 20px 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .l-column-block {
    width: 100%;
    padding: 20px 30px;
  }
  .l-column-block:not(:last-child) {
    margin-bottom: 15px;
  }
}

@media (min-width: 768px) {
  .l-column-block:nth-of-type(-n+3) {
    margin-bottom: 30px;
  }
}

.l-column-block .label {
  background-color: #ebf8f8;
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
  display: inline-block;
  padding: .5em .75em;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .l-column-block .label {
    font-size: 11px;
  }
}

.l-column.none-bdr .l-column-block {
  border: none;
  padding: 0;
}

.l-column + p {
  margin-top: 30px;
}

.l-table {
  border: #e8e5e5 solid 1px;
}

.l-table tr:not(:last-child) {
  border-bottom: #e8e5e5 solid 1px;
}

.l-table th, .l-table td {
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .l-table th, .l-table td {
    padding: 10px;
  }
}

.l-table th:not(:last-child), .l-table td:not(:last-child) {
  border-right: #e8e5e5 solid 1px;
}

@media (max-width: 767px) {
  .l-table th:not(:last-child), .l-table td:not(:last-child) {
    border-right: none;
    border-bottom: #e8e5e5 solid 1px;
  }
}

@media (max-width: 767px) {
  .l-table th, .l-table td {
    display: block;
  }
}

.l-table th {
  width: 250px;
  background-color: #fbffff;
}

@media (max-width: 767px) {
  .l-table th {
    width: 100%;
  }
}

.l-table caption {
  color: #20ac91;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .l-table caption {
    font-size: 15px;
  }
}

.l-table + .l-table {
  margin-top: 60px;
}

@media (max-width: 767px) {
  .l-table + .l-table {
    margin-top: 30px;
  }
}

/* common parts
----------------------------------------------- */
.section-ttl {
  background-color: #93d8c8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.section-ttl::after {
  content: '';
  width: 0;
  height: 0;
  border: 35px solid transparent;
  border-top-color: #93d8c8;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -30px;
}

@media (max-width: 767px) {
  .section-ttl::after {
    border: 25px solid transparent;
    border-top-color: #93d8c8;
  }
}

.section-ttl span {
  color: #fff;
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  padding: 1em 0;
}

@media (max-width: 960px) {
  .section-ttl span {
    font-size: 2.6rem;
  }
}

@media (max-width: 767px) {
  .section-ttl span {
    font-size: 2.0rem;
  }
}

.section-sub-ttl {
  color: #20ac91;
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 60px;
}

@media (max-width: 960px) {
  .section-sub-ttl {
    font-size: 2.6rem;
  }
}

@media (max-width: 767px) {
  .section-sub-ttl {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}

.block-ttl {
  color: #20ac91;
  font-size: 2.4rem;
  font-weight: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .block-ttl {
    font-size: 1.6rem;
  }
}

.block-ttl .num {
  background-color: #93d8c8;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 767px) {
  .block-ttl .num {
    width: 40px;
    height: 40px;
  }
}

.block-ttl .num span {
  color: #fff;
  font-size: 2.4rem;
}

@media (max-width: 767px) {
  .block-ttl .num span {
    font-size: 1.6rem;
  }
}

.block-ttl .txt {
  width: calc(100% - 70px);
  margin-left: 10px;
}

@media (max-width: 767px) {
  .block-ttl .txt {
    width: calc(100% - 50px);
  }
}

.paragraph-ttl {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: .25em;
}

p + .img {
  margin-top: 30px;
}

@media (max-width: 767px) {
  p + .img {
    margin-top: 20px;
  }
}

/* styles
----------------------------------------------- */
.mv-ttl img {
  max-width: 920px;
}

.section01 {
  background-color: #f7f2ee;
}

.section01 .lead-v-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.section01 .lead-v-wrapper .img {
  width: 350px;
  margin-right: 30px;
}

@media (max-width: 767px) {
  .section01 .lead-v-wrapper .img {
    margin-right: 0;
    margin-bottom: 20px;
    padding: 0 60px;
  }
}

.section01 .lead-v-wrapper .txt-wrap {
  width: calc(100% - 380px);
}

@media (max-width: 767px) {
  .section01 .lead-v-wrapper .txt-wrap {
    width: 100%;
  }
}

.section01 .lead-v-catch {
  color: #737373;
  font-size: 2.4rem;
  font-weight: normal;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .section01 .lead-v-catch {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 15px;
  }
}

.section02 .l-column p {
  font-size: 1.3rem;
}

.section02 .img-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

@media (max-width: 960px) {
  .section02 .img-wrapper {
    text-align: center;
    display: block;
  }
}

.section02 .img-wrapper .img {
  width: 125px;
  margin-right: 15px;
}

@media (max-width: 960px) {
  .section02 .img-wrapper .img {
    margin: 0 auto 10px;
  }
}

.section02 .img-wrapper span {
  font-size: 1.3rem;
}

.section03 .l-column-block .img {
  width: 220px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .section03 .l-column-block:not(:last-child) {
    margin-bottom: 30px;
  }
}
