/* table */

table.w_100 {
	width:100%;
}
.scr_attention {
	display:none;
}
@media only screen and (max-width:1220px) {
	.tbl_scr_box {
		width:100%;
		overflow-x: scroll;
		table {
			white-space: nowrap;
		}
	}
	.scr_attention {
		display:block;
		font-size:var(--font-size-14);
	}
}



.tbl_01 {
	border-collapse: collapse;
}
.tbl_01 th,
.tbl_01 td {
	vertical-align:top;
	padding:1rem 2.5rem;
	border:1px solid #ccc;
}
.siteColor-A, .siteColor-B, .siteColor-C{
	.tbl_01 th,
	.tbl_01 td {
		border:1px solid var(--color-text);
	}
}

.tbl_01 th {
	white-space: nowrap ;
	background:#ffefcc;
}
.siteColor-A, .siteColor-B, .siteColor-C{
	.tbl_01 th{
		background: none;
	}
}

.tbl_02 {
	border-collapse: collapse;
}
.tbl_02 th,
.tbl_02 td {
	vertical-align:top;
	padding:1rem 15px;
	border:1px solid #ccc;
}
.siteColor-A, .siteColor-B, .siteColor-C{
	.tbl_02 th,
	.tbl_02 td {
		border:1px solid var(--color-text);
	}
}

.tbl_02 th {
	white-space: nowrap ;
	background:#ffefcc;
	font-size:0.875rem;
}
.tbl_02 td {
	text-align:center;
	vertical-align: middle;
}
.siteColor-A, .siteColor-B, .siteColor-C{
	.tbl_02 th{
		background: rgba(255,255,255,0.2);
	}
}


.tbl_02 tr td:nth-of-type(1),
.tbl_02 tr td:nth-of-type(2) {
	text-align:left;
}

.tbl_02 tr td:nth-of-type(1) {
	width:150px;
}
.tbl_02 tr td:nth-of-type(3) {
	width:65px;
}
.tbl_02 tr td:nth-last-of-type(1),
.tbl_02 tr td:nth-last-of-type(2),
.tbl_02 tr td:nth-last-of-type(3),
.tbl_02 tr td:nth-last-of-type(4),
.tbl_02 tr td:nth-last-of-type(5),
.tbl_02 tr td:nth-last-of-type(6) {
	width:60px;
}

.pg-content p {
	word-break: break-all;
}

/*ABOUT*/
a.btn_lg {
	position: relative;
    font-size: var(--font-size-18);
    display: inline-block;
    text-decoration: none;
    background-color: var(--color-yellow);
    border-radius: 5rem;
    border: 3px solid var(--color-text);
    padding: 20px 60px;
    line-height: 1;
    transition: opacity 0.2s ease;
}
a.btn_lg::before {
	content: "";
    display: block;
    width: 8px;
    height: 8px;
    border: 3px solid var(--color-text);
    transform: rotate(-45deg) translateY(-55%);
    position: absolute;
    top: 50%;
    left: 30px;
    border-top: none;
    border-left: none;
}

.about_policy {
	display:flex;
	width:90%;
	-moz-column-gap: 15px;
	     column-gap: 15px;
	figure {
		width:220px;
		img {
			width:100%;
		}
	}
}
@media only screen and (max-width:1220px) {
	.about_policy {
		display:block;
		figure {
			display:block;
			margin:0 auto;
			width:180px;
		}
	}
}

/*SCHEDULE*/
.sat {color:#0063a4;}
.sun {color:#c40026;}

/*LINK*/
.link_bnr_lst {
	margin-left:1.5rem;
}
.link_bnr_lst ul {
	list-style-type:none;
	margin:0;
	padding:0;
	display:flex;
	flex-wrap:wrap;
	-moz-column-gap: 30px;
	     column-gap: 30px;
		 row-gap: 15px;
	li {
		width:270px;
		a {
			
			img {
				width:100%;
				border:1px solid #ccc;
			}
		}
	}
}

/*NEWS*/

.date {
	margin-top:0;
	font-size:var(--font-size-14);
	color:#666;
}

.siteColor-A .date,
.siteColor-B .date,
.siteColor-C .date{
	color: var(--color-text);
}


.pg-content .pg-title-3 {
	position:relative;
	min-height:48px;
	padding:5px 35px 0 70px;
	background-image:url(../img/title-bg-2.jpg);
	background-position: left top;
	background-size:100% auto;
	background-repeat:no-repeat;
	font-size:var(--font-size-24);
}
@media only screen and (max-width:768px) {
	.pg-content .pg-title-3 {
		background-size:auto auto;
	}
}
.pg-content .pg-title-3::after {
	position:absolute;
	right:0; bottom:0;
	content:" ";
	width:15px; height:15px;
	background-color:#fff;
}

.siteColor-A .pg-content .pg-title-3,
.siteColor-B .pg-content .pg-title-3,
.siteColor-C .pg-content .pg-title-3{
	background: none;
	border: 1px solid var(--color-text);
}

.pg-content .pg-title-3 + .date {
	margin-top:-25px;
}
.pg-content .news_content_w {
	width:90%;
	margin:3.5rem auto 0;
	p {
		word-break: break-all;
	}
}
@media only screen and (max-width:1220px) {
	.pg-content .news_content_w {
		width:100%;
	}
}

.pg-content .image_ctr_1 {
	display:flex;
	justify-content:center;
	margin:2.5rem 0;
	figure {
		width:70%;
		img {
			width:100%;
		}
	}
}