@charset "UTF-8";

/*---------------------------------------------

	全ページ共通

---------------------------------------------*/
/* ↓ html / body ------------------------*/
html,
body {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 90px;
}

@media screen and (max-width: 540px) {

  html,
  body {
    font-size: calc(100vw * 16 / 390);
    scroll-padding-top: 70px;
  }
}




body {
  color: #000000;
  line-height: 1.6;
  font-optical-sizing: auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 180%;
  /* 1.8rem */
  font-style: normal;
  position: relative;
  min-height: 100vh;
  /* background-color: rgba(0, 0, 0, 0) */
}

@media screen and (max-width: 540px) {
  body {
    font-size: 0.875rem;
    line-height: 170%
  }
}


html,
body {
  height: 100%;
}

body>footer {
  position: sticky;
  top: 100vh;
}

img {
  width: 100%;
}

html,
body {
  scroll-padding-top: 250px;
}

@media screen and (max-width: 540px) {

  html,
  body {
    scroll-padding-top: 200px;
  }
}

/*---------------------------------------------

	カラー

---------------------------------------------*/
:root {
  /* --text-color: #000; */
  --bg-blue: #E4E9F3;
  --bg-blue2: #25599A;
  --bg-light-gray: #FBFBFB;
  --btn-green: #4dbe3d;
  --black: #000;
}

/*---------------------------------------------

	カード装飾

---------------------------------------------*/
.uCornerSquare {
  position: relative;

}

.uCornerSquare::before {
  content: "";
  display: block;
  position: absolute;
  top: -1.1rem;
  left: -0.75rem;
  width: 10.875rem;
  height: 6.6875rem;
  background: #fff;
  z-index: -1;
}

@media screen and (max-width: 540px) {
  .uCornerSquare::before {
    top: -9px;
    left: -7px;
    width: 6.25rem;
    height: 6.25rem;
    flex-shrink: 0;
  }
}

/*---------------------------------------------

	リンク

---------------------------------------------*/

a {
  text-decoration: none !important;
  transition: all 0.3s;
  color: #000;
}

a:hover {
  opacity: 0.7;
  cursor: pointer;
}


.cPageLinkBlock {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

@media screen and (max-width: 540px) {
  .cPageLinkBlock {
    gap: 0.3rem;

  }
}

.cPageLink {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem .5rem;
  background: #F3F3F1;
  color: #25599A;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: center;
}

@media screen and (max-width: 540px) {
  .cPageLink {
    padding: 1rem .5rem;
    max-height: 60px;
    font-size: 0.8125rem;
  }
}

.cPageLink::after {
  content: "";
  position: absolute;
  right: 13%;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/icons/arrow-vertical.svg?v202511271258);
  height: 1.655rem;
  width: 0.64938rem;
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 540px) {
  .cPageLink::after {
    right: 8.03%;
    height: 1.324rem;
    width: 0.47944rem;
  }
}

/* ↓ 共通アニメーション------------------------*/
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*---------------------------------------------

	レイアウト調整ユーティリティ

---------------------------------------------*/
/* textalign */
.util-textalignCenter {
  text-align: center;
}

.util-textalignLeft {
  text-align: left;
}

.util-textalignRight {
  text-align: right;
}

/* width100% */
.util-w100 {
  width: 100%;
}

/* margin（リキッドレイアウト用） */

.util-mb05 {
  margin-bottom: 0.5rem;
}

.util-mb08 {
  margin-bottom: 0.8rem;
}

.util-mb1 {
  margin-bottom: 1rem;
}

.util-mb13 {
  margin-bottom: 1.3rem;
}

.util-mb15 {
  margin-bottom: 1.5rem;
}

.util-mb17 {
  margin-bottom: 1.7rem;
}

.util-mb18 {
  margin-bottom: 1.8rem;
}

.util-mb18 {
  margin-bottom: 1.8rem;
}

.util-mb2 {
  margin-bottom: 2rem;
}

.util-mb23 {
  margin-bottom: 2.3rem;
}

.util-mb25 {
  margin-bottom: 2.5rem;
}

.util-mb3 {
  margin-bottom: 3rem;
}

.util-mb35 {
  margin-bottom: 3.5rem;
}

.util-mb4 {
  margin-bottom: 4rem;
}

