@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;
  }
}

body {
  font-family: "Noto Serif JP", "Yu Mincho";
  font-weight: 500;
  line-height: 1.5;
  background: #FDFBF7;
  background-attachment: fixed;
  color: #2C2C2C;
  overflow-y: scroll;
  padding-top: 80px;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.mainSite {
  width: 100%;
  padding: 0;
  margin: 0;
}

.wrapper {
  position: relative;
  text-align: center;
}

.inner {
  width: 70%;
  margin: 0 auto;
  padding: 5% 0;
}

.catch .inner {
  padding: 5% 0 0 0;
}

.news .inner {
  padding: 0 0 5% 0;
}

/* --- 新規セクション共通設定 --- */
.section_title {
  color: #A94438;
  /* 血のような赤 */
  text-align: center;
  font-size: 3rem;
  margin: 0 auto 3%;
  letter-spacing: 0.5rem;

}

.catchcopy {
  color: #2C2C2C;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.sub_catch {
  color: #2C2C2C;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
}

.text_block {
  margin: 30px auto;
  text-align: justify;
}

.text_block p {
  font-size: 1.3rem;
  line-height: 2.0;
  margin-bottom: 1.5em;
  color: #2C2C2C;
}

.intro_image, .story_image {
  margin: 40px 0;
  text-align: center;
}




.intro {
  background-color: #F4EDE2;
}

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

.loading_wrap {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: #EAE4D3;
}

.logo {
  width: 60%;
  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;
}

.top_main scaleIn img {
  width: 100vw;
}


@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;

}

.title {
  width: 100%;
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
}

.date {
  width: 100%;
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 4;
  opacity: 0;
}

.date.pc {
  width: 75%;
  margin: 10% auto 0;
}

.copyright {
  width: 100%;
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 3;
  opacity: 0;
}


/*ul.sns_list{
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 5%;
    left: 3%;
	    z-index: 500;
		opacity: 0;
}
li.sns_item{
	margin: 0 20px 0 0;
}
li.sns_item a{
    display: flex;
    width: 50px;
    height: 50px;
    background-color: ;
    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;
}

/*--------------------
バナー
---------------------*/
.cmt_bnr.pc {
  width: 30%;
  position: absolute;
  top: 15%;
  left: 22%;
  transform: translate(-50%, -50%);
  z-index: 5;
  opacity: 0;
}

/* ==================================
  ムビチケ
================================== */
.mvtk_wrap {
  margin: 3% auto;
  opacity: 0;
}

.bnr_wrap {
  width: 55%;
  margin: 3% auto;
  opacity: 0;
}

#mvtk-widgets-container {
  opacity: 0;
  margin: 0 auto;
}

/*--------------------
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: 60%;

}


.news .inner {
  width: 60%;

}

.news_wrap img {
  width: 60%;
}

/* ニュースリスト全体の質感 */
.news_wrap {
  padding: 40px 0;
  background: transparent;
  /* ノイズテクスチャを外す */
}

ul.ulblogtitle {
  display: flex;
  flex-direction: column;
  gap: 15px;
  /* リスト間に少し隙間を空けてカード状にします */
}

ul.ulblogtitle li {
  width: 100%;
  margin-bottom: 0;
  background-color: #FFFFFF;
  /* アイボリーの背景に映える白 */
  border: 1px solid rgba(169, 68, 56, 0.1);
  /* うっすらテラコッタの枠線 */
  border-radius: 8px;
  /* 角丸で大人の柔らかさを */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  /* 軽い影 */
  transition: all 0.3s ease;
}

ul.ulblogtitle li a {
  display: flex;
  /* 日付とタイトルを横並びに */
  align-items: center;
  padding: 20px 30px;
  text-decoration: none;
}

/* ホバー時の不穏な動きをなくし、シンプルに色を変える */
ul.ulblogtitle li:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(169, 68, 56, 0.15);
  /* テラコッタ色の影を落とす */
  border-color: rgba(169, 68, 56, 0.3);
}

