<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/*
 * サイト共通装飾に関する共通のCSS
 */

/* ヘッダlayout */
#c_header,
.c_header{
	border-top: #63ab66 solid 10px;
	padding: 40px 2% 20px 2%;
}
.c_header-con{
	table-layout: fixed;
	display: table;
	width: 100%;
}
.c_header-con .con_left{
	position: relative;
	display: table-cell;
	width: 420px;
	vertical-align: top;
}
.c_header-con .con_right{
	display: table-cell;
	vertical-align: middle;
}

.c_header-logo{
	line-height: 0;
}
.c_header-h2{
	position: absolute;
	top: -28px;
	left: 0px;
	font-size: 10px;
}

.c_header-top{
	display: -webkit-flex;
	display: flex;
	justify-content: flex-end;
	padding-bottom: 20px;
}
.c_header-tel{
	padding-right: 10px;
	text-align: right;
}
.c_header-tel .tel_txt{
	font-size: 14px;
	line-height: 1.2;
}
.c_header-tel .tel_number{
	font-size: 26px;
	font-weight: 600;
	color: #333333;
}

.c_header-mail{
	overflow: hidden;
}
.c_header-mail a{
	position: relative;
	display: block;
	background: linear-gradient(-86deg, #2c9f88 20%, #4586de 80%, #4586de 100%);
	padding: 12px 0;
	width: 200px;
	color: white;
	text-decoration: none;
	text-align: center;
}
.c_header-mail a .txt{
	position: relative;
	z-index: 3;
}
.c_header-mail a .txt .ic{
	position: relative;
	top: -2px;
	display: inline-block;
	padding: 0 6px 0 0;
}
.c_header-mail a::after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 100%;
	background: #4586de;/* ボーダーカラー */
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform .1s;
}
.c_header-mail a:hover::after {
	transform: scale(1, 1);
}

.c_header-nav{
	overflow: hidden;
}
.c_header-menu{
	display: -webkit-flex;
	display: flex;
	justify-content: flex-end;
	padding-bottom: 4px;
}
.c_header-menu li{
	padding-right: 46px;
}
.c_header-menu li:last-child{
	padding-right: 0px;
}
.c_header-menu li a{
	position: relative;
	padding-bottom: 6px;
	color: #333333;
	text-decoration: none;
}
.c_header-menu li a::after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #63ab66;/* ボーダーカラー */
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform .1s;
}
.c_header-menu li a:hover::after {
	transform: scale(1, 1);
}
.c_header-menu li .active::after{/* アクティブ時の設定 */
	position: absolute;
	bottom: 0px;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #63ab66;/* ボーダーカラー */
	transform: scale(1, 1);
	transform-origin: left top;
	transition: transform .1s;
}
.c_header-menu li .active:hover::after{
	transform: scale(1, 1);
}
@media screen and (min-width: 768px) and (max-width: 1139px) {
	#c_header,
	.c_header{
		padding: 20px 2% 10px 2%;
	}

	.c_header-con .con_left{
		top: 40px;
		width: 34%;
	}
	.c_header-h2{
		top: -48px;
	}
	
	.c_header-top{
		padding-bottom: 10px;
	}
	.c_header-tel .tel_txt{
		font-size: 13px;
	}
	.c_header-tel .tel_number{
		font-size: 22px;
	}

	.c_header-mail a{
		width: 160px;
		font-size: 15px;
	}

	.c_header-menu li{
		padding-right: 20px;
	}
	.c_header-menu li a{
		font-size: 14px;
	}
}
@media print{
	#c_header,
	.c_header{
		padding: 20px 2% 10px 2%;
	}

	.c_header-con .con_left{
		top: 40px;
		width: 34%;
	}
	.c_header-h2{
		top: -48px;
	}
	
	.c_header-top{
		padding-bottom: 10px;
	}
	.c_header-tel .tel_txt{
		font-size: 12px;
	}
	.c_header-tel .tel_number{
		font-size: 20px;
	}

	.c_header-mail a{
		width: 160px;
		font-size: 14px;
	}

	.c_header-menu li{
		padding-right: 16px;
	}
	.c_header-menu li a{
		font-size: 13px;
	}
}
@media screen and (max-width: 767px) {
	#c_header{
		display: none;
	}
}


