@charset "UTF-8";
/* CSS Document */
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 960px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
@charset "UTF-8";

/* =========================================
   共通変数 (追加機能用)
========================================= */
:root {
    --momo-pink: #ff80ab;
    --momo-dark: #ff4081;
}

/* =========================================
   Base & Reset (元のスタイルを優先)
========================================= */
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}

/* パララックス・スクロール制御のため html に height: 100% を追加 */
html {
  height: auto !important;
  overflow: visible !important; /* body側のスクロールを復活 */
}

body {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05rem;
  width: 100%;
  height: auto; /* 追加: パララックスに必要 */
  /* 元の背景画像を最優先 */
  /* background-color: #fce4ec; (モモ側の背景色は元の画像を優先するため無効化) */
  overflow-x: hidden;
  /* body側でスクロールが出ないように隠す */
  overflow: visible !important; /* body側のスクロールを復活 */
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
.mainSite {
  position: relative;
  z-index: 10;
  width: 100%;
}
.wrapper {
  position: relative;
  text-align: center;
}
.inner{
    width: 70%;
    margin: 0 auto;
    padding: 2% 0 0 0;
}

/*--------------------
LOADING
---------------------*/
.loading_wrap {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-image: url("../img/back.jpg");
}
.logo {
  width: 25%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 15px 30px;
  text-align: center;
  z-index: 1000;
  opacity: 0;
}

/*--------------------
ANIMATION
---------------------*/
.js-animation {
  opacity: 0;
  visibility: hidden;
  transition: all 2s;
}
.js-animation.is-show {
  opacity: 1;
  visibility: visible;
  transition: all 2s;
}
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 4s;
  animation-iteration-count: none;
  animation-timing-function: ease;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes fadeInAnime {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.fadeOut {
  animation-name: fadeOutAnime;
  animation-duration: 2s;
  animation-iteration-count: none;
  animation-timing-function: ease;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes fadeOutAnime {
  0% { opacity: 1; }
  100% { opacity: 0; display: none; }
}
.scaleIn {
  animation-name: scaleInAnime;
  animation-duration: 2s;
  animation-iteration-count: none;
  animation-timing-function: ease;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes scaleInAnime {
  0% { transform: scale(1.2); filter: blur(10px); }
  100% { transform: scale(1); filter: blur(0); }
}
.blurS {
  animation-name: blurS;
  animation-duration: 3s;
  animation-iteration-count: none;
  animation-timing-function: ease;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes blurS {
  0%   { filter: blur(10px); opacity: 0; }
  100% { filter: blur(0); opacity: 1; }
}

/*--------------------
TOP
---------------------*/
section.top{
  width: 100%;
  position: relative;	
}
.top .inner{
  width: 100%;
  height: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
}
.top_main {
  z-index: 4;
}
.title{
  width: 80%;
  position: absolute;
  top: 25%;
  left: 45%;
  transform: translate(-50%, -50%);
  z-index: 5;
  opacity: 0;
}
.date{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  opacity: 0;
}
.date.pc{
  width: 75%;
  margin: 10% auto 0;
}
.copyright{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
}
.copyright2{
  width: 100%;
  position: absolute;
  top: 45%;
  left: 53%;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
}
.catch{
  width: 70%;
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  opacity: 0;
}

ul.sns_list{
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 5%;
  right: 3%;
  z-index: 500;
  opacity: 0;
}
li.sns_item:first-child{
  margin: 0 20px 0 0;
}
li.sns_item a{
  display: flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  transition: .7s;
}
li.sns_item a:hover{
  transition: .7s;
}
li.sns_item a img{
  width: 60%;
  margin: 0 auto;
}
.responsive {
  margin: 0 auto 5%;
  width: 560px;
  height: 360px;
}
/* =========================================
   TOPセクション内のPC用SNSリンク (.nav-left)
========================================= */
.nav-left {
    display: none; /* 基本は非表示 */
}

/* PC（961px以上）の時のスタイル */
@media only screen and (min-width: 961px) {
    .nav-left.pc {
        display: flex; /* 横並び */
        flex-direction: column; /* 縦に並べる */
        gap: 15px; /* アイコン同士のすき間 */
        
        position: absolute;
        top: 60%; /* セクションの中央 */
        left: 19%; /* 左端から50pxの位置に固定 */
        transform: translateY(-50%); /* 垂直中央揃え */
        z-index: 10;
        
        opacity: 0; /* 最初は透明 */
        width: auto; /* 幅を自動に */
    }

    /* 画像サイズの調整 */
    .nav-left.pc img {
        width: 45px; /* PCでのアイコンサイズ */
        height: auto;
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8)); /* 白い光彩 */
        transition: transform 0.3s ease;
    }
    
    .nav-left.pc img:hover {
        transform: scale(1.1); /* ホバーで少し大きく */
    }

    /* ▼フワッと出るのと、ゆらゆら動くのを同時に適用する▼ */
    .nav-left.pc.fadeIn {
        animation: fadeInAnime 4s forwards, floating 0s ease-in-out infinite;
        /* fadeInAnimeは既存、floatingは今回追加、両方を指定 */
    }
}
/*--------------------
NEWS
---------------------*/
.kisaragi_hp_bnr{
  width: 45%;
  margin: 0 auto;
}
.kisaragi_hp_bnr a{
  display: block;
  transition: .7s;
  border: 1px solid #fff;
}
.kisaragi_hp_bnr a:hover{
  opacity: .7;
  transition: .7s;
}

h1.midashi_title{
  color: #FC0000;
  text-align: center;
  font-size: 3rem;
  margin: 3% auto 3%;
  line-height: 1;
  letter-spacing: 0.5rem;
}

.news .inner{
  width: 50%;
}
.news_wrap{
  width: 100%;
  margin: 2% auto 0;
}
.news_date{
  color: #F7FBFC;
  display: block;
  text-align: left;
  width: auto;
  margin: 0 10px 0 0;
  padding: 5px 10px;
}
.news_title {
  width: 90%;
  margin: 0 auto;
  line-height: 1;
  text-align: left;
  color: #F7FBFC;
}
.viewall{
  text-align: center;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.viewall:before, .viewall:after {
  border-top: 1px solid;
  content: "";
  width: 3em;
  color: #FFFFFF;
}
.viewall:before { margin-right: 1em; }
.viewall:after { margin-left: 1em; }
a.nor{
  color: #FFFFFF;
  text-align: right;
  font-size: 18px;
  font-weight: bold;
  transition: .7s;
}
a.nor:hover{
  transition: .7s;
  opacity: .6;
}
ul.ulblogtitle{
  width: 50%;
  margin: 0 auto 1%;
}
ul.ulblogtitle li{
  width: 100%;
  padding: 3% 0;
  box-sizing: border-box;
  background-size: 8px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
ul.ulblogtitle li:first-child{
  padding: 0 0 3% 0;
}
ul.ulblogtitle li:last-child{
  border-bottom: none; 
  background: none;
}
ul.ulblogtitle li a{
  transition: .7s;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: clamp(14px, 1vw, 16px);
}
ul.ulblogtitle li a:hover .news_title, ul.ulblogtitle li a:hover .news_date{
  transition: .7s;
  color: #C11F22;
}

/*--------------------
story
--------------------*/
/* ストーリーセクション用の追加装飾 */
#story .glass-panel {
    
}



/* 最後の問いかけ部分を少し浮かび上がらせる */
#story .fade-text {
    color: #eee;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    margin-top: 30px;
}

/*--------------------
staff
--------------------*/
/* キャラクター詳細の初期状態 */
.char-info {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    opacity: 0;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0;
}

/* クリックされてアクティブになった時の状態 */
.char-card.is-active .char-info {
    max-height: 150px; /* 内容に合わせて調整 */
    opacity: 1;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px dotted var(--momo-pink);
}

.char-card {
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
}

.char-card:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* 画像が円形に収まるように調整 */
.char-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* スタッフリスト全体の調整 */
.staff-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left; /* コメントは左詰めが見やすいです */
}

.staff-card {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.staff-card:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateX(5px); /* 少し右に動く演出 */
}

.staff-header {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.staff-role {
    font-size: 0.8rem;
    color: var(--momo-dark);
    font-weight: bold;
}

.staff-name {
    font-size: 1.3rem;
    color: #333;
    margin: 0;
}

/* アコーディオンの中身（既存の.char-infoを活用） */
.staff-card .char-info p {
    line-height: 1.8;
    margin-bottom: 0;
}

/* 開いている時のカードのデザイン */
.staff-card.is-active {
    background: rgba(255, 255, 255, 0.8);
}
/* 初期状態：中身を隠す */
.staff-card .char-info {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease; /* ふわっと出すためのアニメーション */
}

/* is-active クラスがついた時：中身を見せる */
.staff-card.is-active .char-info {
    max-height: 1000px; /* 十分な高さを指定 */
    opacity: 1;
    margin-top: 15px;
}
/* スタッフの役職名の後ろに☆click☆を追加 */
.staff-header .staff-name::after {
    content: " ☆click☆"; /* 表示するテキストアイコン */
    color: #4879ef; /* ピンク色（変数を使用） */
    font-size: 0.7em; /* 役職名より少し小さく */
    margin-left: 10px; /* 左側に隙間を作る */
    font-weight: bold;
    display: inline-block; /* アニメーションさせるために必要 */
    vertical-align: middle; /* 垂直方向の中央揃え */
    
    /* ぷっくりさせる影（可爱らしさアップ） */
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    
    /* ゆらゆらと動くアニメーションを指定 */
    animation: clickMeFloating 2s ease-in-out infinite;
}

/* 開いている時はアイコンを消す（お好みで） */
.staff-card.is-active .staff-header .staff-name::after {
    display: none;
}

/* ゆらゆら動くアニメーションの定義 */
@keyframes clickMeFloating {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px); /* 3pxだけ上に浮かせる */
    }
}
/*--------------------
TRAILER
--------------------*/
.trailer{
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 998;
  opacity: 0;
  display:none;
}
.trailer.on{
  animation-name: TfadeInAnime;
  animation-duration: 0.5s;
  animation-iteration-count: none;
  animation-timing-function: ease;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes TfadeInAnime {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.trailer.off{
  animation-name: TfadeOutAnime;
  animation-duration: 0.5s;
  animation-iteration-count: none;
  animation-timing-function: ease;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes TfadeOutAnime {
  0% { opacity: 1; }
  100% { opacity: 0; }
}
.trailer_overlay{
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 1;
  z-index: 999999997;
}
.close_btn{
  position: fixed;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  z-index: 999999999;
  cursor: pointer;
  transition: .7s;
}
.close_btn:hover{
  transition: .7s;
  opacity: .7;
}
.close_btn_inner{
  position: relative;
  width: 100%;
  height: 100%;
}
.close_btn_inner::before,
.close_btn_inner::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  display: block;
  width: 30px;
  border-top: 3px solid #ffffff;
}
.close_btn_inner::before { transform: translate(-50%, -50%) skewY(-45deg); }
.close_btn_inner::after { transform: translate(-50%, -50%) skewY(45deg); }

.trailer.on .trailer_overlay{ opacity: 1; }

.trailer .trailer_inner{
  position: absolute;
  top: calc(50% - 40px);
  left: 50%;
  transform: translate(-50%, -50%) scale(1, 1);
  width: 60%;
  aspect-ratio: 16 / 9;
  z-index: 999999998;
  height: auto;
  box-sizing: content-box;
}
.trailer .trailer_tab{
  position: absolute;
  color: #fff;
  top: 100%;
  display:flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 10px;
  z-index: 999999998;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.trailer .trailer_tab li{
  display: flex;
  justify-content: center;
  width: calc(50% - 2.5px);
  padding: 10px;
  font-weight: bold;
  background: #fff;
  color: #000;
  margin: 0 5px 5px 0;
  font-size: 14px;
  line-height: 1;
  flex-wrap: wrap;
  box-sizing: border-box;
  letter-spacing: 0.1rem;
  text-align: center;
}
.trailer_tab li:nth-child(2n){ margin: 0 0 5px; }
.trailer .trailer_tab li:last-child{ width: 100%; margin: 0; }
.trailer_tab li.f_act{
  cursor: pointer;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
}

#youtube1{
  position:absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(1,1);
  opacity: 1;
  z-index: 2;
}
.trailer.on #youtube1{
  transform: scale(1,1);
  opacity: 1;
}

/*--------------------
MOVIE
---------------------*/
section.movie{
  position: relative;
  overflow: hidden;
}
.movie .inner{
  position: relative;
  z-index: 2;
  padding:  0;
}
.movie_wrap{
  display: flex;
  overflow: hidden;
}
ul.trailer_list{
  width: 70%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
li.trailer_item {
  width: 100%;
  margin: 0 auto;
}
.trailer_pop_btn{
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  background: #000;
}
.trailer_pop_btn a{
  display: flex;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  position: relative;
  z-index: 5;
  text-align: center;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.trailer_pop_btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/yt_logo.png);
  background-repeat: no-repeat;
  background-size: 50px;
  background-position: center;
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.trailer_pop_btn iframe{
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  line-height: 1;
}

/*--------------------
FOOTER
---------------------*/
footer {
    position: relative; /* 重なり順を有効にするために必要 */
    z-index: 50;        /* 背景レイヤー(z-index: 1)より前面に出す */
    width: 100%;
    background: rgba(0, 0, 0, 0.3); /* 白文字を見えるように背景を暗くする */
    color: #fff;        /* テキストカラー */
    padding: 40px 0;
    margin-top: 50px;
    font-size: 14px;
}

.billing {
    width: 100%;
    text-align: center;
    margin: 0 auto;
}


/* =========================================
   追加機能: パララックス・グラスモーフィズム等
   ※元のスタイルを優先するため、競合要素を調整済み
========================================= */

/* パララックス容器と背景 */
.parallax-container { 
   display: block !important;
  width: 100%;
  height: auto !important;
  overflow: visible !important; /* ここでのスクロールを停止 */
  perspective: none !important; /* パララックス廃止 */
  position: relative;
}

.layer-bg { 
    position: fixed !important; /* 画面に固定 */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh !important;
  /* 指示のあった色で統一 */
  background: linear-gradient(180deg, #004381 0%, #024d9b 100%) !important;
  z-index: -1; /* コンテンツの背面に配置 */
  transform: none !important; /* 拡大を解除 */
  pointer-events: none;
}

/* ナビゲーションバー */
.logo-wrapper {
    position: fixed; /* ★ここを sticky から fixed に変更！ */
    top: 0;
    left: 0;         /* ★これを追加して左上にピタッと合わせます */
    width: 100%;
    height: 80px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0); 
    transition: background 0.5s;
}
/*.logo-wrapper.is-scrolled {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}*/
.nav-left, .nav-right {
    flex: 1;
    display: flex;
    align-items: center;
    pointer-events: auto;
}
.nav-right { justify-content: flex-end; }

/* SNSアイコン (追加用) */
.sns-link {
    margin-right: 35px;
    transition: transform 0.3s ease;
    display: inline-block;
}
.sns-link:hover {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 8px var(--momo-pink));
}
.sns-icon { width: 24px; height: 24px; fill: var(--momo-dark); }

/* =========================================
   ハンバーガーメニュー（水滴デザイン）
========================================= */
.menu-trigger {
    /* サイズと配置の調整 */
    width: 65px;
    height: 65px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px; /* 線のすき間 */
    padding: 0;
    
    /* 水滴の質感（グラスモーフィズムと光の反射） */
    background: rgba(255, 255, 255, 0.3); /* 透明度の高い白 */
    backdrop-filter: blur(6px);          /* 後ろを少しぼやけさせる */
    -webkit-backdrop-filter: blur(6px);
    
    /* ぷっくりとした立体感を作る影と光 */
    box-shadow: 
        inset 5px 5px 10px rgba(255, 255, 255, 0.9), /* 左上からの強い光 */
        inset -5px -5px 15px rgba(255, 128, 171, 0.3), /* 右下からのモモピンクの反射 */
        5px 5px 15px rgba(0, 0, 0, 0.1);             /* 全体の落ち影 */

    /* 初期形状（少し歪んだ丸）とアニメーション設定 */
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: waterWobble 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

/* ホバー（タップ）した時に水滴が少し弾む演出 */
.menu-trigger:hover {
    transform: scale(1.1);
}

/* 水滴がゆらゆらと形を変えるアニメーション */
@keyframes waterWobble {
    0%, 100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    34% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    }
    67% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    }
}

/* 中の3本線のスタイル */
.menu-trigger span {
    display: block;
    width: 30px; /* 水滴の中に収まるように少し短く */
    height: 3px;
    background-color: var(--momo-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px white; /* 線自体も少し光らせる */
}

/* ハンバーガーメニューがアクティブ（×印）になった時の変化 */
.menu-trigger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--momo-pink);
}

