@charset "utf-8";

/* CSS INFORMATION -====================================================
File name : layout.css
Description : レイアウト用CSS
===================================================================== */


/* ==========================================================
	共通
========================================================== */

/*メインビジュアル背景*/
.mv {
	background-color: #fff;
	/*	画像はこちら↓ */
		/* background: url(../images/bg.jpg) repeat center; */
}

/*アクセントカラー（背景色）*/
.nav,
.ttl_h2:before,
.slick-arrow,
.slick-active button::before,
.popup_close {
	background-color: #dc0010;
}

/*アクセントカラー（文字色）*/
.ttl_h3,
.wrapper .txt_link,
.wrapper b.highlight,
.cast_name1 {
	color: #dc0010;
}

.popup_close {
	border-color: #dc0010;
}


/* ==========================================================
	header
========================================================== */

/*メニューの幅(SP) 
　※calc(### / 750 * 100%)の###部分を変更してください*/
.nav ul {
	width: calc(400 / 750 * 100%);
}

/*メニューの文字色*/
.nav a {
	color: #fff;
}

/*メニューの文字色：ホバー*/
/*テキストリンクの文字色：ホバー*/
.nav a:hover,
.txt_link:hover {
	color: #000;
}

/*メニューの下線：ホバー*/
.nav a:hover:after {
	background-color: #000;
}


/* ==========================================================
	コンテンツ
========================================================== */

/*コンテンツ外側の背景*/
#main {
	background-color: #fff;
    /*	画像はこちら↓ */
    /*	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;
}

.ttl_h3 {
    font-size: 2.6rem!important;
}
.catch{
	font-size: 3.4rem!important;
}

@media screen and (min-width: 768px) {
.ttl_h3 {
    font-size: 1.8rem!important;
}
.catch{
	font-size: 2.4rem!important;
}
}

.bnr_oubo{
	width:100%;
	margin: 3rem auto;
}

.bnr_oubo:hover{
	opacity: 0.7;
	transition: 0.3s ease;

}

.ttl_h2 {
    position: relative;
    font-weight: bold;
    font-size: 3.2rem;
    margin-bottom: 1.5em;
    padding-left: 1em;
    line-height: 1;
}

.ttl_h2:before {
	background-color: #dc0010;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0.5em;
    height: 100%;
}

@media screen and (min-width: 768px) {
	.bnr_oubo{
		width: calc(660 / 1024 * 100%);

	}
}