@charset "UTF-8";
/* --------------------------------------------
フォントファミリー設定
* -------------------------------------------- */
.m-plus-rounded-1c-regular {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.m-plus-rounded-1c-medium {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.m-plus-rounded-1c-extrabold {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.m-plus-rounded-1c-black {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.m-plus-1p-regular {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.m-plus-1p-medium {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.m-plus-1p-bold {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.modak-regular {
  font-family: "Modak", system-ui;
  font-weight: 400;
  font-style: normal;
}

/* 共通の設定・パーツ
* -------------------------------------------- */
body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #fff;
  background-color: #FE9E9E;
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
}

a {
  color: inherit;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
a:hover {
  opacity: 0.7;
}

.container {
  padding: 0 30px;
  margin: 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media (max-width: 767px) {
  .container {
    padding: 0 16px;
  }
}

.inner {
  max-width: 828px;
  padding: 0 30px;
  margin: 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media (max-width: 767px) {
  .inner {
    padding: 0 40px;
  }
}

li {
  list-style: none;
}

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

/* ====================================
画面幅別 表示・非表示
======================================*/
.pc-only {
  display: block;
}
@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}
@media (max-width: 480px) {
  .pc-only {
    display: none;
  }
}

.tab-sp-only {
  display: none;
}
@media (max-width: 767px) {
  .tab-sp-only {
    display: block;
  }
}
@media (max-width: 480px) {
  .tab-sp-only {
    display: block;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 767px) {
  .sp-only {
    display: none;
  }
}
@media (max-width: 480px) {
  .sp-only {
    display: block;
  }
}

.xl-only {
  display: block;
}
@media (max-width: 1024px) {
  .xl-only {
    display: none;
  }
}

.tab-pc-only {
  display: none;
}
@media (max-width: 1024px) {
  .tab-pc-only {
    display: block;
  }
}

/* ====================================
ヘッダー専用：1440pxで切り替え
======================================*/
.header-pc-only {
  display: block;
}
@media (max-width: 1440px) {
  .header-pc-only {
    display: none;
  }
}

.header-sp-only {
  display: none;
}
@media (max-width: 1440px) {
  .header-sp-only {
    display: block;
  }
}

/* ボタン
* -------------------------------------------- */
.nav__button {
  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: 16px;
  border-radius: 60px;
  border: 2px solid #5055FF;
  background: #FFE044;
  -webkit-box-shadow: 4px 4px 0 0 #5055FF;
          box-shadow: 4px 4px 0 0 #5055FF;
  height: 48px;
  padding: 0px 24px;
  font-size: 20px;
  font-weight: 800;
  color: #5055FF;
}
.nav__button:hover {
  opacity: 0.7;
}

/* --------------------------------------------
セクションタイトル
* -------------------------------------------- */
.section-title {
  margin: 0 auto;
  text-align: center;
}

.section-title__en {
  font-size: 200px;
  font-family: "Modak", system-ui;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  color: #FFC1C1;
}
@media (max-width: 767px) {
  .section-title__en {
    font-size: 100px;
    font-size: 26.667vw;
  }
}

.section-title__ja {
  color: #fcff60;
  text-shadow: 4px 4px 0 #3d52c6;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #3d52c6;
  font-size: 60px;
  font-weight: 900;
  letter-spacing: 2.4px;
}
@media (max-width: 767px) {
  .section-title__ja {
    font-size: 36px;
  }
}
.section-title__ja.margin {
  margin-top: -116px;
}
@media (max-width: 767px) {
  .section-title__ja.margin {
    margin-top: -44px;
  }
}

@media (max-width: 767px) {
  .full-bleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

/* --------------------------------------------
フェードインアニメーション
* -------------------------------------------- */
/*下からフェードインアニメーション*/
.fade-in-bottom {
  opacity: 0;
  -webkit-animation-name: fadein-bottom;
          animation-name: fadein-bottom;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fadein-bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadein-bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fade-in-bottom2 {
  opacity: 0;
  -webkit-animation-name: fadein-bottom;
          animation-name: fadein-bottom;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@keyframes fadein-bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fade-in {
  opacity: 0;
  -webkit-transition: opacity 3s ease-in-out;
  transition: opacity 3s ease-in-out;
}

.fadein-up {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 80px;
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 64px;
  }
}

body {
  background: #fe9e9e;
  color: #fff;
  overflow-x: hidden;
}

body.no-scroll,
html.no-scroll {
  overflow: hidden;
}

/* --------------------------------------------
ヘッダー
* -------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  z-index: 1000;
  height: 4.167vw;
  height: 80px;
  background-color: transparent;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media (max-width: 767px) {
  .header {
    height: 19.2vw;
    height: 64px;
  }
}
@media (min-width: 1025px) {
  .header.scrolled {
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
  }
}

.header-nav {
  margin: 0 auto;
  padding: 0 2.083vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}
@media (max-width: 767px) {
  .header-nav {
    padding: 0 13px 0 6px;
  }
}

.pc-header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .pc-header-nav {
    font-size: 16px;
    gap: 24px;
  }
}

.header-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  justify-items: end;
  gap: 24px;
}
@media (max-width: 1024px) {
  .header-nav-list {
    gap: 1.25vw;
  }
}

.header-nav-button {
  color: #5055FF;
  width: 240px;
}

/* ドロワーメニュー
* -------------------------------------------- */
/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: relative;
  z-index: 10;
  right: 0px;
  top: 0px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #5055FF;
  background: #FFE044;
  -webkit-box-shadow: 2px 2px 0 #5055FF;
          box-shadow: 2px 2px 0 #5055FF;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 18px;
  height: 3px;
  left: 11px;
  background: #5055FF;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 13px;
}

.hamburger span:nth-child(2) {
  top: 19px;
}

.hamburger span:nth-child(3) {
  top: 25px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 19px;
  left: 11px;
  background: #5055FF;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 19px;
  left: 11px;
  background: #5055FF;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index: 8;
  inset: 0;
  color: #fff;
  text-align: center;
  width: 100%;
  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;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(254, 158, 158, 0.8);
  backdrop-filter: blur(12px);
  display: none;
  z-index: 6;
}

.overlay.active {
  display: block;
}

.globalMenuSp__inner {
  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;
  height: 100%;
  opacity: 0;
  -webkit-transform: translateY(16px);
          transform: translateY(16px);
  -webkit-transition: opacity 0.4s ease 0.05s, -webkit-transform 0.4s ease 0.05s;
  transition: opacity 0.4s ease 0.05s, -webkit-transform 0.4s ease 0.05s;
  transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s;
  transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s, -webkit-transform 0.4s ease 0.05s;
}

nav.globalMenuSp ul {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}

nav.globalMenuSp ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
}
nav.globalMenuSp ul li a.nav__button {
  color: #5055FF;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
nav.globalMenuSp.active .globalMenuSp__inner {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* --------------------------------------------
first-view
* -------------------------------------------- */
.first-view {
  position: relative;
}

.fisrt-view__inner {
  height: inherit;
}

.fv_message {
  width: 13.021vw;
  position: absolute;
  top: 6.25vw;
  left: 30%;
}

.fv_title {
  width: 25.833vw;
  position: absolute;
  top: 5.208vw;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.fv_title--img {
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}

.fv_person {
  width: 61.302vw;
  position: absolute;
  bottom: -12.344vw;
  left: 49%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.fv_message_sp {
  width: 70.4vw;
  position: absolute;
  top: 22px;
  top: 5.867vw;
  left: 48%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.fv_title_sp {
  width: 85.333vw;
  position: absolute;
  top: 24vw;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.fv_person_sp {
  width: 125.333vw;
  position: absolute;
  bottom: -30.667vw;
  left: 46%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

/* --------------------------------------------
about
* -------------------------------------------- */
.about {
  padding: 100px 30px 120px;
  background-color: #78afff;
  background-image: repeating-linear-gradient(0deg, transparent 0, transparent 99px, #a0c7ff 99px, #a0c7ff 100px), repeating-linear-gradient(90deg, transparent 0, transparent 99px, #a0c7ff 99px, #a0c7ff 100px);
  background-size: 100px 100px;
}
@media (max-width: 767px) {
  .about {
    padding: 87px 16px 100px;
  }
}
.about .section-title__ja span {
  font-size: 40px;
}
@media (max-width: 767px) {
  .about .section-title__ja span {
    font-size: 24px;
  }
}
.about .section-title__en {
  color: rgba(150, 193, 255, 0.8);
}

.about-message {
  margin: 0 auto;
  max-width: 768px;
  width: 100%;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .about-message {
    margin-top: 0;
  }
}

.about-text__wrap {
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .about-text__wrap {
    margin-top: 8px;
  }
}

.about-text {
  font-size: 20px;
  line-height: 1.7;
  font-weight: 500;
}
@media (max-width: 767px) {
  .about-text {
    font-size: 14px;
  }
}
.about-text + .about-text {
  margin-top: 8px;
  margin-top: 1.5em;
}
.about-text span {
  color: #fcff5b;
  font-weight: 500;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: 10%;
  text-underline-offset: 10%;
  text-underline-position: from-font;
}

.about-movie {
  position: relative;
  max-width: 640px;
  height: auto;
  border: 60px solid #feffb0;
  -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.4);
  margin: 0 auto;
  margin-top: 100px;
}
@media (max-width: 767px) {
  .about-movie {
    width: 100%;
    border: 16px solid #feffb0;
    margin-top: 80px;
  }
}

.about-movie iframe {
  aspect-ratio: 16/9;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.about-movie__title {
  width: 227px;
  height: auto;
  position: absolute;
  top: -50px;
  left: -40px;
  z-index: 2;
}
@media (max-width: 767px) {
  .about-movie__title {
    top: -36px;
    left: -10px;
    width: 37.867vw;
  }
}

.deco1 {
  width: 115px;
  height: auto;
  position: absolute;
  top: 110px;
  left: -70px;
  z-index: 2;
}

.deco2 {
  width: 115px;
  height: auto;
  position: absolute;
  bottom: -60px;
  left: -40px;
  z-index: 2;
}
@media (max-width: 767px) {
  .deco2 {
    width: 20.013vw;
    bottom: -40px;
    left: -10px;
  }
}

.deco3 {
  width: 115px;
  height: auto;
  position: absolute;
  top: -80px;
  right: -50px;
  z-index: 2;
}
@media (max-width: 767px) {
  .deco3 {
    width: 16.533vw;
    top: -30px;
    right: -10px;
  }
}

.deco4 {
  width: 115px;
  height: auto;
  position: absolute;
  bottom: -70px;
  right: -60px;
  z-index: 2;
}
@media (max-width: 767px) {
  .deco4 {
    width: 18.909vw;
    bottom: -30px;
    right: -10px;
  }
}

/* --------------------------------------------
contest
* -------------------------------------------- */
.contest {
  background-color: #fff27e;
  background-image: repeating-linear-gradient(-45deg, #fff597 0, #fff597 8px, #fff27e 8px, #fff27e 16px);
}
.contest .section-title__en {
  color: rgba(255, 248, 185, 0.8);
}
@media (max-width: 767px) {
  .contest .section-title__ja {
    margin-top: -57px;
  }
}
.contest {
  padding-top: 30px;
  padding-bottom: 124px;
}
@media (max-width: 767px) {
  .contest {
    padding-top: 85px;
    padding-bottom: 100px;
  }
}

.contest__latest {
  max-width: 468px;
  margin: 0 auto;
  margin-top: 40px;
  position: relative;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.24);
          box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.24);
}
@media (max-width: 767px) {
  .contest__latest {
    margin-top: 24px;
    max-width: 100%;
  }
}

.coming-soon {
  position: absolute;
  top: -2px;
  left: -10px;
  width: 151px;
}
@media (max-width: 480px) {
  .coming-soon {
    width: 30.4vw;
  }
}

.contest__before {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  margin-top: 60px;
  text-align: center;
}
@media (max-width: 767px) {
  .contest__before {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .contest__before .section-title__ja {
    margin-top: 0px;
  }
}

.contest__items {
  margin-top: 50px;
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .contest__items {
    margin-top: 24px;
    gap: 24px;
    grid-template-columns: repeat(1, 1fr);
  }
}

.contest__item {
  -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.16);
}

.contest__item-ribon {
  position: relative;
}

.item-ribon {
  position: absolute;
  top: 10px;
  left: -6px;
  width: 231px;
  height: 64px;
}
@media (max-width: 1024px) {
  .item-ribon {
    width: 22.559vw;
    height: auto;
  }
}
@media (max-width: 767px) {
  .item-ribon {
    width: 36.533vw;
    top: 2px;
    left: -4px;
  }
}

/* --------------------------------------------
case
* -------------------------------------------- */
.case {
  position: relative;
  overflow: hidden;
  background-color: #71ffe5;
  padding-top: 30px;
  padding-bottom: 130px;
}
@media (max-width: 767px) {
  .case {
    padding-top: 66px;
    padding-bottom: 70px;
  }
}
.case::before {
  content: "";
  position: absolute;
  left: -150%;
  top: -150%;
  width: 400%;
  height: 400%;
  background-image: radial-gradient(circle, #8affea 7px, transparent 7px);
  background-size: 54px 54px;
  background-position: 0 0, 27px 27px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  z-index: 0;
}
.case > * {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .case .section-title__ja {
    font-size: 32px;
  }
}
.case .section-title__en {
  color: rgba(174, 255, 240, 0.8);
}

.case-year {
  color: #fcff60;
  text-align: center;
  text-shadow: 4px 4px 0 #4b59a8;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #4b59a8;
  font-size: 40px;
  letter-spacing: 1.28px;
  margin-top: 40px;
  margin-bottom: 24px;
}
.case-year h3 {
  font-weight: 900;
}
@media (max-width: 767px) {
  .case-year {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .case-year.case-year__2025 {
    margin-top: 70px;
  }
}

/* 1025px以上：スライダー無効、3枚横並び（最大幅928px・余白8px・均等） */
@media (min-width: 1025px) {
  .case__swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    max-width: 928px;
    margin-left: auto;
    margin-right: auto;
    -webkit-transform: none !important;
            transform: none !important;
  }
  .case__swiper .swiper-slide {
    width: auto !important;
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 !important;
            flex: 1 !important;
  }
}
.case__swiper .swiper-slide {
  height: auto;
}

/* Swiper 矢印：丸（#3D52C6E5）＋白い矢印 */
.case__swiper {
  position: relative;
}

.case__swiper .swiper-button-prev,
.case__swiper .swiper-button-next {
  width: 40px;
  height: 40px;
  margin-top: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: rgba(61, 82, 198, 0.9);
  border-radius: 50%;
  -webkit-box-shadow: 0 0px 10px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0px 10px rgba(0, 0, 0, 0.6);
  z-index: 10;
}
.case__swiper .swiper-button-prev::after,
.case__swiper .swiper-button-next::after {
  color: #fff;
  border-color: #fff;
  font-size: 14px;
}

.case__swiper .swiper-button-prev {
  left: 8px;
}

.case__swiper .swiper-button-next {
  right: 8px;
}

.case-item {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 400;
  display: grid;
  gap: 8px;
  padding: 16px 12px;
  border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.16);
  height: 100%;
}

.case-item__title {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 1024px) {
  .case-item__title {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .case-item__title {
    font-size: 18px;
  }
}
.case-item__title.high {
  min-height: 54px;
  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;
}

.case-item__text {
  color: #000;
  font-size: 12px;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .case-item__text {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .case-item__text {
    font-size: 12px;
  }
}

.case-item__img {
  position: relative;
}

.case-item__position {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
}
@media (max-width: 1024px) {
  .case-item__position {
    width: 19.531vw;
  }
}
@media (max-width: 480px) {
  .case-item__position {
    width: 22.667vw;
  }
}

.case-item__img-name {
  color: #3d52c6;
  font-size: 14px;
  margin-top: 8px;
  margin-bottom: 8px;
}
@media (max-width: 1024px) {
  .case-item__img-name {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .case-item__img-name {
    font-size: 14px;
  }
}
.case-item__img-name span {
  font-size: 18px;
  margin-left: 8px;
}
@media (max-width: 1024px) {
  .case-item__img-name span {
    font-size: 22px;
    margin-left: 16px;
  }
}
@media (max-width: 767px) {
  .case-item__img-name span {
    font-size: 18px;
    margin-left: 8px;
  }
}

.case-item__buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  align-self: end;
}

.case-item__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  width: 100%;
  height: auto;
  border-radius: 50px;
  background: #637aff;
}
.case-item__button img {
  width: 20px;
}

#swiper2 {
  height: 100%;
}

/* --------------------------------------------
footer
* -------------------------------------------- */
.footer {
  padding: 80px 13px;
  background-image: url("../img/footer_bg.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center bottom;
}
@media (max-width: 1919px) {
  .footer {
    background-size: auto 100%;
  }
}
@media (max-width: 767px) {
  .footer {
    padding: 90px 13px 70px;
  }
}

.footer__logo {
  width: 317px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .footer__logo {
    max-width: 317px;
    width: 100%;
  }
}

.footer__nav {
  text-align: center;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .footer__nav {
    margin-top: 34px;
  }
}

.footer__nav-list {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
  font-size: 18px;
}
@media (max-width: 767px) {
  .footer__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.icon-open {
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  margin-left: 4px;
}

.footer__btn {
  display: block;
}

.footer__btn-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 327px;
  width: 100%;
  height: 48px;
  padding: 0 24px;
  margin: 0 auto;
  margin-top: 24px;
  font-size: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 2px solid #3d52c6;
  background: #637aff;
  -webkit-box-shadow: 4px 4px 0 0 #3d52c6;
          box-shadow: 4px 4px 0 0 #3d52c6;
}
.footer__btn-link img {
  width: 20px;
}

/* モーダル
* -------------------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  padding: 24px;
}
@media (max-width: 767px) {
  .modal {
    padding: 16px;
  }
}

.modal__overlay {
  position: absolute;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.modal__wrap {
  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;
  min-height: 100vh;
}

.modal__content {
  position: relative;
  width: 100%;
  max-height: 90vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 600px;
  padding: 16px 24px 24px 24px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 16px;
  border-radius: 20px;
  border: 4px solid #63a1ff;
  background: #ddeaff;
  -webkit-box-shadow: 0 0 80px 0 rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 80px 0 rgba(0, 0, 0, 0.6);
}
@media (max-width: 767px) {
  .modal__content {
    padding: 16px 16px 24px 16px;
    border-radius: 20px;
    max-width: 100%;
    max-height: 85vh;
  }
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 0;
  padding: 0;
}

.modal__close-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #63a1ff;
  cursor: pointer;
  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;
  position: relative;
}
.modal__close-btn:hover {
  opacity: 0.8;
}

.modal__close-icon {
  width: 20px;
  height: 20px;
  position: relative;
}
.modal__close-icon::before, .modal__close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 4px;
  background: #fff;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.modal__close-icon::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.modal__close-icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.modal__inner {
  width: 100%;
  padding-top: 44px;
}

.modal-item {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  z-index: 1;
}
.modal-item iframe {
  aspect-ratio: 16/9;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}