@charset "UTF-8";
.p-mv {
  position: relative;
  height: 610px;
  overflow: hidden;
  margin-top: 60px;
  /* ===== 画像の上に乗せるテキスト ===== */
  /* 上のラベル */
  /* メインタイトル */
  /* 本文 */
  /* 本文中の強調（GLOBAL REACH / 50,000 /「即戦力」） */
  /* ボタン */
}
@media screen and (min-width: 821px) {
  .p-mv {
    margin-top: 80px;
    height: calc(100vh - 80px);
  }
}
.p-mv .p-mv__img {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.p-mv .p-mv__img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 115%;
  height: 150%;
  max-width: inherit;
  /* 上から下へゆっくり移動（無限ループ・下方向のみ） */
  -webkit-animation: p-mv-float 25s linear infinite;
  animation: p-mv-float 25s linear infinite;
}
.p-mv .p-mv__img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  background: #0E63C4;
  background: linear-gradient(90deg, rgb(14, 99, 196) 0%, rgb(21, 139, 201) 100%);
  mix-blend-mode: soft-light;
  opacity: 1;
}
.p-mv .p-mv__content {
  position: absolute;
  transform: translate(-50%, 0%);
  left: 50%;
  top: 50px;
  z-index: 3;
  width: 100%;
}
@media screen and (min-width: 821px) {
  .p-mv .p-mv__content {
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.p-mv .p-mv__inner {
  width: 100%;
}
.p-mv .p-mv__label {
  display: table;
  margin: 0 auto 10px;
  padding: 6px 12px;
  background-color: #11B5DE;
  border-radius: 5px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 821px) {
  .p-mv .p-mv__label {
    margin-bottom: 28px;
    padding: 10px 33px;
    border-radius: 10px;
    font-size: 18px;
  }
}
.p-mv .p-mv__ttl {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (min-width: 821px) {
  .p-mv .p-mv__ttl {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    padding: 0px 0px 29px;
    font-size: 60px;
    line-height: 1.3;
    letter-spacing: 0.05em;
  }
}
.p-mv .p-mv__text {
  margin-top: 40px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
  text-align: center;
}
@media screen and (min-width: 821px) {
  .p-mv .p-mv__text {
    margin-top: -3px;
    padding: 0;
    border: none;
    font-size: 20px;
    letter-spacing: 0.05em;
    font-weight: 500;
    line-height: 2;
  }
}
.p-mv .p-mv__strong {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 821px) {
  .p-mv .p-mv__strong {
    font-size: 20px;
    font-weight: 500;
  }
}
.p-mv .p-mv__btns {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  justify-content: center;
}
@media screen and (min-width: 821px) {
  .p-mv .p-mv__btns {
    gap: 20px;
    margin-top: 40px;
  }
}
.p-mv .p-mv__btn {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  border-radius: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  transition: opacity 0.2s;
}
.p-mv .p-mv__btn:hover {
  opacity: 0.85;
}
@media screen and (min-width: 821px) {
  .p-mv .p-mv__btn {
    flex: 0 0 auto;
    flex-direction: row;
    gap: 0;
    width: 300px;
    height: 60px;
    padding: 0 30px;
    border-radius: 30px;
    font-size: 16px;
  }
}
.p-mv .p-mv__btn--navy {
  background-color: #101F70;
  color: #fff;
}
.p-mv .p-mv__btn--white {
  background-color: #fff;
  color: #101F70;
  border: 1px solid #101F70;
}
.p-mv .p-mv__btn-arrow {
  width: 10px;
  height: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 821px) {
  .p-mv .p-mv__btn-arrow {
    position: absolute;
    top: 50%;
    right: 14px;
    width: 14px;
    height: 14px;
    transform: translateY(-50%);
  }
}
.p-mv .p-mv__btn--navy .p-mv__btn-arrow {
  background-image: url("../../../img/common/arrow-white.svg");
}
.p-mv .p-mv__btn--white .p-mv__btn-arrow {
  background-image: url("../../../img/top/arrow-dark-navy.svg");
}

/* MV画像：上から下へゆっくり移動（X方向の-15%は維持） */
@-webkit-keyframes p-mv-float {
  from {
    transform: translate(-8%, -32%);
  }
  to {
    transform: translate(-8%, 0%);
  }
}
@keyframes p-mv-float {
  from {
    transform: translate(-8%, -32%);
  }
  to {
    transform: translate(-8%, 0%);
  }
}
/* モーション軽減設定時はアニメーションを停止 */
@media (prefers-reduced-motion: reduce) {
  .p-mv .p-mv__img img {
    -webkit-animation: none;
    animation: none;
  }
}
.p-pickup {
  padding: 58px 0 80px;
  position: relative;
  /* PICK UP は Montserrat */
  /* SP・PCともにSplideスライダー（z-indexで背景デコより前面に） */
}
@media screen and (min-width: 821px) {
  .p-pickup {
    padding: 90px 0 100px;
  }
}
.p-pickup .c-section-ttl {
  margin-bottom: 13px;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 500;
}
@media screen and (min-width: 821px) {
  .p-pickup .c-section-ttl {
    margin-bottom: 35px;
    font-size: 40px;
  }
}
.p-pickup .c-inner {
  padding: 0;
}
.p-pickup .p-pickup__more {
  margin-top: 48px;
}
.p-pickup .p-pickup__more .c-btn2 {
  width: 250px;
}
@media screen and (min-width: 821px) {
  .p-pickup .p-pickup__more .c-btn2 {
    width: 300px;
  }
}
@media screen and (min-width: 821px) {
  .p-pickup .p-pickup__more {
    margin-top: 56px;
  }
}
.p-pickup .p-pickup__slider {
  position: relative;
  z-index: 1;
}
.p-pickup::before {
  content: "";
  display: block;
  width: 150px;
  height: 143px;
  background: url("../../../img/top/pickup-deco.webp") no-repeat center top/cover;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media screen and (min-width: 821px) {
  .p-pickup::before {
    width: 350px;
    height: 334px;
  }
}

.p-main-menu {
  padding: 80px 0;
  position: relative;
  /* SP：縦並び1列 / PC：2列 */
  /* SP：画像上→bodyの縦並び / PC：画像左→bodyの横並び gap30 */
  /* テキストbody：奇数#EBF3FF / 偶数#EBFBFF */
  /* 見出しエリア */
  /* リスト：c-text サイズ・左に● */
}
@media screen and (min-width: 821px) {
  .p-main-menu {
    padding: 100px 0;
  }
}
.p-main-menu::before {
  content: "";
  display: block;
  width: 210px;
  height: 200px;
  background: url(../../../img/top/pickup-deco.webp) no-repeat center top/cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  transform: scaleX(-1);
}
.p-main-menu .c-section-ttl {
  margin-bottom: 30px;
}
.p-main-menu .p-main-menu__lead {
  text-align: center;
  margin-bottom: 26px;
  font-size: 16px;
  line-height: 1.875;
  font-weight: 500;
}
@media screen and (min-width: 821px) {
  .p-main-menu .p-main-menu__lead {
    margin-bottom: 35px;
  }
}
.p-main-menu .p-main-menu__items {
  display: grid;
  gap: 16px;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 821px) {
  .p-main-menu .p-main-menu__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media screen and (min-width: 821px) {
  .p-main-menu .p-main-menu__item {
    display: flex;
    align-items: stretch;
  }
}
@media screen and (min-width: 821px) {
  .p-main-menu .p-main-menu__img {
    flex-shrink: 0;
    width: 146px;
  }
}
.p-main-menu .p-main-menu__img img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 821px) {
  .p-main-menu .p-main-menu__img img {
    height: 100%;
    aspect-ratio: auto;
  }
}
.p-main-menu .p-main-menu__body {
  padding: 20px;
  background-color: #EBF3FF;
}
@media screen and (min-width: 821px) {
  .p-main-menu .p-main-menu__body {
    flex: 1;
    min-width: 0;
    padding: 30px;
  }
}
.p-main-menu .p-main-menu__item:nth-child(2) .p-main-menu__body,
.p-main-menu .p-main-menu__item:nth-child(3) .p-main-menu__body {
  background-color: #EBFBFF;
}
.p-main-menu .p-main-menu__head {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(14, 99, 196, 0.15);
}
@media screen and (min-width: 821px) {
  .p-main-menu .p-main-menu__head {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
}
.p-main-menu .p-main-menu__ttl {
  color: #0E63C4;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
@media screen and (min-width: 821px) {
  .p-main-menu .p-main-menu__ttl {
    font-size: 30px;
  }
}
.p-main-menu .p-main-menu__sub {
  margin-top: 4px;
  color: #333;
}
.p-main-menu .p-main-menu__points {
  margin-top: 5px;
}
@media screen and (min-width: 821px) {
  .p-main-menu .p-main-menu__points {
    margin-top: 8px;
  }
}
.p-main-menu .p-main-menu__points li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.p-main-menu .p-main-menu__points li + li {
  margin-top: 0px;
}
.p-main-menu .p-main-menu__points li::before {
  content: "";
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #0E63C4;
}
.p-main-menu .p-main-menu__more {
  margin-top: 40px;
}
@media screen and (min-width: 821px) {
  .p-main-menu .p-main-menu__more {
    margin-top: 56px;
  }
}

.p-solution {
  padding: 80px 0;
  position: relative;
  /* SP：1列 / PC：2列・gap20・max1000中央 */
  /* 各タイル（背景画像＋マスク） */
  /* マスク：1,4,5 → #333/85% */
  /* マスク：2,3,6 → #101F70/80% */
  /* 背景画像 */
  /* タイル内コンテンツ */
  /* 矢印（30×30） */
}
@media screen and (min-width: 821px) {
  .p-solution {
    padding: 100px 0;
  }
}
.p-solution::before {
  content: "";
  display: block;
  width: 210px;
  height: 200px;
  background: url(../../../img/top/pickup-deco.webp) no-repeat center top/cover;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media screen and (min-width: 821px) {
  .p-solution::before {
    width: 350px;
    height: 334px;
  }
}
.p-solution::after {
  content: "";
  display: block;
  width: 85px;
  height: 80px;
  background: url(../../../img/top/deco-common02.webp) no-repeat center top/cover;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 821px) {
  .p-solution::after {
    width: 257px;
    height: 242px;
  }
}
.p-solution .c-section-ttl {
  margin-bottom: 26px;
}
.p-solution .p-solution__lead {
  text-align: center;
  margin-bottom: 26px;
  font-size: 16px;
  line-height: 1.875;
  font-weight: 500;
}
@media screen and (min-width: 821px) {
  .p-solution .p-solution__lead {
    margin-bottom: 40px;
  }
}
.p-solution .p-solution__items {
  display: grid;
  gap: 20px;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 821px) {
  .p-solution .p-solution__items {
    max-width: 1000px;
    margin: 0 auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.p-solution .p-solution__item {
  position: relative;
  display: block;
  height: 180px;
  overflow: hidden;
  pointer-events: none;
  /* 背景画像（hoverで拡大させるため疑似要素に分離） */
  /* マスク */
  /* hoverで背景画像を少し拡大 */
}
@media screen and (min-width: 821px) {
  .p-solution .p-solution__item {
    height: 200px;
  }
}
.p-solution .p-solution__item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 0.4s ease;
}
.p-solution .p-solution__item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.p-solution .p-solution__item:hover::after {
  transform: scale(1.05);
}
.p-solution .p-solution__item--gray::before {
  background-color: rgba(51, 51, 51, 0.85);
}
.p-solution .p-solution__item--navy::before {
  background-color: rgba(16, 31, 112, 0.8);
}
.p-solution .p-solution__item--01::after {
  background-image: url("../../../img/top/solution01.webp");
}
.p-solution .p-solution__item--02::after {
  background-image: url("../../../img/top/solution02.webp");
}
.p-solution .p-solution__item--03::after {
  background-image: url("../../../img/top/solution03.webp");
}
.p-solution .p-solution__item--04::after {
  background-image: url("../../../img/top/solution04.webp");
}
.p-solution .p-solution__item--05::after {
  background-image: url("../../../img/top/solution05.webp");
}
.p-solution .p-solution__item--06::after {
  background-image: url("../../../img/top/solution06.webp");
}
.p-solution .p-solution__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 16px;
  color: #fff;
  text-align: center;
}
.p-solution .p-solution__ttl {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
}
@media screen and (min-width: 821px) {
  .p-solution .p-solution__ttl {
    font-size: 30px;
  }
}
.p-solution .p-solution__text {
  margin-top: 6px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
.p-solution .p-solution__arrow {
  width: 30px;
  height: 30px;
  margin-top: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.p-solution .p-solution__item--gray .p-solution__arrow {
  background-image: url("../../../img/top/arrow-circle-navy.svg");
}
.p-solution .p-solution__item--navy .p-solution__arrow {
  background-image: url("../../../img/top/arrow-circle-black.svg");
}
.p-solution .p-solution__more {
  margin-top: 40px;
}
@media screen and (min-width: 821px) {
  .p-solution .p-solution__more {
    margin-top: 56px;
  }
}

.p-seminar {
  position: relative;
  padding: 80px 0 40px;
  overflow: hidden;
  /* スライダー（SP：全幅でセンターモード / PC：左に余白・右は全幅） */
  /* スライドが少ない時の静的表示
     （PC：1〜3枚 / SP：1枚の時。Splideをマウントしない） */
  /* カードを上・矢印を下に固定 */
  /* PC：矢印（前へ/次へ）をカードの下・左に */
  /* 前へボタンは左向きに反転 */
  /* 背景グラデーション装飾（左下） */
}
@media screen and (min-width: 821px) {
  .p-seminar {
    padding: 110px 0 60px;
  }
}
.p-seminar .c-section-ttl {
  margin-bottom: 30px;
}
.p-seminar .p-seminar__head {
  position: relative;
  z-index: 1;
}
.p-seminar .p-seminar__slider {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 821px) {
  .p-seminar .p-seminar__slider {
    display: flex;
    flex-direction: column;
    margin-left: 18%;
  }
}
@media screen and (min-width: 821px) {
  .p-seminar .p-seminar__slider .c-card .c-card__body {
    padding: 32px 20px 20px;
  }
}
.p-seminar .p-seminar__slider.is-static {
  visibility: visible;
}
.p-seminar .p-seminar__slider.is-static .splide__track {
  padding-left: 9.4%;
  padding-right: 9.4%;
}
@media screen and (min-width: 821px) {
  .p-seminar .p-seminar__slider.is-static .splide__track {
    padding-left: 0;
    padding-right: 5%;
  }
}
.p-seminar .p-seminar__slider.is-static .splide__list {
  display: flex;
  gap: 20px;
}
.p-seminar .p-seminar__slider.is-static .splide__slide {
  flex: 0 0 100%;
}
@media screen and (min-width: 821px) {
  .p-seminar .p-seminar__slider.is-static .splide__slide {
    flex: 0 0 calc((100% - 40px) / 3);
  }
}
.p-seminar .splide__track {
  order: 1;
  padding-bottom: 30px;
}
.p-seminar .splide__arrows {
  display: none;
}
@media screen and (min-width: 821px) {
  .p-seminar .splide__arrows {
    order: 2;
    display: flex;
    gap: 12px;
    margin-top: 0px;
  }
}
.p-seminar .splide__arrow {
  position: static;
  transform: none;
  width: 40px;
  height: 40px;
  background: url("../../../img/top/arrow-circle-slider.svg") no-repeat center/contain;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
  /* Splideデフォルトのsvgは非表示にして画像に置き換え */
}
.p-seminar .splide__arrow svg {
  display: none;
}
.p-seminar .splide__arrow:disabled {
  opacity: 0.35;
}
.p-seminar .splide__arrow--prev {
  transform: scaleX(-1);
}
.p-seminar .p-seminar__more {
  position: relative;
  z-index: 1;
  margin-top: 10px;
}
@media screen and (min-width: 821px) {
  .p-seminar .p-seminar__more {
    margin-top: 30px;
  }
}
.p-seminar .p-seminar__deco {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
  width: 305px;
  height: 81%;
  background: linear-gradient(90deg, #DEEBFF 0%, #E3FDFF 100%);
  opacity: 0.6;
  border-radius: 0 50px 50px 0;
}
@media screen and (min-width: 821px) {
  .p-seminar .p-seminar__deco {
    width: 90%;
    height: 79%;
  }
}
@media screen and (min-width: 821px) {
  .p-seminar .c-card__img img {
    aspect-ratio: 385/237;
  }
}

/* flow / faq リンクバナー（p-counselingの上） */
.p-bnr {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 821px) {
  .p-bnr {
    flex-direction: row;
  }
}

.p-bnr__item {
  position: relative;
  display: block;
  height: 232px;
  overflow: hidden;
  /* 背景画像（hoverで拡大させるため疑似要素に分離） */
  /* マスク */
  /* hoverで背景画像を少し拡大 */
}
@media screen and (min-width: 821px) {
  .p-bnr__item {
    width: 50%;
    height: 384px;
  }
}
.p-bnr__item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 0.4s ease;
}
.p-bnr__item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.p-bnr__item:hover::after {
  transform: scale(1.05);
}

/* flow：#000/75% */
.p-bnr__item--flow::after {
  background-image: url("../../../img/top/flow.webp");
}
.p-bnr__item--flow::before {
  background-color: rgba(0, 0, 0, 0.75);
}
.p-bnr__item--flow .p-bnr__arrow {
  background-image: url("../../../img/top/arrow-circle-flow.svg");
}

/* faq：#101F70/80% */
.p-bnr__item--faq::after {
  background-image: url("../../../img/top/faq.webp");
}
.p-bnr__item--faq::before {
  background-color: rgba(16, 31, 112, 0.8);
}
.p-bnr__item--faq .p-bnr__arrow {
  background-image: url("../../../img/top/arrow-circle-faq.svg");
}

.p-bnr__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 16px;
  text-align: center;
  /* 見出し・本文は白 */
}
.p-bnr__body .c-section-ttl,
.p-bnr__body .c-section-ttl em {
  color: #fff;
}
.p-bnr__body .c-section-ttl::before {
  background-color: #fff;
}

.p-bnr__text {
  margin-top: 12px;
  color: #fff;
}

/* 矢印 50×50 */
.p-bnr__arrow {
  width: 50px;
  height: 50px;
  margin-top: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.p-news {
  position: relative;
  padding: 80px 0 40px;
  overflow: hidden;
  margin-bottom: 85px;
  /* 装飾より前面に */
  /* ニュースコンテンツ幅 1000px */
  /* 各ニュース（リンク） */
  /* SP：日付→タイトルの縦並び / PC：横並び */
  /* 矢印 18×18 右端 */
  /* 背景グラデーション装飾（右下） */
}
@media screen and (min-width: 821px) {
  .p-news {
    padding: 100px 0 60px;
    margin-bottom: 100px;
  }
}
.p-news .c-section-ttl {
  margin-bottom: 30px;
}
.p-news .p-news__inner {
  position: relative;
  z-index: 1;
}
.p-news .p-news__box {
  max-width: 1000px;
  margin: 0 auto;
}
.p-news .p-news__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 13px;
  margin-bottom: 13px;
  border-bottom: 1px solid #A8BED1;
}
@media screen and (min-width: 821px) {
  .p-news .p-news__item {
    gap: 24px;
    padding-bottom: 27px;
    margin-bottom: 27px;
  }
}
.p-news .p-news__body {
  flex: 1;
  min-width: 0;
}
@media screen and (min-width: 821px) {
  .p-news .p-news__body {
    display: flex;
    align-items: center;
    gap: 24px;
  }
}
.p-news .p-news__date {
  display: block;
  color: #0E63C4;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
}
@media screen and (min-width: 821px) {
  .p-news .p-news__date {
    flex-shrink: 0;
    font-size: 16px;
  }
}
.p-news .p-news__ttl {
  color: #333;
}
@media screen and (min-width: 821px) {
  .p-news .p-news__ttl {
    margin-top: 0;
  }
}
.p-news .p-news__arrow {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: url("../../../img/common/arrow-blue.svg") no-repeat center/contain;
}
.p-news .p-news__more {
  margin-top: 32px;
}
@media screen and (min-width: 821px) {
  .p-news .p-news__more {
    margin-top: 40px;
  }
}
.p-news .p-news__deco {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 305px;
  height: 400px;
  background: linear-gradient(90deg, #DEEBFF 0%, #E3FDFF 100%);
  opacity: 0.6;
  border-radius: 50px 0 0 50px;
}
@media screen and (min-width: 821px) {
  .p-news .p-news__deco {
    height: 446px;
    width: 90%;
  }
}

.p-reason {
  padding: 80px 0;
  background: linear-gradient(90deg, #DEEBFF 0%, #E3FDFF 100%);
  position: relative;
}
@media screen and (min-width: 821px) {
  .p-reason {
    padding: 100px 0;
  }
}
.p-reason .c-section-ttl {
  margin-bottom: 26px;
}
.p-reason .p-reason__lead {
  text-align: center;
  margin-bottom: 26px;
  font-size: 16px;
  line-height: 1.875;
  font-weight: 500;
}
@media screen and (min-width: 821px) {
  .p-reason .p-reason__lead {
    margin-bottom: 40px;
  }
}
.p-reason .p-reason__more {
  margin-top: 40px;
}
@media screen and (min-width: 821px) {
  .p-reason .p-reason__more {
    margin-top: 70px;
  }
}

.p-case {
  padding: 80px 0;
  background: #F7F7F7;
  /* 画像は後から差し込む想定でプレースホルダーを表示 */
}
@media screen and (min-width: 821px) {
  .p-case {
    padding: 100px 0;
  }
}
.p-case .c-section-ttl {
  margin-bottom: 30px;
}
@media screen and (min-width: 821px) {
  .p-case .c-section-ttl {
    margin-bottom: 34px;
  }
}
.p-case .p-case__lead {
  text-align: center;
  margin-bottom: 26px;
  font-size: 16px;
  line-height: 1.875;
  font-weight: 500;
}
@media screen and (min-width: 821px) {
  .p-case .p-case__lead {
    margin-bottom: 40px;
  }
}
.p-case .c-card__img {
  aspect-ratio: 345/213;
  background-color: #e9eef3;
}
.p-case .c-card .c-card__ttl {
  border-bottom: 1px solid #A8BED1;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
@media screen and (min-width: 821px) {
  .p-case .c-card .c-card__ttl {
    font-size: 20px;
    padding-bottom: 20px;
    margin-bottom: 15px;
  }
}
.p-case .p-case__more {
  margin-top: 40px;
}
@media screen and (min-width: 821px) {
  .p-case .p-case__more {
    margin-top: 56px;
  }
}

.p-confidence {
  padding: 80px 0;
  position: relative;
  background: #F7F7F7;
  /* 見出しブロック */
  /* WHY GLOBAL REACH?（アニメーションなしのラベル） */
  /* メインタイトル：ラベル側にラインがあるので c-section-ttl のライン・余白は無効化 */
  /* 3つの塊：SP縦並び / PC横並び gap40 */
  /* 白カード＋矢印＋青カードの縦並び（PCは subgrid で行を3塊そろえる） */
  /* 白色コンテンツ */
  /* カード上部の画像（中央揃え・カード上端から大きくはみ出す） */
  /* カテゴリーバッジ */
  /* 青カード側のバッジ（白フチ） */
  /* 白カードと青カードをつなぐ下三角 */
  /* 青色コンテンツ */
  /* =========================================================
     仕組み図（p-confidence__items の下）
     ========================================================= */
  /* 2つの塊（つなぐ仕組み / GLOBAL REACH独自の仕組み）の間隔 */
  /* h4 見出しラッパー */
  /* 仕組みフロー図（confidence-system01：PC 1096px 中央） */
  /* 注意ボックス（! アイコン＋テキスト） */
  /* GLOBAL REACH 独自の仕組み（白いボックス） */
  /* 3カラム：SP縦並び / PC横並び */
  /* 中央のブリッジ（ロゴ＋両矢印＋テキスト）
     SP：左に縦矢印／右にロゴ＋テキストの塊を横並び
     PC：ロゴ → 矢印 → テキスト の縦並び */
  /* 解決ボックス（チェック＋テキスト） */
}
@media screen and (min-width: 821px) {
  .p-confidence {
    padding: 110px 0 100px;
  }
}
.p-confidence::before {
  content: "";
  display: block;
  width: 200px;
  height: 150px;
  background: url("../../../img/top/deco-confidence02.webp") no-repeat center top/cover;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 821px) {
  .p-confidence::before {
    width: 415px;
    height: 312px;
  }
}
@media screen and (min-width: 821px) {
  .p-confidence::after {
    content: "";
    display: block;
    width: 162px;
    height: 232px;
    background: url("../../../img/top/deco-confidence01-pc.webp") no-repeat center top/cover;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.p-confidence .c-section-ttl.is-inview .c-section-ttl__char em {
  letter-spacing: 0.01em;
}
.p-confidence .p-confidence__head {
  text-align: center;
  max-width: 345px;
  margin: 0 auto 40px;
}
@media screen and (min-width: 821px) {
  .p-confidence .p-confidence__head {
    max-width: 630px;
    margin: 0 auto 60px;
  }
}
.p-confidence .p-confidence__label {
  position: relative;
  padding-top: 26px;
  margin-bottom: 9px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.4;
  color: #0E63C4;
  /* ラベル上の縦ライン */
}
@media screen and (min-width: 821px) {
  .p-confidence .p-confidence__label {
    font-size: 16px;
  }
}
.p-confidence .p-confidence__label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 20px;
  background-color: #0E63C4;
  transform: translateX(-50%);
}
.p-confidence .p-confidence__ttl {
  padding-top: 0;
}
.p-confidence .p-confidence__ttl::before {
  content: none;
}
.p-confidence .p-confidence__lead {
  margin-top: 12px;
  text-align: center;
  font-size: 16px;
  line-height: 1.875;
  font-weight: 500;
}
@media screen and (min-width: 821px) {
  .p-confidence .p-confidence__lead {
    font-size: 20px;
    margin-top: 30px;
  }
}
.p-confidence .p-confidence__items {
  display: grid;
  gap: 20px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #A8BED1;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 821px) {
  .p-confidence .p-confidence__items {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 0;
    /* 画像のはみ出し分の余白 */
    padding-top: 30px;
    padding-bottom: 60px;
    margin-bottom: 60px;
  }
}
.p-confidence .p-confidence__block {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 821px) {
  .p-confidence .p-confidence__block {
    display: grid;
    grid-row: 1/span 3;
    grid-template-rows: subgrid;
  }
}
.p-confidence .p-confidence__card {
  position: relative;
  margin-top: 48px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 20px 0 rgba(148, 170, 195, 0.16);
  /* PC：subgrid の1行目を高さいっぱいに埋めて白カードの高さをそろえる */
}
@media screen and (min-width: 821px) {
  .p-confidence .p-confidence__card {
    margin-top: 0;
  }
}
.p-confidence .p-confidence__img {
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  height: 100px;
  width: auto;
}
@media screen and (min-width: 821px) {
  .p-confidence .p-confidence__img {
    top: -50px;
    height: 120px;
  }
}
.p-confidence .p-confidence__body {
  padding: 70px 20px 30px;
}
@media screen and (min-width: 821px) {
  .p-confidence .p-confidence__body {
    padding: 80px 20px 30px;
  }
}
.p-confidence .p-confidence__cat {
  display: inline-block;
  margin-bottom: 5px;
  padding: 1px 9px;
  background-color: #0E63C4;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 821px) {
  .p-confidence .p-confidence__cat {
    margin-bottom: 4px;
  }
}
.p-confidence .p-confidence__cat--solution {
  background-color: transparent;
  border: 1px solid #fff;
}
.p-confidence .p-confidence__subttl {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 821px) {
  .p-confidence .p-confidence__subttl {
    font-size: 24px;
  }
}
.p-confidence .p-confidence__arrow {
  width: 0;
  height: 0;
  margin: -11px auto 9px;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 16px solid #0E63C4;
  z-index: 10;
}
@media screen and (min-width: 821px) {
  .p-confidence .p-confidence__arrow {
    margin: -8px auto 15px;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 24px solid #0E63C4;
  }
}
.p-confidence .p-confidence__solution {
  padding: 20px;
  background-color: #101F70;
  border-radius: 20px;
}
@media screen and (min-width: 821px) {
  .p-confidence .p-confidence__solution {
    padding: 30px 20px;
  }
}
.p-confidence .p-confidence__solution .p-confidence__subttl,
.p-confidence .p-confidence__solution .p-confidence__text {
  color: #fff;
}
.p-confidence .p-confidence__system-block.first {
  display: none;
}
@media screen and (min-width: 821px) {
  .p-confidence .p-confidence__system-block.first {
    display: block;
  }
}
.p-confidence .p-confidence__system-block + .p-confidence__system-block {
  margin-top: 40px;
  position: relative;
  z-index: 4;
}
@media screen and (min-width: 821px) {
  .p-confidence .p-confidence__system-block + .p-confidence__system-block {
    margin-top: 50px;
  }
}
.p-confidence .p-confidence__system-ttl {
  margin-bottom: 30px;
  text-align: center;
}
.p-confidence .p-confidence__system-heading {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.p-confidence .p-confidence__system-heading em.blue {
  font-style: normal;
  color: #0E63C4;
}
@media screen and (min-width: 821px) {
  .p-confidence .p-confidence__system-heading {
    font-size: 34px;
  }
}
@media screen and (min-width: 821px) {
  .p-confidence .p-confidence__system-heading--gr {
    font-size: 44px;
  }
}
.p-confidence .p-confidence__flow img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 821px) {
  .p-confidence .p-confidence__flow img {
    max-width: 1096px;
    margin: 0 auto;
  }
}
.p-confidence .p-confidence__notice {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 24px 20px;
  background-color: #DFDFDF;
  border-radius: 10px;
  text-align: center;
}
@media screen and (min-width: 821px) {
  .p-confidence .p-confidence__notice {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    padding: 20px 30px;
    text-align: left;
    max-width: 1000px;
    margin: 32px auto 0;
  }
}
.p-confidence .p-confidence__notice-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}
@media screen and (min-width: 821px) {
  .p-confidence .p-confidence__notice-icon {
    width: 60px;
    height: 60px;
  }
}
.p-confidence .p-confidence__notice-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.875;
}
@media screen and (min-width: 821px) {
  .p-confidence .p-confidence__notice-text {
    font-size: 20px;
  }
}
.p-confidence .p-confidence__gr {
  padding: 55px 20px 20px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 20px 0 rgba(148, 170, 195, 0.16);
  margin-top: -60px;
}
@media screen and (min-width: 821px) {
  .p-confidence .p-confidence__gr {
    padding: 62px 30px 30px;
    margin-top: -65px;
  }
}
.p-confidence .p-confidence__gr-cols {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 821px) {
  .p-confidence .p-confidence__gr-cols {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
}
@media screen and (min-width: 821px) {
  .p-confidence .p-confidence__gr-col {
    flex: 1;
    min-width: 0;
  }
}
.p-confidence .p-confidence__gr-col img {
  display: block;
  width: 100%;
  height: auto;
}
.p-confidence .p-confidence__bridge {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "arrow logo" "arrow text";
  align-items: center;
  -moz-column-gap: 16px;
  column-gap: 16px;
  row-gap: 10px;
}
@media screen and (min-width: 821px) {
  .p-confidence .p-confidence__bridge {
    flex: 0 0 24%;
    grid-template-columns: 1fr;
    grid-template-areas: "logo" "arrow" "text";
    justify-items: center;
    -moz-column-gap: 0;
    column-gap: 0;
    row-gap: 14px;
  }
}
.p-confidence .p-confidence__bridge-logo {
  grid-area: logo;
  justify-self: start;
  width: auto;
  max-width: 220px;
  height: auto;
}
@media screen and (min-width: 821px) {
  .p-confidence .p-confidence__bridge-logo {
    justify-self: center;
    max-width: 320px;
  }
}
.p-confidence .p-confidence__bridge-arrow {
  grid-area: arrow;
  position: relative;
  align-self: center;
  width: 20px;
  height: 120px;
  /* SP：縦向き両矢印（横向きSVGを回転して絶対配置） */
}
.p-confidence .p-confidence__bridge-arrow svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 20px;
  transform: translate(-50%, -50%) rotate(90deg);
}
@media screen and (min-width: 821px) {
  .p-confidence .p-confidence__bridge-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
  }
  .p-confidence .p-confidence__bridge-arrow svg {
    position: static;
    width: 80%;
    max-width: 120px;
    height: 18px;
    transform: none;
  }
}
.p-confidence .p-confidence__bridge-text {
  grid-area: text;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8571428571;
}
@media screen and (min-width: 821px) {
  .p-confidence .p-confidence__bridge-text {
    text-align: center;
    font-size: 18px;
  }
}
.p-confidence .p-confidence__check {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 15px 20px;
  border: 1px solid #0E63C4;
  border-radius: 14px;
  text-align: center;
}
@media screen and (min-width: 821px) {
  .p-confidence .p-confidence__check {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    padding: 20px 30px;
    text-align: left;
    max-width: 1000px;
    margin: 32px auto 0;
  }
}
.p-confidence .p-confidence__check-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}
@media screen and (min-width: 821px) {
  .p-confidence .p-confidence__check-icon {
    width: 60px;
    height: 60px;
  }
}
.p-confidence .p-confidence__check-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.875;
  text-align: left;
}
@media screen and (min-width: 821px) {
  .p-confidence .p-confidence__check-text {
    font-size: 18px;
  }
}
.p-confidence .p-confidence__more {
  margin-top: 40px;
}
@media screen and (min-width: 821px) {
  .p-confidence .p-confidence__more {
    margin-top: 47px;
  }
}
/*# sourceMappingURL=top.css.map */