@charset "utf-8";



/*リセットCSS（sanitize.css）の読み込み
---------------------------------------------------------------------------*/
@import url("https://unpkg.com/sanitize.css");


/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");


/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("animation.css");

/*フォントファイルの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');


/*================================================
 *  CSS reset
 ================================================*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;font-weight:normal;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}


/*全体の設定
---------------------------------------------------------------------------*/
html,body {
	font-size: 13px;	/*基準となるフォントサイズ。*/
	height: 100%;
	scroll-behavior: smooth;
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

		html, body {
			font-size: 16px;	/*基準となるフォントサイズ。*/
		}

	}/*画面幅900px以上の追加指定ここまで*/


body {
	font-family: "Helvetica Neue,Helvetica,Arial,sans-serif";	/*フォント種類（ゴシック）*/
	-webkit-text-size-adjust: none;
/*	background: url( "../images/bg.png" ) top right / 30px 30px repeat #e4f8fb ;*/
	background: url( "../images/bg5.png" ) top right / 72px 450px repeat #e4f8fb ;
	color: #333;
	line-height: 1.5;
}



/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*他*/
input {font-size: 1rem;}
section + section {
	margin-top: 6rem;
}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #1e5f82;
	text-decoration: none;
	transition: 0.3s;
}

a:hover {
	opacity: 0.5;
}
/* ページ内リンク調整 */
a.anchor{
	display: inline-block;
	padding-top: 150px;
	margin-top: -150px;
}

/*container
---------------------------------------------------------------------------*/
#container {
	max-width: 1370px;	/*サイトの最大幅。これ以上広がらない。*/
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
/*	height: 100%;*/
}
.container_box {
	max-width: 1370px;
	margin: 0 auto;
}

/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	padding: 5px 3%;
	background: #fff;
	color: #333;
	background: url( "../images/paper_grey.jpg" ) top right / 300px 300px repeat #fff ;
}
header a {color: inherit;}
header .maxwidth_box {
	max-width: 1370px;
	display: flex;	
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
}

/*ロゴ*/
#logo img {display: block;}
#logo {
	max-width: 340px;
	font-size: 2em;
	margin: .5em 0;
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
	#logo {
		margin: .5em;
	}
	}/*画面幅900px以上の追加指定ここまで*/



/*トップページのスライドショー（vegasを使用）
背景画像をレスポンシブにする為の設定ですが、画像比率を変更したい場合はテンプレート内マニュアルをご覧下さい。
---------------------------------------------------------------------------*/
#mainimg-box {
	width: 100%;
	height: 0;
	padding-top: 32.8%;	/*背景画像の縦横比よって変更*/
	position: relative;
	z-index: -1;
	margin-bottom: 1rem;
	background: #fff;
}
#mainimg_t {
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 100;
	width: 50%;
}
#mainimg_b {
	position: absolute;
	right: 0px;
	bottom: 0px;
	z-index: 100;
	width: 50%;
}
#mainimg_r {
	position: absolute;
	right: 0px;
	top: 0px;
	z-index: 100;
	width: 65%;
}
#mainimg {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}
#mainimg-box {
	width: 100%;
	height: 0;
	padding-top: 32.8%;	/*背景画像の縦横比よって変更*/
	position: relative;
	z-index: -1;
	max-width: 1350px;
	margin: 0 auto;
}
#mainimg-ttl {
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 100;
}
#mainimg-ttl p {
	display: block;
	color: #fff;
	font-size: 6vw;
	line-height: 1em;
	margin: 0;
	text-shadow: 1px 2px 8px rgb(0 0 0 / 50%);
	font-family: "Segoe UI", "Noto Sans JP", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
#mainimg-ttl p.mvttl01 {
	padding: 0.25em 0;
	font-weight: 500;
}
#mainimg-ttl p.mvttl01:after {
	content: "";
	display: block;
	height: 4px;
	background: -webkit-linear-gradient(to right, rgb(237, 208, 128), transparent);
	background: linear-gradient(to right, rgb(237, 208, 128), transparent);
}
#mainimg-ttl p.mvttl02 {
	font-weight: 300;
	font-size: 3vw;
	line-height: 1.2em;
}


/*ページタイトル（MV）設定
---------------------------------------------------------------------------*/
#ttlimg-box {
	width: 100%;
	max-width: 1350px;
	height: auto;
	margin: 0 auto;
	padding-top: 180px;
	position: relative;
	z-index: -1;
	background: url(../images/ttlimg3.jpg) no-repeat center top;
	background-size:cover;
}
#ttlimgimg {
	position: absolute;
	left: 0;
	padding: 20px 0 0 40px;
	bottom: 30%;
	background: url(../images/ttl01.png) no-repeat left top;
	
}
#ttlimgimg span, h1#ttlimgimg span {
	display: block;
	color: #fff;
	font-size: 4rem;
	line-height: 1em;
	margin: 0;
	text-shadow: 1px 2px 8px rgb(0 0 0 / 50%);
	font-family: "Segoe UI", "Noto Sans JP", "Helvetica Neue", Helvetica, Arial, sans-serif;
}


/*メニューブロック設定
---------------------------------------------------------------------------*/
#menubar a {display: block;text-decoration: none;}
#menubar ul {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	font-family: "Font Awesome 5 Free";
	max-width: 1400px;
}
#menubar nav {
	text-align:center;
	background: #1e5f82;
