@charset "UTF-8";

img{
	width:100%;
}
li {
	list-style: none;
}
ul {
	margin: 0;
	padding: 0;
}
/*
header
-------------------------------*/
.login_menu {
	background: #00368b;
}
.login_menu .header_wrap {
	width: 1000px;
	margin: 0 auto 20px;
}
.inner {
	display: flex;
	height: 100%;
}
.header_wrap .inner {
	justify-content: flex-end;
	align-items: center;
	padding: 10px 0;
}
.header_wrap input[type="text"] {
    width: 180px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(../img/icon_search.svg) no-repeat 97% center #fff;
    padding: 7px;
    font-size: 12px;
    font-size: 1.2rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.header__login,.header__registration,.header__logout,.header__mypage {
	margin-left:20px;
}
.header__registration a,.header__mypage a{
    display: block;
    font-size: 12px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    display: block;
    background: no-repeat 10px center #f08c00;
    border-radius: 5px;
    padding: 10px 10px 10px 10px;
}
.header__login a,.header__logout a {
    display: block;
    font-size: 12px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    color: #075fa2;
	border: solid 1px #075fa2;
    display: block;
    background: no-repeat 10px center #fff;
    border-radius: 5px;
    padding: 10px 10px 10px 10px;
}
#logo img {
  max-width:50%;
}
nav{
	width: 100%;
	height: 90px;
	position: relative;
}
.drawer{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	position: relative;
	height: 90px;
	padding: 0 0.5em;
}
h1#logo {
	margin: 0;
	width: 300px;
}
h1#logo p {
	margin: 0;
	padding: 0;
	font-size: 0.75rem;
	color: #00368b;
}
.menu ul li {
	position: relative;
}
.menu ul li.nav_report:before {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content:"\f3c9";
	position:absolute;
	top:0;
	left:-3px;
}
.menu ul li.nav_column:before {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content:"\f044";
	position:absolute;
	top:0;
	left:-3px;
}
.menu ul li.nav_contact:before {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content:"\f0e0";
	position:absolute;
	top: 0px;
	left:-3px;
}



.menu ul li a {
	display:block;
	font-weight:bold;
	padding: 2em;
	border-bottom: 1px dotted #CCC;
	color:#333;
	text-decoration:none;
	transition: 0.3s;
}
.menu ul li a:hover {
	background-color:rgba(0,0,0,0.5);
	color:orange;
}
.menu{
	text-align:center;
	background-color:rgba(255,255,255,0.5);
	transition: 0.5s ease;/*滑らかに表示*/
	-webkit-transform: translateX(100%);/*画面より100%外へ押し出し非表示にさせる*/
	/*  transform: translateX(-100%);/*右から出す場合は、マイナス100%としてください*/
}
.menu.open {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);/*メニューを元の位置へ戻す*/
}
.Toggle {
	display: block;
	position: fixed;    /* bodyに対しての絶対位置指定 */
	width: 42px;
	height: 42px;
	cursor: pointer;
	z-index: 3;
	right:15px;
}
.Toggle span {
	display: block;
	position: absolute;
	width: 50px;
	border-bottom: solid 4px #333;
	-webkit-transition: .35s ease-in-out;	/*変化の速度を指定*/
	-moz-transition: .35s ease-in-out;		/*変化の速度を指定*/
	transition: .35s ease-in-out;			/*変化の速度を指定*/ 
}
.Toggle span:nth-child(1) {
    top:5px;
}
 .Toggle span:nth-child(2) {
    top: 18px;
}
 .Toggle span:nth-child(3) {
    top: 32px;
}
.Toggle.active span:nth-child(1) {
    top: 18px;
/* 1番目のspanをマイナス45度に */
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
@media screen and (min-width: 600px) {
	#logo img {
		max-width:250px;
	}
	nav{
		display: flex;
		justify-content:space-between;
		width: 1000px;
		margin: 0 auto;
	} 
	.Toggle{
		display: none;
	}
	.menu{
		width: 50%;
		font-size:0.9em;
		background-color: transparent;
		margin:0 10px;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	.menu ul{
		height: 70px;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
		margin: 0;
	}
	.menu ul li a{
		padding: 0 1em;
		border-bottom: none;
	}
	.menu ul li a:hover{
		background-color:transparent;
	}
}

/*
footer
-------------------------------*/
.footer_main {
	background: #00368b;
	padding: 50px 0;
}
.footer_wrap {
	width: 1000px;
	margin: 0 auto;
}
.footer_flex {
	display:flex;
	justify-content:space-between;
}
.footer_menu {
	display: flex;
	justify-content: space-between;
	width:70%;
}
.footer_menu ul li {
	margin-bottom:20px;
}
.footer_menu ul li a{
	color: #fff;
	text-decoration:none;
	font-size: 14px;
	position: relative;
	padding-left: 5px;
	transition: 0.3s;
}
.footer_menu ul li a:before {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content:"\f138";
	position: absolute;
	top: 3px;
	left: -20px;
}
.footer_menu ul li a:hover {
	opacity: 0.7;
}

.footer_logo {
	width: 20%;
}
.footer_bottom {
	background: #075fa2;
	color: #fff;
	padding: 20px 0;
}
.footer_bottom .footer_flex {
	align-items: center;
}

.footer_bottom ul {
	display: flex;
	padding-left: 0;
}	
.footer_bottom ul li {
	font-size: 12px;
	margin-right: 10px;
	padding-right: 10px;
	border-right: solid 1px #fff;
}
.footer_bottom ul li:last-child {
	border-right: none;
}
.footer_bottom ul li a {
	color: #fff;
	text-decoration: none;
}
@media screen and (max-width: 999px) {
	/* 999px以下に適用されるCSS*/
	.inner {
		width: 100%;
	}
	.login_menu .header_wrap {
	width: 94%;
	margin: 0 3% 20px;
	}
	nav {
		width: 100%;
	}
	.footer_wrap {
		width: 94%;
		margin: 0 3%;
	}
}
@media screen and (max-width: 780px) {
	/* 780px以下に適用されるCSS（スマホ用） */
	.menu {
		overflow: hidden;
	}
}
@media screen and (max-width: 600px) {
	/* 600px以下に適用されるCSS（スマホ用） */
	nav {
		z-index: 20;
		position: fixed;
		top: 0;
		left: 0;
		background: #fff;
		height: 75px;
		box-shadow: 1px 1px 1px #ccc;
	}
	.menu {display:none;} 
	.menu.open {
		display:block;
		
	}
	.menu.open ul {
		display: block;
	}
	#header .login_menu {
		position: fixed;
		width: 98%;
		padding: 0 1%;
		left: 0;
		bottom: 0;
		z-index:10;
	}
	#header .header_wrap {
		margin:0 auto;
	}
	.header__registration a,.header__login a {
		font-size: 0.8em;
		text-align: center;
	}
	.header_wrap input[type="text"] {
		width: 150px;
	}
	main {
		padding-top: 75px;
	}
	footer {
		padding-bottom: 58.5px;
	}
}
