@charset "utf-8";

/* ------------------------------------------------------------------
	TOP styles
-------------------------------------------------------------------*/
.container_top { }
.container_top .wrapper_top_head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	max-width: 1240px;
	margin: 0 auto;
}
.container_top .wrapper {
	width: 1240px;
	margin-top: 0 !important;
}
.container_top .main {
	border-radius: 8px 8px 0 0;
	float: none;
	width: 886px;
	padding: 20px;
}
.container_top .sidebar {
	border-radius: 8px 8px 0 0;
	float: none;
	margin-left: auto;
}
.container_top .main_1col {
	padding: 20px 20px 0 20px;
	margin-bottom: 20px;
}
.container_top .main_1col:first-child {
	border-radius: 0 0 8px 8px;
}
.container_top .flex_col_3 .flex_col_item {
	margin-right: 30px;
	width: calc( ( 100% - 60px ) / 3 );
}
.container_top .flex_col_4 .flex_col_item {
	margin-right: 40px;
	width: calc( ( 100% - 120px ) / 4 );
}
.container_top .flex_col_3 .flex_col_item:nth-child(3n),
.container_top .flex_col_4 .flex_col_item:nth-child(4n) {
	margin-right: 0;
}

/* 記事の最後のborderとmarginをなくす処理（各カラムにまんべんなく記事が並べられる場合にのみ適用が可能。数が不足すると見た目がおかしくなる。） */
.container_top .flex_col_2 .post_item:nth-last-child(-n+2),
.container_top .flex_col_3 .post_item:nth-last-child(-n+3),
.container_top .flex_col_4 .post_item:nth-last-child(-n+4),
.container_top .flex_col_5 .post_item:nth-last-child(-n+5) {
	border-bottom: none;
	margin-bottom: 0;
}

/* --------------------------------
	速報
--------------------------------*/
.flash_news_box {
	background: #FFF;
	border: 2px solid #E51720;
	border-radius: 4px;
	padding: 13px 14px;
	margin-bottom: 20px;
}
.flash_news_wrap { }
.flash_news_item,
.flash_news_item_original {
	position: relative;
	padding: 0 80px 0 70px;/* 記事件数によってleftの値を適宜変更して下さい。 */
	font-size: 16px;
	font-weight: 700;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.flash_news_item_none {
	position: relative;
	padding: 0 80px 0 0;/* 記事件数によってleftの値を適宜変更して下さい。 */
	font-size: 16px;
	font-weight: 700;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.flash_news_item:before {
	display: block;
	content: '速報';
	background: #FF0000;
	border-radius: 4px;
	width: 60px;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	color: #FFF;
}
.flash_news_item_original:before {
	display: block;
	content: '独自';
	background: #FF0000;
	border-radius: 4px;
	width: 60px;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	color: #FFF;
}
.flash_news_item_none:before {
	display: block;
	content: '';
	border-radius: 4px;
	width: 60px;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	color: #FFF;
}
.flash_news_item a,
.flash_news_item_original a {
	color: #000;
}

#flash_slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
#flash_slide .swiper-wrapper {
	width: calc( 100% - 60px );
}
#flash_slide.is_single .swiper-wrapper {
	width: 100%;
}
#flash_slide.is_single .flash_news_item,
#flash_slide.is_single .flash_news_item_original {
	padding: 0 0 0 70px;
}
.flash_news_parts {
	background: #FFF;
	z-index: 2;
	width: 60px;/* 記事件数によって適宜変更して下さい。 */
	position: relative;
}
.flash_news_parts.hidden {
	display: none;
}

/* ページネーションのスタイル */
.flash_news_box .swiper-pagination {
	top: 50%;
	bottom: -11px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.flash_news_box .swiper-pagination-bullet {
	background: #DBD3C5;
	width: 4px;
	height: 4px;
	opacity: 1;
	vertical-align: middle;
	margin: 0 2px !important;
}
.flash_news_box .swiper-pagination-bullet-active {
	background: #E51720;
	width: 6px;
	height: 6px;
}

/* 前ページ、次ページボタンのスタイル */
.flash_news_box .swiper-button-prev,
.flash_news_box .swiper-button-next {
	width: 10px;
	height: 16px;
	margin-top: -8px;
	outline: none;
}
.flash_news_box .swiper-button-prev:after,
.flash_news_box .swiper-button-next:after {
	display: none;
}
.flash_news_box .swiper-button-next {
	background: url(../img/flash_next.svg) no-repeat left center;
	background-size: 10px 16px;
	right: 0;
}
.flash_news_box .swiper-button-prev {
	background: url(../img/flash_prev.svg) no-repeat left center;
	background-size: 10px 16px;
	left: 0;
}

/* --------------------------------
	お知らせ
--------------------------------*/
.hkd_info {
	background: #FFF;
	border: 1px solid #D9D3C5;
	border-radius: 10px;
	margin-top: 13px;
	padding: 8px;
}
.hkd_info dl {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.hkd_info_title {
	padding-left: 30px;
	width: 110px;
	position: relative;
	font-weight: 700;
	color: #00418F;
  font-size: 16px;
}
.hkd_info_title:before {
	display: block;
	content: '';
	background: url(../img/info.svg) no-repeat left center;
	background-size: 100%;
	width: 22px;
	height: 21px;
	margin-top: -10px;
	position: absolute;
	top: 50%;
	left: 5px;
}
.hkd_info_body {
	border-left: 1px solid #D9D3C5;
	padding: 10px 10px 10px 15px;
	font-weight: 500;
  font-size: 14px;
}
.hkd_info_body a {
	color: #333;
}
.hkd_info_body a:hover {
	text-decoration: underline;
}

/* --------------------------------
	イベント情報
--------------------------------*/
.section_top_event .post_thm_reverse {
	margin-right: 15px;
}
.section_top_event .post_thm_bg {
	padding-top: 90%;
}

/* --------------------------------
	主要下特集枠
--------------------------------*/
.section_top_special {
	display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.section_top_event .post_thm_bg {
	padding-top: 90%;
}
.section_top_special_main {
  margin-top: 30px;
  width: calc(50% - 16px);
  border-top: 3px solid;
  border-color: #EEEAE0;
  padding-top: 20px;

}
.section_top_special .post_item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

