@charset "utf-8";

/* CSS INFORMATION -====================================================
File name : layout.css
Description : レイアウト用CSS
===================================================================== */


/* ==========================================================
	共通
========================================================== */

/*メインビジュアル背景*/
.mv {
	background-color: #05060b;
	/*	画像はこちら↓ */
	/*	background: url(../images/bg.png) repeat center;*/
}

/*アクセントカラー（背景色）*/
.nav,
.ttl_h2:before,
.slick-arrow,
.slick-active button::before,
.popup_close {
	background-color: #efb509;
}

/*アクセントカラー（文字色）*/
.ttl_h3,
.wrapper .txt_link,
.wrapper b.highlight,
.cast_name1 {
	color: #efb509;
}

.popup_close {
	border-color: #101b37;
}


/* ==========================================================
	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: linear-gradient( #05060b 0%, #05060b 100%);
    /*	画像はこちら↓ */
    /*	background: url(../images/bg.png) repeat center;*/
}

/*コンテンツ背景*/
.contents {
	background: #fff;
	padding-top: 3rem;
}

/*スライダーの矢印ボタン：ホバー*/
/*ポップアップのクローズボタン：ホバー*/
.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;
    }
}

.f_box{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.f_box li{
	width: calc(50% - 1rem);	
    margin-bottom: 1rem;
}
.two_column{
	justify-content: left;
	gap:1rem;
}
.cast_title{
	font-size: 1.3em;
	font-weight: bold;
}
.bnr_box{
	width: 100%;
	margin-bottom: 2rem;
}
.topics{
	font-size: 2.8rem;
	font-weight: bold;
}
@media screen and (min-width: 768px) {
	.two_column{
		justify-content: flex-start;
		gap:1rem;
	}
	.f_box li{
		width: calc(25% - 1rem);
	}
	.bnr_box{
		width: calc(600 / 1024 * 100%);
		margin: 0 auto 2rem;
	}
	.topics{
		font-size: 2rem;
	}
}
