@charset "UTF-8";

/* select_year */
.select_year {
	background: #f4f4f4;
}

@media screen and (max-width: 640px) {
	.select_year {
		padding: 12px 15px 15px;
		margin-bottom: 20px;
	}

	.select_year .heading-bar {
		margin-bottom: 11px;
	}

	.select_year .contents_menu {
		background: #fff;
		position: relative;
	}

	.select_year .contents_menu.is-open {
		box-shadow: 0 0 5px rgba(197, 219,  228, 1);
	}
	
	.select_year .contents_menu:before,
	.select_year .contents_menu:after {
		content: "";
		display: block;
		background: #005faf;
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto;
		pointer-events: none;
	}

	.select_year .contents_menu:before {
		width: 18px;
		height: 2px;
		right: 10px;
	}
	
	.select_year .contents_menu:after {
		width: 2px;
		height: 18px;
		right: 18px;
		transition: .2s;
	}	

	.select_year .contents_menu.is-open:after {
		transform: rotate(90deg);
	}

	.select_year .contents_menu .display_selectedItem {
		padding: 5px 35px 5px 11px;
	}
		
  .select_year .list_contents_menu {
    width: 100%;
    padding: 0;
    margin: 0;
    list-style-type: none;
    background: #fff;
		box-shadow: 0 5px 5px rgba(197, 219,  228, 1);
    position: absolute;
    top: 35px;
    right: 0;
    z-index: 10;
	}

  .select_year .list_contents_menu li {
    box-sizing: border-box;
	}

  .select_year .list_contents_menu li:last-child {
    border-bottom: none;
	}

  .select_year .list_contents_menu li a {
    display: block;
    padding: 7px 11px;
		color: #222;
	}

  .select_year .list_contents_menu li a.is-current {
		color: #222;
		text-decoration: none;
		background: #eee;
		pointer-events: none;
	}

}
@media screen and (min-width: 641px), print {
	.select_year {
		padding: 17px 20px 20px;
		margin-bottom: 40px;
	}

	.select_year .heading-bar {
		margin-bottom: 15px;
	}

	.select_year .contents_menu {
		position: relative;
		cursor: pointer;
		transition: .2s;
	}

	.select_year .contents_menu.is-open {
		box-shadow: 0 0 5px rgba(197, 219,  228, 1);
	}

	.select_year .contents_menu:before,
	.select_year .contents_menu:after {
		content: "";
		display: block;
		background: #005faf;
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto;
		pointer-events: none;
	}

	.select_year .contents_menu:before {
		width: 22px;
		height: 4px;
		right: 13px;
	}
	
	.select_year .contents_menu:after {
		width: 4px;
		height: 22px;
		right: 22px;
		transition: .2s;
	}

	.select_year .contents_menu.is-open:after {
		transform: rotate(90deg);
	}

	.select_year .contents_menu .display_selectedItem {
		padding: 10px 20px;
		background: #fff;
	}
		
  .select_year .list_contents_menu {
    width: 100%;
    padding: 0;
    margin: 0;
		box-shadow: 0 5px 5px rgba(197, 219,  228, 1);
    list-style-type: none;
    background: #fff;
    position: absolute;
    top: 48px;
    right: 0;
    z-index: 10;
	}

  .select_year .list_contents_menu li {
    cursor: default;
    box-sizing: border-box;
	}

  .select_year .list_contents_menu li:last-child {
    border-bottom: none;
	}

  .select_year .list_contents_menu li a {
    display: block;
    padding: 10px 20px;
		color: #222;
	}

  .select_year .list_contents_menu li a:hover,
  .select_year .list_contents_menu li a.is-current {
		color: #222;
		text-decoration: none;
		background: #eee;
	}

  .select_year .list_contents_menu li a.is-current {
		pointer-events: none;
	}

}



/* news_list_anchor */
.news_list_anchor {
	display: flex;
	justify-content: space-between;
	text-align: center;
}

.news_list_anchor > li {
	border-right: 1px solid #ccc;
	box-sizing: border-box;
}

.news_list_anchor > li:nth-child(1) {
	border-left: 1px solid #ccc;
}

.news_list_anchor > li span {
	color: #ccc;
}


@media screen and (max-width: 640px) {
	.news_list_anchor {
		flex-wrap: wrap;
		margin-bottom: 11px;
	}
	
	.news_list_anchor > li {
		width: 16.6%;
		margin-bottom: 10px;
	}

	.news_list_anchor > li:nth-child(7) {
		border-left: 1px solid #ccc;
	}

	.news_list_anchor > li a,
	.news_list_anchor > li span {
		display: block;
	}
	
}
@media screen and (min-width: 641px), print {
	.news_list_anchor {
		margin-bottom: 38px;
	}
	
	.news_list_anchor > li {
		width: 8.3%;
	}

	.news_list_anchor > li a,
	.news_list_anchor > li span {
		display: block;
		line-height: 28px;
	}
}



/* news_list_month */
.news_list_month {
	/*color: #005faf;*/
	border-top: 1px solid #ccc;
}

@media screen and (max-width: 640px) {
	.news_list_month {
		margin-top: 20px;
		margin-bottom: 31px;
	}

	.news_list_month dt {
		padding-top: 9px;
	}
	
	.news_list_month dd {
		padding: 5px 0 10px;
		border-bottom: 1px solid #ccc;
	}
	
}

@media screen and (min-width: 641px), print {
	.news_list_month {
		margin-top: 40px;
		margin-bottom: 60px;
		position: relative;
	}

	.news_list_month dt,
	.news_list_month dd {
		padding-top: 16px;
		padding-bottom: 15px;
	}
	
	.news_list_month dt {
		position: absolute;
		left: 0;
	}
	
	.news_list_month dd {
		padding-left: 136px;
		border-bottom: 1px solid #ccc;
	}
}

/* news-date */
.news-date {
	text-align: right;
}

@media screen and (max-width: 640px) {
	.news-date {
		padding-top: 5px;
		margin-bottom: 20px;
	}
}
@media screen and (min-width: 641px), print {
	.news-date {
		padding-top: 6px;
		margin-bottom: 42px;
	}
}


/* info_attention */
.info_attention p {
	border-top: 1px solid #ccc;
	text-align: center;
}

@media screen and (max-width: 640px) {
	.info_attention {
		padding-top: 30px;
	}

	.info_attention p {
		padding-top: 9px;
	}
}
@media screen and (min-width: 641px), print {
	.info_attention {
		padding-top: 60px;
	}

	.info_attention p {
		padding-top: 20px;
	}
}
