@charset "UTF-8";

/*================================================
 *  新着情報（news）
 ================================================*/
/*******ページタイトル*******/
#pageTitle h2 em {
	font-size: 36px;
	letter-spacing: 0;
}




#news_wrap {
	max-width: 1100px;
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	margin: 0 auto;
	font-size: 18px;
}

/*サイドバー*/
#news_wrap .leftArea {
	width: 250px;
	color: #505050;
}

#news_wrap .leftArea h3 {
	color: #1e1e1e;
	font-weight: 700;
	margin-bottom: 0.6em;
}
#news_wrap .leftArea #menu + h3 {
	margin-top: 40px;
}
#news_wrap .leftArea #menu {
	font-size: 18px;
}
#news_wrap .leftArea #menu .parent {
	background-color: #2e9568;
	color: #fff;
	cursor: pointer;
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	height: 50px;
	padding-left: 10px;
	-webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
}
#news_wrap .leftArea #menu .parent::after {
	position: absolute;
	content: '';
	width: 10px;
	height: 10px;
	top: 50%;
	right: 0.9em;
	border-top: 2px solid;
	border-right: 2px solid;
	-webkit-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}
#news_wrap .leftArea #menu.slide .parent::after {
	margin-top: -4px;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}
#news_wrap .leftArea #menu.slide li.active .parent::after {
	margin-top: -2px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#news_wrap .leftArea #menu.slide > li:not(.active) + li {
	border-top: 1px solid #fff;
}

#news_wrap .leftArea #menu .child li {
	border-bottom: 1px solid #c8c8c8;
}
#news_wrap .leftArea #menu .child li a {
	display: block;
    padding: 15px 0 15px 25px;
    position: relative;
    line-height: 1.25;
}
#news_wrap .leftArea #menu .child li a::before {
	position: absolute;
	content: '';
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	width: 0;
    height: 0;
    border-left: 7px solid #2e9568;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}


/*メインカラム*/
section.mainColumn{
	width: 780px;
}

section.mainColumn > ul {
	border-top: 2px solid #c8c8c8;
	border-bottom: 2px solid #c8c8c8;
	margin-top: 28px;
}
section.mainColumn > ul li {
	color: #1e1e1e;
	padding: 25px 0;
}
section.mainColumn > ul li + li {
	border-top: 1px solid #c8c8c8;
}
section.mainColumn > ul li span {
	line-height: 20px;
}
section.mainColumn > ul li img {
	margin-left: 1em;
}
section.mainColumn > ul li p {
	font-size: 20px;
	line-height: 1.5;
	margin-top: 10px;
	word-break: break-all;
	color: #505050;
}

/*メインカラム（記事）*/
section.mainColumn article {
	margin-bottom: 80px;
}
section.mainColumn article .title {
	margin-bottom: 28px;
	font-size: 16px;
}
section.mainColumn article .title img {
	margin-left: 1em;
}
section.mainColumn article .title img + img {
	margin-left: 5px;
}
section.mainColumn article .title p{
	margin-top: 0.75em;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.5;
}
section.mainColumn article .content {
	line-height: 1.75;
}
section.mainColumn article .content p {
	margin-bottom: 1.5em;
	word-break: break-all;
}
section.mainColumn article .content img {
	max-width: 100%;
	height: auto!important;
	vertical-align: middle;
}

section.mainColumn article .content a {
	color: #0071bc;
	text-decoration: underline;
}

/*メインカラム（戻るボタン）*/
section.mainColumn .return .hover_arrow_return {
	width: 260px;
	height: 60px;
	font-size: 20px;
	font-weight: normal;
	margin: 0 auto;
}


/*ページャー*/
#pager {
	margin: 30px auto 0;
	text-align: center;
	color: #808080;
	font-size: 18px;
}
#pager a {
	border: 1px solid #b3b3b3;
	display: inline-block;
	margin: 0 3px;
	padding: 0.5em 0.3em;
	min-width: 36px;
}
#pager a:hover,
#pager a#current {
	border-color: #2e9568;
	background-color: #2e9568;
	color: #fff;
	opacity: 1;
}
#pager a.previous_link {
	margin: 0 40px 0 0;
}
#pager a.next_link {
	margin: 0 0 0 40px;
}
#pager a:not(.previous_link):not(.next_link) {
	font-family: 'Lato', sans-serif;
	font-weight: 400;
}
#pager .more {
	margin: 0 5px;
}


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

/*******ページタイトル*******/
#pageTitle {
	padding: 5vw 0 7vw;
}
#pageTitle h2 em {
	font-size: 6vw;
}




#news_wrap {
	display: block;
	max-width: inherit;
	width: 80vw;
	font-size: 4vw;
}

/*サイドバー（セレクター）*/
#news_wrap .leftArea 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;
}
#news_wrap .leftArea select::-ms-expand {
    display: none;
}

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

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



/*メインカラム（記事）*/
section.mainColumn article {
	margin-bottom: 10vw;
}
section.mainColumn article .title {
	font-size: 3.6vw;
	margin-bottom: 5vw;
	line-height: 5.5vw;
	padding-top: 1px;
}
section.mainColumn article .title img{
	width: auto;
	height: 5.5vw;
}
section.mainColumn article .title img + img {
	margin-left: 1vw;
}

section.mainColumn article .title p {
	font-size: 4.5vw;
}

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


/*メインカラム（戻るボタン）*/
section.mainColumn .return .hover_arrow_return {
	width: 50vw;
	height: 12vw;
	font-size: 4.5vw;
}
section.mainColumn .return .hover_arrow_return span {
	width: 10vw;
}


/*ページャー*/
#pager_sp {
	font-size: 3.6vw;
	margin-top: 8vw;
}
#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: #2e9568;
	display: block;
	line-height: 3.5;
}


	
}