.menu-trigger.active span:nth-child(2) {
    opacity: 0; /* 真ん中の線を消す */
}

.menu-trigger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--momo-pink);
}
/* グローバルナビゲーション（フルスクリーンメニュー） */
.global-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7); /* 半透明の白背景 */
    backdrop-filter: blur(15px); /* すりガラス効果 */
    -webkit-backdrop-filter: blur(15px);
    z-index: 90; /* headerのz-index(100)より背面に置くことで、×ボタンを押せるようにする */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0; /* 最初は透明 */
    pointer-events: none; /* 非表示時はクリックを無効化 */
    transition: opacity 0.5s ease; /* ふんわり表示 */
}

/* メニューが開いた時の状態 */
.global-nav.is-open {
    opacity: 1;
    pointer-events: auto;
}

/* メニューのリストデザイン */
.nav-list {
    list-style: none;
    padding: 0;
    text-align: center;
}

.nav-list li {
    margin: 30px 0;
    transform: translateY(20px); /* 少し下から */
    opacity: 0;
    transition: all 0.5s ease;
}

/* メニューが開いたとき、各項目をふんわり浮かび上がらせる */
.global-nav.is-open .nav-list li {
    transform: translateY(0);
    opacity: 1;
}

/* 項目ごとの表示タイミングを少しズラす（リッチな演出） */
.global-nav.is-open .nav-list li:nth-child(1) { transition-delay: 0.1s; }
.global-nav.is-open .nav-list li:nth-child(2) { transition-delay: 0.2s; }
.global-nav.is-open .nav-list li:nth-child(3) { transition-delay: 0.3s; }
.global-nav.is-open .nav-list li:nth-child(4) { transition-delay: 0.4s; }

