@charset "utf-8";
/* ===================================================================
//CSS information

// file name  :  news.css
// style info :  スタイル指定　　　　ベースカラー　#0446a1
=================================================================== */
.selectNav,
.selectNav.is_active {
	text-align: left;
	margin: 20px 0;
	height: auto;
	overflow: hidden;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}
.selectNav li {
	display: inline-block;
	text-align: center;
	width: 10%;
}
.selectNav li a {
	position: relative;
	display: block;
	line-height: 50px;
	height: 50px;
	padding: 0 20px;
	cursor: pointer;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}
.selectNav li a::after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #0446a1;
	-webkit-transform: scale(0, 1);
	-webkit-transform-origin: center top;
	-webkit-transition: transform .3s;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
}
.selectNav li a:hover {
	color: #333;
}
.selectNav li a:hover::after {
	-webkit-transform-origin: center top;
	-webkit-transform: scale(1, 1);
	transform-origin: center top;
	transform: scale(1, 1);
}
.selectNav li.is_current a {
	color: #0446a1;
	font-weight: 700;
}
.selectNav li.is_current a::after {
	-webkit-transform-origin: center top;
	-webkit-transform: scale(1, 1);
	transform-origin: center top;
	transform: scale(1, 1);
}

.selectNavToggleBtn {
	display: none;
	font-size: 14px;
	text-align: center;
	padding: 10px 0 20px;
	margin-bottom: 2em;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}
.selectNavToggleBtn > * {
	display: inline-block;
	vertical-align: middle;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}
.selectNavToggleBtn > div {
	margin: auto;
	cursor: pointer;
}
.selectNavToggleBtn > div:nth-of-type(2) {
	display: none;
}
.selectNavToggleBtn > div > i {
	color: #0446a1;
	margin-right: 10px;
}
.selectNavToggleBtn > div > span {
	position: relative;
}
.selectNavToggleBtn > div > span::after {
	position: absolute;
	bottom: -8px;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #0446a1;
	-webkit-transform: scale(0, 1);
	-webkit-transform-origin: center top;
	-webkit-transition: transform .3s;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
}
.selectNavToggleBtn > div:hover {
	color: #0446a1;
}
.selectNavToggleBtn > div:hover > span::after {
	-webkit-transform-origin: center top;
	-webkit-transform: scale(1, 1);
	transform-origin: center top;
	transform: scale(1, 1);
}
.selectNavToggleBtn.is_active > div:nth-of-type(1) {
	display: none;
}
.selectNavToggleBtn.is_active > div:nth-of-type(2) {
	display: inline-block;
}

#yearHddWrap {
	background: #ddd;
	padding: 20px 0;
	margin-bottom: 40px;
}
#yearHddWrap h3 {
	position: relative;
	font-size: 18px;
	font-weight: 700;
	max-width: 1200px;
	padding: 0 15px;
	margin: 0 auto;
}
#yearHddWrap h3 a {
	position: absolute;
	top: 50%;
	right: 15px;
	font-size: 13px;
	font-weight: 400;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.newsInner, .noticeInner {
	background: none;
	padding: 0;
}
.newsInner .date, .noticeInner .date {
	width: auto;
	padding-right: 1em;
}
.newsInner .dataText, .noticeInner .dataText {
	margin-top: 10px;
	min-height: 0;
}

@media only screen and (max-width: 1100px) {
.selectNav {
	height: 50px;
	margin: 20px 0 0;
}
.selectNav li {
	width: 19%;
}
.selectNavToggleBtn {
	display: block;
}
}
@media only screen and (max-width: 991px) {
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 767px) {
.selectNav li {
	width: 32%;
}
.selectNav li a {
	padding: 0 1em;
}
}
@media only screen and (max-width: 679px) {
}
@media only screen and (max-width: 479px) {
}
@media only screen and (max-width: 320px) {
}

/* ===================================================================
//記事テンプレート
=================================================================== */
.articleItem {}
.articleItem .icons {
    display: inline-block;
    width: 100%;
    line-height: 1.1;
	margin-bottom: 30px;
}
.articleItem h3.articleTitle {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.8;
	margin-bottom: 2em;
}
.articleItem .dataName {
	text-align: right;
	margin-bottom: 2em;
}
.articleItem .dataName time {
	color: #0446a1;
	line-height: 2;
}
.articleItem .articleDetails {
	position: relative;
}
.articleItem .articleDetails::after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: #f2f2f2;
	margin-bottom: 2em;
}
.articleItem .articleDetails p {
	line-height: 1.6;
	margin-bottom: 2em;
}
.articleItem .articleDetails figure {
	text-align: center;
	margin-bottom: 2em;
}
.articleItem .articleDetails figure figcaption {
    font-size: 10px;
	text-align: right;
	margin-top: 1em;
}
.articleItem .parentLink {
	text-align: right;
}

@media only screen and (max-width: 991px) {
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 767px) {
}
@media only screen and (max-width: 679px) {
}
@media only screen and (max-width: 479px) {
}
@media only screen and (max-width: 320px) {
}