@charset "utf-8";
/* CSS Document */
body {
  background-color: #232323;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}
h2, .characterName {
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  color: #EBD390;
  font-size: 30px;
  text-align: center;
  padding-bottom: 4rem;
}
h3 {
  font-size: 30px;
  color: #EBD390;
  margin: 1% 17%;
}
a {
  color: #fff;
}
/* ローディング全体カバー */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #232323;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease, visibility 1s ease;
  pointer-events: all;
}
/* フェードアウト時 */
#loader.fadeout {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
/* スクロール防止用（ローディング中に付与） */
body.noScroll {
  overflow: hidden;
}
#load {
  position: relative;
  width: 700px;
  height: 36px;
  overflow: visible;
  user-select: none;
  cursor: default;
}
#load div {
  position: absolute;
  width: 30px;
  height: 46px;
  opacity: 0;
  font-family: Helvetica, Arial, sans-serif;
  animation: move 2s linear infinite;
  transform: rotate(180deg);
  color: #35C4F0;
}
/* 各文字の遅延タイミング */
#load div:nth-child(2) {
  animation-delay: 0.2s;
}
#load div:nth-child(3) {
  animation-delay: 0.4s;
}
#load div:nth-child(4) {
  animation-delay: 0.6s;
}
#load div:nth-child(5) {
  animation-delay: 0.8s;
}
#load div:nth-child(6) {
  animation-delay: 1s;
}
#load div:nth-child(7) {
  animation-delay: 1.2s;
}
@keyframes move {
  0% {
    left: 0;
    opacity: 0;
  }
  35% {
    left: 41%;
    transform: rotate(0deg);
    opacity: 1;
  }
  65% {
    left: 59%;
    transform: rotate(0deg);
    opacity: 1;
  }
  100% {
    left: 100%;
    transform: rotate(-180deg);
    opacity: 0;
  }
}
@keyframes glow {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6), 0 0 20px rgba(255, 255, 255, 0.4);
  }
  50% {
    opacity: 0.5;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.9), 0 0 30px rgba(255, 255, 255, 0.6);
  }
}
#stkr {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10;
  transition: 0.2s ease-out;
  transform-origin: center center;
  animation: glow 2s infinite ease-in-out;
}
#stkr.hoverActive {
  background: rgba(57, 57, 93, 0.5);
  box-shadow: 0 0 25px rgba(57, 57, 93, 0.9), 0 0 40px rgba(57, 57, 93, 0.6);
}
.sectionTitle::before, .sectionTitle::after {
  content: "";
  width: 5px;
  height: 40px;
}
.sectionTitle::before {
  content: url("../images/common/headingImg.png");
  padding-right: 15px;
}
.sectionTitle::after {
  content: url("../images/common/headingImg.png");
  padding-left: 15px;
}
.storyDetails {
  color: #fff;
}
.fadeUpTrigger {
  opacity: 0;
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 1;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
header {
  display: flex;
  position: fixed;
  top: 0;
  z-index: 3;
  width: 100%;
  align-items: center; /* 上下中央揃え */
  gap: 43rem;
  padding: 30px 40px; /* 端に余白を入れる */
  margin: 0 auto;
  background: linear-gradient(rgba(35, 35, 35, 1), rgba(35, 35, 35, 0.1));
}
/* ロゴ画像に高さを合わせるため、h1にも指定 */
header h1 {
  margin: 0;
  padding: 0;
  line-height: 1;
}
/* ロゴ画像の高さ調整 */
header h1 img {
  height: 35px;
  width: auto;
  display: block;
}
/* メニューリスト全体のスタイル */
.menuNav {
  display: flex;
  gap: 40px; /* メニュー間の間隔 */
  list-style: none;
  margin: 0;
  padding: 0 40px;
}
/* リストアイテムのマージン不要に */
.menuNav li {
  margin: 0;
}
/* メニューリンクのスタイル */
.menuNav li a {
  display: block;
  padding: 10px 0;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
}
.menuNav li a:hover {
  color: #C8B581;
  transition: all 0.5s ease;
}
/* ハンバーガーボタンの基本非表示 */
.menuToggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 4; /* メニューより上に */
}
.menuToggle span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.heroSection {
  background: url("../images/topImg.jpg") top center/cover no-repeat;
  width: auto;
  height: 162vh;
}
.heroText {
  position: absolute;
  z-index: 2;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.releaseDate {
  color: #EBD390;
  font-size: 100px;
  text-align: center;
  line-height: 0.9;
}
.releaseDate span {
  display: block;
}
.releaseCaption {
  color: #fff;
  font-size: 30px;
  text-align: center;
  margin: 3%;
  text-shadow: 0 0 10px #fff, 0 0 15px #fff;
  padding: 20px;
  letter-spacing: 0.2em;
}
.storeButtons {
  display: flex;
  gap: 12px; /* ボタン間のスペース */
  flex-wrap: wrap; /* 小さい画面で折り返し可能に */
  align-items: center;
  max-width: 412px;
  position: absolute;
  left: 16%;
}
.storeButtons img {
  max-width: 100%;
  width: 200px;
  height: auto;
  display: block;
}
html, body {
  height: 100%; /*高さを100%にして描画エリアをとる*/
}
#particles-js {
  position: fixed; /*描画固定*/
  z-index: -1; /*描画を一番下に*/
  top: 50%;
  width: 100%;
  height: 100%;
}
#wrapper {
  position: relative; /*描画を#particles-jsよりも上にするためposition:relative;を指定*/
  z-index: 1; /*z-indexの数字を大きくすることで描画を#particles-jsよりも上に*/
  top: 4%;
  width: 100%;
  height: 100%;
}
/*動画表示のモーダルの余白を変更したい場合*/
.modaal-video .modaal-inner-wrapper {
  padding: 0;
}
/*モーダルのボタンの色を変更したい場合*/
.modaal-close:after, .modaal-close:before {
  background: #ccc;
}
.modaal-close:focus:after, .modaal-close:focus:before, .modaal-close:hover:after, .modaal-close:hover:before {
  background: #666;
}
.movieThumbnail img {
  width: 60%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}
