@charset "utf-8";

/* CSS INFORMATION -====================================================
File name : layout.css
Description : レイアウト用CSS
===================================================================== */


/* ==========================================================
	共通
========================================================== */

/*メインビジュアル背景*/
.mv {
	background-size: 40px 40px;
    background-image: repeating-conic-gradient(from 0deg, #e1ae3a 0deg 90deg, #ca9729 90deg 180deg);
    background-repeat: repeat;
	/*	画像はこちら↓ */
	/*	background: url(../images/bg.png) repeat center;*/
}

/*アクセントカラー（背景色）*/
.nav,
.ttl_h2:before,
.slick-arrow,
.slick-active button::before,
.popup_close {
	background-color: #CC0000;
}

/*アクセントカラー（文字色）*/
.ttl_h3,
.wrapper .txt_link,
.wrapper b.highlight,
.cast_name1 {
	color: #000;
}

.popup_close {
	border-color: #CC0000;
}

.red{
	color: #CC0000;
}
/* ==========================================================
	header
========================================================== */

/*メニューの幅(SP) 
　※calc(### / 750 * 100%)の###部分を変更してください*/
.nav ul {
	width: calc(1200 / 750 * 100%);
	justify-content: space-around;
}

/*メニューの文字色*/
.nav a {
	color: #fff;
}

/*メニューの文字色：ホバー*/
/*テキストリンクの文字色：ホバー*/
.nav a:hover,
.txt_link:hover {
	color: #000;
}

/*メニューの下線：ホバー*/
.nav a:hover:after {
	background-color: #000;
}


/* ==========================================================
	コンテンツ
========================================================== */

/*コンテンツ外側の背景*/
#main {
	background-color: #e3e3e3;
    /*	画像はこちら↓ */
    /*	background: url(../images/bg.png) repeat center;*/
}

/*コンテンツ背景*/
.contents {
	background-color: #fff;
}

/*スライダーの矢印ボタン：ホバー*/
/*ポップアップのクローズボタン：ホバー*/
.slick-arrow:hover,
.popup_close:hover {
	background-color: #000;
}

/*ポップアップのクローズボタン：ホバー*/
.popup_close:hover {
	border-color: #000;
}

/* 画像ガード */
.photo_protect {
	position: relative;
	display: inline-block;
	pointer-events: none;
}

.photo_protect::after {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	background-color: transparent;
	position: absolute;

	top: 0;
	left: 0;
}

/*プリント禁止*/
@media print {
    * {
        display: none;
        opacity: 0;
        background: #fff;
    }
 
    img {
        display: none;
        opacity: 0;
        background: #fff;
    }
}

.staff_list1 dd, .staff_list2 dd {
    color: #000;
    margin-left: 0.3em;
}
.staff_list1 dl, .staff_list2 dl{
	display: block;
}
h3{
	font-weight: bold;
}
.text{
	margin-bottom: 3rem;
}

/*出演者（写真あり）*/

h3{
	font-weight: bold;
	font-size: 3.2rem;
	margin-top: 2rem;
}
.f_box{
	display: flex;
	flex-wrap: wrap;
}
.f_box li{
	width: calc(50% - 1rem);	
    margin-bottom: 1rem;
}
.f_box dl{
	text-align: center;
}
.fourth_column{
}
.fourth_column::after {
	display: block;
	content:"";
	width: calc(50% - 1rem);
	}
.fourth_column li{
	width: calc(50% - 1rem);
}

.catch {
	font-size: 2.8rem;
	font-weight: bold;
	color: #8c32d2;
	margin-bottom: 1em;
  }
  

@media screen and (min-width: 768px) {
	.catch {
		font-size: 2.2rem;
	  }

	h3{
		font-size: 2rem;
	}
	.two_column{
		justify-content: center;
		gap:1rem;
	}
	.f_box li{
		width: calc(25% - 1rem);
	}
	.fourth_column::after {
		width: calc(25% - 1rem);
		}
	.fourth_column li{
		width: calc(25% - 1rem);
		margin-right: 1rem;
	}	
}

.twitter{
	border: 6px solid #c00;
}

.text_bg{
	width: fit-content;
	padding: 1em;
	font-weight: bold;
	background-color: #ffe9b6;
	border: #c00 3px solid;
}

.banner_list{
	justify-content: left;
}