@charset "utf-8";
/* CSS Document */

/*=================NEWS=================*/

/*----------セレクトボックス設定----------*/
select {
	-webkit-appearance: none;
	appearance: none;
}
select::-ms-expand {
	display: none;
}
.select_container {
	position: relative;
	width: 15%;
	margin-bottom: 1rem;
}
.select_container::before {
	position: absolute;
	top: 1.2rem;
	right: 0.6rem;
	width: 0;
	border-top: 5px solid #333;
	border-left: 4.5px solid transparent;
	border-right: 4.5px solid transparent;
	content: "";
}
.year_select {
	width: 100%;
	font-size: 1.125rem;
	border: 1px solid #B1B7B8;
	border-radius: 0.25rem;
	cursor: pointer;
	padding: 0.6rem;
}

/*----------ニュース中身表示切替設定----------*/
/*見た目の細かい調整はbase.cssに記載*/
.news_menuBlock {
	display: none;
}
.news_menuBlock.is-show {
	display: block;
}

/*----------ページネーション設定----------*/
.pagination {
	margin-top: 3.875rem;
}
.pagination ul {
	display: flex;
	justify-content: center;
}
.pagination li {
	width: 2.75rem;
	height: 2.75rem;
	color: #004898;
	font-size: 1.125rem;
	border: 1px solid #e4e4e4;
	text-align: center;
	line-height: 2.75rem;
	cursor: pointer;
	margin: 0 0.3125rem;
}
.pagination li:hover {
	color: #fff;
	background: #004898;
	border: 1px solid #004898;
}

.container{
	width:100%;
	margin-top:0 !important;
}

/* ----- モーダル　設定 ----- */
/*
.popup {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
}
.popup.is-show {
	opacity: 1;
	visibility: visible;
}
.popup-inner {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	max-width: 49.1875rem;
	padding: 4.875rem 5.375rem;
	background-color: #fff;
	border-radius: 2rem;
	z-index: 2;
	height: 37.25%;
}

.migiue{
	position:absolute;
	width:26px;
	height:26px;
	left:57rem;
	top:1.2rem;
	cursor:pointer;
}

.black-background {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.8);
	z-index: 1;
}

.loginForm_contents {
	display: flex;
}
.loginForm_contents h1 {
	height: 2.5rem;
	margin: 0;
	font-size: 20px;
}

.login {
	width: 54%;
	margin-right: 3.75rem;
}
.loginBox {
	display: flex;
	flex-direction: column;
	width: 40.8125rem;
}
.login_input {
	width: 17.5rem;
	height: 3rem;
	font-size: 100%;
	border: 1px solid #666;
	border-radius: 0.625rem;
	padding:0 0.625rem 0;
}
.input_label {
	color: #666;
	width: 8.4375rem;
	display: flex;
	height: 3rem;
	line-height: 3rem;
	align-items: center;
	flex-wrap: nowrap;
	font-size: 100%;
}

.forget_container {
	text-align: left;
	width:15.1875rem;
	margin: 0 0 0 8.375rem;
}
.pw_forget {
	width: 15.1875rem;
	font-size: 100%;
	font-weight: bold;
	color: #007FEB;
	margin-bottom: 1.2rem;
	text-align:right;
}
.pw_forget span {
	margin-right: 0.6rem;
}
.pw_forget:hover {
	color: #0D2D84;
}
.signup {
	width: 50%;
}
.signup_title {
	display: flex;
	align-items: flex-start;
}
.signup_title img {
	width: 0.918rem;
	margin-right: 0.6rem;
	margin-top: 0.3rem;
}

.browser p {
	letter-spacing: normal;
	margin: 0;
}
*/