ul.ulblogtitle li:hover .news_title {
  color: #A94438;
  /* ローディング画面と同じ青色 */
}

/* 日付はタイプライター風をキープ */
.news_date {
  font-family: "Noto Serif JP", "Yu Mincho";
    color: #3A6080;
  /* 海のネイビー */
  font-weight: bold;
  letter-spacing: 1px;
  margin-right: 30px;
  min-width: 100px;
  border-right: 2px solid #EAE4D3;
  /* 縦の区切り線 */
  padding-right: 20px;
}

/* タイトル部分 */
.news_title {
  font-size: 1.1rem;
  color: #2C2C2C;
  margin-top: 0;
  line-height: 1.6;
  transition: color 0.3s ease;
}

/*--------------------
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 Serif JP", "Yu Mincho";
  font-optical-sizing: auto;
  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;
}

/* .trailer_tab li.f_act:hover {} */

#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;
}


.youtube_wrapper {
  width: 48%;

}

.youtube_wrapper:first-child {
  margin-right: 4%;
}

.youtube_inner {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;

}

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

.ytp-cued-thumbnail-overlay-image {
  filter: none;
  -webkit-filter: none;
}

/*--------------------
MOVIE
---------------------*/

section.movie {
  position: relative;
  overflow: hidden;
}

.mvtk_wrap::before {
  mix-blend-mode: lighten;
}

.movie .inner {
  position: relative;
  z-index: 2;

  padding: 0;
}

.movie h1 img {
  width: 50%;
}

.movie_wrap {
  display: flex;
  overflow: hidden;
  flex-wrap: wrap;
}

.movie_wrap {
  font-size: 1.5rem;
}

ul.trailer_list {
  width: 100%;
  margin: 1% auto 15%;
  flex-wrap: wrap;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

li.trailer_item {
  width: 45%;
  margin: 1% 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;
}

.movie_midashi {
  color: #fff;
  margin: 10px 0 0 0;
  letter-spacing: 0.5rem;
  text-align: center;
}

/*--------------------
消す
---------------------*/
/* 最初は隠しておく */
.trailer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  /* ローディング(9999)よりは下、メインサイトよりは上 */
}

/* 表示された時のオーバーレイの設定 */
.trailer_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  /* 背景を暗くする */
  cursor: pointer;
}

.title, .sns_list, .date, .copyright {
  opacity: 0;
  /* transformを削除、または 'none' に固定 */
  transform: none !important;
  transition: opacity 1.5s ease;
  /* 元のレイアウトを維持するための設定 */
  visibility: visible;
}

/* --- クラスがついた時の表示状態 --- */
.title.fadeIn, .sns_list.fadeIn, .date.fadeIn, .copyright.fadeIn {
  opacity: 1;
}

/* メインビジュアルも位置がずれる場合は、scaleのみにする */
.top_main {
  opacity: 0;
  transition: opacity 0s ease;
  width: 100vw;
}

.top_main.scaleIn {
  opacity: 1;
}

/* ぼやけ（filter）が原因で「変なふわっと感」が出るのを防ぐ */
.logo {
  transition: opacity 1s ease, filter 1s ease;
}

.logo.fadeOut {
  opacity: 0;
  filter: blur(10px);
}

        /* 3列のグリッドコンテナ */
        .profile-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 60px 30px;
            max-width: 1000px;
            width: 100%;
            margin: 0 auto;
            max-width: 1400px;
        }

        /* 各プロフィールカード */
        .profile-card {
            background: #fff;
            text-align: center;
            padding: 20px;
            box-shadow: 3px 3px 7px -4px gray;
        }
        .image-container {
            width: 100%;
            aspect-ratio: 3 / 4; /* 画像の縦横比を固定 */
            overflow: hidden;
            margin-bottom: 15px;
        }
        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover; 
        }
        .name-ja {
            font-size: 16px;
            font-weight: bold;
            color: #333;
            margin-bottom: 2px;
        }
        .name-en {
            font-size: 16px;
            color: #333;
        }

        /* Profileボタン */
        .profile-btn {
            display: inline-block;
            width: 160px;
            padding: 10px 0;
            background-color: #CE393C; /* 赤色の背景 */
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            border: none;
            cursor: pointer;
            transition: background 0.2s;
            margin-top: 10px;
        }
        .profile-btn:hover {
            background-color: #b71c1c;
        }

 /* --- 前回のCSSに以下を上書き、または差し替えてください --- */

