@charset "utf-8";

/*//////////////////////  Common  //////////////////////*/


/* =======================================
 Base
======================================= */
* { 
	zoom: normal; 
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
	color: #222;
	font-family: "Noto Sans JP", sans-serif;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	text-decoration: none;
}
.palt {
	font-feature-settings: "palt";
}
sup {
	color: inherit;
}
a.alp:hover {
	opacity: .7;
}
.st {
	font-weight: 700;
}
.posrel {
	position: relative;
}
.ovf {
	overflow: hidden;
}
.clr {
	clear: both;
}
.inline {
	display: inline !important;
}
/*  */
ol {
	counter-reset: number; /* 名前を付けたカウンターをリセット */
	list-style: none; /* olが数字を付けることをキャンセル */
	margin: 0;
	padding: 0;
}
ol li {
	margin-left: 10px;
	margin-right: 10px;
	padding: 8px 0 8px 1.4em;
	text-indent: -1.2em;
	font-size: 1em;
	line-height: 1.6;
	border-bottom: dotted 1px #ccc;
}
ol li p {
	text-indent: 0;
}
ol > li:before {
	 /* カウンタ（数字になる部分） */
	counter-increment: number !important; /* 任意の名前を付ける */
	content: counter(number) ". " !important; /* 名前を付けたカウンターを呼び出し */
	color: #048dc5;
	font-weight: bold;
}


/* =======================================
 Flex
======================================= */
.flex-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.flex-box-nowrap {
	display: flex;
}
.flex-one,
.flex-two,
.flex-three,
.flex-four {
	display: flex;
	flex-wrap: wrap;
}
.sb {
	justify-content: space-between;
}
.sa {
	justify-content: space-around;
}
.jctr {
	justify-content: center;
}
.actr {
	align-items: center;
}
.a-top {
	align-items: flex-start;
}
.f-col {
	flex-direction: column;
}
.u {
	text-decoration: underline;
}


/* =======================================
 Color
======================================= */
.rd,
.kome.rd li {
	color: #ff0000;
}
.bl {
	color: #0092d5;
}
.bhb {
	color: #026202;
}
.bh {
	color: #009900;
}
.ct {
	color: #339999;
}
.fd {
	color: #993399;
}
.hk {
	color: #000066;
}
.stop {
	color: #306fef;
}
.wt {
	color: #fff !important;
}

.bg-bhb {
	background-color: #026202;
}
.bg-bh {
	background-color: #009900;
}
.bg-ct {
	background-color: #339999;
}
.bg-fd {
	background-color: #993399;
}
.bg-hk {
	background-color: #000066;
}
.bg-stop {
	background-color: #306fef;
}

.bg-bhb-lt {
	background-color: #d9f7cf;
}
.bg-bh-lt {
	background-color: #e9fac1;
}
.bg-ct-lt {
	background-color: #daf8e6;
}
.bg-fd-lt {
	background-color: #ebd9f6;
}
.bg-hk-lt {
	background-color: #dde8fc;
}
.bg-stop-lt {
	background-color: #ddf4fc;
}

.bg-gry {
	background-color: #f5f5f5;
}
.bg-gry2 {
	background-color: #ededed;
}
.bg-lbl {
	background-color: #f5faff;
}
.bg-grn {
	background-color: #009999;
}
.bg-dbl {
	background-color: #17006a;
}
.top-line {
	border-top: solid 1px #17006a;
}

.bg-menu {
	/*background-color: #048dc5;*/	
	background: url(../images2/pdt/bg-model2.png) no-repeat right -20px center #048dc5;
}
.bg-menu1 {
	background-color: #038289;	
}
.bg-menu2 {
	background-color: #17006a;	
}
.bg-menu3 {
	background-color: #1465ab;	
}
.bg-menu-gry {
	background-color: #f5f5f5;
}

