@charset "UTF-8";
/* ========================================================
# 基本
======================================================== */
/* ========================================================
# メディアクエリ
======================================================== */
.l-inner {
  max-width: 114rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.c-arrow {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  background-color: #0064BE;
  border-radius: 50%;
}
.c-arrow::before {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  display: block;
  -webkit-mask: url(../img/icon_arrow.svg) no-repeat center center/contain;
          mask: url(../img/icon_arrow.svg) no-repeat center center/contain;
  background-color: #fff;
}
.c-arrow.--white {
  background-color: #fff;
}
.c-arrow.--white::before {
  background-color: #0064BE;
}
@media screen and (max-width: 768px) {
  .c-arrow.--spSm {
    width: 2rem;
    height: 2rem;
  }
  .c-arrow.--spSm::before {
    width: 1rem;
    height: 1rem;
  }
}

.c-banner {
  display: block;
  background-color: #fff;
  border-radius: 1.2rem;
  overflow: clip;
  -webkit-box-shadow: 0.1rem 0.1rem 0.6rem 0 rgba(0, 0, 0, .08);
          box-shadow: 0.1rem 0.1rem 0.6rem 0 rgba(0, 0, 0, .08);
  position: relative;
}
.c-banner::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(87, 154, 215, .3);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 0.3s cubic-bezier(0, 0, 0.4, 1);
  transition: opacity 0.3s cubic-bezier(0, 0, 0.4, 1);
}
@media (any-hover: hover) {
  .c-banner:hover::before {
    opacity: 1;
  }
}

.c-banner__wrap {
  display: grid;
  grid-template-columns: 11.4rem 1fr;
  gap: 2.8rem;
  padding: 2rem 2rem 2.4rem;
}
@media screen and (max-width: 768px) {
  .c-banner__wrap {
    gap: 0;
    padding: 1.2rem 1.2rem 0;
  }
}

.c-banner__img {
  width: 100%;
  height: 16rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .c-banner__img {
    grid-column: 1/2;
  }
}

.c-banner__body {
  padding-top: 0.7rem;
}
@media screen and (max-width: 768px) {
  .c-banner__body {
    display: contents;
  }
}

.c-banner__lead {
  font-size: 2rem;
  line-height: 1;
  font-weight: bold;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .c-banner__lead {
    font-size: 1.6rem;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: center;
    grid-column: 1/-1;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 1.3rem;
  }
}

.c-banner__head {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: auto auto 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.4rem;
}
@media screen and (max-width: 768px) {
  .c-banner__head {
    display: block;
    grid-column: 2/3;
    margin: 0 0 0 2rem;
  }
}

.c-banner__label {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.04em;
  padding: 0.8rem;
  min-width: 11rem;
  min-height: 5rem;
  display: inline-grid;
  place-items: center;
  background-color: #DE395B;
  border-radius: 0.6rem;
  color: #fff;
  margin-top: 0.4rem;
}
@media screen and (max-width: 768px) {
  .c-banner__label {
    font-size: 1.6rem;
    padding: 0.5rem;
    min-width: 7rem;
    min-height: 3rem;
    border-radius: 0.4rem;
    margin: 0;
  }
}

.c-banner__titleSub {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-top: 1.3rem;
}
@media screen and (max-width: 768px) {
  .c-banner__titleSub {
    font-size: 1.6rem;
    line-height: 1.3;
    letter-spacing: 0;
    margin-top: 1.1rem;
  }
}

.c-banner__title {
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #0064BE;
}
@media screen and (max-width: 768px) {
  .c-banner__title {
    font-size: 3rem;
    line-height: 1.17;
    letter-spacing: 0;
    margin-top: 0.1rem;
  }
}

.c-banner__link {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #fff;
  background-color: #0064BE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1.5rem;
  min-height: 6rem;
  padding: 1rem 1.5rem;
  margin-top: -6rem;
}
@media screen and (max-width: 768px) {
  .c-banner__link {
    margin-top: -1rem;
    padding: 1rem;
  }
}

