@charset "UTF-8";
body {
  color: #020202;
  font-family: "Noto serif jp", sans-serif;
  background: #fdfdfd;
  overflow-x: hidden; /* 横スクロールを常に無効化 */
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #020202;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9999;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease; /* フェードアウトのアニメーション */
}

.loader.hidden {
  opacity: 0; /* フェードアウト */
  pointer-events: none; /* 操作を無効化 */
}

.loading-text {
  color: #fdfdfd;
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  -webkit-animation: fadeIn 1.5s ease-in-out infinite alternate;
          animation: fadeIn 1.5s ease-in-out infinite alternate;
}

@media screen and (min-width: 768px) {
  .loading-text {
    font-size: 24px;
  }
}
/* テキストがふわっと表示されるアニメーション */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto serif jp", sans-serif;
  background: #fdfdfd;
}

.section__inner {
  text-align: center;
  max-width: 343px;
  padding-top: 180px;
  padding-bottom: 180px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .section__inner {
    max-width: 1080px;
    padding-top: 180px;
    padding-bottom: 180px;
    width: calc(100% - 32px);
  }
}
.section__title {
  color: #020202;
  font-family: "Noto serif", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 54px;
  letter-spacing: 3.2px;
}

@media screen and (min-width: 768px) {
  .ignore-on-pc {
    display: none;
  }
}
.title__small {
  color: #020202;
  font-family: "Noto serif", sans-serif;
  font-size: 12px;
  font-weight: 400;
  margin-top: 24px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%; /* 追加: ヘッダーを全幅に設定 */
  z-index: 1000; /* 追加: ヘッダーを前面に表示 */
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 追加: ボックスモデルを調整 */
}

@media screen and (min-width: 768px) {
  header {
    background-color: #020202;
  }
}
.header__nav {
  display: none;
}