/*	background: #008dda;
	border-top: 3px solid #ffeb00;*/
}
#menubar:after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	content: '';
	background-image: linear-gradient(90deg, #c0a353 0%, #edd080 50%, #c0a353 100%);

}
#menubar.d-n, #menubar_hdr.d-n, #menubar .ddmenu_parent ul {display: none;}
#menubar.d-b {display: block;}
#menubar_hdr.d-b {display: flex;}
#menubar {
	animation: opa1 0.3s 0.2s both;	/*0.2秒の間だけ非表示にし、その後0.3秒かけてフェードイン表示*/
	position: relative;z-index: 1;	/*スライドショーがある場合にドロップダウンが下に隠れないようにするため*/
	font-size: 16px;	/*文字サイズ。端末サイズで文字サイズが変わると不具合が出る場合があるので、ここで統一しています。*/
	font-weight: bold;
	margin-bottom: 1rem;
}


/*ドロップダウンブロック設定
---------------------------------------------------------------------------*/
/*ドロップダウンメニューのリンクタグ*/
#menubar .ddmenu {
	cursor: default;	/*リンク要素のカーソルを矢印に変更しておく*/
}

/*ddmenuを指定しているメニューに矢印アイコンをつける設定*/
a.ddmenu::before {
	content: "\f078";	/*使いたいアイコン名をここで指定。Font Awesomeに記載されています。詳しくは当テンプレートのマニュアルを読んで下さい。*/
	font-weight: bold;	/*この手の設定がないとアイコンが出ない場合があります*/
	margin-right: .5em;
}


/*大きな端末用のメニューブロック設定
---------------------------------------------------------------------------*/
.p #menubar > nav > ul {
/*	display: flex;	
	justify-content: space-between;*/
	background: #1e5f82;
font-family: "Lora", serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
}

/*メニュー１個あたりの設定*/
.p #menubar li {
	text-align: center;
	/*flex: 1;			個々のメニューを均等にし、幅いっぱいまで使う設定*/
	position: relative;	/*ドロップダウンの幅となる基準を作っておく*/
	line-height: 1.4em;
	display: inline-block;
}

.p #menubar a {
	padding: 15px 1.2em;
	background: #1e5f82;
	color: #fff;
}
.p #menubar span.inactive {
	padding: 15px 2em;
	background: #1e5f82;
	color: #67a8cb;
	display: block;
}
/*現在表示中メニュー（current）*/
#p_welcome #menubar li.n_welcome > a,
#p_message #menubar li.n_message > a,
#p_message #menubar li.n_message  > span.active,
#p_cfp #menubar li.n_cfp > a,
#p_program #menubar li.n_program > a,
#p_program #menubar li.n_program  > span.active,
#p_sponsors #menubar li.n_sponsors > a,
#p_authors #menubar li.n_authors > a,
#p_registration #menubar li.n_registration > a,
#p_venue #menubar li.n_venue > a,
#p_venue #menubar li.n_venue > span.active,
#p_contact #menubar li.n_contact > a {
	background: #133c52;
}
#menubar span.active {
	padding: 10px 2em;
	background: #1e5f82;
	color: #fff;
	display: block;
}

/*現在表示中メニューの下部にある「▼」*/
#p_welcome #menubar li.n_welcome::before,
#p_message #menubar li.n_message::before,
#p_cfp #menubar li.n_cfp::before,
#p_program #menubar li.n_program::before,
#p_sponsors #menubar li.n_sponsors::before,
#p_authors #menubar li.n_authors::before,
#p_registration #menubar li.n_registration::before,
#p_venue #menubar li.n_venue::before,
#p_contact #menubar li.n_contact::before {
/*	content: "▼";この文字（▼マーク）を出力します*/
	font-size: 26px;
	color: #333;
	position: absolute;
	bottom: -.5em;
	left: calc(50% - 0.5em);	/*左からの配置場所の指定*/
	transform: scale(1.5, 0.8);	/*大きさを少し横長にする。横に1.5倍、縦に0.8倍です。*/
}


/*大きな端末用のドロップダウンメニュー
---------------------------------------------------------------------------*/
/*ドロップダウンメニューブロック全体*/
.p #menubar ul ul {
	position: absolute;
	z-index: 100;
	width: auto;
	border: 1px solid #1e5f82;
	background: #1e5f82;
	line-height: 2em;
	padding-top: .5em;
	text-align: left;
}
.p #menubar ul ul li a, .p #menubar ul ul li span {
	font-size: 90%;
	white-space: nowrap;
	padding: 1em 2em;
}

/*小さな端末用のドロップダウンメニュー
---------------------------------------------------------------------------*/
	/*画面幅900px未満の追加指定*/
	@media screen and (max-width:899px) {

	span.pull_d::before {
	font-family: "Font Awesome 5 Free";
	content: "\f0d7";
	font-weight: bold;
	margin-right: .5em;
	}

	}/*画面幅900px未満の追加指定ここまで*/


/*小さな端末用の開閉ブロック
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
.s #menubar.d-b {
	position: fixed;
	overflow: auto;
	z-index: 100;
	left: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 100px 20px 20px;
	background: rgba(255,255,255,0.9);		/*背景色。0,0,0は黒の事で0.9は色が90%出た状態。*/
	text-align: center;
	animation: animation1 0.2s both;	/*animation.cssのanimation1を実行する。0.2sは0.2秒の事。*/
}

/*メニュー１個あたりの設定*/
.s #menubar a {
	padding: 10px 5px;
	color: #fff;
}
.s #menubar span.inactive {
	color: #67a8cb;
	padding: 10px 5px;
	display: inline-block;
}


/* ▼▼ 追加 ▼▼ */
/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*上部固定メニュー用fixmenu設定*/
body.is-fixed-menu #menubar.nav-fix-pos {
	position: fixed;width: 100%;top: 0px;left: 0px;
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.9);	/*背景色。255,255,255は白の事で0.95は透明度。*/
}
body.is-fixed-menu #contents {
	margin-top: 80px;	/*※上の「#menubar ul li a」の注意書きにある数字を指定します。*/
}
/*※以下の２ブロックのスタイルの「中身」は、上の２ブロックのスタイルと単純に合わせておいて下さい。fixmenuスクリプトを２つ使う為に必要な設定になります。*/
body.is-fixed #menubar.nav-fix-pos {
	position: fixed;width: 100%;top: 0px;
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.95);	/*背景色。255,255,255は白の事で0.95は透明度。*/
}
body.is-fixed #contents {
	margin-top: 80px;	/*※上の「#menubar ul li a」の注意書きにある数字を指定します。*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*大きな端末では非表示にしておく*/
