/* *****  モジュール ***** */
#detail .wrap{
	padding:56px 0 0;
}

#detail .section_inner{
	padding:0 10px;
	margin:80px auto;
}

/*
#detail .is-small .section_inner{
	max-width:780px;
}
*/

/* page title */
.c_headline{
	background:#f1f1f1;
	width:100%;
	padding:25px 0;
}

.c_headline_inner{
	max-width: 980px;
	margin: 0 auto;
	padding: 0 10px;
}

.c_headline_inner h1{
	font-weight: 500;
	font-size: 32px;
	position:relative;
}

.c_headline_inner h1:after{
	content:"";
	background: #000;
	left:0;
	bottom: -6px;
	height: 2px;
	position: absolute;
	width: 50px;
}

/* 段組 */
.c_container{
	margin:0 0 60px;
}

.c_container *:last-child{
	margin-bottom:0;
}

.c_flex{
	display:flex;
	/* align-items: center; */
	justify-content: space-between;
	margin:0 0 40px;
}

.c_flex.is-reverse{
	flex-flow: row-reverse;
}

.c_flex_l{
	width:48%;
}

.c_flex_r{
	width:48%;
}

.c_flex_l *:last-child,
.c_flex_r *:last-child{
	margin-bottom:0;
}

/* headline */
.c_headline_02{
	font-weight: 500;
	font-size: 26px;
	margin:0 0 20px;
	position: relative;
	padding:0 0 8px;
	border-bottom: 2px solid #ddd;
}

.c_headline_02:before{
	content: '';
	position: absolute;
	bottom: -2px;
	left:0;
	display: inline-block;
	width: 50px;
	height: 2px;
	background:#9a8478;
}

.c_headline_03{
	font-weight: 500;
	font-size: 22px;
	margin:0 0 20px;
	position: relative;
	padding-left:16px;
}

.c_headline_04{
	font-weight: 500;
	font-size: 18px;
	margin:0 0 20px;
	position: relative;
	padding-left:16px;
}

.c_headline_03:before,
.c_headline_04:before{
	content: '';
	position: absolute;
	top: 50%;
	left:0;
	display: inline-block;
	width: 10px;
	height: 3px;
	margin-top:-1.5px;
	background:#9a8478;
}

/* 本文 */
[class^="c_text"]{
	margin:0 0 20px;
}

.c_text_asta{
	text-indent:-1em;
	padding-left:1em;
}

.c_text_asta:before{
	content:"※";
}

.c_text_right{
	text-align:right;
}

.c_text_center{
	text-align:center;
}


/* 表組み */
.c_table_01{
	width:100%;
	margin:0 0 30px;
}

.c_table_01 tr td.is-center,
.c_table_01 tr th.is-center{
	text-align:center;
}

.c_table_01 tr th{
	background: #f1f1f1;
	padding: 20px;
	font-weight: 500;
	border: 1px solid #bdbdbd;
	text-align: left;
}

.c_table_01 thead tr th{
	text-align: center;
}

.c_table_01 tr td{
	padding: 20px;
	border: 1px solid #bdbdbd;
	text-align: left;
	word-wrap: break-word;
	-webkit-text-size-adjust: 100%;
}

/* 画像 */
[class^="c_media"]{
	margin:0 0 30px;
}

.c_media_center{
	text-align:center;
}

.c_media_caption,
.c_media_caption a{
	color:#666;
	font-size:90%;
}

.c_media_caption{
	margin:10px 0 0;
}

.c_media_middle{
	max-width:500px;
	width:100%;
	margin-left:auto;
	margin-right:auto;
}
.c_media_middle img{
	max-width:100%;
}


/* youtube */
.c_video{
	max-width:560px;
	margin:0 auto 30px;
}

.c_video.is-full{
	max-width:100%;
}

.c_video_inner{
	position:relative;
	width:100%;
	padding-top:56.25%;
}
.c_video iframe{
	position:absolute;
	top:0;
	right:0;
	width:100%;
	height:100%;
}

/* 料金テーブル */
.c_price{
	overflow:hidden;
	margin:0 0 30px;
	color: #cc0000;
}

.c_price dt{
	width:180px;
	float:left;
}

.c_price dd{
	width:150px;
	padding:0 0 0 150px;
	text-align:right;
}

/* アスタリスト */
.c_list_asta{
	margin:0 0 20px;
}
.c_list_asta li{
	text-indent:-1em;
	padding-left:1em;
	font-size:80%;
	color:#666;
}

