@charset "utf-8";
/* *******************************************************************
base.css
******************************************************************* */
/* VIDEO
--------------------*/
video::-internal-media-controls-download-button {
    display:none;
}
video::-webkit-media-controls-enclosure {
    overflow:hidden;
}


/* NotoSans
--------------------*/
/* 
Thin 100
Light 300
DemiLight 350
Regular 400
Medium 500
Bold 700
Black 900
*/
@font-face {
 font-family: "NotoSansCJKjp";
 font-style: normal;
 font-weight: 300;
 src: local('Noto Sans CJK JP Light'), url('../fonts/NotoSansCJKjp-Light.woff');
}
@font-face {
 font-family: "NotoSansCJKjp";
 font-style: normal;
 font-weight: 400;
 src: local('Noto Sans CJK JP Regular'), url('../fonts/NotoSansCJKjp-Regular.woff');
}
@font-face {
 font-family: "NotoSansCJKjp";
 font-style: normal;
 font-weight: 500;
 src: local('Noto Sans CJK JP Regular'), url('../fonts/NotoSansCJKjp-Medium.woff');
}
@font-face {
 font-family: "NotoSansCJKjp";
 font-style: normal;
 font-weight: 700;
 src: local('Noto Sans CJK JP Bold'), url('../fonts/NotoSansCJKjp-Bold.woff');
}
@font-face {
 font-family: "NotoSansCJKjp";
 font-style: normal;
 font-weight: 900;
 src: local('Noto Sans CJK JP Black'), url('../fonts/NotoSansCJKjp-Black.woff');
}


/* BASE
--------------------*/
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-text-size-adjust: 100%;
}
*:hover {
	transition: all ease-in-out 0.2s;
	-moz-transition: all ease-in-out 0.2s;
	-webkit-transition: all ease-in-out 0.2s;
	-o-transition: all ease-in-out 0.2s;
	-ms-transition: all ease-in-out 0.2s;
}
/*a img:hover {
     -webkit-filter: brightness(1.3);
     -moz-filter: brightness(1.3);
     -o-filter: brightness(1.3);
     -ms-filter: brightness(1.3);
     filter: brightness(1.3);
}*/



/* HEADING
--------------------*/
/** MIDDLE (SECTION) **/
.ttl-section {
	font-size: 2em;
	line-height: 1.3;
	color: #003f98;
	font-weight: 700;
}
.ttl-section + p {
	margin-top: 32px;
}


/* LIST
--------------------*/
/** list-base **/
.ul {
	overflow: hidden;
}
.ul li {
	display: inline-block;
	list-style-position: inside;
}

.list {
	overflow: hidden;
}
.list li {
	display: inline-block;
}

/** appearance **/
.num {
	list-style: decimal;
	padding-left: 1.2em;
}
.demi {
	list-style: lower-roman;
	padding-left: 1.2em;
}
.disc {
	list-style: disc;
	padding-left: 1.2em;
}


/* TABLE
--------------------*/
/** table-base **/
.tbl {
	width: 100%;
}
.tbl + .tbl {
	margin-top: 1.6%;
}
.tbl tr th,
.tbl tr td {
	vertical-align: top;
}
	@media screen and (max-width: 768px) {
		.tbl.block tr th,
		.tbl.block tr td {
			width: 100% !important;
			display: block;
			text-align: left;
			border-right: none;
			border-left: none;
		}
		.tbl.block tr th {
			padding-bottom: 0;
		}
	}
/* dotted */
.tbl.dotted tr {
	border-top: 1px dotted rgb(164, 167, 172);
}
.tbl.dotted tr:last-child {
	border-bottom: 1px dotted rgb(164, 167, 172);
}
/* default */
.tbl.default tr {
	border-top: 1px solid #e0e0e0;
}
.tbl.default tr:last-child {
	border-bottom: 1px solid #e0e0e0;
}
.tbl.default th {
	font-weight: 500;
}
/* border */
.tbl.border th,
.tbl.border td {
	border: 1px solid #ccc;
}
.tbl.border th {
	background: #f3f3f3;
}
.tbl.border .numeric:first-child {
	border-bottom: 1px solid #ccc;
}


/* BOX
--------------------*/
/** tbl-box **/
.tbl-box {
	display: table;
	width: 100%;
	position: relative;
}
.tbl-box > * {
	display: table-cell;
}


/* BUTTON
--------------------*/
/* btn-box */
.btn-box {
	padding: 1.6% 0;
}


/* LABEL
--------------------*/
.label-cat {
	display: inline-block;
	padding: 0 2em;
	line-height: 26px;
	color: #fff;
	font-weight: 400;
	font-size: 0.750em;
	letter-spacing: 1px;
}
.label-cat.cat-blue {
	background: #003f98;
}
.label-cat.cat-green {
	background: #179942;
}
.label-cat.cat-orange {
	background: #FFA400;
}
.label-cat.cat-yellow {
	background: #dac918;
}
.label-cat.cat-pink {
	background: #e27d80;
}
.label-cat.cat-pink2 {
	background: #c44ba9;
}
.label-cat.cat-brown {
	background: #dc5d3d;
}
.label-cat.cat-purple {
	background: #7030a0;
}