@charset "UTF-8";
/* リキッドレイアウト対応のための設定 */
/* 数値計算関連の関数を使うために必要 (math.divなど)*/
body {
  color: #333333;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
}

/*モバイルのみ表示*/
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

/* リキッドレイアウト対応のための設定 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: vw(375, 16);
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: vw(strip-unit(1080px), 16);
  }
}
@media (min-width: 1080px) {
  html {
    font-size: 16px;
  }
}

/*横スクロール防止*/
html, body {
  overflow-x: hidden;
}

/*画像の縦横比設定*/
img {
  width: 100%;
  height: auto;
  display: block;
}

/*画像の縦横比設定*/
img {
  width: 100%;
  height: auto;
  display: block;
}

/* aタグのスタイルリセット*/
a {
  text-decoration: none;
}

/* マウスホバーがあるデバイスでのアニメーション（タッチデバイス除く） */
@media (any-hover: hover) {
  a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  a:hover {
    opacity: 0.8;
  }
}
/* 数値計算関連の関数を使うために必要 (math.divなど)*/
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4814814815vw;
  }
}
@media (min-width: 1080px) {
  html {
    font-size: 16px;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Set core html defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.inner {
  width: 100%;
  padding-inline: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1130px;
    padding-inline: 25px;
  }
}

.challenge-list {
  display: -ms-grid;
  display: grid;
  gap: 1.5rem;
}

.challenge-list__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20% 1.25rem 80%;
  grid-template-columns: 20% 80%;
  gap: 1.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.challenge-list__item:not(:last-child)::before {
  position: absolute;
  content: "";
  background: repeating-linear-gradient(to right, #FF78FF 0px 2px, transparent 1px 9px);
  height: 1px;
  left: 0;
  right: 0;
  bottom: -0.625rem;
}

.challenge-list__number {
  font-family: "Syncopate", serif;
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 1.0526315789;
  letter-spacing: 0.05em;
}

.challenge-list__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.7777777778;
  letter-spacing: 0.05em;
}

.challenge-list__number--first,
.challenge-list__title--first {
  color: #F4B065;
}

.challenge-list__number--second,
.challenge-list__title--second {
  color: #7ABCCB;
}

.challenge-list__number--third,
.challenge-list__title--third {
  color: #A5BC66;
}

.challenge-list__text {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.7857142857;
  letter-spacing: 0.05em;
}

.project-list {
  display: -ms-grid;
  display: grid;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .project-list {
    gap: 1.125rem;
  }
}

.project-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .project-list__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3.125rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.project-list__item:not(:last-child) {
  padding-bottom: 1.5625rem;
  border-bottom: 2px dotted #FF78FF;
}
@media screen and (min-width: 768px) {
  .project-list__item:not(:last-child) {
    padding-bottom: 1.125rem;
  }
}

.project-list__thumb {
  aspect-ratio: 305/171;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .project-list__thumb {
    aspect-ratio: 500/281;
    max-width: 31.25rem;
  }
}

.project-list__body {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .project-list__body {
    max-width: 33.125rem;
  }
}

.project-list__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
}

.project-list__text {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7142857143;
  letter-spacing: 0.03em;
}

.project-list__tags {
  margin-top: 0.9375rem;
  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;
  gap: 0.625rem;
  color: #FF78FF;
}
@media screen and (min-width: 768px) {
  .project-list__tags {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 1.125rem;
  }
}

.project-list__tag {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
  border: 1px solid #FF78FF;
  border-radius: 80px;
  display: inline-block;
  padding-inline: 0.9375rem;
}

.achievement-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .achievement-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.875rem;
  }
}

.achievement-list__item {
  width: 14.375rem;
  height: 14.375rem;
  border-radius: 50%;
  background-color: #FFF;
  padding: 2.6875rem 1.25rem;
  position: relative;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.9375rem;
}

.achievement-list__item:first-child::before,
.achievement-list__item:nth-child(2)::before,
.achievement-list__item:last-child::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
}

.achievement-list__item:first-child::before {
  background-image: url(../images/challenge/achievement-deco01@2x.png);
  width: 9.6875rem;
  height: 10.75rem;
  top: -0.375rem;
  left: -1.875rem;
}

.achievement-list__item:nth-child(2)::before {
  background-image: url(../images/challenge/achievement-deco02@2x.png);
  width: 18.75rem;
  height: 12.5rem;
  bottom: -2.1875rem;
  left: -2.0625rem;
}
@media screen and (min-width: 768px) {
  .achievement-list__item:nth-child(2)::before {
    bottom: -3.25rem;
    left: -1.3125rem;
  }
}