.nav-list a {
    text-decoration: none;
    color: var(--momo-dark);
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 0.2rem;
    transition: color 0.3s, text-shadow 0.3s;
}

.nav-list a:hover {
    color: var(--momo-pink);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}
/* =========================================
   ハンバーガーメニュー内のSNSリスト
========================================= */
/* グローバルナビのコンテンツを縦に並べるための微調整 */
.global-nav {
    flex-direction: column; /* メニューとSNSを縦に並べる */
}

/* SNSリストのレイアウト */
.nav-sns-list {
    list-style: none;
    padding: 0;
    margin: 40px auto 0; /* メニュー項目の下に余白を空ける */
    display: flex;
    justify-content: center;
    gap: 20px; /* アイコン同士のすき間 */
}

/* 各アイコンの初期状態（透明で少し下に配置） */
.nav-sns-list li {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
}

/* メニューが開いた時に浮かび上がる */
.global-nav.is-open .nav-sns-list li {
    transform: translateY(0);
    opacity: 1;
}

/* メニュー項目の後（0.5秒以降）に順番に現れるようにディレイを設定 */
.global-nav.is-open .nav-sns-list li:nth-child(1) { transition-delay: 0.5s; }
.global-nav.is-open .nav-sns-list li:nth-child(2) { transition-delay: 0.6s; }
.global-nav.is-open .nav-sns-list li:nth-child(3) { transition-delay: 0.7s; }