.ylw-mrk {
	display: inline-block;
	padding: 2px 5px 4px;
	background: #fbfca4;
}
.pdf-mrk::before {
	display: inline-block;
	content: 'PDF';
	border: solid 1px #ccc;
	border-radius: 3px;
	padding: 3px 5px;
	color: #cc0000;
	font-weight: bold;
	margin-right: 8px;
}
.fn-mrk::after {
	content: '対策完了';
	font-size: 16px;
	color: #fff;
	background: #ff6600;
	padding: 5px 10px;
	margin-left: 15px;
	position: relative;
	top: -2px;
}
a.bnr-l {
  position: relative;
  overflow: hidden;
}
a.bnr-l::after {
  content: "";
  display: block;
  width: 30px;
  height: 100%;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #FFF;
  opacity: 0;
  transform: rotate(45deg);
  animation: reflect 2s ease-in-out infinite;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflect 2s ease-in-out infinite;
}
@keyframes reflect {
  0% { transform: scale(0) rotate(45deg); opacity: 0; }
  80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { transform: scale(4) rotate(45deg); opacity: 1; }
  100% { transform: scale(50) rotate(45deg); opacity: 0; }
}
@-webkit-keyframes reflect {
  0% { transform: scale(0) rotate(45deg); opacity: 0; }
  80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { transform: scale(4) rotate(45deg); opacity: 1; }
  100% { transform: scale(50) rotate(45deg); opacity: 0; }
}


/* =======================================
 Position
======================================= */
.ctr {
	text-align: center;
}
.rt {
	text-align: right;
}
.mrt20 {
	margin-right: 20px !important;
}
.mtp0 {
	margin-top: 0 !important;
}
.mtp10 {
	margin-top: 10px !important;
}
.mtp20 {
	margin-top: 20px !important;
}
.mtp25 {
	margin-top: 25px !important;
}
.mtp30 {
	margin-top: 30px !important;
}
.mtp40 {
	margin-top: 40px !important;
}
.mbt0 {
	margin-bottom: 0 !important;
}
.mbt20 {
	margin-bottom: 20px !important;
}


/* =======================================
 Video
======================================= */
.video-wrapper {
 width: 100%;
 position: relative;
 height: 562px;
 background: none;

}
.video-wrapper video {
 width: 100%;
 height: 562px;
 object-fit: cover;
}
#vjs_video_3 {
 position: absolute;
 top: 0;
 height: 100%;
 display: block;
 z-index: 1;
 width: 100%;
 background: none;
}
.video-wrapper .ov {
 position: absolute;
 top: 0;
 width: 100%;
 height: 100%;
 z-index: 1;
 background: rgba(0,0,0,.1);
}
.video-inner {
 position: absolute;
 top: 0;
 width: 100%;
 height: 100%;
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: flex-start;
 z-index: 2;
 padding: 1rem;
 text-shadow: 0 0 8px #000;
}


/* =======================================
 Exhibition
======================================= */
.exbtable table.dft td {
	vertical-align: top;
}
.exbtable table.dft td .lstbl {
	margin-bottom: 0;
}
.exbtable table.dft td .lstbl li:nth-last-of-type(1) {
	padding-bottom: 0;
}
.exbtable table {
	margin-bottom: 35px;
}	
.exbtable table tr:nth-of-type(2) th {
	clear: left;
	width: 15%;
	font-weight: normal;
}
.exbtable table.dft th.bl {
	color: #000;
	background: #dfeef9;
}
.exbtable table.dft th.gn {
	color: #000;
	background: #ebf9d7;
}
.exbtable table.dft .yw {
	color: #000;
	background: #ffffcc;
	padding-top: 8px;
}
.exbtable table.dft tr:nth-of-type(1) th {
	padding-bottom: 15px;
	font-size: 18px;
	position: relative;
}
.exbtable table.dft th:before {
	font-size: 13px;
	position: absolute;
	top: 12px;
}
.exbtable table.dft th.fn:before {
	content: "終了";
	color: #cc0000;
	font-weight: bold;
	display: block;
	width: 30px;
	padding: 6px 8px;
	line-height: 1;
	border: solid 1px #ccc;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	background: #fff;
	margin: 5px 10px 0 0;
}
.exbtable table.dft th.post:before {
	content: "延期";
	color: #fff;
	font-weight: bold;
	display: block;
	width: 30px;
	float: left;
	padding: 6px 8px;
	line-height: 1;
	border: solid 1px #cc0000;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	background: #cc0000;
	margin: 5px 10px 0 0;
}
table.dft th.new:before {
	content: "NEW";
	color: #fff;
	font-weight: bold;
	display: block;
	width: 40px;
	float: left;
	padding: 6px 8px;
	text-align: center;
	line-height: 1;
	border: solid 1px #cc0000;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	background: #cc0000;
	margin: 0 10px 0 0;
}