@charset "UTF-8";

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

html {
  font-size: 16px;
}

@media (max-width: 1140px) {
  html {
    font-size: 1.4035087719vw;
  }
}

@media screen and (max-width: 1023px) {
  html {
    font-size: 16px;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 4.0533333333vw;
  }
}

body {
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0em;
  font-weight: 400;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  color: #333333;
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1023px) {
  a:hover {
    opacity: 1;
  }
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  margin: auto;
  z-index: 1;
  position: relative;
}

@media screen and (max-width: 1023px) {
  body {
    font-size: 3.5vw;
  }
}


#drawer .contents {
  position: fixed;
  height: 100vh;
  top: 0;
  right: 0;
  color: #fff;
  background: linear-gradient(to bottom, #8B514D, #6A418D 50%, #135E86);
  -webkit-box-shadow: 1px 1px 12px -5px #fff;
  box-shadow: 1px 1px 12px -5px #fff;
  padding: 10vh 30px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: auto;
  pointer-events: none;
  overflow-y: scroll;
  z-index: 250;
}

#drawer .contents.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#drawer .content-item {
  position: relative;
  text-align: center;
}

#drawer .item:not(:first-of-type) {
  margin-top: 40px;
}

#drawer .item .main-title {
  display: block;
}

#drawer .item a{
  display: inline-block;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

#drawer .item .main-title {
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0em;
  font-weight: 700;
}

#overlay {
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  height: 100vh;
  background: rgba(24, 24, 24, 0.5);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

#overlay.is-active {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 1023px) {
  #drawer.is-active {
    z-index: 251;
  }

  #drawer .icon {
    width: 33px;
    height: 22px;
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1000;
  }

  #drawer .icon-bars {
    position: relative;
    display: block;
    width: 33px;
    height: 1.375rem;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1000;
  }

  #drawer .icon-bar1,
  #drawer .icon-bar2,
  #drawer .icon-bar3 {
    width: 33px;
    height: 2px;
    position: absolute;
    background: #fff;
    top: 0;
    left: 0;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
  }

  #drawer .icon-bar1 {
    top: 0.125rem;
  }

  #drawer .icon-bar2 {
    top: 0.6875rem;
  }

  #drawer .icon-bar3 {
    top: 1.3125rem;
  }

  #drawer .icon.is-active .icon-bar1,
  #drawer .icon.is-active .icon-bar3 {
    background: #707070;
  }

  #drawer .icon.is-active .icon-bar1 {
    width: 33px;
    top: calc(50% - 0px);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  #drawer .icon.is-active .icon-bar2 {
    display: none;
  }

  #drawer .icon.is-active .icon-bar3 {
    width: 33px;
    top: calc(50% - 0px);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  #drawer .contents {
    width: 77%;
    max-width: 700px;
    padding: 15vw 7.5vw;
  }

  #drawer .item:not(:first-of-type) {
    margin-top: 4.5vw;
  }

  #drawer .item .main-title {
    font-size: min(5vw, 30px);
    line-height: 1.6;
    text-shadow: 0 0 7px #9e9e9e;
    font-family: "kaisotai", sans-serif;
  }
}

#footer {
  position: relative;
  z-index: 1;
  height: 30px;
}

#footer .body {
  background: #fff;
  padding: 22px 0 11px;
}

#footer .logo img {
  width: 194px;
  aspect-ratio: 194/69;
  -o-object-fit: contain;
  object-fit: contain;
}

#footer .text {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  letter-spacing: 0em;
  font-weight: 500;
  margin-top: 11px;
  text-align: center;
}

#footer .copyright {
  display: block;
  font-size: 0.625rem;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 500;
  color: #fff;
  background: #000;
  padding: 7px 20px;
  text-align: center;
}

@media screen and (max-width: 1023px) {
  #footer .body {
    padding: 5.5vw 0 2.75vw;
  }

  #footer .logo img {
    width: 48.5vw;
  }

  #footer .text {
    font-size: 3vw;
    margin-top: 2.75vw;
  }

  #footer .copyright {
    font-size: 2.5vw;
    padding: 1.75vw 5vw;
  }
}

header {
  position: fixed;
  min-width: 400px;
  width: 30.02vw;
  height: 60px;
  z-index: 20;
}

#header .body {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #000000;
  padding: 10px;
  height: 60px;
  box-shadow: 0 0 10px #00000059;
}

