@charset "utf-8";

/* ++++++++++++++++++++++++++++++++++++++++

	index.html

++++++++++++++++++++++++++++++++++++++++ */


h2 {
	margin: 0 auto 50px;
	max-width: 1200px;
}

#staff ul li {
	display: inline-block;
	width: 236px;
}
#staff ul li:nth-child(3n) {
	margin-right: 0;
}

#staff>div {
	margin-top: 20px;
}
#staff li {
	margin-bottom: 5px;
}

.aside {
	float: right;
}

section {
  margin-bottom: 30px;
}

.sns-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center; /* 中央寄せ */
  margin: 20px 0;
}

/* SNSボタン本体（黒背景＋白文字） */
.sns-link {
  background-color: #000;
  color: #fff;
  padding: 10px 16px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  display: inline-block;
  text-align: center;
  transition: background-color 0.3s ease;
  font-size: 14px;
  min-width: 140px;
}

.sns-link:hover {
  background-color: #333;
}

#twitter {
	width: 350px;
	margin-left: 50px;
}


#schedule,
#access {
  margin-top: -100px;
  padding-top: 100px;
}

#schedule iframe,
#access iframe {
  width: 1200px;
  height: 450px;
}


.access_map iframe {
  width: 100%;
  max-width: 600px;
  height: 300px;
  border: none;
}

.link-blue {
  color: #00bfff; /* 水色。別の色にしたい場合は下の例から変更OK */
  text-decoration: none;
}

.link-blue:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  #schedule div,
  #access div {
    display: flex;
    flex-direction: column;
    align-items: center; /* 中央寄せしたい場合 */
  }

  #schedule iframe,
  #access iframe {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }
  #twitter {
    width: 100%;
    margin-left: 0;
  }
  .sns-link {
    display: block;
    width: 80%;
    max-width: 300px;
    font-size: 14px;
    padding: 10px 16px;
    margin: 10px auto;
  }
}

/* SNS */
#sns_link {
  width: 100%;
  max-width: 1200px;
  margin: 60px auto;
  text-align: center;
  box-sizing: border-box;
}

#sns_link > h3 {
  margin-bottom: 30px;
}

/* SNS全体 */
.sns-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
}

/* SNSボックス共通 */
.sns-box {
  box-sizing: border-box;
  width: 100%;
  max-width: 450px;
}

.sns-box h4 {
  margin-bottom: 20px;
  font-size: 20px;
}

/* Xを上段中央 */
.sns-box:first-child {
  width: 100%;
  max-width: 500px;
}

/* 2つ目・3つ目のTikTok */
.sns-box:nth-child(2),
.sns-box:nth-child(3) {
  width: calc(50% - 20px);
  max-width: 450px;
}

/* SNSボタン */
.sns-link {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  text-decoration: none;
}


/* スマホ */
@media screen and (max-width: 767px) {

  .sns-area {
    display: block;
  }

  .sns-box,
  .sns-box:first-child,
  .sns-box:nth-child(2),
  .sns-box:nth-child(3) {
    width: 100%;
    max-width: 450px;
    margin: 0 auto 50px;
  }

}
/* ++++++++++++++++++++++++++++++++++++++++

	サブページ共通

++++++++++++++++++++++++++++++++++++++++ */


#section_in {
    width: 1200px;
    margin: 0 auto;
}

#section_in h3 {
	font-size: 22px;
}
.caution {
	background:linear-gradient(transparent 70%, #FFFF00 0%);
}


/* ++++++++++++++++++++++++++++++++++++++++

	concept.html

++++++++++++++++++++++++++++++++++++++++ */

#concept #section_in p {
	font-size: 22px;
	text-align: center;
	margin: 20px 0;
}

#cos {
	padding: 20px 0;
}

#cos div p img {
	width: 500px;
	margin: 0 20px;
}

#cos div p {
	display:inline-block;
	vertical-align:top;
	font-size: 19px;
	text-align: left;
}

#cos div:nth-child(odd) {
	background: #ddd;
}


/* ++++++++++++++++++++++++++++++++++++++++

	system.html

++++++++++++++++++++++++++++++++++++++++ */

#system h3 {
	font-size: 22px;
}

#system p {
	margin: 0 0 10px;
	padding-left: 1em;
	text-indent: -1em;
}