.achievement-list__item:last-child::before {
  background-image: url(../images/challenge/achievement-deco03@2x.png);
  width: 7.75rem;
  height: 5.25rem;
  bottom: -0.9375rem;
  right: -1.875rem;
}

.achievement-list__item-data {
  color: #2745D6;
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 0.8421052632;
  letter-spacing: 0.05em;
}

.achievement-list__item-data span {
  font-size: 1.4375rem;
  line-height: 1.3913043478;
}

.achievement-list__item-text {
  color: #0C1E65;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.achievement-list__item-text small {
  font-size: 0.75rem;
  line-height: 2.3333333333;
  letter-spacing: 0.05em;
}

.strategy__title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3571428571;
  letter-spacing: 0.05em;
  color: #2745D6;
  display: inline-block;
  padding-inline: 1.875rem;
  position: relative;
}

.strategy__title::before,
.strategy__title::after {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #2745D6;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.strategy__title::before {
  left: 0;
}

.strategy__title::after {
  right: 0;
}

.strategy__columns {
  margin-top: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .strategy__columns {
    margin-top: 1.875rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3.125rem;
  }
}

.strategy__block {
  background-color: #FFF;
  padding: 2.1875rem 1.25rem;
  border-radius: 50px;
  text-align: center;
  position: relative;
  width: 21.5625rem;
}
@media screen and (min-width: 768px) {
  .strategy__block {
    width: 25rem;
  }
}

.strategy__block-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.7777777778;
  letter-spacing: 0.05em;
  padding: 0.125rem 2.5rem;
  display: inline-block;
  text-align: center;
  border-radius: 50px;
}

.strategy__block-title--blue {
  color: #FFF;
  background-color: #2745D6;
}

.strategy__block-title--green {
  color: #0C1E65;
  background-color: #94FF4D;
}

.strategy__list {
  padding-top: 1.25rem;
  display: -ms-grid;
  display: grid;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .strategy__list {
    gap: 0.5625rem;
  }
}

.strategy__list-item:not(:last-child) {
  padding-bottom: 0.625rem;
  border-bottom: 2px dotted #2745D6;
}
@media screen and (min-width: 768px) {
  .strategy__list-item:not(:last-child) {
    padding-bottom: 0.5625rem;
  }
}

.strategy__list-item-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3125;
  letter-spacing: 0.05em;
  margin-block: 0;
}

.strategy__list-item-text {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.8333333333;
  letter-spacing: 0.03em;
  margin-top: 0.3125rem;
}

.strategy__document {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .strategy__document {
    margin-top: 3.75rem;
  }
}

.slider__label-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: #5B5B5B;
  z-index: 2;
  display: block;
  content: "";
  color: #fff;
  text-align: left;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  padding-top: 0.3125rem;
  padding-left: 0.625rem;
  border-radius: 5px 5px 0 0;
  height: 1.25rem;
}
@media screen and (min-width: 768px) {
  .slider__label-top {
    font-size: 1.75rem;
    padding-top: 1.4375rem;
    padding-left: 1.875rem;
    height: 3.75rem;
    border-radius: 20px 20px 0 0;
  }
}

.slider__label-title {
  color: #fff;
  text-align: left;
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .slider__label-title {
    font-size: 1.25rem;
  }
}

.slider__label-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #5B5B5B;
  z-index: 1;
  display: block;
  content: "";
  color: #fff;
  text-align: left;
  width: 100%;
  padding-top: 0.3125rem;
  padding-left: 0.625rem;
  border-radius: 0 0 5px 5px;
  height: 1.25rem;
}
@media screen and (min-width: 768px) {
  .slider__label-bottom {
    padding-top: 1.4375rem;
    padding-left: 1.875rem;
    height: 3.75rem;
    border-radius: 0 0 20px 20px;
  }
}

.slider__items {
  height: auto !important;
  position: relative;
}

.slider__items img {
  aspect-ratio: 1280/720;
  display: block;
  max-height: 100%;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
  max-width: 100%;
}

/* 以下、プラグイン (slick)調整のためのスタイル追記 */
.slick-list {
  height: 100% !important;
}

.slick-track {
  height: 100%;
}

.slick-slide {
  border-radius: 20px;
  height: 100% !important;
}

.slide-items img {
  max-height: 100% !important;
  margin: 0 auto;
}

