/*
 * under css 
 * pc width 1000px fixed
 */

@media (max-width: 599px) {
} /* end -599 */

@media (min-width: 600px) and (max-width:959px) {
} /* end 600-959 */

@media (min-width: 960px) {
} /* 960- */

@media (max-width: 767px) {
} /* end -767px */

@media (min-width: 768px) {
} /* 768px- */


/* ---------------------------------------- fee */

h4.h4-midashi {
	font-size:1.3em;
}

small { font-size:0.8em; }
strong { 
	font-weight:bold;
	text-decoration:underline;
}

/* ---------------------------------------- breadcrumbs (All in one seo) */

@media (max-width: 767px) {
	#breadcrumbs { display: none; }
} 

@media (min-width: 768px) {

	#breadcrumbs { padding: 2em 0 1em; }
	#breadcrumbs span {
		display: inline-block;
		letter-spacing: normal;
	}
	#breadcrumbs .aioseo-breadcrumb-separator { margin: 0 1em; }
	#breadcrumbs a {
		-webkit-transition: all 0.5s ease-out;
		transition: all 0.5s ease-out;
	}
	#breadcrumbs a:hover { color: var( --ocher-color ); }
}

/* ---------------------------------------- common */

@media (max-width: 767px) {

	main { padding: 4em 0; }

} /* end -767px */

@media (min-width: 768px) {

	main { padding: 6em 0; }

} /* 768px- */

/* ---------------------------------------- lead */

#lead {
	text-align: center;
	margin: 0 0 5em;
}

#lead ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
#lead ul a {
	display: block;
	border-bottom: 3px #ccc solid;
	font-weight: 400; 
	line-height: 1.4;
	padding: .75em 1em;
}
#lead ul a:hover,
#lead ul a.current {
	color: var( --lime-medium );
	border-bottom: 3px var( --lime-medium ) solid;
}

/* ---------------------------------------- table (tablepress) */

.tablepr table {
	width: 100%;
}
.tablepr table tbody th,
.tablepr table tbody td {
	line-height: 1.6;
	padding: .75em 1em;
}

@media (max-width: 767px) {

	.tablepr table { border-top: 1px #ccc solid; }
	.tablepr table tbody th,
	.tablepr table tbody td {
		display: block;
		border-bottom: 1px #ccc solid;
	}
	.tablepr table tbody th { background: #f7fbf7; }

	/*-- 横スクロール --*/
	.multiplex {
		width: 100%;
		padding: 32px 0;
		position: relative;
	}
	.multiplex .multiplex-wrap {
		overflow-x: scroll;
		position: relative;
	}
	.multiplex::before,
	.multiplex::after {
		display: block;
		width: 32px;
		height: 24px;
		color: #000;
		font-size: 24px;
		font-family: 'FontAwesome';
		content: "\f07e";
		position: absolute;
		z-index: 2;
	}
	.multiplex::before {
		top: -.25em;
		left: 50%;
	}
	.multiplex::after {
		bottom: .5em;
		left: 50%;
	}
	.multiplex .multiplex-wrap table { width: 664px; }
	.multiplex .multiplex-wrap table th, 
	.multiplex .multiplex-wrap table td {
		display: table-cell;
		border: 1px var(--cell-border-color) solid;
	}
	.multiplex .multiplex-wrap table th { text-align: left; }
	/*-- /横スクロール --*/
} /* end -767px */

@media (min-width: 768px) {

	.tablepr table tbody th,
	.tablepr table tbody td {
		border-top: 1px #ccc solid;
		border-bottom: 1px #ccc solid;
	}
	.tablepr table tbody th { 
		width: 20%;
		border-right: 4px #fff solid;
	}
	.tablepr table tbody tr:nth-child( even ) th,
	.tablepr table tbody tr:nth-child( even ) td {
		background: #f7fbf7;
	}

} /* 768px- */