<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/*---------------------------------------------------
	Name:  common.css
	Info:  kengi2019 CSS
---------------------------------------------------*/

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
	display: block;
}

body {
	line-height: 1;
}

ol,ul {
	list-style: none;
}

blockquote,q {
	quotes: none;
}

blockquote:before,blockquote:after,q:before,q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}
h1,h2,h3,h4,h5,h6 {
	margin: 0;
	padding: 0;
}


/*---------------------------------------------------------------------
                * common setting *  
---------------------------------------------------------------------*/
html {
	font-size: 14px;
}
body {
	padding: 0 0 20px;
	background-color: #fff;
	background-image: url("../images/base/overlay.png"), url("../images/base/bg_body.gif");
	background-repeat: repeat, repeat;
	color: #333;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/* a */
a {
	overflow: hidden;
	color: #444;
	text-decoration: underline;
	-webkit-transition: 0.3s ease;
	-moz-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
}
a:hover {
	overflow: hidden;
	color: #00b1c6;
	text-decoration: none;
}
a img {
	overflow: hidden;
	color: #444;
	text-decoration: none;
	-webkit-transition: 0.3s ease;
	-moz-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
}
a:hover img {
	overflow: hidden;
	color: #ef8200;
	text-decoration: none;
	opacity: 0.7;
	filter: alpha(opacity=70); /* IE */
	-ms-filter: "alpha(opacity=70)"; /* IE */
	-khtml-opacity: 0.7; /* Safari */
	-moz-opacity: 0.7; /* Firefox */
}

h1 {
	font-size: 115%; /* 16px */
	text-align: center;
	letter-spacing: 3px;
}
h1 a {
	text-decoration: none;
	color: #666;
}
h1 a:hover {
	color: #999;
}
h2 {
	padding: 8px 10px;
	border-top: 2px solid #fff;
	color: #fff;
	font-weight: 700;
	font-size: 108%; /* 15px */
	text-align: left;
}
h3 {
	margin: 10px 0 20px;
	padding: 5px 0 5px 5px;
	border-bottom: 1px solid #ccc;
	color: #444;
	font-size: 129%; /* 18px */
	font-weight: 700;
}
h4 {
	padding: 5px 5px 5px 0;
	color: #444;
	font-size: 108%; /* 15px */
	font-weight: 700;
}

table {
	margin: 5px 0;
	line-height: 170%;

}
th,td {
	vertical-align: top;
}
table p {
	margin: 5px;
}

/* layout */
.ta_r { text-align: right; }
.ta_c { text-align: center; }
.ta_l { text-align: left; }

.va_t { vertical-align: top; }
.va_m { vertical-align: middle; }
.va_b { vertical-align: text-top; }

.top      { padding-top: 10px; }
.top40    { padding-top: 40px; }
.top55    { padding-top: 55px; }
.bottom   { padding-bottom: 10px; }
.bottom20 { padding-bottom: 20px; }
.left { padding-left: 20px; }

.f_r { float: right; }
.f_l { float: left; }
.box_c { margin: 10px auto; }
.dpy_b { display: block; }

.indent   { margin-left: 20px; }
.indent50 { margin-left: 50px; }

/* font */
.fc_red { color: #e64600; }
.fc_bl  { color: #1c8faa; }
.fc_p   { color: #9661a0; }
.fc_or  { color: #f3542d; }
.fw_n   {
	font-weight: normal;
	color: #666;
}
.fw_b   { font-weight: 700; }
.fs_s   { font-size: 86%; /* 12px */ }
.fs_ss  { font-size: 79%; /* 11px */ }
.fs_m   { font-size: 93%; /* 13px */ }
.fs_big {
	font-size: 108%; /* 15px */
	font-weight: 700;
	letter-spacing: 1px;
}

/* clearfix
---------------------------------------------------*/
.clearfix:before,
.clearfix:after { /* for modern browser */
    content: "";
    display: table;
}  
.clearfix:after {
    clear: both;
}
.clearfix { /* for IE 5.5-7 */
    zoom: 1;
}

/* 文頭に1字分インデントを付ける
---------------------------------------------------*/
.t_indent { text-indent: 1em; }

/* 2行目以降、1字分インデントを付ける */
.t_annotation {
	padding: 0 0 0 1em;
	text-indent: -1em;
}

/* ※付き 説明枠-共通指定
---------------------------------------------------*/
.description_border_nomal,
.description_border_red,
.description_border_gray {
	margin: 0px 2px 15px 6px;
	padding: 0px 7px 8px 16px;
	text-indent: -1em;
	line-height: 160%;
	color: #e2451e;
	font-weight: 700;
}

/* ※付き 説明枠-黒文字
---------------------------------------------------*/
.description_border_nomal {
	color: #333;
}

/* ※付き 説明枠-赤文字
---------------------------------------------------*/
.description_border_red {
	color: #e2451e;
}

/* ※付き 説明枠-灰色文字
---------------------------------------------------*/
.description_border_gray {
	color: #666;
}

.description_border_red02 {
	margin: 0px 2px 1px 6px;
	padding: 0px 7px 1px 16px;
	text-indent: -1em;
	line-height: 160%;
	color: #e2451e;
	font-weight: 700;
}

/* 説明枠-テキスト中央寄せ
---------------------------------------------------*/
.description-center {
	margin: 0 2px 15px;
	padding: 3px 0 2px;
	border: 2px solid #ffab87;
	color: #e2451e;
	font-weight: 700;
	font-size: 115%; /* 16px */
	text-align: center;
	background: #f9f5b9;
}

/* 説明枠-テキストリンク
---------------------------------------------------*/
.description-link a {
	width: 80%;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	margin: 0 0 5px;
	padding: 3px 10px 2px;
	color: #555;
	font-weight: 700;
	background: #ccc;
	text-decoration: none;
	display: block;
}
.description-link a:hover {
	color: #777;
	background: #96e5ee;
	text-decoration: none;
}
/* テキストリンク 中央寄せ */
.description-link-c a {
	width: 60%;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	margin: 0 auto;
	padding: 3px 10px 2px;
	color: #555;
	font-weight: 700;
	background: #ccc;
	text-align: center;
	text-decoration: none;
	display: block;
}
.description-link-c a:hover {
	color: #777;
	background: #96e5ee;
	text-decoration: none;
}

/*---------------------------------------------------------------------
                * list *  
---------------------------------------------------------------------*/
/* dl
------------------------------------------------*/
/* list-dl-bold */
.list-dl-bold dl {
}
.list-dl-bold dt {
	padding: 0 0 0 10px;
	font-weight: 700;
}
.list-dl-bold dd {
	margin: 0 0 20px;
	padding: 0 0 0 20px;
}

/* list-dl-bold-bdr */
dl.list-dl-bold-bdr {
	margin: 0 0 15px;
	padding: 10px 15px;
	border: 2px solid #ccc;
}
.list-dl-bold-bdr dt {
	margin: 0;
	padding: 0;
	font-weight: 700;
}
.list-dl-bold-bdr dd {
	margin: 0 0 0 10px;
	padding: 0;
}

/* list-dl-bold02a */
.list-dl-bold02a dt {
	padding: 0 0 0 1em;
	font-weight: 700;
}
.list-dl-bold02a dd {
	margin: 0 0 10px;
	padding: 0 0 0 1.5em;
	line-height: 130%;
}

/* list-dl-bold02b インデント微調整 */
.list-dl-bold02b dt {
	padding: 0 0 0 1em;
	font-weight: 700;
}
.list-dl-bold02b dd {
	margin: 0 0 10px;
	padding: 0 0 0 2.5em;
	line-height: 130%;
}

/* ul
------------------------------------------------*/
/* list-ul-style01 */
.list-ul-style01 li {
	padding: 5px 0 0 20px;
}

/* list-ul-style02 横並び */
.list-ul-style02 li {
	min-width: 90px;
	margin: 5px 10px 5px 0;
	padding: 5px 5px 10px 5px;
	float: left;
	text-align: center;
	line-height: 120%;
}

/* list-ul-style02 横並び 共催名 */
.list-ul-style02b li {
	min-width: 320px;
	display: block;
	margin: 0;
	padding: 3px 5px 3px 0;
	float: left;
	line-height: 150%;
}
.list-ul-style02b li.w {
	min-width: 640px;
}

/* list-ul-icon list */
.list-ul-icon li {
	padding: 3px 0;
	list-style: disc;
	list-style-position: outside;
}

/* list-ul-indent list */
.list-ul-indent li {
	padding: 0 0 10px 1em;
	text-indent: -1em;
}

/*---------------------------------------------------------------------
                * header *  
---------------------------------------------------------------------*/
header {
	width: 100%;
	max-width: 970px;
	padding: 20px 0;
	margin: 0 auto;
}

/*---------------------------------------------------------------------
                * contents *  
---------------------------------------------------------------------*/
#contents {
	width: 100%;
	/*max-width: 1000px;*/
	max-width: 1055px;
	margin: 0 auto;
	padding: 0 0 0 15px;
	background: #fff;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	display:table;
	table-layout: fixed;
}

#main {
	float: left;
	width: 80%;
	margin: 0;
	padding: 0;
	background: #fff;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

/*---------------------------------------------------------------------
                * nav *  
---------------------------------------------------------------------*/
nav {
	float: left;
	width: 20%;
	margin: 0;
	padding: 0;
}
nav h3 {
	margin: 15px 0 0;
	padding: 8px 5px;
	background: #555;
	color: #fff;
	font-size: 93%; /* 13px */
	text-align: center;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	background: #fff;
}
nav ul li {
	width: 100%;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #e5e5e5;
}
nav ul li a {
	display: block;
	margin: 0;
	padding: 10px 10px;
	color: #333;
	text-align: left;
	text-decoration: none;
}
nav li a:hover {
	background: #eee;
}
nav li.now a {
	background: #fff;
	color: #00b1c6;
	font-weight: 700;
}
nav ul li.nolink {
	display: block;
	margin: 0;
	padding: 12px 10px;
	color: #ccc;
	text-align: left;
}

#toggle {
	display: none;
}

/* main-in
------------------------------------------------*/
#main-in {
    padding: 15px;
    display: table;
    table-layout: fixed;
}

.topimg {
    display: table-cell;
    vertical-align: top;
}
.topimg img {
    /*max-width: 472px;*/
	max-width:485px;
}

.side {
    /*max-width: 380px;*/
	max-width: 380px;
    padding: 0 0 0 15px;
    display: table-cell;
    vertical-align: top;
}

.side-img {
	margin: 0 auto;
    padding: 10px 0 5px 15px;
}

.side-img img {
	max-width: 240px;
}

.main-contents {
    padding: 15px;
    vertical-align: top;
}

/* 横並びレイアウト用 */
.tablebox {
    display: table;
    table-layout: fixed;
	width: 100%;
}
div.box01 {
    padding: 0 10px 10px;
    display: table-cell;
    width: 50%;
	line-height: 100%;
	vertical-align: top;
}
div.box02 {
    padding: 0 10px 10px;
    display: table-cell;
    width: 50%;
	line-height: 100%;
	vertical-align: top;
}
div.box03 {
    padding: 0 10px 10px;
    display: table-cell;
    width: 50%;
	line-height: 100%;
	vertical-align: top;
}
div.box04 {
    padding: 0 10px 10px;
    display: table-cell;
    width: 30%;
	line-height: 100%;
	vertical-align: top;
}
div.box01 img,
div.box02 img,
div.box03 img,
div.box04 img {
    padding: 0;
    display: table-cell;
    width: 100%;
}

/* nest-block
---------------------------------------------------*/
.nest-block {
	margin: 5px 0 30px 20px;
	/*max-width: 730px;*/
	max-width: 770px;
	line-height: 170%;
}

/*---------------------------------------------------------------------
                * footer *  
---------------------------------------------------------------------*/
footer {
	width: 100%;
	max-width: 970px;
	margin: 0 auto;
	padding: 0;
	text-align: center;
	display: table-footer-group;
}
footer small {
	margin: 0 15px;
	padding: 20px 0;
	border-top: 1px solid #ccc;
	display: block;
}

/*---------------------------------------------------------------------
                * ボタン *  
---------------------------------------------------------------------*/
/* トップページ-動画中継ボタン
---------------------------------------------------*/
.ust-top a {
	background: #66b44e;
	background: -moz-linear-gradient(top, #7fce61, #66b44e);
	background: -webkit-gradient(linear, center top, center bottom, from(#7fce61), to(#66b44e));
	background: -ms-linear-gradient(top, #7fce61, #66b44e);
	   -moz-box-shadow: 0 1px 3px #ccc;
	-webkit-box-shadow: 0 1px 3px #ccc;
		-ms-box-shadow: 0 1px 3px #ccc;
			  box-shadow: 0 1px 3px #ccc;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
			border-radius: 4px;
	margin: 10px 10px 3px;
	padding: 15px 5px 15px 10px;
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	display: block;
	font-size: 122%; /* 17px */
	line-height: 120%;
}
.ust-top a:hover {
	background: #7fce61;
	background: -moz-linear-gradient(top, #8ee66c, #7fce61);
	background: -webkit-gradient(linear, center top, center bottom, from(#8ee66c), to(#7fce61));
	background: -ms-linear-gradient(top, #8ee66c, #7fce61);
	   -moz-box-shadow: 0 0 3px #ccc;
	-webkit-box-shadow: 0 0 3px #ccc;
		-ms-box-shadow: 0 0 3px #ccc;
			  box-shadow: 0 0 3px #ccc;
	color: #fff;
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
	-khtml-opacity: 0.7;
	-moz-opacity: 0.7;
}
.ust-top span {
	font-weight: 400;
	display: block;
	font-size: 72%; /* 10px */
}
.ust-top img {
	width: 35px;
	height: 35px;
	margin: 0 10px 0 0;
	vertical-align: top;
	display: inline-block;
	float: left;
}


/* トップページ-YouTubeボタン
---------------------------------------------------*/
.yt-top a {
	background: #eee;
	background: -moz-linear-gradient(top, #fff, #eee); /* firefox */
	background: -webkit-gradient(linear, center top, center bottom, from(#fff), to(#eee)); /* safari chrome */
	background: -ms-linear-gradient(top, #fff, #eee); /* ie */
	   -moz-box-shadow: 0 1px 3px #ccc;
	-webkit-box-shadow: 0 1px 3px #ccc;
		-ms-box-shadow: 0 1px 3px #ccc;
			  box-shadow: 0 1px 3px #ccc;
	border: 1px solid #999;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			   border-radius: 5px;
	color: #333;
	text-decoration: none;
	font-weight: 700;
	display: block;
	line-height: 120%;

	margin: 10px 2px 3px 2px;
	padding: 1px 10px 1px 0;
	font-size: 100%; /* 14px */
	vertical-align: middle;
}
.yt-top a:hover {
	background: #e5e5e5;
    background: -moz-linear-gradient(top, #f2f2f2, #e5e5e5);
    background: -webkit-gradient(linear, center top, center bottom, from(#f2f2f2), to(#e5e5e5));
    background: -ms-linear-gradient(top, #f2f2f2, #e5e5e5);
	   -moz-box-shadow: 0 0 3px #ccc;
	-webkit-box-shadow: 0 0 3px #ccc;
		-ms-box-shadow: 0 0 3px #ccc;
			  box-shadow: 0 0 3px #ccc;
	border: 1px solid #ccc;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
	color: #999;
	font-weight: 700;
	line-height: 120%;
}
.yt-top span {
	display: block;
	margin: 12px 0 0;
	padding: 0;
}
.yt-top span span {
	font-weight: 400;
	display: block;
	margin: 0;
	padding: 0;
	font-size: 79%; /* 11px */
}
.yt-top img {
	width: 100px;
	height: 62px;
	margin: 0;
	vertical-align: middle;
	display: inline-block;
	float: left;
}


/* 白ボタン 共通部分一括指定
---------------------------------------------------*/
#bosyu-form-top li a,
#bosyu-form-top li.no-link,
#bosyu-form li a,
#bosyu-form-kyoryo a,
.pdf a,
.btn-yt a {
	background: #eee;
	background: -moz-linear-gradient(top, #fff, #eee); /* firefox */
	background: -webkit-gradient(linear, center top, center bottom, from(#fff), to(#eee)); /* safari chrome */
	background: -ms-linear-gradient(top, #fff, #eee); /* ie */
	   -moz-box-shadow: 0 1px 3px #ccc;
	-webkit-box-shadow: 0 1px 3px #ccc;
		-ms-box-shadow: 0 1px 3px #ccc;
			box-shadow: 0 1px 3px #ccc;
	border: 1px solid #999;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
	color: #333;
	text-decoration: none;
	font-weight: 700;
	display: block;
	line-height: 120%;
}
#bosyu-form li.no-link,
#bosyu-form li.no-link02,
#bosyu-form li p.no-link,
#bosyu-form-top li a:hover,
#bosyu-form-top li.no-link,
#bosyu-form li a:hover,
#bosyu-form-kyoryo a:hover,
.pdf a:hover,
.btn-yt a:hover {
	background: #e5e5e5;
    background: -moz-linear-gradient(top, #f2f2f2, #e5e5e5);
    background: -webkit-gradient(linear, center top, center bottom, from(#f2f2f2), to(#e5e5e5));
    background: -ms-linear-gradient(top, #f2f2f2, #e5e5e5);
	   -moz-box-shadow: 0 0 3px #ccc;
	-webkit-box-shadow: 0 0 3px #ccc;
		-ms-box-shadow: 0 0 3px #ccc;
			box-shadow: 0 0 3px #ccc;
	border: 1px solid #ccc;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
	color: #999;
	font-weight: 700;
	line-height: 120%;
}

/* 黒ボタン 共通部分一括指定
---------------------------------------------------*/
.slide-panel label,
.btn-ust a {
	background: #666;
	background: -moz-linear-gradient(top, #888, #666);
	background: -webkit-gradient(linear, center top, center bottom, from(#888), to(#666));
	background: -ms-linear-gradient(top, #888, #666);
	   -moz-box-shadow: 0 1px #ccc;
	-webkit-box-shadow: 0 1px #ccc;
		-ms-box-shadow: 0 1px #ccc;
			box-shadow: 0 1px #ccc;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
	color: #fff;
	text-decoration: none;
}
.slide-panel label:hover,
.btn-ust a:hover {
	background: #888;
	background: -moz-linear-gradient(top, #ccc, #888);
	background: -webkit-gradient(linear, center top, center bottom, from(#ccc), to(#888));
	background: -ms-linear-gradient(top, #ccc, #888);
	   -moz-box-shadow: 0 0 #ccc;
	-webkit-box-shadow: 0 0 #ccc;
		-ms-box-shadow: 0 0 #ccc;
			box-shadow: 0 0 #ccc;
	color: #fff;
}

/* 出展募集ボタン（トップページ）
---------------------------------------------------*/
#bosyu-form-top ul {
	width: 98%;
	margin: 15px 5px 10px;
	padding: 0;
	display: table;
	table-layout: fixed;
}
#bosyu-form-top ul.bdr {
	margin: 10px 5px 0;
	padding: 20px 0 0;
	border-top: 1px solid #e5e5e5;
}
#bosyu-form-top li {
	list-style: none;
	vertical-align: middle;
	display: table-row;
}
#bosyu-form-top li a,
#bosyu-form-top li.no-link {
	margin: 0 10px 10px;
	padding: 10px 5px 10px 15px;
}
#bosyu-form-top li span {
	font-weight: 400;
	display: block;
	font-size: 86%; /* 12px */
}

#bosyu-form-top li img {
	width: 30px;
	height: 30px;
	margin: 0 10px 0 0;
	vertical-align: top;
	display: inline-block;
	float: left;
}

/* 出展募集ボタン（募集要項）
---------------------------------------------------*/
#bosyu-form ul {
	width: 100%;
	margin: 10px 0;
	padding: 0;
	display: table;
	table-layout: fixed;
}
#bosyu-form li {
	list-style: none;
	vertical-align: middle;
	display: table-cell;	
}
#bosyu-form li a {
	margin: 0 10px 0 0;
	padding: 10px 5px 5px;
	text-align: center;
}
#bosyu-form li.no-link {
	margin: 0 10px 0 0;
	padding: 10px 5px 5px;
	text-align: center;
}
#bosyu-form li.no-link02 {
	margin: 0 10px 0 0;
	padding: 10px 5px 5px;
	text-align: center;
	display: block;
}
#bosyu-form p.no-link {
	margin: 0 10px 0 0;
	padding: 10px 5px 5px;
	text-align: center;
	display: block;
}
#bosyu-form li span {
	font-weight: 400;
	display: block;
	font-size: 86%; /* 12px */
}
#bosyu-form li img {
	margin: 0 auto 5px;
	vertical-align: middle;
	text-align: center;
	display: block;
}

/* 参加チームボタン（橋梁模型製作コンテスト）
------------------------------------------------*/
#bosyu-form-kyoryo {
	width: 100%;
	margin: 10px 0;
	padding: 0;
	vertical-align: middle;
	text-align: center;
}
#bosyu-form-kyoryo a {   
	margin: 0 10px 10px;
	padding: 10px 5px 5px;
	font-size: 143%; /* 20px */
}
#bosyu-form-kyoryo a span {
	font-weight: 700;
	display: block;
	font-size: 115%; /* 16px */
	color: #e2451e;
}
#bosyu-form-kyoryo a:hover span {
	color: #999;
}

/* pdfリンクボタン（プログラム・プレゼンテーション）
---------------------------------------------------*/
.pdf a {
	margin: 20px 10px;
	padding: 5px 10px;
	vertical-align: middle;
}

/* スライドパネルボタン（募集要項-会場イメージ図）
---------------------------------------------------*/
.slide-panel input {
	display: none;
}
.slide-panel label {
	cursor: pointer;
	display: inline-block;
	padding: 5px 10px;
	-webkit-transition: 0.3s ease;
	-moz-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
}
.slide-panel label:hover {
}
.slide-panel .panel {
	height: 0;
	overflow: hidden;
	background: #f2f2f2;
	margin-top: 10px;
	padding: 0;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-transition: 0.3s ease;
	-moz-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
}
.slide-panel input:checked + .panel {
	height: auto;
	padding: 15px;
}

/* 動画中継ボタン（プログラム）
---------------------------------------------------*/
.btn-ust a {
	padding: 5px;
	margin: 0 5px 5px 0;
	font-weight: 700;
	display: block;
	line-height: 120%;
	vertical-align: top;
}
.btn-ust img {
	margin: 0 auto 5px;
	display: block;
	vertical-align: top;
}
.btn-ust span {
	padding: 0;
	font-weight: 400;
	display: block;
	font-size: 79%; /* 11px */
}

/* YouTubeボタン（プログラム）
---------------------------------------------------*/
.btn-yt a {
	padding: 5px;
	margin: 0 5px 5px 0;
	font-weight: 700;
	display: block;
	line-height: 120%;
	vertical-align: top;
}
.btn-yt img {
	margin: 0 auto 5px;
	display: block;
	vertical-align: top;
}
.btn-yt span {
	padding: 0;
	font-weight: 400;
	display: block;
	font-size: 79%; /* 11px */
}

/* その他のボタン
---------------------------------------------------*/
.other-button {
}
.other-button a {
	margin: 0 10px 3px 0;
	padding: 15px 5px;
	text-align: center;
	color: #f08300;
	background: #eee;
	background: -moz-linear-gradient(top, #fff, #eee); /* firefox */
	background: -webkit-gradient(linear, center top, center bottom, from(#fff), to(#eee)); /* safari chrome */
	background: -ms-linear-gradient(top, #fff, #eee); /* ie */
	   -moz-box-shadow: 0 1px 3px #ccc;
	-webkit-box-shadow: 0 1px 3px #ccc;
		-ms-box-shadow: 0 1px 3px #ccc;
			box-shadow: 0 1px 3px #ccc;
	border: 2px solid #f08300;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
	text-decoration: none;
	font-weight: 700;
	display: block;
	line-height: 120%;
}
.other-button a:hover {
	background: #e5e5e5;
    background: -moz-linear-gradient(top, #f2f2f2, #e5e5e5);
    background: -webkit-gradient(linear, center top, center bottom, from(#f2f2f2), to(#e5e5e5));
    background: -ms-linear-gradient(top, #f2f2f2, #e5e5e5);
	   -moz-box-shadow: 0 0 3px #ccc;
	-webkit-box-shadow: 0 0 3px #ccc;
		-ms-box-shadow: 0 0 3px #ccc;
			box-shadow: 0 0 3px #ccc;
	border: 2px solid #ccc;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
	color: #999;
	font-weight: 700;
	line-height: 120%;
}
.other-button span {
	padding: 3px 0 0 5px;
	font-weight: 400;
	display: block;
	font-size: 86%; /* 12px */
}
.other-button a span {
	color: #666;
}
.other-button a:hover span {
	color: #999;
}
.other-button img {
	/*width: 97%;*/
}


/*---------------------------------------------------------------------
                * トップページ *  
---------------------------------------------------------------------*/
/* news
------------------------------------------------*/
.news {
	width: 100%;
}
.news h3 {
	margin: 0 0 0;
	padding: 8px 10px;
	font-size: 93%; /* 13px */
	background: #555;
	color: #fff;
	text-align: center;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.news dl {
	width: 98%;
	margin: 0;
	padding: 10px 0 0 5px;
	line-height: 150%;
	border-radius: 5px;
	background: #fff;
	font-size: 93%; /* 13px */
	display: table;
	table-layout: fixed;
}
.news dt {
	margin: 5px 0 0 0;
	color: #00b1c6;
	font-weight: 700;
}
.news dt img {
	margin: 0 0 0 5px;
	vertical-align: middle;
}
.news dd {
	padding: 0 0 5px 2px;
	border-bottom: 1px solid #e5e5e5;
}


/* 横並び表　事業協力者募集
------------------------------------------------*/
dl.list_dl_style01 {
    margin: 10px 0 0;
    line-height: 170%;
    width: 100%;
}
.list_dl_style01 dt {
    border-top: 1px solid #e5e5e5;
    padding: 10px 0 0 5px;
    float: left;
    width: 150px;
    font-weight: 700;
	letter-spacing: 1px;
}
.list_dl_style01 dd {
    border-top: 1px solid #e5e5e5;
    margin: 0 0 0 150px;
    padding: 10px 5px; 
}

/* 主催・共催
------------------------------------------------*/
dl.list_dl_syusai {
    margin: 20px 0 0 5px;
    line-height: 170%;
    width: 99%;
}
.list_dl_syusai dt {
    border-top: 1px solid #e5e5e5;
    padding: 10px 0 0 5px;
    float: left;
    width: 80px;
    font-weight: 700;
	letter-spacing: 1px;
}
.list_dl_syusai dd {
    border-top: 1px solid #e5e5e5;
    margin: 0 0 0 80px;
    padding: 10px 5px; 
}
.list_dl_syusai dd dl {
    margin: 0;
    padding: 0;
}
.list_dl_syusai dd dl dt {
    border-top: none;
    padding: 5px 0 0;
    float: none;
    width: 100%;
    color: #333;
    font-weight: 700;
}
.list_dl_syusai dd dl dd {
    border-top: none;
    margin: 0;
    padding: 0 5px 10px 1.72em;
    line-height: 160%;
}
.list_dl_syusai dt span {
	display: block;
	font-weight: 400;
	text-indent: -0.5em;
	line-height: 120%;
}
.list_dl_syusai dd span {
	margin: 0 0 0 15px;
}
.top-syusai {
    padding-top: 23px;
}

/* 特別講演 */
dl.list_dl_syusai02 {
    margin: 0 0 0 5px;
    line-height: 170%;
    width: 99%;
}
.list_dl_syusai02 dt {
    border-top: 1px solid #e5e5e5;
    padding: 10px 0 0 5px;
    float: left;
    width: 80px;
    font-weight: 700;
	letter-spacing: 1px;
}
.list_dl_syusai02 dd {
    border-top: 1px solid #e5e5e5;
    margin: 0 0 0 80px;
    padding: 10px 5px; 
}
.list_dl_syusai02 dd dl {
    margin: 0;
    padding: 0;
}


/*---------------------------------------------------------------------
                * 各ページ *  
---------------------------------------------------------------------*/
/* 分野
------------------------------------------------*/
.list_dl_bunya {
    margin: 10px 0 0;
    line-height: 170%;
    width: 100%;
    display: table;
    table-layout: fixed;
}
.list_dl_bunya dl {
	display: table-row;
}
.list_dl_bunya dt {
	width: 90px;
	height: auto;
    border-top: 3px solid #fff;
    padding: 5px;
	text-align: center;
	font-weight: 700;
    display: table-cell;
	line-height: 120%;
}
.list_dl_bunya dd {
    border-left: 3px solid #fff;
    border-top: 3px solid #fff;
    padding: 5px;
	background: #f2f2f2;
    display: table-cell;
	vertical-align: top;
}

/* 表彰結果
---------------------------------------------------*/
.award {
	margin: 0 10px 20px 0;
	border-top: 1px solid #999;
	border-left: 1px solid #999;
	width: 100%;
	background: #f9f9f9;
	table-layout: fixed;
}
.award thead th {
	padding: 5px;
	border-right: 1px solid #999;
	border-bottom: 1px solid #999;
	color: #fff;
	background: #333;
	font-weight: 700;
	text-align: center;
	vertical-align: middle;
}
.award td {
	padding: 8px 6px 8px 8px;
	border-right: 1px solid #999;
	border-bottom: 1px solid #999;
	vertical-align: middle;
}
.award tbody th {
	padding: 8px 6px 8px 8px;
	border-right: 1px solid #999;
	border-bottom: 1px solid #999;
	background: #dcdcdc;
	font-weight: 700;
	text-align: center;
	vertical-align: middle;
}
.award a {
	color: #333;
}
.award a img {
	width: 100%;
}
.none {
	display: none;
}

/* 幅調整 */
.w-syou  { width: 18%; }
.w-name  { width: 32%; }
.w-bunya { width: 13%; }
.w-bridge-syou { width: 25%; }
.w-bridge-name { width: 32%; }



/* 募集要項-表
------------------------------------------------*/
.list_dl_hyou {
	width: 100%;
    border: 1px solid #999;
    border-top: none;
    margin: 5px 0 20px 0;
    line-height: 170%;
    display: table;
    table-layout: fixed;
}
.list_dl_hyou dt {
	min-width: 140px;
	height: auto;
    border-top: 1px solid #999;
    padding: 5px 5px 5px 10px;
	font-weight: 700;
    display: table-cell;
	background: #f2f2f2;
}
.list_dl_hyou dd {
	width: 100%;
    border-top: 1px solid #999;
	margin: 0;
    padding: 5px;
    display: table-cell;
}
.list_dl_hyou dd ul {
	margin: 0 0 0 1.5em;
    line-height: 140%;
}
.list_dl_hyou dd li {
	padding: 5px 0;
	list-style: disc;
	list-style-position: outside;
}
.list_dl_hyou dt span {
    display: block;
}

/* 募集要項-表（賞）
------------------------------------------------*/
.list_dl_syou {
	width: 100%;
    margin: 5px 0 20px 0;
    line-height: 170%;
    display: table;
    table-layout: fixed;
}
.list_dl_syou dl {
    border: 1px solid #999;
    border-top: none;
	margin: 0 0 0 20px;
}
.list_dl_syou dt {
	min-width: 190px;
	height: auto;
    padding: 5px 5px 5px 10px;
	font-weight: 700;
    display: table-cell;
	background: #f2f2f2;
}
.list_dl_syou dd {
	width: 100%;
	margin: 0;
    padding: 5px 10px 5px 15px;
    display: table-cell;
}
dl.bdr {
    border-top: 1px solid #999;
}
.list_dl_syou dt span {
    display: block;
	text-indent: 2.6em;
}
.list_dl_syou dd p {
	font-weight: 700;
}

/* スケジュール
---------------------------------------------------*/
.list_dl_schedule {
	width: 100%;
	margin: 0 5px 0 0;
	padding: 10px 0;
	background: #fff;
	text-align: center;
	line-height: 140%;
}
.list_dl_schedule dl {
	margin: 0;
    border: 1px solid #999;
    border-top: none;
}
.list_dl_schedule dt {
    border-top: 1px solid #999;
	padding: 5px 0;
	font-weight: 700;
	display: block;
	background: #f2f2f2;
}
.list_dl_schedule dd {
	margin: 0;
	padding: 8px 5px;
	display: block;
}
.list_dl_schedule img {
	vertical-align: top;
}

/* プログラム
---------------------------------------------------*/
.pro-table {
	width: 100%;
	border-top: 1px solid #23607c;
}
.pro-table th {
	padding: 5px 0 5px 7px;
	border-bottom: 1px solid #23607c;
	width: 130px;
	color: #23607c;
	background: #EDF3FE;
	font-weight: 700;
	vertical-align: top;
}
.pro-table td {
	padding: 8px 6px;
	border-bottom: 1px solid #23607c;
	vertical-align: top;
}
.pro-table td.title {
	border-width: 0;
	vertical-align: top;
	color: #444;
	background: #c9e4f1;
	font-weight: 700;
}
.pro-table dt {
	padding-left: 20px;
	float: left;
}
.pro-table dd {
	margin-bottom: 0;
	padding: 0 0 0 120px;
}
.pro-table .pdf-data a {
	padding: 1px 5px;
	color: #e64600;
	font-weight: 700;
	text-decoration: none;
}
.pro-table .pdf-data a:hover {
	color: #999;
	text-decoration: underline;
}

/* プレゼンテーション
---------------------------------------------------*/
.presen-table {
	border-top: 1px solid #23607c;
	width: 100%;
}
.presen-table thead {
	border-bottom: 1px solid #23607c;
	font-weight: 700;
	color: #23607c;
}
.presen-table thead th {
	padding: 0 7px;
	width: 70px;
}
.presen-table thead td {
	padding: 5px 6px 0;
}
.presen-table thead td.title02 {
	/*width: 445px;*/
	background: #fff;
	color: #23607c;
}

.presen-table tbody th {
	padding: 8px 7px;
	border-bottom: 1px solid #23607c;
	width: 70px;
	color: #23607c;
	background: #EDF3FE;
	font-weight: 700;
	vertical-align: top;
}
.presen-table tbody td {
	padding: 8px 6px;
	border-bottom: 1px solid #23607c;
}
.presen-table td.title02 {
	border-width: 0;
	/*width: 445px;*/
	vertical-align: top;
	color: #444;
	background: #c9e4f1;
	font-weight: 700;
}
.presen-table td.field01,
.presen-table td.field02,
.presen-table td.field03,
.presen-table td.field04,
.presen-table td.field05,
.presen-table td.field06,
.presen-table td.field07,
.presen-table td.field08,
.presen-table td.field09 {
	width: 110px;
}

.presen-table td.bdr_none {
	border-width: 0;
}


@media only screen and (max-width: 1080px) {
html {
	/*font-size: 18px;*/
}
#header {
	margin: 0;
}

#contents {
	padding: 0;
}

#main {
	float: none;
	clear: both;
	width: 100%;
}

#main-in {
	margin: 0 auto;
}

.topimg {
    display: table-row;
	text-align: center;
	margin: 0 auto;
	width: 100%;
}

.side {
    display: table-row;
	padding: 15px;
	width: 100%;
}

.main-contents {
	padding: 15px;
}

nav {
	float: none;
	width: 100%;
	margin: 0;

}
nav h3 {
	clear: both;
	position: relative;
	z-index: 9999;
	margin: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
nav li.now a {
	background: #eaeaea;
	color: #444;
	font-weight: 400;
}
nav li.now a:hover {
	background: #fff;
	color: #00b1c6;
	font-weight: 400;
}
nav ul li.nolink {
	color: #ccc;
	text-align: center;
}

#menu {
	display: none;
	position: relative;
}
#menu:after {
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: #ccc;
}

nav ul {
	background: #eaeaea;
}
nav ul:before,nav ul:after {
	content: "";
	display: table;
}
nav ul:after {
	clear: both;
}
nav ul {
	*zoom: 1;
}
nav ul li {
	float: left;
	width: 25%;
	box-sizing: border-box;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
nav ul li:nth-of-type(4n) {
	border-right: 0;
}
nav ul li a {
	text-align: center;
	padding: 12px 0;
}
nav ul li a:hover {
	background: #fff;
}

#toggle {
	display: block;
	position: relative;
	width: 100%;
	background: #222;
}

#toggle a {
	display: block;
	position: relative;
	padding: 15px 0 10px;
	color: #fff;
	text-align: center;
	text-decoration: none;
}
#toggle:before {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 10px;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	background: #fff;
}
#toggle a:before,#toggle a:after {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 10px;
	width: 20px;
	height: 4px;
	background: #222;
}
#toggle a:before {
	margin-top: -6px;
}
#toggle a:after {
	margin-top: 2px;
}

.news {
	width: 100%;
}

dl.list_dl_style01 {
    margin: 10px 0 0;
    line-height: 170%;
    width: 100%;
}
.list_dl_style01 dt {
    padding: 10px 0 0 5px;
    border-top: 1px solid #e5e5e5;
    float: none;
    width: 100%;
    font-weight: 700;
	letter-spacing: 1px;
}
.list_dl_style01 dd {
    margin: 0;
    padding: 0 5px 10px;
    border-top: none;  
}

dl.list_dl_syusai {
    margin: 10px 0 0;
    line-height: 170%;
    width: 100%;
}
.list_dl_syusai dt {
    padding: 10px 0 0 5px;
    border-top: 1px solid #e5e5e5;
    float: none;
    width: 100%;
    font-weight: 700;
	letter-spacing: 1px;
}
.list_dl_syusai dd {
    margin: 0;
    padding: 0 5px 10px;
    border-top: none;  
}

.tablebox {
    display: table;
    table-layout: fixed;
	width: 100%;
}
div.box01,
div.box02,
div.box03,
div.box04 {
	border-bottom: 10px solid #fff;
    display: table-row;
    width: 100%;
}

.top-syusai {
    padding-top: 0;
}

/* nest-block
---------------------------------------------------*/
.nest-block {
	margin: 5px 0 30px 20px;
	min-width: 97%;
	line-height: 170%;
}

#bosyu-form-top li a,
#bosyu-form-top li.no-link {
	margin: 0 0 10px;
	padding: 10px 5px 5px;
	text-align: center;
}
#bosyu-form-top li img {
	width: 50px;
	height: 50px;
	margin: 0 auto 5px;
	vertical-align: middle;
	text-align: center;
	display: block;
	float: none;
}

#bosyu-form-kyoryo a {   
	font-size: 115%; /* 16px */
}

.award {
	border: none;
	margin: 0 0 20px 0;
	background: #fff;
	display: block;
}
.award thead {
	display: none;
}
.award tbody {
	display: block;
}
.award tbody tr {
	display: block;
	margin-bottom: 1.5em;
	border-bottom: 1px solid #999;
}
.award tbody th,.award tbody td {
	display: list-item;
	border: none;
	border-right: 1px solid #999;
	border-left: 1px solid #999;
	padding: 5px 10px;
}
.award tbody th {
	border-top: 1px solid #999;
	margin: 20px 0 0;
	list-style-type: none;
	background: #dcdcdc;
}
.award tbody td {
	list-style-type: none;
}

#bosyu-form li {
	display: table-row;
}
#bosyu-form li a {
	margin: 0 0 10px;
}

#bosyu-form li.no-link {
	margin: 10px 0 0;
	padding: 10px 5px 5px;
	text-align: center;
	display: block;
}
#bosyu-form li.no-link02 {
	margin: 0;
	padding: 10px 5px 5px;
	text-align: center;
	display: block;
}
#bosyu-form li.no-link img,
#bosyu-form li.no-link02 img {
	width: 50px;
	height: 50px;
	margin: 0 auto 5px;
	vertical-align: middle;
	text-align: center;
	display: block;
	float: none;
}
#bosyu-form p.no-link img {
	width: 50px;
	height: 50px;
	margin: 0 auto 5px;
	vertical-align: middle;
	text-align: center;
	display: block;
	float: none;
}

.list_dl_syusai dt span {
    display: inline-block;
}
.list_dl_syusai dd span {
	margin: 0;
	display: block;
}

.list_dl_hyou {
    border: none;
}
.list_dl_hyou dt {
    border: none;
    padding: 3px 10px;
    display: block;
	background: #e5e5e5;
}
.list_dl_hyou dd {
    border: none;
    padding: 10px 5px 15px;
}
.list_dl_hyou dt span {
    display: inline-block;
}

.list_dl_syou dl {
    border: none;
}
.list_dl_syou dt {
    border: none;
    padding: 3px;
    display: block;
	background: #e5e5e5;
}
.list_dl_syou dd {
    border: none;
    padding: 10px 5px 15px;
}
.list_dl_syou dt span {
    display: inline-block;
	text-indent: 1em;
}

.pro-table th {
	width: 70px;
}
.pro-table td {
	display: list-item;
	list-style-type: none;
	height: auto;
}

.btn-ust img {
	display: none;
}
.btn-ust span {
	display: none;
}

.btn-yt img {
	display: none;
}
.btn-yt span {
	display: none;
}

.presen-table thead {
	display: none;
}
.presen-table tbody th {
	padding: 8px 5px;
	border-bottom: 1px solid #23607c;
	width: 70px;
}
.presen-table td.title02 {
	/*max-width: 170px;*/
}
}

@media only screen and (max-width: 767px) {
nav ul li {
    width: 50%;
}
nav ul li:nth-of-type(2n) {
    border-right: 0;
}

/* nest-block
---------------------------------------------------*/
.nest-block {
	margin: 5px 0 30px;
	max-width: 700px;
	line-height: 170%;
}

#bosyu-form-top li a,
#bosyu-form-top li.no-link {
	margin: 0 0 10px;
	padding: 10px 5px 5px;
	text-align: center;
}
#bosyu-form-top li img {
	width: 50px;
	height: 50px;
	margin: 0 auto 5px;
	vertical-align: middle;
	text-align: center;
	display: block;
	float: none;
}

#bosyu-form-kyoryo a {   
	font-size: 115%; /* 16px */
}

.award {
	border: none;
	margin: 0 0 20px 0;
	background: #fff;
	display: block;
}
.award thead {
	display: none;
}
.award tbody {
	display: block;
}
.award tbody tr {
	display: block;
	margin-bottom: 1.5em;
	border-bottom: 1px solid #999;
}
.award tbody th,.award tbody td {
	display: list-item;
	border: none;
	border-right: 1px solid #999;
	border-left: 1px solid #999;
	padding: 5px 10px;
}
.award tbody th {
	border-top: 1px solid #999;
	margin: 20px 0 0;
	list-style-type: none;
	background: #dcdcdc;
}
.award tbody td {
	list-style-type: none;
}

#bosyu-form li {
	display: table-row;
}
#bosyu-form li a {
	margin: 0 0 10px;
}

.list_dl_syusai dt span {
    display: inline-block;
}
.list_dl_syusai dd span {
	margin: 0;
	display: block;
}

.list_dl_hyou {
    border: none;
}
.list_dl_hyou dt {
    border: none;
    padding: 3px 10px;
    display: block;
	background: #e5e5e5;
}
.list_dl_hyou dd {
    border: none;
    padding: 10px 5px 15px;
}
.list_dl_hyou dt span {
    display: inline-block;
}

.list_dl_syou dl {
    border: none;
}
.list_dl_syou dt {
    border: none;
    padding: 3px;
    display: block;
	background: #e5e5e5;
}
.list_dl_syou dd {
    border: none;
    padding: 10px 5px 15px;
}
.list_dl_syou dt span {
    display: inline-block;
	text-indent: 1em;
}

.pro-table th {
	width: 70px;
}
.pro-table td {
	display: list-item;
	list-style-type: none;
	height: auto;
}

.btn-ust img {
	display: none;
}
.btn-ust span {
	display: none;
}

.btn-yt img {
	display: none;
}
.btn-yt span {
	display: none;
}

.other-button {
	width: 100%;
	margin: 10px 0 10px 15px;
}
.other-button span {
	text-align: center;
}

.presen-table thead {
	display: none;
}
.presen-table tbody th {
	padding: 8px 5px;
	border-bottom: 1px solid #23607c;
	width: 70px;
}
.presen-table td.title02 {
	/*max-width: 170px;*/
}
.presen-table td.field01,
.presen-table td.field02,
.presen-table td.field03,
.presen-table td.field04,
.presen-table td.field05,
.presen-table td.field06,
.presen-table td.field07,
.presen-table td.field08,
.presen-table td.field09 {
	width: 90px;
}

/* 画像サイズを幅いっぱいに合わせる */
p img {
    width: 100%;
}
/* 画像サイズを幅いっぱいに合わせる */
p.qr img {
    width: 50%;
}
}

@media only screen and (max-width: 479px) {
nav ul li {
    float: none;
    width: 100%;
}
.topimg img {
    width: 100%;
}

.list-ul-style02b li.w {
	min-width: 320px;
}
}

/* pagetop
---------------------------------------- */
#pagetop {
	position: fixed;
	bottom: 15px;
	right: 20px;
	cursor: pointer;
	z-index: 10;
}