.c_list_asta li:before{
	content:"※";
}

/* 丸リスト */
.c_list_circle{
	margin:0 0 20px;
}

.c_list_circle li{
	margin:0 0 5px;
	padding-left:1.2em;
	position:relative;
}

.c_list_circle li:before{
	content:"・";
	position:absolute;
	top:0;
	left:0;
}

/* 番号付リスト */
.c_list_decimal{
	margin:0 0 20px 26px;
	list-style-type: decimal
}

.c_list_decimal li{
	margin:0 0 5px;
	padding:0 0 5px;
	position:relative;
}


/* 番号リスト */
.c_list_number{
	margin:0 0 20px;
}
.c_list_number dt{
	padding-left:1.2em;
	color:#9a8478;
	font-weight:500;
	position:relative;
}

.c_list_number dt:before{
	content:"1.";
	position:absolute;
	top:0;
	left:0;
}
.c_list_number dt.c_list_number_2:before{ content:"2."; }
.c_list_number dt.c_list_number_3:before{ content:"3."; }
.c_list_number dt.c_list_number_4:before{ content:"4."; }
.c_list_number dt.c_list_number_5:before{ content:"5."; }
.c_list_number dt.c_list_number_6:before{ content:"6."; }
.c_list_number dt.c_list_number_7:before{ content:"7."; }
.c_list_number dt.c_list_number_8:before{ content:"8."; }
.c_list_number dt.c_list_number_9:before{ content:"9."; }
.c_list_number dt.c_list_number_9:before{ content:"10s."; }

.c_list_number dd{
	margin:0 0 10px;
}

/* faq */
.c_faq{
	overflow:hidden;
}

.c_faq dt{
	overflow:hidden;
	margin:0 0 20px;
	background:#f1f1f1;
	border:1px solid #ccc;
	padding:20px 20px 20px 30px;
	font-weight:bold;
	position:relative;
	cursor:pointer;
}

.c_faq dt:before{
	content:"Q";
	position:absolute;
	top:20px;
	left:10px;
	font-weight:bold;
}

.c_faq dt:after{
	content:"＞";
	transform:scale(1, 0.6) rotate(-270deg);
	position:absolute;
	top:20px;
	right:10px;
}

.c_faq dt.is-active:after{
	transform:scale(1, 0.6) rotate(-90deg);
}

.c_faq dd{
	margin:0 0 40px;
	padding:20px 20px 20px 30px;
	border:1px solid #ccc;
	position:relative;
	display:none;
}

.c_faq dd:before{
	content:"A";
	color:#CC0000;
	position:absolute;
	top:20px;
	left:10px;
	font-weight:bold;
}

/* ページメニュー */
.c_category_menu{
	display:flex;
	flex-wrap: wrap;
	/* justify-content: space-between; */
}
.c_category_menu li{
	width:24%;
	margin:0 1% 20px 0;
}

.c_category_menu li a{
	border:2px solid #f1f1f1;
	display:block;
}

.c_category_menu li.is-active a{
	border:2px solid #9a8478;
}

/* インタビュー */
.c_interview_name{
	padding:0 0 40px;
}

.c_interview_name span{
	color:#cc0000;
}

.c_interview{
	overflow:hidden;
}

.c_interview dt{
	width:50px;
	float:left;
}

.c_interview dt.c_interview_a{
	color:#cc0000;
}

.c_interview dd{
	padding:0 0 40px 60px;
}


@media screen and (max-width: 767px){
	#detail .is-small .section_inner{
		margin-top:40px;
	}

	/* page title */
	.c_headline_inner h1{
		font-size: 26px;
	}

	/* 段組 */
	.c_flex{
		display:block;
	}
	
	.c_flex_l{
		width:auto;
		margin:0 0 30px;
	}
	
	.c_flex_r{
		width:auto;
	}

	/* headline */
	.c_headline_02{
		font-size: 22px;
	}
	
	.c_headline_03{
		font-size: 18px;
	}
	
	.c_headline_04{
		font-size: 15px;
	}

	/* ページメニュー */
	.c_category_menu li{
		width:32%;
	}

	/* 表組み */
	.c_table_scroll{
		width:100%;
		overflow-x:scroll;
	}
	.c_table_scroll .c_table_01{
		width:750px;
	}
	.c_table_01 tr th,
	.c_table_01 tr td{
		padding:10px;
	}

}