.p #menubar_hdr {display: none;}

/*３本バーを囲むブロック*/
.s #menubar_hdr {
	position: fixed;
	z-index: 101;
	cursor: pointer;
	right: 20px;		/*右からの配置場所指定*/
	top: 20px;			/*上からの配置場所指定*/
	padding: 20px 5px;	/*上下、左右への余白*/
	width: 60px;		/*幅（３本バーが出ている場合の幅になります）*/
	height: 60px;		/*高さ*/
	/*display: flex;					flexボックスを使う指定*/
	/*flex-direction: column;			子要素（３本バー）を縦並びにする*/
	/*justify-content: space-between;	並びかたの種類の指定*/
	background: rgba(30,95,135,1.0);
	border-radius: 50%;				/*円形にする*/
}

	/*画面幅400px以下の追加指定*/
	@media screen and (max-width:400px) {
	
	/*３本バーを囲むブロック*/
	.s #menubar_hdr {
		right: 10px;	/*右からの配置場所指定*/
		top: 10px;		/*上からの配置場所指定*/
	}
	}/*画面幅400px以下の追加指定ここまで*/


/*バー１本あたりの設定*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;
	width: 100%;
	/*	border-top: 2px solid #fff;線の幅、線種、色*/
}
#menubar_hdr span#hdr_menu, #menubar_hdr span#hdr_close {
		color: #fff;
		font-weight: bold;
		text-align: center;
}
#menubar_hdr span#hdr_close {display: none;}

/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/

#menubar_hdr.ham span#hdr_menu {
	display: none;
}
#menubar_hdr.ham span#hdr_close {
	display: block;
}

#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
/*	transform-origin: center center;	変形の起点。センターに。*/
/*	width: 20px;						バーの幅*/
}

/*×印が出ている状態の設定。※１本目のバー。*/
#menubar_hdr.ham span:nth-of-type(1){
/*	transform: rotate(45deg) translate(3.8px, 5px);	回転45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※３本目のバー。*/
#menubar_hdr.ham span:nth-of-type(3){
/*	transform: rotate(-45deg) translate(3.8px, -5px);	回転-45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※２本目のバー。*/
#menubar_hdr.ham span:nth-of-type(2){
/*	display: none;	２本目は使わないので非表示にする*/
}


/*mainブロック設定
---------------------------------------------------------------------------*/
.main_box, .main_box2 {
	background: #fff;
/*	box-shadow: 0 10px 6px -6px #777;*/
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
	margin-bottom: 2rem;
	padding: 2rem;
}
.main_box2 {
	background: #f5f5f5;
}
/*mainブロックの設定*/
main {
	margin: 10px;
}
main.c2 .sub {
	padding-top: 6rem;
}
	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	.main_box, .main_box2 {
		padding: 50px;
		flex: 1;
	}
	
	/*2カラムで使う為の指定
	main.c2 {
		display: flex;
		justify-content: space-between;
		justify-content: center;
	}*/
	
	/*2カラムの中にある.main要素（頭にドットがない「main」とは異なるので注意して下さい）
	main.c2 .main {
		width: calc(100% - 280px);	幅。ここの280pxの数字は下の.subの幅(230px)と、左右ブロックの間の余白(50px)を追加したものです。
		order: 1;
		max-width: 800px;
	}*/
	
	/*2カラムの中にある.sub要素
	main.c2 .sub {
		width: 230px;
		padding-top: 0;
		margin-right: 50px;
	}*/

	}/*画面幅900px以上の追加指定ここまで*/


