@charset "UTF-8";
/*-- globalフォルダ内の_scssを記述--*/
/*-- --*/
.l-main.text-based .section {
  background-color: #FAFAFA;
}
.l-main.text-based .section .section__container {
  padding-top: 65px;
  padding-bottom: 160px;
}
@media screen and (max-width: 750px) {
  .l-main.text-based .section .section__container {
    padding-top: 25px;
    padding-bottom: 105px;
  }
}
@media screen and (max-width: 750px) {
  .l-main.text-based .section .section__area {
    padding: 30px 30px;
    background-color: #ffffff;
  }
}
.l-main.text-based .section .section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
@media screen and (max-width: 750px) {
  .l-main.text-based .section .section-head {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 24px;
  }
}
.l-main.text-based .section .section-head .c-title .c-title__big {
  line-height: 1.5;
}
.l-main.text-based .section .section-head .c-title .c-title__small {
  margin-top: 0.2em;
}
.l-main.text-based .section .section-head .section-head__date {
  font-size: 12px;
  color: #002D62;
}
.l-main.text-based .section .section-box {
  background-color: #ffffff;
  margin-top: 70px;
}
@media screen and (max-width: 750px) {
  .l-main.text-based .section .section-box {
    margin-top: 0;
  }
}
.l-main.text-based .section .section-box .section-box__container {
  padding-top: 74px;
  padding-bottom: 80px;
  margin-right: 120px;
  margin-left: 120px;
}
@media screen and (max-width: 1000px) {
  .l-main.text-based .section .section-box .section-box__container {
    margin-right: 45px;
    margin-left: 45px;
  }
}
@media screen and (max-width: 750px) {
  .l-main.text-based .section .section-box .section-box__container {
    padding-top: 66px;
    padding-bottom: 30px;
    margin-right: 0;
    margin-left: 0;
  }
}
.l-main.text-based .section .section-box .section-box__item {
  margin-top: 66px;
}
@media screen and (max-width: 750px) {
  .l-main.text-based .section .section-box .section-box__item {
    margin-top: 58px;
  }
}
.l-main.text-based .section .section-box .section-box__item:first-child {
  margin-top: 0;
}
.l-main.text-based .section .section-box .section-box__item *:first-child {
  margin-top: 0;
}
.l-main.text-based .section .section-box .subtitle {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 1.9em;
  margin-top: 2.8em;
  color: #002D62;
  border-bottom: 1px solid #D9D9D9;
}
@media screen and (max-width: 750px) {
  .l-main.text-based .section .section-box .subtitle {
    padding-bottom: 1em;
    margin-top: 2.4em;
  }
}
.l-main.text-based .section .section-box .text,
.l-main.text-based .section .section-box .list__item {
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  .l-main.text-based .section .section-box .text,
  .l-main.text-based .section .section-box .list__item {
    font-size: 14px;
  }
}
.l-main.text-based .section .section-box .text {
  margin-top: 2.5em;
}
@media screen and (max-width: 750px) {
  .l-main.text-based .section .section-box .text {
    margin-top: 1.6em;
  }
}
.l-main.text-based .section .section-box .bold {
  font-weight: 700;
}
.l-main.text-based .section .section-box .link {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.l-main.text-based .section .section-box .list {
  margin-top: 2em;
}
@media screen and (max-width: 750px) {
  .l-main.text-based .section .section-box .list {
    margin-top: 1em;
  }
}
.l-main.text-based .section .section-box .list .list__item {
  position: relative;
  padding-left: 1.6em;
}
@media screen and (max-width: 750px) {
  .l-main.text-based .section .section-box .list .list__item {
    padding-left: 1.3em;
  }
}
.l-main.text-based .section .section-box .list .list__item::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0.04em;
  left: 0.2em;
}
.l-main.text-based .section .section-box .list .list__item:nth-child(n+10)::before {
  left: -0.35em;
}
.l-main.text-based .section .section-box .list.list--none .list__item {
  padding-left: 0;
}
.l-main.text-based .section .section-box .list.list--dot .list__item::before {
  content: "・";
}
.l-main.text-based .section .section-box .list.list--en {
  counter-reset: alphabet;
}
.l-main.text-based .section .section-box .list.list--en .list__item {
  counter-increment: alphabet;
}
.l-main.text-based .section .section-box .list.list--en .list__item::before {
  content: counter(alphabet, upper-alpha) ". ";
}
.l-main.text-based .section .section-box .list.list--num {
  counter-reset: number;
}
.l-main.text-based .section .section-box .list.list--num > .list__item {
  counter-increment: number;
}
.l-main.text-based .section .section-box .list.list--num > .list__item::before {
  content: counter(number) ".";
}
.l-main.text-based .section .section-box .list.list--num > .list__item:has(.list) {
  margin-top: 15px;
}
.l-main.text-based .section .section-box .list.list--num > .list__item:first-child {
  margin-top: 0;
}
.l-main.text-based .section .section-box .sns {
  display: flex;
  -moz-column-gap: 115px;
  column-gap: 115px;
  margin-top: 63px;
}
@media screen and (max-width: 750px) {
  .l-main.text-based .section .section-box .sns {
    flex-direction: column;
    row-gap: 37px;
    margin-top: 50px;
  }
}
.l-main.text-based .section .section-box .sns .sns-item .sns-item__head {
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  .l-main.text-based .section .section-box .sns .sns-item .sns-item__head {
    font-size: 14px;
  }
}
.l-main.text-based .section .section-box .sns .sns-item .l-sns {
  margin-top: 7px;
}
@media screen and (max-width: 750px) {
  .l-main.text-based .section .section-box .sns .sns-item .l-sns {
    margin-top: 0;
  }
}
/*# sourceMappingURL=text-based.css.map */