@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;
    gap: 26px;
  }
}
.header__link {
  color: #fdfdfd;
  font-family: "Noto Serif";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.header__link:hover {
  -webkit-animation: shake 0.3s ease-in-out;
          animation: shake 0.3s ease-in-out;
}

/* アニメーションの定義 */
@-webkit-keyframes shake {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(-3px);
            transform: translateX(-3px);
  }
  50% {
    -webkit-transform: translateX(3px);
            transform: translateX(3px);
  }
  75% {
    -webkit-transform: translateX(-3px);
            transform: translateX(-3px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes shake {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(-3px);
            transform: translateX(-3px);
  }
  50% {
    -webkit-transform: translateX(3px);
            transform: translateX(3px);
  }
  75% {
    -webkit-transform: translateX(-3px);
            transform: translateX(-3px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.header__drawerButton {
  background: none;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 80px;
  width: 80px;
  padding: 24px 20px;
  position: relative;
  z-index: 1001;
}
.header__drawerButton.open span {
  background-color: #020202;
}
.header__drawerButton.open span:nth-child(1) {
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transform: rotate(36.66deg);
          transform: rotate(36.66deg);
  width: 51.22px;
}
.header__drawerButton.open span:nth-child(2) {
  opacity: 0;
}
.header__drawerButton.open span:nth-child(3) {
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-transform: rotate(-36.66deg);
          transform: rotate(-36.66deg);
  width: 51.22px;
}

@media screen and (min-width: 768px) {
  .header__drawerButton {
    display: none;
  }
}
.drawer-icon__bar {
  background-color: #020202;
  height: 3px;
  width: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 64px;
  padding-left: 16px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 26px;
}

@media screen and (min-width: 768px) {
  .header__inner {
    max-width: 1080px; /* 最大幅を1080pxに設定 */
    width: 100%; /* 幅を100%に設定 */
    margin: 0 auto; /* 左右のマージンを自動で設定 */
    height: 64px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: calc(100% - 32px);
  }
}
.drawer {
  width: 100%;
  height: 100vh;
  background-color: #fdfdfd;
  position: absolute;
  top: 0;
  left: -100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.drawer.open {
  display: block; /* 表示 */
  left: 0;
}

@media screen and (min-width: 768px) {
  .drawer {
    display: none;
  }
}
.drawer__inner {
  width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* これがないとalign-itemsが効かない */
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* リスト要素を上下方向に中央揃えします。 */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* Flexbox の子要素を左右方向に中央揃えします。  */
  margin: 0 auto;
  text-align: left; /* 左寄せ */
}

.drawer__nav li + li {
  margin-top: 16px;
}

.drawer__link {
  display: block; /* ブロック要素として表示 */
  font-size: 24px;
  color: #020202;
  font-family: "Noto serif", sans-serif;
  font-weight: 400;
  letter-spacing: 3px;
}

@media screen and (min-width: 768px) {
  /* 縦線のスタイル */
  .separator {
    color: #fdfdfd;
    font-size: 12px;
  }
}
.fv-img-pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .fv {
    margin-top: 64px;
  }
  .fv-img-sp {
    display: none;
  }
  .fv-img-pc {
    display: block;
  }
}
.tiserMovie {
  background-color: #020202;
  text-align: center;
}

.tiserMovie_contents__container {
  margin: 0 auto;
  max-width: 1040px;
  padding-top: 180px;
  padding-bottom: 180px;
  padding-left: 16px;
  padding-right: 16px;
}

.tiserMovier__movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9のアスペクト比 */
  height: 0;
}

.tiserMovier__movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.latestUpdate__section-inner {
  padding-top: 180px;
  padding-bottom: 180px;
  padding-right: 16px;
  padding-left: 16px;
  text-align: center;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .latestUpdate__section-inner {
    max-width: 500px;
  }
}
.latestUpdate__contents-list {
  margin-top: 88px;
  -moz-text-align-last: left;
       text-align-last: left;
}

.latestUpdate__indivisual-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.latestUpdate__indivisual-list + .latestUpdate__indivisual-list {
  margin-top: 16px;
}

.latestUpdate__point {
  margin-right: 8px;
}

.demoLink {
  color: #ED762F;
}

.crowdFundingLink {
  color: #ED762F;
}

.introduction__section-inner {
  padding-top: 180px;
  padding-bottom: 180px;
  padding-right: 16px;
  padding-left: 16px;
  text-align: center;
  margin: 0 auto;
  background-image: url("../img/img-sp/introduction-logo-sp.png"); /* 画像パスを指定 */
  background-size: contain;
  background-position: center 184px; /* 背景画像の位置調整 */
  background-repeat: no-repeat; /* 繰り返しを防ぐ */
}

@media screen and (min-width: 768px) {
  .introduction__section-inner {
    background-image: url("../img/img-pc/introduction-logo-pc.png"); /* 画像パスを指定 */
    background-size: contain;
    background-position: center 38px; /* 背景画像の位置調整 */
    background-repeat: no-repeat; /* 繰り返しを防ぐ */
  }
}
.introduction__contents-container {
  margin-top: 88px;
}

.introduction__text {
  color: #020202;
  text-align: center;
  font-family: "Noto serif jp", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 3; /* 300% */
  letter-spacing: 1.28px;
}

.introduction__tex-top {
  font-weight: bold;
}

.demoLink-button-container {
  margin-top: 32px;
}

.button--orange {
  display: inline-block;
  font-size: 24px;
  width: 275px;
  height: 66px;
  padding: 14px 46px;
  border-radius: 32px;
  color: #FDFDFD;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Noto serif jp", sans-serif;
  background-color: #ED762F;
  border: 2px solid #ED762F;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.button--orange:hover {
  background-color: #FDFDFD;
  color: #ED762F;
  border: 2px solid #ED762F;
}

.ad {
  background-color: #020202;
  padding-top: 88px;
  padding-bottom: 88px;
}

.ad__text-sp {
  display: block;
  color: #fdfdfd;
  text-align: center;
  margin-bottom: 32px;
}

.ad__text-pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .ad__text-sp {
    display: none;
  }
  .ad__text-pc {
    display: block;
    color: #FDFDFD;
    text-align: center;
    margin-bottom: 32px;
  }
}
.ad__crowdFunding-img-container {
  width: 320px;
  height: auto;
  margin: 0 auto;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.ad__crowdFunding-img-container:hover {
  opacity: 0.9;
}

@media screen and (min-width: 768px) {
  .ad__crowdFunding-img-container {
    width: 400px;
    height: auto;
  }
}
.story {
  background-image: url("../img/Story-img.png"); /* 画像パスを指定 */
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.5); /* 背景色の不透明度を設定 */
  background-blend-mode: overlay; /* 背景画像と色をブレンド */
}

.story__section-inner {
  padding-top: 180px;
  padding-bottom: 180px;
  padding-right: 16px;
  padding-left: 16px;
  text-align: center;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .story__section-inner {
    padding-top: 180px;
    padding-bottom: 180px;
    padding-right: 16px;
    padding-left: 16px;
    text-align: center;
    margin: 0 auto;
    max-width: 740px;
  }
}
.story__contents-container {
  margin-top: 88px;
  background-color: #FDFDFD;
  padding: 32px 24px;
  border-radius: 32px;
}

@media screen and (min-width: 768px) {
  .story__contents-container {
    margin-top: 88px;
    background-color: #FDFDFD;
    padding: 60px 32px;
    border-radius: 32px;
  }
}
.story__text {
  color: #020202;
  font-family: "Noto serif jp", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 2.5; /* 300% */
  text-align: left;
}

@media screen and (min-width: 768px) {
  .story__text {
    color: #020202;
    font-family: "Noto serif jp", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 3; /* 300% */
    text-align: left;
  }
}
.character {
  background-size: cover;
  background-position: center top; /* 背景画像の位置調整 */
  background-repeat: no-repeat; /* 繰り返しを防ぐ */
  -webkit-transition: background-image 2s ease-in-out, opacity 2s ease-in-out;
  transition: background-image 2s ease-in-out, opacity 2s ease-in-out; /* 背景のフェード速度 */
  opacity: 1; /* フェード用 */
}

.character__section-inner {
  padding-top: 180px;
  padding-bottom: 180px;
  padding-right: 16px;
  padding-left: 16px;
  text-align: center;
  margin: 0 auto;
}

.swiper-container {
  margin-inline: auto;
  max-width: 1440px;
  position: relative;
  overflow: visible; /* ボタンが隠れないようにする */
}

.swiper {
  width: 100%;
  height: auto;
  overflow: visible; /* 横スクロールを防ぐ */
  margin-top: 88px;
}
@media screen and (min-width: 768px) {
  .swiper .swiper {
    width: 100%;
  }
}
.swiper .swiper-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .swiper .swiper-wrapper {
    width: 100%;
  }
}
.swiper .swiper-slide {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .swiper .swiper-slide {
    width: 100%;
  }
}

.swiper-button-next,
.swiper-button-prev {
  color: #020202 !important;
  position: absolute;
  top: 20% !important;
  z-index: 1000;
  width: 44px; /* ボタンの幅 */
  height: 44px; /* ボタンの高さ */
}

@media screen and (min-width: 768px) {
  .swiper-button-next {
    right: -64px; /* アローをもっと右に広げる */
  }
  .swiper-button-prev {
    left: -64px; /* アローをもっと左に広げる */
  }
}
/* ページネーション */
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -64px !important;
}

.character__contents_container {
  margin: 0 auto;
  width: 100%; /* Swiperに合わせて100%幅に変更 */
}
@media screen and (min-width: 768px) {
  .character__contents_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 64px;
    max-width: 904px;
  }
}