/* 下層ページヘッダlayout */
.c_promo{
	position: relative;
	overflow: hidden;
	width: 100%;
	min-width: 1140px;
}

.c_promo-tit{
	position: absolute;
	top: 0px;
	left: 0px;
	display: block;
	background:rgba(0,0,0,0.4);
	padding: 30px 0;
	width: 100%;
	color: white;
	text-align: center;
	z-index: 3;
}
.c_promo-tit .tit_sub{
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 18px;
}
.c_promo-tit .tit_main{
	font-size: 36px;
	font-weight: 700;
	line-height: 1.4;
}

.c_promo-photo{
	position: relative;
	left: 50%;
	margin: 0 0 0 -1000px;
}
@media screen and (min-width: 2001px) {
	.c_promo-photo{
		left: 0%;
		margin: 0px;
	}
	.c_promo-photo img{
		width: 100%;
	}
}
@media screen and (min-width: 768px) and (max-width: 1139px) {
	.c_promo{
		min-width: 100%;
	}
	
	.c_promo-tit{
		padding: 12px 0;
	}
	.c_promo-tit .tit_sub{
		font-family: 'Roboto Condensed', sans-serif;
		font-size: 15px;
	}
	.c_promo-tit .tit_main{
		font-size: 26px;
	}
	
	.c_promo-photo{
		margin: 0 0 0 -650px;
	}
	.c_promo-photo img{
		width: 1300px;
	}
}
@media print{
	.c_promo{
		min-width: 100%;
	}
	
	.c_promo-tit{
		padding: 12px 0;
	}
	.c_promo-tit .tit_sub{
		font-family: 'Roboto Condensed', sans-serif;
		font-size: 14px;
	}
	.c_promo-tit .tit_main{
		font-size: 24px;
	}
	
	.c_promo-photo{
		margin: 0 0 0 -650px;
	}
	.c_promo-photo img{
		width: 1300px;
	}
}
@media screen and (max-width: 767px) {
	.c_promo{
		margin-top: 50px;
		min-width: 100%;
	}
	
	.c_promo-tit{
		padding: 10px 0;
	}
	.c_promo-tit .tit_sub{
		font-size: 13px;
		line-height: 1;
	}
	.c_promo-tit .tit_main{
		font-size: 20px;
		line-height: 1;
	}
	
	.c_promo-photo{
		margin: 0 0 0 -450px;
	}
	.c_promo-photo img{
		width: 900px;
	}
}


/* 汎用コンテンツlayout */
.c_pattern01{
	overflow: hidden;
	position: relative;
	background-color: #eeeeee;
	padding: 45px 0 55px 0;
	width: 100%;
	text-align: center;
}
.c_pattern01::before{
	content: '';
	position: absolute;
	top: 0px;
	left: 50%;
	display: block;
	background-color: #bbcfe9;
	margin-left: -2300px;
	width: 2000px;
	height: 800px;
	transform:rotate(-45deg);
	z-index: 2;
}
.c_pattern01::after{
	content: '';
	position: absolute;
	top: 0px;
	left: 50%;
	display: block;
	background-color: #c4dac5;
	margin-left: -200px;
	width: 2000px;
	height: 800px;
	transform:rotate(-45deg);
	z-index: 2;
}

