@charset "utf-8";
/*
再利用可能な全てのオブジェクトを記述します。
All objects that are reusable will be written.

接頭辞はComponentの頭文字を取って【c_】とします。
Prefix will take the "Component" first letter and use it as "c_".

ここで指定するのは以下の様なものと予想されます。
You might use the following.
.c_btn/.c_breadclumb/.c_hero/.c_serch/.c_dropdown/
.c_card/.c_feature/.c_overlay/.c_form/.c_thumbnail/.c_box

モディファイヤを使用する場合は接頭辞【is_】をつけ、各コンポーネントの下に記述します。
When using modifier put the prefix "is_" and write it under each component.

フォントサイズはremで指定します。
"rem" will be used for font-size.

//sample
.c_btn {
	display: inline-block;
	padding: 15px 20px;
	border-radius: 5px;
	text-decoration: none;
}
.c_btn:hover { opacity: 0.8; }
.c_btn.is_btn_disable { cursor: inherit; }
.c_btn.is_btn_blue{
	color: rgb(255, 255, 255);
	background: rgb(1, 153, 224) none repeat scroll 0% 0%;
}

*/
/*----------------------------------------------
	.class name
---------------------------------------------*/
/*----------------------------------------------
	.c_nav_type01
---------------------------------------------*/
.c_nav_type01 {
	list-style: none;
	border-radius: 10px;
	box-shadow: 0px 0px 7px 3px rgba(153, 132, 111, 0.2);
}

.c_nav_type01 li:not(:last-of-type) a {
/* .c_nav_type01 li:not(:last-of-type) span */
	border-bottom: 1px solid #edd9c4;
}
.c_nav_type01 li a {
/* .c_nav_type01 li span */
	/*display: block;*/
	display: table;
	width: 100%;
	padding: 13px 10px 12px 40px;
	font-size: 1.6rem;
	color: #533f35;
	text-decoration: none;
	text-align: left;
	font-weight: bold;
	position: relative;
	line-height: 1.3;
	background: url(../images/ico_nav.png) 15px 50% no-repeat,
		-moz-linear-gradient(left, rgba(214, 172, 126, 1) 0%, rgba(231, 192, 148, 0.7) 100%);
	background: url(../images/ico_nav.png) 15px 50% no-repeat,
		-webkit-linear-gradient(left, rgba(214, 172, 126, 1) 0%, rgba(231, 192, 148, 0.7) 100%);
	background: url(../images/ico_nav.png) 15px 50% no-repeat,
		linear-gradient(to right, rgba(214, 172, 126, 1) 0%, rgba(231, 192, 148, 0.7) 100%);
}