.character__img-container {
  width: auto;
}
@media screen and (min-width: 768px) {
  .character__img-container {
    width: 400px;
    height: auto;
  }
}

.character__img-sp {
  width: auto;
  height: 500px;
}
@media screen and (min-width: 768px) {
  .character__img-sp {
    display: none;
  }
}

.character__img-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .character__img-pc {
    display: block;
  }
}

.character__text-container {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .character__text-container {
    width: 440px;
    margin-top: 43px;
  }
}

.character__name-kana {
  display: block;
  font-size: 10px;
}

.character__name-kanji {
  display: block;
  color: #020202;
  text-align: center;
  font-family: "Noto serif jp", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.character__name-voice {
  display: block;
  color: #020202;
  text-align: center;
  font-size: 16px;
}

.character__spec-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  margin: 0 auto;
  margin-top: 32px;
}

.character__spec-text--left {
  text-align: right;
}

.character__spec-text--right {
  text-align: left;
}

.voice-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-top: 32px;
}

.btn {
  margin: 0 auto;
  padding: 8px 12px;
  width: 80%;
  background-color: #020202;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  text-align: center;
  font-size: 12px;
}

.btn:hover {
  opacity: 0.7;
}

.playing {
  background-color: #020202;
}

.character__detail-text {
  color: #020202;
  font-family: "Noto serif jp", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 2; /* 200% */
  text-align: left;
  margin-top: 32px;
}