/* ポップアップ（モーダル）の背景 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* 背景を少し薄くして画像に合わせました */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
}
/* モーダル表示時のクラス */
.modal-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
}

/* ポップアップのコンテンツ枠（横長に変更） */
.modal-content {
    background: #fff;
    padding: 60px 40px; /* 余白を広めに設定 */
    max-width: 900px;  /* 横幅を拡大 */
    width: 90%;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    
    /* 左右2カラムにするための設定 */
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* 閉じるボタン */
.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
}

/* 左側：画像エリア */
.modal-left {
    flex: 0 0 35%; /* 全体の35%の幅を固定 */
}
.modal-body-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* 右側：テキストエリア */
.modal-right {
    flex: 1; /* 残りの幅をすべて使う */
    text-align: left;
}
.modal-name-area {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee; /* 名前と本文の区切り線 */
    padding-bottom: 10px;
}
.modal-name-ja {
    font-size: 30px;
    font-weight: bold;
    color: #204060;
    display: inline-block;
    margin-right: 15px;
}
.modal-name-en {
    font-size: 18px;
    color: #204060;
    display: inline-block;
}
.modal-body-text {
    font-size: 16px;
    color: #333;
    line-height: 1.7; /* 行間を広げて読みやすく */
    white-space: pre-wrap; /* 改行をそのまま反映させる設定 */
}

/* ポップアップ用のレスポンシブ対応 */
@media (max-width: 768px) {
    .modal-content {
        flex-direction: column; /* スマホでは縦並びにする */
        padding: 40px 20px;
        gap: 20px;
        max-height: 90vh;
        overflow-y: auto; /* 画面からはみ出る場合はスクロール可能に */
    }
    .modal-left {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    .modal-name-ja, .modal-name-en {
        display: block; /* スマホでは名前を改行 */
        margin-right: 0;
        margin-bottom: 5px;
    }
}

.text_sub {
  color: #CE393C;
  font-size: 30px;
  font-weight: bold;
}

.section-header {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 768px) {
.section-header {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

}





/* 英語のメインタイトル */
.section_title {
    font-size: 36px;
    font-weight: normal;
    color: #204060; 
    letter-spacing: 1px;
    margin-bottom: 8px; /* 英語と日本語の間のすき間 */
}

.section-title-ja {
  font-size: 20px;
  font-weight: 700;
  color: #204060; 
}

@media (max-width: 768px) {
.section-title-ja {
  font-size: 18px;
  font-weight: 700;
  color: #204060; 
}
}


.staff {
  background-color: #F4EDE2;
}

.pro-wrapper {
  display: flex;
  gap: 10px;
  padding: 30px 20px 0;
  background-color: #fff;
}

@media (max-width: 768px) {
.pro-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px 20px 0;
  background-color: #fff;
}
}

.pro-container {
  max-width: 40%;
  height: auto;
}

@media (max-width: 768px) {
  .pro-container {
  max-width: 100%;
  height: auto;
  text-align: center;
}
}

.role-title{
  font-weight: bold;
  color: #204060;
}

.profile-summary {
  width: 60%;
}

.profile-summary .intro-text {
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 768px) {
.profile-summary {
  width: 100%;
}
}


.name-flex {
  display: flex;
  padding-bottom: 10px;
      align-items: flex-end;
}


.name-staff {
  color: #204060!important;
  font-weight: bold;
}

.name-en-staff {
  color: #204060;
  font-weight: bold;
}

.modal-sub-title {
  font-weight: bold;
  color: #204060;
  font-size: 20px;
  padding: 0 0 10px;
}

.movie_activities {
  background-color: #fff;
  padding: 0 20px 0;
}

.wrapr {
  margin: 50px 0 80px;
  background: #FFF;
  padding: 20px;
}

.bil div {
  width: 100vw;
}

.bil div img {
  width: 87%;
  margin: 0 auto;
  text-align: center;
width: 100%;
  height: auto;
  display: block;
}


/* ==========================================
   アコーディオン（READ MORE）用設定
   ========================================== */
.accordion-section {
    position: relative;
    background: #fff;
    padding: 20px 20px 25px;
}

/* 5件目以降を隠すための設定（初期状態は高さ0で見えない） */
.more-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    /* transitionで高さを0.4秒かけて滑らかに変化させる */
    transition: max-height 0.4s ease-out, opacity 0.3s ease-out;
}