/*mainブロック内のタイトルタグ*/
.ttl01 {
	font-size: 2rem;
	color: #1e5f82;
	line-height: 1.25em;
	margin: -2rem 0 0 -2rem;
	background: url(../images/ttl01.png) no-repeat left top;
	padding: 2rem 0 1.2rem 2rem;
font-family: "Lora", serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
}
.ttl01 span.sub {
	font-size: 60%;
	color: #5ea7d2;
	line-height: 1.2em;
}
.ttl02 {
	position: relative;
	padding: .5rem .2rem;
	font-size: 2rem;
	margin: 0 0 1rem;
	letter-spacing: 0.1rem;
	line-height: 1.2em;
font-family: "Lora", serif;
font-optical-sizing: auto;
font-weight: 200;
font-style: normal;
}
.ttl02:after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	content: '';
	background-image: -webkit-gradient(linear, left top, right top, from(#edd080), to(#f7eedd));
	background-image: -webkit-linear-gradient(left, #edd080 0%, #f7eedd 100%);
	background-image: linear-gradient(to right, #edd080 0%, #f7eedd 100%);
}


.ttl03 {
	font-weight: bold;
	font-size: 1.17rem;
	margin: 0 1rem 0.5rem 0;
}

.ttl04 {
}
.ttl05 {
	padding: .2rem 1em;
	background: #efefef;
}


/*pタグ*/
main p {
	margin: 0 0 2rem;
}

/*微調整*/
main p + p {
	margin-top: -1rem;	/*段落が続いた場合に、少し上に詰める。*/
}

/*preタグ対応*/
.prebox {
	margin: 0 1rem 2rem;
}
.prebox pre {
	font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;	/*フォント種類（ゴシック）*/
	-webkit-text-size-adjust: none;
	background: #fff;
	color: #555;	
	line-height: 1.8;
	margin: 0;
	word-wrap: normal;
	white-space: pre-wrap !important;
	overflow: auto;
}


/* スポンサー枠 */
.SP_box {
	text-align: center;
}
.ttlSP {
	position: relative;
	padding: .5rem 1rem;
	font-size: 1.5rem;
	margin: 0 0 1rem;
	letter-spacing: 0.1rem;
	line-height: 1.4em;
	background: rgba(0, 0, 0, 0.05);
	border-radius: 5px;
	color: #1e5f82;
font-family: "Lora", serif;
font-optical-sizing: auto;
font-weight: 200;
font-style: normal;
}
.ttlSP_g, .ttlSP_s {
	display: inline-block;
	position: relative;
	font-size: 1.4rem;
	text-align: center;
	margin-bottom: 1rem;
}
.ttlSP_g:before, .ttlSP_s:before {
	content: '';
	display: inline-block;
	position: absolute;
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 8px;
	background-color: #d09a00;
}
.ttlSP_s:before {
	background-color: #bbc2ca;
}

/*パンくず*/
.nowpage {
	line-height: 20px;
	font-size: 16px;
	padding: 0 0 40px 15px;
}
.nowpage img {
	margin-bottom: 3px;
}
.nowpage span {
	font-size:14px;
}
.nowpage a:hover {
	opacity: 0.5;
}

/*リスト*/
ul.listbox {
	padding: 0 1em 1em .2em;
	list-style-type: disc;
	margin-left: 20px;
	line-height: 1.4em;
	word-break: keep-all;
}
ul.listbox li {
	padding-bottom: .5em;
}
ul.listbox li > ul.listbox {
	padding: 0;
	color: #85abbf;
}
ul.listbox li > ul.listbox li span {
	color: #333;
}
ul.topics {
	padding: 0 0 20px 0;
	list-style-type: nome;
	margin: 0 20px 0 20px;
}
ul.topics li {
	display: inline-block;
	border: 1px solid #ececec;
	border-radius: 5px;
	margin-bottom: .5em;
	font-size: 90%;
	padding: 0 .5em;
}


/* ページリンクのリスト */
ul.pagelink {
	list-style: none;
	border: 1px solid #ececec;
	padding: 0;
	margin: 0 1rem 2rem;
}
ul.pagelink li {
	border-bottom: 1px solid #ececec;
	transition: 0.3s;
	font-weight: bold;
	line-height: 1.4em;
}
ul.pagelink li:last-child {
	border-bottom: none;
}
ul.pagelink li:hover {
	background-color: #ececec;
}
ul.pagelink li a {
	padding: calc(18em / 18);
	display:flex;
}
ul.pagelink li span:first-child {
	color: #5ea7d2;
	width: 1.5em;
}
ul.pagelink li span:last-child {
	padding-left: .8em;
	flex: 1;
}

ul.pagelink2 {
	list-style: none;
	padding: 0;
	margin: 0 1rem 2rem;
}
ul.pagelink2 li {
	transition: 0.3s;
	line-height: 1.4em;
}
ul.pagelink2 li a {
	padding: calc(18em / 18);
	padding-left: 0;
	padding-right: 0;
	display:flex;
}
ul.pagelink2 li span:first-child {
	background-color: #ececec;
	font-weight: bold;
	color: #5ea7d2;
	font-size: 90%;
	padding: 0 .5em;
	width: 3em;
	height: 100%;
	text-align: center;
}
ul.pagelink2 li span:last-child {
	padding-left: .8em;
	flex: 1;
}

/*subブロック設定
---------------------------------------------------------------------------*/
.sublist_box {
	border-left: solid 3px #eee;
}

.subttl01 {
	position: relative;
	margin: 0;
	font-weight: normal;
	padding: 0.2em 0.5em;
	font-weight: bold;
}

.sublist_box .subttl01:after {
	content: " ";
	display: block;
	position: absolute;
	top: 0;
	left: -3px;
	height: 100%;
	border-left: solid 3px #0039bb;
}
/*.sub h3 a {color: inherit;}*/


/*サブメニュー設定
---------------------------------------------------------------------------*/
/*サブメニューブロック全体*/
.submenu {
	padding: 0;
	margin: 0 0 1rem;
}

/*メニュー１個あたり*/
.submenu li {
	/*border-bottom: 1px solid rgba(0,0,0,0.1);	下線の幅、線種、色。0,0,0は黒の事で0.1は色が10%出た状態。*/
}
.submenu a, .submenu span.inactive {
	display: block;
	text-decoration: none;
	background: #fff;
	padding: 0.5rem;
	font-weight: bold;
}
.submenu span.inactive {
	color: #bbbbbb;
}

/*Programページ用　サイドメニュー設定*/
.p_nav {
	font-size: 90%;
}

/*アイコン（Font Awesome）*/
.submenu a::before, .submenu span.inactive::before {
	transition: 0.3s;
	font-family: "Font Awesome 5 Free";	/*Font Awesomeを使う指定*/
	content: "\f0da";		/*使いたいアイコン名をここで指定。Font Awesomeに記載されています。詳しくは当テンプレートのマニュアルを読んで下さい。*/
	color: #ABABAB;			/*アイコンの色*/
	padding-right: 0.8em;	/*アイコンとテキストの間の余白*/
	font-weight: bold;		/*この設定がないとアイコンが出ない場合があります*/
}
.submenu span.inactive::before {
	color: #d7d7d7;			/*アイコンの色*/
}

/*マウスオン時のアイコン設定*/
.submenu a:hover::before {
	color: #71e3dd;			/*アイコンの色*/
}








/*box1設定（このテンプレートでは、2カラム時のsubブロックでのみ使用しています）
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
.box1 {
	background: rgba(0,0,0,0.05);
	padding: 10px;
	border-radius: 5px;
	margin-bottom: 1rem;
}

/*box1内で使った場合、下のマージンをなくす*/
.sub .box1 .submenu {
	margin-bottom: 0;
}

.box2 {
	background: rgb(231 246 253);
	padding: 10px;
	border-radius: 5px;
	margin-bottom: 1rem;
}
.boxmap {
	padding: 0;
}


/*フッターメニュー設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#footermenu {
/*	background: #ace2e1;*/
	background: #e5eef5;
	font-size: 0.8rem;
}
#footermenu .container_box {
	padding: 20px 20px;
	display: flex;	
	justify-content: space-between;
	align-items: flex-start;
}
	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
	
	#footermenu .container_box {
		padding: 20px 50px;
	}
	
	}/*画面幅900px以上の追加指定ここまで*/
	