.music {
  background-image: url("../img/img-sp/music-background-img-sp.png");
  background-size: cover;
  background-position: center top; /* 背景画像の位置調整 */
  background-repeat: no-repeat; /* 繰り返しを防ぐ */
}

@media screen and (min-width: 768px) {
  .music {
    background-image: url("../img/img-pc/music-gackground-img-pc.png");
  }
}
.music__section-inner {
  padding-top: 180px;
  padding-bottom: 180px;
  padding-right: 16px;
  padding-left: 16px;
  text-align: center;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .music__section-inner {
    max-width: 720px;
  }
}
.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9のアスペクト比 */
  height: 0; /* iframeの高さをアスペクト比で確保 */
  margin-top: 88px;
  overflow: hidden; /* コンテナ内に収める */
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0; /* 余計な境界線を防ぐ */
}

.music__button-container-upper {
  margin-top: 32px;
}

@media screen and (min-width: 768px) {
  .music__button-container-upper {
    margin-top: 88px;
  }
}
.music__button-container-lower {
  margin-top: 16px;
}

@media screen and (min-width: 768px) {
  .music__button-container-lower {
    margin-top: 32px;
  }
}
.music__button-pink {
  display: inline-block;
  font-size: 24px;
  width: 275px;
  height: 66px;
  padding: 14px 46px;
  border-radius: 32px;
  color: #FDFDFD;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Noto serif jp", sans-serif;
  background-color: #F1C6EF;
  border: 2px solid #F1C6EF;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.music__button-pink:hover {
  background-color: #FDFDFD;
  color: #F1C6EF;
  border: 2px solid #F1C6EF;
}

.music__button-blue {
  display: inline-block;
  font-size: 24px;
  width: 275px;
  height: 66px;
  padding: 14px 46px;
  border-radius: 32px;
  color: #FDFDFD;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Noto serif jp", sans-serif;
  background-color: #94BCEB;
  border: 2px solid #94BCEB;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.music__button-blue:hover {
  background-color: #FDFDFD;
  color: #94BCEB;
  border: 2px solid #94BCEB;
}

.opSinger {
  background-color: #fdfdfd;
  text-align: center;
  padding-top: 88px;
  padding-bottom: 88px;
}

.opSinger__title {
  font-size: 32px;
}

@media screen and (min-width: 768px) {
  .opSinger__title {
    font-size: 40px;
  }
}
.opSinger__imgs-container {
  margin-top: 48px;
}

.opSinger__contents-container {
  max-width: 343px;
  padding-top: 88px;
  padding-right: 16px;
  padding-left: 16px;
  padding-bottom: 88px;
  margin: 0 auto;
  border-radius: 24px;
  background-color: #fdfdfd;
  -webkit-box-shadow: 0 2px 6px 0 hsla(0, 0%, 0%, 0.2);
          box-shadow: 0 2px 6px 0 hsla(0, 0%, 0%, 0.2);
}

@media screen and (min-width: 768px) {
  .opSinger__contents-container {
    max-width: 1040px;
    padding-top: 88px;
    padding-right: 16px;
    padding-left: 16px;
    padding-bottom: 88px;
    margin: 0 auto;
    border-radius: 24px;
  }
}
.opSinger__img-container {
  width: 300px;
  margin: 0 auto;
  margin-top: 32px;
}