/* Adobe Reader download
---------------------------------------------------*/
ul.download {
	width: 100%;
    display: table;
	font-size: 79%; /* 11px */
	line-height: 130%;
	background: #f2f2f2;
}
.download li {
	padding: 5px 0 5px 5px;
	list-style: none;
	vertical-align: middle;
    display: table-cell;
}
.download img {
	padding: 0 0 0 10px;
}

/* fin
---------------------------------------------------*/
.fin {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	margin: 0 0 10px;
	padding: 10px;
	background: #00b1c6;
	color: #fff;
	font-weight: 700;
	display: block;
	line-height: 120%;
	text-align: center;
}

/* h2-midashi */
.midashi00 { background: #00b1c6; }
.midashi01 { background: #569CE3; }
.midashi02 { background: #E88642; }
.midashi03 { background: #E1B700; }
.midashi04 { background: #9ECC36; }
.midashi05 { background: #66B44E; }
.midashi06 { background: #3CBC7E; }
.midashi07 { background: #50BABA; }
.midashi08 { background: #A96DA5; }
.midashi09 { background: #66CCBE; }
.midashi10 { background: #AAAAE2; }
.midashi11 { background: #F090AD; }
.midashi12 { background: #E87774; }
.midashi13 { background: #889FB7; }

/* h3-midashi */
.h3_00 { border-color: #00b1c6; color: #00b1c6; }
.h3_01 { border-color: #569CE3; color: #569CE3; }
.h3_02 { border-color: #E88642; color: #E88642; }
.h3_03 { border-color: #E1B700; color: #E1B700; }
.h3_04 { border-color: #9ECC36; color: #9ECC36; }
.h3_05 { border-color: #66B44E; color: #66B44E; }
.h3_06 { border-color: #3CBC7E; color: #3CBC7E; }
.h3_07 { border-color: #50BABA; color: #50BABA; }
.h3_08 { border-color: #A96DA5; color: #A96DA5; }
.h3_09 { border-color: #66CCBE; color: #66CCBE; }
.h3_10 { border-color: #AAAAE2; color: #AAAAE2; }
.h3_11 { border-color: #F090AD; color: #F090AD; }
.h3_12 { border-color: #E87774; color: #E87774; }

/* h4-midashi */
.h4_01 { padding-bottom: 0; padding-left: 0; color: #1c8faa; }

/* category color */
.field01,
.field02,
.field03,
.field04,
.field05,
.field06,
.field07,
.field08,
.field09 {
	color: #fff;
}
.field01 { background: #C09B0E; }
.field02 { background: #00A458; }
.field03 { background: #A1529B; }
.field04 { background: #187FC4; }
.field05 { background: #F08300; }
.field06 { background: #A29799; }
.field07 { background: #E60012; }
.field08 { background: #ABCD03; }
.field09 { background: #00aca8; }

.subtop {
}
.subtop img {
	width: 100%;
}

/* 幅 */
.wid025 { width: 25px; }
.wid030 { width: 30px; }
.wid040 { width: 40px; }
.wid050 { width: 50px; }
.wid060 { width: 60px; }
.wid070 { width: 70px; }
.wid090 { width: 90px; }
.wid100 { width: 100px; }
.wid110 { width: 110px; }
.wid120 { width: 120px; }
.wid135 { width: 135px; }
.wid165 { width: 165px; }
.wid185 { width: 185px; }
.wid195 { width: 195px; }
.wid210 { width: 210px; }
.wid220 { width: 220px; }
.wid230 { width: 230px; }
.wid260 { width: 260px; }
.wid280 { width: 280px; }
.wid290 { width: 290px; }
.wid300 { width: 300px; }
.wid360 { width: 360px; }
.wid450 { width: 450px; }
.wid625 { width: 625px; }</pre></body></html>