@charset "utf-8";
/* スタイルシート
作成者：Hatomi Inc.
作成日：R8.1.29
------------------------------------------------------------------------------------*/
.home {}
.home #main {}
.home #main .block {}
.home #main .inner {}

.column__outer {
	width: 100%;
}

.column__inner {
  max-width: 1200px;
}


/* =========================================================
============================================================

  TOP Curtain + MV Opening

============================================================

========================================================= */
/* =========================================================
  Page Curtain
========================================================= */

body.home::before,
body.home::after{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

/* 紺（待機） */
body.home::before{
  z-index: 9999999;
  background: #091057;
  transform: translateY(0);
  opacity: 1;
}

/* 白（最初は上） */
body.home::after{
  z-index: 10000000;
  background: #fff;
  transform: translateY(-100%);
  opacity: 1;
}

/* アニメ（body.home.appear が付いたら動く） */
body.home.appear::after{
  animation: whiteSlide 2s cubic-bezier(.22,.85,.2,1) forwards;
  animation-delay: .8s;
}
body.home.appear::before{
  animation: navySlide 1.3s cubic-bezier(.22,.85,.2,1) forwards;
  animation-delay: .8s;
}

/* 白：上から入る→下へ抜ける*/
@keyframes whiteSlide{
  0%   { transform: translateY(-100%); opacity: 1; }
  35%  { transform: translateY(0);     opacity: 1; }
  100% { transform: translateY(110%);  opacity: 1; }
}

/* 紺：少し待ってから下へ落ちる */
@keyframes navySlide{
  0%   { transform: translateY(0);     opacity: 1; }
  28%  { transform: translateY(0);     opacity: 1; }
  100% { transform: translateY(110%);  opacity: 1; }
}

/* 軽減 */
@media (prefers-reduced-motion: reduce){
  body.home::before,
  body.home::after{
    display: none !important;
  }
}


/* ========================================================
  Opening
========================================================= */

/* 背景ズーム */
.mv .mv__media img{
  transform: scale(1.15);
  transform-origin: center;
  will-change: transform;
}

/* mv--ready でズーム開始 */
.mv.mv--ready .mv__media img{
  animation: mvKenBurns .8s ease-out forwards;
}

/* ズーム＋微上移動 */
@keyframes mvKenBurns{
  from{ transform: scale(1.15) translateY(0); }
  to  { transform: scale(1.17) translateY(-2%); }
}

/* コピー/スクロールは隠す */
.mv__copy,
.mvScroll{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .9s ease, transform .9s ease;
}

/* mv--ready で出す（コピー→スクロール） */
.mv.mv--ready .mv__copy{
  opacity: 1;
  transform: translateY(0);
  transition-delay: .25s;
}

.mv.mv--ready .mvScroll{
  opacity: 1;
  transform: translateY(0);
  transition-delay: .85s;
}

/* 軽減 */
@media (prefers-reduced-motion: reduce){
  .mv.mv--ready .mv__media img{ animation: none !important; transform: none !important; }
  .mv__copy, .mvScroll{ opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* =========================================================
  MV
========================================================= */

/* ========== :root ========== */
:root{
  --header-h: 88px;
}
/* TB */
@media only screen and (max-width: 960px){
  :root{ --header-h: 72px; }
}
/* SP */
@media only screen and (max-width: 480px){
  :root{ --header-h: 64px; }
}

/* ========== .mv ========== */
.mv{
  position: relative;
  height: calc(100svh - var(--header-h));
  min-height: 28rem;
  overflow: hidden;
}
/* TB */
@media only screen and (max-width: 960px){
  .mv{
    min-height: 24rem;
  }
}
/* SP */
@media only screen and (max-width: 480px){
  .mv{
    height: calc(100svh - var(--header-h));
    min-height: 0;
  }
}

/* ========== .mv__media ========== */
.mv__media{
  position: absolute;
  inset: 0;
  z-index: 0;
}
/* SP */
@media only screen and (max-width: 480px){
  .mv__media{
    position: absolute;
			 left: -13rem;
			 bottom: -3rem;
  }
}

.mv__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* SP（aspect-ratio化しない） */
@media only screen and (max-width: 480px){
  .mv__media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}


/* ========== .mv__content ========== */
.mv__content{
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
}
/* SP  */
@media only screen and (max-width: 480px){
  .mv__content{
    padding: 0;
    align-items: center;
  }
}

.mv__content .column__outer{
  width: 100%;
  height: 100%;
  display: flex;
}
/* TB */
@media only screen and (max-width: 960px){
  .mv__content .column__outer{
    width: 100%;
    height: 100%;
    display: flex;
  }
}
/* SP */
@media only screen and (max-width: 480px){
  .mv__content .column__outer{
    width: 100%;
    height: 100%;
    display: flex;
  }
}


.mv__inner{
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
}
/* TB */
@media only screen and (max-width: 960px){
  .mv__inner{
    height: 100%;
    grid-template-rows: 1fr auto;
    align-items: center;
  }
}
/* SP */
@media only screen and (max-width: 480px){
  .mv__inner{
    height: 100%;
    grid-template-rows: 1fr auto;
    align-items: center;
  }
}


/* ========== .mv__copyWrap ========== */
.mv__copyWrap{
  display: flex;
  justify-content: flex-end;
}
/* TB */
@media only screen and (max-width: 960px){
  .mv__copyWrap{
    justify-content: flex-end;
  }
}
/* SP */
@media only screen and (max-width: 480px){
  .mv__copyWrap{
    justify-content: flex-end;
  }
}


/* ========== .mv__copy ========== */
.mv__copy{
  width: fit-content;
  text-align: left;
  font-size: clamp(1.7rem, 1.2vw + 1.25rem, 2.5rem);
  line-height: 1.7;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,.95);
  font-weight: 700;
  text-shadow:
    0 0.06em 0 rgba(0,0,0,.55),
    0 0.18em 0.35em rgba(0,0,0,.45);
}
/* TB */
@media only screen and (max-width: 960px){
  .mv__copy{
    font-size: clamp(1.45rem, 1.5vw + 1.1rem, 2.1rem);
  }
}
/* SP */
@media only screen and (max-width: 480px){
  .mv__copy{
    font-size: clamp(1.25rem, 3vw + 0.9rem, 1.6rem);
    line-height: 1.75;
    letter-spacing: 0.06em;
  }
}

/* ========== MV copy line-break ========== */
.mv__copy br{
  line-height: 0;
}
.pc__view{ display: inline; }
.sp__view{ display: none; }
/* SP */
@media only screen and (max-width: 480px){
  .pc__view{ display: none; }
  .sp__view{ display: inline; }
}


/* =========================================================
  MV Scroll Indicator
========================================================= */

/* ========== .mvScroll ========== */
.mvScroll{
  justify-self: end;
  align-self: end;
  margin-bottom: 2rem;
  display: grid;
  justify-items: center;
  gap: 0.6rem;
  z-index: 2;
  pointer-events: none;
}
/* TB */
@media only screen and (max-width: 960px){
  .mvScroll{
    margin-bottom: 1.5rem;
    gap: 0.55rem;
  }
}
/* SP */
@media only screen and (max-width: 480px){
  .mvScroll{
    display: none;
  }
}


/* ========== .mvScroll__label ========== */
.mvScroll__label{
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  color: rgba(255,255,255,.9);
  line-height: 1;
	 margin-bottom: .5rem;
}
/* TB */
@media only screen and (max-width: 960px){
  .mvScroll__label{
    font-size: 0.7rem;
  }
}
/* SP */
@media only screen and (max-width: 480px){
  .mvScroll__label{
    display: none;
  }
}

/* ========== .mvScroll__line ========== */
.mvScroll__line{
  position: relative;
  width: 2px;
  height: 3.25rem;
  background: rgba(255,255,255,.35);
  border-radius: 999px;
}
/* TB */
@media only screen and (max-width: 960px){
  .mvScroll__line{
    height: 3rem;
  }
}
/* SP */
@media only screen and (max-width: 480px){
  .mvScroll__line{
    display: none;
  }
}

/* ========== .mvScroll__line::before ========== */
.mvScroll__line::before{
  content: "";
  position: absolute;
  inset-inline: 0;
  top: -30%;
	 left: -.7px;
  height: 30%;
  background: rgba(255,255,255,.95);
  animation: mvScrollLine 2s ease-in-out infinite;
	 width: 3.5px;
}

/* ========== keyframes ========== */
@keyframes mvScrollLine{
  0%   { transform: translateY(0);     opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateY(240%); opacity: 0; }
}

/* =======================================================
  MV SP
========================================================= */
@media (max-width: 700px){

  .mv .mv__media img{
    transform: scale(1.08);
    transform-origin: 0% center;
			 object-position: 40% center !important;
  }

  .mv.mv--ready .mv__media img{
    animation: mvKenBurnsSP .6s ease-out forwards;
  }

  @keyframes mvKenBurnsSP{
    from{ transform: scale(1.08); }
    to  { transform: scale(1.15); }
  }

}

/* =========================================================
  View Information
========================================================= */

/* ========== .viewInfo ========== */
.viewInfo{
  padding: 5rem 0;
  background: #CECDDF;
}
/* TB */
@media only screen and (max-width: 1000px){
  .viewInfo{
    padding: 4.25rem 0;
  }
}
/* SP */
@media only screen and (max-width: 730px){
  .viewInfo{
    padding: 2.5rem 0;
  }
}


/* ========== .viewInfo__grid ========== */
.viewInfo__grid{
  display: grid;
  grid-template-columns: minmax(25rem, 1.15fr) minmax(18rem, 33.125rem);
  gap: 3.5rem;
  align-items: end;
}

@media only screen and (min-width: 1201px){
  .viewInfo__grid{
    grid-template-columns: minmax(25rem, 1.15fr) minmax(18rem, 37.125rem);
  }
}
@media only screen and (min-width: 1001px){
  .viewInfo__grid{
    align-items: end;
  }
}
/* TB */
@media only screen and (max-width: 1000px){
  .viewInfo__grid{
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* SP */
@media only screen and (max-width: 730px){
  .viewInfo__grid{
			 display: flex;
			 gap:1rem;
			 flex-direction: column;
  }
}

/* ========== .viewInfo__text ========== */
.viewInfo__text{
}

@media only screen and (max-width: 730px){
  .viewInfo__text{
			 display: flex;
			 flex-direction: column;
			 width: 100%;
  }
}

/* ========== .viewInfo__title ========== */
.viewInfo__title{
  margin: 0 0 1.25rem;
  font-size: clamp(2.6rem, 2.2vw + 1.4rem, 4rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: #0b1b55;
  text-align: left;
}

/* TB */
@media only screen and (max-width: 730px){
  .viewInfo__title{
    text-align: center;
			 letter-spacing: 0.1em;
			 font-size: clamp(2rem, 2.2vw + 1.4rem, 2rem);
  }
}

/* SP */
@media only screen and (max-width: 480px){
  .viewInfo__title{
    text-align: center;
  }
}


/* ========== .viewInfo__titleBr ========== */
.viewInfo__titleBr{
  display: inline;
}

/* TB */
@media only screen and (max-width: 730px){
  .viewInfo__titleBr{
    display: none;
  }
}

/* SP */
@media only screen and (max-width: 480px){
  .viewInfo__titleBr{
    display: none;
  }
}

/* ========== .viewInfo__lead ========== */
.viewInfo__lead{
  margin: 0;
  font-size: clamp(1.1rem, 0.5vw + .5rem, 1.2rem);
  line-height: 2.1;
  letter-spacing: 0.1em;
}

@media only screen and (min-width: 1201px) {
  .viewInfo__lead{
			 font-size: clamp(1.4rem, 0.5vw + .5rem, 1.45rem);
  }
}
@media only screen and (min-width: 1101px) and (max-width: 1200px) {
  .viewInfo__lead{
			 font-size: clamp(1.3rem, 0.5vw + .5rem, 1.3rem);
  }
}
@media only screen and (min-width: 1001px) and (max-width: 1100px) {
  .viewInfo__lead{
			 font-size: clamp(1.15rem, 0.5vw + .5rem, 1.2rem);
  }
}
@media only screen and (max-width: 1000px){
  .viewInfo__lead{
    line-height: 2;
			 font-size: clamp(1rem, 0.5vw + 0.9rem, 1rem);
  }
}
@media only screen and (max-width: 800px){
  .viewInfo__lead{
    line-height: 2;
			 font-size: clamp(.9rem, 0.5vw + 0.9rem, .9rem);
  }
}
/* SP */
@media only screen and (max-width: 730px){
  .viewInfo__lead{
    line-height: 2;
			 text-align: center;
			 margin-bottom: 1rem;
			 font-size: clamp(1rem, 0.5vw + 0.9rem, 1rem);
  }
}

/* ========== .viewInfo__leadBr ========== */
/* PC */
.viewInfo__leadBr{
  display: none;
}

/* 730px以下：改行を有効化 */
@media only screen and (max-width: 730px){
  .viewInfo__leadBr{
    display: inline;
  }
}

.viewInfo__leadBr_v2{
  display: inline;
}

@media only screen and (min-width: 731px) and (max-width: 900px){
  .viewInfo__leadBr_v2{
    display: none;
  }
}

/* ========== .viewInfo__list ========== */
.viewInfo__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2.25rem;
	 justify-items: stretch;
	 justify-self: end;
	
}
@media only screen and (min-width: 1001px){
  .viewInfo__list{
    justify-self: flex-start;
  }
}

/* TB */
@media only screen and (max-width: 1000px){
  .viewInfo__list{
    gap: 1.75rem;
  }
}
@media only screen and (max-width: 730px){
  .viewInfo__list{
    display: flex;
			 flex-direction: column;
			 max-width: 100%;
			 margin: 0 auto;
  }
}

@media only screen and (max-width: 480px){
  .viewInfo__list{
    width: 100%;
  }
}


/* ========== .viewInfo__item ========== */
.viewInfo__item{
  width: 100%;
  max-width: 32.125rem;
}
@media only screen and (max-width: 1100px){
  .viewInfo__item{
    max-width: 30.125rem;
  }
}
@media only screen and (max-width: 1000px){
  .viewInfo__item{
    max-width: 28rem;
  }
}
@media only screen and (max-width: 800px){
  .viewInfo__item{
    max-width: 23.5rem;
  }
}
@media only screen and (max-width: 730px){
  .viewInfo__item{
    max-width: none;
  }
}
/* SP */
@media only screen and (max-width: 480px){
  .viewInfo__item{
    max-width: none;
  }
}


/* =========================================================
  Button
========================================================= */

/* ========== .viewInfoBtn ========== */
.viewInfoBtn{
  --shadow-shift: 0.25rem;
  --shadow-color: #00b7b0;
  --navy: #0b1b55;
  --arrow-len: 10.625rem;

  position: relative;
  display: flex;
  align-items: center;
  gap: 1.35rem;

  width: 100%;
  padding: 1.2rem 6rem 1.2rem 2.25rem;
  color: #fff;
  text-decoration: none;
  overflow: visible;
}
/* TB */
@media only screen and (max-width: 1000px){
  .viewInfoBtn{
    padding: 1.0rem 5rem 1.0rem 1rem;
    gap: .5rem;
  }
}
/* SP */
@media only screen and (max-width: 480px){
  .viewInfoBtn{
    padding: 1rem 0 0;
    gap: 0;
			 flex-direction: column;
			 justify-content: center;
			 text-align: center;
			 line-height: 1.2;
  }
}


/* ========== shadow plate ========== */
.viewInfoBtn::before{
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(var(--shadow-shift), var(--shadow-shift));
  background: var(--shadow-color);
  z-index: 0;
  pointer-events: none;
}
/* TB */
@media only screen and (max-width: 960px){
  .viewInfoBtn::before{
    transform: translate(var(--shadow-shift), var(--shadow-shift));
  }
}
/* SP */
@media only screen and (max-width: 480px){
  .viewInfoBtn::before{
    transform: translate(var(--shadow-shift), var(--shadow-shift));
  }
}


/* ========== navy plate ========== */
.viewInfoBtn::after{
  content: "";
  position: absolute;
  inset: 0;
  background: var(--navy);
  z-index: 1;
  pointer-events: none;
}
/* TB */
@media only screen and (max-width: 960px){
  .viewInfoBtn::after{
    inset: 0;
  }
}
/* SP */
@media only screen and (max-width: 480px){
  .viewInfoBtn::after{
    inset: 0;
  }
}

/* ========== variants ========== */
.viewInfoBtn--green{ --shadow-color:#00b7b0; }
.viewInfoBtn--red{ --shadow-color:#ff3b30; }
.viewInfoBtn--orange{ --shadow-color:#ffb020; }


/* ========== .viewInfoBtn__main ========== */
.viewInfoBtn__main{
  position: relative;
  z-index: 2;
  display: inline-block;

  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.25;
  font-size: clamp(1.1rem, 0.85vw + 0.95rem, 1.3rem);
  white-space: nowrap;
}
/* TB */
@media only screen and (max-width: 1000px){
  .viewInfoBtn__main{
    font-size: clamp(1.1rem, 0.85vw + 0.95rem, 1.2rem);
  }
}
@media only screen and (max-width: 800px){
  .viewInfoBtn__main{
    font-size: clamp(1.1rem, 0.85vw + 0.95rem, 1.0rem);
  }
}
/* SP */
@media only screen and (max-width: 480px){
  .viewInfoBtn__main{
    font-size: 1rem;
    white-space: nowrap;
  }
}


/* ========== .viewInfoBtn__sub ========== */
.viewInfoBtn__sub{
  position: relative;
  z-index: 2;
  display: inline-block;

  font-weight: 700;
  font-size: 95%;
  letter-spacing: 0.03em;
  opacity: .95;
  white-space: nowrap;
}
/* TB */
@media only screen and (max-width: 1000px){
  .viewInfoBtn__sub{
    white-space: nowrap;
  }
}

@media only screen and (max-width: 800px){
  .viewInfoBtn__sub{
    font-size: 80%;
  }
}

/* SP */
@media only screen and (max-width: 480px){
  .viewInfoBtn__sub{
    white-space: nowrap;
  }
}


/* =======================================================
  Arrow
========================================================= */

/* 横棒 */
.viewInfoBtn::marker{ content:""; }

/* =======================================================
  Arrow
========================================================= */

/* 横棒 */
.viewInfoBtn .viewInfoBtn__arrowLine{
  position: absolute;
  z-index: 2;
  right: -2rem;
  top: 70%;
  width: var(--arrow-len);
  height: 1px;
  background: rgba(255,255,255,.9);
  transform: translateY(-50%);
  opacity: .9;
  transition: transform .25s ease, opacity .25s ease;
}

/* 矢尻 */
.viewInfoBtn .viewInfoBtn__arrowHead{
  position: absolute;
  z-index: 2;

  right: calc(-2rem + 0.05rem);
  top: 70%;

  width: 0.8rem;
  height: 1px;
  background: rgba(255,255,255,.9);
  transform-origin: right center;
  transform: translateY(-50%) rotate(35deg);
  opacity: .9;
  transition: transform .25s ease, opacity .25s ease;
}

/* hoverで右へ */
.viewInfoBtn:hover .viewInfoBtn__arrowLine{
  transform: translateY(-50%) translateX(0.5rem);
  opacity: 1;
}
.viewInfoBtn:hover .viewInfoBtn__arrowHead{
  transform: translateY(-50%) translateX(0.5rem) rotate(35deg);
  opacity: 1;
}

/* SP */
@media only screen and (max-width: 730px){
  .viewInfoBtn .viewInfoBtn__arrowLine,
  .viewInfoBtn .viewInfoBtn__arrowHead{
    display: none;
  }
}

/* =======================================================
  ViewInfo inview
========================================================= */

.viewInfo.is-inview .viewInfo__text{
  opacity: 1;
  transform: translateY(0);
}

.viewInfo__text{
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.viewInfo__item{
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s ease, transform .7s ease;
}

.viewInfo.is-inview .viewInfo__item{
  opacity: 1;
  transform: translateX(0);
}

/* ボタンを順番に出す */
.viewInfo.is-inview .viewInfo__item:nth-child(1){ transition-delay: .2s; }
.viewInfo.is-inview .viewInfo__item:nth-child(2){ transition-delay: .35s; }
.viewInfo.is-inview .viewInfo__item:nth-child(3){ transition-delay: .5s; }


/* =======================================================
  Movie Block
========================================================= */

/* ========== .movieBlock ========== */
.movieBlock{
  padding: 4rem 0;
  background: #CECDDF;
}

/* TB */
@media only screen and (max-width: 960px){
  .movieBlock{
    padding: 2rem 0 4rem;
  }
}

/* SP */
@media only screen and (max-width: 480px){
  .movieBlock{
    padding: 1rem 0 3rem;
  }
}


/* ========== .movieBlock__wrap ========== */
.movieBlock__wrap{
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}


/* =========================================================
  Movie Player (16:9 frame)
========================================================= */

.moviePlayer{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;

  --circle: 12rem;
}

/* TB */
@media only screen and (max-width: 960px){
  .moviePlayer{
    --circle: 10rem;
  }
}

/* SP */
@media only screen and (max-width: 480px){
  .moviePlayer{
    --circle: 9rem;
  }
}

.moviePlayer > .movieThumb,
.moviePlayer > iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}


/* =======================================================
  Thumbnail Button
========================================================= */

.movieThumb{
  position: relative;
  display: block;
  width: 100%;
  height: 100%;

  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  overflow: hidden;
}

.movieThumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* =======================================================
  Play UI
========================================================= */

/* ========== circle ========== */
.movieThumb__circle{
  position: absolute;
  left: 50%;
  top: 50%;

  width: var(--circle);
  height: var(--circle);

  border: 1px solid rgba(255,255,255,.9);
  border-radius: 50%;

  transform: translate(-50%, -50%);
  transition: transform .25s ease;
  pointer-events: none;
}

/* ========== PLAY MOVIE ========== */
.movieThumb__label{
  position: absolute;
  left: 50%;
  top: calc(50% - (var(--circle) * 0.18));
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  font-weight: 600;
  white-space: nowrap;
  text-align: center;
  pointer-events: none;
}

/* TB */
@media only screen and (max-width: 960px){
  .movieThumb__label{
    font-size: 0.74rem;
  }
}

/* SP */
@media only screen and (max-width: 480px){
  .movieThumb__label{
    font-size: 0.7rem;
  }
}


/* ========== play triangle ========== */
.movieThumb__play{
  position: absolute;
  left: 50%;
  top: 51%;

  width: 0;
  height: 0;
  border-left: calc(var(--circle) * 0.06) solid #fff;
  border-top:  calc(var(--circle) * 0.04) solid transparent;
  border-bottom: calc(var(--circle) * 0.04) solid transparent;

  transform: translate(-38%, -45%);
  pointer-events: none;
}


/* ========== hover ========== */
.movieThumb:hover .movieThumb__circle{
  transform: translate(-50%, -50%) scale(1.05);
}

/* =======================================================
  MovieBlock inview
========================================================= */

.movieBlock{
}

.moviePlayer{
  opacity: 0;
  transform: scale(0.96);
  transition: 
    opacity .9s cubic-bezier(.22,.85,.2,1),
    transform 1.2s cubic-bezier(.22,.85,.2,1);
}

.movieBlock.is-inview .moviePlayer{
  opacity: 1;
  transform: scale(1);
}


/* =======================================================
  Public Info
========================================================= */

.publicInfo{
  position: relative;
  padding: 5rem 0;
  color: #fff;
  overflow: hidden;
	 margin-bottom: 4rem;
}

.publicInfo::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/bg_publicinfo.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.publicInfo::after{
  content: "";
  position: absolute;
  inset: 0;
  /*background: linear-gradient(180deg, rgba(11,27,85,.78), rgba(11,27,85,.70));*/
  z-index: 0;
}

.publicInfo .column__outer,
.publicInfo .column__inner{
  position: relative;
  z-index: 1;
}

/* タイトル */
.publicInfo__title{
  margin: 0 0 3rem;
  text-align: center;
  font-size: clamp(1.6rem, 1.2vw + 1.2rem, 2.2rem);
  letter-spacing: 0.08em;
}

/* =========================================================
  Card
========================================================= */

.publicInfoCard{
  /*max-width: 70rem;*/
  margin: 0 auto;
}

.publicInfoCard__date{
  margin: 0.9rem 0 0;
  text-align: right;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,.95);
}

/* =======================================================
  Table base
========================================================= */

.publicInfoTable{
  border: 1px solid rgba(255,255,255,1);
}

/* 行 */
.publicInfoTable__row{
  border-top: 1px solid rgba(255,255,255,1);
}
.publicInfoTable__row:first-child{
  border-top: none;
}

/* セル */
.publicInfoTable__cell{
  padding: 1.25rem 1.5rem;
  background: transparent;
  color: rgba(255,255,255,.97);
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* 1段目：白帯 */
.publicInfoTable__cell--head{
  background: rgba(255,255,255,1);
  color: #0b1b55;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.08em;
  padding: 1.35rem 1.5rem;
}

@media only screen and (max-width: 480px){
.publicInfoTable__cell--head{
  font-size: clamp(.9rem, 1.2vw + 1.2rem, .9rem);
  letter-spacing: 0.04em;
}
}

@media only screen and (max-width: 380px){
.publicInfoTable__cell--head{
  text-align: left;
	 line-height: 1.4;
}
}

/* SP */
.publicInfoTable__cell--subHead{
  text-align: center;
  font-weight: 700;
  padding: 1.25rem 1.5rem;
}

@media only screen and (max-width: 480px){
.publicInfoTable__cell--subHead{
  font-size: clamp(.9rem, 1.2vw + 1.2rem, .9rem);
}
}


/* =======================================================
  PC layout
========================================================= */

.publicInfoTable--pc{
  display: block;
}

.publicInfoTable__row--pcGrid{
  display: grid;
  grid-template-columns: 34% 22% 22% 22%;
  grid-template-rows: auto auto;
}

.publicInfoTable__cell--rowLabel{
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 700;
  padding: 1.5rem 1.25rem;
}

/* 年度 */
.publicInfoTable__cell--year{
  grid-row: 1 / 2;
  text-align: center;
  font-weight: 700;
  padding: 1.2rem 0.75rem;
}

/* 値 */
.publicInfoTable__cell--val{
  grid-row: 2 / 3;
  text-align: center;
  font-weight: 700;
  padding: .8rem .75rem;
}

.publicInfoTable__row--pcGrid > .publicInfoTable__cell--year,
.publicInfoTable__row--pcGrid > .publicInfoTable__cell--val{
  border-left: 1px solid rgba(255,255,255,1);
}

.publicInfoTable__cell--val{
  border-top: 1px solid rgba(255,255,255,1);
}

/* =======================================================
  SP layout
========================================================= */

.publicInfoTable--sp{
  display: none;
}

.publicInfoTable__row--pair{
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.publicInfoTable__cell--right{
  border-left: 1px solid rgba(255,255,255,1);
  text-align: center;
  font-weight: 700;
}

.publicInfoTable__cell--left{
  text-align: center;
  font-weight: 700;
}

/* =======================================================
  Switch breakpoint（730）
========================================================= */

@media only screen and (max-width: 730px){
	 .publicInfoTable__cell.publicInfoTable__cell--head {
   padding: .8rem .5rem;
  }
	
	 .publicInfoTable__cell.publicInfoTable__cell--subHead {
   padding: .8rem .5rem;
  }
	
  .publicInfo{
    padding: 2.75rem 0;
  }

  .publicInfo__title{
    margin-bottom: 2rem;
  }

  .publicInfoTable--pc{
    display: none;
  }
  .publicInfoTable--sp{
    display: block;
  }

  .publicInfoCard__date{
    text-align: right;
    font-size: 0.9rem;
  }

  .publicInfoTable__cell{
    padding: .6rem .5rem;
  }
}

/* =======================================================
  PublicInfo inview
========================================================= */

.publicInfo__title{
  opacity: 0;
  transition: opacity .8s ease;
}

.publicInfo.is-inview .publicInfo__title{
  opacity: 1;
}

.publicInfoCard{
  opacity: 0;
  transition: opacity .9s ease .2s;
}

.publicInfo.is-inview .publicInfoCard{
  opacity: 1;
}