.c_pattern01-tit01{
	position: relative;
	margin-bottom: 20px;
	font-size: 20px;
	font-weight: 700px;
	z-index: 3;
}
.c_pattern01-tit02{
	position: relative;
	padding-bottom: 30px;
	margin-bottom: 30px;
	font-size: 20px;
	font-weight: 700px;
	z-index: 3;
}
.c_pattern01-tit02::before{
	content: '';
	position: absolute;
	bottom: 0px;
	left: 50%;
	display: block;
	background: linear-gradient(-86deg, #2c9f88 40%, #4586de 60%, #4586de 100%);
	margin-left: -60px;
	width: 120px;
	height: 4px;
	z-index: 3;
}
.c_pattern01-txt01{
	position: relative;
	margin: 0;
	z-index: 3;
}
@media screen and (min-width: 768px) and (max-width: 1139px) {
	.c_pattern01{
		padding: 35px 0 45px;
	}
	.c_pattern01::before{
		margin-left: -2200px;
	}
	.c_pattern01::after{
		margin-left: -300px;
	}
	
	.c_pattern01-tit{
		font-size: 18px;
	}
}
@media print{
	.c_pattern01{
		padding: 35px 0 45px;
	}
	.c_pattern01::before{
		display: none;
	}
	.c_pattern01::after{
		display: none;
	}
	
	.c_pattern01-tit{
		font-size: 18px;
	}
}
@media screen and (max-width: 767px) {
	.c_pattern01{
		padding: 25px 0 35px;
	}
	.c_pattern01::before{
		margin-left: -2000px;
	}
	.c_pattern01::after{
		margin-left: -400px;
	}
	
	.c_pattern01-tit{
		font-size: 16px;
	}
	.c_pattern01-txt01{
		text-align: left;
	}
}


/* フッタメニューlayout */
.c_fnav{
	background-color: #037c6d;
	padding: 15px 0;
}
.c_fnav-menu{
	display: -webkit-flex;
	display: flex;
	justify-content: center;
}
.c_fnav-menu li{
	position: relative;
	padding-right: 80px;
}
.c_fnav-menu li::before{
	content: '';
	position: absolute;
	top: 25%;
	right: 40px;
	display: block;
	background-color: white;
	width: 1px;
	height: 50%;
	z-index: 3;
}
.c_fnav-menu li:last-child{
	padding-right: 0px;
}
.c_fnav-menu li:last-child::before{
	display: none;
}
.c_fnav-menu li a{
	color: white;
}
@media screen and (min-width: 768px) and (max-width: 1139px) {
	.c_fnav-menu li{
		padding-right: 60px;
	}
	.c_fnav-menu li::before{
		right: 30px;
	}
	.c_fnav-menu li a{
		font-size: 14px;
	}
}
@media print{
	.c_fnav-menu li{
		padding-right: 50px;
	}
	.c_fnav-menu li::before{
		right: 25px;
	}
	.c_fnav-menu li a{
		font-size: 13px;
	}
}
@media screen and (max-width: 767px) {
	.c_fnav-menu{
		overflow: hidden;
		display: block;
		border-top: white solid 1px;
	}
	.c_fnav-menu li{
		padding-right: 0px;
		float: left;
		width: 50%;
	}
	.c_fnav-menu li::before{
		display: none;
	}
	.c_fnav-menu li a{
		display: block;
		border-bottom: white solid 1px;
		padding: 8px 0;
		font-size: 12px;
		text-align: center;
	}
	.c_fnav-menu li:nth-child(2n) a{
		border-left: white solid 1px;
	}
}


/* フッタlayout */
.c_footer{
	border-bottom: #dadada solid 1px;
	background-color: #eeeeee;
	padding: 40px 0;
}
.c_footer-con01{
	display: table;
	margin: 0 auto;
	width: 1140px;
}
.c_footer-con01 .con01_left{
	display: table-cell;
	padding-right: 20px;
	width: 740px;
	font-size: 14px;
	vertical-align: top;
}
.c_footer-con01 .con01_right{
	display: table-cell;
	vertical-align: bottom;
}

.c_footer-text01{
	table-layout: fixed;
	display: table;
}
.c_footer-text01 .text01_left{
	display: table-cell;
	padding-right: 15px;
	vertical-align: middle;
}
.c_footer-text01 .text01_right{
	display: table-cell;
	line-height: 0;
	vertical-align: middle;
}

.c_footer-txt01{
	position: relative;
	margin-bottom: 5px;
	font-weight: 700;
	text-align: center;
}
.c_footer-txt01::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 0px;
	display: block;
	background-color: #333333;
	width: 100%;
	height: 1px;
	z-index: 3;
}
.c_footer-txt01 span{
	position: relative;
	display: inline-block;
	background-color: #eeeeee;
	padding: 0 20px;
	z-index: 6;
}