/* アイコンのボタンデザイン */
.nav-sns-list a {
    display: flex;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    background: #1161c9; /* うっすら白い背景 */
    border-radius: 50%; /* 丸くする */
    transition: transform 0.3s, background 0.3s;
}

/* ホバー（タップ）した時の動き */
.nav-sns-list a:hover {
    transform: scale(1.1) rotate(10deg);
    background: rgba(255, 255, 255, 0.9);
}

/* 画像サイズの調整 */
.nav-sns-list img {
    width: 60%;
    height: auto;
}

/* セクション共通 */
.content-section {
    position: relative;
    z-index: 20;
    min-height: 30vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    box-sizing: border-box;
}

/* メインビジュアルエリア */
.main-visual-area {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    overflow: hidden;
}
.main-visual-text {
    max-width: 35%;
    text-align: left;
    z-index: 60;
}
.fade-text {
    color: var(--momo-dark);
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 10px white;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s ease-out;
    line-height: 1.5;
}
.fade-text.is-visible { opacity: 1; transform: translateY(0); }

/* アニメーション画像 */
.logo-img {
    width: auto; 
    max-width: 300px;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8));
    animation: floatingLogo 4s ease-in-out infinite;
    z-index: 1000;
}
.momo-floating {
    position: relative;
    bottom: -5vh;
    z-index: 50;
    pointer-events: none;
}
.momo-floating img {
    height: 85vh;
    width: auto;
    animation: floatingMain 6s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
}

