@charset "utf-8";

/* CSS INFORMATION -====================================================
File name : layout.css
Description : レイアウト用CSS
===================================================================== */


/* ==========================================================
	共通
========================================================== */

/*メインビジュアル背景*/
.mv {
	background-color: #000;
	/*	画像はこちら↓ */
	/*	background: url(../images/bg.png) repeat center;*/
}

/*アクセントカラー（背景色）*/
.nav,
.ttl_h2:before,
.slick-arrow,
.slick-active button::before,
.popup_close {
	background-color: #ff002e;
}

/*アクセントカラー（文字色）*/
.ttl_h3,
.wrapper .txt_link,
.wrapper b.highlight,
.cast_name1 {
	color: #ff002e;
}

.popup_close {
	border-color: #ff002e;
}

h2 {
	color: #fff;
}

/* ==========================================================
	header
========================================================== */

/*メニューの幅(SP)
　※calc(### / 750 * 100%)の###部分を変更してください*/
.nav ul {
	width: calc(1200 / 750 * 100%);
}

/*メニューの文字色*/
.nav a {
	color: #fff;
}

/*メニューの文字色：ホバー*/
/*テキストリンクの文字色：ホバー*/
.nav a:hover,
.txt_link:hover {
	color: #000;
}

/*メニューの下線：ホバー*/
.nav a:hover:after {
	background-color: #000;
}


/* ==========================================================
	コンテンツ
========================================================== */

/*コンテンツ外側の背景*/
#main {
	background-color: #000;
    /*	画像はこちら↓ */
    /*	background: url(../images/bg.png) repeat center;*/
}

/*コンテンツ背景*/
.contents {
	background-color: #000;
}
.contents P {
	color: #fff;
}

/*スライダーの矢印ボタン：ホバー*/
/*ポップアップのクローズボタン：ホバー*/
.slick-arrow:hover,
.popup_close:hover {
	background-color: #000;
}

/*ポップアップのクローズボタン：ホバー*/
.popup_close:hover {
	border-color: #000;
}

/* ==========================================================
	this contents only
========================================================== */

.castBox {
display: flex;
		flex-direction: row;
		justify-content: space-between;
flex-wrap: wrap;

margin: 2rem;
}
.castBox figure {
	width: 48%;
	margin-bottom: 2rem;
}
.castBox img, .oaImgBox img {
	width: 100%;
}

.pic1 {
	width: 90%;
	margin: 2rem auto;
}

.catchTxt {
	font-size: 3rem;
	font-weight: 700;
	color: #ff002e;
	text-align: center;
}

.oaImgBox {
	display: flex;
		flex-direction: row;
		justify-content: space-around;
flex-wrap: wrap;
width: 100%;
margin-bottom: 2rem;
}

.oaImgBox figure {
	width: 90%;
	height: auto;
	margin-bottom: 2rem;
}

@media screen and (min-width: 769px) {

.castBox figure {
	width: 180px;
	height: auto;
}
.pic1 {
	width: 800px
}

.oaImgBox figure {
	width: 450px;
}
}