.c-btn1 {
  padding: 1rem 2.6rem 1rem 4rem;
  min-height: 8rem;
  min-width: 42rem;
  border: 0.1rem solid #0064BE;
  border-radius: 10rem;
  display: inline-grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .c-btn1 {
    padding-right: 2rem;
    padding-left: 3rem;
    min-height: 6rem;
    min-width: 33.5rem;
  }
}
.c-btn1 .c-btn1__text {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-btn1 .c-btn1__text {
    font-size: 1.5rem;
    letter-spacing: 0;
  }
}
@media (any-hover: hover) {
  .c-btn1:hover {
    background-color: #6EAADC;
    color: #fff;
  }
}

.c-title1 {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  padding-bottom: 2.2rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-title1 {
    font-size: 2.6rem;
    line-height: 1.4;
    padding-bottom: 2rem;
  }
}
.c-title1::after {
  display: inline-block;
  content: "";
  width: 10rem;
  height: 0.2rem;
  background-color: #0064BE;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.c-title1.--borderNone {
  padding-bottom: 0;
}
.c-title1.--borderNone::after {
  display: none;
}

.c-title2 {
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: bold;
  border-bottom: 0.1rem solid #DAE2E6;
  padding-bottom: 2.4rem;
  padding-left: 2.4rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-title2 {
    font-size: 2rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
    padding-bottom: 1.4rem;
  }
}
.c-title2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.4rem;
  height: calc(100% - 2rem);
  background-color: #0064BE;
}
@media screen and (max-width: 768px) {
  .c-title2::before {
    height: calc(100% - 1rem);
  }
}

.p-banner {
  background-color: #EAF2FC;
  margin-top: -2rem;
}

.p-faq {
  background-color: #FAFCFC;
  padding: 8rem 0;
}
@media screen and (max-width: 768px) {
  .p-faq {
    padding: 6rem 0;
  }
}

.p-faq__list {
  margin-top: 4rem;
  display: grid;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .p-faq__list {
    margin-top: 3rem;
  }
}

.p-faq__item {
  position: relative;
  padding-bottom: 1.2rem;
  border-radius: 1.2rem;
  overflow: clip;
  background-color: #fff;
  -webkit-box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, .1);
          box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, .1);
}
@media screen and (max-width: 768px) {
  .p-faq__item {
    padding-bottom: 1rem;
  }
}
.p-faq__item.is-active .p-faq__listIcon::after {
  rotate: 180deg;
  opacity: 0;
}

.p-faq__listHead {
  font-weight: bold;
  padding: 1.4rem 8rem 1.4rem 1.4rem;
  cursor: pointer;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.2rem;
  border-bottom: 0.1rem solid #DAE2E6;
}
@media screen and (max-width: 768px) {
  .p-faq__listHead {
    gap: 2rem;
    padding: 1.2rem 6rem 1.4rem 1rem;
  }
}
.p-faq__listHead::before {
  content: "Q";
  font-size: 2rem;
  line-height: 1;
  font-family: "Rubik", sans-serif;
  width: 3.8rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #0064BE;
  display: grid;
  place-items: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-faq__listHead::before {
    font-size: 1.7rem;
    width: 3rem;
  }
}
.p-faq__listHead::after {
  content: "";
  display: block;
  width: 5.2rem;
  height: 0.1rem;
  background-color: #0064BE;
  position: absolute;
  bottom: -0.1rem;
  left: 0;
}
@media (any-hover: hover) {
  .p-faq__listHead:hover {
    cursor: pointer;
  }
  .p-faq__listHead:hover .p-faq__listTitle {
    color: #0064BE;
  }
  .p-faq__listHead:hover .p-faq__listIcon {
    background-color: #0064BE;
  }
  .p-faq__listHead:hover .p-faq__listIcon::before, .p-faq__listHead:hover .p-faq__listIcon::after {
    background-color: #fff;
  }
}