/* JavaScriptで「is-open」クラスがついた時に、中身を広げる */
.more-content.is-open {
    max-height: 1500px; /* 中身がすべて収まる十分な最大高さを指定 */
    opacity: 1;
    margin-top: 10px;
}

/* READ MORE ボタンのデザイン */
.more-btn {
    display: block;
    width: 100%;
    max-width: 180px; /* ボタンの横幅 */
    margin: 20px auto 10px auto; /* 中央寄せ */
    padding: 8px 0;
    background: transparent;
    border: 1px solid #1a3a5f; /* 濃いネイビーの細い枠線 */
    color: #1a3a5f;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

/* ボタンにマウスを乗せたとき（色が反転するアニメーション） */
.more-btn:hover {
    background-color: #1a3a5f;
    color: #fff;
}

/* アコーディオンが開いているときのボタン状態 */
.more-btn.is-active {
    background-color: #f5f5f5;
    color: #333;
    border-color: #ccc;
}

/* 年表全体の囲み */
.timeline_list {
  width: 100%;
}

/* 年表の1行（アイテム） */
.timeline_item {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(169, 68, 56, 0.1); /* うっすら赤系の線 */
  padding: 15px 0;
}

.timeline_item:last-child {
  border-bottom: none;
}

/* 左側：年度部分 */
.timeline_year {
  width: 15%;
  font-family: "Noto Serif JP", "Yu Mincho";
  font-weight: bold;
  font-size: 1.2rem;
  color: #A94438; /* 映画活動の見出しに合わせた赤 */
  letter-spacing: 0.05em;
}

/* 右側：内容部分 */
.timeline_content {
  width: 85%;
  margin: 0;
  text-align: left;
}

/* メインのタイトル文章 */
.timeline_content .main_text {
  font-size: 1.1rem;
  font-weight: bold;
  color: #2C2C2C;
  margin: 0 0 10px 0;
  line-height: 1.6;
}

/* 補足・詳細文章 */
.timeline_content .sub_text {
  font-size: 1rem;
  color: #555555;
  margin: 0 0 8px 0;
  line-height: 1.6;
}

.timeline_content .sub_text:last-child {
  margin-bottom: 0;
}

/* スマートフォン用の表示（画面幅960px以下） */
@media only screen and (max-width: 960px) {
  .timeline_item {
    flex-direction: column; /* 縦並びに変更 */
    padding: 20px 0;
  }
  
  .timeline_year {
    width: 100%;
    margin-bottom: 10px;
    font-size: 1.3rem;
  }
  
  .timeline_content {
    width: 100%;
  }
}





/* --- 新規セクション共通設定 --- */
.section_title {
  color: #204060;
  text-align: center;
  font-size: 3rem;
  margin: 0 auto 0;
  letter-spacing: 0.1rem;
}

.catchcopy {
  color: #2C2C2C;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.sub_catch {
  color: #2C2C2C;
  font-size: 2.5rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 40px;
  line-height: 1.6;
}

.text_block {
  margin: 30px auto;
  text-align: justify;
}

.text_block p {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 1.5em;
  color: #2C2C2C;
  line-height: 1.8;
}

.intro-subtext {
  text-align: center;
}

.intro-subtext span {
  color: #CE393C;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 960px) {
.intro-subtext span {
  font-size: 24px;
}
}

@media screen and (max-width: 960px) {
.intro-subtext span {
  font-size: 20px;
}
}



.intro_image, .story_image {
  margin: 40px 0;
  text-align: center;
}

/* --- スライドショーレイアウト --- */
.slideshow {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 100px;
}

.slideshow img {
  width: 32.5%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/*.slideshow img:hover {
  transform: scale(1.05);
  border-color: #C11F22;
}*/

/* --- Cast セクション（画像左、文字右） --- */
.cast_list {
  margin-top: 50px;
}

.cast_item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  /*---border-left: 3px solid #C11F22;---*/
}

.cast_img {
  width: 30%;
  margin-right: 5%;
}

.cast_text {
  width: 65%;
}

.cast_name {
  font-size: 1.3rem;
  color: #FC0000;
  margin-bottom: 15px;
  border-bottom: 1px solid #444;
  padding-bottom: 10px;
  letter-spacing: 0.1em;
  text-align: left;
}

.cast_text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 0;
  text-align: justify;
}