#section_in div .shift {
	margin-top: 20px;
	border: 3px double;
	padding: 10px;
	display: inline-block;
}


/* ++++++++++++++++++++++++++++++++++++++++

	profile.html

++++++++++++++++++++++++++++++++++++++++ */


#profile h3 {
	font-size: 20px;
}

#profile ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 0;
    list-style: none;
    margin: 0;
}

#profile ul li {
    width: 180px;
    text-align: center;
    box-sizing: border-box;
}

#profile ul li img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    margin: 0 auto;
}

#profile ul li p {
    font-weight: bold;
    font-size: 16px;
    margin-top: 10px;
    height: auto;
    padding: 0;
    text-align: center;
    line-height: 1.4;
}

/* スマホ表示対応 */
@media screen and (max-width: 600px) {
    #profile ul li {
        width: 45%;
    }
}

#profile #article_in {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 100px;
}

.clear_box {
    clear:  both;
}

.other-cast{
  width:90%;
  max-width:1000px;
  margin:60px auto;
  text-align:center;
}

.other-cast h3{
  margin-bottom:30px;
}

.other-cast ul{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:20px;
  list-style:none;
  padding:0;
}

.other-cast li{
  width:120px;
}

.other-cast img{
  width:120px;
  height:120px;
  object-fit:cover;
  border-radius:50%;
}

.other-cast p{
  margin-top:8px;
}

/* ++++++++++++++++++++++++++++++++++++++++

	recruit.html

++++++++++++++++++++++++++++++++++++++++ */

#recruit .copy{
	text-align: center;	
	font-size: 22px;
	margin-bottom: 10px;
}

#recruit div {
	margin-bottom: 15px;
}

#recruit h4 {
	margin-bottom: 5px;
	text-decoration: underline;
}


/* ++++++++++++++++++++++++++++++++++++++++

	cast

++++++++++++++++++++++++++++++++++++++++ */

/* プロフィール画像 */
 .p_img {
 width: auto;
 max-width: 100%;
 height: auto;
 display: block;
 margin-bottom: 20px;
}

/* cast_in全体のレイアウト */
#cast_in {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

/* プロフィールテキスト */
#cast_in img.p_img {
  flex: 1 1 45%;
  max-width: 45%;
  height: auto;
  display: block;
}

#proftext_in {
flex: 1;
min-width: 280px;
}

/* プロフィール見出し */
#proftext_in h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

/* プロフィール項目 */
.col dl {
  display: flex;
  margin-bottom: 10px;
}

.col dt {
  width: 120px;
  font-weight: bold;
}

.col dd {
  margin: 0;
}

/* ギャラリータイトル */
.garally_title {
  margin-top: 20px;
  font-weight: bold;
}

/* ギャラリーリスト */
.garally {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
}

.garally li {
  flex: 0 0 auto;
}

/* ギャラリー画像サイズ（固定） */
.garally img {
  width: 150px;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}

/* モバイル対応 */
@media screen and (max-width: 600px) {
  #cast_in {
    flex-direction: column;
    align-items: center;
  }

  #cast_in img.p_img,
  #proftext_in {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .garally {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    justify-content: space-between !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .garally li {
    width: calc(50% - 5px) !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  .garally img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 3 / 4 !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 6px;
  }
}

/* ++++++++++++++++++++++++++++++++++++++++

	teble

++++++++++++++++++++++++++++++++++++++++ */

#treble {
	background: black;
	padding-bottom: 200px;
	margin-bottom: 0;
	color: white;
}
#treble a {
	color: white;
}

#treble h2 {
	margin: 40px 0;
}

#treble h3 {
	margin: 60px 0 10px;
}

#treble section {
	padding-top: 50px;
	text-align: center;
}

#treble section iframe {
	width:70%;
	height: 400px;
	margin-bottom:20px;
}




/* ++++++++++++++++++++++++++++++++++++++++

	SP

++++++++++++++++++++++++++++++++++++++++ */

@media (max-width: 767px) {

	h2 {
		margin-bottom: 30px;
	}

	.calender {
		max-width: 800px;
		min-width: 300px;
	}
	section {
 		margin-bottom: 30px;
	}

	.sl {
		width: 95%;
		margin: 0 auto;
	}

	#staff .sl {
		font-size: 0;
	}

	#section_in {
		width: 100%;
	}