.p-faq__listTitle {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-top: 0.6rem;
  -webkit-transition: color 0.3s cubic-bezier(0, 0, 0.4, 1);
  transition: color 0.3s cubic-bezier(0, 0, 0.4, 1);
}
@media screen and (max-width: 768px) {
  .p-faq__listTitle {
    font-size: 1.6rem;
    letter-spacing: 0;
    margin: 0;
  }
}

.p-faq__content {
  display: none;
  padding: 2rem 3rem 0 1.4rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-faq__content {
    padding: 1.5rem 2rem 0 1rem;
  }
}

.p-faq__contentInner {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.2rem;
}
@media screen and (max-width: 768px) {
  .p-faq__contentInner {
    gap: 2rem;
  }
}
.p-faq__contentInner::before {
  content: "A";
  display: block;
  font-size: 2rem;
  line-height: 1;
  font-weight: bold;
  font-family: "Rubik", sans-serif;
  width: 3.8rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #0064BE;
  display: grid;
  place-items: center;
  color: #0064BE;
  background-color: #f4f6f8;
  border: 0.1rem solid #DAE2E6;
}
@media screen and (max-width: 768px) {
  .p-faq__contentInner::before {
    font-size: 1.7rem;
    width: 3rem;
  }
}

.p-faq__listText {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-top: 0.2rem;
}
@media screen and (max-width: 768px) {
  .p-faq__listText {
    font-size: 1.3rem;
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: 0;
    margin: 0;
  }
}

.p-faq__listText a {
  color: #0064BE;
  text-decoration: underline;
}

.p-faq__listIcon {
  display: block;
  width: 6.6rem;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #eaf2fc;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-faq__listIcon {
    width: 4rem;
  }
}
.p-faq__listIcon::before, .p-faq__listIcon::after {
  content: "";
  display: block;
  width: 3rem;
  height: 0.2rem;
  background-color: #0064BE;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-faq__listIcon::before, .p-faq__listIcon::after {
    width: 2rem;
  }
}
.p-faq__listIcon::after {
  rotate: 90deg;
}

.p-faq__btn {
  text-align: center;
  margin-top: 4rem;
}

.p-head {
  background-color: #FAFCFC;
  padding: 4rem 0;
}
@media screen and (max-width: 768px) {
  .p-head {
    padding: 3rem 0;
  }
}
.p-head .p-head__item {
  padding: 4rem 0;
}
@media screen and (max-width: 768px) {
  .p-head .p-head__item {
    padding: 3rem 0;
  }
}
.p-head .p-head__text {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .p-head .p-head__text {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
.p-head .p-head__btn {
  margin-top: 3rem;
  text-align: right;
}

.p-introduction {
  padding-top: 9.5rem;
  padding-bottom: 4rem;
  background-color: #FAFCFC;
}
@media screen and (max-width: 768px) {
  .p-introduction {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }
}

.p-introduction__text {
  font-size: 1.5rem;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .p-introduction__text {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

.p-introduction__banner {
  margin-top: 3rem;
}

.p-links {
  background-color: #EAF2FC;
  position: relative;
  z-index: 0;
}
.p-links::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #FAFCFC;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-links::before {
    height: 4rem;
  }
}

.p-links__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  -webkit-box-shadow: 0.1rem 0.1rem 0.6rem rgba(0, 0, 0, .08);
          box-shadow: 0.1rem 0.1rem 0.6rem rgba(0, 0, 0, .08);
  border-radius: 1.2rem;
}
@media screen and (max-width: 768px) {
  .p-links__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-links__item {
  width: 12.5%;
}
@media screen and (max-width: 768px) {
  .p-links__item {
    width: 100%;
  }
}
.p-links__item:nth-child(n+2) {
  border-left: 0.1rem solid #DAE2E6;
}
@media screen and (max-width: 768px) {
  .p-links__item:nth-child(n+2) {
    border-left: none;
  }
}
@media screen and (max-width: 768px) {
  .p-links__item:nth-child(n+3) {
    border-top: 0.1rem solid #DAE2E6;
  }
}
@media screen and (max-width: 768px) {
  .p-links__item:nth-child(even) {
    border-left: 0.1rem solid #DAE2E6;
  }
}
.p-links__item:first-child .p-links__link {
  border-radius: 1.2rem 0rem 0rem 1.2rem;
}
@media screen and (max-width: 768px) {
  .p-links__item:first-child .p-links__link {
    border-radius: 0;
  }
}
.p-links__item:last-child .p-links__link {
  border-radius: 0rem 1.2rem 1.2rem 0rem;
}
@media screen and (max-width: 768px) {
  .p-links__item:last-child .p-links__link {
    border-radius: 0;
  }
}

.p-links__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.6rem 2rem 3.1rem;
  text-align: center;
  position: relative;
  height: 100%;
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.4, 1);
  transition: all 0.3s cubic-bezier(0, 0, 0.4, 1);
}
@media screen and (max-width: 768px) {
  .p-links__link {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    padding: 0.9rem 1rem 1.1rem 1.5rem;
  }
}
@media (any-hover: hover) {
  .p-links__link:hover {
    background-color: #6EAADC;
    color: #fff;
  }
  .p-links__link:hover .u-blue {
    color: #fff;
  }
}