.c_footer-bt{
	overflow: hidden;
}
.c_footer-bt a{
	position: relative;
	display: block;
	background: linear-gradient(-86deg, #2c9f88 20%, #4586de 80%, #4586de 100%);
	padding: 30px 0;
	width: 100%;
	font-size: 20px;
	font-weight: 700;
	color: white;
	text-decoration: none;
	text-align: center;
}
.c_footer-bt a .txt{
	position: relative;
	z-index: 3;
}
.c_footer-bt a .txt .ic{
	position: relative;
	top: -2px;
	display: inline-block;
	padding: 0 12px 0 0;
}
.c_footer-bt a::after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 100%;
	background: #4586de;/* ボーダーカラー */
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform .1s;
}
.c_footer-bt a:hover::after {
	transform: scale(1, 1);
}

.c_footer-copy{
	padding: 15px 0;
	margin: 0;
	font-size: 14px;
	text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1139px) {
	.c_footer{
		padding: 30px 0;
	}
	.c_footer-con01{
		width: 96%;
	}
	.c_footer-con01 .con01_left{
		width: 62%;
		font-size: 13px;
	}
	
	.c_footer-text01 .text01_left{
		padding-right: 12px;
	}
	
	.c_footer-txt01{
		font-size: 14px;
	}
	.c_footer-txt01 span{
		padding: 0 12px;
	}
	
	.c_footer-bt{
		overflow: hidden;
	}
	.c_footer-bt a{
		font-size: 17px;
	}
	
	.c_footer-copy{
		font-size: 13px;
	}
}
@media print{
	.c_footer{
		padding: 30px 0;
	}
	.c_footer-con01{
		width: 96%;
	}
	.c_footer-con01 .con01_left{
		width: 62%;
		font-size: 12px;
	}
	
	.c_footer-text01 .text01_left{
		padding-right: 10px;
	}
	
	.c_footer-txt01{
		font-size: 13px;
	}
	.c_footer-txt01 span{
		padding: 0 12px;
	}
	
	.c_footer-bt{
		overflow: hidden;
	}
	.c_footer-bt a{
		font-size: 16px;
	}
	
	.c_footer-copy{
		font-size: 12px;
	}
}
@media screen and (max-width: 767px) {
	.c_footer{
		padding: 25px 0;
	}
	.c_footer-con01{
		display: block;
		width: 92%;
	}
	.c_footer-con01 .con01_left{
		display: block;
		padding: 0 0 15px 0;
		width: auto;
		font-size: 13px;
	}
	.c_footer-con01 .con01_right{
		display: block;
		text-align: center;
	}
	
	.c_footer-text01{
		width: 100%;
	}
	.c_footer-text01 .text01_left{
		padding-right: 10px;
		width: 80%;
	}
	.c_footer-text01 .text01_right{
		text-align: center;
	}
	
	.c_footer-txt01{
		font-size: 14px;
	}
	.c_footer-txt01 span{
		padding: 0 15px;
	}
	
	.c_footer-bt{
		display: inline-block;
		margin: 0 auto;
	}
	.c_footer-bt a{
		padding: 20px 0;
		width: 260px;
		font-size: 15px;
	}
	.c_footer-bt a .txt .ic{
		top: -2px;
		padding: 0 10px 0 0;
		width: 30px;
	}
	
	.c_footer-copy{
		padding: 15px 0 60px 0;
		font-size: 12px;
	}
}


/* テーブルlayout */
.vertic_top{vertical-align: top;}
.vertic_mid{vertical-align: middle;}
.vertic_bot{vertical-align: bottom;}