@media screen and (min-width: 768px) {
  .opSinger__img-container {
    width: 900px;
    margin: 0 auto;
    margin-top: 32px;
  }
}
.message {
  background-color: #EAFBFD;
}

.message__section-inner {
  padding-top: 180px;
  padding-bottom: 180px;
  padding-right: 16px;
  padding-left: 16px;
  text-align: center;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .message__section-inner {
    max-width: 720px;
  }
}
.message__contents-container {
  margin-top: 88px;
}

.message__text-container {
  text-align: left;
}
.message__text-container + .message__text-container {
  margin-top: 88px;
}

.message__from {
  color: #020202;
  font-family: "Noto serif jp", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.28px;
}

.message__text {
  color: #020202;
  font-family: "Noto serif jp", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 3; /* 300% */
  letter-spacing: 1.28px;
  margin-top: 32px;
}

.staff__section-inner {
  padding-top: 180px;
  padding-bottom: 180px;
  padding-right: 16px;
  padding-left: 16px;
  text-align: center;
  margin: 0 auto;
}

.staff__contents-container {
  margin-top: 88px;
}

.staff__text-groupe + .staff__text-groupe {
  margin-top: 48px;
}

.staff__role {
  color: #020202;
  font-family: "Noto serif jp", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.96px;
}

.staff__name {
  color: #020202;
  text-align: center;
  font-family: "Noto serif jp", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.92px;
  margin-top: 16px;
}

.staff__name a {
  display: inline-block;
  color: #94BCEB; /* 通常時のテキスト色 */
  font-size: 120%; /* 必要に応じて調整 */
  text-decoration: none; /* 下線を削除 */
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #fdfdfd), color-stop(50%, #94BCEB));
  background-image: linear-gradient(to right, #fdfdfd 50%, #94BCEB 50%);
  background-position: 0 0;
  background-size: 200% auto;
  -webkit-transition: background-position 0.3s, color 0.3s;
  transition: background-position 0.3s, color 0.3s;
}

.staff__name a:hover {
  background-position: -100% 0;
  color: #fdfdfd; /* ホバー時のテキスト色 */
}

.supporters__section-inner {
  padding-top: 180px;
  padding-bottom: 180px;
  padding-right: 16px;
  padding-left: 16px;
  text-align: center;
  margin: 0 auto;
  background-color: #EAFBFD;
}

.supporters__contents-container {
  margin-top: 88px;
}

.supporters__text-groupe + .supporters__text-groupe {
  margin-top: 88px;
}

.supporters__role {
  color: #020202;
  font-family: "Noto serif jp", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.96px;
}

@media screen and (min-width: 768px) {
  .supporters__role {
    font-size: 16px;
  }
}
.supporters__name-groupe {
  margin-top: 32px;
}

.supporters__name {
  color: #020202;
  text-align: center;
  font-family: "Noto serif jp", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.92px;
  margin-top: 16px;
}

@media screen and (min-width: 768px) {
  .supporters__name {
    font-size: 16px;
    margin-top: 8px;
  }
}
.support__text_last {
  margin-top: 80px;
}

.supporters__button {
  display: inline-block;
  margin-top: 88px;
  font-size: 24px;
  width: 275px;
  height: 66px;
  padding: 16px 48px;
  border-radius: 32px;
  color: #FDFDFD;
  font-family: "Noto serif jp", sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid #ED762F;
  background-color: #ED762F;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.supporters__button:hover {
  border: 2px solid #ED762F;
  color: #ED762F;
  background-color: #FDFDFD;
}

footer {
  background-color: #020202;
  color: #fdfdfd;
}

.footer__inner {
  padding-top: 80px;
  padding-bottom: 80px;
  padding-right: 16px;
  padding-left: 16px;
  text-align: center;
  margin: 0 auto;
}

.footer__img-container {
  width: 183px;
  height: auto;
  margin: 0 auto;
}

.footer__text-container {
  margin-top: 32px;
}

.footer__logo {
  display: block;
  width: 183px; /* 元の画像サイズに合わせる */
  height: auto; /* アスペクト比を維持 */
  -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; /* アニメーションを追加 */
}

.footer__logo:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95); /* 1.1倍に拡大 */
}