.p-links__text {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: 0;
  display: block;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-links__text {
    text-align: left;
    font-size: 1.4rem;
  }
}

.p-links__icon {
  position: absolute;
  rotate: 90deg;
  bottom: 0;
  left: 50%;
  translate: -50% 50%;
}
@media screen and (max-width: 768px) {
  .p-links__icon {
    position: static;
    translate: initial;
  }
}

.p-mv {
  padding-top: 1.3rem;
  padding-bottom: 2.1rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-mv {
    padding-top: 0.4rem;
    padding-bottom: 3.6rem;
  }
}

.p-mv__inner {
  display: grid;
  grid-template-columns: 418fr 580fr;
  gap: 10.2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .p-mv__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1.6rem;
  }
}

.p-mv__titleEn {
  color: #0064BE;
  font-size: 4.2rem;
  line-height: 1;
  font-weight: bold;
  letter-spacing: 0.04em;
  display: block;
  padding-bottom: 1.7rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-mv__titleEn {
    font-size: 3.2rem;
    letter-spacing: 0.02em;
    text-align: center;
    padding-bottom: 1.3rem;
  }
}
.p-mv__titleEn::before {
  content: "";
  width: 8rem;
  height: 0.2rem;
  background-color: #0064BE;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p-mv__titleEn::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 6rem;
  }
}

@media screen and (max-width: 768px) {
  .p-mv__title {
    text-align: center;
  }
}

.p-mv__titleSm {
  display: block;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: bold;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-mv__titleSm {
    font-size: 2rem;
  }
}

.p-mv__titleJa {
  display: block;
  font-size: 4.6rem;
  line-height: 1;
  font-weight: bold;
  letter-spacing: 0.04em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-top: 1.1rem;
}
@media screen and (max-width: 768px) {
  .p-mv__titleJa {
    font-size: 3.6rem;
    margin-top: 1rem;
  }
}

.p-mv__titleSub {
  display: block;
  font-size: 4.6rem;
  line-height: 1;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-top: 1.2rem;
}
@media screen and (max-width: 768px) {
  .p-mv__titleSub {
    margin-top: 1rem;
    font-size: 3.6rem;
  }
}

.p-mv__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.p-mv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-recommend {
  padding: 8rem 0;
  background-color: #F4F6F8;
}
@media screen and (max-width: 768px) {
  .p-recommend {
    padding: 6rem 0;
  }
}

.p-recommend__text {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
  text-align: center;
  margin-top: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-recommend__text {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-top: 2rem;
  }
}

.p-recommend__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-recommend__list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.p-recommend__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 0;
}
@media screen and (max-width: 768px) {
  .p-recommend__item {
    display: block;
  }
}