.table_nor{/* 通常テーブル */
	overflow: hidden !important;
	table-layout: fixed !important;
	border-collapse: separate !important;
  border-spacing: 0 !important;
  border: none !important;
  border-top: #06286c solid 1px !important;
  border-left: #06286c solid 1px !important;
	width: 100%;
}
.table_nor tbody tr th{
	background-color: #214b9f;
	border-right: #06286c solid 1px;
	border-bottom: #06286c solid 1px;
	font-weight: normal;
	padding: 12px 15px;
	color: white;
}
.table_nor tbody tr td{
	background-color: white;
	border-right: #06286c solid 1px;
	border-bottom: #06286c solid 1px;
	padding: 12px 15px;
}
@media screen and (min-width: 768px) and (max-width: 1139px) {
	.table_nor tbody tr th{
		font-size: 14px;
	}
	.table_nor tbody tr td{
		font-size: 14px;
	}
}
@media print{
	.table_nor tbody tr th{
		font-size: 12px;
	}
	.table_nor tbody tr td{
		font-size: 12px;
	}
}
@media screen and (max-width: 767px) {
	.table_nor tbody tr th{
		display: block;
		width: auto;
		font-size: 14px;
	}
	.table_nor tbody tr td{
		display: block;
		width: auto;
		font-size: 14px;
	}
}

.table_bg{/* 背景色のみ構成 */
	overflow: hidden !important;
	table-layout: fixed !important;
	border-collapse: separate !important;
  border-spacing: 0 !important;
  border: none !important;
	width: 100%;
}
.table_bg thead tr th{
	background-color: #63ab66;
	border-right: white solid 5px;
	border-bottom: white solid 5px;
	font-weight: normal;
	padding: 14px 15px;
	color: white;
	vertical-align: top;
}
.table_bg thead tr th:last-child{
	border-right: white solid 0px;
}
.table_bg tbody tr th{
	border-right: white solid 5px;
	border-bottom: white solid 5px;
	font-weight: normal;
	padding: 14px 15px;
	vertical-align: top;
}
.table_bg tbody tr td{
	border-bottom: white solid 5px;
	padding: 14px 15px;
	vertical-align: top;
}
.table_bg tbody tr .bg_green,
.table_bg tbody tr .bg_green{
	background-color: #d8ead9;
}
.table_bg tbody tr .bg_blue,
.table_bg tbody tr .bg_blue{
	background-color: #d0e0f6;
}
.table_bg tbody tr .bg_red,
.table_bg tbody tr .bg_red{
	background-color: #efc7c7;
}
@media screen and (min-width: 768px) and (max-width: 1139px) {
	.table_bg tbody tr th{
		padding: 12px 10px;
		font-size: 13px;
	}
	.table_bg tbody tr td{
		padding: 12px 10px;
		font-size: 13px;
	}
}
@media print{
	.table_bg tbody tr th{
		padding: 10px 6px;
		font-size: 12px;
	}
	.table_bg tbody tr td{
		padding: 10px 6px;
		font-size: 12px;
	}
}
@media screen and (max-width: 767px) {
	.table_bg tbody tr th{
		display: block;
		border-right: white solid 0px;
		border-bottom: white solid 1px;
		width: auto;
		font-size: 14px;
	}
	.table_bg tbody tr td{
		display: block;
		border-bottom: white solid 5px;
		width: auto;
		font-size: 14px;
	}
}

.table_bg02{/* 背景色のみ構成 */
	overflow: hidden !important;
	table-layout: fixed !important;
	border-collapse: separate !important;
  border-spacing: 0 !important;
  border: none !important;
	width: 100%;
}
.table_bg02 tbody tr th{
	background-color: #4585dd;
	border-right: #dee7f8 solid 5px;
	border-bottom: #dee7f8 solid 5px;
	font-weight: normal;
	padding: 14px 15px;
	color: white;
	vertical-align: top;
}
.table_bg02 tbody tr td{
	background-color: white;
	border-bottom: #dee7f8 solid 5px;
	padding: 14px 15px;
	vertical-align: top;
}
@media screen and (min-width: 768px) and (max-width: 1139px) {
	.table_bg02 tbody tr th{
		font-size: 14px;
	}
	.table_bg02 tbody tr td{
		font-size: 14px;
	}
}
@media print{
	.table_bg02 tbody tr th{
		font-size: 12px;
	}
	.table_bg02 tbody tr td{
		font-size: 12px;
	}
}
@media screen and (max-width: 767px) {
	.table_bg02 tbody tr th{
		display: block;
		border-right: #dee7f8 solid 0px;
		border-bottom: #dee7f8 solid 0px;
		width: auto;
		font-size: 14px;
	}
	.table_bg02 tbody tr td{
		display: block;
		width: auto;
		font-size: 14px;
	}
}