/* グラスモーフィズム（半透明パネル） */
.glass-panel {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 40px;
    max-width: 800px;
    width: 100%;
    color: #444;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.section-title {
    color: var(--momo-dark);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 1px 1px 0px white;
    letter-spacing: 0.2rem;
	font-weight: bold;
}

/* リスト・グリッド系 (追加機能用) */
.news-list { list-style: none; padding: 0; }
.news-item { padding: 15px 0; border-bottom: 1px dotted var(--momo-pink); display: flex; gap: 20px; }
.news-date-momo { font-weight: bold; color: var(--momo-dark); } /* 既存クラスとの混同を避けるため微調整 */

.char-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; width: 100%; }
.char-card { background: rgba(255,255,255,0.5); border-radius: 20px; padding: 20px; text-align: center; transition: 0.3s; }
.char-card:hover { transform: scale(1.05); background: white; }
.char-thumb { width: 100%; aspect-ratio: 1; background: #ddd; border-radius: 50%; margin-bottom: 10px; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: #999; }

/* マウスストーカー（キラキラ） */
.sparkle { position: fixed; width: 12px; height: 12px; pointer-events: none; z-index: 9999; animation: sparkle-animation 1s linear forwards; clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); }

@keyframes sparkle-animation { 0% { transform: translate(0, 0) scale(0) rotate(0deg); opacity: 1; } 100% { transform: translate(var(--dx), var(--dy)) scale(1.5) rotate(360deg); opacity: 0; } }
@keyframes floatingLogo { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes floatingMain { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-30px) rotate(1deg); } }

