@charset "utf-8";


/* =============================================================================
   common
   ========================================================================== */


/* Layout */
body.is-lock { overflow: hidden;}


/* Typography */
html {
	font-size: 100%;
	color: #000;
	font-family: 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", "Yu Gothic", "YuGothic", "メイリオ", Meiryo, sans-serif;
	font-weight: 500;
}
@media only screen and (max-width: 767px) {
	html {
		font-size:87.5%;
	}
}
.mincho { font-family: 'Noto Serif JP', serif;}
.eng { font-family: 'Poppins', serif;}

h1,h2,h3,h4,h5,h6 { line-height: 1.3; font-size: 1.2em;}
p { line-height: 1.7;}
li { line-height: 1.4;}


/* anchor-link */
a { color: #1a0dab; text-decoration:none; transition: all 0.1s linear;}
a:hover { color:#222222; text-decoration:underline;}

a.underline { color: #1a0dab; text-decoration: underline;}
a.underline:hover { text-decoration: none;}

a.imgOver:hover img{
	zoom: 1;
	opacity: .50;
	filter: alpha( opacity=50 );
	-ms-filter: "alpha(opacity=50)";
	-khtml-opacity: .50;
	-moz-opacity: .50;
}
a.bgOver:hover {
	zoom: 1;
	opacity: .50;
	filter: alpha( opacity=50 );
	-ms-filter: "alpha(opacity=50)";
	-khtml-opacity: .50;
	-moz-opacity: .50;
}
@media only screen and (max-width: 767px) {
	a.imgOver:hover img{
		zoom: 1;
		opacity: 1;
		filter: alpha( opacity=100 );
		-ms-filter: "alpha(opacity=100)";
		-khtml-opacity: 1;
		-moz-opacity: 1;
	}
	a.bgOver:hover {
		zoom: 1;
		opacity: 1;
		filter: alpha( opacity=100 );
		-ms-filter: "alpha(opacity=100)";
		-khtml-opacity: 1;
		-moz-opacity: 1;
	}
}


.clear:after {
	content: "";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}


ul.release { margin: 0; padding: 0; list-style: none;}


.video-container {
	position: relative;
	margin: 0;
	padding: 0;
	padding-bottom: 56.25%;
	height:0;
	overflow:hidden;
}
.video-container iframe,
.video-container object,
.video-container embed {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}


/* Tables */
/*
table.simple = スマホ時column
.scroll-table table = スマホ時横スクロール
.scroll-table table thead = この時に使う
*/
table {
    border-collapse: collapse;
    border-spacing: 0;
	overflow: auto;
	margin: 0;
	width: 100%;
}
table th,
table td {
	line-height: 1.5;
	vertical-align: middle;
	padding: 25px 15px;
	border-bottom: 1px solid rgba(255,255,255,0.5);
}
table tr:first-child th,
table tr:first-child td {
	border-top: 1px solid rgba(255,255,255,0.5);
}
table th {
	text-align: left;
	font-size: 1.25em;
	font-weight: bold;
}
.scroll-table {}
.scroll-text {
	display: none;
	padding-top: 5px;
	padding-bottom: 15px;
	text-align: right;
}
@media only screen and (max-width: 767px) {
	table th {
		white-space: nowrap;
	}
	table th,
	table td {
		padding: 20px 10px;
	}
	.scroll-table {
		overflow: auto;
		white-space: nowrap;
	}
	.scroll-table::-webkit-scrollbar{
		height: 5px;
	}
	.scroll-table::-webkit-scrollbar-track{
		background: #F1F1F1;
	}
	.scroll-table::-webkit-scrollbar-thumb {
		background: #BCBCBC;
	}
	.scroll-text {
		display: block;
	}
	table.simple th,
	table.simple td{
		text-align:left;
		width:auto;
		display:block;
	}
	table.simple tr:first-child td {
		border-top: none;
	}
	table.simple th {
		border-bottom: none;
		padding-bottom: 10px;
	}
	table.simple td {
		padding-top: 5px;
	}
}

