@charset "UTF-8";

/*================================================
 *  新着情報（news）
 ================================================*/


#news_wrap {
	padding: 0 100px;
	max-width: 1300px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
	font-size: 20px;
}

/*サイドバー*/
#news_wrap .leftArea {
	width: 250px;
	flex-shrink: 0;
}

#news_wrap .leftArea h3 {
	color: #1e1e1e;
	font-weight: 700;
	margin-bottom: 1em;
}
#news_wrap .leftArea #menu + h3 {
	margin-top: 30px;
}
#news_wrap .leftArea #menu .parent {
	background-color: var(--color-main);
	color: #fff;
	font-weight: 500;
	cursor: pointer;
	position: relative;
	display: flex;
	align-items: center;
	height: 60px;
	padding-left: 1em;
    transition: all 0.4s linear;
}

#news_wrap .leftArea #menu .parent::before,
#news_wrap .leftArea #menu .parent::after {
	position: absolute;
	content: '';
	top: 50%;
}
#news_wrap .leftArea #menu .parent::before {
	right: 0.9em;
	border-radius: 50%;
	border: 2px solid;
	height: 1.6em;
	width: 1.6em;
	transform: translate(0,-50%);
}
#news_wrap .leftArea #menu .parent::after {
	right: 1.55em;
	border-top: 2px solid;
	border-right: 2px solid;
	height: 0.4em;
	width: 0.4em;
	transform: translate(0,-50%) rotate(45deg);
}
#news_wrap .leftArea #menu.slide .parent::after {
	right: 1.5em;
	transform: translate(0,-50%) rotate(-45deg);
}
#news_wrap .leftArea #menu.slide li.active .parent::after {
	transform: translate(0,-50%) rotate(135deg);
}

#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 {
	padding: 10px 0;
}
#news_wrap .leftArea #menu .child li a {
	display: block;
    padding: 10px 0 10px 2em;
    position: relative;
    line-height: 1.25;
}
#news_wrap .leftArea #menu .child li a::before {
	position: absolute;
	content: '';
	top: 50%;
	left: 0.8em;
	width: 0.5em;
	height: 0.5em;
	margin: auto;
	border-top: 2px solid var(--color-main);
	border-right: 2px solid var(--color-main);
	transform: rotate(45deg) translateY(-50%);
}


/*メインカラム*/
section.mainColumn{
	padding-left: 70px;
	-webkit-flex-grow: 1;
	flex-grow: 1;
}

section.mainColumn > ul {
	border-top: 1px solid #c8c8c8;
	border-bottom: 1px solid #c8c8c8;
	margin-top: 40px;
}
section.mainColumn > ul li {
	color: #1e1e1e;
	padding: 28px 0;
}
section.mainColumn > ul li + li {
	border-top: 1px solid #c8c8c8;
}
section.mainColumn > ul li .date_icon {
	display: flex;
	align-items: center;
	letter-spacing: 0.08em;
}
section.mainColumn > ul li .date_icon img {
	margin-left: 0.7em;
}
section.mainColumn > ul li p {
	line-height: 1.5;
	margin-top: 0.7em;
	word-break: break-all;
}
section.mainColumn > ul li a:hover p {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.15em;
}


/*お役立ち情報*/
#topics.page-index section.mainColumn > ul li,
#topics.page-index section.mainColumn > ul li a {
	display: flex;
}
#topics.page-index section.mainColumn > ul li .thumb {
	flex-shrink: 0;
	width: 180px;
	height: 126px;
	margin-right: 20px;
	position: relative;
	overflow: hidden;
}
#topics.page-index section.mainColumn > ul li .thumb > img {
	width: 100%;
    height: 100%;
    object-fit: cover;
	object-position: center center;
	font-family: 'object-fit: cover; object-position: center center;';
}



/*メインカラム（記事）*/
section.mainColumn article {
	margin-bottom: 80px;
}
section.mainColumn article .title {
	margin-bottom: 28px;
	font-size: 20px;
}
section.mainColumn article .title .date_icon {
	line-height: 20px;
	letter-spacing: 0.08em;
}
section.mainColumn article .title .date_icon img {
	margin-left: 0.7em;
}
section.mainColumn article .title p {
	margin-top: 0.5em;
	font-size: 28px;
	font-weight: 600;
	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 .btn_arrow {
	width: 230px;
	margin: 0 auto;
	padding-left: 0;
}
section.mainColumn .return .btn_arrow [class*="icon-"] {
	font-size: 36px;
	margin: 0.416em;
	transform: scale(-1,1);
}
section.mainColumn .return .btn_arrow em {
	margin-left: 0.5em;
}




/*ページャー*/
#pager {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 60px auto 0;
	color: #808080;
	font-size: 14px;
}
#pager a {
	border: 1px solid #b3b3b3;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 3px;
	width: 30px;
	height: 30px;
}
#pager a:hover,
#pager a#current {
	border-color: var(--color-main);
	background-color: var(--color-main);
	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: 'Open Sans', sans-serif;
	font-weight: 400;
}
#pager .more {
	margin: 0 5px;
}





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


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

/*サイドバー（セレクター）*/
#news_wrap .leftArea select {
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	width: 100%;
	font-size: 5vw;
	border: 1px solid #c8c8c8;
	border-radius: 0;
	padding: 0 0.5em;
	line-height: normal;
	height: 12vw;
	background: url(../images/select_icon.svg) 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%;
	padding: 0;
}
section.mainColumn > ul {
	margin-top: 5vw;
}
section.mainColumn > ul li{
	padding: 5vw 0;
}
section.mainColumn > ul li .date_icon {
	font-size: 3.6vw;
	line-height: 5.5vw;
}
section.mainColumn > ul li .date_icon img {
	width: auto;
	height: 5.5vw;
}
section.mainColumn > ul li p {
	font-size: 4vw;
	margin-top: 0.5em;
}

/*お役立ち情報*/
#topics.page-index section.mainColumn > ul li .thumb {
	width: 20vw;
	height: 20vw;
	margin-right: 3vw;
}



/*メインカラム（記事）*/
section.mainColumn article {
	margin-bottom: 10vw;
}
section.mainColumn article .title {
	margin-bottom: 5vw;
}
section.mainColumn article .title .date_icon {
	font-size: 4vw;
	line-height: 5.5vw;
}
section.mainColumn article .title .date_icon img {
	width: auto;
	height: 5.5vw;
}


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

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


/*メインカラム（戻るボタン）*/
section.mainColumn .return .btn_arrow {
	width: 45vw;
}
section.mainColumn .return .btn_arrow [class*="icon-"] {
	font-size: 7.2vw;

}




/*ページャー*/
#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: var(--color-main);
	display: block;
	line-height: 3.5;
}


	
}