/* ++++++++++++++++++

	index

+++++++++++++++++++++ */

	#news dd {
		border-bottom: 0;
	}
	#news dt {
		float: left;
		height: 28px;
	}

	#staff ul li {
		display: inline-block;
		width: 49%;
	}
	#staff ul li:nth-child(odd) {
		margin: 0 2% 0 0;
	}

	#calender iframe {
		width: 100%;
		height: 600px;
	}

	#schedule div {
		display: block;
	}

	#schedule div #twitter {
		display: none;
	}

	#access {
		margin-top: 0;
		padding-top: 0;
	}

	#access iframe {
		width: 100%;
		height: 200px;
	}

	#cos div p img {
		width: 100%;
		margin: 0;
	}

	#sns_link a {
		display: block;
		margin: 3px auto 10px;
		padding: 16px 0px 15px;
		color: #ffffff;
		font-weight: bold;
		font-size: 12px;
		line-height: 1;
		text-align: center;
		text-decoration: none;
		width: 90%;
	}
	#sns_link .link_twitter a {
		background: #00aaf2;
	}
	#sns_link .link_tiktok a {
		background: black;
	}

	article #event_info {
		width: auto;
	}
	.access_remote {
		margin: 20px 3%;
		font-size: 14px;
	}


/* ++++++++++++++++++

	concept

+++++++++++++++++++++ */

	#concept p {
		font-size: 13px;
		margin-top: 0;
	}
	#concept #section_in p {
		font-size: 13px;
		margin: 0 0 20px;
	}
	#cos {
		width: 95%;
		margin: 0 auto;
	}
	#cos div p {
		text-align: center;
		width: 100%;
	}

/* ++++++++++++++++++

	profile

+++++++++++++++++++++ */
	
	#profile ul {
		margin: 10px;
	}
	#profile ul.col {
		width: 95%;
		margin: 0 auto;
	}

	#profile ul li {
		display: inline-block;
		width: 49%;
		margin: 0;
	}
	#profile ul li:nth-child(odd) {
		margin: 0 2% 0 0;
	}
	#profile ul li p {
		width: 100%;
		padding: 0 10px 0 0;
		font-size: 13px;
		margin: 5px 0 10px;
	}
	#proftext_in div {
   		width: 100%;
	}
	#proftext_in {
		width: 100%;
	}
	#profile ul li:nth-child(5) {
		padding: 0;
	}

	#cos {
		padding: 0 0 20px 0;
	}
	#cast_in .p_img {
		width: 90%;
		margin-left: 5%;
		margin-bottom: 5px;
	}
	#cast_in h3 {
		margin-bottom: 20px;
	}
	#cast_in .col {
		width: 95%;
	}

	#proftext_in ul li:nth-child(odd) {
		margin: 0 2% 0 0;
	}

	#proftext_in ul.garally {
		font-size: 0;
	}

	#cast li {
		width: 49%;
		margin-bottom: 5px;
	}
	.garally_title {
		margin: 20px 0 5px;
		font-size: 17px;
	}
	#proftext_in dl dt {
		width: 37%;
	}
	#proftext_in dl dd {
		width: 63%;
	}
	#proftext_in dl dd a {
		overflow-wrap: break-word;
	}
	.modal__content {
		width: 75%;
	}



/* ++++++++++++++++++

	menu

+++++++++++++++++++++ */

/* メニュー画像レイアウト（スマホは1列、PCは2列） */

#menu {
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media screen and (min-width: 768px) {
  #menu {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
  }
}

.menu-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* ++++++++++++++++++

	system

+++++++++++++++++++++ */

	#system {
		font-size: 13px;
	}
	#system .col {
		width: 95%;
		margin: 10px auto;
	}


/* ++++++++++++++++++

	recruit

+++++++++++++++++++++ */
	
	#recruit .copy {
		font-size: 16px;
		margin-bottom: 30px;
	}
	#recruit ul li {
		padding-left: 1em;
		text-indent: -1em;
	}
	.recruit {
		width: 95%;
		margin: 0 auto;
	}


/* ++++++++++++++++++++++++++++++++++++++++

	teble

++++++++++++++++++++++++++++++++++++++++ */

#treble section iframe {
	width: 80%;
	height: 100%;
	margin-bottom:20px;
}




}