@charset "utf-8";

/* CSS INFORMATION -====================================================
File name : layout.css
Description : レイアウト用CSS
===================================================================== */


/* ==========================================================
	共通
========================================================== */

/*メインビジュアル背景*/
.mv {
	background: #c19403;
	/* background: linear-gradient(90deg, #ff5722 0%, #ff6037 50%, #a35bdb 50%, #a35bdb 100%); */
	/*	画像はこちら↓ */
	/*	background: url(../images/bg.png) repeat center;*/
}

/*アクセントカラー（背景色）*/
.nav,
.ttl_h2:before,
.slick-arrow,
.slick-active button::before,
.popup_close {
	background: #c19403;
}

/*アクセントカラー（文字色）*/
.ttl_h3,
.wrapper .txt_link,
.wrapper b.highlight,
.cast_name1 {
	color: #ff46b4;
}

.popup_close {
	border-color: #eacfb7;
}

p{
	margin-bottom: 2em;
}
.wrapper a{
	display: block;
	width: fit-content;
	color: #fff;
	background-color: #ff46b4;
	border: #ff46b4 3px solid;
	border-radius: 20px;
	padding: 0.5rem 1rem;
	margin: 0.5rem;
}
.wrapper a:hover{
	border: #ff46b4 3px solid;
	background-color: #fff;
	color: #ff46b4;
}
/* ==========================================================
	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: #c19403;
		/*	画像はこちら↓ */
    /*	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;
}

.bold-txt {
font-weight: bold;
}

.item {
    width: 100%;
	margin-bottom: 1em;
	
}

@media screen and (min-width: 768px) {
.guestBox{
	display: flex;
	justify-content: space-between;
    margin-bottom: 1em;
}
.item {
    width: 49%;
	margin-bottom: 0;
}
}

/*出演者（写真あり）*/

h3{
	font-weight: bold;
	font-size: 3.2rem;
	margin-top: 2rem;
}
.f_box{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.f_box li{
	width: calc(50% - 1rem);	
    margin-bottom: 1rem;
}
.f_box dl{
	text-align: center;
}
.fourth_column{
	justify-content: space-between;
}
.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: 2.4rem;
	}
	.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);
	}	
}

/* 画像ガード */
.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;
    }
}
