@charset "utf-8";

/* CSS INFORMATION -====================================================
File name : layout.css
Description : レイアウト用CSS
===================================================================== */


/* ==========================================================
	共通
========================================================== */

/*メインビジュアル背景*/
.mv {
	background-color: #FFF;
	/*	画像はこちら↓ */
	/*	background: url(../images/bg.png) repeat center;*/
}
.nav{
	background-color: #000;
}

/*アクセントカラー（背景色）*/
.ttl_h2:before,
.slick-arrow,
.slick-active button::before,
.popup_close {
	background-color: #e60039;
}

/*アクセントカラー（文字色）*/
.ttl_h3,
.wrapper .txt_link,
.wrapper b.highlight,
.cast_name1 {
	color: #e60039;
}

.popup_close {
	border-color: #e60039;
}


/* ==========================================================
	header
========================================================== */

/*メニューの幅(SP) 
　※calc(### / 750 * 100%)の###部分を変更してください*/
.nav ul {
	width: calc(620 / 750 * 100%);
}

/*メニューの文字色*/
.nav a {
	color: #fff;
}

/*メニューの文字色：ホバー*/
/*テキストリンクの文字色：ホバー*/
.nav a:hover,
.txt_link:hover {
	color: #fff;
}

/*メニューの下線：ホバー*/
.nav a:hover:after {
	background-color: #fff;
}


/* ==========================================================
	コンテンツ
========================================================== */

/*コンテンツ外側の背景*/
#main {
	background-color: #fff;
    /*	画像はこちら↓ */
    /*	background: url(../images/bg.png) repeat center;*/
}

/*コンテンツ背景*/
.contents {
	background-color: #fff;
}

/*スライダーの矢印ボタン：ホバー*/
/*ポップアップのクローズボタン：ホバー*/
.slick-arrow:hover,
.popup_close:hover {
	background-color: #e60039;
}

/*ポップアップのクローズボタン：ホバー*/
.popup_close:hover {
	border-color: #e60039;
}
/*動画幅*/
.movie {
    width: calc(960 / 964 * 100%)!important;
}
/*バナーBOX*/
.banner_box{
        margin-top: calc(50 / 964 * 100%);
}

@media screen and (min-width: 768px){
.banner_list li {
    width: calc(300 / 964 * 100%)!important;
}
/*動画幅（横並び）*/       
.movie {
    width: calc(450 / 964 * 100%)!important;
}
}