/*ボックス内のリンクテキスト設定*/
#footermenu a {
	text-decoration: none;
	color: #333;
}
#footermenu span.inactive {
	color: #8c9094;
}

/*リンクテキストのマウスオン時*/
#footermenu a:hover {
	color: #999;
}

/*ulタグ（メニューの列単位）*/
#footermenu ul {
	margin: 0;
	padding: 0 2px;
	flex: 1;
	list-style: none;
}

/*title*/
#footermenu .title, #footermenu .title2 {
	font-size: 150%;
	color: #1e5f82;
}
#footermenu .title::before {
	color: #1e5f82;
	padding-bottom: 5px;
	font-family: "Font Awesome 5 Free";
	content: "\f0da";
	font-weight: bold;
	margin-right: .5em;
}
#footermenu .title a {color: #1e5f82;}
#footermenu .subtitle {
	padding-left: 1.5em;
}
#footermenu .weblink {text-align: right;}
#footermenu .weblink a {
	color: #1e5f82;
	font-size: 120%;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer small {font-size: 100%;}

footer {
	font-size: 0.6rem;
	background: #1e5f82;
	color: #fff;
	text-align: center;
	padding: 20px;
}

/*リンクテキスト*/
footer a {color: #fff;text-decoration: none;}

/*リンクテキストのマウスオン時*/
footer a:hover {color: #fff;}




/*ボックス設定
---------------------------------------------------------------------------*/
/* ブロック */
.ctsbox {
	margin: 0 1rem;
}

/* 背景ブロック */

.logoarea {
	background: #fff;
	margin: 0;
}
ul.logoarea  {
	display: flex;
	justify-content:space-around;
	align-items: center;
	list-style-type: none;
	padding: 0 0 40px;
	border-bottom: 2px solid #eee;
}
ul.logoarea:last-child  {
	border: none;
}

ul.logoarea li  {
	width: calc(100% / 3);
	padding: 10px 20px;
	text-align: center;
}
ul.logoarea li div  {
/*	height: 190px;*/
	vertical-align: middle;
}
ul.logoarea li p {
	font-size: 90%;
	line-height: 1.4em;
	margin: 0;
	display: inline-block;
	vertical-align: top;
}

.flex2col_box {
	display: flex;
	 align-self: stretch;
}
.flex2col_box div {
	align-items: center;
}
.flex2col_box div:nth-child(2) {
	width: calc(180em / 3);
	vertical-align: top;
}
	/*画面幅900px未満の追加指定*/
	@media screen and (max-width:899px) {

	.flex2col_box {
		flex-direction: column;	/* 積み重なるように配置する */
	}

	}/*画面幅900px未満の追加指定ここまで*/

.flex2col_box02 {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.flex2col_box02 div {
	margin: 0 1rem 1rem;
	width: calc(100% / 2 - 40em / 16);
	border-left: 1px solid #a8cdf3;
	padding-left: 0.51em;
}


/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*お知らせブロック*/
.scroll_bar {
	overflow-y: scroll;
	height: 12em;
	overflow-y: scroll;
}
.scroll_bar::-webkit-scrollbar{
	width: 8px;
}
.scroll_bar::-webkit-scrollbar-track{
	background-color: #eee;
}
.scroll_bar::-webkit-scrollbar-thumb{
	background-color: #85abbf;
}

#new, #imp {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	padding: 0 1rem;
}

/*日付(dt)、記事(dd)共通設定*/
#new dt, #imp dt,
#new dd, #imp dd {
	padding: 5px 0;
}

/*日付(dt)設定*/
#new dt, #imp dt {
	width: 8rem;
	color: #999;
}
	/*日付の横のマーク（共通設定）*/
	#new dt span, #imp dt span {
		display: inline-block;
		width: 6rem;
		font-size: 0.8rem;
		text-align: center;
		margin-right: 1rem;
		align-self: flex-start;	/*高さを間延びさせない指定*/
		line-height: 1.8;
		position: relative;top: 0.1rem;
		border-radius: 2px;
		border: 1px solid #878787;
		background: #878787;
		color: #fff;
	}

	/*icon-bg1設定。サンプルテンプレートでは「重要」と書いてあるマーク*/
	#imp dt span.icon01 {
		border: transparent;	/*枠線を透明にする*/
		background: #c28cee;
		color: #fff;
	}



/*記事(dd)設定*/
#new dd, #imp dd {
	width: calc(100% - 8rem);	/*「8rem」は上の「#new dt」のwidthの値です*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	/*日付(dt)設定*/
	#new dt, #imp dt {
		width: 8rem;	/*幅。14文字(rem)分。アイコン分も含んだ幅にします。*/
		display: flex;	/*flexボックスを使う指定*/
		justify-content: space-between;	/*日付とアイコンをそれぞれ端に寄せる*/
	}


	/*記事(dd)設定*/
	#new dd, #imp dd {
		width: calc(100% - 14rem);	/*「14rem」は上の「#new dt」のwidthの値です。*/
	}

	}/*画面幅900px以上の追加指定ここまで*/