#header .logo {
  width: auto;
  height: 50px;;
}

#header .header_btn {
  height: 50px;
  width: 170px;
  display: flex;
  align-items: center;
}

#header .header_btn img {
  object-fit: contain;
}

@media screen and (max-width: 1023px) {
  #header {
    position: fixed;
    width: 100%;
    min-width: 100%;
    top: 0;
    left: 0;
  }

  #header .body {
    gap: 10px;
  }

  #header .header_btn {
    margin-right: 60px;
  }
}

.page_404 {
  background: #f2fffe;
  padding: 100px 20px;
  height: calc(100vh - 30px);
}

.page_404 .contents {
  background: #fff;
  padding: 80px 40px;
  outline: 4px solid #000;
  outline-offset: -15px;
  text-align: center;
}

.page_404 .title {
  font-size: 3rem;
  line-height: 1.25;
  letter-spacing: 0em;
  font-weight: 700;
}

.page_404 .text {
  margin-top: 20px;
}

.page_404 .contact__button {
    margin-top: 50px;
    padding: 0 10px;
    max-width: 300px;
    margin: 50px auto 0;
}

@media screen and (max-width: 1023px) {
  .page_404 {
    padding: 10vw 20px;
  }

  .page_404 .contents {
    width: 100%;
    padding: 12.5vw 5vw;
    outline: 1vw solid #000;
    outline-offset: -2.5vw;
  }

  .page_404 .title {
    font-size: 8vw;
  }

  .page_404 .text {
    margin-top: 2.5vw;
  }

}




.pc_grid {
  width: calc(35% + 15vw);
  display: grid;
  grid-template-columns: 400px 1fr;
  margin-left: auto;
}

@media screen and (max-width: 1023px) {
  .pc_container {
    margin-top: var(--header-height);
  }

  .pc_grid {
	display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }
}


.pc_menu {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
}

.pc_menu .nav {
  width: 100%;
  max-width: 50%;
  min-width: 250px;
  margin-inline: auto;
}

.pc_menu .list:not(:first-of-type) {
  margin-top: 20px;
}

.pc_menu .list a,
.pc_menu .sub-list a {
  display: inline-block;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.pc_menu .main-title,
.pc_menu .sub-title,
.pc_menu .sub-list a {
  display: block;
  color: #ffffff;
  text-shadow: 0 0 7px #9e9e9e;
  font-family: "kaisotai", sans-serif;
}

.pc_menu .main-title {
  font-size: 1.4rem;
  line-height: 1.5625;
  letter-spacing: 0em;
  font-weight: 600;
}

.pc_menu .list .cta_btn01{
	max-width: 250px;
}

.pc_menu .list .cta_btn01 .cta_btn01-front{
	height: 50px;
}

.pc_menu .sub-title,
.pc_menu .sub-list a {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 500;
}

.page_top .pc_menu .sub-title,
.page_top .pc_menu .sub-list a {
  font-family: "Noto Sans JP", sans-serif;
}

.pc_menu .sub-lists {
  margin-top: 10px;
}

.pc_menu .sub-list:not(:first-of-type) {
  margin-top: 12px;
}

.pc_menu .sub-list a {
  position: relative;
  display: block;
  padding-left: 20px;
}

.pc_menu .sub-list a::before {
  content: "";
  width: 5px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #333333;
}

.pc-logo{
	position: fixed;
    left: 5vh;
    bottom: 3vh;
    height: 15vh;
}

@media screen and (min-width: 1024px) and (max-height: 900px) {
  .pc_menu {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .pc_menu .list:not(:first-of-type) {
    margin-top: 20px;
  }
}

@media screen and (min-width: 1024px) and (max-height: 700px) {
  .pc_menu .list:not(:first-of-type) {
    margin-top: 12px;
  }
}

@media screen and (max-width: 1023px) {
  .pc_menu {
    display: none;
  }
}

.u-is-1600 {
  display: none;
}

@media screen and (min-width: 1600px) {
  .u-is-1600 {
    display: block;
  }

  .pc_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .pc_menu .nav {
    margin-left: 0;
    margin-right: inherit;
  }

  .pc_menu .nav .btn a {
    max-width: 300px;
  }

  .pc_menu-box {
    width: 45%;
    max-width: 300px;
    margin-left: 0;
  }

  .pc_menu-image {
    position: relative;
    top: 30px;
    z-index: -1;
  }

  .pc_menu-image img {
    aspect-ratio: 1/1;
    -o-object-fit: contain;
    object-fit: contain;
  }
}


.u-is-pc {
  display: block;
}

@media screen and (max-width: 1023px) {
  .u-is-pc {
    display: none;
  }
}

.u-is-sp {
  display: none;
}

@media screen and (max-width: 1023px) {
  .u-is-sp {
    display: block;
  }
}

.u-tac {
  text-align: center;
}

.u-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.u-is-br {
  display: inline-block;
}


/* 背景画像 */	
#top_container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.bg-layer {
  position: fixed;
  inset: 0;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 1.5s ease-in-out;
  z-index: -1;
  opacity: 0;
  /*background-blend-mode: darken;*/
}

.bg-layer.active {
  opacity: 1;
}

/*#top_container::before {
  opacity: 1;
}

#top_container::after {
  opacity: 0;
}
*/
#top_body{
	background: #fff;
    box-shadow: 0 0 25px #ffffff6e;
	z-index: 5;
	min-width: 400px;
	width: 30.02vw;
}

