@charset "utf-8";


/* ==================================================
elements
================================================== */

/* --------------------------------------------------
imgTxtBox
-------------------------------------------------- */
.imgTxtBox {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  text-align: center;
}
.imgTxtBox > li {
  position: relative;
  width: 25%;
  padding: 30px 10px 30px 10px;
  text-align: left;
  vertical-align: top;
  border-right: none;
}
.imgTxtBox > li:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0px;
  display: block;
  width: 1px;
  height: calc(100%);
  background: #ddd;
}
.imgTxtBox > li.bdrRN:before {
  display: none;
}
.imgTxtBox > li.pc_bdrR {
  height: calc(100% - 20px);
  border-right: 1px solid #ddd !important;
}
.imgTxtBox > li.border-bottom {
  position: relative;
}
.imgTxtBox > li.border-bottom:after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: -10px;
  display: block;
  width: calc(100% - 10px);
  height: 1px;
  background: #ddd;
}
.imgTxtBox:not(.col2) > li:nth-child(4n+1) {
  margin-left: 0;
}
.imgTxtBox:not(.col2) > li:nth-child(4n+4):before {
  display: none;
}
.imgTxtBox__img {
  text-align: center;
}
.imgTxtBox__img > img {
  width: 100%;
}
.imgTxtBox__txt {
  margin-top: 15px;
}
.imgTxtBox__img + .imgTxtBox__txt {
  margin-top: 25px;
}
.imgTxtBox__txt > .text--main {
  position: relative;
  display: block;
  padding-bottom: 20px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
.imgTxtBox__txt > .text--main:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  display: block;
  width: 30px;
  height: 1px;
  margin-left: -15px;
  background: #126de0;
}
.imgTxtBox__txt .text--sub {
  display: block;
}
.imgTxtBox__txt > .text--main + .text--sub {
  margin-top: 15px;
}
.imgTxtBox__txt .text--sub + .text--main {
  margin-top: 15px;
}
.imgTxtBox .headingSp .bodyMain {
  font-size: 24px;
}