.trailer.leisurely .trailer_inner {
    transform: translate(-50%, -45%) scale(0.95); /* 最初は少し下・小さめに */
    transition: transform 3s ease-out, opacity 3s ease-out;
}

.trailer.on.leisurely .trailer_inner {
    transform: translate(-50%, -50%) scale(1); /* ゆっくり定位置へ */
    opacity: 1;
}

/* =========================================
   余白（すき間）の統一ルール
========================================= */

/* 1. まず、.inner や各セクション個別の上下余白をリセット（無効化）する */
.inner,
.news .inner,
.movie .inner {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* 2. PC版の共通のすき間を設定（ここで統一） */
.content-section {
    padding: 100px 20px !important; /* 上下100px、左右20px */
}

/* トップ画面（メインビジュアル）だけは画面いっぱいにしたいので例外とする */
section.top {
    padding: 0 !important;
}
/* =========================================
   NEWS, STORY, STAFF COMMENT の白背景化と文字調整
========================================= */

/* 1. 対象セクションのパネル背景を「白」に変更 */
#news .glass-panel,
#story .glass-panel,
#staff-comment .glass-panel {
    background: rgba(255, 255, 255, 0.95) !important; /* ほぼ不透明の白 */
    border: 2px solid rgba(255, 128, 171, 0.2) !important; /* 薄いピンクの枠線で可愛らしく */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important; /* 柔らかく落とす影 */
    color: #444 !important; /* 基本の文字色をダークグレーにして読みやすく */
}