.util-mb45 {
  margin-bottom: 4.5rem;
}

.util-mb5 {
  margin-bottom: 5rem;
}

.util-mb55 {
  margin-bottom: 5.5rem;
}

.util-mb6 {
  margin-bottom: 6rem;
}

.util-mb65 {
  margin-bottom: 6.5rem;
}

.util-mb7 {
  margin-bottom: 7rem;
}

.util-mb75 {
  margin-bottom: 7.5rem;
}

.util-mb8 {
  margin-bottom: 8rem;
}

.util-mb115 {
  margin-bottom: 11.5rem;
}

.util-mb135 {
  margin-bottom: 13.5rem;
}

.util-mt05 {
  margin-top: 0.5rem;
}

.util-mt1 {
  margin-top: 1rem;
}

.util-mt15 {
  margin-top: 1.5rem;
}

.util-mt18 {
  margin-top: 1.8rem;
}

.util-mt2 {
  margin-top: 2rem;
}

.util-mt25 {
  margin-top: 2.5rem;
}

.util-mt3 {
  margin-top: 3rem;
}

.util-mt35 {
  margin-top: 3.5rem;
}

.util-mt4 {
  margin-top: 4rem;
}

.util-mt5 {
  margin-top: 5rem;
}

.util-mt6 {
  margin-top: 6rem;
}

.util-mt7 {
  margin-top: 7rem;
}

.util-mt75 {
  margin-top: 7.5rem;
}

.util-mt9 {
  margin-top: 9rem;
}

.util-mt10 {
  margin-top: 10rem;
}

.util-mt36 {
  margin-top: 36rem;
}

/* sp_margin */
@media screen and (max-width: 540px) {

  .util-mb30-sp {
    margin-bottom: 30px;
  }

  .util-mb0-sp {
    margin-bottom: 0rem;
  }

  .util-mb05-sp {
    margin-bottom: 0.5rem;
  }

  .util-mb1-sp {
    margin-bottom: 1rem;
  }

  .util-mb125-sp {
    margin-bottom: 1.25rem;
  }

  .util-mb13-sp {
    margin-bottom: 1.3rem;
  }

  .util-mb15-sp {
    margin-bottom: 1.5rem;
  }

  .util-mb17-sp {
    margin-bottom: 1.7rem;
  }

  .util-mb18-sp {
    margin-bottom: 1.8rem;
  }

  .util-mb2-sp {
    margin-bottom: 2rem;
  }

  .util-mb25-sp {
    margin-bottom: 2.5rem;
  }

  .util-mb3-sp {
    margin-bottom: 3rem;
  }

  .util-mb35-sp {
    margin-bottom: 3.5rem;
  }

  .util-mb375-sp {
    margin-bottom: 3.75rem;
  }

  .util-mb4-sp {
    margin-bottom: 4rem;
  }

  .util-mb45-sp {
    margin-bottom: 4.5rem;
  }

  .util-mb5-sp {
    margin-bottom: 5rem;
  }

  .util-mb55-sp {
    margin-bottom: 5.5rem;
  }

  .util-mb6-sp {
    margin-bottom: 6rem;
  }

  .util-mt0-sp {
    margin-top: 0rem;
  }

  .util-mt05-sp {
    margin-top: 0.5rem;
  }

  .util-mt1-sp {
    margin-top: 1rem;
  }

  .util-mt17-sp {
    margin-top: 1.7rem;
  }

  .util-mt15-sp {
    margin-top: 1.5rem;
  }

  .util-mt2-sp {
    margin-top: 2rem;
  }

  .util-mt3-sp {
    margin-top: 3rem;
  }

  .util-mt4-sp {
    margin-top: 4rem;
  }

  .util-mt5-sp {
    margin-top: 5rem;
  }

  .util-mt6-sp {
    margin-top: 6rem;
  }
}

/*---------------------------------------------

	背景

---------------------------------------------*/
.bgBlue {
  background-color: #E4E9F3;
}

.bgWhite {
  background-color: #FBFBFB;
}



section {
  position: relative;
  /* height: 100%; */
}

/*---------------------------------------------

	テキストカラー

---------------------------------------------*/

/* テキストカラー　白 */
.util-text-white {
  color: #fff !important;
}

/* テキストカラー　黒 */
.util-text-lightblue {
  color: #2fadb7 !important;
}