.slick-arrow::before {
  content: "" !important;
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 62/62;
  bottom: 0;
  left: 0;
}

.slick-prev::before {
  background: url(../images/challenge/slick_prev_arrow.png) !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}

.slick-next::before {
  background: url(../images/challenge/slick_next_arrow.png) !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}

.slick-prev,
.slick-next {
  z-index: 2;
  top: auto;
  bottom: -1.375rem;
  width: 0.75rem;
  height: 0.75rem;
}
@media screen and (min-width: 768px) {
  .slick-prev,
  .slick-next {
    bottom: -3.75rem;
    width: 1.875rem;
    height: 1.875rem;
  }
}

.slick-prev {
  left: 1.875rem;
}

.slick-next {
  left: 4.375rem;
}

/* フルスクリーンにしたときのページ送りボタン位置調整 */
.fullscreen:-webkit-full-screen .slick-prev, .fullscreen:-webkit-full-screen .slick-next {
  position: fixed;
  bottom: 0;
  z-index: 100;
}
.fullscreen:fullscreen .slick-prev,
.fullscreen:fullscreen .slick-next,
.fullscreen:-webkit-full-screen .slick-prev,
.fullscreen:-webkit-full-screen .slick-next {
  position: fixed;
  bottom: 0;
  z-index: 100;
}

.fullscreen:-webkit-full-screen .slick-prev {
  left: 1.25rem;
}

.fullscreen:fullscreen .slick-prev,
.fullscreen:-webkit-full-screen .slick-prev {
  left: 1.25rem;
}

.fullscreen:-webkit-full-screen .slick-next {
  left: 4.375rem;
}

.fullscreen:fullscreen .slick-next,
.fullscreen:-webkit-full-screen .slick-next {
  left: 4.375rem;
}

.fullscreen {
  position: relative;
}

.fullscreen {
  width: auto;
  padding: 1.25rem 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .fullscreen {
    width: 50rem;
    max-width: 50rem;
    margin: 0 auto;
    padding: 3.75rem 0;
  }
}

/* フルスクリーン時の高さ調整 */
.fullscreen:-webkit-full-screen {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  background: #333333;
  position: relative;
}
.fullscreen:-ms-fullscreen {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  background: #333333;
  position: relative;
}
.fullscreen:fullscreen {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  background: #333333;
  position: relative;
}

.fullscreen:-webkit-full-screen .slider__items {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}

.fullscreen:fullscreen .slider__items,
.fullscreen:-webkit-full-screen .slider__items {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}

.fullscreen:-webkit-full-screen .slider__items img {
  max-width: 100vw;
  max-height: 92vh;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  padding-top: 3.75rem;
}

.fullscreen:fullscreen .slider__items img,
.fullscreen:-webkit-full-screen .slider__items img {
  max-width: 100vw;
  max-height: 92vh;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  padding-top: 3.75rem;
}

.fullscreen_icon {
  display: none;
}
@media screen and (min-width: 768px) {
  .fullscreen_icon {
    position: absolute;
    right: 1.875rem;
    bottom: 0.625rem;
    width: 2.75rem;
    height: 2.75rem;
    display: block;
    z-index: 2;
  }
}

@media screen and (min-width: 768px) {
  .fullscreen_icon_img {
    width: 2.75rem;
    height: 2.75rem;
  }
}

.exitfullscreen {
  position: absolute;
  right: 1.25rem;
  bottom: 0.625rem;
  width: 2.75rem;
  height: 2.75rem;
  display: block;
  z-index: 2;
}

/* 下層ページ02 CHALLENGE */
/* ファーストビュー */
.challenge-page__fv {
  margin-top: 8rem;
}

.challenge-page__fv-inner {
  margin-inline: auto;
  padding-inline: 0.9375rem;
}

.challenge-page__fv-wrapper {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .challenge-page__fv-wrapper {
    max-width: 71.25rem;
    margin-inline: auto;
  }
}

.challenge-page__fv-content {
  text-align: center;
  position: relative;
}

.challenge-page__fv-content::before,
.challenge-page__fv-content::after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: -1;
  width: 13.0625rem;
  aspect-ratio: 209/209;
}
@media screen and (min-width: 768px) {
  .challenge-page__fv-content::before,
  .challenge-page__fv-content::after {
    width: 22.1875rem;
    aspect-ratio: 355/355;
  }
}