/* --- Original / Staff セクション --- */
.os_wrap {
  margin-bottom: 80px;
}

.comment_title {
  color: #FC0000;
  font-size: 1.1rem;
  margin: 30px 0 15px;
  font-weight: bold;
}

.staff h3 {
  text-align: center;
  color: #2C2C2C;
  font-size: 1.2rem;
}

/*THEATER----------------------------------------------*/

.theater {
  padding: 5% 15% 10%;
  /*background-color: #fefefe;
	background-color: #614644;*/
}

/* .theater_wrap {
  background-color: #fefefe;
} */

.theater_inner {
  /*max-width: 840px;*/
  margin: 0 auto;
}

.theater h1.midashi {
  margin-bottom: 70px;
  color: #342426;
  font-weight: bold;
}

table {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  font-size: .9em;
  /*margin-bottom: 20px;*/
}

tbody {
  display: table-row-group;
  vertical-align: middle;
  border-color: inherit;
  border-collapse: separate;
  border-spacing: 0;
}

tr {
  background-color: #fff;
}

th {
  padding: 10px 10px;
  padding-right: 4px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #000;
  color: #fff;
}

table .tb1 {
  width: 20%;
}

table .tb2 {
  width: 30%;
}

table .tb3 {
  width: 20%;
}

table .tb4 {
  width: 15%;
}

table .tb5 {
  width: 14%;
}

td {
  padding: 8px 10px;
  padding-right: 4px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #333;
  vertical-align: middle;
  border-bottom: 1px solid #ddd;
}

.pref {
  height: 52px;
  padding-top: 10px;
}

.multi {
  vertical-align: top;
}

.theater_name a {
  color: #342426;
  border-bottom: 1px solid #342426;
}

.theater_name a:hover {
  color: gray;
}

.theater_cs {
  text-align: center;
  font-weight: 600;
}

/* --- 劇場の下のボタン --- */
.theater_btn_wrap {
  text-align: center;
  margin-top: 40px;
  /* テーブルとの隙間 */
}

.theater_btn {
  display: inline-block;
  padding: 15px 60px;
  background-color: #E06020;
  /* 温かいオレンジ */
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 30px;
  /* 押しやすいようにコロンと丸みを持たせる */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  /* 机の上に置いてあるような影 */
  border: 1px solid rgba(255, 252, 240, 0.2);
  transition: all 0.3s ease;
}

/* ホバーした時の動き */
.theater_btn:hover {
  background-color: #E5C460;
  /* ホバー時は明るい黄金色に */
  color: #2C4635;
  /* 文字色を深い森の緑にして見やすく */
  transform: translateY(-3px);
  /* ふんわり浮き上がる */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}




/*--------------------
FOOTER
---------------------*/