@media screen and (max-width: 1023px) {
	#top_body{
		width: 100%;
		min-width: 100%;
	}
	
}

#top_fv{
	margin-top: 60px;
	background-image: url("../images/fv-bg.jpg");
	background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


.cta_btn01 {
  width: 100%;
  max-width: 350px; /* ボタン幅 */
  line-height: 1.5;
  position: relative;
  display: inline-block;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #fff; /* 文字色 */
  border-radius: 0.5rem;
  margin: 0 auto 0.5rem;
  padding: 0;
  font-family: "kaisotai", sans-serif;
  font-weight: 600;
  font-style: normal;
  z-index: 1;
}

.cta_btn01:before {
  position: absolute;
  top: -5px;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  content: "";
  transition: all 0.3s;
  transform: translate3d(0, 0.75rem, -1rem);
  border-radius: inherit;
  background: #831209; /* ボタン下色 */
}

.cta_btn01-front {
  position: relative;
  display: flex;
  padding: 0.7em 2em;
  transition: all 0.3s;
  border-radius: inherit;
  background: #DF8079;
  align-items: center;
  justify-content: center; /* ボタン上色 */
}

/* マウスオーバーした際のデザイン */
.cta_btn01:hover {
  -webkit-transform: translate(0, 0.25rem);
  transform: translate(0, 0.25rem);
}

.cta_btn01:hover:before {
  transform: translate3d(0, 0.5rem, -1rem);
  box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
}

.cta_btn01-front:hover{
  background: #fff100;
}

.header_btn .cta_btn01:hover:before{
	background: #b4ad07;
}
.header_btn .cta_btn01-front:hover{
	color: #858585;
}


#sec01{
	padding: 0 20px 25px;
}

.ttl{
	margin-bottom: 35px;
}
.inner{
	
}
.movie{
	width: 100%;
    height: auto;
	margin-top: 25px;
}
.movie iframe{
	width: 100%;
    aspect-ratio: 560 / 315;
	z-index: 1;
	position: relative;
}

#sec02{
	background: linear-gradient(to bottom, #8B514D, #6A418D 50%, #135E86);
    padding: 40px 20px 25px;
}
.menu-list{
	display: flex;
    flex-wrap: wrap;
}	
.menu-item{
	width: calc(100% / 3);
}

#sec03{
	padding: 40px 0px 25px;
	background-image: url("../images/sec03-bg.jpg");
	background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
#sec03 .ttl{
	padding: 0 20px;
}

#sec04{
	padding: 40px 0px;
	background-image: url("../images/sec04-bg.jpg");
	margin-top: -1px;
	background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#sec05{
	background: linear-gradient(to bottom, #8B514D, #6A418D 50%, #135E86);
    padding: 40px 20px 25px;
}
#sec05 .inner{
	display: flex;
    flex-direction: column;
    gap: 20px;
}

#sec06{
	background-image: url("../images/sec06-gb.jpg");
	padding: 40px 20px;
	background-size: contain;
    background-repeat: repeat;
    background-position: center;
}
.sec06-text{
	color: #fff;
	text-align: center;
}

.cast-att-wrap{
	display: flex;
}

.c-table,
.c-table__th,
.c-table__td {
	border: 1px solid #DCDDDD;
	border-collapse: collapse;
}