.challenge-page__fv-content::before {
  background-image: url(../images/challenge/past-blue@2x.png);
  left: -4.875rem;
  top: -2.8125rem;
}
@media screen and (min-width: 768px) {
  .challenge-page__fv-content::before {
    left: 1.875rem;
    top: -1.625rem;
  }
}

.challenge-page__fv-content::after {
  background-image: url(../images/challenge/past-yellow@2x.png);
  right: -2.625rem;
  top: 14.875rem;
}
@media screen and (min-width: 768px) {
  .challenge-page__fv-content::after {
    right: 1.875rem;
    top: 7.6875rem;
  }
}

.challenge-page .section-title__en {
  font-size: 2.375rem;
}

.challenge-page__fv-text {
  margin-top: 3.125rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.7857142857;
}
@media screen and (min-width: 768px) {
  .challenge-page__fv-text {
    margin-top: 3.3125rem;
  }
}

.challenge-page__fv-link {
  margin-top: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3.125rem;
}
@media screen and (min-width: 768px) {
  .challenge-page__fv-link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 5rem;
  }
}

.challenge-page__fv-link--first,
.challenge-page__fv-link--second {
  width: 21.875rem;
  max-width: 21.875rem;
  display: inline-block;
  text-align: center;
  padding-block: 3.1875rem;
  border-radius: 25px;
  color: #FFF;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.375;
  position: relative;
  z-index: 100;
}

.challenge-page__fv-link--first::before,
.challenge-page__fv-link--first::after,
.challenge-page__fv-link--second::before,
.challenge-page__fv-link--second::after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

.challenge-page__fv-link--second::before {
  background-image: url(../images/challenge/challenge01-deco01@2x.png);
  width: 7.75rem;
  aspect-ratio: 83/155;
  left: -0.625rem;
  top: 2.5rem;
  -webkit-transition: left 0.3s ease, top 0.3s ease;
  transition: left 0.3s ease, top 0.3s ease;
}

.challenge-page__fv-link--second::after {
  background-image: url(../images/challenge/challenge01-deco02@2x.png);
  width: 12.5rem;
  aspect-ratio: 135/125;
  right: -3.875rem;
  top: -3.5rem;
  -webkit-transition: right 0.3s ease, top 0.3s ease;
  transition: right 0.3s ease, top 0.3s ease;
}

.challenge-page__fv-link--first::before {
  background-image: url(../images/challenge/challenge02-deco01@2x.png);
  width: 9.4375rem;
  aspect-ratio: 296/331;
  left: 0.75rem;
  top: -3.4375rem;
  -webkit-transition: left 0.3s ease, top 0.3s ease;
  transition: left 0.3s ease, top 0.3s ease;
}

.challenge-page__fv-link--first::after {
  background-image: url(../images/challenge/challenge02-deco02@2x.png);
  width: 10.875rem;
  aspect-ratio: 346/374;
  right: 0.3125rem;
  bottom: -2.3125rem;
  -webkit-transition: right 0.3s ease, bottom 0.3s ease;
  transition: right 0.3s ease, bottom 0.3s ease;
}

@media (any-hover: hover) {
  .challenge-page__fv-link--first:hover,
  .challenge-page__fv-link--second:hover {
    opacity: 1;
  }
  .challenge-page__fv-link--second:hover::before {
    left: -10%;
    bottom: -50%;
  }
  .challenge-page__fv-link--second:hover::after {
    right: -20%;
    top: -40%;
  }
  .challenge-page__fv-link--first:hover::before {
    left: -8%;
    top: -38%;
  }
  .challenge-page__fv-link--first:hover::after {
    bottom: 9%;
    right: -4%;
  }
}
.challenge-page__fv-link--first-number,
.challenge-page__fv-link--second-number {
  font-size: 2.625rem;
  line-height: 1.05;
  letter-spacing: 0.05em;
  font-family: "Syncopate", serif;
  font-weight: 700;
}

.challenge-page__fv-link--first-text,
.challenge-page__fv-link--second-text {
  position: relative;
  z-index: 100;
}

.challenge-page__fv-link--first {
  background-color: #2745D6;
}

.challenge-page__fv-link--second {
  background-color: #FF78FF;
  display: inline-block;
}

.challenge-page__fv-bottom {
  margin-top: 6.25rem;
}

/* 01,02共通 */
.challenge-page__first-inner,
.challenge-page__second-inner {
  margin-inline: auto;
  padding-inline: 0.9375rem;
}