footer {
  width: 100%;
  /* 境界線にアクセントとしてテラコッタ（赤茶色）の細いラインを引きます */
  border-top: 1px solid rgba(169, 68, 56, 0.4);
  color: #FDFBF7;
  /* 文字色はアイボリーに合わせて柔らかく */
  font-size: 14px;
  /* 背景を南イタリアの深い海を思わせるディープネイビーに変更 */
  background-color: #204060;
}

footer .inner {
  padding: 2% 0;
}

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

/* .news_wrap h2 {
  margin: 0 auto 5%;
} */

.news_wrap img {
  width: 70%;
}

.viewall {
  border: 1px solid #204060;
  display: inline-block;
  padding: 10px 40px;
  text-align: center;
  background-color: #FDFBF7;
  -webkit-transition: all .1s;
  transition: all .1s;
}

.viewall:hover {
  color: #fff;
  border: 1px solid #204060;
  background-color: #204060;
}


/* .movie h2 {
  margin: 0 auto 3%;
} */

.movie h2 img {
  width: 50%;
}

.intro h2 img {
  width: 50%;
}

.story h2 img {
  width: 50%;
}

.cast h2 img {
  width: 50%;
}

.original_staff h2 img {
  width: 50%;
}

/* .cast img {
  width: 70%;
} */

/* ====================================
   トップに戻るボタン
==================================== */
.page-top {
  position: fixed;
  bottom: 30px;
  right: 40px;
  z-index: 800;
  /* メニューより下、コンテンツより上 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  /* 背景を黒系から、半透明の白（すりガラス風）に変更 */
  background: rgba(255, 255, 255, 0.85);
  /* 枠線を海のようなネイビーに変更 */
  border: 1px solid rgba(58, 96, 128, 0.5);
  /* 文字色をネイビーに変更 */
  color: #3A6080;
  text-decoration: none;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.9rem;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  /* ほんのり影をつけて押しやすく */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-top:hover {
  background: rgba(255, 255, 255, 1);
  color: #3A6080;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* 上向き矢印 */
.page-top .arrow {
  width: 10px;
  height: 10px;
  /* 矢印の色もネイビーに統一 */
  border-top: 2px solid #3A6080;
  border-right: 2px solid #3A6080;
  transform: rotate(-45deg);
  margin-top: 5px;
  margin-bottom: 3px;
  transition: all 0.3s ease;
}

.page-top:hover .arrow {
  border-color: #3A6080;
}

/* スクロールして表示された時のクラス */
.page-top.is-show {
  opacity: 1;
  visibility: visible;
}

/* ====================================
   固定ヘッダー（PC/SP共通）
==================================== */
.site_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, 0.85);
  /* ペーパーホワイトの透過 */
  border-bottom: 1px solid #D4DDE1;
  /* スチールグレーの細い線 */
  backdrop-filter: blur(5px);
  z-index: 900;
  /* ローディング(999)より下、メインビジュアル(2)より上に設定 */

}