.c-table__th,
.c-table__td {
	padding: 2.9% 3.5%;
	vertical-align: middle;
}

.c-table__th {
	width: 27%;
	font-size: clamp(13.5px, 3.5vw, 17px);
	font-weight: 500;
	line-height: 1.428;
	background: #C7CFD5;
	text-align: center;
}

.c-table__td {
	width: 73%;
	font-size: clamp(13px, 3vw, 15px);
	line-height: 1.8;
	background: #fff;
	white-space: pre-wrap;
	font-weight: 500;
}

.att-wrap{
	margin-top: 10px;
	display: flex;
    flex-direction: column;
    gap: 8px;	
}

.att{
	font-size: 0.9em;
}

.cast-name-wrap{
	display: flex;
    /*gap: 10px;*/
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
	max-width: 320px;
    margin: 10px auto 0px;
}

.cast-name-item{
	width: calc((100% - 0px) / 2);
	text-align: left;
	text-shadow: 0 0 7px #000000;
    font-size: 14px;
}

.cast-name-item:nth-child(3), .cast-name-item:nth-child(4){
	margin-top: 12px;	
}
.cast-name-ttl{
	color: #DF8079;
    font-size: 14.5px;
    font-weight: bold;
	text-shadow: 0 0 7px #000000;
}
.cast-wrap{
	color: #fff;
    text-align: center;
}
.sub-ttl{
	margin-top: 30px;
}
.sub-ttl-text{
	text-shadow: 0 0 7px #000000;
}
.cast-name{
	white-space: pre-wrap;
    text-align: left;
    width: fit-content;
    margin: 10px auto 0;
	text-shadow: 0 0 7px #000000;
}

.cast-name-att{
	margin-top: 10px;
	text-shadow: 0 0 7px #000000;
}

.mt10{
	margin-top: 10px;
	display: inline-block;
}


#sec07{
	background: linear-gradient(to bottom, #8B514D, #6A418D 50%, #135E86);
    padding: 40px 20px 25px;
}
.sec07_btn{
	margin: 25px 30px 40px;
	display: flex;
    flex-direction: column;
    gap: 11px;	
}
.sec07_btn .cta_btn01-front{
	height: 56px;
	font-size: 18px;
}
.sec07_btn02 .cta_btn01-front{
	background: #1E95D4;
}
.sec07_btn02:before{
	background: #124C6A;
}
.sec07_btn01:hover:before{
	background: #b4ad07;
}
.sec07_btn01 .cta_btn01-front:hover{
	color: #858585;
}
#noticeText{
	color: #fff;
}
.notice-text{
	white-space: pre-wrap;
}
.notice-att{
	font-size: 1.2em;
    color: #fff7b5;
    font-weight: 600;
}
.map{
	width: 100%;
    margin-top: 25px;
}
.map iframe{
	width: 100%;
	aspect-ratio: 460 / 290;
}

#sec08{
	background-image: url("../images/sec08-bg.jpg");
	padding: 40px 0px 25px;
	background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
#sec08 .ttl{
	padding: 0 20px;
}


#sec09{
	background: linear-gradient(to bottom, #8B514D, #6A418D 50%, #135E86);
    padding: 40px 20px 25px;
}
.sec09_btn{
	text-align: center;
	margin: 0px 30px 0px;
}
.sec09_btn .cta_btn01-front{
	height: 56px;
	font-size: 18px;
}
.sec09_btn01 .cta_btn01-front{
	background: #965CC9;
}
.sec09_btn01:before{
	background: #472B60;
}
.sec09_btn01 .cta_btn01-front:hover{
	background: #3e9bac;
}
.sec09_btn01:hover:before{
	background: #22555f;
}


#sec10{
	background-image: url("../images/sec06-gb.jpg");
	padding: 40px 20px;
	background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.table-wrapper {
    overflow-x: auto; /* 横スクロールが必要な場合に表示 */
}

.table-wrapper .table {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background-color: #fff;
    /* 必要に応じて調整してください。これはテーブル全体のオフセットに影響します。 */
    /* padding-left: 169px; */
}

.table-wrapper table {
    width: 100%;
    border-collapse: collapse; /* セルの境界線を結合 */
	background: #fff;
}

