@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: #f9b903;
}

/*アクセントカラー（文字色）*/
.ttl_h3,
.wrapper .txt_link,
.wrapper b.highlight,
.cast_name1 {
	color: #e3027c;
}

.popup_close {
	border-color: #e3027c;
}


/* ==========================================================
	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: 60%;
	 margin-right: 2em;
 }


/* ==========================================================
	クイズ
========================================================== */
.quiz li{
	margin-bottom: 1em;
}
.acd-check{
    display: none;
}
.acd-label{
    background: #cfe4e6;
    color: #333;
    display: block;
    margin-bottom: 1px;
    padding: 10px;
    position: relative;
}
.acd-label:after{
    box-sizing: border-box;
    content: '';
	background: url(../images/icon_plus.png) center center no-repeat;
	background-size: 50%;
	background-color: #009945;
    display: block;
	max-height: 9999px;
    padding: 1em;
    position: absolute;
    right: 0;
    top: 0px;
}
.question_title{
	display: block;
	font-weight: bold;
	color: #009945;
}
.question_text{
	display: block;
	padding-right: 3em;
}
.answer_title{
	display: block;
	font-weight: bold;
	color: #f02b18;
}
.acd-content{
    border: 2px solid #009945;
    display: block;
    height: 0;
    opacity: 0;
    padding: 0 10px;
    transition: .5s;
    visibility: hidden;
}
.acd-check:checked + .acd-label:after{
    content: '';
	background: url(../images/icon_minus.png) center center no-repeat;
	background-color: #009945;
	background-size: 50%;
	max-height: 9999px;
}
.acd-check:checked + .acd-label + .acd-content{
    height: auto;
    opacity: 1;
    padding: 10px;
    visibility: visible;
}
.acd-content span{
	font-weight: bold;
}
.blue{
	color: #00336e;
	font-weight: bold;

}
.red{
	color: #f02b18;
	font-weight: bold;

}
.green{
	color: #008521;
	font-weight: bold;

}
.yellow{
	color: #fac206;
	font-weight: bold;

}
.notes{
	font-size: 0.8em;
}


 @media screen and (max-width: 767px){
	.summary_box{
		display: flex;
		flex-direction: column;
	}  
	.text_box{
		width: 100%;
		margin-right:0;
		margin-bottom: 2em;
	}
}
   