.wrapNewsMenu {
  border: 3px solid #EBD390;
  padding: 0.1vw;
}
.wrapNewsMenu img {
  transform: scale(1);
  transition: .3s ease-in-out; /*移り変わる速さを変更したい場合はこの数値を変更*/
}
.wrapNewsMenu:hover img {
  transform: scale(1.01);
}
.innerBorder {
  border: 2px solid #C8B581;
}
.mask {
  display: block;
  line-height: 0; /*行の高さを0にする*/
  overflow: hidden; /*拡大してはみ出る要素を隠す*/
}
.newsText {
  color: #fff;
  padding: 12px 8px 0;
  font-family: serif;
}
.category {
  font-size: 14px;
  color: #EBD390;
  margin-bottom: 6px;
  position: relative;
  padding-left: 20px;
}
.category::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: #EBD390;
}
.title {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 8px;
}
.date {
  font-size: 14px;
  color: #EBD390;
}
.newsSection {
  position: relative;
  top: 65%;
}
.storySection {
  position: relative;
  top: 85%;
}
.storyTitle, .storyDetails {
  text-align: center;
  line-height: 3.2;
}
.storyTitle {
  color: #EBD390;
  font-size: 30px;
  margin-bottom: 2%;
}
.storyDetails {
  margin-bottom: 3%;
}
.changeFont {
  color: #EBD390;
}
/* キャラクターセクション位置 */
.characterSection {
  position: relative;
  top: 100%;
}
/* スライダー基本幅 */
.characterSlider {
  width: 90%;
  margin: 0 auto;
  padding: 40px 0;
}
/* スライド内画像 */
.characterSlider img {
  width: 40vw;
  height: auto;
  display: block;
  margin: 0 auto;
}
/* スライドのスケール＆透過アニメーション */
.characterSlider .slick-slide {
  transform: scale(0.7);
  transition: all 0.5s;
  opacity: 0.5;
}
.characterSlider .slick-center {
  transform: scale(1);
  opacity: 1;
}
/* 各キャラアイテム */
.characterItem {
  text-align: center;
}
.characterLink {
  display: block;
  text-decoration: none;
  color: inherit;
}
/* キャラクター枠囲み */
.wrapCharacterItem {
  display: block;
  text-decoration: none;
  color: inherit;
}
.chInnerBorder {
  border: 5px solid #EBD390;
  padding: 1.1vh;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.mask {
  display: block;
  position: relative;
}
.mask img {
  width: 100%;
  height: auto;
  display: block;
}
/* キャラ名中央配置 */
.characterName, .characterNameJp, .characterLines, .characterCv {
  position: absolute;
  text-shadow: 0 3px 5px rgba(35, 35, 35, 0.7);
  pointer-events: none;
}
.characterLines {
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #EBD390;
  font-size: 1.8rem;
  width: 100%;
  text-align: center;
}
.characterName {
  width: 100%;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #EBD390;
  font-size: 2.8rem;
}
.characterName::before, .characterName::after {
  content: "";
  width: 3px;
  height: 10px;
}
.characterName::before {
  content: url("../images/common/headingImg.png");
  padding-right: 15px;
}
.characterName::after {
  content: url("../images/common/headingImg.png");
  padding-left: 15px;
}
.characterNameJp {
  top: 71%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
.characterCv {
  top: 74%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #EBD390;
}
.systemSection {
  margin-top: 70%;
  margin-bottom: 10%;
}
.sectionTitle {
  text-align: center;
  font-size: 2.9rem;
  color: #d6b87b;
}
/* 共通レイアウト */
.systemBlock {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 60px;
}
.textArea, .videoArea {
  flex: 1;
  padding: 20px;
  text-align: center;
}
.textArea h3 {
  margin-bottom: 20px;
}
.textArea p {
  font-size: 1rem;
  line-height: 2;
  color: #fff;
}
.textArea h3 span, .textArea p span {
  display: block;
}
.videoArea video {
  max-width: 80%;
  height: auto;
  border-radius: 10px;
}
/* 3つ目センター配置 */
.systemBlock.center {
  flex-direction: column;
  text-align: center
}
.systemBlock.center .textArea, .systemBlock.center .videoArea {
  max-width: 1000px;
  margin: 0 auto;
}
.videoWrapper {
  position: relative;
  display: inline-block;
}
.videoLabel {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 5px 10px;
  font-size: 0.85em;
  border-radius: 4px;
  pointer-events: none;
}
.campaignBanner {
  display: block;
  width: 50%;
  margin: 0 auto;
  margin-bottom: 7%;
}
.requirementsTable {
  color: #fff;
}
table {
  margin: 0 auto;
}
table, td, th {
  border: 1px solid #EBD390;
  border-collapse: collapse;
  text-align: center;
}
td, th {
  padding: 3px;
  width: 400px;
  height: 50px;
}
th {
  background: #f0e6cc;
}
td {
  padding: 15px 0;
}
.even {
  background: #fbf8f0;
}
.odd {
  background: #fefcf9;
}
.requirementsArea {
  position: relative;
  left: 38%;
  margin-top: 4%;
  margin-bottom: 3%;
}
.requirementsSection p {
  display: block;
  color: #fff;
  margin: 1% 17%;
}
footer {
  position: absolute;
  z-index: 6;
  width: 100%;
  height: auto;
  margin: 5% 0;
  background-color: #39395D;
}
/*アイコンのサイズを調整*/
.socialIcons .icon-x img {
  width: 30px;
  height: auto;
}
.socialIcons .icon-instagram img {
  width: 30px;
  height: auto;
}
.socialIcons {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 3%;
}
.companyLogo img {
  display: block;
  width: 150px;
}
.footerLinks {
  display: flex;
  justify-content: left;
  gap: 33px;
  margin: 17px;
}
footer p {
  color: #fff;
  margin: 17px;
}
/*==================================================
スライダーのためのcss
===================================*/
.slider { /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 94%;
  margin: 0 auto;
}
.slider img {
  width: 100%; /*スライダー内の画像を横幅100%に*/
  height: auto;
}
/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slider .slick-slide {
  margin: 0 10px;
}
/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev, .slick-next {
  position: absolute; /*絶対配置にする*/
  top: 42%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #EBD390; /*矢印の色*/
  border-right: 2px solid #EBD390; /*矢印の色*/
  height: 20px;
  width: 20px;
}
.slick-prev { /*戻る矢印の位置と形状*/
  left: -1.5%;
  transform: rotate(-135deg);
}
.slick-next { /*次へ矢印の位置と形状*/
  right: -1.5%;
  transform: rotate(45deg);
}
/*ドットナビゲーションの設定*/
.slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}
.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px; /*ドットボタンのサイズ*/
  height: 8px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ccc; /*ドットボタンの色*/
}
.slick-dots .slick-active button {
  background: #EBD390; /*ドットボタンの現在地表示の色*/
}
/*==================================================
  下層ページ共通のcss
===================================*/
.lowerHeroSection {
  width: auto;
  height: 90vh;
}
.lowerHeroSection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(35, 35, 35, 0.7);
  z-index: 0;
}
.lowerHeroText {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/*==================================================
ニュースページのためのcss
===================================*/
#newsList, #newsDetail {
  text-align: left;
  margin: 0 30%;
  position: relative;
  bottom: 30%;
}
#newsList li {
  margin: 3%;
}
#newsDetail .body {
  color: #fff;
}
/* ライトのように光るスタイル */
#newsList .metaRow {
  padding: 1% 0;
  padding-left: 10px;
  transition: .15s ease;
  font-size: 20px;
}
#newsList .metaRow:hover {
  background-color: rgb(255, 255, 255);
  background-color: #fae8c3;
  box-shadow: 0 0 20px -6px rgba(250, 232, 195, 1);
}
#newsList .metaRow:hover .date, #newsList .metaRow:hover .category, #newsList .metaRow:hover .title {
  color: #232323; /* ホバー時に黒文字へ */
}
#newsDetail h2 {
  text-align: left;
  margin-top: 4%;
}
.body {
  line-height: 2.0;
}
.body img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1em;
  border-radius: 8px;
}
.youtubeContainer {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  margin-top: 1em;
  border-radius: 8px;
}
.youtubeContainer iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*==================================================
  キャラクター紹介ページのためのcss