.util-text-purple {
  color: #544db7 !important;
  ;
}

/*---------------------------------------------

	テキストデコレーション

---------------------------------------------*/
@keyframes fuwafuwa {
  0% {
    transform: translateY(6%);
  }

  100% {
    transform: translateY(-6%);
  }
}

/*---------------------------------------------

	インナー

---------------------------------------------*/

.sBusinessUnit__chips,
.sBenefits__chips {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media screen and (max-width: 540px) {

  .sBusinessUnit__chips,
  .sBenefits__chips {
    gap: 0.5rem;
  }
}


.sBusinessUnit__chips li,
.sBenefits__chips p {
  display: inline-flex;
  align-items: center;
  gap: 0.1875rem;
  padding: 0.125rem 0.25rem;
  color: #25599A;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  border-radius: 0.25rem;
  background: #F0F3F8;
}


@media screen and (max-width: 540px) {

  .sBusinessUnit__chips li,
  .sBenefits__chips p {
    padding: 0.125rem 0.25rem;
    font-size: 0.75rem;
  }
}

.sBusinessUnit__chips li::before,
.sBenefits__chips p::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: #25599A;
}

/*---------------------------------------------

	インナー

---------------------------------------------*/

@media screen and (min-width:1500px) {

  .inner-xs.inner-s,
  .inner-m.inner-xs {
    width: 600px;
  }
}