.challenge-page__first-title,
.challenge-page__second-title {
  text-align: center;
  padding-top: 5.9375rem;
}
@media screen and (min-width: 768px) {
  .challenge-page__first-title,
  .challenge-page__second-title {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 1.5625rem;
       -moz-column-gap: 1.5625rem;
            column-gap: 1.5625rem;
    margin-inline: auto;
    -ms-grid-columns: 20% 1.5625rem 80%;
    grid-template-columns: 20% 80%;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    grid-auto-rows: 0;
  }
  .challenge-page__first-title > *:nth-child(1), .challenge-page__second-title > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .challenge-page__first-title > *:nth-child(2), .challenge-page__second-title > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .challenge-page__first-title > *:nth-child(3), .challenge-page__second-title > *:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .challenge-page__first-title > *:nth-child(4), .challenge-page__second-title > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
  }
}

@media screen and (min-width: 768px) {
  .challenge-page__first-title {
    width: 31.6875rem;
    max-width: 31.6875rem;
    -ms-grid-columns: 22% 78%;
    grid-template-columns: 22% 78%;
  }
}

@media screen and (min-width: 768px) {
  .challenge-page__second-title {
    width: 33.8125rem;
    max-width: 33.8125rem;
    -ms-grid-columns: 20% 2rem 80%;
    grid-template-columns: 20% 80%;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }
}

.challenge-page__first-title-number,
.challenge-page__second-title-number {
  display: inline-block;
  font-family: "Syncopate", serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .challenge-page__first-title-number,
  .challenge-page__second-title-number {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/span 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
  }
}

@media screen and (min-width: 768px) {
  .challenge-page__first-title-number {
    font-size: 5.375rem;
    margin-bottom: -0.625rem;
    padding-left: 0.375rem;
  }
}

@media screen and (min-width: 768px) {
  .challenge-page__second-title-number {
    font-size: 4.375rem;
    margin-bottom: 0;
  }
}

.challenge-page__first-title-main,
.challenge-page__second-title-main {
  display: inline-block;
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .challenge-page__first-title-main,
  .challenge-page__second-title-main {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    text-align: left;
    line-height: 1;
  }
}

.challenge-page__first-title-main {
  font-size: 1.6875rem;
}

.challenge-page__first-title-sub,
.challenge-page__second-title-sub {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.7777777778;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .challenge-page__first-title-sub,
  .challenge-page__second-title-sub {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    text-align: left;
    line-height: 1;
  }
}

.challenge-page__second-description,
.challenge-page__first-description {
  margin-top: 1.875rem;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .challenge-page__second-description,
  .challenge-page__first-description {
    text-align: center;
    width: 50rem;
    max-width: 50rem;
    margin-inline: auto;
  }
}

/* 02 AI活用推進都市宣言 */
.challenge-page__second {
  background-color: #FF98FF;
  position: relative;
}

.challenge-page__second-title {
  color: #FFF;
}

.challenge-page__second-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .challenge-page__second-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2.5rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 61.5625rem;
    max-width: 61.5625rem;
    margin-inline: auto;
    margin-top: 1.875rem;
  }
}

.challenge-page__second-image {
  margin-top: 1.875rem;
  aspect-ratio: 345/299;
  width: 21.5625rem;
  max-width: 31.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .challenge-page__second-image {
    aspect-ratio: 500/434;
    width: 31.25rem;
    margin-top: 0;
  }
}

.challenge-page__second-list {
  margin: 0;
  padding: 1.875rem 0.625rem 1.875rem 1.25rem;
  background: #FFF;
  border-radius: 50px;
  width: 21.5625rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .challenge-page__second-list {
    margin-top: 0;
    padding: 1.875rem 3.125rem;
    width: 27.1875rem;
    max-width: 27.1875rem;
  }
}

.challenge-page__second-list::before {
  display: none;
}
@media screen and (min-width: 768px) {
  .challenge-page__second-list::before {
    display: block;
    position: absolute;
    content: "";
    background-image: url(../images/challenge/list-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
    aspect-ratio: 54/68;
    width: 3.375rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    top: 53%;
    left: -1.875rem;
  }
}

.challenge-page__second-projects {
  margin-top: 3.125rem;
  padding: 2.8125rem 1.25rem;
  background-color: #FFF;
  border: 1px solid #FF78FF;
  border-radius: 35px;
  -webkit-box-shadow: 0.625rem 0.625rem 0 #FF78FF;
          box-shadow: 0.625rem 0.625rem 0 #FF78FF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .challenge-page__second-projects {
    max-width: 71.25rem;
    width: 100%;
    margin-inline: auto;
    padding: 2.875rem 1.875rem;
    -webkit-box-shadow: 0.8125rem 0.8125rem 0 #FF78FF;
            box-shadow: 0.8125rem 0.8125rem 0 #FF78FF;
  }
}