/*.listブロック共通
---------------------------------------------------------------------------*/
.list {
	position: relative;	/*子要素のアイコンを絶対配置する為の設定*/
}

/*ボックス内のアイコン*/
.list .list-icon {
	font-size: 0.6rem;	
	background: #ff0000;
	color: #fff;
	width: 50px;			/*幅*/
	line-height: 50px;		/*高さ*/
	border-radius: 50%;		/*角丸のサイズ。円形になります。*/
	text-align: center;		/*テキストをセンタリング*/
	position: absolute;		/*親のブロックのrelative（この場合は.list）に対して絶対配置する*/
	left: -10px;			/*listブロックに対して左からの配置場所の指定*/
	top: -10px;				/*listブロックに対して上からの配置場所の指定*/
}

/*figure画像*/
.list figure {
	margin-bottom: 2rem;	/*下に空けるスペース。2文字分。*/
}


/*2カラムブロック（※900px未満では１カラム）
---------------------------------------------------------------------------*/
/*２カラムを囲むブロック*/
.list-half .list {
	display: flex;			/*flexボックスを使う指定*/
	flex-direction: column;	/*子要素を縦並びにする*/
	margin-bottom: 2rem;	/*ボックスの下に2文字分のスペースを空ける*/
}

/*画像ブロック共通*/
.list-half .image-l, .list-half .image-r {
	margin-left: 1rem;margin-right: 1rem;	/*画像の左右に1文字分のスペースを空ける*/
	position: relative;						/*子要素のアイコンを絶対配置する為の設定*/
}
.list-half .image-l img, .list-half .image-r img {
	border-radius: 10px;
	box-shadow: 10px 10px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、0,0,0は黒の事で0.1は色が10%出た状態。*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

		/*２カラムを囲むブロック*/
		.list-half .list {
			flex-direction: row;			/*子要素を横並びにする*/
			justify-content: space-between;	/*並びかたの種類の指定*/
			/*align-items: center;			垂直揃えの指定。天地中央に配置されるように。*/
			align-items: flex-start;
		}
		
		/*画像ブロック共通*/
		.list-half .image-l, .list-half .image-r {
			width: 30%;			/*幅。下のテキストブロックのwidthと調整して下さい。*/
		}
		
		/*画像を右に配置する場合*/
		.list-half .image-r {
			margin-left: 2rem;	/*画像の左側に空けるスペース*/
		}
		
		/*画像を左に配置する場合*/
		.list-half .image-l {
			order: -1;
			margin-right: 2rem;	/*画像の右側に空けるスペース*/
		}

		/*テキストブロック*/
		.list-half .text {
			width: 70%;			/*幅。上の「画像ブロック共通」のwidthと調整して下さい。*/
		}
		.list-half .text p {
			margin: 0 0 2rem;
		}

	}/*画面幅900px以上の追加指定ここまで*/


/*３-2列タイプのボックス
---------------------------------------------------------------------------*/
.list-container {
	display: flex;	
	flex-wrap: wrap;
	justify-content: center;
}
/*ボックス１個あたり*/
.list-container .list {
	margin-bottom: 30px;
	padding: 10px;
	background: #fff;
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);
	text-align: center;

	width: 45%;
	margin-right: 1.5%;	/*右側へのマージン。ボックス同士の左右の余白です。*/
}
/*2の倍数目のボックスの右側のマージンをなくす*/
.list-container .list:nth-of-type(2n) {
	margin-right: 0;
}

/*ボックス内のh4タグ*/
.list-container .list h4 {
	margin: 0 0 .5em 0;
}

/*ボックス内のpタグ*/
.list-container .list p {
	margin: 0;
	line-height: 1.5;
}

/*ボックス内のfigure画像*/
.list-container .list figure {
	margin: 1rem auto;
	width: 70%;
}
.list-container .list figure img {
	border-radius: 50%;
}
	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	/*listブロック全体を囲むブロック*/

	/*１個あたりのボックス設定*/
	.list-container .list {
		width: 23.8%;			/*幅。３列になります。*/
		margin-right: 1.5%;	/*右側へのマージン。ボックス同士の左右の余白です。*/
	}
	
	/*2の倍数目のボックスの右側のマージンをなくす*/
	.list-container .list:nth-of-type(2n) {
		margin-right: 1.5%;
	}
	/*4の倍数目のボックスの右側のマージンをなくす*/
	.list-container .list:nth-of-type(4n) {
		margin-right: 0;
	}

	/*ボックス内のtextブロック*/
	.list-container .list h4 {
	font-weight: bold;
	}
	.list-container .list p {
		font-size: 0.9rem;
	}
	.list-container .list .text {
		flex: 1;
	}
	.list-container .list figure {
		margin: .5rem auto 1rem auto;
		width: 60%;
	}
	}/*画面幅900px以上の追加指定ここまで*/

	/*画面幅600px以上、900px未満の追加指定*/
	@media screen and (min-width:599px) and ( max-width:899px)  {
	.list-container .list figure {
		width: 50%;
	}
	}/*画面幅700px以上、900px未満の追加指定ここまで*/


/*横長タイプのボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたり*/
.list-normal .list {
	display: flex;	/*flexボックスを使う指定*/
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding: 25px 0;	/*上下、左右へのボックス内の余白*/
}

.list-normal .list div {
	flex: 1;
}

/*１つ目のボックスにのみ上に線を入れる*/
.list-normal .list:nth-of-type(1) {
	border-top: 1px solid #ccc;	/*上の線の幅、線種、色*/
}

/*ボックス内のfigure画像*/
.list-normal .list figure {
	width: 20%;			/*画像の幅*/
	margin-right: 20px;	/*画像の右側に空けるスペース*/
}