.p-recommend__card {
  padding: 1rem 0.2rem 0.2rem;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 0;
  -webkit-box-shadow: 0.1rem 0.1rem 0.6rem 0 rgba(0, 0, 0, .1);
          box-shadow: 0.1rem 0.1rem 0.6rem 0 rgba(0, 0, 0, .1);
  border-radius: 1.2rem;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-recommend__card {
    display: block;
  }
}
.p-recommend__card::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(87, 154, 215, .3);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 0.3s cubic-bezier(0, 0, 0.4, 1);
  transition: opacity 0.3s cubic-bezier(0, 0, 0.4, 1);
}
@media (any-hover: hover) {
  .p-recommend__card:hover::before {
    opacity: 1;
  }
}

.p-recommend__img {
  width: calc(100% - 1.6rem);
  margin: 0 auto;
}
.p-recommend__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 320/205;
}
@media screen and (max-width: 768px) {
  .p-recommend__img img {
    aspect-ratio: 315/200;
  }
}

.p-recommend__cardTitle {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #0064BE;
  margin-top: 1.5rem;
  padding: 0 1.8rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-recommend__cardTitle {
    margin-top: 2rem;
  }
}

.p-recommend__cardText {
  margin-top: 0.5rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  padding: 0 1.8rem;
}
@media screen and (max-width: 768px) {
  .p-recommend__cardText {
    margin-top: 0.4rem;
  }
}

.p-recommend__btn {
  margin-top: 2.5rem;
  background-color: #EAF2FC;
  border-radius: 0 0 1.2rem 1.2rem;
  padding: 1rem 1.5rem 1rem 2rem;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  min-height: 6rem;
}
@media screen and (max-width: 768px) {
  .p-recommend__btn {
    margin-top: 2.3rem;
  }
}

.p-recommend__btnText {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.p-search {
  background-color: #FAFCFC;
  padding: 4rem 0 8rem;
}
@media screen and (max-width: 768px) {
  .p-search {
    padding: 3rem 0 6rem;
  }
}

.p-search__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #fff;
  -webkit-box-shadow: 0.1rem 0.1rem 0.6rem rgba(0, 0, 0, .08);
          box-shadow: 0.1rem 0.1rem 0.6rem rgba(0, 0, 0, .08);
  border-radius: 1.2rem;
  margin-top: 3rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-search__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 2rem;
  }
}

.p-search__item {
  width: 25%;
}
@media screen and (max-width: 768px) {
  .p-search__item {
    width: 100%;
  }
}
.p-search__item:nth-child(n+2) {
  border-left: 0.1rem solid #DAE2E6;
}
@media screen and (max-width: 768px) {
  .p-search__item:nth-child(n+2) {
    border-left: none;
  }
}
@media screen and (max-width: 768px) {
  .p-search__item:nth-child(n+3) {
    border-top: 0.1rem solid #DAE2E6;
  }
}
@media screen and (min-width: 769px) {
  .p-search__item:nth-child(n+5) {
    border-top: 0.1rem solid #DAE2E6;
  }
}
@media screen and (min-width: 769px) {
  .p-search__item:nth-child(5n) {
    border-left: none;
  }
}
@media screen and (max-width: 768px) {
  .p-search__item:nth-child(even) {
    border-left: 0.1rem solid #DAE2E6;
  }
}

.p-search__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem 2rem 2rem 3rem;
  position: relative;
  height: 100%;
  min-height: 9rem;
}
@media screen and (max-width: 768px) {
  .p-search__link {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    padding: 1.1rem 1rem 1.1rem 1.5rem;
    min-height: 6.1rem;
  }
}
@media (any-hover: hover) {
  .p-search__link:hover {
    background-color: #6EAADC;
    color: #fff;
  }
}

.p-search__text {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: 0.04em;
  display: block;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-search__text {
    font-size: 1.4rem;
  }
}

.p-search__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-solution {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #EAF2FC;
}
@media screen and (max-width: 768px) {
  .p-solution {
    padding-top: 4rem;
  }
}

.p-solution__text {
  font-size: 1.5rem;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 1.6rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-solution__text {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-top: 2rem;
  }
}

