@charset "utf-8";
/*================================
common
================================*/
:root {
  --colo-main: #252525;
  --colo-red: #e2041b;
	--gap_96px: clamp(32px, 12vw, 96px);
	--gap_80px: clamp(27px, 10vw, 80px);
	--gap_64px: clamp(21px, 8vw, 64px);
	--gap_48px: clamp(16px, 6vw, 48px);
	--gap_32px: clamp(11px, 4vw, 32px);
	--gap_24px: clamp(8px, 3vw, 24px);
	--gap_16px: clamp(5px, 2vw, 16px);
	--gap_8px: clamp(3px, 1vw, 8px);
}

body {
	width: 100%;
	position: relative;
}

body,figure,h1,h2,h3,h4,h5,h6,li,ol,p,ul,dl,dt,dd {
	margin: 0;
	padding: 0;
}
h1,h2,h3,h4,h5,h6,p {
	font-size: inherit;
	font-weight: 500;
}
li,ol,ul {
	list-style-type: none;
}
table {
	width: 100%;
}

#page {
	font-size: clamp(18px, 2.2vw, 20px);
	color: var(--colo-main);
	font-family: "Noto Sans CJK JP", Lato, "Noto Sans JP", "游ゴシック Medium", 游ゴシック体, "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.6;
	margin: 0 auto;
	/* max-width: 1920px; */
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt" 1;
  position: relative;
}

/* .top__bg {
  position: relative;
}

.top__bg::before {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: url(/sennan2026/assets/assets/images/bg.jpg) no-repeat center / cover;
  z-index: -1;
} */

#page * {
	box-sizing: border-box;
}
#page img {
	max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  pointer-events: none;
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -moz-touch-callout:none;
  -moz-user-select:none;
  user-select:none;
}

@media print {
  body { display: none }
}

#page a {
	transition: all 0.3s;
	text-decoration: none;
}
#page a[tabindex*="-1"] {
	pointer-events: none;
}
#page a[tabindex*="-1"]:hover {
	opacity: 1;
}
/* リンクとボタンのoutlineを非表示にする */
#page a,
#page button {
	outline: none;
	cursor: pointer;
}
/* ボタンとリンクにフォーカスした時にoutlineが表示されるようにする */
#page a:focus-visible {
	outline: #3683BF solid 2px;
	outline-offset: 2px;
}
#page button:focus-visible {
	outline: #3683BF solid 2px;
	outline-offset: 1px;
}
#page a:hover {
	cursor: pointer;
	text-decoration: none;
	opacity: 0.7;
}
#page label {
	cursor: pointer;
}

#page em {
	font-style: normal;
	font-weight: bold;
}

#page picture { display: block;}

/* #page section:nth-of-type(4),
#page section:last-of-type { margin-bottom: 0;} */

/* #page section {
  padding-top: 10px;
  margin-top: -10px;
} */

.pc {
  display: block;
}

.sp {
  display: none;
}

.ib {
	font-size: inherit !important;
	display: inline-block;
}


/*================================
アニメーションcss
================================*/
.animated {
  animation-fill-mode: both;
  animation-duration: 0.5s;
}

.fadeIn{
  opacity:0;
}


/* その場で */
.fadeIn.animated {
  animation-name:fadeInAnime;
}
  
