/* -------------------------------------------------
  Section
------------------------------------------------- */
.sectionWrapper {
  /*margin-top: 80px;*/
  overflow: hidden;
}
.sectionWrapper ~ .sectionWrapper {
  margin-top: 80px;
}
.sectionHeader {
  width: 100%;
  text-align: center;
}
.sectionHeader__ttl {
  font-size: 18px;
  padding: 24px 0;
  border-top: 1px solid #000;
  border-bottom: 2px solid #000;
}
.sectionHeader__ttl.is-noBorder {
  padding: 0;
  border-top: none;
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .sectionWrapper {
    margin-top: 40px;
  }
  .sectionHeader__ttl {
    font-size: 16px;
    padding: 15px 0;
  }
}

.sectionImage__link {
  display: block;
  transition: opacity 0.25s;
}
.sectionImage__link:hover {
  opacity: 0.75;
}

/* 1 column :: image 100% :: text 100% */
.sectionImage.is-100 {
  width: 100%;
}
.sectionText.is-100 {
  width: 100%;
  margin-top: 20px;
}
.sectionText.is-100 .itemInfoWrapper {
  margin-right: -20px;
}
.sectionText.is-100 .itemInfo {
  width: 16.666%;
  max-width: 180px;
  padding-right: 20px;
  margin-top: 0;
}
.sectionText.is-100 .itemInfo:nth-of-type(n+7) {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .sectionText.is-100 .itemInfoWrapper {
    margin-right: 0;
  }
  .sectionText.is-100 .itemInfo {
    width: 100%;
    max-width: none;
    padding-right: 0;
  }
  .sectionText.is-100 .itemInfo:nth-of-type(n+2) {
    margin-top: 20px;
  }
}

/* 1 column :: image 50% :: text 50% */
.sectionImage.is-50,
.sectionText.is-50 {
  width: calc(50% - 40px);
}
.sectionImage.is-left,
.sectionText.is-left {
  -ms-flex-order: 1;
  order: 1;
}
.sectionImage.is-right,
.sectionText.is-right {
  -ms-flex-order: 2;
  order: 2;
}
@media screen and (max-width: 767px) {
  .sectionImage.is-50 {
    width: 100%;
    -ms-flex-order: 1;
    order: 1;
  }
  .sectionText.is-50 {
    width: 100%;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 20px;
  }
}

/* 2 Column :: image 100% :: text 100% */
.sectionBlock.is-50 {
  width: calc(50% - 40px);
}
.sectionBlock.is-50 .sectionImage {
  width: 100%;
}
.sectionBlock.is-50 .sectionText {
  width: 100%;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .sectionBlock.is-50 {
    width: 100%;
  }
}