.p-table {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  background-color: #c3c8d2;
  gap: 0.1rem;
  border: 0.5rem solid #fff;
  position: relative;
  border-radius: 1.2rem;
  overflow: clip;
  -webkit-box-shadow: 0.1rem 0.1rem 0.6rem rgba(0, 0, 0, .08);
          box-shadow: 0.1rem 0.1rem 0.6rem rgba(0, 0, 0, .08);
}
@media screen and (max-width: 768px) {
  .p-table {
    width: 110rem;
    margin-left: 2rem;
  }
}

.p-table__title,
.p-table__content {
  background-color: #fff;
}

.p-table__head {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.1rem;
  background-color: #c3c8d2;
  position: sticky;
  top: 0;
  z-index: 9;
}
.p-table__head.is-fixed {
  position: fixed;
  top: 6.2rem;
  right: 0;
  z-index: 9;
  width: 81.7rem;
}

.p-table__headItem {
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.04em;
  padding: 1.7rem 2rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-table__headItem {
    position: sticky;
    top: 0;
    z-index: 10;
  }
}
.p-table__headItem:nth-child(1) {
  background-color: #f08296;
}
.p-table__headItem:nth-child(2) {
  background-color: #6ebe8c;
}
.p-table__headItem:nth-child(3) {
  background-color: #3caad7;
}
.p-table__headItem:nth-child(4) {
  background-color: #3c8cc8;
}
.p-table__headItem:nth-child(5) {
  background-color: #8278d2;
}
.p-table__headItem:nth-child(6) {
  background-color: #2d4b91;
}

.p-table__title {
  padding: 2rem 1.8rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0;
  color: #0064BE;
}

.p-table__content {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  padding: 0.6rem;
  gap: 0.5rem 1.3rem;
}

.p-table__contentBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.1rem;
  background-color: #c3c8d2;
  z-index: -1;
}
.p-table__contentBg span {
  display: block;
}
.p-table__contentBg span:nth-child(1) {
  background-color: #faeef0;
  border-left: 0.1rem solid #fff;
  border-right: 0.1rem solid #fff;
}
.p-table__contentBg span:nth-child(2) {
  background-color: #e8f4ec;
  border-left: 0.1rem solid #fff;
  border-right: 0.1rem solid #fff;
}
.p-table__contentBg span:nth-child(3) {
  background-color: #e2f2fc;
  border-left: 0.1rem solid #fff;
  border-right: 0.1rem solid #fff;
}
.p-table__contentBg span:nth-child(4) {
  background-color: #d6e8f6;
  border-left: 0.1rem solid #fff;
  border-right: 0.1rem solid #fff;
}
.p-table__contentBg span:nth-child(5) {
  background-color: #e2e0f2;
  border-left: 0.1rem solid #fff;
  border-right: 0.1rem solid #fff;
}
.p-table__contentBg span:nth-child(6) {
  background-color: #dee4f6;
  border-left: 0.1rem solid #fff;
}

.p-table__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  border: 0.2rem solid #0064BE;
  border-radius: 0.4rem;
  padding: 1.4rem 0.9rem 0.9rem;
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.07em;
  min-height: 7.5rem;
  background-color: #fff;
  position: relative;
  -webkit-box-shadow: 0.2rem 0.2rem 0.2rem 0 rgba(0, 0, 0, .2);
          box-shadow: 0.2rem 0.2rem 0.2rem 0 rgba(0, 0, 0, .2);
}
.p-table__link::after {
  content: "";
  position: absolute;
  bottom: 0.2rem;
  right: 0.2rem;
  width: 0.6rem;
  height: 0.6rem;
  background-color: #0064BE;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media (any-hover: hover) {
  .p-table__link:hover {
    background-color: #6EAADC;
    color: #fff;
  }
  .p-table__link:hover::after {
    background-color: #fff;
  }
}

.p-table__link[href=""] {
  pointer-events: none;
}

.p-table__linkLabel {
  background-color: #DE395B;
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  padding: 0.3rem 1.1rem;
  position: absolute;
  top: -0.4rem;
  left: -0.4rem;
  color: #fff;
  border-radius: 100vmax;
}