/* ----- flex 設定 ----- */
.flex_box {
	display: flex;
	flex-direction: row;
	width: 67%;
	margin-bottom: 1.2rem;
}
.flex_box2 {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 0 2.4rem;
	margin-bottom: 1.2rem;
}
.flex_box_center {
	display: flex;
	flex-direction: row;
	justify-content: center;
	width: 100%;
	margin-bottom: 1.2rem;
}
.flex_center {
	display: flex;
	justify-content: center;
}
.flex_end {
	display: flex;
	justify-content: flex-end;
}
.flex_column {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.btn_login {
	background: #007FEB;
	width: 18.75rem;
	height: 3.125rem;
	flex-direction: row;
	color: #ffffff;
	transition: border-radius 0.5s;
	margin: 0 -0.6rem 0 0;
	line-height: 3.125rem;
	text-align: center;
	border-radius: 0.42rem;
}

.nologin{
	margin-top:4%;
}

.btn_signup {
	/*ログイン画面*/
	background: #F29149;
	width: 18.75rem;
	height: 3.125rem;
	flex-direction: row;
	color: #ffffff;
	transition: border-radius 0.5s;
	margin: 0;
	line-height: 3.125rem;
	text-align: center;
	border-radius: 0.42rem;
}

/* タブレット用レイアウト */
@media screen and (max-width: 1024px) {

	/*----------セレクトボックス設定----------*/
	select {
		-webkit-appearance: none;
		appearance: none;
	}
	select::-ms-expand {
		display: none;
	}
	.select_container {
		width: 20%;
	}
	.select_container::before {
		top: 1.5vw;
		right: 0.75vw;
		border-top: 4.5px solid #333;
		border-left: 4px solid transparent;
		border-right: 4px solid transparent;
	}
	.year_select {
		padding: 1vw;
	}

	/*----------ニュースカテゴリタブ設定----------*/
	.news_menu_tab {
		flex-wrap: wrap;
	}
	.news_menu_tab li {
		width: 30%;
		border-right: 2px solid #004898;
		padding: 0.75vw;
		margin: 0.25vw 0;
	}
	.news_menu_tab li:last-child {
		border-right: 2px solid #004898;
	}

	/*----------ページネーション設定----------*/
	.pagination li {
		width: 3.5vw;
		height: 3.5vw;
		line-height: 3.5vw;
		margin: 0 0.5vw;
	}

}


/*スマートフォン縦表示*/
@media screen and (max-width:599px) {

	/*----------セレクトボックス設定----------*/
	select {
		-webkit-appearance: none;
		appearance: none;
	}
	select::-ms-expand {
		display: none;
	}
	.select_container {
		/* width: 100%; */
		width: calc(100% - (0.9375rem * 2));
		margin: 0 auto;
		margin-bottom: 1rem;
	}
	.select_container::before {
		top: 1rem;
		right: 1rem;
		border-top: 5.5px solid #333;
		border-left: 5px solid transparent;
		border-right: 5px solid transparent;
	}
	.year_select {
		font-size: 0.9375rem;
		border-radius: 0.5rem;
		padding: 0.5rem;
	}


	/*----------ニュースカテゴリタブ設定----------*/
	.news_menu_tab {
		flex-wrap: wrap;
		margin-bottom: 2vw;
	}
	.news_menu_tab li {
		width: 42.5%;
		color: #fff;
		font-size: 4.25vw;
		border-right: none;
		padding: 2.75vw;
		margin-bottom: 2.75vw;
	}
	.news_menu_tab li:nth-child(odd) {
		margin-right: 1.5vw;
	}

	.news_category01_tab {
		background: #F16077;
	}
	.news_category02_tab {
		background: #4CBAE8;
	}
	.news_category03_tab {
		background: #7EC964;
	}
	.news_category04_tab {
		background: #FF981E;
	}
	.news_category05_tab {
		background: #B97CCF;
	}


	.news_categoryAll {
		background: #004898;
	}
	.news_menu_tab .news_category01_tab.current {
		background: rgba(241, 96, 119, 0.75);
	}
	.news_menu_tab .news_category02_tab.current {
		background: rgba(76, 186, 232, 0.75);
	}
	.news_menu_tab .news_category03_tab.current {
		background: rgba(126, 201, 100, 0.75);
	}
	.news_menu_tab .news_category04_tab.current {
		background: rgba(255, 152, 30, 0.75);
	}
	.news_menu_tab .news_category05_tab.current {
		background: rgba(185, 124, 207, 0.75);
	}
	.news_menu_tab .news_categoryAll.current {
		background: rgba(0, 60, 128, 0.75);
	}


	/*----------ページネーション設定----------*/
	.pagination {
		margin-top: 10.75vw;
	}
	.pagination li {
		width: 9vw;
		height: 9vw;
		font-size: 4.25vw;
		line-height: 2;
		margin: 0 1.5vw;
	}

}
