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

body {
  font-family: "Noto Sans JP", 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;
  }
}

/*画像の縦横比設定*/
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;
  }
  /* pc幅での電話発信しない */
  a[href^="tel:"] {
    pointer-events: none;
  }
}
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;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4.375rem;
  z-index: 9999;
  background-color: transparent;
}

.header__inner {
  padding-inline: 15px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .header__inner {
    max-width: 84.375rem;
    padding-inline: 25px;
  }
}

.header__logo {
  width: 5.875rem;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 7.125rem;
  }
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 4.375rem;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0.625rem;
  }
}

@media screen and (min-width: 768px) {
  .header__nav-item {
    font-family: "Syncopate", serif;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 0.7142857143;
    letter-spacing: 0.05em;
    text-transform: uppercase; /*　大文字*/
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background-color: #FFF;
    border-radius: 9999px;
    border: 1px solid #000000;
    -webkit-transition: background-color 0.3s ease, border 0.3s ease;
    transition: background-color 0.3s ease, border 0.3s ease;
  }
}

.header__nav-item a {
  color: #000000;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .header__nav-item a {
    display: block;
    padding: 0.75rem 1.25rem; /* クリック範囲をボタンいっぱいにする */
  }
}

@media screen and (min-width: 768px) {
  .header__nav-item.header__nav-item--special {
    background-color: #95FFFC;
    border: 1px solid #2745D6;
    margin-left: 1.25rem;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
}

@media screen and (min-width: 768px) {
  .header__nav-item.header__nav-item--special a {
    padding: 1.0625rem 1.875rem;
    display: block;
  }
}

@media (any-hover: hover) {
  .header__nav-item:hover {
    background-color: #2745D6;
    border: 1px solid #FFF;
    opacity: 1;
  }
  .header__nav-item:hover a {
    color: #FFF;
    opacity: 1;
  }
  .header__nav-item.header__nav-item--special:hover {
    background-color: #FFD200;
    opacity: 1;
    border: 1px solid #2745D6;
  }
  .header__nav-item.header__nav-item--special:hover a {
    color: #000000;
    opacity: 1;
  }
}
/*ハンバーガーメニュー*/
.hamburger {
  z-index: 9999;
  width: 3.125rem;
  height: 3.125rem;
  background-color: #95FFFC;
  border-radius: 50%;
  border: 1px solid #000000;
  position: relative;
}

.hamburger span::after {
  position: absolute;
  content: "";
  background-color: #35383B;
  display: block;
  height: 0.0625rem; /* 線幅*/
  -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;
  width: 1.875rem;
  margin-inline: auto;
  top: 1.1875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.hamburger span:nth-child(2)::after {
  position: absolute;
  content: "";
  margin-top: 0.5rem;
}

.hamburger.is-openSP span:nth-child(1)::after {
  position: absolute;
  content: "";
  top: 1.5rem;
  left: 0.5rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #000000;
  width: 2.0625rem;
}

.hamburger.is-openSP span:nth-child(2)::after {
  position: absolute;
  content: "";
  top: 0.96875rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: #000000;
  width: 2.0625rem;
  left: 0.5rem;
}

/* スマホメニュー */
.sp-nav {
  background-color: #FFF;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9998;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -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;
  overflow-y: auto;
}
@media screen and (min-width: 768px) {
  .sp-nav {
    display: none;
  }
}

.sp-nav.is-openSP {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.sp-nav__items {
  display: -ms-grid;
  display: grid;
  justify-items: center; /* gridを中央揃え */
  gap: 2.625rem;
  padding-top: 11rem;
}

.sp-nav__item {
  width: 9.125rem;
  background-color: #FFF;
  border: 1px solid #000000;
  border-radius: 9999px;
}

.sp-nav__item a {
  position: relative;
  color: #000000;
  display: block;
  text-align: center;
  font-family: "Syncopate", serif;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 0.7142857143;
  letter-spacing: 0.05em;
  text-transform: uppercase; /*　大文字*/
  margin-inline: auto;
  padding: 0.75rem 1.25rem;
}

.sp-nav__item.sp-nav__item--special {
  background-color: #95FFFC;
  border: 1px solid #2745D6;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

@media screen and (min-width: 768px) {
  .sp-nav__item.sp-nav__item--special a {
    display: block;
    padding: 1.0625rem 1.875rem;
  }
}

/* bodyの固定スタイル */
body.js-fixed {
  width: 100%;
  height: 100%;
  position: fixed;
  overflow: hidden;
}

.fv {
  position: relative;
  overflow: hidden;
  height: 237.3333333333vw;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .fv {
    height: 90.2777777778vw;
  }
}

.fv__bg {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .fv__bg {
    width: 66.6666666667%;
  }
}

.fv__part {
  position: absolute;
  top: 0;
  left: 0;
}

.fv__part img {
  width: 100%;
  height: auto;
}

.fv__ring {
  width: 72.8%;
  margin-top: 67.2%;
  margin-left: 25.8666666667%;
}
@media screen and (min-width: 768px) {
  .fv__ring {
    width: 40.9027777778%;
    margin-top: 8.5416666667%;
    margin-left: 48.6111111111%;
  }
}

.fv__wave01 {
  width: 62.1333333333%;
  margin-top: 3.4666666667%;
  margin-left: 36.2666666667%;
}
@media screen and (min-width: 768px) {
  .fv__wave01 {
    width: 40.4166666667%;
    margin-top: 18.6805555556%;
    margin-left: 59.6527777778%;
  }
}

.fv__wave02 {
  width: 70.9333333333%;
  margin-top: 151.7333333333%;
  margin-left: 0%;
}
@media screen and (min-width: 768px) {
  .fv__wave02 {
    width: 38.3333333333%;
    margin-top: 57.1180555556%;
    margin-left: 11.1111111111%;
    z-index: -1;
  }
}

.fv__woman {
  width: 59.2%;
  margin-top: 47.4666666667%;
  margin-left: 40.8%;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .fv__woman {
    width: 39.8611111111%;
    margin-top: -0.1388888889%;
    margin-left: 60.2777777778%;
  }
}

.fv__man {
  width: 96.8%;
  margin-top: 95.4666666667%;
  margin-left: -0.2666666667%;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .fv__man {
    width: 63.6805555556%;
    margin-top: 24.1402777778%;
    margin-left: 25.4861111111%;
  }
}

@media screen and (min-width: 768px) {
  .fv__pc {
    width: 18.9583333333%;
    margin-top: 22.7777777778%;
    margin-left: 55.5555555556%;
    opacity: 0;
  }
}

.fv__tab {
  width: 27.2%;
  margin-top: 146.4%;
  margin-left: 71.4666666667%;
}
@media screen and (min-width: 768px) {
  .fv__tab {
    width: 14.0277777778%;
    margin-top: 23.6111111111%;
    margin-left: 62.5%;
    opacity: 0;
  }
}

.fv__shadow01 {
  width: 57.3333333333%;
  margin-top: 44.8%;
  margin-left: 42.6666666667%;
}
@media screen and (min-width: 768px) {
  .fv__shadow01 {
    width: 38.75%;
    margin-top: -0.1388888889%;
    margin-left: 61.3194444444%;
  }
}

.fv__shadow02 {
  width: 96%;
  margin-top: 99.4666666667%;
  margin-left: 0%;
}
@media screen and (min-width: 768px) {
  .fv__shadow02 {
    width: 64.2361111111%;
    margin-top: 25.8881944444%;
    margin-left: 24.8611111111%;
  }
}

@media screen and (min-width: 768px) {
  .loaded .fv__ring {
    -webkit-animation: spinIn 4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
            animation: spinIn 4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    /* forwards アニメーションが終わった後、その最後の状態をキープする */
  }
}

@media screen and (min-width: 768px) {
  .loaded .fv__pc {
    -webkit-animation: spinInPC 4s 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
            animation: spinInPC 4s 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    opacity: 0;
  }
}

@media screen and (min-width: 768px) {
  .loaded .fv__tab {
    -webkit-animation: spinInTab 4s 3s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
            animation: spinInTab 4s 3s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    opacity: 0;
  }
}

@media screen and (min-width: 768px) {
  .loaded .fv__wave01 {
    -webkit-animation: spinInWave 3s 4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards, sparkle 1.5s 7s infinite ease-in-out;
            animation: spinInWave 3s 4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards, sparkle 1.5s 7s infinite ease-in-out;
    opacity: 0;
  }
}

@media screen and (min-width: 768px) {
  .loaded .fv__wave02 {
    -webkit-animation: spinInWave 3s 4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards, sparkle 1.5s 7s infinite ease-in-out;
            animation: spinInWave 3s 4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards, sparkle 1.5s 7s infinite ease-in-out;
    opacity: 0;
  }
}

@media screen and (min-width: 768px) {
  .loaded .fv__woman,
  .loaded .fv__shadow01 {
    -webkit-animation: stepScaleRotate 2s 3s ease-in-out forwards;
            animation: stepScaleRotate 2s 3s ease-in-out forwards;
    opacity: 0;
    -webkit-transform-origin: center center;
            transform-origin: center center;
  }
}

@media screen and (min-width: 768px) {
  .loaded .fv__man,
  .loaded .fv__shadow02 {
    -webkit-animation: stepScaleRotate 2s 3.5s ease-in-out forwards;
            animation: stepScaleRotate 2s 3.5s ease-in-out forwards;
    opacity: 0;
    -webkit-transform-origin: center center;
            transform-origin: center center;
  }
}

.fv__inner {
  margin-inline: auto;
  padding-inline: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .fv__inner {
    max-width: 81.25rem;
    padding-inline: 25px;
  }
}

.fv__catch {
  padding-top: 5.4375rem;
  position: absolute;
  content: "";
  top: 0;
}
@media screen and (min-width: 768px) {
  .fv__catch {
    padding-top: 11.875rem;
  }
}

.fv__catch-big {
  font-size: 6.6666666667vw;
  background-color: #FFF;
  width: 7.4666666667vw;
  height: 7.4666666667vw;
  padding-inline: 0.125rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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 (min-width: 768px) {
  .fv__catch-big {
    font-size: 2.0625rem;
    width: 2.625rem;
    height: 2.625rem;
    padding-inline: 0.3125rem;
  }
}

.fv__catch-small {
  font-size: 4.8vw;
  line-height: 0.3846153846;
  letter-spacing: 0.23em;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .fv__catch-small {
    font-size: 1.625rem;
  }
}

.fv__catch-wrapper {
  display: block;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .fv__catch-wrapper {
    margin-top: 2.0625rem;
  }
}

.fv__catch-your,
.fv__catch-idea,
.fv__catch-impacts,
.fv__catch-kitaq,
.fv__catch-2025 {
  font-family: "Syncopate", serif;
  font-weight: 700;
  display: block;
}

.fv__catch-your {
  color: #FFF;
  -webkit-text-stroke: 0.075rem #000000; /*文字周りボーダー*/
  letter-spacing: -0.05em;
}
@media screen and (min-width: 768px) {
  .fv__catch-your {
    -webkit-text-stroke: 0.1125rem #000000;
    letter-spacing: -0.04em;
  }
}

.fv__catch-idea {
  color: #FF0000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.fv__catch-obj {
  text-transform: uppercase;
  font-size: 9.0666666667vw;
  line-height: 0.9090909091;
  letter-spacing: -0.05em;
  text-decoration: underline;
  text-decoration-thickness: 1px; /* 下線の太さ */
  text-underline-offset: 0.07em; /* アンダーラインと文字の間の距離 */
}
@media screen and (min-width: 768px) {
  .fv__catch-obj {
    text-decoration-thickness: 1.5px; /* 下線の太さ */
    text-underline-offset: 8px;
    font-size: 5.1538461538vw;
    letter-spacing: -0.03em;
  }
}

.ityped-cursor {
  margin-left: 1%;
  color: transparent;
  width: 1px;
  height: 9.0666666667vw;
  position: relative;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .ityped-cursor {
    height: 4.6153846154vw;
  }
}

.ityped-cursor::before {
  content: "";
  background: #000000;
  width: 1px;
  height: 9.0666666667vw;
  position: absolute;
  top: 0;
  right: 0;
  margin-left: 2%;
}
@media screen and (min-width: 768px) {
  .ityped-cursor::before {
    height: 4.6153846154vw;
  }
}

.fv__catch-kitaq,
.fv__catch-2025 {
  color: #0C1E65;
  text-transform: uppercase;
}

.fv__catch-your {
  text-transform: capitalize;
  padding-left: 0.125rem;
  font-size: 8.8vw;
  line-height: 0.9090909091;
}
@media screen and (min-width: 768px) {
  .fv__catch-your {
    font-size: 5.2307692308vw;
  }
}

.fv__catch-impacts {
  text-transform: uppercase;
  font-size: 8.8vw;
  line-height: 0.7878787879;
  -webkit-transform: scaleY(0.9);
          transform: scaleY(0.9); /* 文字の高さを縮小 */
  color: #FFF;
  -webkit-text-stroke: 0.075rem #000000; /*文字周りボーダー*/
  letter-spacing: -0.04em;
}
@media screen and (min-width: 768px) {
  .fv__catch-impacts {
    font-size: 5.2307692308vw;
    letter-spacing: -0.04em;
    line-height: 0.9130434783;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-text-stroke: 0.1125rem #000000;
  }
}

.fv__catch-impacts--cts {
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
  .fv__catch-impacts--cts {
    letter-spacing: 0.01em;
  }
}

.fv__catch-kitaq {
  font-size: 9.0666666667vw;
  line-height: 0.8181818182;
  letter-spacing: -0.07em;
}
@media screen and (min-width: 768px) {
  .fv__catch-kitaq {
    font-size: 5.2307692308vw;
    letter-spacing: -0.05em;
    line-height: 0.8985507246;
  }
}

.fv__catch-2025 {
  font-size: 6.9333333333vw;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: transparent;
  border: 3px solid #0C1E65;
  line-height: 0.5769230769;
  padding-top: 1.0666666667vw;
}
@media screen and (min-width: 768px) {
  .fv__catch-2025 {
    font-size: 4.0769230769vw;
    line-height: 0.6231884058;
    border: 5px solid #0C1E65;
    margin-top: 0.3125rem;
    margin-left: 0.1875rem;
    padding-top: 0.5rem;
    letter-spacing: 0.01em;
  }
}

.fv__catch-en img {
  width: 11.6875rem;
  padding-left: 0.125rem;
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .fv__catch-en img {
    width: 26.3125rem;
    margin-top: 2.1875rem;
    margin-left: 0.3125rem;
  }
}

/* 基本の回転アニメーション */
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(0, var(--y));
            transform: translate(0, var(--y));
  }
  50% {
    -webkit-transform: translate(calc(-1 * var(--x)), var(--y));
            transform: translate(calc(-1 * var(--x)), var(--y));
  }
  75% {
    -webkit-transform: translate(calc(-1 * var(--x)), 0);
            transform: translate(calc(-1 * var(--x)), 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(0, var(--y));
            transform: translate(0, var(--y));
  }
  50% {
    -webkit-transform: translate(calc(-1 * var(--x)), var(--y));
            transform: translate(calc(-1 * var(--x)), var(--y));
  }
  75% {
    -webkit-transform: translate(calc(-1 * var(--x)), 0);
            transform: translate(calc(-1 * var(--x)), 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
/* 拡大してもどる */
@-webkit-keyframes spinIn {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-360deg) scale(0.3);
            transform: rotate(-360deg) scale(0.3);
  }
  70% {
    opacity: 1;
    -webkit-transform: rotate(0deg) scale(1.1);
            transform: rotate(0deg) scale(1.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
  }
}
@keyframes spinIn {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-360deg) scale(0.3);
            transform: rotate(-360deg) scale(0.3);
  }
  70% {
    opacity: 1;
    -webkit-transform: rotate(0deg) scale(1.1);
            transform: rotate(0deg) scale(1.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
  }
}
/* PCアニメーション */
@-webkit-keyframes spinInPC {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 0) rotate(-360deg) scale(0.3);
            transform: translate(0, 0) rotate(-360deg) scale(0.3);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-87%, -89%) rotate(0deg) scale(1);
            transform: translate(-87%, -89%) rotate(0deg) scale(1);
  }
}
@keyframes spinInPC {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 0) rotate(-360deg) scale(0.3);
            transform: translate(0, 0) rotate(-360deg) scale(0.3);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-87%, -89%) rotate(0deg) scale(1);
            transform: translate(-87%, -89%) rotate(0deg) scale(1);
  }
}
/* タブレットアニメーション */
@-webkit-keyframes spinInTab {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 0) rotate(-360deg) scale(0.3);
            transform: translate(0, 0) rotate(-360deg) scale(0.3);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(148%, 268%) rotate(0deg) scale(1);
            transform: translate(148%, 268%) rotate(0deg) scale(1);
  }
}
@keyframes spinInTab {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 0) rotate(-360deg) scale(0.3);
            transform: translate(0, 0) rotate(-360deg) scale(0.3);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(148%, 268%) rotate(0deg) scale(1);
            transform: translate(148%, 268%) rotate(0deg) scale(1);
  }
}
/* キラキラアニメーション */
@-webkit-keyframes spinInWave {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-filter: brightness(1);
            filter: brightness(1);
  }
  25% {
    opacity: 0.7;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    -webkit-filter: brightness(1.3);
            filter: brightness(1.3);
  }
  50% {
    opacity: 0.4;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    -webkit-filter: brightness(0.7);
            filter: brightness(0.7);
  }
  75% {
    opacity: 0.8;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    -webkit-filter: brightness(1.2);
            filter: brightness(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: brightness(1);
            filter: brightness(1);
  }
}
@keyframes spinInWave {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-filter: brightness(1);
            filter: brightness(1);
  }
  25% {
    opacity: 0.7;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    -webkit-filter: brightness(1.3);
            filter: brightness(1.3);
  }
  50% {
    opacity: 0.4;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    -webkit-filter: brightness(0.7);
            filter: brightness(0.7);
  }
  75% {
    opacity: 0.8;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    -webkit-filter: brightness(1.2);
            filter: brightness(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: brightness(1);
            filter: brightness(1);
  }
}
/* 段階的に拡大して回転する （人や影のアニメーション）*/
@-webkit-keyframes stepScaleRotate {
  0% {
    -webkit-transform: rotate(0deg) translateX(300px) rotate(0deg) scale(0);
            transform: rotate(0deg) translateX(300px) rotate(0deg) scale(0);
    opacity: 0;
  }
  20% {
    -webkit-transform: rotate(60deg) translateX(300px) rotate(-288deg) scale(0.2);
            transform: rotate(60deg) translateX(300px) rotate(-288deg) scale(0.2);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(360deg) translateX(0) rotate(-1440deg) scale(1);
            transform: rotate(360deg) translateX(0) rotate(-1440deg) scale(1);
    opacity: 1;
  }
}
@keyframes stepScaleRotate {
  0% {
    -webkit-transform: rotate(0deg) translateX(300px) rotate(0deg) scale(0);
            transform: rotate(0deg) translateX(300px) rotate(0deg) scale(0);
    opacity: 0;
  }
  20% {
    -webkit-transform: rotate(60deg) translateX(300px) rotate(-288deg) scale(0.2);
            transform: rotate(60deg) translateX(300px) rotate(-288deg) scale(0.2);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(360deg) translateX(0) rotate(-1440deg) scale(1);
            transform: rotate(360deg) translateX(0) rotate(-1440deg) scale(1);
    opacity: 1;
  }
}
/* バリエーション: 反時計回り */
@-webkit-keyframes spinInReverse {
  0% {
    opacity: 0;
    -webkit-transform: rotate(360deg) scale(0.3);
            transform: rotate(360deg) scale(0.3);
  }
  70% {
    opacity: 1;
    -webkit-transform: rotate(0deg) scale(1.1);
            transform: rotate(0deg) scale(1.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
  }
}
@keyframes spinInReverse {
  0% {
    opacity: 0;
    -webkit-transform: rotate(360deg) scale(0.3);
            transform: rotate(360deg) scale(0.3);
  }
  70% {
    opacity: 1;
    -webkit-transform: rotate(0deg) scale(1.1);
            transform: rotate(0deg) scale(1.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
  }
}
/* バリエーション: 複数回転 */
@-webkit-keyframes spinInMultiple {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-720deg) scale(0.2);
            transform: rotate(-720deg) scale(0.2);
  }
  80% {
    opacity: 1;
    -webkit-transform: rotate(0deg) scale(1.05);
            transform: rotate(0deg) scale(1.05);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
  }
}
@keyframes spinInMultiple {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-720deg) scale(0.2);
            transform: rotate(-720deg) scale(0.2);
  }
  80% {
    opacity: 1;
    -webkit-transform: rotate(0deg) scale(1.05);
            transform: rotate(0deg) scale(1.05);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
  }
}
/* バリエーション: 3D回転風 */
@-webkit-keyframes spin3D {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(-180deg) rotateZ(-360deg) scale(0.4);
            transform: rotateY(-180deg) rotateZ(-360deg) scale(0.4);
  }
  60% {
    opacity: 1;
    -webkit-transform: rotateY(0deg) rotateZ(0deg) scale(1.1);
            transform: rotateY(0deg) rotateZ(0deg) scale(1.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateY(0deg) rotateZ(0deg) scale(1);
            transform: rotateY(0deg) rotateZ(0deg) scale(1);
  }
}
@keyframes spin3D {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(-180deg) rotateZ(-360deg) scale(0.4);
            transform: rotateY(-180deg) rotateZ(-360deg) scale(0.4);
  }
  60% {
    opacity: 1;
    -webkit-transform: rotateY(0deg) rotateZ(0deg) scale(1.1);
            transform: rotateY(0deg) rotateZ(0deg) scale(1.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateY(0deg) rotateZ(0deg) scale(1);
            transform: rotateY(0deg) rotateZ(0deg) scale(1);
  }
}
/* バリエーション: 位置移動付き回転 */
@-webkit-keyframes spinInFromRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100vw) rotate(360deg) scale(0.5);
            transform: translateX(100vw) rotate(360deg) scale(0.5);
  }
  70% {
    opacity: 1;
    -webkit-transform: translateX(0) rotate(0deg) scale(1.1);
            transform: translateX(0) rotate(0deg) scale(1.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) rotate(0deg) scale(1);
            transform: translateX(0) rotate(0deg) scale(1);
  }
}
@keyframes spinInFromRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100vw) rotate(360deg) scale(0.5);
            transform: translateX(100vw) rotate(360deg) scale(0.5);
  }
  70% {
    opacity: 1;
    -webkit-transform: translateX(0) rotate(0deg) scale(1.1);
            transform: translateX(0) rotate(0deg) scale(1.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) rotate(0deg) scale(1);
            transform: translateX(0) rotate(0deg) scale(1);
  }
}
.section-title {
  display: -ms-grid;
  display: grid;
  color: #0C1E65;
}
@media screen and (min-width: 768px) {
  .section-title {
    gap: 0.3125rem;
  }
}