/* SNSリストのバレット（点）を消す設定を追加 */
.header_sns, .sp_menu_sns, .nav_list, .sp_nav_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.header_inner {
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.header_logo img {
  height: 40px;
  width: auto;
}

/* PCナビゲーション */
.pc_nav .nav_list {
  display: flex;
  gap: 30px;
}

.pc_nav .nav_list a {
  color: #2C2C2C;
  text-decoration: none;
  letter-spacing: 0.1em;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.pc_nav .nav_list a:hover {
  color: #A94438;
}

/* ヘッダー内SNSアイコン（PC用） */
.header_sns {
  display: flex !important;
  gap: 25px;
}

.header_sns .sns_item img {
  width: 30px;
  transition: transform 0.3s;
}

.header_sns .sns_item img:hover {
  transform: scale(1.1);
}

/* ★追加: PC時はハンバーガーボタンとスマホメニューを非表示にする */
.hamburger, .sp_nav {
  display: none;
}

/* ★追加: メニュー展開時に背景をスクロールさせない */
body.noscroll {
  overflow: hidden;
}

/* ====================================
   フローティング特別先行映像ボタン（PC）
==================================== */
.floating_trailer_btn {
  position: fixed;
  bottom: 130px;
  /* トップに戻るボタン（30px + 60px）の上に配置 */
  right: 30px;
  z-index: 850;
  /* メニュー(900)の下、トップに戻る(800)の上に設定 */
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  /* 最初は透明 */
  visibility: hidden;
  /* 最初はクリックできないように隠す */
  transform: translateY(20px);
  /* 少し下から浮き上がる演出用 */
  transition: all 0.5s ease;
  /* 0.5秒かけてフワッと出す */
}

.floating_trailer_btn.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating_trailer_btn a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #A94438;
  /* タイトルと同じ澄んだネイビー */
  transition: all 0.3s ease;
}

.floating_trailer_btn a:hover {
  opacity: 0.8;
  transform: translateY(-3px);
  /* ホバーで少しフワッと浮く */
}

/* 円形プレイボタン本体 */
.ripple_circle {
  position: relative;
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.85);
  /* 半透明の白ですりガラス感を出す */
  border: 1px solid rgba(58, 96, 128, 0.5);
  /* 海色の枠線 */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* 再生マーク */
.play_icon {
  font-size: 20px;
  color: #A94438;
  margin-left: 4px;
  /* 三角形が視覚的に中央に見えるよう微調整 */
}

/* --- 波紋アニメーション --- */
/* ::before と ::after の2つを使って、2重の波紋を作ります */
.ripple_circle::before,
.ripple_circle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 1px solid #A94438;
  border-radius: 50%;
  z-index: -1;
  /* ボタンの裏側に配置 */
  animation: rippleWave 2.5s infinite ease-out;
  /* 2.5秒かけて無限に繰り返す */
}

/* 2つ目の波紋は、開始タイミングを半分（1.25秒）遅らせて連続しているように見せる */
.ripple_circle::after {
  animation-delay: 1.25s;
}

/* 波紋の動き（だんだん大きくなりながら消えていく） */
@keyframes rippleWave {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.2);
    /* 2.2倍まで広がる */
    opacity: 0;
  }
}

/* 下部のテキスト */
.btn_text {
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.9);
  /* 背景に被っても読みやすくする白フチ効果 */
}


@media screen and (max-width: 1200px) {
  .news .inner {
    width: 70%;
  }
}

@media screen and (max-width: 1200px) {
  .news .inner {
    width: 70%;
  }
}

