/*----------------------------------------------------------------------------
******************************************************************************
Layout
******************************************************************************
----------------------------------------------------------------------------*/
/* ==== Base === */
body {
	background: url(../images/body_bg.jpg);
	font-size: 16px;
}

.layout {
	margin: 0 20px;
	overflow: hidden;
}

/* ==== Backgraund === */
#wrap {
	background: url(../images/wrap_bg.jpg) repeat-x;
}

/* ==== Header === */
header {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 95px;
}

#hd {
	height: 100px;
	position: relative;
}

.hd_btn {}

/* ==== Navigation === */
#nav {
	position: fixed;
	top: -100vh;
	left: 0;
	z-index: 100;
	overflow-x: auto;
	overflow-y: auto;
	width: 100%;
	height: 100vh;
	background: linear-gradient(0deg, #666, #333);
	transition: All 0.8s ease;
}

#nav ul {
	display: flex;
	flex-wrap: wrap;
	flex-flow: column;
	list-style: none;
	gap: 10px;
	margin: 60px 10px;
}

#nav li {}

#nav a img.current {
	opacity: 0;
	filter: alpha(Opacity=0);
}

.nav_banner,
.nav_banner_child {
	display: flex;
}

.nav_banner {
	position: relative;
	width: calc(100% - 50px);
	height: 44px;
	line-height: 21px;
	background: linear-gradient(135deg, #666 18px, transparent 0),
		linear-gradient(0deg, #dedede, #f6f6f6);
	background-color: #e4e4e4;
	box-shadow: 2px 2px 4px #6f6f6f;
	border: 1px solid #d0d0d0;
	border-radius: 3px;
}

.nav_banner>.child_wrap_btn {
	position: absolute;
	right: 5px;
	z-index: 10;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
}

.nav_banner>.child_wrap_btn::before,
.nav_banner>.child_wrap_btn::after {
	position: absolute;
	content: "";
	width: 25px;
	height: 3px;
	background-color: #666;
}

.nav_banner>.child_wrap_btn::before {
	top: 50%;
	left: 20px;
	transform: rotate(0deg) translateX(-50%);
}

.nav_banner>.child_wrap_btn::after {
	top: 50%;
	left: 0.5em;
	transform: rotate(90deg);
	transition: all 0.3s ease;
}

.nav_banner>.child_wrap_btn.close::after {
	transform: rotate(0deg);
}

.child_wrap {
	display: none;
}

.nav_banner_child {
	height: 30px;
	margin-left: 0.5em;
	line-height: 15px;
}

.nav_banner a,
.nav_banner_child a {
	display: flex;
	width: 100%;
	justify-content: left;
	align-items: center;
	text-decoration: none;
	padding-left: 0em;
	font-size: 0.8em;
}

.nav_banner a {
	color: #666;
	font-size: 1em;
	padding-left: 2em;
}

.nav_banner_child a {
	color: #fff;
}

.small a {
	font-size: 0.8em;
}

.nav_banner:hover a {
	/* color: #eee; */
}

.nav_banner_child:before {
	content: '';
	width: 0.5em;
	height: 2em;
	margin-right: 0.5em;
	background: linear-gradient(0deg, #6f6f6f, #f6f6f6);
}

.nav_banner_child:hover {
	opacity: 0.8;
	filter: alpha(Opacity=80);
}

.nav_banner_child:hover:before {
	background: #6f6f6f;
}

.sp_nav_open {
	top: 0 !important;
}

.sp_nav_trigger {
	cursor: pointer;
	z-index: 1000;
	position: fixed !important;
	top: 5px;
	right: 5px;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	border: 2px solid #fff;
}

.sp_nav_trigger.colorchange {
	border: 2px solid #666;
}

.sp_nav_trigger.sp_active {
	border: 2px solid #fff;
}

.sp_nav_trigger span {
	display: inline-block;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 25px;
	height: 2px;
	background-color: #fff;
	transition: all 0.5s ease;
	box-sizing: border-box;
}

.sp_nav_trigger span:nth-of-type(1) {
	top: 30%;
}

.sp_nav_trigger span:nth-of-type(2) {
	top: 50%;
	transform: translate(-50%, -50%);
}

.sp_nav_trigger span:nth-of-type(3) {
	bottom: 30%;
}

.sp_nav_trigger.sp_active span:nth-of-type(1) {
	top: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}

.sp_nav_trigger.sp_active span:nth-of-type(2) {
	opacity: 0;
}

.sp_nav_trigger.sp_active span:nth-of-type(3) {
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}

.sp_nav_trigger.colorchange span {
	background-color: #666;
}

.sp_nav_trigger.sp_active span {
	background-color: #fff;
}

/* ==== Content === */
#con {}

#main {
	width: 100%;
	margin-top: 20px;
}

/* ol,ul */
#main ol,
#main ul {
	padding: 5px 0px 5px 25px;
}

#main ul {
	list-style-type: disc;
}

