@charset "utf-8";

body {
	font-family: 'BIZ UDPGothic', sans-serif;
	font-weight: Regular 400;
}

/* トップスライド関係 ****************************/
.carousel-caption {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
/* スマホ対応（幅767px以下の場合） */
@media only screen and (max-width: 767px) {
	.f_mobile {
		font-size: 60%;
		line-height: 14px;
		margin: 0 0 -10px 0;	/* 上右下左 */
	}
}

/* スマホ改行 ****************************/
@media screen and (min-width: 768px) {
	.sp_line_break {
		display: none;
	}
}
/* スマホなど画面幅が狭い時は、改行を表示する */
@media screen and (max-width: 767px) {
	.sp_line_break {
		display: inline; /* 必要に応じて調整 */
	}
}
/* PC改行 ****************************/
@media screen and (min-width: 768px) {
	.pc_line_break {
		display: inline; /* 必要に応じて調整 */
	}
}
/* スマホなど画面幅が狭い時は、改行を表示する */
@media screen and (max-width: 767px) {
	.pc_line_break {
		display: none;
	}
}


/* 文字位置 ****************************/
.center {text-align: center;}
.text-center {text-align: center;}
.left {text-align: left;}
.text-left {text-align: left;}
.right {text-align: right;}
.text-right {text-align: right;}

/* 文字の太さ ****************************/
.f_100 {font-weight: 100;}
.f_200 {font-weight: 200;}
.f_300 {font-weight: 300;}
.f_400 {font-weight: 400;}
.f_500 {font-weight: 500;}
.f_600 {font-weight: 600;}
.f_700 {font-weight: 700;}
.f_800 {font-weight: 800;}
.f_900 {font-weight: 900;}

/* フォントサイズ（rem） ****************************/
.f_05 {font-size: 0.5rem;}
.f_055 {font-size: 0.55rem;}
.f_06 {font-size: 0.6rem;}
.f_065 {font-size: 0.65rem;}
.f_075 {font-size: 0.75rem;}
.f_08 {font-size: 0.8rem;}
.f_085 {font-size: 0.85rem;}
.f_09 {font-size: 0.9rem;}
.f_095 {font-size: 0.95rem;}
.f_098 {font-size: 0.98rem;}
.f_099 {font-size: 0.99rem;}
.f_100 {font-size: 1rem;}
.f_105 {font-size: 1.05rem;}
.f_110 {font-size: 1.1rem;}

/* フォントサイズ（px） ****************************/
.f_10 {font-size: 10px;}
.f_11 {font-size: 11px;}
.f_12 {font-size: 12px;}
.f_13 {font-size: 13px;}
.f_14 {font-size: 14px;}
.f_15 {font-size: 15px;}
.f_16 {font-size: 16px;}
.f_17 {font-size: 17px;}
.f_18 {font-size: 18px;}
.f_19 {font-size: 19px;}
.f_20 {font-size: 20px;}
.f_21 {font-size: 21px;}
.f_22 {font-size: 22px;}
.f_24 {font-size: 24px;}
.f_26 {font-size: 26px;}
.f_28 {font-size: 28px;}
.f_30 {font-size: 30px;}
.f_32 {font-size: 32px;}
.f_34 {font-size: 34px;}
.f_36 {font-size: 36px;}
.f_38 {font-size: 38px;}
.f_40 {font-size: 40px;}

/* フォントサイズ（％） ****************************/
.f_50per {font-size: 50%;}
.f_60per {font-size: 60%;}
.f_70per {font-size: 70%;}
.f_80per {font-size: 80%;}
.f_85per {font-size: 85%;}
.f_90per {font-size: 90%;}
.f_95per {font-size: 95%;}
.f_105per {font-size: 105%;}
.f_110per {font-size: 110%;}
.f_115per {font-size: 115%;}
.f_120per {font-size: 120%;}
.f_125per {font-size: 125%;}
.f_130per {font-size: 130%;}
.f_140per {font-size: 140%;}
.f_150per {font-size: 150%;}
.f_160per {font-size: 160%;}
.f_170per {font-size: 170%;}
.f_180per {font-size: 180%;}
.f_190per {font-size: 190%;}
.f_200per {font-size: 200%;}

/* フォントカラー ****************************/
.f_black {color: #000;}
.f_black_b {color: #000; font-weight: bold;}
.f_white {color: #fff;}
.f_white_b {color: #fff; font-weight: bold;}
.f_silver {color: #eee;}
.f_silver_b {color: #eee; font-weight: bold;}
.f_gray {color: #666;}
.f_gray_b {color: #666; font-weight: bold;}
.f_red {color: #ec1b23;}
.f_red_b {color: #ec1b23; font-weight: bold;}
.f_blue {color: #06f;}
.f_blue_b {color: #06f; font-weight: bold;}
.f_orange {color: #ff8c00;}
.f_orange_b {color: #ff8c00; font-weight: bold;}
.f_orange2 {color: #e87400;}
.f_orange2_b {color: #e87400; font-weight: bold;}
.f_green {color: #009900;}
.f_green_b {color: #009900; font-weight: bold;}
.f_brown {color: #a0321b;}
.f_brown_b {color: #a0321b; font-weight: bold;}
.f_purple {color: #b149f6;}
.f_purple_b {color: #b149f6; font-weight: bold;}
.f_gold {color: #808040;}
.f_gold_b {color: #808040; font-weight: bold;}

/* フォント（下線） ****************************/
.f_u_wavy {
	text-decoration: underline;	/*下線*/
	text-decoration-style: wavy;	/*波線*/
}

/* 行間 ****************************/
.h_16 {line-height: 16px;}
.h_17 {line-height: 17px;}
.h_18 {line-height: 18px;}
.h_19 {line-height: 19px;}
.h_20 {line-height: 20px;}
.h_21 {line-height: 21px;}
.h_22 {line-height: 22px;}
.h_23 {line-height: 23px;}
.h_24 {line-height: 24px;}
.h_25 {line-height: 25px;}
.h_26 {line-height: 26px;}
.h_27 {line-height: 27px;}
.h_28 {line-height: 28px;}
.h_29 {line-height: 29px;}
.h_30 {line-height: 30px;}
.h_32 {line-height: 32px;}
.h_34 {line-height: 34px;}
.h_36 {line-height: 36px;}
.h_38 {line-height: 38px;}
.h_40 {line-height: 40px;}
.h_42 {line-height: 42px;}

/* 余白(内側) ***********************/
.p_20 {
	padding: 20px 0;	/* 上下左右 */
}
.pad_left {
	padding-left: 20%;	/* 上下左右 */
}
.pad_left2 {
	padding-left: 23%;	/* 上下左右 */
}


/* liスタイル ****************************/
/***** pdf *****/
ul.list_pdf {
	list-style: none;
	margin-bottom: 30px;
	padding-left: 5px;
}
ul.list_pdf li {
	position: relative; /* 基準位置 */
	padding: 5px 5px 5px 100px;	/* 上右下左 */
	border-bottom: 1px dotted #aaa;
}
ul.list_pdf svg {
	position: absolute;
	color: red;
	width: 24px;
	height: 20px;
	top: 12px;
}

/***** ulスタイル *****/
ul.liststyle1 {
	list-style: none;
	margin-bottom: 30px;
	padding-left: 5px;
}
ul.liststyle1 li{
	list-style-type: none;
	position: relative; /* 基準位置 */
	padding: 5px 5px 5px 10px;	/* 上右下左 */
	border-bottom: 1px dotted #aaa;
}
ul.liststyle1 li:before{
	content: "\f152";
	font-family: "Font Awesome 7 Free";
	padding-right: 5px;
	font-size: 18px;
}

/*** ulスタイル1 ***/
ul.cp_list {
	padding: 0.5em 1em 0.5em 2.3em;		/* 上右下左 */
	list-style: none;
}
ul.cp_list li {
	position: relative;
	padding: 0.5em 1em 0.5em 2.3em;		/* 上右下左 */
	margin-bottom: 5px;
	border-bottom: 1px dashed rgba(0,97,193,0.5);
}
ul.cp_list li:after,
ul.cp_list li:before {
	content:'';
	position: absolute;
	transform: rotate(45deg);
}
ul.cp_list li:before {
	top: 0.7em;
	left: 0.2em;
	width: 12px;
	height: 12px;
	border:2px solid rgba(0,97,193,1);
}
ul.cp_list li:after {
	top: 0.9em;
	left: 0.7em;
	width: 14px;
	height: 14px;
	background: rgba(0,97,193,0.5);
	transform: rotate(60deg);
}
/*** ulスタイル1 ***/
ul.cp_list2 {
	padding: 0.5em 1em 0.5em 1.5em;		/* 上右下左 */
	list-style: none;
}
ul.cp_list2 li {
	position: relative;
	padding: 0.35em 0.5em 0.35em 2.1em;		/* 上右下左 */
	margin-bottom: 5px;
	border-bottom: 1px dashed rgba(0,97,193,0.5);
}
ul.cp_list2 li:after,
ul.cp_list2 li:before {
	content:'';
	position: absolute;
	transform: rotate(45deg);
}
ul.cp_list2 li:before {
	top: 0.7em;
	left: 0.2em;
	width: 12px;
	height: 12px;
	border:2px solid rgba(0,97,193,1);
}
ul.cp_list2 li:after {
	top: 0.9em;
	left: 0.7em;
	width: 14px;
	height: 14px;
	background: rgba(0,97,193,0.5);
	transform: rotate(60deg);
}


/* ボタン内PDFアイコン ****************************/
.button {
	display: flex;
	justify-content: flex-end;
}
.button a {
	font-size: 15px;
	padding-left: 14px;
}
.button svg {
	position: absolute;
	color: #fff;
	width: 24px;
	height: 22px;
	margin-left: -25px;
}

/* レイアウト *****************/
/* メインコンテンツ ***********/
.main_wrap {
	margin: 30px 15px 80px 15px;	/* 上右下左 */
	line-height: 32px;
}
/* イベント（レイアウト） *****/
.event_wrap {
	margin: 30px 15px 60px 15px;	/* 上右下左 */
	line-height: 32px;
}

/* 見出し（メイン） ****************************/
/***** h2 *****/
.title h2 {
	margin: 30px 0;		/* 上下左右 */
	position: relative;
	border-left: 6px solid #ccc;
	padding: 10px;
	color: #000;
}
.title h2::before {
	position: absolute;
	left: -6px;
	bottom: 0;
	content: '';
	width: 6px;
	height: 50%;
	background-color: #db7093;
}
.title h2::after {
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	width: 100%;
	height: 0;
	border-bottom: 1px solid #db7093;
}
/***** h3 *****/
.title h3 {
	position: relative;
	padding: 8px 5px 10px 35px;		/* 上右下左 */
	margin: 35px 0 10px 0;		/* 上右下左 */
	font-size: 20px;
	font-weight: bold;
	color: black;
	background-color: #efefef;
	background-image: repeating-linear-gradient(45deg, #b2d5de 0px 2px, transparent 2px, transparent 4px);
	background-repeat: no-repeat;
	background-size: 28px;
}

/***** h4 *****/
.title h4 {
	padding: 12px 10px 12px 13px;		/* 上右下左 */
	margin: 40px 0 10px 0;		/* 上右下左 */
	font-size: 20px;
	font-weight: bold;
	--stripe-color: #ddd; /*ストライプの色 */
	background: linear-gradient(135deg, transparent 25%, var(--stripe-color) 26%, var(--stripe-color) 50%, transparent 51%, transparent 75%, var(--stripe-color) 76%, var(--stripe-color));
   background-size: 4px 4px;
}

/***** h5 *****/
.title h5 {
	font-size: 18px;
	font-weight: bold;
	--baloon-color:#a5c9c1;
	position: relative;
	padding: 0.7rem 0.7rem;
	background: var(--baloon-color);
	color: #fff;
}

.title h5:after {
	position: absolute;
	content: '';
	width: 0;
	height: 0;
	bottom: -10px;
	left: 1.5em;
	border-width: 10px 10px 0 10px;
	border-style: solid;
	border-color: var(--baloon-color) transparent transparent transparent;
}


/* 見出し（本文中） ****************************/
/***** h1 *****/
.heading h1 {
	text-align: center;
	color: #fff;
	font-weight: bold;
	line-height: 70px;
	position: relative;
	padding: 25px;
	background: repeating-linear-gradient(-45deg, #0594E1, #2FA9EA 40px, #5FC1F6 5px, #9EDBFD 10px);
}

/* イベント（見出し） *****/
.event h1 {
	position: relative;
	font-size: 24px;
	padding: 10px 10px 10px 35px;		/* 上右下左 */
	margin: 0 0 20px 0;		/* 上右下左 */
	border: 1px solid #ccc;
	border-radius: 5px;
}
.event h1::after {
	position: absolute;
	top: 50%;
	left: 20px;
	transform:translateY(-50%);
	content: '';
	width: 5px;
	height: 25px;
	background-color: #446689;
}
/* イベント（hr） *****/
.event hr {
	height: 8px;
	background-image: repeating-linear-gradient(45deg, #ccc 0, #ccc 1px, transparent 0, transparent 25%);
	background-size: 8px 8px;
	margin: 7px 0 10px 0;		/* 上右下左 */
}
.event hr.black {
	border-top: 1px solid #000;
}

/* 関連団体・各種行事（見出し） *****/
.affiliated h1 {
	margin-bottom: 1rem;		/* 上右下左 */
	padding: 0.7rem;
	background-color: #d3deed;
	font-size: 1.2rem;
}
.affiliated h1::before {
	content: '';
	border-left: 2px dotted;
	margin-right: 0.4rem;
}

/* イメージ ****************************/
.imgbox_wrap {
	margin: 5px 5px 3px 25px;		/* 上右下左 */
	float: right;
}
.imgbox_wrap p {
	text-align: center;
	height: auto;
}
/*** 2 ***/
.imgbox_wrap2 {
	margin: 0 5px 3px 15px;		/* 上右下左 */
}
.imgbox_wrap2 p {
	text-align: center;
	height: auto;
}
@media only screen and (max-width: 767px) {
	.imgbox_wrap2 {
		position: relative;
		left: 50px;
		margin: 0 1px 3px -30px;		/* 上右下左 */
	}
	.imgbox_wrap2 img {
		width: 80%;
		margin: auto;
	}
	.imgbox_wrap2 p {
		width: 80%;
		text-align: center;
	}
}
/*** 3 ***/
.imgbox_wrap3 {
}
@media only screen and (max-width: 767px) {
	.imgbox_wrap3 {
		float: right;
		margin: 5px -20px 4px -75px;		/* 上右下左 */
	}
	.imgbox_wrap3 img {
		width: 65%;
		margin: auto;
	}
}


.main_img img {
	margin: 0 auto;
	width: 100%;
	margin-top: 10px;
}

p {
	margin: 0;
}

/* Youtube比率16:9 **********************/
.video-container {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9; /* 16:9 の比率 */
}
.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*** 定款 ***/
.teikan p {
	margin: 0;
}
.teikan p.ind-1 {
	padding-left: 3.15em;
	text-indent: -3.45em;
}
.teikan p.ind-1-1 {
	padding-left: 3.2em;
	text-indent: -1.5em;
}
.teikan p.ind-1-2 {
	padding-left: 3.35em;
	text-indent: -2.15em;
}
.teikan p.ind-2 {
	padding-left: 3.9em;
	text-indent: -4.2em;
}
.teikan p.ind-2-1 {
	padding-left: 3.9em;
	text-indent: -1.5em;
}
.teikan p.ind-2-2 {
	padding-left: 4.2em;
	text-indent: -2em;
}


/*** 著作権規則 ***/
.copyright p {
	margin: 0;
}
.copyright p.ind-1 {
	padding-left: 3.45em;
	text-indent: -3.75em;
}
.copyright p.ind-1-1 {
	padding-left: 3.2em;
	text-indent: -1.5em;
}
.copyright p.ind-1-2 {
	padding-left: 3.35em;
	text-indent: -2.15em;
}
.copyright p.ind-1-3 {
	padding-left: 10em;
	text-indent: -8.85em;
}


/* 配列 *****/
/*** 1 ***/
.array1 dl {
	margin: 3px 0 -3px 0;		/* 上右下左 */
}
.array1 dt {
	float: left;
	font-weight: normal;
}
.array1 dd {
	margin: 0 0 0.1em 1.6em;		/* 上右下左 */
	line-height: 24px;
}
/*** 2 ***/
.array2 dl {
	margin: 0;
}
.array2 dt {
	float: left;
	font-weight: normal;
	margin: 0 0 0 1.7em;		/* 上右下左 */
}
.array2 dd {
	margin: 0 0 0 3.7em;		/* 上右下左 */
}
/*** 3 ***/
.array3 dl {
	margin: 0;
}
.array3 dt {
	float: left;
	font-weight: bold;
	margin: 0 0 0 0;		/* 上右下左 */
}
.array3 dd {
	margin: 0 0 0 4.1em;		/* 上右下左 */
}
*** 4 ***/
.array4 dl {
	margin: 5px 0 -5px 0;		/* 上右下左 */
}
.array4 dt {
	float: left;
	font-weight: normal;
	line-height : 1.5;
}
.array4 dd {
	margin: 0 0 0 1.1em;		/* 上右下左 */
	line-height : 1.5;
}
/*** 5 ***/
.array5 dl {
	margin: 5px 0 -5px 0;		/* 上右下左 */
}
.array5 dt {
	float: left;
	font-weight: normal;
	margin: 0 0 0.2em 0.7em;		/* 上右下左 */
	line-height : 1.5;
}
.array5 dd {
	margin: 0 0 0.2em 2em;		/* 上右下左 */
	line-height : 1.5;
}
/*** 4 ***/
.array6 dl {
	margin: 5px 0 -5px 0;		/* 上右下左 */
}
.array6 dt {
	float: left;
	font-weight: normal;
	line-height : 1.5;
}
.array6 dd {
	margin: 0 0 0.8em 3em;		/* 上右下左 */
	line-height : 1.5;
}
*** 7 ***/
.array7 dl {
	margin: 5px 0 -5px 0;		/* 上右下左 */
}
.array7 dt {
	float: left;
	font-weight: normal;
	line-height : 1.6;
}
.array7 dd {
	margin: 0 0 0.2em 0.7em;		/* 上右下左 */
	line-height : 1.6;
}
*** 8 ***/
.array8 dl {
	margin: 5px 0 -5px 0;		/* 上右下左 */
}
.array8 dt {
	float: left;
	font-weight: normal;
	line-height : 1.5;
}
.array8 dd {
	margin: 0 0 0.1em 4.8em;		/* 上右下左 */
	line-height : 1.5;
}
*** 9 ***/
.array9 dl {
	margin: 5px 0 -5px 0;		/* 上右下左 */
}
.array9 dt {
	float: left;
	font-weight: normal;
	line-height : 1.2;
	display: flex;
	align-items: center;
}
.array9 dd {
	margin-left: 2.4em;
	line-height : 1.2;
	display: flex;
	align-items: center;
}
/*** 10 ***/
.array10 dl {
	margin: 5px 0 -5px 0;		/* 上右下左 */
}
.array10 dt {
	float: left;
	font-weight: normal;
	line-height : 1.7;
}
.array10 dd {
	margin: 0 0 0 1.4em;		/* 上右下左 */
	line-height : 1.7;
}
/*** 11 ***/
.array11 dl {
	margin: 5px 0 -5px 0;		/* 上右下左 */
}
.array11 dt {
	float: left;
	font-weight: normal;
	line-height : 1.5;
}
.array11 dd {
	margin: 0 0 0 1.8em;		/* 上右下左 */
	line-height : 1.5;
}
/*** 12 ***/
.array12 dl {
	margin: 2px 0 3px 0;		/* 上右下左 */
}
.array12 dt {
	float: left;
	color: #ec1b23;
	font-weight: bold;
	line-height : 1.5;
}
.array12 dd {
	margin: 0 0 0 1.1em;		/* 上右下左 */
	line-height : 1.5;
}


/*** indentスタイル ***/
.indent1 {
	padding-left: 1.1em;
}


/*** イベントプログラム用レイアウト ***/
/*** 1 ***/
.pro1 dl {
	margin: 5px 0 -5px 0;		/* 上右下左 */
}
.pro1 dt {
	float: left;
	font-weight: normal;
	line-height : 1.6em;
}
.pro1 dd {
	margin: 0 0 0.5em 9em;		/* 上右下左 */
	font-weight: bold;
	color: #e87400;
	line-height : 1.6em;
	padding-left: 0.5em;
	text-indent: -0.5em;
}
/*** スマホ対応 ***/
@media only screen and (max-width: 640px){
	.pro1 dt{ 
		width: 100%;
	}
	.pro1 dd{
		margin: 0 0 0.5em 1em;		/* 上右下左 */
	}
}

/*** 2 ***/
.pro2 dl {
	margin: 5px 0 -5px 0;		/* 上右下左 */
}
.pro2 dt {
	float: left;
	font-weight: normal;
	line-height : 1.6em;
}
.pro2 dd {
	margin: 0 0 0.1em 10.5em;		/* 上右下左 */
	line-height : 1.6em;
}
.pro2 .name {
	display: block;
	font-weight: bold;
	text-align: right;
	margin: 0 4px 5px 0;		/* 上右下左 */
	font-size: 95%;
}
/*** スマホ対応 ***/
@media only screen and (max-width: 640px){
	.pro2 dt{ 
		width: 100%;
	}
	.pro2 dd{
		margin: 0 0.5em 0.5em 0.5em;		/* 上右下左 */
	}
	.pro2 .name{
	text-align: left;
	line-height : 1.6em;
	margin: 0 0 0 1em;		/* 上右下左 */
	}
}

/*** 3 ***/
.pro3 {
	position: relative;
	background-color: #ddd;
	margin: 15px;
	padding: 3px;
}
.pro3 dl {
	font-size: 85%;
	margin: 5px 0 -5px 0;		/* 上右下左 */
}
.pro3 dt {
	float: left;
	font-weight: normal;
	margin: 0 0 0.5em 2em;		/* 上右下左 */
	line-height : 1.6em;
}
.pro3 dd {
	margin: 0 2em 0.5em 5em;		/* 上右下左 */
	line-height : 1.6em;
}
/*** スマホ対応 ***/
@media only screen and (max-width: 640px){
	.pro3 dt{ 
		width: 100%;
		margin: 0 0 0 0.5em;		/* 上右下左 */
	}
	.pro3 dd{
		margin: 0 0.5em 0.5em 0.5em;		/* 上右下左 */
	}
}

/*** 4 ***/
.pro4 dl {
	margin: 5px 0 5px 0;		/* 上右下左 */
}
.pro4 dt {
	float: left;
	font-weight: normal;
	line-height : 1.6em;
}
.pro4 dd {
	margin: 0 0 0.1em 8em;		/* 上右下左 */
	line-height : 1.6em;
}
.pro4 .name {
	display: block;
	font-weight: bold;
	text-align: right;
	margin: 0 4px 5px 0;		/* 上右下左 */
	font-size: 95%;
}
/*** スマホ対応 ***/
@media only screen and (max-width: 640px){
	.pro4 dt{ 
		width: 100%;
	}
	.pro4 dd{
		margin: 0 0.5em 0.3em 0.5em;		/* 上右下左 */
	}
	.pro4 .name{
		text-align: left;
		line-height : 1.6em;
		margin: 0 0 0 0.7em;		/* 上右下左 */
		font-size: 85%;
	}
}

/*** 5 ***/
.pro5 dl {
	margin: 5px 0 5px 0;		/* 上右下左 */
}
.pro5 dt {
	float: left;
	font-weight: normal;
	line-height : 1.6em;
}
.pro5 dd {
	margin: 0 0 0.1em 8em;		/* 上右下左 */
	font-weight: bold;
	color: #e87400;
	line-height : 1.6em;
}
/*** スマホ対応 ***/
@media only screen and (max-width: 640px){
	.pro5 dt{ 
		width: 100%;
	}
	.pro5 dd{
		margin: 0 0.5em 0.3em 0.5em;		/* 上右下左 */
	}
	.pro5 .name{
		text-align: left;
		line-height : 1.6em;
		margin: 0 0 0 0.7em;		/* 上右下左 */
		font-size: 85%;
	}
}

/*** 6 ***/
.pro6 {
	position: relative;
	background-color: #ddd;
	margin: 15px;
	padding: 5px;
}
.pro6 dl {
	font-size: 90%;
	margin: 5px 0 -5px 0;		/* 上右下左 */
}
.pro6 dt {
	width: 100%;
	float: left;
	font-weight: bold;
	margin: 0 0 0.3em 1em;		/* 上右下左 */
	line-height : 1.5em;
}
.pro6 dd {
	margin: 0 2em 0.6em 2em;		/* 上右下左 */
	line-height : 1.5em;
}
/*** スマホ対応 ***/
@media only screen and (max-width: 640px){
	.pro6 dt{ 
		width: 100%;
		margin: 0 0 0.3em 0.5em;		/* 上右下左 */
	}
	.pro6 dd{
		margin: 0 0.5em 0.5em 0.5em;		/* 上右下左 */
	}
}

/*** 7 ***/
.pro7 {
	position: relative;
	margin: 10px;
	padding: 5px;
}
.pro7 dl {
	font-size: 95%;
	margin: 5px 0 -5px 0;		/* 上右下左 */
	font-weight: bold;
	color: #06f;
}
.pro7 dt {
	width: 100%;
	float: left;
	margin: 0 0 0.3em 1em;		/* 上右下左 */
	line-height : 1.5em;
}
.pro7 dd {
	margin: 0 2em 0.6em 2em;		/* 上右下左 */
	line-height : 1.5em;
}
/*** スマホ対応 ***/
@media only screen and (max-width: 640px){
	.pro7 dt{ 
		width: 100%;
		margin: 0 0 0.2em 0;		/* 上右下左 */
	}
	.pro7 dd{
		margin: 0 0.5em 0.5em 0.5em;		/* 上右下左 */
	}
}

/*** 8 ***/
.pro8 {
	display: flex;
	align-items: center;
	justify-content: center;
}
.pro8 dl {
	margin: 5px 0 -5px 0;		/* 上右下左 */
}
.pro8 dt {
	font-weight: bold;
	font-size: 1.25rem;
	width: 100%;
	float: left;
	margin: 0 0.5em 0.3em 1em;		/* 上右下左 */
	line-height : 1.7em;
}
.pro8 dd {
	font-size: 0.9rem;
	margin: 0 0.5em 0 6.2em;		/* 上右下左 */
	line-height : 1.6em;
}
/*** スマホ対応 ***/
@media only screen and (max-width: 640px){
	.pro8 dt{ 
		width: 100%;
		margin: 0 0 0.2em 0;		/* 上右下左 */
	}
	.pro8 dd{
		margin: 0 0.5em 0.5em 0.5em;		/* 上右下左 */
	}
}


/* tableスタイル *****/
/* table 型技術セミナー *****/
.table_seminar {
	width: 100%;
	border-collapse: collapse;
}
.table_seminar tr {
	border-bottom: solid 2px #fff;
}
.table1 tr:last-child{
	border-bottom: none;
}
.table_seminar th {
	position: relative;
	text-align: left;
	width: 25%;
	background-color: #52c2d0;
	color: #fff;
	text-align: center;
	padding: 15px 5px 15px 5px;		/* 上右下左 */
}
.table_seminar th:after{
	display: block;
	content: "";
	width: 0px;
	height: 0px;
	position: absolute;
	top:calc(50% - 10px);
	right:-10px;
	border-left: 10px solid #52c2d0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
}
.table_seminar td{
	text-align: left;
	background-color: #f1f1f1;
	padding: 15px 10px 15px 20px;		/* 上右下左 */
}
/* table 基礎講習会 *****/
.table_kiso {
	width: 100%;
	border-collapse: collapse;
}
.table_kiso tr {
	border-bottom: solid 2px #fff;
}
.table_kiso tr:last-child{
	border-bottom: none;
}
.table_kiso th {
	position: relative;
	text-align: left;
	width: 25%;
	background-color: #52c2d0;
	color: #fff;
	text-align: center;
	padding: 15px 5px 15px 5px;		/* 上右下左 */
}
.table_kiso th:after{
	display: block;
	content: "";
	width: 0px;
	height: 0px;
	position: absolute;
	top:calc(50% - 10px);
	right:-10px;
	border-left: 10px solid #52c2d0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
}
.table_kiso td{
	text-align: left;
	background-color: #f1f1f1;
	padding: 15px 10px 15px 20px;		/* 上右下左 */
}
/* table 研究委員会 *****/
.table_committee {
	width: 100%;
	border-collapse: collapse;
}
.table_committee tr {
	border-bottom: solid 2px #fff;
}
.table_committee tr:last-child{
	border-bottom: none;
}
.table_committee th {
	position: relative;
	text-align: left;
	width: 20%;
	background-color: #52c2d0;
	color: #fff;
	text-align: center;
	padding: 15px 5px 15px 5px;		/* 上右下左 */
}
.table_committee th:after{
	display: block;
	content: "";
	width: 0px;
	height: 0px;
	position: absolute;
	top:calc(50% - 10px);
	right:-10px;
	border-left: 10px solid #52c2d0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
}
.table_committee td{
	text-align: left;
	background-color: #f1f1f1;
	padding: 15px 10px 15px 20px;		/* 上右下左 */
}


/* pdfリンク時アイコン表示 *****/
a[href$=".pdf"]::after {
	color: #E04545;
	content: "\f1c1";  
	font-family: "Font Awesome 7 Free";
	font-weight: 900;
	margin-left: 2px;
}
/* リンク下線なし *****/
.no_underline {
	text-decoration: none;
}




/* 一旦 *****/
.table1 {
	width: 100%;
	border: 1px #ccc solid;
	border-collapse: collapse;
}
.table1 th {
	color: #fff;
	text-align: center;
	background: #52c2d0;
	padding: 8px;		/* 上右下左 */
	border: 1px #ccc solid;
	border-width: 0 0 1px 1px;
}
.table1 td {
	padding: 8px;		/* 上右下左 */
	border: 1px #ccc solid;
	border-width: 0 0 1px 1px;
}
/* 文字スタイル *****/
#c {text-align: center;}
.text-center {text-align: center;}
#l {text-align: left;}
.text-left {text-align: left;}
#r {text-align: right;}
.text-right {text-align: right;}

