/* common setting --------------------------------------- */
@media screen and (max-width: 992px) {
	.only_pc {
		display: none !important;
	}
	.only_smart {
		display: block !important;
	}
	.only_smart_i {
		display: inline-block !important;
	}
	table th,
	table td {
		height: unset !important;
		padding: 5px !important;
	}
	table font,
	table span {
		font-size: 16px;
	}
}

/* header ----------------------------------------------- */
@media screen and (max-width: 1200px) {
	header #sub-nav ul {
		max-width: 1100px;
	}
	header #header-info {
		max-width: 1100px;
	}
	header nav {
		max-width: 100%;
	}
}
@media screen and (max-width: 992px) {
	header {
		width: 100%;
		position: fixed;
		z-index: 101;
		background-color: #fff;
	}
	header #header-info {
		width: auto;
		height: 50px;
		margin: auto;
		padding: 0 3%;
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-align-items: center;
		align-items: center;
		box-shadow: 0 0 5px rgba(0,0,0,0.5);
		position: rekative;
		z-index: 100;
	}
	header #header-info .logo-fix {
/* 		width: 180px; */
	}
	
	header #header-info .logo-fix img {
		width: 60px;
	}
	header #header-info .site_name {
		font-size: 15px;
	}
	
	header #header-info ul {
		padding: 0;
	}
	header #header-info ul li {
		display: inline-block;
		margin-left: 20px;
	}
	header nav {
		height: calc(100vh - 50px);
		margin-bottom: 0;
		display: none;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
	}
	header nav > ul {
		letter-spacing: -0.4em;
		padding-bottom: 80px;
	}
	header nav > ul > li {
		border-bottom: solid 1px #ccc;
		display: block;
		letter-spacing: normal;
		vertical-align: top;
		width: 100%;
	}
	header nav > ul > li > a {
		line-height: 42px;
		padding: 0 26px;
		display: block;
		font-size: 15px;
		font-weight: bold;
		color: #333;
		text-align: left;
		position: relative;
	}
	header nav > ul > li.multi > a {
		pointer-events: none;
	}
	header nav > ul > li > a:hover {
		opacity: 1;
		background-color: #0095e0;
		color: #fff;
	}
	header nav > ul > li > a:after {
		color: #003d80;
		content: "\f105";
		font-family: "Font Awesome 5 Free";
		font-weight: 900;
		position: absolute;
		right: 30px;
	}
	header nav > ul > li > ul {
		position: static;
		top: auto;
		left: auto;
		transform: none;
		background-color: transparent;
		display: none;
		box-shadow: none;
	}
	header nav > ul > li > ul li {
		border-bottom: dotted 1px #ccc;
		display: block;
	}
	header nav > ul > li > ul li:last-child {
		border-bottom: none;
	}
	header nav > ul > li > ul li a {
		line-height: 36px;
		display: block;
		padding: 0 40px;
		font-size: 15px;
		font-weight: bold;
		color: #333;
		text-align: left;
		position: relative;
	}
	header nav > ul > li > ul li a:after {
		color: #003d80;
		content: "\f105";
		font-family: "Font Awesome 5 Free";
		font-weight: 900;
		position: absolute;
		right: 30px;
	}
}


/* smart_nav -------------------------------------------- */
@media screen and (max-width: 992px) {
	#smart_nav {
		display: inline-block;
		vertical-align: middle;
		width: 40px;
		height: 42px;
		margin: 0;
		padding: 0;
		position: relative;
		cursor: pointer;
	}
	#smart_nav span {
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		width: 28px;
		height: 3px;
		margin: -1px 0 0 -14px;	
		background-color: #000;
		-webkit-transition: .2s;
		-moz-transition: .2s;
		-ms-transition: .2s;
		-o-transition: .2s;
		transition: .2s;
	}
	#smart_nav span:before,
	#smart_nav span:after {
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		width: 28px;
		height: 3px;
		background-color: #000;
		-webkit-transition: .3s;
		-moz-transition: .3s;
		-ms-transition: .3s;
		-o-transition: .3s;
		transition: .3s;
	}
	#smart_nav span:before {
		margin-top: -11px;
	}
	#smart_nav span:after {
		margin-top: 7px;
	}
	#smart_nav .close {
		background: transparent;
		width: 42px;
		height: 40px;
		margin-top: -20px;
		margin-left: -20px;
	}
	#smart_nav .close:before,
	#smart_nav .close:after {
		margin-top: 0;
	}
	#smart_nav .close:before {
		width: 28px;
		height: 3px;
		margin: -2px 0 0 6px;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	#smart_nav .close:after {
		width: 28px;
		height: 3px;
		margin: -2px 0 0 6px;
		-webkit-transform: rotate(-135deg);
		-moz-transform: rotate(-135deg);
		-ms-transform: rotate(-135deg);
		-o-transform: rotate(-135deg);
		transform: rotate(-135deg);
	}
}
@media screen and (max-width: 767px) {
#breadcrumbs {
	display:none;
}
}

