.secTeam .captionArea {
  line-height: 180%;
}
.secTeam .imgArea {
  background: #ffffff;
  text-align: center;
  display: flex;
}
.secTeam .imgArea .text {
  line-height: 180%;
}

@media only screen and (max-width: 767px) {
  .secTeam {
    padding: 0 0 60px 0;
  }
  .secTeam .captionArea {
    font-size: 14px;
    padding: 30px 0;
  }
  .secTeam .imgArea {
    padding: 32px 16px 32px 16px;
    flex-direction: column;
  }
  .secTeam .imgArea .img {
    padding: 0 4px 24px 4px;
  }
  .secTeam .imgArea .text {
    font-size: 14px;
    word-break: auto-phrase;
  }
}
@media print, screen and (min-width: 768px) {
  .secTeam {
    padding: 0 0 80px 0;
  }
  .secTeam .captionArea {
    font-size: clamp(14px, 1.33vw, 16px);
    padding: 30px 0;
  }
  .secTeam .imgArea {
    padding: 48px 20px 44px 20px;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 7%;
         column-gap: 7%;
  }
  .secTeam .imgArea .img {
    text-align: right;
    width: 50%;
  }
  .secTeam .imgArea .text {
    width: min(43%, 300px);
    text-align: left;
    font-size: clamp(12px, 1.17vw, 14px);
  }
}
.secTraining .captionArea {
  line-height: 180%;
}
.secTraining .imgArea {
  background: #ffffff;
  text-align: center;
}
.secTraining .noteBoxWrap {
  display: flex;
}
.secTraining .noteBoxWrap .noteBox {
  background: #ffffff;
}
.secTraining .noteBoxWrap .noteBox .noteTitle {
  text-align: center;
  line-height: 180%;
  color: #136821;
}
.secTraining .noteBoxWrap .noteBox .noteDetail {
  line-height: 180%;
}