@keyframes fadeInAnime{
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

/* 下から */
.fadeUp {
  opacity:0;
}
.fadeUp.animated{
  animation:fadeUpAnime .5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeUpAnime{
  0% {
  transform: translateY(30px);
  opacity: 0;
}
80% {
  opacity: 1;
}
100% {
  opacity: 1;
  transform: translateY(0);
}
}

/* 上から */

.fadeDown {
  opacity:0;
}

.fadeDown.animated{
  animation-name:fadeDownAnime;
}

@keyframes fadeDownAnime{
  from {
      opacity: 0;
      transform: translateY(-10px);
  }

  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* 左から */

.fadeLeft {
  opacity:0;
}

.fadeLeft.animated{
  animation-name:fadeLeftAnime;
}

@keyframes fadeLeftAnime{
  from {
      opacity: 0;
      transform: translateX(-10px);
  }

  to {
      opacity: 1;
      transform: translateX(0);
  }
}

/* 右から */

.fadeRight {
  opacity:0;
}

.fadeRight.animated {
  animation-name:fadeRightAnime;
}

@keyframes fadeRightAnime{
  from {
      opacity: 0;
      transform: translateX(10px);
  }

  to {
      opacity: 1;
      transform: translateX(0);
  }
}

.text-focus-in {
opacity:0;
}

/* text出現 fuwa */
.text-focus-in.animated {
-webkit-animation: text-focus-in 0.6s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
animation: text-focus-in 0.6s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

@-webkit-keyframes text-focus-in {
0% {
  -webkit-filter: blur(12px);
  filter: blur(12px);
  opacity: 0;
}
100% {
  -webkit-filter: blur(0px);
  filter: blur(0px);
  opacity: 1;
}
}
@keyframes text-focus-in {
0% {
  -webkit-filter: blur(12px);
  filter: blur(12px);
  opacity: 0;
}
100% {
  -webkit-filter: blur(0px);
  filter: blur(0px);
  opacity: 1;
}
}

/* text出現 hirogaru */
.tracking-in-expand {
opacity:0;
}

.tracking-in-expand.animated {
-webkit-animation:tracking-in-expand .7s cubic-bezier(.215,.61,.355,1.000) both;
animation:tracking-in-expand .7s cubic-bezier(.215,.61,.355,1.000) both
}

@-webkit-keyframes tracking-in-expand {
0% {
  letter-spacing:-.5em;
  opacity:0
}
40% {
  opacity:.6
}
100% {
  opacity:1
}
}
@keyframes tracking-in-expand {
  0% {
    letter-spacing:-.5em;
    opacity:0
  }
  40% {
    opacity:.6
  }
  100% {
    opacity:1
  }
}

/* 右傾く */
.fadeRotateRight {
opacity: 0;
}
.fadeRotateRight.animated {
animation:fadeRotateRight 1s ease-in-out both;
}

@keyframes fadeRotateRight {
0% {
  opacity: 0;
  rotate: 0deg;
}
25% {
  opacity: 1;
}
50% {
  rotate: -20deg;
}
100% {
  rotate: 0deg;
  opacity: 1;
}
}

/* 左傾く */
.fadeRotateLeft {
opacity: 0;
}
.fadeRotateLeft.animated {
animation:fadeRotateLeft 1s ease-in-out both;
}

@keyframes fadeRotateLeft {
0% {
  opacity: 0;
  rotate: 0deg;
}
25% {
  opacity: 1;
}
50% {
  rotate: 20deg;
}
100% {
  rotate: 0deg;
  opacity: 1;
}
}

/* 滑らかに変形して出現 */
.smoothTrigger {
opacity:0;
}

.smoothTrigger.animated{
animation-name:smoothAnime;
animation-duration:1s;
animation-fill-mode:forwards;
transform-origin: left;
}

@keyframes smoothAnime{
from {
  transform: translate3d(0, 60%, 0) skewY(12deg);
  opacity:0;
}

to {
  transform: translate3d(0, 0, 0) skewY(0);
  opacity:1;
}
}

/*背景→text出現 （span）*/

.bgextend {
opacity: 0;
}
.bgextend.animated{
animation-name:bgextendAnimeBase;
animation-timing-function: ease-in-out;
position: relative;
overflow: hidden;/*　はみ出た色要素を隠す　*/
}
@keyframes bgextendAnimeBase{
0% { opacity:0; }
50% { opacity:0; }
100% { opacity:1; }
}

/*左から*/

.bgLRextend.animated::before{
--band-padding: 0.25em;
animation-name:bgLRextendAnime;
animation-duration: 0.8s;
animation-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
animation-fill-mode: both;
content: "";
position: absolute;
width: 100%;
height: calc(100% + var(--band-padding)* 2);
top: calc(var(--band-padding)* -1);
background-color: #fff;/*伸びる背景色の設定*/
z-index: 1;
}
@keyframes bgLRextendAnime{
0% {
transform-origin:left;
transform:scaleX(0);
}
50% {
transform-origin:left;
transform:scaleX(1);
}
50.001% {
transform-origin:right;
}
100% {
transform-origin:right;
transform:scaleX(0);
}
}

/*右から*/
.bgRLextend::before{
animation-name:bgRLextendAnime;
animation-duration:1s;
animation-fill-mode:forwards;
content: "";
position: absolute;
width: 100%;
height: 100%;
background-color: #fff;/*伸びる背景色の設定*/
}
@keyframes bgRLextendAnime{
0% {
transform-origin:right;
transform:scaleX(0);
}
50% {
transform-origin:right;
transform:scaleX(1);
}
50.001% {
transform-origin:left;
}
100% {
transform-origin:left;
transform:scaleX(0);
}
}

/*下から*/
.bgDUextend::before{
animation-name:bgDUextendAnime;
animation-duration:1s;
animation-fill-mode:forwards;
content: "";
position: absolute;
width: 100%;
height: 100%;
background-color: #fff;/*伸びる背景色の設定*/
}
@keyframes bgDUextendAnime{
0% {
transform-origin:bottom;
transform:scaleY(0);
}
50% {
transform-origin:bottom;
transform:scaleY(1);
}
50.001% {
transform-origin:top;
}
100% {
transform-origin:top;
transform:scaleY(0);
}
}

/*上から*/
.bgUDextend::before{
animation-name:bgUDextendAnime;
animation-duration:1s;
animation-fill-mode:forwards;
content: "";
position: absolute;
width: 100%;
height: 100%;
background-color: #666;/*伸びる背景色の設定*/
}
@keyframes bgUDextendAnime{
0% {
transform-origin:top;
transform:scaleY(0);
}
50% {
transform-origin:top;
transform:scaleY(1);
}
50.001% {
transform-origin:bottom;
}
100% {
transform-origin:bottom;
transform:scaleY(0);
}
}

/*text左から右*/
.leftAnime {
  opacity: 0;
  overflow: hidden;
  display: inline-block;
}

.leftAnimeInner {
display: inline-block;
}

.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 1s;
  animation-fill-mode: forwards;
opacity: 0;
}

@keyframes slideTextX100 {
from {
transform: translateX(-100%);
/*要素を左の枠外に移動*/
opacity: 0;
}

to {
transform: translateX(0);
/*要素を元の位置に移動*/
opacity: 1;
}
}

#page_top {
  position: fixed;
  right: 0.5%;
  bottom: 2%;
  display: block;
  width: min(20vw,100px);
  z-index: 999;
}

#page_top img { width: 100%;}

.top__movie {
  margin: var(--gap_24px) auto;
}

.movie {
  position: relative;
  max-width: 900px;
  aspect-ratio: 16/9;
  margin: 0 auto var(--gap_32px);
  overflow: hidden;
}

.tver_area {
	text-align: center;
	text-shadow: 0 0 0.2em #fff,0 0 0.2em #fff,0 0 0.3em #fff,0 0 0.3em #fff,0 0 0.3em #fff;
    margin: var(--gap_64px) auto var(--gap_32px);
    width: clamp(250px, 50vw, 450px);
}

.tver_info {
    margin-bottom: var(--gap_8px);
}

.tver_info em {
	font-size: 1.3em;
}

.tver_area .tver_info_btm {
    color: inherit;
    margin: var(--gap_16px) auto 0;
    text-align: center;
    line-height: 1.2;
}

.tvo-video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
}


@media not screen and (min-width: 767px) {
  #page_top {
    z-index: 800;
  }
}