.table_bg03{/* 背景色のみ構成 */
	overflow: hidden !important;
	table-layout: fixed !important;
	border-collapse: separate !important;
  border-spacing: 0 !important;
  border: none !important;
	width: 100%;
}
.table_bg03 tbody tr th{
	background-color: #4585dd;
	border-right: white solid 5px;
	border-bottom: white solid 5px;
	font-weight: normal;
	padding: 14px 15px;
	color: white;
	vertical-align: top;
}
.table_bg03 tbody tr td{
	background-color: #dae7f8;
	border-bottom: white solid 5px;
	padding: 14px 15px;
	vertical-align: top;
}
@media screen and (min-width: 768px) and (max-width: 1139px) {
	.table_bg03 tbody tr th{
		font-size: 14px;
	}
	.table_bg03 tbody tr td{
		font-size: 14px;
	}
}
@media print{
	.table_bg03 tbody tr th{
		font-size: 12px;
	}
	.table_bg03 tbody tr td{
		font-size: 12px;
	}
}
@media screen and (max-width: 767px) {
	.table_bg03 tbody tr th{
		display: block;
		border-right: white solid 0px;
		border-bottom: white solid 0px;
		width: auto;
		font-size: 14px;
	}
	.table_bg03 tbody tr td{
		display: block;
		width: auto;
		font-size: 14px;
	}
}

.table_ubar{/* 下線のみ構成 */
	overflow: hidden !important;
	table-layout: fixed !important;
	border-collapse: separate !important;
  border-spacing: 0 !important;
  border: none !important;
	width: 100%;
}
.table_ubar tbody tr th{
	position: relative;
	overflow: hidden;
	font-weight: normal;
	padding: 14px 15px;
	vertical-align: top;
}
.table_ubar tbody tr th::before{
	content: '';
	position: absolute;
	bottom: 0px;
	left: 0px;
	display: block;
	background-color: #d65a25;
	width: 96%;
	height: 2px;
}
.table_ubar tbody tr td{
	position: relative;
	overflow: hidden;
	padding: 14px 15px;
	vertical-align: top;
}
.table_ubar tbody tr td::before{
	content: '';
	position: absolute;
	bottom: 0px;
	left: 0px;
	display: block;
	background-color: #f0c3af;
	width: 100%;
	height: 2px;
}
@media screen and (min-width: 768px) and (max-width: 1139px) {
	.table_ubar tbody tr th{
		font-size: 14px;
	}
	.table_ubar tbody tr td{
		font-size: 14px;
	}
}
@media print{
	.table_ubar tbody tr th{
		font-size: 12px;
	}
	.table_ubar tbody tr td{
		font-size: 12px;
	}
}
@media screen and (max-width: 767px) {
	.table_ubar tbody tr th{
		display: block;
		background-color: #d65a25;
		width: auto;
		font-size: 14px;
		color: white;
	}
	.table_ubar tbody tr th::before{
		display: none;
	}
	.table_ubar tbody tr td{
		display: block;
		width: auto;
		font-size: 14px;
	}
	.table_ubar tbody tr td::before{
		display: none;
	}
}