/*ボックス内のh4タグ*/
.list-normal .list h4 {
	margin: 0;				/*デフォルトマージンを一旦リセット*/
	margin-bottom: 10px;	/*下に少し余白を作る*/
}

/*ボックス内のpタグ*/
.list-normal .list p {
	margin: 0;
	font-size: 0.7rem;		/*文字サイズを70%に。*/
}


	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
	
	/*list2ボックス。１個あたりのボックスの指定です。*/
	.list-normal .list {
		padding-left: 10px;	/*ボックス内の左側にだけ余白を作る*/
	}

	}/*画面幅900px以上の追加指定ここまで*/


/*ulで使うbtn（当テンプレートではheader内でのみ使用）
---------------------------------------------------------------------------*/
#sublogo {
	max-width: 360px;
	list-style: none;
		margin: .5em 60px .5em;
	padding: 0;
	display: flex;
	font-size: 2em;
	}
	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
	#sublogo {
		margin: .5em;
	}
	}/*画面幅900px以上の追加指定ここまで*/
	
	/*画面幅900px以下の追加指定*/
	@media screen and (max-width:900px) {
	#sublogo {
		display: none;
	}
	}

#logobtn {
	max-width: 300px;
		margin: .5em 70px .5em;
	}
	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
	#logobtn {
		margin: .5em;
	}
	}/*画面幅900px以上の追加指定ここまで*/



/*DL
---------------------------------------------------------------------------*/
.committee {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.committee dl, .committee p.namelist {
	margin: 0 1rem 1.5rem;
	width: calc(100% / 2 - 40em / 16);
	padding-left: 0.51em;
}
.committee dl dt {
	font-weight: bold;
}
.committee dl dd {
	font-size: 90%;
}
.committee p.namelist {
	font-weight: bold;
	padding-left: 1rem;
}
.committee p.namelist_w {
	margin: 0 1rem 1.5rem;
	width: calc(100% / 1 - 40em / 16);
	font-weight: bold;
	padding-left: 1rem;
}

/* Organizer */
.committee span.og {
	display: inline-block;
	color: #7e7e7e;
	padding: 0 1em;
	background: #efefef;
	font-weight: normal;
	margin-bottom: .5em;
}

/* clusterリスト (1列) */
.committee2 {
}
.committee2 dl {
	margin: 0 1rem 1rem;
	width: 100%;
	border-bottom: 1px solid #e5e5e5;
	padding-bottom: 1em;
}
.committee2 dl dt {
	font-weight: bold;
}
.committee2 dl dd {
	font-size: 80%;
}
.committee2 .photo_ck {
	width: 10%;
	float: left;
	display: block;
	margin-right: 1rem;
}
.committee2 .photo_ck figure img {
    border-radius: 50%;
}
.committee .ttl_com01 {
	background-color: #5b90ad;
	color: #fff;
	line-height: 1.2;
	padding-top: calc(5em / 16 - .1em);
	padding-bottom: calc(7.1em / 16 - .1em);
	text-align: center;
	width: calc(240em / 16);
	height: 100%;
	margin-top: 0;
	margin-bottom: 0;
	margin-right: calc(10em / 16);
}
.ttl_com02 {
	 background-image: repeating-linear-gradient(-45deg, #cfedfb, #cfedfb 3px, #f2f6fc 3px, #f2f6fc 7px);
	color: #1e5f82;
	font-weight: bold;
	line-height: 1.2;
	padding-top: calc(7.1em / 16 - .1em);
	padding-bottom: calc(7.1em / 16 - .1em);
	text-align: center;
	margin-bottom: 1em;
}

dl.att dt {
	width: 2.5em;
	float: left;
}
dl.att dd {
	padding-left: 2.5em;
}
dl.att02 dt {
	width: 4em;
	float: left;
}
dl.att02 dd {
	padding-left: 4em;
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;
	padding: 1rem 0.5rem;
	background: #555;
	margin-bottom: 1rem;
}

/*ta1テーブルブロック設定*/
.ta1 {
	border-top: 1px solid #ccc;
	width: 100%;
	margin: 0 auto 2rem;
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid #ccc;
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 0.5rem 0.5rem;
/*	word-break: break-all;*/
}

/*th（左側）のみの設定*/
.ta1 th {
/*	width: 30%;*/
	text-align: left;
	background: #cfedfb;
}
	.ta1 th.gry {
		background: #fff;
		border-right: 1px dotted #ccc;
		border-left: 1px dotted #ccc;
	}
	.ta1 th.theme {
		background: #1e5f82;
		color: #fff;
	}

.ta2 {
	border-collapse: collapse;
	width: 100%;
}
.ta2 th, .ta2 td {
	border: 2px solid #fff;
	background-color: #e6f1f6;
	padding: .5em 1em;
}
.ta2 th {
	background-color: #5ea7d2;
	color: #fff;
	font-weight: bold;
	text-align: left;
/*	width: 50%;*/
	min-width: 4em;
}



/*ボタン設定
---------------------------------------------------------------------------*/
.btn {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: auto;
	margin: auto;
	padding: .5rem;
	font-weight: bold;
	background-image: linear-gradient(to right, #1e5f82 0%, #5b90ad 100%);
	border-radius: 5px;
	color: #fff;
	border: 2px solid #fff;
	box-shadow: 0 2px 3px rgba(0, 0, 0, .2);
	-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
	transition: 0.3s;
	line-height: 1.4em;
}
.btn_box .btn, .btn_box .linkbtn {
	max-width: 400px;
	padding: 1rem;
	font-size: 1.2em;
}
.linkbtn, .linkbtnS {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: auto;
	margin: auto;
	padding: .2rem;
	font-weight: bold;
	border-radius: 3px;
	color: #fff;
	box-shadow: 0 2px 3px rgba(0, 0, 0, .2);
	-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
	transition: 0.3s;
	line-height: 1.4em;
}
.linkbtnS {
	padding: .5rem 1rem;
	font-size: 1em;
}
.btncolor01 {
	background: #c0a353;
}

.linkbtn2, .linkbtn3 {
	font-weight: bold;
	width: 100%;
	display: block;
}
.linkbtn2::after {
	font-family: "Font Awesome 5 Free";
	content: "\f138";
	color: #00b170;
	font-weight: bold;
	font-size: 1.5em;
	padding-left: .5em;
}
.linkbtn3::after {
	font-family: "Font Awesome 5 Free";
	content: "\f15c";
	color: #00b170;
	font-weight: bold;
	font-size: 1.5em;
	padding-left: .5em;
}

.dlbtn_pdf {
	font-weight: normal;
	width: 100%;
	display: block;
	color: #fa0f00;
	font-size: 1.5em;
	text-decoration: underline;
}
.dlbtn_pdf::before {
	font-family: "Font Awesome 5 Free";
	content: "\f1c1";
	color: #fa0f00;
	font-weight: bold;
	font-size: 1.5em;
	padding-right: .5em;
}

.i_att {
}
.i_att::before {
	font-family: "Font Awesome 5 Free";
	content: "\f05a";
	color: #fa0f00;
	font-weight: bold;
	font-size: 1.5em;
	padding-right: .5em;
}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;		/*右からの配置場所指定*/
	bottom: 20px;		/*下からの配置場所指定*/
	color: #fff;	
	font-size: 1.5em;
	background: rgba(0,0,0,0.2);	/*背景色。0,0,0は黒の事で0.2は色が20%出た状態。*/
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*円形にする*/
}
.pagetop2 {
	height: 60px;
	width: 60px;
	position: fixed;
	right: 20px;
	bottom: 20px;
	color: #fff;	
	background: rgba(0,0,0,0.2);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 99;
}
.pagetop__arrow {
	height: 10px;
	width: 10px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	transform: translateY(20%) rotate(-45deg);
}

/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}

.ws {width: 98%;display: block;}
.wl {width: 98%;display: block;}
.look {display: inline-block;padding: 0px 10px;background: #eee;border: 1px solid #ccc; border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 3em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.img {margin: 0 0 1rem;}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

		.ws {width: 48%;display: inline;}
		.sh {display: none;}
		.pc {display: block;}

	}/*画面幅900px以上の追加指定ここまで*/


/*追加
---------------------------------------------------------------------------*/
.c {text-align: center !important;}
.r {text-align: right !important;}
.l {text-align: left !important;}
.fl {float: left;}
.fr {float: right;}
img.fr {float: right; width: 40%;}
	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
	img.fr {float: right; width: 35%;}
	}/*画面幅900px以上の追加指定ここまで*/