/*================================
共通パーツ
================================*/
.inner {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 30px;
}

.inner.contentsBox {
  background: #fff;
}

.background {
	position: fixed;
	background-image: url(/sennan2026/assets/images/bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
	inset: 0;
	z-index: -1;
}

.center {
  text-align: center;
}

.mb10 {
  margin-bottom: var(--gap_16px);
}

.mb20 {
  margin-bottom: var(--gap_24px);
}

.mb30 {
  margin-bottom: var(--gap_32px);
}

.mb50 {
  margin-bottom: var(--gap_48px);
}

.mb60 {
  margin-bottom: var(--gap_64px);
}

.mb80 {
  margin-bottom: var(--gap_80px);
}

@media not screen and (min-width: 768px) {
  .inner {
    width: 94%;
    padding-inline: calc((16/750)*100vw);
  }

  .inner_wide, .inner_contents {
    max-width: 94%;
    padding-inline: 3vw;
    margin-inline: auto;
  }

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

  .background {
    position: fixed;
    background-image: url(/sennan2026/assets/images/bg_sp.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    height: 100dvh;
    height: 100vh;
    inset: 0;
    z-index: -1;
  }

  /* ステータスバー透過防止 */
  .for-status-bars {
    position: fixed;
    top: 0;
    pointer-events: none;
    height: 5px;
    width: 100%;
    background-color: #000;
    mix-blend-mode: lighten;
  }

  /* タブバー透過防止 */
  .for-tab-bars {
    position: fixed;
    bottom: 0;
    pointer-events: none;
    height: 4px;
    width: 100%;
    background-color: #000;
    mix-blend-mode: lighten;
  }
}

.contentsBox {
  width: 100%;
  background: #fff;
  padding: var(--gap_80px) var(--gap_32px);
}

.bg_navy {
  padding-top: var(--gap_16px);
  background-color: rgba(0, 17, 46, .8);
}

/*================================
共通text
================================*/
.title__border {
  max-width: 1240px;
  margin-inline: auto;
  background-size: auto auto;
  background-color: rgba(232, 54, 73, 1);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 10px, rgba(226, 4, 27, 1) 10px, rgba(226, 4, 27, 1) 20px );
  padding: var(--gap_16px) 0;
  color: #fff;
  font-size: 1.6em;
  font-family: 'Noto serif', serif;
  font-weight: 700;
  text-align: center;
}

.title__gold {
  max-width: 1240px;
  background: url(/sennan2026/assets/images/title_bg.jpg) no-repeat center / cover;
  padding: var(--gap_16px) 0;
  color: #202020;
  font-size: 1.6em;
  font-family: 'Noto serif', serif;
  font-weight: 700;
  text-align: center;
}

.main_text01 {
  color: #fff;
  font-size: 1.1em;
  line-height: 2em;
  text-align: center;
  margin: var(--gap_64px) auto;
}

.main_text02 {
  font-size: 1.1em;
  line-height: 2em;
  text-align: center;
}

.large_red {
  font-size: 1.3em;
  font-weight: 700;
  color: var(--colo-red);
}

.marker {
	background: linear-gradient(transparent 70%, #feff00 50%);
}

.pink_marker {
	background: linear-gradient(transparent 70%, #fd94ce 50%);
}


/*================================
mv
================================*/
.mv {
  position: relative;
  padding: var(--gap_64px) 0;
  height: 65vh;
}

.mv__img {
  width: min(90vw, 800px);
  position: absolute;
  bottom: 4vw;
  left: 50%;
  transform: translate(-50%, 0);
}

.date {
  background: linear-gradient(
  to bottom,
  rgba(0, 17, 46, 0) 0%,
  rgba(0, 17, 46, .3) 30%,
  rgba(0, 17, 46, .8) 70%,
  rgba(0, 17, 46, .8) 100%
  );
}

.date__img {
  width: fit-content;
  margin: 0 auto;
}

.mv__img img {
  width: 100%;
}
/*================================
about
================================*/



/*================================
cast
================================*/
.cast_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--gap_64px);
  margin-bottom: var(--gap_64px);
}

.cast_list > li {
  width: 40%;
}

/* .cast_list > li img {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
} */

/*================================
present
================================*/
.present__img {
  margin-bottom: var(--gap_24px);
}

.present__list {
  display: flex;
  justify-content: center;
  gap: var(--gap_48px);
}

.present__list.mb60 {
  margin-bottom: var(--gap_64px);
}

.present__list:not(:last-of-type) {
  border-bottom: 1px dotted #252525;
  padding-bottom: var(--gap_32px);
  margin-bottom: var(--gap_32px);
}

.present__list--img, .present__list--contents {
  width: 46%;
}

.present__list--img {
  text-align: center;
}

.present__list--contents > h3 {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: var(--gap_24px);
}

.present__list--text01 {
  background: #e2041b;
  color: #fff;
  font-size: 1.3em;
  font-weight: 700;
  padding: .3em .8em;
  width: fit-content;
  margin-bottom: var(--gap_24px);
}

.present__list--text02 {
  font-weight: 700;
  margin-bottom: var(--gap_48px);
}

.present__list--text02.m0920 {
  margin-bottom: var(--gap_32px)
}

.present__list--text03 {
  font-size: 1.2em;
  font-weight: bold;
  padding: var(--gap_16px) var(--gap_32px);
  line-height: 1;
  border-radius: var(--gap_8px);
  border: 3px solid #252525 ;
}

.present__list--text03 > i {
  font-size: 1.5em;
}

.present__list--text03 > span > em {
  color: var(--colo-red);
  font-size: 1.4em;
  color: var(--colo-red);
}

.present__deadline {
  background: #e2041b;
  color: #fff;
  font-size: 1.15em;
  font-weight: 700;
  padding: .6em .8em;
  width: fit-content;
  text-align: center;
  margin: var(--gap_64px) auto;
}

.present__list02 {
  font-size: .9em;
  width: fit-content;
  margin: 0 auto;
  text-indent: -1em;
  padding-left: 1em;
}

.present__list02--title {
  font-weight: 700;
}



@media not screen and (min-width: 768px) {

  /*================================
  common
  ================================*/
  #page {
    line-height: 1.4;
  }

  /*================================
  共通パーツ
  ================================*/


  /*================================
  共通text
  ================================*/
  .title__border,.title__gold {
    font-size: 1.3em;
  }

  .main_text01 {
    font-size: .9em;
    line-height: 1.5em;
  }

  .main_text02 {
    font-size: .9em;
    line-height: 1.5em;
    text-align: center;
  }

  .large_red {
    font-size: 1.3em;
    font-weight: 700;
    color: var(--colo-red);
  }

.bg_navy {
  padding-top: var(--gap_48px);
}

  /*================================
  mv
  ================================*/
  .mv {
    height: 78vh;
  }

  .mv__img {
  top: 50%;
  bottom: auto;
  transform:  translate(-50%, -50%);
}
  /*================================
  about
  ================================*/


  /*================================
  cast
  ================================*/
  .cast_list {
    display: block;
  }

  .cast_list > li {
    width: 100%;
  }

  .cast_list > li:not(:last-child) {
    margin-bottom: var(--gap_48px);
  }


  /*================================
  present
  ================================*/
  .present__list {
    display: block;
  }

  .present__list--img, .present__list--contents {
    width: 100%;
  }

  .present__list--img {
    margin-bottom: var(--gap_32px);
  }

  .present__list--text02.m0920 {
    margin-bottom: var(--gap_48px);
  }

  .present__list--text03 {
    font-size: 1.2em;
    font-weight: bold;
    padding: var(--gap_24px) var(--gap_32px);
    line-height: 1;
    border-radius: var(--gap_16px);
    border: 3px solid #252525;
    margin-bottom: var(--gap_64px);
  }

  .present__list:not(:last-of-type) {
    padding-bottom: var(--gap_96px);
    margin-bottom: var(--gap_64px);
  }

  .present__deadline {
    width: 100%;
    text-align: center;
    margin: var(--gap_96px) auto var(--gap_80px);
  }








}