@media only screen and (max-width: 767px) {
  .secTraining {
    padding: 0 0 60px 0;
  }
  .secTraining .captionArea {
    padding: 28px 0;
    letter-spacing: 0.03em;
    font-size: 14px;
  }
  .secTraining .imgArea {
    margin: 0 0 20px 0;
    padding: 20px 14px;
  }
  .secTraining .noteBoxWrap {
    flex-direction: column;
    row-gap: 16px;
  }
  .secTraining .noteBoxWrap .noteBox {
    padding: 40px 10% 40px 10%;
  }
  .secTraining .noteBoxWrap .noteBox .noteTitle {
    font-size: clamp(14px, 4.1vw, 16px);
    padding: 0 0 12px 0;
  }
  .secTraining .noteBoxWrap .noteBox .noteDetail {
    font-size: 14px;
  }
}
@media print, screen and (min-width: 768px) {
  .secTraining {
    padding: 0 0 80px 0;
  }
  .secTraining .captionArea {
    padding: 28px 0;
    letter-spacing: 0.03em;
  }
  .secTraining .imgArea {
    margin: 0 0 20px 0;
    padding: 32px 10px 48px 10px;
  }
  .secTraining .noteBoxWrap {
    justify-content: space-between;
  }
  .secTraining .noteBoxWrap .noteBox {
    width: min(49%, 440px);
    padding: 28px 4% 24px 4%;
  }
  .secTraining .noteBoxWrap .noteBox .noteTitle {
    font-size: clamp(14px, 1.5vw, 18px);
    padding: 0 0 16px 0;
  }
  .secTraining .noteBoxWrap .noteBox .noteDetail {
    font-size: clamp(14px, 1.33vw, 16px);
  }
}
.secBenefit .listWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.secBenefit .listWrap .listCol {
  display: flex;
  flex-direction: column;
}
.secBenefit .benefitList {
  background: #ffffff;
}
.secBenefit .benefitList .titleRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.secBenefit .benefitList .titleRow .title {
  color: #136821;
}
.secBenefit .benefitList .titleRow .img {
  position: relative;
  width: 13px;
  aspect-ratio: 1/1;
}
.secBenefit .benefitList .titleRow .img .imgV {
  position: absolute;
  width: 2px;
  height: 100%;
  top: 0;
  left: calc(50% - 1px);
  background: #136821;
  transition: opacity 0.5s;
  opacity: 1;
}
.secBenefit .benefitList .titleRow .img .imgH {
  position: absolute;
  width: 100%;
  height: 2px;
  top: calc(50% - 1px);
  left: 0;
  background: #136821;
}
.secBenefit .benefitList .detailRow {
  overflow: hidden;
  transition: opacity 0.5s;
  opacity: 0;
  max-height: 0;
}
.secBenefit .benefitList .detailRow .detailRowIn {
  line-height: 180%;
}
.secBenefit .benefitList .detailRow .detailRowIn * {
  line-height: 180%;
}
.secBenefit .benefitList .detailRow .detailRowIn .close {
  color: #9D9D9D;
  text-align: center;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.secBenefit .benefitList.on .titleRow .img .imgV {
  opacity: 0;
}
.secBenefit .benefitList.on .detailRow {
  max-height: 100%;
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .secBenefit {
    padding: 0 0 60px 0;
  }
  .secBenefit .listWrap {
    row-gap: 20px;
    padding: 32px 0 0 0;
  }
  .secBenefit .listWrap .listCol {
    width: 100%;
    row-gap: 20px;
  }
  .secBenefit .benefitList .titleRow {
    padding: 24px 16px;
  }
  .secBenefit .benefitList .titleRow .title {
    font-size: clamp(14px, 4.1vw, 16px);
  }
  .secBenefit .benefitList .detailRow .detailRowIn {
    padding: 0 16px 16px 16px;
    font-size: clamp(14px, 3.85vw, 15px);
  }
  .secBenefit .benefitList .detailRow .detailRowIn .text {
    padding: 0 0 12px 0;
  }
  .secBenefit .benefitList .detailRow .detailRowIn .close {
    font-size: 14px;
  }
}
@media print, screen and (min-width: 768px) {
  .secBenefit {
    padding: 0 0 80px 0;
  }
  .secBenefit .listWrap {
    row-gap: 20px;
    padding: 38px 0 0 0;
  }
  .secBenefit .listWrap .listCol {
    width: min(49%, 440px);
    row-gap: 20px;
  }
  .secBenefit .benefitList .titleRow {
    padding: 24px;
  }
  .secBenefit .benefitList .titleRow .title {
    font-size: clamp(14px, 1.5vw, 18px);
  }
  .secBenefit .benefitList .detailRow .detailRowIn {
    padding: 0 24px 24px 24px;
    font-size: clamp(14px, 1.33vw, 16px);
  }
  .secBenefit .benefitList .detailRow .detailRowIn .text {
    padding: 0 0 12px 0;
  }
  .secBenefit .benefitList .detailRow .detailRowIn .close {
    font-size: clamp(14px, 1.17vw, 14px);
  }
}
.secData .dataListWrap {
  display: grid;
}
.secData .dataListWrap .dataList.col2 {
  grid-column: span 2;
}
.secData .dataNote {
  text-align: right;
}

@media only screen and (max-width: 767px) {
  .secData .dataListWrap {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 2.85%;
         column-gap: 2.85%;
    row-gap: 10px;
    padding: 40px 0 10px 0;
  }
  .secData .dataListWrap .dataList.col2-sp {
    grid-column: span 2;
  }
  .secData .dataListWrap .dataList img {
    width: 100%;
  }
  .secData .dataNote {
    font-size: 12px;
  }
}
@media print, screen and (min-width: 768px) {
  .secData .dataListWrap {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 2.33%;
         column-gap: 2.33%;
    row-gap: min(1.75vw, 21px);
    padding: 36px 0 6px 0;
  }
  .secData .dataListWrap .dataList.col3-pc {
    grid-column: span 3;
  }
  .secData .dataListWrap .dataList.row2-pc {
    grid-row: span 2;
  }
  .secData .dataNote {
    font-size: 12px;
  }
}/*# sourceMappingURL=style.css.map */