.challenge-page__second-document {
  margin-top: 1.875rem;
  padding-bottom: 6.25rem;
}
@media screen and (min-width: 768px) {
  .challenge-page__second-document {
    margin-top: 3.75rem;
  }
}

.challenge-page__first-bottom {
  margin-top: 6.25rem;
  margin-inline: -0.9375rem;
  background: #FF97FF;
  line-height: 0;
}

/* 02 小倉デジタル城下町大作戦 */
.challenge-page__first {
  background-color: #68FFFF;
}

.challenge-page__first-title {
  color: #2745D6;
}

.challenge-page__first-content {
  margin-top: 3.125rem;
}

.challenge-page__first-document {
  margin-top: 1.875rem;
  aspect-ratio: 2338/1653;
  border-radius: 25px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .challenge-page__first-document {
    margin-top: 3.75rem;
    max-width: 50rem;
    width: 100%;
    margin-inline: auto;
  }
}

@media (any-hover: hover) {
  .challenge-page__first-document-link:hover {
    opacity: 1;
  }
  .challenge-page__first-document-link:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .challenge-page__first-document-link img {
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
}
.challenge-page__first-strategy {
  margin-top: 3.125rem;
  text-align: center;
}

/* bottom (イベント情報) */
.challenge-page__bottom-inner {
  margin-inline: auto;
  padding-inline: 0.9375rem;
}

.challenge-page__bottom-contents {
  display: -ms-grid;
  display: grid;
  gap: 1.875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .challenge-page__bottom-contents {
    padding-top: 6.0625rem;
    gap: 2.25rem;
  }
}

.challenge-page__bottom-text {
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #2745D6;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .challenge-page__bottom-text {
    font-size: 1.75rem;
    line-height: 1.3571428571;
  }
}

.challenge-page__bottom-text-wh {
  color: #FFF;
  background-color: #2745D6;
  border: 1px solid #2745D6;
  border-radius: 50px;
  padding-inline: 0.5rem;
}
@media screen and (min-width: 768px) {
  .challenge-page__bottom-text-wh {
    padding-inline: 0.3125rem;
  }
}

.challenge-page__bottom-link {
  margin-block: 3.125rem 6.25rem;
  text-align: center;
  width: 21.5625rem;
  max-width: 21.5625rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .challenge-page__bottom-link {
    width: 24.6875rem;
    max-width: 24.6875rem;
  }
}

.challenge-page__bottom-link::before,
.challenge-page__bottom-link::after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

.challenge-page__bottom-link::before {
  background-image: url(../images/challenge/event-deco01@2x.png);
  width: 13.25rem;
  aspect-ratio: 212/92;
  left: -0.9375rem;
  bottom: -1.75rem;
}
@media screen and (min-width: 768px) {
  .challenge-page__bottom-link::before {
    -webkit-transition: left 0.3s ease, bottom 0.3s ease;
    transition: left 0.3s ease, bottom 0.3s ease;
  }
}

.challenge-page__bottom-link::after {
  background-image: url(../images/challenge/event-deco02@2x.png);
  width: 12.25rem;
  aspect-ratio: 196/68;
  top: -1.25rem;
  right: -4.25rem;
}
@media screen and (min-width: 768px) {
  .challenge-page__bottom-link::after {
    -webkit-transition: top 0.3s ease, right 0.3s ease;
    transition: top 0.3s ease, right 0.3s ease;
    right: -0.9375rem;
  }
}

@media (any-hover: hover) {
  .challenge-page__bottom-link:hover {
    opacity: 1;
  }
  .challenge-page__bottom-link:hover::before {
    left: -30%;
    bottom: -25%;
  }
  .challenge-page__bottom-link:hover::after {
    right: -25%;
    top: -31%;
  }
}
.challenge-page__bottom-btn {
  display: block;
  background-color: #2745D6;
  border-radius: 35px;
  color: #FFF;
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3571428571;
  letter-spacing: 0.05em;
  padding: 3.5rem 1.5625rem;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.challenge-page__bottom-btn:hover {
  opacity: 1;
  background-color: #68FFFF;
  color: #2745D6;
}
/*# sourceMappingURL=challenge-styles.css.map */