@charset "UTF-8";
/* CSS Document */
/* =========================================================
特集CSS
=============================================================*/

/* =========================================================
header
========================================================= */
/*サイトナビ(該当ページのアイコンの色を上書き)
-------------------------------------------------- */
.nav ul li.feature a::before{
	content: "";
	background-image: url("../common/images/feature_icon_r.svg");
}
.nav ul li.feature a {
    color: #DD3333;
}
.nav ul li.feature a::after{
	content: "";
	position: absolute;
	left: 50%;
	bottom: -10px;/*線の上下位置*/
	display: inline-block;
	width: 40px;/*線の長さ*/
	height: 2px;/*線の太さ*/
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);/*位置調整*/
	background-color: #DD3333;
}
/*サイトナビ(該当ページのアイコンの色を上書き)(スマホ)
-------------------------------------------------- */
@media screen and (max-width:999px){
.nav ul li.feature a::before,.nav ul li.feature a::after{
	display: none;
}
.nav ul li.feature a {
    color: #333;
}
}
/* =========================================================
main
========================================================= */
/*トップページの見出し　共通スタイル
-------------------------------------------------- */
.content_box p{
	max-width: 750px;
	margin: 2em auto;
	margin: 0.5em auto;
line-height: 1.7;
}
.content_wrap .main_title h2::before{
	content: url("../common/images/feature_icon.svg");
	display: block;
	max-width: 68px;
	text-align: center;
	margin: 0 auto;
}
/*コンテンツ
-------------------------------------------------- */
.content_box .feature-list_inner{
	max-width: 1200px;
	margin: 0 auto;
	justify-content: space-between;
}
/*コンテンツ(スマホ)
-------------------------------------------------- */
@media screen and (max-width:999px){
.content_box .feature-list_inner{
	padding: 0 20px;
}
}
/*コンテンツ キャッチコピー
-------------------------------------------------- */
.content_box .season_catch {
    padding: 0 20px;
	text-align: center;
}
.content_box .special_catch {
    padding: 0 20px;
	text-align: center;
}
.content_wrap .content_box h3 {
	line-height: 1.6;
		font-family:'Noto Serif SC', Georgia, "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.content_box .special_catch p{
    margin: 0;
}

/*コンテンツ キャッチコピー(スマホ)
-------------------------------------------------- */
@media screen and (max-width:999px){
.content_box .season_catch {
    padding: 0 20px;
	text-align: left;
}
.content_wrap .content_box h3 {
/*    font-size: 1.7em;*/
	padding: 0;
/*	text-align: left;*/
}
.content_wrap .content_box h4 {
    font-size: 1.8em;
/*    margin: 3em 0px 0em;*/
}
.content_box .season_catch p {
    font-size: 1em;
    line-height: 1.7;
}
.content_box .special_catch p br{
    display: none;
}
}
/*バナーリスト一覧
-------------------------------------------------- */
.feature-list_inner{
	display: flex;
	flex-wrap: wrap;
}
.feature-list_item{
	width: 48%;
	margin: 2em 0;
}
.feature-list_item img{
	width: 100%;
	height: auto;
}
/*バナーリスト一覧(スマホ)
-------------------------------------------------- */
@media screen and (max-width:600px){
	.feature-list_item{
	width: 100%;
	margin: 1em 0;
	}
}