.section-title.section-title--white {
  color: #FFF;
}

.section-title.section-title--blue {
  color: #0C1E65;
}

.section-title__en {
  font-size: 1.875rem;
  font-family: "Syncopate", serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3333333333;
}
@media screen and (min-width: 768px) {
  .section-title__en {
    font-size: 2.375rem;
    line-height: 1.0526315789;
  }
}

.section-title__ja {
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.4666666667;
  margin-top: -0.25rem;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .section-title__ja {
    margin-top: 0;
  }
}

.message {
  margin-top: -4.5rem;
}
@media screen and (min-width: 768px) {
  .message {
    margin-top: -25.4375rem;
  }
}

.message__inner {
  margin-inline: auto;
  padding-inline: 1.125rem;
}
@media screen and (min-width: 768px) {
  .message__inner {
    max-width: 70.625rem;
    padding-inline: 25px;
  }
}

.message__content {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .message__content {
    max-width: 29.375rem;
    margin-left: auto;
    text-align: right;
  }
}

.message__text {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .message__text {
    font-size: 0.875rem;
    margin-top: 3.125rem;
  }
}

.message__text span {
  display: block; /* ←ここがポイント！ inlineのままだと動きがわかりにくい */
}

.future {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .future {
    margin-top: 3.125rem;
  }
}