===================================*/
.lowerCharacter {
  background: url("../images/characterImg.jpg") top center/cover no-repeat;
}
.blank {
  margin: 20px 0;
}
.lowercharacterSection {
  position: relative;
  top: 15%;
  padding: 60px 20px;
  color: #e6e6e6;
}
.characterDetailList {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}
.lowerMask {
  border: 2px solid #EBD390;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.lowerMask img {
  width: 50%;
  height: auto;
  display: block;
}
.rightCharacter {
  display: flex;
  flex-direction: row-reverse; /* ← これで画像が右に */
  align-items: flex-start;
  position: relative;
}
.characterText {
  display: flex;
  flex-direction: row-reverse; /* ← これで画像が右に */
}
.lowerRSCharacterLines {
  top: 30%;
  left: 30%;
  transform: translate(-50%, -30%);
  width: 100%;
}
.lowerRSCharacterName {
  width: 100%;
  top: 40%;
  left: 12%;
  transform: translate(-50%, -10%);
}
.lowerRSCharacterNameJp {
  top: 50%;
  left: 25%;
  transform: translate(-25%, -50%);
}
.lowerRSCharacterCv {
  top: 56%;
  left: 25%;
  transform: translate(-25%, -50%);
}
.lowerLSCharacterLines {
  top: 40%;
  left: 44%;
  transform: translate(-25%, -50%);
}
.lowerLSCharacterName {
  width: 100%;
  top: 50%;
  transform: translate(-50%, -10%);
}
.lowerLSCharacterNameJp {
  top: 60%;
  left: 66%;
  transform: translate(-50%, -50%);
}
.lowerLSCharacterCv {
  top: 65%;
  left: 67%;
  display: block;
  transform: translate(-50%, -65%);
}
.btn {
  position: absolute;
  top: 62%;
  left: 21%;
}
.rightBtn {
  top: 70%;
  left: 60%;
}
.btn img {
  width: 100%;
  margin: 0 auto;
}
.chtextArea {
  width: 47%;
  position: absolute;
  top: 72%;
  left: 4%;
  text-align: left;
  line-height: 1.8;
  color: #fff;
}
.lfText {
  top: 80%;
  left: 47%;
}
/* 初期状態：透明 */
.fadeLeftTrigger, .fadeRightTrigger {
  opacity: 0;
  transition: opacity 0.3s ease;
}
/* 左からフェードイン */
.fadeLeftTrigger.fadeLeft {
  animation: fadeLeftAnime 1.5s ease-out forwards;
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右からフェードイン */
.fadeRightTrigger.fadeRight {
  animation: fadeRightAnime 1.5s ease-out forwards;
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*==================================================
 ストーリーページのためのcss
===================================*/
.lowerStory {
  background: url("../images/storyImg.jpg") top center/cover no-repeat;
  height: 90vh;
}
/* 共通セクション設定 */
.lowerStorySection {
  position: relative;
  top: 10%;
  height: 160vh;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: left;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* パララックス風 */
  padding: 2em;
}
.lowerStorySection::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* テキスト読みやすく */
  z-index: 1;
}
.storyText {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding-left: 10%;
}
.storyText h2, .storyText p {
  text-align: left;
}
.storyText h2 {
  padding-bottom: 1.5rem;
}
.TextTyping span {
  display: none;
}
@keyframes typinganime {
  from {
    opacity: 0
  }
  to {
    opacity: 1
  }
}
.storyText p {
  font-size: 16px;
  line-height: 2;
}
/* セクションごとの背景画像 */
.story01 {
  background-image: url('../images/story/story1.jpg'); /* 差し替え推奨 */
}
.story02 {
  background-image: url('../images/story/story2.jpg');
}
.story03 {
  background-image: url('../images/story/story3.jpg');
}
.story04 {
  background-image: url('../images/story/story4.jpg');
}
/*==================================================
 クレジットページのためのcss
===================================*/
.lowerCredit {
  background: url("../images/creditImg.jpg") top center/cover no-repeat;
  height: 90vh;
}
.creditBox {
  position: relative;
  margin-top: 5%;
  margin-bottom: 3%;
}
.creditBox h3 {
  margin: 2% 5%;
}
.creditBox p {
  color: #fff;
  margin-left: 7%;
  margin-top: 2%;
}
/* レスポンシブ用 */
@media (max-width: 768px) {
  /* bodyとhtmlに高さ100% */
  html, body {
    height: 100%;
    margin: 0;
  }
  body {
    max-width: 375px;
    width: 100%;
    margin: 0 auto;
  }
  #stkr {
    display: none;
  }
  h3 {
    font-size: 1.4rem;
    margin: 3% 0%;
  }
  .sectionTitle {
    font-size: 2.0rem;
  }
  .sectionTitle::before {
    padding-right: 0;
    width: 100%;
    display: inline-block;
  }
  .sectionTitle::after {
    padding-left: 0;
    width: 100%;
    display: inline-block;
  }
  .menuToggle {
    display: flex;
    margin-left: auto;
  }
  .menuNav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: rgba(35, 35, 35, 0.95);
    text-align: center;
    padding: 20px 0;
    animation: fadeIn 0.5s ease forwards;
  }
  .menuNav.show {
    display: flex;
  }
  .menuNav li a {
    padding: 15px 0;
    font-size: 18px;
  }
  /* ヘッダー調整 */
  header {
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
    padding: 20px;
  }
  header h1 {
    flex-shrink: 0;
  }
  header h1 img {
    height: auto;
    width: 210px;
    display: block;
  }
  .heroText {
    width: 100%;
    top: 60%;
  }
  .releaseDate {
    font-size: 3rem;
    line-height: 1.1;
  }
  .releaseDate span {
    display: block;
  }
  .releaseCaption {
    font-size: 1.1rem;
    margin: 3%;
    padding: 20px;
    letter-spacing: 0.2em;
  }
  .storeButtons {
    top: 135%;
    left: 51%;
    transform: translate(-50%, -50%);
    flex-wrap: nowrap;
  }
  .requirementsSection .storeButtons {
    position: relative;
    bottom:17rem;
    left: 50%;
    transform: translate(-50%, -0%);
    padding: 5% 10%;
  }
  .storeButtons img {
    width: 150px;
    margin: 15% 0;
  }
  #wrapper {
    position: relative;
    z-index: 1;
    /* top は JS で設定するのでここでは書かない */
    width: 100%;
    min-height: 100vh; /* ビューポート全体の高さ */
  }
  .movieThumbnail img {
    width: 90%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .newsSection {
    top: 35%;
  }
  .storySection {
    top: 70%
  }
  .storyTitle, .storyDetails {
    line-height: 2;
  }
  .storyTitle {
    font-size: 1.3rem;
    margin-bottom: 10%;
  }
  .storyTitle span {
    display: block;
  }
  .storyDetails {
    width: 85%;
    margin: 0 auto;
    line-height: 3;
  }
  .changeFont {
    display: inline !important;
  }
  .storyDetails p {
    font-size: 13px;
  }
  .storyDetails span {
    display: block;
  }
  .chInnerBorder {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .chInnerBorder img {
    width: 100%;
    height: auto;
    display: block;
  }
  /* スライダーの左右余白を調整 */
  .characterSlider {
    padding: 0 10px !important;
  }
  /* スライドの中身（リンク）を縦方向に調整 */
  .wrapCharacterItem {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  /* 枠の調整 */
  .chInnerBorder {
    padding: 8px;
  }
  /* 画像をスマホサイズに調整 */
  .chInnerBorder img {
    width: 100%;
  }
  .characterLines {
    top: 57%;
    font-size: 0.6rem;
  }
  .characterLines span {
    display: block;
    padding: 5%;
  }
  .characterName {
    display: inline-block;
    text-align: center;
    width: 100%;
    top: 70%;
    font-size: 1.3rem;
    padding: 5% 0;
  }
  .characterName::before, .characterName::after {
    content: "";
    display: block; /* ← これで上下に配置される */
    height: 10px;
    width: auto;
    margin: 0 auto;
  }
  .characterName::before {
    content: url("../images/common/headingImg.png");
    margin-bottom: 18px;
    padding-right: 0px;
  }
  .characterName::after {
    content: url("../images/common/headingImg.png");
    margin-top: 18px;
    padding-left: 0px;
  }
  .characterNameJp {
    font-size: 0.7rem;
    top: 85%;
  }
  .characterCv {
    display: none;
  }
  .characterDetailList .characterCv {
    display: block;
    color: red;
    font-size: 50px;
  }
  .systemSection {
    margin-top: 50%;
    margin-bottom: 100%;
    position: relative;
    top: 100%;
  }
  .systemBlock {
    flex-direction: column; /* 通常：テキスト上 → ビデオ下 */
  }
  .systemBlock.reverse {
    flex-direction: column-reverse; /* 逆順：ビデオ上 → テキスト下（これを防ぐ） */
  }
  .textArea p {
    font-size: 0.8rem;
  }
  .videoArea video {
    max-width: 100%;
  }
  .campaignSection {
    position: relative;
    top: 77%;
    margin-top: 50%;
    margin-bottom: 58%;
  }
  .campaignBanner {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 7%;
  }
  .requirementsSection {
    position: relative;
    top: 77%;
    margin-bottom: 100%;
  }
  .requirementsTable {
    padding: 0 5%;
    height: 100vh;
  }
  td, th {
    vertical-align: middle;
  }
  td {
    font-size: 13px;
  }
  .requirementsSection p {
    margin: 2% 5%;
    font-size: 0.7rem;
    line-height: 1.5;
    position: relative;
    bottom: 275px;
  }
  .footerLinks {
    display: block;
  }
  .footerLinks a {
    display: block;
    font-size: 0.9rem;
    margin: 5% 0%
  }
  footer p {
    font-size: 0.7rem;
  }
  /*==================================================
ニュースページのためのcss
===================================*/
  #newsList, #newsDetail {
    text-align: left;
    margin: 0 10%;
    position: relative;
    bottom: 30%;
  }
  #newsDetail h2 {
    font-size: 1.8rem;
  }
  .body {
    font-size: 13px;
  }
  .title {
    display: block;
  }
  .youtubeContainer {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    margin-top: 1em;
    border-radius: 8px;
  }
  .youtubeContainer iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
    
 /*==================================================
 キャラクターページのためのcss
===================================*/    
    
.lowercharacterSection {
    margin-bottom: 60%;
}
  /*==================================================
 クレジットページのためのcss
===================================*/
  .creditBox {
    width: 100%;
    padding: 5%;
    font-size: 13px;
  }
  .creditBox p:first-child {
    margin-bottom: 6%;
  }
  .creditBox span {
    display: block;
  }
  .creditBox h3 {
    text-align: 1.8rem;
    margin: 2% 5%;
  }
  .creditBox p {
    line-height: 2.1;
    margin-left: 7%;
    margin-top: 2%;
  }
}
/* フェードアニメーション */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}