.news_container {
	padding-bottom: 150px;
	line-height: 1;
	font-size: 16px;
}

/*サイドバー*/
aside.leftArea{
	width: 220px;
	float: left;
}

aside h3{
	color: #2d2d2d;
	margin-bottom: 0.5em;
	font-weight: bold;
}
.mg-b60 {
	margin-bottom: 60px;
}
#menu {
	border-top: 1px solid #ccc;
}
.parent{ /*親カテゴリー　全てのカテゴリー*/
	padding: 0.8em 0 0.7em 0.6em;
	font-size: 16px;
	line-height: 1;
	background: linear-gradient(to right, #8cd265 0%, #6fc88d 50%, #57c0b2 100%);
	color: #fff;
	cursor: pointer;
	position: relative;
}
.parent::after {
	position: absolute;
	content: '';
	width: 8px;
	height: 8px;
	top: 50%;
	right: 16px;
	margin-top: -4px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}
.parent:not(.active) {
	border-bottom: 1px solid #fff;
}

.slide .parent{ /*アーカイブ　close*/
	background: linear-gradient(to right, #8cd265 0%, #6fc88d 50%, #57c0b2 100%);
}
.slide .parent::after {
	margin-top: -4px;
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	transform: rotate(135deg);
}
.slide .active{ /*アーカイブ　active*/
	background: linear-gradient(to right, #8cd265 0%, #6fc88d 50%, #57c0b2 100%);
}
.slide .active::after {
	margin-top: -2px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.side a{ /*子カテゴリ*/
	display: block;
	padding: 0.8em 0 0.7em 0.5em;
	color: #333;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	position: relative;
}
.side a::before { /*子カテゴリ*/
	position: relative;
	content: '';
	top: 50%;
	left: 0;
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 7px solid #6dc965;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
	margin-right: 0.4em;
}
.child li{ /*子カテゴリ 線*/
	border-bottom: 1px solid #ccc;
	vertical-align: bottom;
}

/*メインカラム*/
section.mainColumn{
	width: 680px;
	float: left;
	margin-left: 40px;
}

section.mainColumn ul{
	margin: 24px 0;
	border-top: 2px solid #ccc;
	border-bottom: 2px solid #ccc;
}
section.mainColumn li{
	color: #3c3c3c;
	padding: 20px 0;
	border-bottom: 1px dotted #ccc;
}
section.mainColumn li:last-child{
	border-bottom: none;
}
section.mainColumn li span{
	font-size: 14px;
	line-height: 20px;
}
section.mainColumn li img{
	margin-left: 1em;
	vertical-align: middle;
	width: auto;
}
section.mainColumn li p{
	font-size: 16px;
	line-height: 1.5;
	margin-top: 10px;
	word-break: break-all;
	color: #646464;
}

/*メインカラム（記事）*/
article{
	margin-bottom: 8vw;
}
article:after {
    content:" ";
    display:block;
    clear:both;
}
article .title{
	color: #3c3c3c;
	font-size: 14px;
	line-height: 1.8;
}
article .title img{
	margin-left: 1em;
	vertical-align: -15%;
	width: auto;
}
article .title p{
	margin: 0.5em 0 1.5em;
	padding-bottom: 0.5em;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.2;
	border-bottom: 1px solid #ccc;
}
article .content p{
	margin-bottom: 1em;
	line-height: 1.7;
	word-break: break-all;
}
article .content img {
	max-width: 100%;
	height: auto!important;
}

/*メインカラム（戻るボタン）*/
section.mainColumn .return {
	width: 300px;
	margin: 0 auto;
}
section.mainColumn .return a{
	border-radius: 0.3em;
	background: #6DC965;
	color: #FFF;
	display: block;
	font-size: 18px;
	text-align: center;
	padding: 0.9em 0;
}


/*ページャー*/
#pager {
	margin: 0 auto;
	text-align: center;
}
#pager a {
	border: 1px solid #6DC965;
	color: #6DC965;
	display: inline-block;
	font-size: 14px;
	margin: 0 3px;
	padding: 0.5em 0.3em;
	min-width: 30px;
}
#pager a:hover,
#pager a#current {
	border-color: #6DC965;
	background-color: #6DC965;
	color: #fff;
	opacity: 1;
}
#pager a.previous_link {
	margin: 0 40px 0 0;
}
#pager a.next_link {
	margin: 0 0 0 40px;
}
#pager .more {
	margin: 0 5px;
}

/*================================================
 *  スマートフォン向けデザイン
 ================================================*/
@media screen and (max-width:500px) {

/*サイドバー（セレクター）*/
.side select{
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	width: 100%;
	font-size: 5vw;
	border: 1px solid #B3B3B3;
	border-radius: 0;
	padding: 0 0.5em;
	line-height: 12vw;
	height: 12vw;
	background: url(../images/select_icon.png) no-repeat center right 3vw;
	background-size: 3vw;
}
select::-ms-expand {
    display: none;
}

/*サイドバー*/
aside.leftArea{
	width: 100%;
	float: none;
	margin-right: 0;
}

/*メインカラム*/
section.mainColumn{
	width: 100%;
	margin-top: 5vw;
	margin-left: auto;
	float: none;
}
body.detail section.mainColumn {
	margin-top: 0;
}
section.mainColumn ul{
	margin: 0 0 2em;
}
section.mainColumn li{
	padding: 1em 0;
}
section.mainColumn li span{
	font-size: 3.6vw;
	line-height: 5.5vw;
}
section.mainColumn li img{
	width: auto;
	height: 5.5vw;
	margin-left: 1em;
}
section.mainColumn li p{
	font-size: 4vw;
	margin-top: 0.5em;
}

/*メインカラム（記事）*/
article .title{
	font-size: 3.6vw;
}
article .title img{
	width: auto;
	height: 5.5vw;
}
article .title p{
	font-size: 4.5vw;
}

article .content p{
	font-size: 4vw;
}

/*メインカラム（戻るボタン）*/
section.mainColumn .return {
	width: 90%;
}
section.mainColumn .return a{
	font-size: 4.5vw;
	padding: 0.9em 0;
}

/*ページャー*/
#pager_sp {
	font-size: 3.6vw;
}
#pager_sp .page_number {
	text-align: center;
	margin-bottom: 1em;
}
#pager_sp .pager_nav {
	border: 1px solid #b3b3b3;
	display: table;
	width: 100%;
	height: 3.5em;
	text-align: center;
	margin-bottom: 0;
}
#pager_sp .pager_nav > li {
	border: none;
	color: #b3b3b3;
	display: table-cell;
	vertical-align: middle;
	padding: 0;
	line-height: 1;
}
#pager_sp .pager_nav > li:first-child,
#pager_sp .pager_nav > li:last-child {
	width: 12vw;
}
#pager_sp .pager_nav > li:not(:last-child) {
	border-right: 1px solid #b3b3b3;
}

#pager_sp .pager_nav > li a {
	color: #333;
	display: block;
	line-height: 3.5;
}


	
}