/* 2. STORYセクションの文字周り */
#story .story-content {
    color: #444 !important; /* HTMLの白指定を上書き */
    font-weight: 500;
}
/* STORY内の最後の問いかけ（強調部分） */
#story .fade-text {
    color: var(--momo-dark) !important; /* ピンク色にして強調 */
    text-shadow: none !important; /* 白背景なので光彩（シャドウ）は消す */
    font-weight: bold;
    padding-top: 20px;
    border-top: 1px dashed var(--momo-pink); /* 区切り線を入れる */
}

/* 3. NEWSセクションの文字周り */
.news_date {
    color: var(--momo-pink) !important; /* 日付はアクセントのピンクに */
}
.news_title {
    color: #333 !important; /* ニュースタイトルは濃いグレーに */
    font-weight: 500;
}
/* ニュースにホバー（マウスを乗せた）時の色変化 */
ul.ulblogtitle li a:hover .news_title {
    color: var(--momo-dark) !important; 
    text-decoration: underline; /* リンクだと分かりやすく */
}

/* 4. STAFF COMMENTセクションの文字周りとカード調整 */
#staff-comment .staff-card {
    background: none;
    box-shadow: none; /* 影をなくしてフラットに */
}
#staff-comment .staff-card:hover {
    background: ; /* ホバーで少し濃く */
}

#staff-comment .char-info p {
    color: #333 !important; /* コメント本文はしっかり読める濃い色に */
}


/* =========================================
   メディアクエリ (スマホ等への対応・最下部に配置)
========================================= */
@media screen and (max-width: 1200px) {
  .news .inner { width: 70%; }
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 960px) {
  .pc { display: none !important; }
  .sp { display: block !important; }

  .inner { width: 80%; margin: 0 auto; padding: 10% 0; }

  .logo { width: 50%; }

  ul.sns_list { top: 3%; right: 6%; }
  li.sns_item a { width: 40px; height: 40px; }
  li.sns_item:first-child { margin: 0 10px 0 0; }
  .responsive { margin: 0 auto; width: 340px; height: 260px; }
  
  .kisaragi_hp_bnr { width: 100%; }
  
  .news .inner { width: 80%; padding: 5% 0 5% 0; }
  .news_wrap { margin: 2% auto 0; }
  h1.midashi_title { font-size: 1.7rem; margin: 5% 0 5%; }
  ul.ulblogtitle li a { flex-direction: column; font-size: clamp(14px, 4vw, 16px); }
  .news_date { width: 100%; margin: 0 0 5px; }
  .news_title { width: 100%; margin: 0 0 3%; line-height: inherit; }

  .movie .inner{ padding: 10% 0 }

  footer{ font-size: 12px; }
  footer .inner { padding: 5% 0; }
  .billing { width: 100%; max-width: 450px; }
}

@media screen and (max-width: 500px) {
  /* スマホ特化の追加記述があればここへ */
}

@media screen and (max-width: 300px) {
  /* 極小画面用の追加記述があればここへ */
}

@media (orientation: landscape) and (max-width: 960px){
  /* デバイスが横向き、画面の横幅が 767px 以下の場合の記述 */
}
@media screen and (max-width: 1200px) {
	.news .inner {
    width: 70%;
}
}

