@charset "utf-8";
.login_container {
	max-width: 500px;
	width: 95%;
	margin: 0 auto;
	padding: 20px 30px;
	border: 3px solid #d1d1d1;
	border-radius: 15px;
}
.login-username , .login-password {
	display: flex;
	margin-bottom: 20px;
	column-gap: 10px;
	align-items: center;

	row-gap: 5px;
}

.login-username label , .login-password label {
	font-weight: bold;
}
.login-username input , .login-password input {
	height: 50px;
	padding-left: 10px;
	border: 2px solid #04700f;
	border-radius: 10px;
	font-size: 18px;
}
body:not(.logged-in) .my-tab-nav_inner {
	display: none;
}
body:not(.logged-in) .tab-content {
	/*display: none !important;*/
}
@media screen and (min-width: 501px) {
	.login-username label , .login-password label {
		width: 5.15em;
	}
	.login-username input , .login-password input {
		width: calc(100% - 5.15em - 10px);
	}
}
@media screen and (max-width: 500px) {
	.login-username , .login-password {
		flex-direction: column;
		align-items: flex-start;
	}
	.login-username input , .login-password input {
		width: 100%;
	}
}
.login-remember {
	display: flex;
	justify-content: flex-end;
}

.login-submit {
	display: flex;
	margin-top: 30px;
	justify-content: center;
}
.login-submit input[type="submit"] {
	display: flex;
	max-width: 250px;
	width: calc(100% - 20px);
	height: 60px;
	border: 2px solid #04700f;
	border-radius: 10px;
	background-color: #04700f;
	color: #ffffff;
	font-weight: bold;
	font-size: 20px;
	justify-content: center;
	align-items: center;
}
.login-submit input[type="submit"]:hover {
	background-color: #ffffff;
	color: #04700f;
}
.download_description {
	text-align: justify;
}
.download_nav-container {
	display: block;
	width: 100%;
}
.download_nav-list {
	display: flex;
	flex-direction: column;
}
.download_nav-item {
	display: flex;
	border-bottom: 1px solid #cccccc;
}
.download_nav-item::before {
	content: "・";
}
.download_nav-item h3 {
	display: flex;
	font-weight: normal;
	column-gap: 0.5em;
	flex-wrap: wrap;

	row-gap: 5px;
}
.download_nav-item h3 a {
	display: inline-block;
	color: #0b57d0;
}
.download_nav-item h3 a:hover {
	text-decoration: underline;
}

.my-tab-nav li:nth-last-of-type(-n+2) {
	display: none;
}
@media screen and (min-width: 768px) {
	.download_description {
		margin-bottom: 40px;
		font-size: 16px;
	}
	.download_nav-list {
		row-gap: 50px;
	}
	.download_nav-item {
		padding-bottom: 40px;
	}
	.download_nav-item h3 {
		font-size: 16px;
	}
}
@media screen and (max-width: 767px) {
	.download_description {
		margin-bottom: 30px;
		font-size: 14px;
	}
	.download_nav-list {
		row-gap: 30px;
	}
	.download_nav-item {
		padding-bottom: 20px;
	}
	.download_nav-item h3 {
		font-size: 14px;
	}
}
