@charset "utf-8";

/* CSS INFORMATION -====================================================
File name : layout.css
Description : レイアウト用CSS
===================================================================== */


/* ==========================================================
	共通
========================================================== */

/*メインビジュアル背景*/
.mv {
	background-color: #fff;
	/*	画像はこちら↓ */
	/*	background: url(../images/bg.png) repeat center;*/
}

/*アクセントカラー（背景色）*/
.nav,
.ttl_h2:before,
.slick-arrow,
.slick-active button::before,
.popup_close {
	background-color: #838d0e;
}

/*アクセントカラー（文字色）*/
.ttl_h3,
.wrapper .txt_link,
.wrapper b.highlight,
.cast_name1 {
	color: #d63a26;
}

.popup_close {
	border-color: #d63a26;
}


/* ==========================================================
	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: #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;
}

.text_center{
	text-align: center;
	margin-top: 15px;
}
.wrapper section:not(:last-child) {
    border-bottom: none;
}
.font_b{
	font-weight: 
		bold;
}
.mb_15{
	margin-bottom: 15px;
}

.formbox{
	max-width: 480px;
}

.caution li{ text-indent: -1em;
   padding-left: 1em;}

 .summary_box{
	 display: flex;
	 justify-content: space-between;
 }  
 .text_box{
	 width: 100%;
	 margin-right: 2em;
 }

.highlight{
	color: #d63a26;
	font-weight: bold;
	font-size: 1.8rem;
}
.present_item{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin-bottom: 2em;
}
.present_item li{
	width: 80%;
	margin: 0 auto;
}
.present_text{
	width: 70%;
}
.image_box{
	width: 20%;
}
.image_box img{
	max-width: 280px;
}
.caution{
	margin-bottom: 5em;
}
.caution a{
	text-decoration: underline;
}
.caution a:hover{
	opacity: 0.8;
}
 @media screen and (max-width: 767px){
	.summary_box{
		display: flex;
		flex-direction: column;
	}  
	.present_text{
		width: 100%;
		margin-right:0;
		margin-bottom: 2em;
	}
	.present_item {
		display: block;
	}
	.highlight{
		font-size: 2.8rem;
	}
	.image_box {
		width: 80%;
		margin: 0 auto;
	}
}
   