@charset "UTF-8";
/* ©SCHNEID
映画『バッド・ルーテナント：トウキョウ』 オフィシャルサイト
Kazumi Nishibayashi */
/*------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&display=swap');
:root {
 --base-black: #000000;
 --base-white: #ffffff;
 --base-gray: #e9e4e1;
 --base-darkgray: #4a4642;
 --base-black: #010101;
 --main-pink: #ea6176;
 --main-yellow: #faed00;
}
/*------------------------------------------------------------
	Reset
------------------------------------------------------------*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, nav, section, time, mark, audio, video {
 font-size: 1em;
 margin: 0;
 padding: 0;
 border: 0;
 outline: 0;
 -webkit-box-sizing: border-box;
 box-sizing: border-box;
 background: transparent;
 vertical-align: bottom;
}
* {
 box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
 display: block;
}
html {
 font-size: 62.5%;
 -webkit-overflow-scrolling: touch;
}
body {
 -webkit-text-size-adjust: 100%;
}
body, table, input, textarea, select, option, h1, h2, h3, h4, h5, h6, p {
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
 margin: 0;
 padding: 0;
}
h1, h2, h3, h4, h5, h6 {
 font-weight: 600;
 font-feature-settings: "palt"1;
 letter-spacing: 1px;
}
table, input, textarea, select, option {
 line-height: 1.1;
}
ol, ul {
 list-style: none;
}
blockquote, q {
 quotes: none;
}
:focus {
 outline: 0;
}
ins {
 text-decoration: none;
}
del {
 text-decoration: line-through;
}
hr {
 height: 0;
 margin: 0;
 padding: 0;
 border: 0;
}
a {
 color: inherit;
 text-decoration: none;
 -webkit-transition: all 100ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
 transition: all 100ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
 display: inline-block;
}
a:hover {
 cursor: pointer;
 -webkit-transition: all 100ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
 transition: all 100ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
}
img {
 max-width: 100%;
 width: 100%;
 height: auto;
 vertical-align: bottom;
 display: block;
}
figure, img {
 pointer-events: none;
}
/*------------------------------------------------------------
	layout
------------------------------------------------------------*/
html {
 height: -webkit-fill-available;
}
body {
 font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
 font-size: 1.6rem;
 line-height: 2em;
 background-color: var(--base-black);
 color: var(--base-white);
 font-style: inherit;
 font-weight: 500;
 -ms-text-size-adjust: 100%;
 -webkit-text-size-adjust: 100%;
 text-rendering: geometricPrecision;
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
 -webkit-tap-highlight-color: transparent;
 overflow-x: hidden;
 -webkit-overflow-scrolling: touch;
 min-height: -webkit-fill-available;
}
#container {
 overflow-x: hidden;
 overflow-y: auto;
}
body.fixed {
 overflow: hidden;
}
b, strong, .bold {
 font-weight: 700;
}
.loading {
 position: fixed;
 width: 100%;
 height: 100%;
 z-index: 9999;
 overflow-y: hidden;
 background-color: var(--base-black);
}
.fadein {
 opacity: 0;
 transition: all 1000ms;
}
.fadein.active {
 opacity: 1;
 animation-duration: 1.5s;
 animation-delay: .1s; /* 遅延 */
 animation-fill-mode: forwards;
}
.fade-in-up {
 opacity: 0;
 transform: translate(0, 60px);
 transition: all 1000ms;
}
.fade-in-up.active {
 opacity: 0;
 animation-name: fadeInMove;
 animation-duration: .5s;
 animation-delay: .5s; /* 遅延 */
 animation-fill-mode: forwards;
}
@keyframes fadeInMove {
 from {
  opacity: 0;
  transform: translate(0, 60px);
 }
 to {
  opacity: 1;
  transform: translate(0, 0);
 }
}
.fadeLeft, .fadeRight {
 opacity: 0;
}
/* 左から */
.fadeLeft.active {
 animation-name: fadeLeftAnime;
 animation-duration: .5s;
 animation-delay: .5s;
 animation-fill-mode: forwards;
 opacity: 0;
}
.main .fadeLeft.active {
 animation-delay: .3s;
}
@keyframes fadeLeftAnime {
 from {
  opacity: 0;
  transform: translateX(-160px);
 }
 to {
  opacity: 1;
  transform: translateX(0);
 }
}
/* 右から */
.fadeRight.active {
 animation-name: fadeRightAnime;
 animation-duration: .5s;
 animation-delay: .5s;
 animation-fill-mode: forwards;
 opacity: 0;
}
@keyframes fadeRightAnime {
 from {
  opacity: 0;
  transform: translateX(160px);
 }
 to {
  opacity: 1;
  transform: translateX(0);
 }
}
/* タイトル用：衝撃的な出現アニメーション */
.title-impact {
 opacity: 0;
 display: inline-block; /* transformを有効にするため */
 will-change: transform, opacity, filter;
}
.title-impact.active {
 animation-name: titleImpactAnime;
 animation-duration: 0.2s;
 animation-delay: 1s;
 animation-timing-function: cubic-bezier(0.12, 0, 0.39, 0); /* 最初はゆっくり、後半急激に */
 animation-fill-mode: forwards;
}
.main .title-impact.active {
 animation-delay: 0s;
}
@keyframes titleImpactAnime {
 0% {
  opacity: 0;
  /* 3倍に拡大、横に100pxずらし、ボケを加える */
  transform: scale(3) translateX(-100px) skewX(-15deg);
  filter: blur(20px) brightness(2);
 }
 30% {
  opacity: 0.5;
  /* 急激に収束を開始 */
  filter: blur(10px) brightness(1.5);
 }
 80% {
  opacity: 1;
  /* 基準サイズより少し小さくして「反動」を作る準備 */
  transform: scale(0.95) translateX(0) skewX(0);
  filter: blur(0px) brightness(1.2);
 }
 100% {
  opacity: 1;
  transform: scale(1) translateX(0) skewX(0);
  filter: blur(0px) brightness(1);
 }
}
.article {
 max-width: 840px;
 width: 86%;
 margin: auto;
}
.article p {
 margin: 2.18rem 0;
}
.article p {
 text-align: justify;
}
.article figure {
 margin: 2.4rem 0;
}
/* SNS */
.sns-area {
 position: relative;
 display: flex;
 justify-content: center;
 align-items: center;
 gap: 1.2rem;
 margin: 30px auto;
}
.sns-area::before {
 content: "OFFICIAL";
 font-family: Helvetica, Arial, "sans-serif";
 font-weight: 600;
 font-size: clamp(1.3rem, 1.5vw, 1.6rem);
}
.sns-area li {
 overflow: hidden;
 width: 40px;
 aspect-ratio: 1;
 background-color: var(--base-white);
 border-radius: 50%;
 transition: transform .3s ease-out, box-shadow .3s ease-out;
 display: flex;
 justify-content: center;
 align-items: center;
}
.sns-area li a {
 display: block;
 width: 80%;
}
.sns-area li:hover {
 transform: scale(1.1);
}
@media screen and (min-width : 1024px) {
 .sns-area li {
  width: 50px;
 }
 .main-footer {
  margin: 30px 2% 0 1%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
 }
 .main-footer .sns-area {
  margin: 0;
 }
}
/* ------------------------------
	コンテンツ
------------------------------ */
.main {
 position: relative;
}
.main .main-inner {
 position: absolute;
 aspect-ratio: 1 / 1.6;
 width: 100%;
 padding: 10px 2% 0;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 z-index: 2;
}
.main .ttl-en {
 position: absolute;
 top: 7.6%;
 width: 100%;
 z-index: 1;
}
.main .kv {
 background-color: var(--base-white);
 position: relative;
 aspect-ratio: 1 / 1.6;
 overflow: hidden;
}
.main .kv::after {
 content: "";
 position: absolute;
 bottom: 0;
 left: 0;
 width: 100%;
 height: 20%; /* 下20%に指定 */
 /* 下（黒）から上（透明）へ向かうグラデーション */
 background: linear-gradient(to top, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
 /* 画像の上に重なるように設定 */
 pointer-events: none;
}
.main-title {
 width: 100%;
 display: flex;
 justify-content: space-between;
 align-items: flex-end;
}
.main .main-inner .ttl-jp {
 margin-bottom: 2%;
}
.main-footer {
 position: relative;
 z-index: 3;
}
/* イントロダクション */
#intro {
 position: relative;
 width: 100%;
 overflow: hidden;
 min-height: 500px;
}
.intro-inner {
 position: relative;
 z-index: 2;
 margin: 0 auto;
 padding: 20px 0;
}
.intro-ph {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 z-index: 1; /* 背面に配置 */
 pointer-events: none; /* 画像がクリックの邪魔をしないように設定 */
 background-image: url("../images/intro_bg.jpg");
 background-repeat: repeat;
 background-size: 150px 150px;
 background-position: center;
}
.intro-ph img {
 position: relative;
 top: 0;
 left: 0;
 width: 100%;
 height: auto; /* 比率を維持 */
 object-fit: cover;
}
#intro .intro-inner .con {
 display: flex;
 flex-direction: column;
 margin: auto;
}
.slanted-section {
 width: 100%;
 position: relative;
 z-index: 2;
 -webkit-transform: skew(0deg, -7zdeg);
 -moz-transform: skew(0deg, -7deg);
 transform: skew(0deg, -7deg);
 margin-top: 20px;
}
.slanted-section::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background-color: #fff100;
 opacity: .9;
 z-index: -1;
}
.slanted-section-inner {
 width: 91%;
 max-width: 1440px;
 margin: 0 auto;
 text-align: center;
 padding: 10px 0;
}
#intro .intro-inner .catch01 {
 margin-top: 10px;
}
.intro-read .article p {
 font-size: clamp(1.5rem, 2vw, 2rem);
 font-weight: 700;
 line-height: 1.6em;
 color: #faed00;
}
.intro-read .article p span {
 color: var(--base-white);
 font-size: 1.1em;
}
.intro-read .article p:last-of-type {
 margin-bottom: 1rem;
}
@media screen and (min-width : 1024px) {
 .main .kv::after {
  height: 25%;
 }
 .main .main-inner {
  aspect-ratio: 16 / 9;
  padding: 16px 2% 0;
 }
 .main .main-inner .catch01 {
  width: 74%;
 }
 .main .ttl-en {
  top: 11%;
  width: 62%;
  aspect-ratio: 1;
  left: -40px;
 }
 .main .main-inner .left-area {
  width: 76%;
  padding-bottom: 1%;
 }
 .main .main-inner .right-area {
  width: 20%;
 }
 .main .main-inner .ttl-jp {
  margin-bottom: .5%;
 }
 .main .kv {
  aspect-ratio: 16 / 9;
  width: 100%;
  display: flex;
  justify-content: flex-end;
 }
 .main .kv .main-ph {
  width: 55%;
  object-fit: cover;
 }
 #intro .intro-inner .con {
  align-items: flex-end;
  width: 90%;
  max-width: 1440px;
 }
 #intro .intro-inner .studio {
  width: 72%;
 }
 #intro .intro-inner .catch01 {
  width: 60%;
  margin-top: 20px;
  margin-bottom: 30px;
 }
 #intro .intro-inner .catch01 img {
  position: relative;
  left: 0;
  right: -5%;
  width: 105%;
 }
 .intro-ph img {
  left: 50%;
  transform: translate(-50%, 0); /* 常に中央揃え */
  /* 横幅の設定 */
  width: 125%; /* 縮小時も常に親要素の140%の大きさを維持 */
  max-width: 1900px; /* 最大横幅 */
  height: auto; /* 比率を維持 */
  object-fit: cover;
 }
 .intro-read {
  position: relative;
  top: -30px;
 }
 .intro-read .article {
  display: none;
 }
}
@media screen and (max-width : 1023px) {
 .main .kv .main-ph {
  width: 100%;
  aspect-ratio: 1 / 1.6;
  object-fit: cover;
  object-position: center top;
 }
 .main .main-inner .right-area {
  display: none;
 }
 .slanted-section-inner {
  width: 88%;
  padding: 5px 0;
 }
 .slanted-section::before {
  opacity: .8;
 }
 .intro-read .catch03, .slanted-section-inner img {
  -webkit-transform: skew(0deg, 7zdeg);
  -moz-transform: skew(0deg, 7deg);
  transform: skew(0deg, 7deg);
 }
 .intro-read .catch03 {
  width: 86%;
  margin: auto;
  padding-bottom: 20px;
 }
 #intro .intro-inner .studio {
  width: 70%;
  margin: auto;
 }
 .intro-ph::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 2.8 / 1;
 }
 #intro .intro-inner .catch01::after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1;
 }
 .intro-read {
  width: 100%;
  position: relative;
  z-index: 2;
  -webkit-transform: skew(0deg, -7zdeg);
  -moz-transform: skew(0deg, -7deg);
  transform: skew(0deg, -7deg);
 }
 .intro-read::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/intro_bg.jpg");
  background-repeat: repeat;
  background-size: 150px 150px;
  background-position: center;
  z-index: -1;
 }
}
/* ------------------------------
	キャスト
------------------------------ */
/* 基本レイアウト */
.cast-container {
 display: flex;
 flex-wrap: wrap;
 gap: 0; /* 隙間ゼロ */
 width: 100%; /* 親要素を画面幅いっぱいに */
 justify-content: flex-start; /* 左端から詰める */
 overflow: hidden;
 background-color: var(--base-black);
}
.cast-item {
 /* スマホ：5枚で100%になるよう 20% ぴったりに設定 */
 width: 20%;
 opacity: 0;
 animation-play-state: paused;
 aspect-ratio: 1 / 1.276; /* 必要であれば画像比率を固定 */
 overflow: hidden; /* はみ出し防止 */
}
.cast-item img {
 width: 100%;
 height: 100%; /* 親の高さに合わせる */
 display: block;
 object-fit: cover; /* 比率を保って隙間なく埋める */
}
/* PC：1024px以上 */
@media screen and (min-width: 1024px) {
 .cast-item {
  /* PC：10枚で100%になるよう 10% ぴったりに設定 */
  width: 10%;
 }
}
.cast-item.active {
 /* 拳銃で弾かれたような動き（前回の流用） */
 animation: shot-in 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
 animation-play-state: running;
}
@keyframes shot-in {
 0% {
  opacity: 0;
  transform: scale(3) rotate(15deg);
  filter: brightness(3) blur(5px);
 }
 20% {
  opacity: 1;
  transform: scale(0.9) rotate(-5deg);
  filter: brightness(1.5) blur(0px);
 }
 100% {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  filter: brightness(1);
 }
}
/* ------------------------------
	動画
------------------------------ */
#trailer {
 display: none;
}
#trailer iframe {
 transition: opacity 0.5s ease;
}
.bg_movie {
 position: relative;
 overflow: hidden;
 background-color: var(--base-black);
 width: 100%;
 padding: 50px 0;
}
.bg_movie .trailer-area {
 display: block;
 height: 100%;
}
.btn-play {
 position: absolute;
 z-index: 1;
 width: 100%;
 height: 100%;
 justify-content: center;
 align-items: center;
}
.__movie-wrap {
 width: 90%;
 max-width: 1040px;
 margin: auto;
 display: flex;
 justify-content: center;
 align-content: center;
}
.__movie-wrap-inner {
 width: 100%;
 margin: auto;
}
.__movie-wrap-inner iframe {
 display: block;
 width: 100%;
 max-width: 100%;
 height: auto;
 aspect-ratio: 1.77777778;
 -o-object-fit: cover;
 object-fit: cover;
}
.__btns {
 width: 80%;
 max-width: 1058px;
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 margin: 0 auto;
 padding: 4px;
}
.__btns li {
 width: 50%;
 width: calc(100% / 2);
 font-feature-settings: "palt"1;
 letter-spacing: 0;
 font-style: normal;
 margin: 0;
 padding: 4px;
 box-sizing: border-box;
 transition: all 0.3s ease;
}
.__btns li span {
 font-size: clamp(1.3rem, 2vw, 2.4rem);
 font-weight: 700;
 background: #9c6a21;
 width: 100%;
 height: 100%;
 display: flex;
 justify-content: center;
 align-items: center;
 text-decoration: none;
 color: #000;
 padding: 5px 10px; /* 左右に少し余裕を持たせました */
 line-height: 1.2em;
 min-height: 50px;
 text-align: center;
 cursor: pointer;
 opacity: .8;
 /* 角を少し丸くし、境界線を細く入れるとよりボタンらしくなります */
 border: 1px solid #7a5116;
}
/* ホバー・選択時の演出 */
.__btns li:hover span, .__btns li.select span {
 /* ホバー時は光が当たったように明るく */
 background: linear-gradient(to left, #9c6a21 0%, #ce9b3d 15%, #f8e285 50%, #ce9b3d 85%, #9c6a21 100%);
 color: #000; /* 文字色を黒のままにするか、お好みで調整してください */
 filter: brightness(1.1); /* 全体的に少し発光させる */
}
@media screen and (max-width : 912px) {
 .__movie-wrap, .__btns {
  width: 100%;
 }
 .__btns li {
  width: 50%;
 }
 .__btns li span {
  min-height: 30px;
  min-height: 40px;
 }
}
@media screen and (min-width : 913px) {
 .bg_movie {
  padding-bottom: 90px;
 }
 .__btns li.special {
  width: auto;
 }
}
/* ------------------------------
	フッター
------------------------------ */
.footer {
 width: 100%;
 background-color: var(--base-black);
 padding: 40px 0 30px;
}
.credit {
 display: flex;
 flex-direction: column;
 margin: auto;
 gap: 30px;
 max-width: 900px;
 width: 94%;
}
.credit .billing01 {
 max-width: 630px;
 margin: 20px auto 0;
}
.credit .billing02 {
 max-width: 400px;
 width: 86%;
 margin: 0 auto 0;
}
.copyright {
 text-align: center;
 color: var(--main-pink);
 font-size: clamp(1rem, 1.2vw, 1.4rem);
 margin-top: 30px;
}
@media screen and (max-width : 1023px) {
 .footer {
  padding-top: 40px;
 }
}
/* ------------------------------
	SONY PICTURES
------------------------------ */
/* Safariのガタつき防止 */
.page-wrapper, .wrap {
 transition: margin-top 0.2s ease-out; /* 動きを滑らかにして再計算を促す */
}
.header {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 text-align: center;
 z-index: 9;
}
.sonyheader {
 padding: 8px 10px 8px;
 font-size: 0;
 background: black;
 z-index: 9999;
 display: flex;
 justify-content: space-between;
 align-items: center;
 position: relative;
 line-height: 1em;
}
.footer-lists {
 display: flex;
 justify-content: center;
 align-items: center;
}
.footer .footer-lists {
 margin-bottom: 30px;
}
.footer-lists li {
 position: relative;
 display: inline-flex; /* flexからinline-flexに変更 */
 align-items: center;
 color: var(--base-white);
 font-size: clamp(1.1rem, 1.2vw, 1.4rem);
 line-height: 1.4em;
}
.footer-lists li a {
 padding: 0 1em;
 transition: opacity 0.3s ease, letter-spacing 0.3s ease;
}
.footer-lists li a:hover {
 opacity: 0.7;
}
.footer-lists li:not(:first-child)::before {
 content: "|";
 color: var(--base-white);
 opacity: 0.5;
}
/* ------------------------------
	レスポンシブ
------------------------------ */
.sp {
 display: none;
}
@media screen and (max-width : 1023px) {
 .sp {
  display: block;
 }
 .pc {
  visibility: hidden;
  display: none;
 }
}