.future__top {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(98%, transparent), color-stop(98%, #2745D6), to(#2745D6));
  background: linear-gradient(180deg, transparent 0%, transparent 98%, #2745D6 98%, #2745D6 100%);
  border-radius: 0.25rem;
}

.future__inner {
  background-color: #2745d6;
  text-align: center;
  padding-inline: 15px;
  color: #FFF;
  padding-bottom: 3.125rem;
}

.future__title {
  padding-top: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .future__title {
    padding-top: 3.125rem;
  }
}

.future__primary {
  margin-top: 3.125rem;
  display: -ms-grid;
  display: grid;
  gap: 0.125rem;
}
@media screen and (min-width: 768px) {
  .future__primary {
    gap: 0.375rem;
    margin-top: 3.25rem;
  }
}

.future__primary-text {
  font-weight: 700;
  font-size: 4vw;
  line-height: 1.1904761905;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .future__primary-text {
    font-size: 1.75rem;
    line-height: 1.1785714286;
  }
}

.future__primary-strong {
  color: #2745d6;
  background-color: #FFF;
  border-radius: 624.9375rem;
  padding-inline: 0.375rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.future__texts {
  margin-top: 1.875rem;
  display: -ms-grid;
  display: grid;
  gap: 1.375rem;
}
@media screen and (min-width: 768px) {
  .future__texts {
    margin-top: 2.0625rem;
    gap: 1.4375rem;
  }
}

.future__text {
  font-size: 0.8125rem;
  line-height: 1.5714285714;
  letter-spacing: 0.03em;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .future__text {
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}

.future__content {
  margin-top: 3.125rem;
  font-size: 1.3125rem;
  line-height: 1.5714285714;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .future__content {
    margin-top: 6.25rem;
    font-size: 1.75rem;
    line-height: 1.3571428571;
  }
}

.future__content-strong {
  font-family: "Syncopate", serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .future__content-strong {
    font-size: 2.375rem;
    line-height: 1.0526315789;
  }
}

.future__challenges {
  margin-top: 1.875rem;
  display: -ms-grid;
  display: grid;
  gap: 1.875rem;
  justify-items: center;
}
@media screen and (min-width: 768px) {
  .future__challenges {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.future__challenge {
  width: 21.4375rem;
  height: 6.25rem;
  border: 1px solid #FFF;
  border-radius: 2.1875rem;
  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 (min-width: 768px) {
  .future__challenge {
    width: 21.875rem;
    height: 9.375rem;
    position: relative;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
}

@media screen and (min-width: 768px) {
  .future__deco01,
  .future__deco02 {
    position: absolute;
    content: "";
  }
}

.future__deco01 img,
.future__deco02 img {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

@media screen and (min-width: 768px) {
  .future__deco01 {
    width: 13.3125rem;
    height: 5.8125rem;
    top: 0;
    right: 0;
    -webkit-transition: top 0.3s ease, right 0.3s ease;
    transition: top 0.3s ease, right 0.3s ease;
  }
}

@media screen and (min-width: 768px) {
  .future__deco02 {
    width: 12.25rem;
    height: 4.3125rem;
    bottom: 0;
    left: 0;
    -webkit-transition: bottom 0.3s ease, left 0.3s ease;
    transition: bottom 0.3s ease, left 0.3s ease;
  }
}

.future__challenge-title {
  font-weight: 700;
  font-size: 1.3125rem;
  line-height: 1.2857142857;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .future__challenge-title {
    font-size: 1.75rem;
    line-height: 1.3571428571;
  }
}

.future__btn {
  margin-top: 1.875rem;
  margin-inline: auto;
}

@media (any-hover: hover) {
  .future__challenge:hover {
    background-color: #0C1E65;
    opacity: 1;
  }
  .future__challenge:hover .future__deco01 img,
  .future__challenge:hover .future__deco02 img {
    opacity: 1;
  }
  .future__challenge:hover .future__deco01 {
    top: -1.8125rem;
    right: -1.875rem;
  }
  .future__challenge:hover .future__deco02 {
    bottom: -2rem;
    left: -1.875rem;
  }
}
.btn {
  width: 19.375rem;
  height: 2.8125rem;
  background-color: #FFF;
  border: 1px solid #000000;
  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;
  border-radius: 624.9375rem;
  -webkit-transition: background-color 0.3s ease, border 0.3s ease;
  transition: background-color 0.3s ease, border 0.3s ease;
}

.btn.btn--small {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 3.75rem;
  -webkit-transition: background-color 0.3s ease, border 0.3s ease;
  transition: background-color 0.3s ease, border 0.3s ease;
}
@media screen and (min-width: 768px) {
  .btn.btn--small {
    padding-inline: 5rem;
  }
}

.btn__text {
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: #0C1E65;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

@media (any-hover: hover) {
  .btn:hover,
  .btn.btn--small:hover {
    background-color: #2745D6;
    border: 1px solid #FFF;
    opacity: 1;
  }
  .btn:hover .btn__text,
  .btn.btn--small:hover .btn__text {
    color: #FFF;
    opacity: 1;
  }
}
.event {
  background-color: #FFD200;
}

.event__top {
  background: -webkit-gradient(linear, left top, left bottom, from(#2745D6), color-stop(50%, #2745D6), color-stop(50%, #FFD200), to(#FFD200));
  background: linear-gradient(180deg, #2745D6 0%, #2745D6 50%, #FFD200 50%, #FFD200 100%);
}

.event__inner {
  padding-inline: 15px;
  padding-bottom: 3.125rem;
  max-width: 31.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .event__inner {
    padding-inline: 25px;
    max-width: 71.875rem;
  }
}

.event__title {
  padding-top: 4.6875rem;
}
@media screen and (min-width: 768px) {
  .event__title {
    padding-top: 3.125rem;
  }
}

.event__items {
  margin-top: 3rem;
  display: -ms-grid;
  display: grid;
  gap: 1.875rem;
  justify-items: center;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .event__items {
    max-width: 68.75rem;
    margin-inline: auto;
  }
}

.event__item {
  background-color: #FFF;
  border-radius: 3.125rem;
  padding: 2rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .event__item {
    padding: 3.125rem;
  }
}

.event__wrapper01 {
  padding-bottom: 1rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .event__wrapper01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4.375rem;
    padding-bottom: 1.375rem;
  }
}

.event__wrapper01::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.09375rem;
  background-image: repeating-linear-gradient(to right, #2745D6 0, #2745D6 0.15625rem, transparent 0.15625rem, transparent 0.4375rem);
}

@media screen and (min-width: 768px) {
  .event__content {
    width: 48%;
  }
}

.event__numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}

.event__number {
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.1428571429;
  font-family: "Syncopate", serif;
  color: #FFF;
  -webkit-text-stroke: 0.075rem #000000; /*文字周りボーダー*/
}
@media screen and (min-width: 768px) {
  .event__number {
    font-size: 3.625rem;
    line-height: 0.6896551724;
  }
}

.event__online {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #FFF;
  background-color: #ff2c00;
  padding: 0.125rem 1.875rem;
  border-radius: 624.9375rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: "Syncopate", serif;
  text-transform: uppercase;
  -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 (min-width: 768px) {
  .event__online {
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
    padding: 0.125rem 2.5rem;
  }
}

.event__online.event__online--offline {
  background-color: #2745D6;
}

.event__primary {
  font-size: 1.3125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2857142857;
}
@media screen and (min-width: 768px) {
  .event__primary {
    font-size: 1.5rem;
    line-height: 1.375;
    margin-top: 1.4375rem;
  }
}

.event__date {
  font-family: "Josefin Sans", serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3125rem;
}

.event__days {
  color: #2745D6;
  font-size: 1.125rem;
  padding-top: 0.1875rem;
}

.event__week {
  font-size: 0.75rem;
  color: #FFF;
  background-color: #2745D6;
  padding-inline: 0.625rem;
  border-radius: 624.9375rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-transform: capitalize;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.event__info {
  margin-top: 0.9375rem;
  font-family: "Syncopate", serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #2745D6;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .event__info {
    max-width: 21.25rem;
    letter-spacing: 0.05em;
    margin-inline: 0;
    font-size: 0.9375rem;
    padding-left: 1.5rem;
    margin-top: 3.875rem;
  }
}

.event__info::before,
.event__info::after {
  content: "";
  width: 0.8125rem;
  height: 0.8125rem;
  background-color: #2745D6;
  position: absolute;
  border-radius: 50%;
  top: 47%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .event__info::before,
  .event__info::after {
    width: 1.125rem;
    height: 1.125rem;
  }
}

.event__info::before {
  left: -1rem;
}
@media screen and (min-width: 768px) {
  .event__info::before {
    left: 0;
  }
}

.event__info::after {
  left: 17.125rem;
}
@media screen and (min-width: 768px) {
  .event__info::after {
    left: 20.25rem;
  }
}

.event__image {
  margin-top: 1.25rem;
  aspect-ratio: 305/180;
}
@media screen and (min-width: 768px) {
  .event__image {
    aspect-ratio: 450/250;
    margin-top: 0;
    width: 45%;
  }
}

.event__image img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2.1875rem;
}

.event__sub-primary {
  margin-top: 1.4375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3125;
}
@media screen and (min-width: 768px) {
  .event__sub-primary {
    font-size: 1.125rem;
    line-height: 1.7777777778;
  }
}

.event__text {
  margin-top: 0.9375rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.8333333333;
}
@media screen and (min-width: 768px) {
  .event__text {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    margin-top: 0.1875rem;
  }
}

.event__logo {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0.625rem 1fr 0.625rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .event__logo {
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }
}

.event__logo-image01 img {
  max-height: 3.75rem;
}
@media screen and (min-width: 768px) {
  .event__logo-image01 img {
    max-height: 5rem;
  }
}

.event__logo-image02 img {
  max-height: 6.25rem;
}
@media screen and (min-width: 768px) {
  .event__logo-image02 img {
    max-height: 7.5rem;
  }
}

.event__logo-image03 img {
  max-height: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .event__logo-image03 img {
    max-height: 2.1875rem;
  }
}

.event__btn {
  margin-top: 1.5625rem;
  margin-inline: auto;
}

.special {
  overflow: clip;
}

.special__top {
  background: -webkit-gradient(linear, left top, left bottom, from(#FFD200), color-stop(50%, #FFD200), color-stop(50%, #95FFFC), to(#95FFFC));
  background: linear-gradient(180deg, #FFD200 0%, #FFD200 50%, #95FFFC 50%, #95FFFC 100%);
}

.special__background {
  background: -webkit-gradient(linear, left top, left bottom, from(#95FFFC), to(#FFF));
  background: linear-gradient(180deg, #95FFFC, #FFF);
}

.special__inner {
  padding-inline: 15px;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .special__inner {
    margin-inline: auto;
    padding-inline: 25px;
    max-width: 53.125rem;
    padding-bottom: 11.25rem;
  }
}

.special__title {
  text-align: center;
  padding-top: 5rem;
}
@media screen and (min-width: 768px) {
  .special__title {
    padding-top: 6.25rem;
  }
}

.special__primary {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.8095238095;
  color: #0C1E65;
  text-align: center;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .special__primary {
    font-size: 1.125rem;
    line-height: 1.7777777778;
  }
}

.special__wrapper {
  margin-top: 3.125rem;
  display: -ms-grid;
  display: grid;
  gap: 3.125rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .special__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6.25rem;
  }
}

.special__content01,
.special__content02 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 80vw;
  aspect-ratio: 1; /* 縦横比を1:1にする */
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 18.75rem;
  border-radius: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .special__content01,
  .special__content02 {
    max-width: 21.875rem;
    -webkit-transition: background-image 0.3s ease;
    transition: background-image 0.3s ease;
  }
}

.special__content01 {
  background-image: url(../images/special01@2x.png);
  position: relative;
}

.special__content01-title {
  margin-top: 57.3333333333%;
  margin-left: 10%;
}
@media screen and (min-width: 768px) {
  .special__content01-title {
    margin-top: 13.0625rem;
    margin-left: 1.875rem;
  }
}

.special__content02 {
  background-image: url(../images/special02@2x.png);
  position: relative;
}

.special__content02-title {
  margin-top: 38%;
  margin-left: 10%;
}
@media screen and (min-width: 768px) {
  .special__content02-title {
    margin-top: 7rem;
    margin-left: 2.5rem;
  }
}

.special__content01-title,
.special__content02-title {
  position: relative;
  color: #2745D6;
  font-size: 1.3125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2857142857;
}
@media screen and (min-width: 768px) {
  .special__content01-title,
  .special__content02-title {
    font-size: 1.75rem;
    line-height: 1.3571428571;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
}

.special__content01-title::after,
.special__content02-title::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 48.5%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url(../images/special-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 2.1875rem;
  height: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .special__content01-title::after,
  .special__content02-title::after {
    width: 2.5rem;
    height: 2.5rem;
    top: 50%;
    -webkit-transition: background-image 0.3s ease;
    transition: background-image 0.3s ease;
  }
}

@media screen and (min-width: 768px) {
  .special__content01-title::after {
    left: 53.5%;
  }
}

@media screen and (min-width: 768px) {
  .special__content02-title::after {
    left: 55%;
  }
}

.special__content01-comingsoon {
  display: block;
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-top: -0.1875rem;
  margin-left: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .special__content01-comingsoon {
    font-size: 1.25rem;
    line-height: 1;
    margin-left: 0.3125rem;
    margin-top: -0.3125rem;
  }
}

.special__deco01,
.special__deco02,
.special__deco03,
.special__deco04,
.special__deco05,
.special__deco06 {
  position: absolute;
  content: "";
}
@media screen and (min-width: 768px) {
  .special__deco01,
  .special__deco02,
  .special__deco03,
  .special__deco04,
  .special__deco05,
  .special__deco06 {
    -webkit-transition: top 0.3s ease, left 0.3s ease;
    transition: top 0.3s ease, left 0.3s ease;
  }
}

.special__deco01 {
  width: 8.8125rem;
  height: 7.125rem;
  top: -1.125rem;
  left: -1.3125rem;
}
@media screen and (min-width: 768px) {
  .special__deco01 {
    width: 10.125rem;
    height: 8.1875rem;
    top: -2.1875rem;
  }
}

.special__deco02 {
  width: 10.9375rem;
  height: 5.375rem;
  top: 3.3125rem;
  left: 11.8125rem;
}
@media screen and (min-width: 768px) {
  .special__deco02 {
    width: 13.5rem;
    height: 6.625rem;
    top: 3.4375rem;
    left: 10.9375rem;
  }
}

.special__deco03 {
  width: 8.625rem;
  height: 6.0625rem;
  top: 14.1875rem;
  left: 9.1875rem;
}
@media screen and (min-width: 768px) {
  .special__deco03 {
    top: 17.3125rem;
    left: 11.0625rem;
  }
}

.special__deco04 {
  width: 10.5625rem;
  height: 7.1875rem;
  top: 0.9375rem;
  left: -0.9375rem;
}

.special__deco05 {
  width: 7.125rem;
  height: 4.75rem;
  top: 14.4375rem;
  left: -0.375rem;
}
@media screen and (min-width: 768px) {
  .special__deco05 {
    width: 7.75rem;
    height: 5.25rem;
    top: 15.1875rem;
  }
}

.special__deco06 {
  width: 5.0625rem;
  height: 4.8125rem;
  top: 14.375rem;
  left: 14.5rem;
}
@media screen and (min-width: 768px) {
  .special__deco06 {
    top: 15.625rem;
    left: 15.75rem;
  }
}

@media (any-hover: hover) {
  .special__content01:hover,
  .special__content02:hover {
    opacity: 1;
  }
  .special__content01:hover {
    background-image: url(../images/special01-hover@2x.png);
  }
  .special__content02:hover {
    background-image: url(../images/special02-hover@2x.png);
  }
  .special__content01:hover .special__content01-title,
  .special__content02:hover .special__content02-title {
    color: #FFF;
  }
  .special__content01:hover .special__content01-title::after,
  .special__content02:hover .special__content02-title::after {
    background-image: url(../images/special-hover.svg);
  }
  .special__content01:hover .special__deco01 {
    top: -4.6875rem;
    left: -4.4375rem;
  }
  .special__content01:hover .special__deco02 {
    top: 1.5625rem;
    left: 12.8125rem;
  }
  .special__content01:hover .special__deco03 {
    top: 19.8125rem;
    left: 13.5625rem;
  }
  .special__content02:hover .special__deco04 {
    top: -1.625rem;
    left: -3.4375rem;
  }
  .special__content02:hover .special__deco05 {
    top: 17.6875rem;
    left: -2.875rem;
  }
  .special__content02:hover .special__deco06 {
    top: 18.75rem;
    left: 18.875rem;
  }
}
.project {
  position: relative;
  overflow: clip;
}

.project::before {
  content: "";
  position: absolute;
  top: 0;
  right: -9%;
  width: 16.9375rem;
  height: 16.9375rem;
  background-image: url(../images/past-yellow@2x.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .project::before {
    width: 22.21875rem;
    height: 22.21875rem;
    top: 3.8%;
    right: 11%;
  }
}

.project::after {
  content: "";
  position: absolute;
  bottom: 0.8%;
  left: -5%;
  width: 19.125rem;
  height: 19.125rem;
  background-image: url(../images/past-blue@2x.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .project::after {
    width: 22.21875rem;
    height: 22.21875rem;
    bottom: 24.5%;
    left: 4.8%;
  }
}

.project__inner {
  padding-inline: 15px;
  padding-bottom: 6.25rem;
  margin-inline: auto;
  max-width: 33.125rem;
}
@media screen and (min-width: 768px) {
  .project__inner {
    max-width: 64.375rem;
    padding-inline: 25px;
  }
}

.project__title {
  padding-top: 6.25rem;
  text-align: center;
}

.project__items {
  margin-top: 3.125rem;
  display: -ms-grid;
  display: grid;
  gap: 1.25rem;
  justify-items: center;
}

.project__item {
  width: 100%;
  background-color: #FFD200;
  border-radius: 2.1875rem;
  padding: 1.875rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .project__item {
    padding: 1.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.25rem;
    width: 89.7959183673%;
  }
}

@media screen and (min-width: 768px) {
  .project__wrapper01 {
    width: 48.7804878049%;
  }
}

.project__info {
  font-family: "Syncopate", serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 2.8571428571;
  color: #2745D6;
  position: relative;
  padding-left: 1.0625rem;
  margin-top: 0.1875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .project__info {
    font-size: 0.9375rem;
    line-height: 1;
    margin-top: 0.3125rem;
    padding-left: 1.5rem;
    letter-spacing: 0.05em;
  }
}

.project__info::before,
.project__info::after {
  content: "";
  width: 0.8125rem;
  height: 0.8125rem;
  background-color: #2745D6;
  position: absolute;
  border-radius: 50%;
  top: 47%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .project__info::before,
  .project__info::after {
    width: 1.125rem;
    height: 1.125rem;
  }
}

.project__info::before {
  left: 0;
}

.project__info::after {
  left: 18.0625rem;
}
@media screen and (min-width: 768px) {
  .project__info::after {
    left: 20.0625rem;
  }
}

.project__youtube {
  width: 100%;
  aspect-ratio: 16/9;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .project__youtube {
    margin-top: 0.8125rem;
  }
}

.project__youtube iframe {
  width: 100%;
  height: 100%;
  border-radius: 1.25rem;
}

/* 画像からyoutubeに変更 */
.project__wrapper02 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .project__wrapper02 {
    width: 48.7804878049%;
  }
}

.project__primary {
  margin-top: 1.1875rem;
  font-size: 1rem;
  line-height: 1.3125;
  letter-spacing: 0.05em;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .project__primary {
    font-size: 1.125rem;
    line-height: 1.3333333333;
    margin-top: 0;
  }
}

.project__primary::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  border-bottom: 1px solid #2745D6;
}

.project__text {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.8333333333;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .project__text {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}

.project__btn {
  margin-top: 0.3125rem;
}

@media (any-hover: hover) {
  .project__btn:hover {
    opacity: 1;
  }
  .project__btn:hover .link-btn__image01 {
    -webkit-transform: translate(0.375rem, -0.375rem);
            transform: translate(0.375rem, -0.375rem);
  }
}
.others {
  background-color: #95FFFC;
}

.others__top {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(98%, transparent), color-stop(98%, #95FFFC), to(#95FFFC));
  background: linear-gradient(180deg, transparent 0%, transparent 98%, #95FFFC 98%, #95FFFC 100%);
}

.others__inner {
  padding-inline: 15px;
  padding-bottom: 6.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .others__inner {
    padding-inline: clamp(1.25rem, 2vw, 25px);
    max-width: 70.625rem;
    padding-bottom: 6.25rem;
  }
}

.others__title {
  padding-top: 5.875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .others__title {
    padding-top: 6.25rem;
  }
}

.others__slider {
  margin-top: 3.125rem;
  margin-inline: calc(50% - 50vi);
}
@media screen and (min-width: 768px) {
  .others__slider {
    margin-inline: auto;
  }
}

@media screen and (min-width: 768px) {
  .others__container {
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .others__arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    padding-inline: clamp(-1.5625rem, -2vw, 0rem); /* 矢印の位置をレスポンシブ調整 */
  }
}

.others__arrows .splide__arrow {
  padding: 0;
}

@media screen and (min-width: 768px) {
  .others__arrows button img {
    width: clamp(2.5rem, 4vw, 3.125rem);
    height: clamp(2.5rem, 4vw, 3.125rem);
  }
}

@media screen and (min-width: 768px) {
  .others__itmes {
    max-width: clamp(50rem, 85vw, 60rem);
    margin-inline: auto;
    position: relative;
  }
}

/* 左端のぼやかし */
@media screen and (min-width: 768px) {
  .others__itmes::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3.75rem; /* ぼやかしの幅 */
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(#95FFFC), to(transparent));
    background: linear-gradient(to right, #95FFFC, transparent);
    z-index: 1;
    pointer-events: none;
  }
}

/* 右端のぼやかし */
@media screen and (min-width: 768px) {
  .others__itmes::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 3.75rem;
    height: 100%;
    background: -webkit-gradient(linear, right top, left top, from(#95FFFC), to(transparent));
    background: linear-gradient(to left, #95FFFC, transparent);
    z-index: 1;
    pointer-events: none;
  }
}

.others__item {
  overflow: hidden;
}

.others__item.is-active .others__item-image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.others__item-image {
  display: block;
  aspect-ratio: 231/130;
  overflow: hidden;
  border-radius: 1.25rem;
}
@media screen and (min-width: 768px) {
  .others__item-image {
    aspect-ratio: 444/250;
  }
}

.others__item-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer {
  background-color: #95FFFC;
}

.footer.footer--special {
  background-color: #FFF;
}

.footer__background {
  background-color: #2745D6;
  border-radius: 42px 42px 0px 0px;
}

.footer__inner {
  padding-inline: 15px;
  margin-inline: auto;
  max-width: clamp(23.4375rem, 85vw, 37.5rem);
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding-inline: 25px;
    max-width: clamp(50rem, 85vw, 70.625rem);
  }
}

.footer__title {
  text-align: center;
  padding-top: 5.9375rem;
}
@media screen and (min-width: 768px) {
  .footer__title {
    padding-top: 8.125rem;
  }
}

.footer__container {
  margin-top: 1.875rem;
  background-color: #FFF;
  border-radius: 20px;
  padding: 1.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__container {
    padding: 3.75rem;
    margin-inline: auto;
  }
}

.footer__wrapper {
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #0C1E65;
}
@media screen and (min-width: 768px) {
  .footer__wrapper {
    font-size: 1.25rem;
  }
}

.footer__name {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .footer__name {
    font-size: 1.25rem;
  }
}

.footer__address-items {
  display: -ms-grid;
  display: grid;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .footer__address-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.625rem;
  }
}

.footer__btn {
  margin-top: 1.25rem;
}

.footer__btn-text {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #0C1E65;
  line-height: 1.3125;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer__btn-text {
    font-size: 1.25rem;
  }
}

.footer__mail-icon {
  color: #0C1E65;
  width: 1.3125rem;
  height: 1.25rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  position: absolute;
  content: "";
  top: 0.25rem;
  left: -1.875rem;
}
@media screen and (min-width: 768px) {
  .footer__mail-icon {
    top: 0.4375rem;
  }
}

.footer__copy {
  color: #FFF;
  font-weight: 350;
  letter-spacing: 0.03em;
  text-align: center;
  margin-top: 5rem;
  text-transform: capitalize;
  font-family: "Josefin Sans", serif;
}
@media screen and (min-width: 768px) {
  .footer__copy {
    font-size: 0.9375rem;
    margin-top: 3.125rem;
  }
}

footer__copy small {
  font-size: 0.6875rem;
}

.entry {
  position: fixed;
  bottom: 3.125rem;
  right: 0.9375rem;
  max-height: 8.75rem;
}
@media screen and (min-width: 768px) {
  .entry {
    bottom: 6.1875rem;
    right: 1.25rem;
    max-height: 8.75rem;
  }
}

.entry__btn {
  position: relative;
  background-color: #FFD200;
  border-radius: 50%;
  border: 1px solid #FFF;
  width: clamp(5rem, 11vw, 8.75rem); /* 画面幅に応じて80px〜140pxの間でサイズ調整 */
  height: clamp(5rem, 11vw, 8.75rem);
  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;
  z-index: 95;
}

.entry__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(5rem, 11vw, 8.75rem); /* 画面幅に応じて80px〜140pxの間でサイズ調整 */
  height: clamp(5rem, 11vw, 8.75rem);
  border: 1px solid #FFF;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 94;
}

.entry__text::before {
  content: "";
  position: absolute;
  top: -8.5%;
  left: 52.5%;
  background-image: url(../images/entry-deco01@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: clamp(2.5rem, 7vw, 4.5625rem);
  height: clamp(1.625rem, 7vw, 3.6875rem);
  -webkit-transition: top 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: top 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 96;
}
@media screen and (min-width: 768px) {
  .entry__text::before {
    width: clamp(2.5rem, 11vw, 4.5625rem);
    height: clamp(1.625rem, 11vw, 3.6875rem);
    top: -5.5%;
    left: 47.5%;
  }
}

.entry__text::after {
  content: "";
  position: absolute;
  top: 29.5%;
  left: -28.7%;
  background-image: url(../images/entry-deco02@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: clamp(4.65625rem, 7vw, 7.96875rem);
  height: clamp(3.875rem, 7vw, 7.1875rem);
  -webkit-transition: top 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: top 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 96;
}
@media screen and (min-width: 768px) {
  .entry__text::after {
    width: clamp(5.90625rem, 11vw, 7.96875rem);
    height: clamp(5.125rem, 11vw, 7.1875rem);
    top: 26.5%;
    left: -18.7%;
  }
}

.entry__text {
  color: #0C1E65;
  font-weight: 700;
  text-align: center;
  -webkit-transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.entry__text-small {
  position: absolute;
  content: "";
  top: 42%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 0.625rem;
  line-height: 1;
  letter-spacing: 0.03em;
  z-index: 97;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .entry__text-small {
    font-size: 0.875rem;
  }
}

.entry__text-large {
  position: absolute;
  content: "";
  top: 52%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin-top: 0.375rem;
  font-size: 1rem;
  line-height: 0.8333333333;
  letter-spacing: 0.05em;
  z-index: 97;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .entry__text-large {
    font-size: 1.125rem;
  }
}

@media (any-hover: hover) {
  .entry__btn:hover {
    opacity: 1;
  }
  .entry__btn:hover::before {
    width: clamp(5.5rem, 11vw, 9.75rem); /* 画面幅に応じて80px〜140pxの間でサイズ調整 */
    height: clamp(5.5rem, 11vw, 9.75rem);
  }
  .entry__btn:hover .entry__text {
    color: #FFF;
  }
  .entry__btn:hover .entry__text::before {
    top: -19.5%;
    left: 64%;
  }
  .entry__btn:hover .entry__text::after {
    top: 40%;
    left: -33.5%;
  }
}
.link-btn {
  display: block;
  margin-left: auto;
  width: 2.0625rem;
  height: 2.0625rem;
}

.link-btn__image01 {
  background-image: url(../images/past-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 2.0625rem;
  height: 2.0625rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .link-btn__image01 {
    -webkit-transition: -webkit-transform 0.6s ease;
    transition: -webkit-transform 0.6s ease;
    transition: transform 0.6s ease;
    transition: transform 0.6s ease, -webkit-transform 0.6s ease;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

.link-btn__image02 {
  position: relative;
}

.link-btn__image02::before,
.link-btn__image02::after {
  content: "";
  position: absolute;
  background-color: #2745D6;
  bottom: 0;
}

.link-btn__image02::before {
  width: 1.675625rem;
  height: 0.1875rem;
}

.link-btn__image02::after {
  width: 0.1875rem;
  height: 1.675625rem;
}

.special-fv {
  background-color: #FFD200;
}

.special-fv__inner {
  padding-inline: 15px;
  margin-inline: auto;
  max-width: 37.5rem;
}
@media screen and (min-width: 768px) {
  .special-fv__inner {
    padding-inline: 25px;
    max-width: 62.5rem;
  }
}

.special-fv__wrapper {
  padding-block: 8.125rem 6.25rem;
}
@media screen and (min-width: 768px) {
  .special-fv__wrapper {
    padding-block: 8.125rem;
  }
}

@media screen and (min-width: 768px) {
  .special-fv__images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.special-fv__image01 {
  aspect-ratio: 332/111;
  width: 96.231884058%;
  margin-left: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .special-fv__image01 {
    aspect-ratio: 500/126;
    width: 55%;
    max-width: 31.25rem;
    margin-top: 1.875rem;
    margin-left: -1.25rem;
  }
}

.special-fv__image02 {
  aspect-ratio: 320/286;
  width: 92.7536231884%;
  margin-left: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .special-fv__image02 {
    aspect-ratio: 420/376;
    max-width: 26.25rem;
    margin-left: 0;
  }
}

.special-fv__image01 img,
.special-fv__image02 img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .special-fv__content {
    max-width: 31.25rem;
    margin-left: auto;
    margin-top: -13.75rem;
  }
}

.special-fv__title {
  margin-top: 1.875rem;
  text-align: center;
  display: -ms-grid;
  display: grid;
  gap: 0.25rem;
}
@media screen and (min-width: 768px) {
  .special-fv__title {
    gap: 0;
    text-align: left;
  }
}

.special-fv__title-ja {
  font-size: 1.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3703703704;
  display: block;
}
@media screen and (min-width: 768px) {
  .special-fv__title-ja {
    font-size: 1.75rem;
    line-height: 1.3571428571;
  }
}

.special-fv__title-en {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3888888889;
  display: block;
}
@media screen and (min-width: 768px) {
  .special-fv__title-en {
    line-height: 1.7777777778;
  }
}

.special-fv__text {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.7857142857;
  margin-top: 1.0625rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .special-fv__text {
    margin-top: 0.9375rem;
    margin-inline: 0;
  }
}

.step {
  background-color: #68FFFF;
}

.step__top {
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF), color-stop(98%, #FFF), color-stop(98%, #68FFFF), to(#68FFFF));
  background: linear-gradient(180deg, #FFF 0%, #FFF 98%, #68FFFF 98%, #68FFFF 100%);
}

.step__inner {
  margin-inline: auto;
  background-color: #68FFFF;
  padding-top: 1.875rem;
  padding-inline: 15px;
  padding-bottom: 3.75rem;
  max-width: 31.25rem;
}
@media screen and (min-width: 768px) {
  .step__inner {
    padding-inline: 25px;
    max-width: 78.125rem;
    padding-bottom: 4.375rem;
    padding-top: 6.25rem;
  }
}

.step__inner.step__inner--second {
  padding-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .step__inner.step__inner--second {
    padding-top: 1.3125rem;
  }
}

.step__inner.step__inner--fourth {
  padding-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .step__inner.step__inner--fourth {
    padding-top: 1.0625rem;
  }
}

.step__background-deco {
  background-color: #FFF;
  border-radius: 3.125rem;
  padding: 1.875rem 1.5625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .step__background-deco {
    padding: 3.125rem;
    border-radius: 3.125rem;
  }
}

.step__background-deco::after {
  position: absolute;
  content: "";
  bottom: -3.125rem;
  right: 38%;
  background-color: #FFF;
  width: 5rem;
  height: 4.375rem;
  clip-path: polygon(0 0, 100% 0, 50% 100%); /* 下向き三角 */
}
@media screen and (min-width: 768px) {
  .step__background-deco::after {
    right: 46.7%;
  }
}

@media screen and (min-width: 768px) {
  .step__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 3.125rem;
  }
}

.step__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.875rem;
}
@media screen and (min-width: 768px) {
  .step__title {
    gap: 0.6875rem;
  }
}

.step__title-text {
  font-size: 1.75rem;
  line-height: 1.3571428571;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.step__text {
  font-size: 0.875rem;
  line-height: 1.7857142857;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .step__text {
    margin-top: 0;
  }
}

.step__items {
  margin-top: 4.0625rem;
  display: -ms-grid;
  display: grid;
  gap: 1.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .step__items {
    margin-top: 3.9375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 1.875rem;
       -moz-column-gap: 1.875rem;
            column-gap: 1.875rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.step__items.step__items--third01 {
  margin-top: 0.6875rem;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .step__items.step__items--third01 {
    margin-top: 0.6875rem;
  }
}

.step__items.step__items--third02 {
  margin-top: 0.6875rem;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .step__items.step__items--third02 {
    margin-top: 0.6875rem;
  }
}

.step__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 0.125rem solid #0C1E65;
  border-radius: 2.1875rem;
  position: relative;
  padding: 2.1875rem 1.125rem 1.5625rem;
  height: 29.1875rem;
}
@media screen and (min-width: 768px) {
  .step__item {
    max-width: 21.25rem;
    width: 32.6923076923%;
    padding: 2.1875rem 1.4375rem 1.5625rem;
  }
}

.step__item-title {
  font-size: 1.125rem;
  line-height: 1.7777777778;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #FFF;
  background-color: #2745D6;
  border-radius: 624.9375rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.125rem 2.5rem;
  position: absolute;
  content: "";
  top: -1.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

/* step02 */
.step__item-title.step__item-title--second {
  background-color: #ff78ff;
}

/* step03 */
.step__item-title03 {
  font-size: 1.3125rem;
  line-height: 1.3888888889;
  background-color: #FFD200;
  padding: 0.46875rem 2.5rem;
  border-radius: 624.9375rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #FFF;
  letter-spacing: 0.02em;
  text-align: center;
  margin-top: 3.3125rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .step__item-title03 {
    font-size: 1.75rem;
    line-height: 1.3571428571;
    padding: 0.25rem 2.5rem;
    margin-top: 3.8125rem;
  }
}

.step__item-title03.step__item-title03--third02 {
  margin-top: 1.875rem;
}

/* step04 */
.step__item-title.step__item-title--fourth {
  background-color: #FF2C00;
}

.step__item-image {
  aspect-ratio: 255/177;
  min-height: 11.0625rem;
  overflow: hidden;
  border-radius: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .step__item-image {
    aspect-ratio: 290/177;
  }
}

.step__item-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .step__item-image img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -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;
  }
}

.step__item-primary {
  font-size: 1.125rem;
  line-height: 2;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #2745D6;
  text-align: center;
  margin-top: 0.9375rem;
}

.step__item-text {
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0.03em;
  font-weight: 400;
  margin-top: 0.3125rem;
  color: #000000;
}

.step__item-btn {
  margin-top: auto;
  display: block;
}

.step__container {
  font-family: "Syncopate", serif;
  font-weight: 700;
  display: -ms-grid;
  display: grid;
  padding-top: 0.3125rem;
  text-align: center;
  color: #FFF;
}

.step__item-en {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.step__item-number {
  font-size: 2.625rem;
  line-height: 0.9523809524;
  letter-spacing: 0.07em;
}

/*  step01 */
.step__container.step__container--first {
  color: #2745D6;
}

.step__item-en.step__item-en--common {
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .step__item-en.step__item-en--common {
    font-size: 1.375rem;
  }
}

.step__item-number.step__item-number--common {
  font-size: 2.625rem;
  line-height: 0.9523809524;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .step__item-number.step__item-number--common {
    font-size: 3.625rem;
    line-height: 0.6896551724;
  }
}

/* step02 */
.step__container.step__container--second {
  color: #ff78ff;
}

/* step03 */
.step__container.step__container--third {
  color: #FFD200;
}

/* step04 */
.step__container.step__container--fourth {
  color: #FF2C00;
}

.step__info {
  position: relative;
  background-color: #FFF;
  border: 0.0625rem solid #ff78ff;
  border-radius: 2.1875rem;
  margin-top: 2.3125rem;
  padding: 3.4375rem 1.25rem 1.375rem;
  -webkit-box-shadow: 0.625rem 0.625rem 0 0 #ff78ff;
          box-shadow: 0.625rem 0.625rem 0 0 #ff78ff;
}
@media screen and (min-width: 768px) {
  .step__info {
    margin-top: 1.875rem;
    padding: 4.0625rem 1.875rem 1.6875rem;
    -webkit-box-shadow: 0.9375rem 0.9375rem 0 0 #ff78ff;
            box-shadow: 0.9375rem 0.9375rem 0 0 #ff78ff;
  }
}

/* step03 */
.step__info.step__info--third {
  border: 0.0625rem solid #FFD200;
  -webkit-box-shadow: 0.625rem 0.625rem 0 0 #FFD200;
          box-shadow: 0.625rem 0.625rem 0 0 #FFD200;
}
@media screen and (min-width: 768px) {
  .step__info.step__info--third {
    -webkit-box-shadow: 0.9375rem 0.9375rem 0 0 #FFD200;
            box-shadow: 0.9375rem 0.9375rem 0 0 #FFD200;
  }
}

/* step04 */
.step__info.step__info--fourth {
  border: 0.0625rem solid #FF2C00;
  -webkit-box-shadow: 0.625rem 0.625rem 0 0 #FF2C00;
          box-shadow: 0.625rem 0.625rem 0 0 #FF2C00;
}
@media screen and (min-width: 768px) {
  .step__info.step__info--fourth {
    -webkit-box-shadow: 0.9375rem 0.9375rem 0 0 #FF2C00;
            box-shadow: 0.9375rem 0.9375rem 0 0 #FF2C00;
  }
}

.step__info::before {
  position: absolute;
  content: "";
  background-image: url(../images/special/step02-info@2x.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 19.6875rem;
  height: 4rem;
  top: -1.3125rem;
  left: -0.8125rem;
}
@media screen and (min-width: 768px) {
  .step__info::before {
    width: 24.4375rem;
    height: 5rem;
    top: -1.3125rem;
    left: -0.0625rem;
  }
}

/* step03 */
.step__info.step__info--third::before {
  background-image: url(../images/special/step03-info@2x.png);
}

/* step04 */
.step__info.step__info--fourth::before {
  background-image: url(../images/special/step04-info@2x.png);
}

.step__info-item {
  padding-bottom: 1.5625rem;
  position: relative;
  margin-top: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .step__info-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 3.125rem;
       -moz-column-gap: 3.125rem;
            column-gap: 3.125rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 0;
  }
}

.step__info-item:not(:first-child) {
  margin-top: 1.5625rem;
}

.step__info-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background-image: repeating-linear-gradient(to right, #ff78ff 0, #ff78ff 0.125rem, transparent 0.125rem, transparent 0.25rem);
}

/* step03 */
.step__info-item.step__info-item--third::after {
  background-image: repeating-linear-gradient(to right, #FFD200 0, #FFD200 0.125rem, transparent 0.125rem, transparent 0.25rem);
}

/* step04 */
.step__info-item.step__info-item--fourth::after {
  background-image: repeating-linear-gradient(to right, transparent 0, transparent 0.125rem, transparent 0.125rem, transparent 0.25rem);
}

.step__info-image {
  aspect-ratio: 255/143;
}
@media screen and (min-width: 768px) {
  .step__info-image {
    aspect-ratio: 500/281;
    width: 50.5050505051%;
  }
}

.step__info-image img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.5625rem;
  height: 100%;
}

.step__info-content {
  margin-top: 1.3125rem;
}
@media screen and (min-width: 768px) {
  .step__info-content {
    max-width: 30.625rem;
    margin-top: 0;
  }
}

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

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

@media (any-hover: hover) {
  .step__item:hover {
    opacity: 1;
  }
  .step__item-btn:hover {
    opacity: 1;
  }
  .step__item-btn:hover .link-btn__image01 {
    -webkit-transform: translate(0.375rem, -0.375rem);
            transform: translate(0.375rem, -0.375rem);
  }
  .step__item:hover .step__item-image img {
    -webkit-transform: scale(1);
            transform: scale(1); /* 画像を90%に縮小 */
  }
}
.step-top {
  background: -webkit-gradient(linear, left top, left bottom, from(#FFD200), color-stop(0.1%, #FFD200), color-stop(0.1%, #FFF), to(#FFF));
  background: linear-gradient(180deg, #FFD200 0%, #FFD200 0.1%, #FFF 0.1%, #FFF 100%);
}
@media screen and (min-width: 768px) {
  .step-top {
    background: -webkit-gradient(linear, left top, left bottom, from(#FFD200), color-stop(0.3%, #FFD200), color-stop(0.3%, #FFF), to(#FFF));
    background: linear-gradient(180deg, #FFD200 0%, #FFD200 0.3%, #FFF 0.3%, #FFF 100%);
  }
}

.step-top__inner {
  margin-inline: auto;
  padding-inline: 1.875rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .step-top__inner {
    padding-inline: 25px;
    max-width: 50rem;
    padding-bottom: 5rem;
  }
}

.step-top__title {
  text-align: center;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .step-top__title {
    margin-top: 5rem;
  }
}

.step-top__items {
  display: -ms-grid;
  display: grid;
  gap: 1.875rem;
  margin-top: 3.75rem;
  -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 (min-width: 768px) {
  .step-top__items {
    -ms-grid-columns: 1fr 3.0625rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 3.125rem;
    row-gap: 1.875rem;
    -webkit-column-gap: 3.0625rem;
       -moz-column-gap: 3.0625rem;
            column-gap: 3.0625rem;
  }
}

.step-top__item01,
.step-top__item02,
.step-top__item03,
.step-top__item04 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 1.5625rem;
  max-width: 21.875rem;
  min-width: 19.6875rem;
  padding-block: 3.28125rem;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.step-top__item01::before,
.step-top__item01::after,
.step-top__item02::before,
.step-top__item02::after,
.step-top__item03::before,
.step-top__item03::after,
.step-top__item04::before,
.step-top__item04::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.step-top__item01 {
  background-color: #2745D6;
}

.step-top__item01::before {
  background-image: url(../images/special/step01-deco02@2x.png);
  width: 22.2857142857%;
  aspect-ratio: 83/126;
  top: -3.4285714286%;
  left: 1.7142857143%;
}
@media screen and (min-width: 768px) {
  .step-top__item01::before {
    -webkit-transition: left 0.3s ease, top 0.3s ease;
    transition: left 0.3s ease, top 0.3s ease;
    width: 23.7142857143%;
  }
}

.step-top__item01::after {
  background-image: url(../images/special/step01-deco01@2x.png);
  width: 21.4285714286%;
  aspect-ratio: 80/124;
  top: 47.1428571429%;
  right: -1.4285714286%;
}
@media screen and (min-width: 768px) {
  .step-top__item01::after {
    -webkit-transition: right 0.3s ease, top 0.3s ease;
    transition: right 0.3s ease, top 0.3s ease;
    width: 22.8571428571%;
    top: 37.1428571429%;
    right: 1.7142857143%;
  }
}

.step-top__item02 {
  background-color: #ff78ff;
}

.step-top__item02::before {
  background-image: url(../images/special/step02-deco01@2x.png);
  width: 48.5714285714%;
  aspect-ratio: 175/88;
  top: -10.8571428571%;
  right: -6.2857142857%;
}
@media screen and (min-width: 768px) {
  .step-top__item02::before {
    -webkit-transition: right 0.3s ease, top 0.3s ease;
    transition: right 0.3s ease, top 0.3s ease;
    width: 50%;
    top: -12%;
    right: -6.8571428571%;
  }
}

.step-top__item02::after {
  background-image: url(../images/special/step02-deco02@2x.png);
  width: 26.5714285714%;
  aspect-ratio: 98/124;
  top: 52.5714285714%;
  left: -10.5714285714%;
}
@media screen and (min-width: 768px) {
  .step-top__item02::after {
    -webkit-transition: left 0.3s ease, top 0.3s ease;
    transition: left 0.3s ease, top 0.3s ease;
    width: 28%;
    top: 44%;
    left: -8.5714285714%;
  }
}

.step-top__item03 {
  background-color: #FFD200;
}

.step-top__item03::before {
  background-image: url(../images/special/step03-deco01@2x.png);
  width: 39.7142857143%;
  aspect-ratio: 144/72;
  top: -8.5714285714%;
  left: -3.1428571429%;
}
@media screen and (min-width: 768px) {
  .step-top__item03::before {
    -webkit-transition: left 0.3s ease, top 0.3s ease;
    transition: left 0.3s ease, top 0.3s ease;
    width: 41.1428571429%;
  }
}

.step-top__item03::after {
  background-image: url(../images/special/step03-deco02@2x.png);
  width: 26.8571428571%;
  aspect-ratio: 99/94;
  top: 58.8571428571%;
  right: -4.2857142857%;
}
@media screen and (min-width: 768px) {
  .step-top__item03::after {
    -webkit-transition: right 0.3s ease, top 0.3s ease;
    transition: right 0.3s ease, top 0.3s ease;
    width: 28.2857142857%;
    top: 53.1428571429%;
    right: -2.5714285714%;
  }
}

.step-top__item04 {
  background-color: #ff2c00;
}

.step-top__item04::before {
  background-image: url(../images/special/step04-deco01@2x.png);
  width: 34.8571428571%;
  aspect-ratio: 122/82;
  top: -1.4285714286%;
  right: -6.2857142857%;
}
@media screen and (min-width: 768px) {
  .step-top__item04::before {
    -webkit-transition: right 0.3s ease, top 0.3s ease;
    transition: right 0.3s ease, top 0.3s ease;
  }
}

.step-top__item04::after {
  background-image: url(../images/special/step04-deco02@2x.png);
  width: 74.2857142857%;
  aspect-ratio: 292/192;
  top: 45.4285714286%;
  left: -26.5714285714%;
}
@media screen and (min-width: 768px) {
  .step-top__item04::after {
    -webkit-transition: left 0.3s ease, top 0.3s ease;
    transition: left 0.3s ease, top 0.3s ease;
    width: 83.4285714286%;
    top: 35.4285714286%;
    left: -26.5714285714%;
  }
}

.step-top__item-title {
  font-size: 1.5rem;
  line-height: 1.375;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #FFF;
}

@media (any-hover: hover) {
  .step-top__item01:hover,
  .step-top__item02:hover,
  .step-top__item03:hover,
  .step-top__item04:hover {
    opacity: 1;
  }
  .step-top__item01:hover::before {
    left: -4%;
    top: -8.5714285714%;
  }
  .step-top__item01:hover::after {
    right: -2.5714285714%;
    top: 44.2857142857%;
  }
  .step-top__item02:hover::before {
    right: -10.5714285714%;
    top: -10.5714285714%;
  }
  .step-top__item02:hover::after {
    left: -12.5714285714%;
    top: 51.4285714286%;
  }
  .step-top__item03:hover::before {
    left: -6.5714285714%;
    top: -8.5714285714%;
  }
  .step-top__item03:hover::after {
    right: -5.7142857143%;
    top: 60.2857142857%;
  }
  .step-top__item04:hover::before {
    right: -9.7142857143%;
    top: -4.2857142857%;
  }
  .step-top__item04:hover::after {
    left: -30%;
    top: 42.8571428571%;
  }
}
.special-bottom__top {
  background: -webkit-gradient(linear, left top, left bottom, from(#68FFFF), color-stop(2%, #68FFFF), color-stop(2%, #FFF), to(#FFF));
  background: linear-gradient(180deg, #68FFFF 0%, #68FFFF 2%, #FFF 2%, #FFF 100%);
}

.special-bottom__inner {
  margin-inline: auto;
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .special-bottom__inner {
    padding-inline: 25px;
    max-width: 78.125rem;
  }
}

.special-bottom__image {
  aspect-ratio: 345/117;
  margin-block: 3.125rem;
}
@media screen and (min-width: 768px) {
  .special-bottom__image {
    aspect-ratio: 1124/380;
    margin-block: 5.625rem 5.4375rem;
  }
}

.special-bottom__image img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  display: block;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .special-bottom__image img {
    width: 93.6666666667%;
  }
}
/*# sourceMappingURL=styles.css.map */