.table_nor-sp{/* 通常テーブル */
	overflow: hidden !important;
	table-layout: fixed !important;
	border-collapse: separate !important;
  border-spacing: 0 !important;
  border: none !important;
  border-top: #06286c solid 1px !important;
  border-left: #06286c solid 1px !important;
	width: 100%;
}
.table_nor-sp thead tr th{
	background-color: #214b9f;
	border-right: #06286c solid 1px;
	border-bottom: #06286c solid 1px;
	font-weight: normal;
	padding: 16px 15px;
	color: white;
}
.table_nor-sp tbody tr th{
	background-color: #4e73be;
	border-right: #06286c solid 1px;
	border-bottom: #06286c solid 1px;
	font-weight: normal;
	color: white;
}
.table_nor-sp tbody tr td{
	background-color: white;
	border-right: #06286c solid 1px;
	border-bottom: #06286c solid 1px;
}
.table_nor-sp tbody tr th .pc_txt,
.table_nor-sp tbody tr td .pc_txt{
	display: block;
	padding: 12px 15px;
}
.table_nor-sp tbody tr th .sp_txt,
.table_nor-sp tbody tr td .sp_txt{
	display: none;
}
@media screen and (min-width: 768px) and (max-width: 1139px) {
	.table_nor-sp thead tr th{
		font-size: 15px;
	}
	.table_nor-sp tbody tr th{
		font-size: 14px;
	}
	.table_nor-sp tbody tr td{
		font-size: 14px;
	}
}
@media print{
	.table_nor-sp thead tr th{
		font-size: 13px;
	}
	.table_nor-sp tbody tr th{
		font-size: 12px;
	}
	.table_nor-sp tbody tr td{
		font-size: 12px;
	}
}
@media screen and (max-width: 767px) {
	.table_nor-sp thead tr th{
		display: none;
	}
	.table_nor-sp tbody tr th{
		overflow: hidden;
		display: block;
		background: linear-gradient(90deg, #4e73be 0%, #4e73be 28%, white 28%, white 100%);
		width: auto;
		font-size: 14px;
	}
	.table_nor-sp tbody tr td{
		overflow: hidden;
		display: block;
		background: linear-gradient(90deg, #4e73be 0%, #4e73be 28%, white 28%, white 100%);
		width: auto;
	}
	.table_nor-sp tbody tr:nth-child(2n) th,
	.table_nor-sp tbody tr:nth-child(2n) td{/* 交互に背景色変更 */
		background: linear-gradient(90deg, #4fbf70 28%, #4fbf70 0%, white 28%, white 100%);
	}
	.table_nor-sp tbody tr th .pc_txt,
	.table_nor-sp tbody tr td .pc_txt{
		display: inline-block;
		float: right;
		padding: 10px 5px;
		width: 70%;
		font-size: 12px;
		color: #171717;
	}
	.table_nor-sp tbody tr th .sp_txt,
	.table_nor-sp tbody tr td .sp_txt{
		display: inline-block;
		float: left;
		padding: 10px 5px;
		width: 28%;
		font-size: 11px;
		color: white;
	}
}

/* SP時にスクロールバーを出す場合 */
.table_nor-ns{/* 通常テーブル */
	overflow: hidden !important;
	table-layout: fixed !important;
	border-collapse: separate !important;
  border-spacing: 0 !important;
  border: none !important;
  border-top: #06286c solid 1px !important;
  border-left: #06286c solid 1px !important;
	width: 100%;
}
.table_nor-ns thead tr th{
	background-color: #214b9f;
	border-right: #06286c solid 1px;
	border-bottom: #06286c solid 1px;
	font-weight: normal;
	padding: 16px 15px;
	color: white;
}
.table_nor-ns tbody tr th{
	background-color: #4e73be;
	border-right: #06286c solid 1px;
	border-bottom: #06286c solid 1px;
	padding: 12px 15px;
	font-weight: normal;
	color: white;
}
.table_nor-ns tbody tr td{
	background-color: white;
	border-right: #06286c solid 1px;
	border-bottom: #06286c solid 1px;
	padding: 12px 15px;
}
@media screen and (max-width: 767px) {
	.scroll_table{
	  overflow: auto;
	  white-space: nowrap;
	}
	.scroll_table::-webkit-scrollbar{　　
	 height: 5px;
	}

	.scroll_table .table_nor-ns{
		width: 800px;
	}
	.scroll_table .table_nor-ns thead tr th{
		width: auto !important;
	}
}


.contactIcon img {
	position: fixed;
	top: 5px;
	right: 50px;
	z-index: 9999;
	width: 40px;
}

.contactIcon a:hover img  {
	opacity: 0.8;
}</pre></body></html>