@media screen and (max-width: 960px) {

.inner {
    width: 90% !important;
}


/*--------------------
LOADING
---------------------*/

.logo {
width: 50%;
}

html, body {
    overflow-x: hidden; /* 横揺れ防止 */
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  /* パララックス容器が勝手にスクロール位置を保持しないようにする */
  .parallax-container {
    height: 100dvh;
    perspective: none !important; /* スマホでは必須 */
    overflow-x: hidden;
    overflow-y: auto;
  }

  /* YouTubeモーダルが画面を突き破らないように固定 */
  .trailer .trailer_inner {
    width: 90% !important;
    max-width: 100vw;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
  }

/*--------------------
TOP
---------------------*/

section.top{

}
ul.sns_list {
    top: 3%;
    right: 6%;

}

li.sns_item a {
    width: 40px;
    height: 40px;
	}
	li.sns_item:first-child {
    margin: 0 10px 0 0;
}
	.responsive {
		margin: 0 auto;
width: 340px;
height: 260px;
}
	
.title{
  width: 100%;
  position: absolute;
  top: 50%;
	left: 50%;}
.section-title {
	font-size: 1.7rem;
	}
.nav-left img {
    width: 40%;
}
.sns-link
 {
    margin-right: 0px;}
.copyright2{
top: 50%;
left: 50%;
}
.catch{
top: 50%;
left: 58%;
}
/*--------------------
story
---------------------*/
/* パネル自体の余白を調整 */
  .glass-panel {
    padding: 10px 10px !important; /* 左右の余白を少し削り、上下を確保 */
    width: 90% !important; /* 画面いっぱいに使いすぎない */
    margin: 0 auto;
  }

  /* ストーリー・イントロの文字調整 */
  .story-content p, 
  #intro p {
    font-size: 0.8em !important; /* 少し小さくして1行の文字数を適切に */
    line-height: 1.8 !important;   /* 行間を少し詰め、読みのテンポを上げる */
    text-align: center;           /* 左右の端を揃えて美しく（お好みで） */
    word-break: break-all;         /* 英単語などが突き抜けないように */
  }

  /* 強調部分（不穏なアプリの部分）の調整 */
  .story-highlight {
    margin: 25px 0 !important;
    padding: 15px !important;
  }

  .story-highlight p {
    font-size: 1rem !important;
    letter-spacing: 0.05rem;
  }

  /* 最後の問いかけ部分 */
  .fade-text {
    font-size: 1.1rem !important;
    margin-top: 20px !important;
  }	
	
/*--------------------
NEWS
---------------------*/
	
	.kisaragi_hp_bnr {
    width: 100%;
	}
	
	.news .inner {
    width: 80%;
    padding: 5% 0 5% 0;
}
.news_wrap {
    margin: 2% auto 0;
	}

   h1.midashi_title {
    font-size: 1.7rem;
        margin: 5% 0 5%;
    }
	ul.ulblogtitle li a {
    flex-direction: column;
		font-size: clamp(14px, 4vw, 16px);
	}
	.news_date {
    width: 100%;
    margin: 0 0 5px;
	
	}
	.news_title {
    width: 100%;
    margin: 0 0 3%;
	line-height: inherit;
}

/*--------------------
movie
---------------------*/	
	.movie .inner{
		padding: 10% 0
	}
ul.trailer_list {
    width: 90%;}
/*--------------------
FOOTER
---------------------*/
footer{
font-size: 12px;
}
footer .inner {
    padding: 5% 0;
}
.billing {
    width: 100%;
	max-width: 450px;
	}
/* 100vhの代わりに dvh (Dynamic Viewport Height) を使うとバーの干渉を防げます */
  .parallax-container {
    height: 100dvh; 
    perspective: none; /* スマホではパララックスを切った方が安定します */
  }

  /* コンテンツがフッターに被らないよう、wrapperに十分な下部パディングを確保 */
  .wrapper {
   
    overflow: hidden;
  }

  /* セクションの高さ設定を柔軟に */
  .content-section {
    min-height: auto !important;
    padding: 60px 20px !important;
  }

  /* メインビジュアルの横並びをスマホでは縦に戻す（崩れ防止） */
  .main-visual-area {
    flex-direction: column !important;
    padding-top: 100px;
  }
  
  .text-logo-group {
    max-width: 100% !important;
    align-items: center !important;
    text-align: center !important;
  }

  .momo-floating img {
    height: 50vh !important; /* スマホではモモを少し小さく */
  }
	
}
/* 3. スマホ版の共通のすき間を設定 */
content-section {
        padding: 60px 20px !important; /* スマホは画面が小さいので上下60pxに縮小 */
    }
    
    /* スマホ版のトップ画面の微調整 */
    section.top {
        padding-top: 80px !important; /* ヘッダーメニューに被らないように少し下げる */
    }


@media screen and (max-width: 500px) {
	
/*--------------------
TOP
---------------------*/
	
}

@media screen and (max-width: 300px) {

/*--------------------
TOP
---------------------*/
	
	
}




@media (orientation: landscape) and (max-width: 960px){
/*デバイスが横向き、画面の横幅が 767px 以下の場合の記述*/

}
	
	
	
	