/* margin */
.mt0 {margin-top: 0 !important;}
.mt10m {margin-top: -10px !important;}

.mt10 {margin-top: 10px !important;}
.mt20 {margin-top: 20px !important;}
.mt30 {margin-top: 30px !important;}
.mt40 {margin-top: 40px !important;}
.mt60 {margin-top: 60px !important;}

.mb0 {margin-bottom: 0 !important;}
.mb10 {margin-bottom: 10px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb40 {margin-bottom: 40px !important;}
.mb60 {margin-bottom: 60px !important;}

.pt0 {padding-top: 0px !important;}
.pt10 {padding-top: 10px !important;}
.pt20 {padding-top: 20px !important;}
.pt30 {padding-top: 30px !important;}
.pt40 {padding-top: 40px !important;}
.pt60 {padding-top: 60px !important;}

.pb0 {padding-bottom: 0 !important;}
.pb10 {padding-bottom: 10px !important;}
.pb20 {padding-bottom: 20px !important;}
.pb30 {padding-bottom: 30px !important;}
.pb40 {padding-bottom: 40px !important;}
.pb60 {padding-bottom: 60px !important;}

p.pd_off {padding: 0 !important;}
.mg_off, p.mg_off {margin: 0 !important;}

.pl10 {padding-left: 10px !important;}
.pl20 {padding-left: 20px !important;}
.pl40 {padding-left: 40px !important;}

.plr1rem {padding-left: 1rem !important;padding-right: 1rem !important;}
.ptrem {padding-top: 1rem !important;}
.pbrem {padding-bottom: 1rem !important;}

.mlr20 {margin-left: 20px !important; margin-right: 20px !important;}
.plr10 {padding-left: 10px !important; padding-right: 10px !important;}
.plr20 {padding-left: 20px !important; padding-right: 20px !important;}


/* text */
.bold {font-weight: bold !important;}
.normal {font-weight: normal !important;}
.line {text-decoration: underline !important;}
.through {text-decoration: line-through !important;}

.tx_small2 {font-size: 90%;}
.tx_small1 {font-size: 86%;}
.tx_small {font-size: 80%;}
.tx_large {font-size: 120%;}
.tx_large2 {font-size: 140%;}
.tx_large3 {font-size: 160%;}

.color-theme, .color-theme a {color: #1e5f82 !important;}
.color-check, .color-check a {color: #f00 !important;}
.color1 {color: #c0a353 !important;}
.color2 {color: #67a8cb !important;}
.color3 {color: #e88963 !important;}
.color_platinum {color: #798abd !important;}
.color_gold {color: #b39d76 !important;}
.color_silver {color: #919191 !important;}
.color_symposium {color: #57a9c3 !important;}

.l_height12 {line-height: 1.2em !important;}
.l_height14 {line-height: 1.4em !important;}


hr {
	height: 1px;
	border: none;
	border-top: 5px #eee solid;
	padding-bottom: 2rem;
}
.hover:hover {
	filter: alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
}