/* ヘッダーセルの基本スタイル */
.table-wrapper th, .table-wrapper td {
    border: 1px solid #ddd;
    padding: 8px 10px; /* パディングを調整 */
    text-align: left;
    white-space: nowrap; /* セル内でテキストが改行されないようにする */
    box-sizing: border-box; /* パディングとボーダーをwidth/heightに含める */
}

/* 日時列の上の空セル */
.table-wrapper th.empty {
    width: 169px; /* 元のページの幅を模倣 */
    background-color: #C7CFD5;
    position: sticky;
    left: 0; /* 左端に固定 */
    z-index: 12; /* 他のヘッダーより手前に */
	text-align: center;
}

/* 日時列のスタイル */
.table-wrapper th.datetime-cell {
    width: 169px; /* 元のページの幅を模倣 */
    background-color: #C7CFD5;
    text-align: center; /* 日時を中央寄せ */
    position: sticky;
    left: 0; /* 左端に固定 */
    z-index: 11; /* 他のセルより手前に */
}

.table-wrapper th.datetime-cell .datetime .date {
    font-weight: bold;
    font-size: 1em;
}

.table-wrapper th.datetime-cell .datetime .time {
    font-size: 0.9em;
    color: #666;
}

/* 役名ヘッダーのスタイル */
.table-wrapper th.role {
    background-color: #e0e0e0;
    color: #555;
    font-weight: bold;
    text-align: center; /* 役名を中央寄せ */
    cursor: pointer; /* クリック可能であることを示すカーソル */
    position: sticky; /* ヘッダーを固定 */
    top: 0;
    z-index: 10;
    vertical-align: top; /* 上揃え */
    padding-top: 5px; /* 上パディング調整 */
    padding-bottom: 5px; /* 下パディング調整 */
	border: 1px solid #c6c6c6;
}

.table-wrapper th.role:hover {
    background-color: #d0d0d0;
}

.table-wrapper th.role p {
    margin: 0 0 5px 0; /* 役名とセレクトボックスの間のマージン */
    line-height: 1.2;
    font-size: 0.9em;
}

.table-wrapper th.role select {
    width: 90%; /* セレクトボックスの幅 */
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.85em;
    box-sizing: border-box;
}

/* キャスト名のセル */
.table-wrapper td[class^="cast"] { /* castで始まるクラス名に適用 */
    text-align: center; /* キャスト名を中央寄せ */
    background-color: #fff;
    min-width: 100px; /* キャスト列の最小幅 */
}

.table-wrapper td .actor p {
    margin: 0;
    padding: 0;
    line-height: 1.4;
    font-size: 0.9em;
}

/* 交互の行の背景色 */
.table-wrapper tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* ホバー時の背景色 */
.table-wrapper tbody tr:hover {
    background-color: #f1f1f1;
}

/* ソートインジケーター */
.table-wrapper th.role.asc:after {
    content: ' ▲';
    font-size: 0.8em;
}

.table-wrapper th.role.desc:after {
    content: ' ▼';
    font-size: 0.8em;
}

/* モバイル表示時のbrタグを非表示にする */
.table-wrapper .sp {
    display: none;
}

/* --- スクロールインジケーターのスタイル --- */
.scroll-indicator {
    width: 100px; /* アイコンの幅に合わせて調整 */
    height: 27px; /* アイコンの高さに合わせて調整 */
    background: url(../images/scroll_icon.svg) no-repeat center bottom;
    background-size: contain; /* SVGが要素内に収まるように */
    z-index: 10; /* 他の要素より手前に表示 */
    animation: bounceX 2s infinite ease-in-out; /* アニメーション適用 */
    pointer-events: none; /* クリックイベントを透過させる（下の要素を操作できるように） */
	color: #fff;
    margin: 0 0 10px auto;
}


/* 矢印を左右に動かすアニメーション */
@keyframes bounceX {
    0%, 100% {
        transform: translateX(0); /* 通常の位置 */
    }
    50% {
        transform: translateX(-10px); /* 左に少し動く */
    }
}


/* キラキラアニメーション */
#sec09 {
    position: relative; /* パーティクルコンテナの基準点 */
    overflow: hidden;   /* はみ出したパーティクルを隠す */
    /* 必要に応じて、コンテンツとパーティクルの重なりを調整するために z-index を設定 */
}

#particles-contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* コンテンツより背面 */
}

#sec09 .ttl,
#sec09 .inner {
    position: relative; /* パーティクルより手前に表示するため */
    z-index: 1;
}