.p-table__subTitle {
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: bold;
  text-align: center;
  padding: 1rem 0;
}

.mainvisualBackground.extra_bred {
  padding: 0;
}

.tc {
  text-align: center;
}

.breadcrumbs.extra_lp {
  margin: 0;
}

em {
  font-style: normal;
}

.p-training {
  background-color: #EAF2FC;
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .p-training {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media screen and (max-width: 768px) {
  .p-training__inner {
    padding: 0;
  }
}

.p-training__text {
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-top: 1.6rem;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-training__text {
    font-size: 1.4rem;
    margin-top: 2rem;
    padding: 0 2rem;
  }
}

.p-training__table {
  margin-top: 4rem;
  overflow: visible !important;
  overflow: initial !important;
}
@media screen and (max-width: 768px) {
  .p-training__table {
    overflow: auto !important;
    margin-top: 2rem;
  }
}
.p-training__table .scroll-hint-icon {
  top: 5%;
}

.p-training__swipe {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-training__swipe {
    display: grid;
    max-width: 33.5rem;
    background-color: #BEDCFF;
    border-radius: 0.6rem;
    padding: 1rem;
    font-weight: bold;
    font-size: 1.4rem;
    line-height: 1.4;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 4rem auto 0;
  }
}
.p-training__swipe img {
  width: 3rem;
  height: 3.2rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-training__btn {
  text-align: center;
  margin-top: 4rem;
}

.p-worries {
  padding-top: 6rem;
  position: relative;
  background-color: #FAFCFC;
  z-index: 0;
}
.p-worries::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  background-color: #EAF2FC;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-worries::before {
    height: 25rem;
  }
}

.p-worries__title {
  text-align: center;
}

.p-worries__titleMain {
  display: block;
  font-size: 3.8rem;
  line-height: 1;
  font-weight: bold;
  color: #0064BE;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-worries__titleMain {
    font-size: 3.2rem;
  }
}

.p-worries__titleSub {
  display: block;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-top: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-worries__titleSub {
    font-size: 2rem;
  }
}

.p-worries__list {
  margin-top: 7rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .p-worries__list {
    grid-template-columns: 1fr;
    gap: 1.3rem;
    margin-top: 2.8rem;
  }
}

.p-worries__item {
  background-color: #fff;
  border-radius: 1.2rem;
  padding: 3rem 3rem 3rem;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="16" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.08)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0.1rem 0.1rem 0.6rem rgba(0, 0, 0, .08));
          filter: drop-shadow(0.1rem 0.1rem 0.6rem rgba(0, 0, 0, .08));
}
@media screen and (max-width: 768px) {
  .p-worries__item {
    padding: 1.4rem 2rem 0.6rem 0.5rem;
    display: grid;
    grid-template-columns: 90fr 210fr;
    gap: 1rem;
  }
}

.p-worries__itemImg {
  border-radius: 50%;
  width: 14rem;
  height: 14rem;
  border: 0.5rem solid #fff;
  background-color: #faeed0;
  margin: -7.8rem auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .p-worries__itemImg {
    width: 9rem;
    height: 9rem;
    margin: -1.8rem 0 0;
  }
}
.p-worries__itemImg img {
  width: 9.1rem;
  height: 14.3rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .p-worries__itemImg img {
    width: 6rem;
    height: 9rem;
  }
}

.p-worries__itemText {
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-worries__itemText {
    font-size: 1.5rem;
    line-height: 1.4;
    text-align: left;
    margin-top: 0;
  }
}

.u-blue {
  color: #0064BE;
  -webkit-transition: color 0.3s cubic-bezier(0, 0, 0.4, 1);
  transition: color 0.3s cubic-bezier(0, 0, 0.4, 1);
}

@media screen and (max-width: 768px) {
  .u-desktop {
    display: none;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-mobile {
    display: block;
  }
}
/*# sourceMappingURL=style_pcsp.css.map */