#main ol li,
#main ul li {
	padding: 5px 0px;
}

/* table */
#main table {
	margin: 10px 0px;
}

#main table th,
#main table td {
	padding: 5px;
}

/* img */
#main a img:hover {
	opacity: 0.5;
	filter: alpha(Opacity=50);
}

/* ==== Footer === */
#ft {
	margin-top: 0px;
	padding-top: 10px;
	padding-bottom: 10px;
	color: #FFF;
	text-align: left;
	font-size: 0.8em;
	background: url(../images/ft_bg.jpg) repeat;
}

/*----------------------------------------------------------------------------
******************************************************************************
Head
******************************************************************************
----------------------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {}

h1 {
	margin-top: 13px;
}

h1 img {
	width: calc(100% - 55px);
	max-width: 300px;
	height: auto;
}

h2 {
	font-size: 1.5em;
	font-weight: normal;
	padding: 0.5em 0 0.5em 0.6em;
	margin: 0em 0 0.8em 0;
	background: url(../images/h2_bg.jpg) left center no-repeat;
	color: #FFF
}

h3 {
	font-size: 1.3em;
	font-weight: bold;
	color: #394345;
	padding: 0.4em 0 0.2em 0.9em;
	margin: 0.8em 0 0.4em 0;
	background: url(../images/h3_bg.jpg) left bottom no-repeat;
}

h4 {
	font-size: 1.2em;
	padding: 0.2em 0 0.3em 0;
	margin: 1.2em 0 1em 0;
}

h5 {
	font-size: 1.1em;
	margin: 10px 0px;
}

h1.img,
h2.img,
h3.img,
h4.img,
h5.img,
h6.img {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
Original
******************************************************************************
----------------------------------------------------------------------------*/
/* ==== Index === */
#i_img {
	margin-top: 20px;
	padding-bottom: 30px;
	background: url(../images/i_img_bg.jpg) bottom center no-repeat;
}

#i_news {}

#i_news table {}

#i_news table td {
	vertical-align: top;
	font-size: 0.9em;
	padding: 10px;
	border-bottom: 1px dotted #CCC;
}

#i_news table td.date {
	width: 140px;
}

#i_news div.icon {
	background: url(../images/common/news_icon.gif) 0 2px no-repeat;
	padding-left: 15px;
}

#i_bnr {
	margin-top: 20px;
	width: 220px;
	float: right;
	margin-left: 20px;
}

/*----Other----*/

.list_icon {
	background: url(../images/common/icon_list01.png) left no-repeat;
	padding-left: 15px;
	margin-top: 0;
}


.bg01 {
	border: #CCC solid 1px;
	background-color: #EEE;
	width: 90%;
	padding-left: 20px;
	margin: 20px 0;
}

.bg01 span {
	color: #F60;
}

.bg02 {
	border: #CCC solid 1px;
	background-color: #EEE;
	width: 90%;
	padding-left: 20px;
	margin: 20px 0;
}

.bg03 {
	border: #CCC solid 1px;
	background-color: #EEE;
	width: 60%;
	padding-left: 20px;
	padding-right: 20px;
	margin: 20px 0;
}


.mail a {
	color: #CFC;
}

.custom_li {}

.custom_li ul {}

.custom_li ul li {
	display: inline-block;
	width: 20%;
	list-style: none
}

.member_btn {
	display: block;
	background: #666;
	width: 30%;
	text-align: center;
	margin: 0 auto;
	padding: 20px 20px;
	color: #FFFFFF !important;
	font-size: 1rem;
	font-weight: bold;
	text-decoration: none;
}

.member_btn:hover {
	opacity: 0.8;
	color: #fff;
}

.member h4 {
	margin: 0.6em 0 0 0;
}

.member ul {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin-left: 1rem;
}

.member ul li {
	list-style: none;
	display: inline-block;
	width: 225px;
}

#main .nakatable {
	margin: 0;
}

#main .nakatable td {
	padding: 0;
}

@media screen {}