/* ------------------------------
    mixin
------------------------------ */
/* ------------------------------
    data
------------------------------ */
.p-data {
  padding-top: 6rem;
}
.p-data__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.p-data__item {
  width: calc( ( 100% - 6rem ) / 3 );
  margin-left: 3rem;
  border: 1px solid #ddd;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 960px) {
  .p-data__item:nth-child(3n+1) {
    margin-left: 0;
  }
  .p-data__item:nth-child(n+4) {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 959px) {
  .p-data__item {
    width: calc( ( 100% - 3rem ) / 2 );
  }
  .p-data__item:nth-child(2n+1) {
    margin-left: 0;
  }
  .p-data__item:nth-child(n+3) {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-data__item {
    width: 100%;
    margin-left: 0;
  }
  .p-data__item:nth-child(n+2) {
    margin-top: 3rem;
  }
}
.p-data__img {
  flex: 0 0 auto;
}
.p-data__img img {
  width: 100%;
}
.p-data__inner {
  flex: 1 1 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}
.p-data__title {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.p-data__title_ico {
  flex: 0 0 auto;
  margin-right: 1rem;
  max-width: 10vw;
}
.p-data__title_text {
  flex: 1 1 auto;
}
.p-data__title_text_en {
  color: #05216D;
  display: block;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.3em;
  font-size: 1.6rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-data__title_text_en {
    font-size: 1.4rem;
  }
}
.p-data__title_text_ja {
  color: #05216D;
  font-family: "NotoSans-Bold";
  font-size: 2.8rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-data__title_text_ja {
    font-size: 2rem;
  }
}
.p-data__title_text_ja .small {
  font-family: "NotoSans-Regular";
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-data__title_text_ja .small {
    font-size: 1.2rem;
  }
}
.p-data__title_text_ja .x-small {
  font-family: "NotoSans-Regular";
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-data__title_text_ja .x-small {
    font-size: 1rem;
  }
}
.p-data__text {
  color: #333;
  flex: 1 1 auto;
  margin: 1em 0;
}
.p-data__button {
  flex: 0 0 auto;
}
.p-data__button a {
  display: block;
  border: 1px solid #ddd;
  padding: 0.5em 0;
  text-align: center;
  line-height: 1.4;
}
.p-data__button a span {
  color: #333;
  position: relative;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .p-data__button a span {
    font-size: 1.4rem;
  }
}
.p-data__button a span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid #05216D;
  border-right: 2px solid #05216D;
}
.p-data__button_arrow {
  max-width: 26rem;
  margin: 4rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-data__button_arrow {
    width: 80vw;
  }
}
.p-data__button_arrow a {
  display: block;
  border: 1px solid #ddd;
  padding: 0.5em 1em;
  line-height: 1.4;
  color: #333;
  position: relative;
}
.p-data__button_arrow a::before {
  content: "";
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid #05216D;
  border-right: 2px solid #05216D;
}