.inner-s {
  max-width: 90%;
  width: 852px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.inner-m {
  max-width: 95%;
  width: 1120px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.inner-l {
  max-width: 95%;
  width: 1180px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.inner-max {
  max-width: 1500px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 540px) {
  .inner-xs-sp {
    width: 77.1%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .inner-s-sp {
    width: 84%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .inner-m-sp {
    width: 88.9%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .inner-l-sp {
    width: 89.9%;
    margin-left: auto;
    margin-right: auto;
  }

  .inner-max-sp {
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
}

/*---------------------------------------------

	ボタン

---------------------------------------------*/

.c-button {
  position: relative;
  display: block;
  min-width: 19.375rem;
  padding: 1.4375rem 1.875rem;
  color: var(--white, #FFF);
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  text-align: center;
  border-radius: 2.5rem;
  background: #25599A;
}

@media screen and (max-width: 540px) {
  .c-button {
    padding: 1.15rem 3.125rem;
    min-width: auto;
    font-size: 0.875rem;
  }
}

.c-button::before {
  content: "";
  display: block;
  position: absolute;
  right: 9%;
  top: 50%;
  transform: translateY(-50%);
  width: 1.655rem;
  height: 0.54938rem;
  background-image: url(../img/icons/arrow-white-large.svg);
  background-repeat: no-repeat;
  background-size: contain;
}


@media screen and (max-width: 1500px) {
  .c-button::before {
    background-image: url(../img/icons/arrow-white.svg);
  }
}

@media screen and (max-width: 540px) {
  .c-button::before {
    width: 1.324rem;
    height: 0.4395rem;
    background-image: url(../img/icons/arrow-white-sp.svg);
  }
}


.c-button-box {
  display: flex;
  justify-content: center;
  width: 100%;
}

/*---------------------------------------------

	下層共通ページタイトル

---------------------------------------------*/


.nowrap {
  white-space: nowrap;
}


.float {
  position: absolute;
  top: -6%;
}

@media screen and (max-width: 540px) {
  .float {
    top: -25px;
    left: 5vw;
  }
}

/*---------------------------------------------

	TOPセクションタイトル

---------------------------------------------*/

.cHomeSectionTitleBlock {
  display: flex;
  flex-direction: column;

}

.cHomeSectionTitle-en {
  color: #000;
  font-family: Jost;
  font-size: clamp(44px, 5vw, 64px);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media screen and (max-width: 540px) {
  .cHomeSectionTitle-en {
    font-size: clamp(31px, 7.94vw, 41px);
  }
}

.nowrap {
  white-space: nowrap;
}

.cHomeSectionTitle-jp {
  color: #000;
  font-size: clamp(16px, 1.406vw, 18px);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

@media screen and (max-width: 540px) {
  .cHomeSectionTitle-jp {
    font-size: clamp(10px, 3.335vw, 23px);
  }
}


/*---------------------------------------------

	下層共通ページタイトル

---------------------------------------------*/
.cPageTitleBlock {
  display: flex;
  flex-direction: column;
}

.cPageTitle-en {
  color: var(--black, #000);
  font-family: Jost;
  font-size: clamp(50px, 5.46vw, 70px);
  font-weight: 500;
  line-height: normal;
  text-align: center;
}

@media screen and (max-width: 540px) {
  .cPageTitle-en {
    font-size: 1.9375rem;
  }
}

.cPageTitle-jp {
  color: #000;
  font-size: clamp(16px, 1.406vw, 18px);
  font-weight: 300;
  line-height: normal;
  text-align: center;
}

@media screen and (max-width: 540px) {
  .cPageTitle-jp {
    font-size: 0.8125rem;
  }
}

/*---------------------------------------------

	下層共通セクションタイトル

---------------------------------------------*/
.cSectionTitleBlock {
  display: flex;
  flex-direction: column;
}

.cSectionTitle {
  color: var(--black, #000);
  font-size: clamp(30px, 2.96vw, 38px);
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  text-align: center;
}

@media screen and (max-width: 540px) {
  .cSectionTitle {
    font-size: 1.25rem;
  }
}

.cSectionTitle-jp {
  color: var(--blue, #25599A);
  font-family: Jost;
  font-size: clamp(16px, 1.40625vw, 18px);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  text-align: center;
}


@media screen and (max-width: 540px) {
  .cSectionTitle-jp {
    font-size: 0.8125rem;
  }
}

/*---------------------------------------------

	インナーはみ出し

---------------------------------------------*/

/* 片側 */
.sideBleed--right {
  margin-right: calc(50% - 50vw);
  border-radius: 1.25rem 0 0 1.25rem;
}

.sideBleed--left {
  margin-left: calc(50% - 50vw);
  border-radius: 0 1.25rem 1.25rem 0;
}




/*---------------------------------------------

	ボタン

---------------------------------------------*/
.cThumbLinkBlock {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.8rem;
}

@media screen and (max-width: 540px) {
  .cThumbLinkBlock {

    gap: 1rem;
  }
}


.cThumbLink {
  position: relative;
  padding: 2.4rem 4.8rem 2.4rem 7.8rem;
  border-radius: 6.25rem;
  background: var(--blue, #25599A);
  overflow: hidden;
  display: inline-block;
  min-width: 410px;
  color: var(--white, #FFF);
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media screen and (max-width: 540px) {
  .cThumbLink {
    padding: 1.3rem 1rem 1.3rem 2rem;
    width: 100%;
    min-width: auto;
    font-size: 0.8125rem;
  }
}

.cThumbLink.cThumbLink-gray {
  color: var(--blue, #25599A);
  background: #F3F3F1;
}

@media screen and (max-width: 540px) {
  .cThumbLink.cThumbLink-gray {
    width: auto;
    min-width: 16rem;
  }

}

.cThumbLink::before {
  content: "";
  display: block;
  position: absolute;
  right: 9%;
  top: 50%;
  transform: translateY(-50%);
  width: 1.655rem;
  height: 0.54938rem;
  background-image: url(../img/icons/arrow-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
}


.cThumbLink-gray::before {
  background-image: url(../img/icons/arrow-large.svg);
}

@media screen and (max-width: 540px) {
  .cThumbLink::before {
    right: 5%;
    width: 1.324rem;
    height: 0.47944rem;
  }
}

.cThumbLink__media {
  position: absolute;
  margin-right: 2.5rem;
  height: 100%;
  width: 100px;
  top: 0;
  left: 0;
  /* overflow: hidden; */
  border-radius: 3.08644rem;
}

@media screen and (max-width: 540px) {
  .cThumbLink__media {
    width: 3.75rem;
  }
}

/* スマートフォン（SP）の場合のスタイル設定 */
@media only screen and (max-width: 540px) {
  .emsp {
    display: inline;
  }
}

.sp {
  display: none !important;
}

.tablet {
  display: none;
}

.challengestory-title {
  display: none;
}

@media screen and (max-width: 820px) {
  .tablet {
    display: block;
  }
}

@media screen and (max-width: 540px) {
  .sp {
    display: block !important;
  }

  .pc {
    display: none !important;
  }


}