@media screen and (max-width: 960px) {
  .site_header {
    height: 60px;
  }

  .movie_wrap {
    font-size: 1.2rem;
  }

  .header_inner {
    padding: 0 20px 0 0;
  }

  .pc_nav, .header_sns {
    display: none !important;
  }

  /* ハンバーガーボタン（スマホのみ表示） */
  .hamburger {
    display: block;
    /* ★修正: スマホで表示させる */
    position: relative;
    width: 30px;
    height: 24px;
    cursor: pointer;

  }

  .hamburger_line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #2c2c2c;
    transition: all 0.4s;
  }

  .hamburger_line:nth-child(1) {
    top: 0;
  }

  .hamburger_line:nth-child(2) {
    top: 11px;
  }

  .hamburger_line:nth-child(3) {
    top: 22px;
  }

  .hamburger.is-active .hamburger_line:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
    background-color: #2c2c2c;
  }

  .hamburger.is-active .hamburger_line:nth-child(2) {
    opacity: 0;
  }

  .hamburger.is-active .hamburger_line:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
    background-color: #2c2c2c;
  }

  /* 全画面メニュー */
  .sp_nav {
    display: flex;
    /* ★修正: PCの非表示を解除 */
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #204060;
    z-index: 890;
    /* ★修正: ヘッダー(900)より下の数値にしてボタンを隠さない */
    transition: all 0.5s ease;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*border-right: 1px solid #C11F22;*/
  }

  .sp_nav.is-active {
    left: 0;
  }

  .sp_nav_list {
    text-align: center;
    margin-bottom: 50px;
  }

  .sp_nav_list li {
    margin-bottom: 30px;
  }

  .sp_nav_list a {
    color: #D9D4C7;
    font-size: 1.5rem;
    text-decoration: none;

  }

  /* メニュー内のSNSアイコン */
  .sp_menu_sns {
    display: flex;
    gap: 30px;
  }

  .sp_menu_sns img {
    width: 35px;
  }

  body {
    padding-top: 60px;
    /* ★スマホヘッダーの高さ分、全体を下げる */
  }

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

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

  .logo {
    width: 100%;
  }

  .cmt_bnr.sp {
    opacity: 0;
  }

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

  /* section.top {} */

  /*ul.sns_list {
	align-items: flex-start;
	flex-direction: column;
    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;
  }

  /*--------------------
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;
  }

  .news_wrap img {
    width: 100%;
  }

  /*--------------------
movie
---------------------*/
  .movie .inner {
    padding: 10% 0
  }

  .movie h2 img {
    width: 100%;
  }

  .intro h2 img {
    width: 100%;
  }

  .story h2 img {
    width: 100%;
  }

  .cast h2 img {
    width: 100%;
  }

  .original_staff h2 img {
    width: 100%;
  }

  li.trailer_item {
    width: 80%;
  }

  /*THEATER-------------------------------------------------------*/
  table {
    table-layout: fixed;
  }

  tbody {
    font-size: 13px;
  }

  th {
    padding: 10px 6px;
    vertical-align: middle;
  }

  .theater_name {
    font-size: 13px;
  }

  table .tb1 {
    width: 15%;
  }

  table .tb2 {
    width: 40%;
  }

  table .tb3 {
    width: 8%;
  }

  table .tb4 {
    width: 15%;
  }

  table .tb5 {
    width: 8%;
  }

  .tell a {
    color: #000;
  }

  .theater {
    padding: 10% 10% 20%;
  }

  /* 劇場ボタンのスマホ調整 */
  .theater_btn_wrap {
    margin-top: 30px;
  }

  .theater_btn {
    display: block;
    width: 85%;
    /* スマホ画面の幅に合わせる */
    margin: 0 auto;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .header_logo img {
    height: 35px;
    width: auto;
    margin: 5%;
  }

  /* ====================================
     フローティング特別先行映像ボタン（SP）
  ==================================== */
  .floating_trailer_btn {
    bottom: 100px;
    /* SPのトップに戻るボタン位置に合わせて調整 */
    right: 20px;
  }

  .ripple_circle {
    width: 50px;
    height: 50px;
  }

  .play_icon {
    font-size: 16px;
    margin-left: 3px;
  }

  @keyframes rippleWave {
    0% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 0.8;
    }

    100% {
      transform: translate(-50%, -50%) scale(1.8);
      /* SPは広がりを少し抑える */
      opacity: 0;
    }
  }

  .btn_text {
    font-size: 0.75rem;
  }

  /*--------------------
FOOTER
---------------------*/
  footer {
    font-size: 12px;
  }

  footer .inner {
    padding: 5% 0;
  }

  .billing {
    width: 100%;
    max-width: 450px;
    font-weight: 100;
  }

  .section_title {
    font-size: 1.6rem;
    font-weight: 500;
  }

  .catchcopy {
    font-size: 1.3rem;
  }

  .sub_catch {
    font-size: 2.1rem;

  }

  .slideshow img {
    width: 90%;
    /* スマホでは1列に */
    margin-bottom: 5px;
  }

  .cast_item {
    flex-direction: column;
    padding: 20px;
  }

  .cast_img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .cast_name {
    font-size: 1.1rem
  }

  .cast_text {
    width: 100%;
  }


  .page-top {
    bottom: 20px;
    right: 30px;
    width: 50px;
    height: 50px;
    font-size: 0.8rem;
  }

  .page-top .arrow {
    width: 8px;
    height: 8px;
    margin-bottom: 2px;
  }
}

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

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

}

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

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


}




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

}