.c_nav_type01 li:hover a,
.c_nav_type01 li.active a {
	background: url(../images/ico_nav.png) 15px 50% no-repeat, #f0ce84;
	background: url(../images/ico_nav.png) 15px 50% no-repeat, -moz-linear-gradient(left, #f0ce84 0%, #f9f0c7 100%);
	background: url(../images/ico_nav.png) 15px 50% no-repeat, -webkit-linear-gradient(left, #f0ce84 0%, #f9f0c7 100%);
	background: url(../images/ico_nav.png) 15px 50% no-repeat, linear-gradient(to right, #f0ce84 0%, #f9f0c7 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f0ce84', endColorstr='#f9f0c7', GradientType=1);
}

.c_nav_type01 > li:first-child * {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
.c_nav_type01 > li:last-child * {
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.c_nav_type01 li.is_external a::after,
.c_nav_type01 li.is_pdf a::after,
.c_nav_type01 li.is_word a::after,
.c_nav_type01 li.is_ppt a::after,
.c_nav_type01 li.is_excel a::after {
	content: " ";
	display: inline-block;
	width: 16px;
	height: 18px;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 15px;
}
.c_nav_type01 li.is_external a::after {
	background: url(../images/icon_external_nav.png) no-repeat;
}
.c_nav_type01 li.is_external a:hover::after {
	background: url(../images/icon_external_nav_o.png) no-repeat;
}
.c_nav_type01 li.is_pdf a::after {
	background: url(../images/icon_pdf.png) no-repeat;
}
.c_nav_type01 li.is_word a::after {
	background: url(../images/icon_word.png) no-repeat;
}
.c_nav_type01 li.is_ppt a::after {
	background: url(../images/icon_powerpoint.png) no-repeat;
}
.c_nav_type01 li.is_excel a::after {
	background: url(../images/icon_excel.png) no-repeat;
}

.pdfprogram {
	cursor: pointer;
}

.c_nav_type01 .is_badge {
	display: table-cell;
	color: #f00;
	vertical-align: middle;
}

/*----------------------------------------------
  .c_contact_type02
---------------------------------------------*/
.c_contact_type02 {
}

.c_contact_type02 .c_contact_header {
	color: #ffd117;
	font-size: 1.6rem;
	font-weight: bold;
}

.c_contact_type02 .c_contact_details {
	line-height: 1.5;
	color: #fff;
	font-size: 1.4rem;
}

/*----------------------------------------------
  	.c_news_type02
  ---------------------------------------------*/
.c_news_type02 {
	height: 328px;
	overflow-y: auto;
	position: relative;
	font-size: 1.4rem;
	background: #fff;
	padding: 0 10px;
	margin: 10px 0;
}

.c_news_type02 dt {
	font-weight: bold;
	display: block;
}

.c_news_type02 dt:not(:first-child) {
	padding-top: 10px;
}

.c_news_type02 dd {
	padding-bottom: 10px;
	word-wrap: break-word;
}

.c_news_type02 dd a {
	color: #1086b4;
	text-decoration: underline;
}

.c_news_type02 dd a:hover {
	color: #ddb589;
}

.c_news_type02 dt:not(:first-of-type) {
	border-top: 2px dotted #ddd;
}
/*----------------------------------------------
  	.c_ttl_type01
  ---------------------------------------------*/
.c_ttl_type01 {
	font-size: 2.4rem;
	font-weight: bold;
	background: url(../images/h1_bg.png);
	color: #fff;
	padding: 12px 20px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
/*----------------------------------------------
    .c_ttl_type02
---------------------------------------------*/
.c_ttl_type02 {
	padding: 7.5px 10px;
	font-size: 2rem;
	font-weight: bold;
	color: #5e4836;
	background: #f0ca89;
	background: -moz-linear-gradient(left, #f0ca89 0%, #ffe0bc 100%);
	background: -webkit-linear-gradient(left, #f0ca89 0%, #ffe0bc 100%);
	background: linear-gradient(to right, #f0ca89 0%, #ffe0bc 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f0ca89', endColorstr='#ffe0bc', GradientType=1);
	border: 1px solid #c5905e;
	outline: 1px solid #c5905e;
	outline-offset: -3px;
}

.c_ttl_type02.is_green {
	padding: 7.5px 10px;
	font-size: 2rem;
	font-weight: bold;
	color: #5c8840;
	background: #e1efd8;
	border: 1px solid #00b050;
	outline: unset;
}
/*----------------------------------------------
    .c_ttl_type03
---------------------------------------------*/
.c_ttl_type03 {
	font-size: 1.8rem;
	color: #229949;
	padding: 0 0 0 25px;
	position: relative;
	border-bottom: 2px solid #016937;
}

.c_ttl_type03:before {
	content: url(../images/h3_detail.png);
	margin-right: 10px;
	position: absolute;
	top: 2px;
	left: 0;
	bottom: 0;
	margin: auto;
}
/*----------------------------------------------
    .c_ttl_type04
---------------------------------------------*/
.c_ttl_type04 {
	font-size: 1.6rem;
	color: #48b33f;
	position: relative;
}

.c_ttl_type04:before {
	content: url(../images/h4_detail.png);
	margin-right: 5px;
	position: relative;
	top: -2px;
}

/*----------------------------------------------
    .c_ttl_type05
---------------------------------------------*/
.c_ttl_type05 {
	font-size: 1.6rem;
	font-weight: bold;
	color: #b67f3d;
	position: relative;
}

.c_ttl_type05.is_green {
	color: #48b33f;
}

/*----------------------------------------------
  	.is_ttl_bg
---------------------------------------------*/
.is_ttl_bg {
	display: inline-block;
	position: relative;
	padding-right: 8px;
	background: #fff !important;
	z-index: 2;
}

/*----------------------------------------------
  	.is_ttl_sub
---------------------------------------------*/
.is_ttl_sub {
	background: #fff !important;
	display: inline-block;
	position: absolute;
	right: 0;
	z-index: 2;
	padding-left: 10px;
}
#program .c_ttl_type04::after {
	content: '';
	width: 90%;
	height: 1px;
	border-top: 3px dotted #48b33f;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto 0;
	z-index: 1;
}

/*----------------------------------------------
  	.is_ttl_label
---------------------------------------------*/
.is_ttl_label {
	display: block;
	float: left;
	width: 12em;
}

/*----------------------------------------------
  	.is_ttl_session
---------------------------------------------*/
.is_ttl_session {
	display: block;
	padding-left: 12em;
}

/*----------------------------------------------
  	.c_para_type01
---------------------------------------------*/
.c_para_type01 {
	text-align: justify;
	-ms-text-justify: inter-ideograph;
	text-justify: inter-ideograph;
}

/*----------------------------------------------
  	.c_para_type02
---------------------------------------------*/
.c_para_type02 {
	text-indent: 1em;
	text-align: justify;
	-ms-text-justify: inter-ideograph;
	text-justify: inter-ideograph;
}

/*----------------------------------------------
  	.c_para_type03
---------------------------------------------*/
.c_para_type03 {
	padding-left: 20px;
}

/*----------------------------------------------
  	.c_kome_type01
---------------------------------------------*/
.c_kome_type01 {
	text-indent: -1em;
	padding-left: 1em;
}

/*----------------------------------------------
	.c_table_type01
---------------------------------------------*/
.c_table_type01 {
	width: 100%;
}

.c_table_type01 th {
	text-align: left;
	vertical-align: top;
	font-weight: bold;
	white-space: nowrap;
	color: #5e4836;
	background: #ffebd8;
}

.c_table_type01 th,
.c_table_type01 td {
	padding: 10px 20px;
	border: 1px solid #c5905e;
}

.c_table_type01 tr.is_center th {
	text-align: center;
}

.c_table_type01.f14 td {
	font-size: 14px;
	vertical-align: top;
}

.c_table_type01.is_w290 {
	width: 80%;
}

.c_sub_table {
	border-collapse: collapse;
	width: 100%;
}
.c_sub_table td {
	border: none;
	border-top: 1px solid #c5905e;
	font-size: 1.4rem;
}
/*----------------------------------------------
	.c_table_type02
---------------------------------------------*/
.c_table_type02 {
	width: 100%;
}

.c_table_type02 thead tr {
	border-top: 1px solid #418ac5;
	border-bottom: 1px solid #d8e3f0;
}

.c_table_type02 tbody tr:not(:last-child) {
	border-bottom: 2px dotted #e5e5e5;
}

.c_table_type02 thead th {
	vertical-align: top;
	font-weight: bold;
	white-space: nowrap;
	color: #418ac5;
}

.c_table_type02 th,
.c_table_type02 td {
	padding: 7px 0;
	text-align: center;
}

/*----------------------------------------------
	.c_table_type03
---------------------------------------------*/
.c_table_type03 {
	width: 100%;
}

.c_table_type03 thead th {
	color: #fff;
	white-space: nowrap;
	font-weight: bold;
	background: #c5905e;
}

.c_table_type03 tbody th {
	vertical-align: top;
	background: #f8d9ab;
}

.c_table_type03 th,
.c_table_type03 td {
	text-align: center;
	font-weight: normal;
	padding: 5px;
	border: 1px solid #e5e5e5;
}

/*----------------------------------------------
	.c_table_type04
---------------------------------------------*/
.c_table_type04 tr > * {
	vertical-align: top;
	border: 1px solid #333;
}
/*----------------------------------------------
	.c_table_type05
---------------------------------------------*/
.c_table_type05 td {
	padding: 10px 10px 0;
	background-image: linear-gradient(to right, #9e9fa0 33%, rgba(255, 255, 255, 0) 0%);
	background-position: bottom;
	background-size: 4px 1px;
	background-repeat: repeat-x;
}

.c_table_type05 td:first-of-type {
	padding-left: 0;
}

/*----------------------------------------------
	.c_table_type06
---------------------------------------------*/
.c_table_type06 {
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 1.5rem;
	width: 100%;
}

.c_table_type06 th,
.c_table_type06 td {
	text-align: left;
	vertical-align: top;
	padding: 5px 0;
}

.c_table_type06 th {
	font-weight: normal;
}

.c_table_type06 th.is_disc:before {
	color: #00569f;
	position: relative;
	display: inline-block;
	width: 10px;
	vertical-align: middle;
	top: -10px;
	right: 2px;
	text-indent: 0;
	font-size: 1.5rem;
}

.c_table_type06 th.is_disc:before {
	content: "";
	width: 15px;
	height: 7px;
}

.c_table_type06 th.is_disc:before {
	content: "●";
}

/*----------------------------------------------
	.c_table_program_list
---------------------------------------------*/
.c_table_program_list {
	font-size: 1.4rem;
	margin: 0 0 10px 15px;
}
.c_table_program_list th,
.c_table_program_list td {
	vertical-align: top;
}
.is_table_role {
	min-width: 2em;
}
.is_table_colon {
	width: 1em;
}
.is_table_ttl {
	font-size: 1.6rem;
	font-weight: bold;
	color: #b67f3d;
}
.is_table_name {
	min-width: 5em;
}
.is_table_depart p {
	text-indent: -1em;
	padding-left: 1em;
}
.c_table_program_list.is_speaker tr:nth-child(even) td {
	padding-bottom: 5px;
}

/* FOR COLORED LIST TYPE */
/*----------------------------------------------
	.c_list_type01
---------------------------------------------*/
.c_list_type01 {
	vertical-align: top;
}

.c_list_type01 li {
	margin-bottom: 10px;
	list-style: none;
	position: relative;
	font-size: 1.6rem;
}

.c_list_type01 li:last-child {
	margin-bottom: 0px;
}

.c_list_type01 li:before {
	color: #00569f;
	position: relative;
	display: inline-block;
	width: 10px;
	vertical-align: middle;
	top: -4px;
	right: 2px;
	text-indent: 0;
	font-size: 1.5rem;
}

.c_list_type01.is_arrow li:before {
	content: "";
	width: 15px;
	height: 7px;
	background: url(../images/list_arrow.png) no-repeat;
}
.c_list_type01.is_square li:before {
	content: "■";
}

.c_list_type01.is_disc li:before {
	content: "●";
}

.c_list_type01.is_triangle li:before {
	content: "▶";
}

.c_list_type01.is_diamond li:before {
	content: "◆";
}

.c_list_type01.is_decimal {
	counter-reset: is_decimal_counter;
}

.c_list_type01.is_decimal li:before {
	counter-increment: is_decimal_counter;
	content: counter(is_decimal_counter) ".";
	font-weight: bold;
	text-align: right;
	width: 20px;
	margin-right: 5px;
	color: #418ac5;
	vertical-align: unset;
	top: -1px;
}

.c_list_type01.is_triangle li,
.c_list_type01.is_diamond li,
.c_list_type01.is_square li,
.c_list_type01.is_disc li,
.c_list_type01.is_triangle li,
.c_list_type01.is_diamond li {
	text-indent: -10px;
	padding-left: 15px;
}
.c_list_type01.is_decimal li {
	text-indent: -26px;
	padding-left: 26px;
}

/* FOR SIMPLE LIST TYPE */
/*----------------------------------------------
	.c_list_type02
---------------------------------------------*/
.c_list_type02 {
	text-align: justify;
	-ms-text-justify: inter-ideograph;
	text-justify: inter-ideograph;
	padding-left: 20px;
}

.c_list_type02 li {
	margin-bottom: 5px;
}

.c_list_type02.is_disc li {
	list-style: disc;
}

.c_list_type02.is_decimal li {
	list-style: decimal;
}
/*----------------------------------------------
	.c_btn
---------------------------------------------*/
.c_btn {
	display: inline-block;
	padding: 14.5px 30px 13.5px 10px;
	width: 240px;
	text-decoration: none !important;
	color: #fff !important;
	position: relative;
	border-radius: 10px;
	background: #008b4c;
	background: -moz-linear-gradient(left, #008b4c 0%, #1ba649 100%);
	background: -webkit-linear-gradient(left, #008b4c 0%, #1ba649 100%);
	background: linear-gradient(to right, #008b4c 0%, #1ba649 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#008b4c', endColorstr='#1ba649', GradientType=1);
}

a.c_btn:hover {
	background: #006635;
	background: -moz-linear-gradient(left, #006635 0%, #008a4c 100%);
	background: -webkit-linear-gradient(left, #006635 0%, #008a4c 100%);
	background: linear-gradient(to right, #006635 0%, #008a4c 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(
			startColorstr='#006635',
			endColorstr='#008a4c',
			GradientType=1
		); /* IE6-9 */
}

span.c_btn {
	opacity: 0.3;
}
.c_btn.nolink {
	opacity: 1;
	background: #ccc;
	pointer-events: none;
}

.c_btn.-w420 {
	width: 420px;
}
.c_btn.-w450 {
	width: 450px;
}

.c_btn.is_word,
.c_btn.is_excel,
.c_btn.is_ppt,
.c_btn.is_pdf {
	padding: 15px 40px 13px 10px;
}

.c_btn.is_w200 {
	width: 200px;
}
.c_btn.is_w250 {
	width: 250px;
}
.c_btn.is_w320 {
	width: 320px;
}
.c_btn.is_w400 {
	width: 400px;
}

.c_btn.is_blue {
	background: #00569f;
	background: -moz-linear-gradient(bottom, #00569f 0%, #0161b3 100%);
	background: -webkit-linear-gradient(bottom, #00569f 0%, #0161b3 100%);
	background: linear-gradient(to top, #00569f 0%, #0161b3 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00569f', endColorstr='#0161b3', GradientType=1);
}

.c_btn::after,
.c_btn.is_word::after,
.c_btn.is_excel::after,
.c_btn.is_ppt::after,
.c_btn.is_pdf::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 15px;
	width: 18px;
	height: 18px;
	margin: auto 0;
	vertical-align: middle;
}
.c_btn::after {
	background: url(../images/btn_arrow.png) no-repeat;
	background-size: 100%;
	width: 7px;
	height: 12px;
}
.c_btn.is_word::after {
	background: url(../images/icon_btn_word.png) no-repeat;
	background-size: 100%;
}
.c_btn.is_excel::after {
	background: url(../images/icon_btn_excel.png) no-repeat;
	background-size: 100%;
}
.c_btn.is_ppt::after {
	background: url(../images/icon_btn_powerpoint.png) no-repeat;
	background-size: 100%;
}
.c_btn.is_pdf::after {
	background: url(../images/icon_btn_pdf.png) no-repeat;
	background-size: 100%;
	width: 16px;
	height: 20px;
}

.c_btn_pagetop {
	text-align: right;
}
.c_btn_pagetop a {
	display: inline-block;
	color: #5e4836;
	font-size: 1.2rem;
	font-weight: bold;
	transition: all .2s ease;
	padding-left: 10px;
	position: relative;
}
.c_btn_pagetop a:hover {
	text-decoration: none;
}
.c_btn_pagetop a::before {
	content: '↑';
	position: absolute;
	top: -1px;
	bottom: 0;
	left: 0;
	margin: auto;
}

.c_btn_blue {
	display: inline-block;
	padding: 5px 8px 3px;
	margin-bottom: 5px;
	font-size: 1.2rem;
	text-decoration: none !important;
	color: #fff !important;
	position: relative;
	border-radius: 5px;
	background: #00569f;
	background: -moz-linear-gradient(bottom, #00569f 0%, #0161b3 100%);
	background: -webkit-linear-gradient(bottom, #00569f 0%, #0161b3 100%);
	background: linear-gradient(to top, #00569f 0%, #0161b3 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00569f', endColorstr='#0161b3', GradientType=1);
}

a.c_btn_blue:hover {
	background: #0066bd;
	background: -moz-linear-gradient(bottom, #0066bd 0%, #0471ce 100%);
	background: -webkit-linear-gradient(bottom, #0066bd 0%, #0471ce 100%);
	background: linear-gradient(to top, #0066bd 0%, #0471ce 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(
			startColorstr='#0066bd',
			endColorstr='#0471ce',
			GradientType=1
		); /* IE6-9 */
}

.c_btn_top {
	position: absolute;
	padding: 20px 7px 20px 10px;
	font-size: 1.3rem;
	font-weight: bold;
	text-decoration: none !important;
	color: #fff !important;
	border-radius: 10px;
	background: #00569f;
	background: -moz-linear-gradient(bottom, #00569f 0%, #0161b3 100%);
	background: -webkit-linear-gradient(bottom, #00569f 0%, #0161b3 100%);
	background: linear-gradient(to top, #00569f 0%, #0161b3 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00569f', endColorstr='#0161b3', GradientType=1);
	top: 190px;
	right: 125px;
}

a.c_btn_top:hover {
	background: #0066bd;
	background: -moz-linear-gradient(bottom, #0066bd 0%, #0471ce 100%);
	background: -webkit-linear-gradient(bottom, #0066bd 0%, #0471ce 100%);
	background: linear-gradient(to top, #0066bd 0%, #0471ce 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(
			startColorstr='#0066bd',
			endColorstr='#0471ce',
			GradientType=1
		); /* IE6-9 */
}

#btn_info {
	text-align: center;
}
#poster-item {
	position: absolute;
	top: 340px;
	left: 0;
	right: 0;
	line-height: 1.3;
	width: 100%;
	margin: 0 auto;
}
#poster-item a {
	/* height: 50%; */
	text-decoration: none;
}
#poster-item a:hover {
	color: #FF0000;
	text-decoration: underline;
}

a.c_btn_info {
	display: inline-block;
	text-align: center;
	padding: 55px 0;
	width: 670px;
	text-decoration: none !important;
	color: #fff !important;
	border-radius: 10px;
	background: #b90f1c;
	font-size: 2.6rem;
	font-weight: bold;
	line-height: 1.8;
}

#program a.c_btn_info,
#outline a.c_btn_info {
	padding: 25px 0;
	font-size: 2.2rem;
}

a.c_btn_info:hover {
	background: #81141c;
}

.btn_detail {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	font-size: 1.5rem;
	height: 15px;
	line-height: 1;
}

/*----------------------------------------------
	.c_box_type01
---------------------------------------------*/
.c_box_type01 {
	padding: 20px;
	background: #ebffec;
	border: 1px solid #229949;
	border-radius: 4px;
}
.c_box_type01_header {
	font-weight: bold;
	color: #229949;
	font-size: 1.6rem;
}

/*----------------------------------------------
	.c_box_type02
---------------------------------------------*/
.c_box_type02 {
	padding: 20px;
	background: #fff;
	border: 1px solid #ff1717;
	border-radius: 4px;
}

.c_box_type02_header {
	font-weight: bold;
	color: #ff1717;
	font-size: 1.6rem;
}

/*----------------------------------------------
	.c_box_type03
---------------------------------------------*/
.c_box_type03 {
	padding: 20px;
	border: 2px dotted #c89463;
	color: #ee2b29;
	background: #ffeedc;
	border-radius: 4px;
}

/*----------------------------------------------
	.c_box_type04
---------------------------------------------*/
.c_box_type04 {
	padding: 20px;
	color: #fff;
	background: rgb(249, 173, 60);
	background: -moz-linear-gradient(top, rgba(249, 173, 60, 1) 0%, rgba(250, 100, 46, 1) 100%);
	background: -webkit-linear-gradient(top, rgba(249, 173, 60, 1) 0%, rgba(250, 100, 46, 1) 100%);
	background: linear-gradient(to bottom, rgba(249, 173, 60, 1) 0%, rgba(250, 100, 46, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9ad3c', endColorstr='#fa642e', GradientType=0);
	border-radius: 5px;
}

/*----------------------------------------------
	.c_box_type06
---------------------------------------------*/
.c_box_type06 {
	padding: 20px;
	background: #fff;
	border: 2px solid #ff1717;
	border-radius: 4px;
	background-color: #fff2f2;
}


/*----------------------------------------------
	.c_box_type05
---------------------------------------------*/
.c_box_type05 {
	padding: 20px;
	color: #fff;
	background: #36b35e;
	background-image: -moz-linear-gradient(top, rgba(54, 179, 94, 1) 0%, rgb(35, 123, 63) 100%);
	background-image: -webkit-gradient(
		left top,
		left bottom,
		color-stop(0%, rgba(54, 179, 94, 1)),
		color-stop(100%, rgb(35, 123, 63))
	);
	background-image: -webkit-linear-gradient(top, rgba(54, 179, 94, 1) 0%, rgb(35, 123, 63) 100%);
	background-image: -o-linear-gradient(top, rgba(54, 179, 94, 1) 0%, rgb(35, 123, 63) 100%);
	background-image: -ms-linear-gradient(top, rgba(54, 179, 94, 1) 0%, rgb(35, 123, 63) 100%);
	background-image: linear-gradient(to bottom, rgba(54, 179, 94, 1) 0%, rgb(35, 123, 63) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#36b35e', endColorstr='#2e9950', GradientType=0);
	/*background: rgb(203,150,78);
  background: -moz-linear-gradient(top,  rgba(203,150,78,1) 0%, rgba(225,107,50,1) 100%);
  background: -webkit-linear-gradient(top,  rgba(203,150,78,1) 0%,rgba(225,107,50,1) 100%);
  background: linear-gradient(to bottom,  rgba(203,150,78,1) 0%,rgba(225,107,50,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cb964e', endColorstr='#e16b32',GradientType=0 );*/
}
.c_box_type05 p {
	font-size: 1.5rem;
}

/*----------------------------------------------
	.c_box_type07
---------------------------------------------*/
.c_box_type07 {
	padding: 20px;
	background: #add8e6;
	border: 2px solid #1086b4;
	color: #333;
	border-radius: 4px;
	text-align: center;
	font-size: 2rem;
}
.banner {
	text-decoration: none !important;
}

.c_box_type07.is_cream {
	background: #f5dda8;
	border: 2px solid #fdca5a;
}

/*----------------------------------------------
	.c_box_type08
---------------------------------------------*/
.c_box_type08 {
	font-size: 1.5rem;
	width: 100%;
	height: 100%;
	color: #333;
	padding: 20px;
	border: 1px solid #ee2b29;
}

.c_box_type08:nth-child(2),
.c_box_type08:nth-child(3) {
	border-left: 0;
}

.c_box_type08.is_red { background: #fff2f2; }
.c_box_type08.is_sky {
	background: #add8e6;
	white-space: nowrap;
	height: 12rem;
	display: table-cell;
	vertical-align: middle;
}

.c_box_type08.is_green {
	background: #ebffec;
	white-space: nowrap;
	height: 11.8rem;
	display: table-cell;
	vertical-align: middle;
}

/*Firefox*/
@-moz-document url-prefix() {
	.c_box_type08.is_sky {
    height: 13rem;
	}
	.c_box_type08.is_green {
		height: 12.7rem;
	}
}

/*IE 11*/
@media screen and (min-width:0\0) and (min-resolution: +72dpi) {
	.c_box_type08.is_sky {
    height: 13rem;
	}
	.c_box_type08.is_green {
		height: 12.8rem;
	}
}

/*MS Edge*/
@supports (-ms-ime-align:auto) {
	.c_box_type08.is_sky {
    height: 13rem;
	}
	.c_box_type08.is_green {
		height: 12.6rem;
	}
}

/*----------------------------------------------
.c_anchor_icon
---------------------------------------------*/
a.c_anchor_icon {
	display: inline;
	padding-right: 20px;
}

a[href^="http://"].c_anchor_icon,
a[href^="https://"].c_anchor_icon {
	background: url(../images/icon_external.png) no-repeat right 3px center;
}

a[href$=".xls"].c_anchor_icon,
a[href$=".xlsx"].c_anchor_icon {
	background: url(../images/icon_excel.png) no-repeat right 3px center;
}

a[href$=".doc"].c_anchor_icon,
a[href$=".docx"].c_anchor_icon {
	background: url(../images/icon_word.png) no-repeat right 3px center;
}

a[href$=".ppt"].c_anchor_icon,
a[href$=".pptx"].c_anchor_icon {
	background: url(../images/icon_powerpoint.png) no-repeat right 3px center;
}

a[href$=".pdf"].c_anchor_icon {
	background: url(../images/icon_pdf.png) no-repeat right 3px center;
}
