@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;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
}

.c_nav_type01 li:not(:last-of-type) a,
.c_nav_type01 li:not(:last-of-type) > span{
  border-bottom: 1px solid #64524e;
}
.c_nav_type01 li a,
.c_nav_type01 li > span {
  display: block;
  padding: 10px 35px 10px 10px;
  font-size: 1.6rem;
  color: #fff;
  text-decoration: none;
  text-align: left;
  position: relative;
  line-height: 1.3;
  transition: all 0.15s linear;
  background: url(../images/nav_arrow.png) 250px 50% no-repeat,
  rgba(0, 0, 0, 0.8);
}

.c_nav_type01 li:hover a,
.c_nav_type01 li.active a {
  background: url(../images/nav_arrow.png) 250px 50% no-repeat, #e42e37;
  color: #fff;
}
.c_nav_type01 li.is_external a,
.c_nav_type01 li.is_pdf a,
.c_nav_type01 li.is_word a,
.c_nav_type01 li.is_ppt a,
.c_nav_type01 li.is_excel a {
	background-image: none;
}
.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;
}

.c_nav_type01 li.l_nav_child a {
	font-size: 1.4rem;
	padding: 8px 20px 7px 1.5em;
	background-color: rgba(0,0,0,.5);
}
.c_nav_type01 li.l_nav_child.active a {
	background-color: rgba(255,110,77,1);
}
.c_nav_type01 li.l_nav_child a:hover {
	background-color: rgba(255,110,77,.5);
}
.c_nav_type01 .is_new {
	display: none;
}
.c_nav_type01 .is_new {
	display: inline-block;
	padding: 4px 5px 2px;
	font-size: 1.2rem;
	background-color: #e42e37;
	color: #fff;
	font-weight: bold;
	float: right;
	transition: all .3s ease;
	animation: flash 1s ease infinite;
}
.c_nav_type01 .is_new.is_2line {
	transform: translateY(-10px);
}
.c_nav_type01 li > a:hover .is_new,
.c_nav_type01 li.active > a .is_new {
	background-color: #fff;
	color: #e42e37;
}
@keyframes flash {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0.7;
	}
	80% {
		opacity: 1;
	}
}

/*----------------------------------------------
	.c_inner_nav
---------------------------------------------*/
.c_inner_nav {
 background: #e56b51;
 height: 50px;

}
/*----------------------------------------------
	.c_nav_type02
---------------------------------------------*/
.c_nav_type02 {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.c_nav_type02 li:not(:last-of-type) a,
.c_nav_type02 li:not(:last-of-type) span{
  border-left: 1px solid #cd563d;
}

.c_nav_type02 li {
  float: left;
}

.c_nav_type02 li a,
.c_nav_type02 li span{
  display: block;
  padding: 16px 5px;
  font-size: 1.4rem;
  color: #fff;
  text-decoration: none;
  text-align: center;
  position: relative;
  line-height: 1.3;
  width: 125px;
}

.c_nav_type02 li.is_dbl a,
.c_nav_type02 li.is_dbl span {
  padding: 7px 5px;
}

.c_nav_type02 li:hover a,
.c_nav_type02 li.active a {
  background: #cd563d;
}



/*----------------------------------------------
	.c_contact
---------------------------------------------*/
.c_contact {
	color: #ff6e4d;
  text-decoration: underline;
  font-size: 1.4rem;
  margin-right: 5px;
}
.c_contact:before {
	content: url(../images/icon_mail.png);
  margin-right: 5px;
}

/*----------------------------------------------
  .c_news_type01
---------------------------------------------*/
.c_news_type01 {
  max-height: 205px;
  overflow-y: auto;
  position: relative;
  font-size: 1.5rem;
  color: #333;
}

.c_news_type01 dt,
.c_news_type01 dd {
  padding-top: 9px;
}

.c_news_type01 dt {
  float: left;
  clear: left;
  font-size: 15px;
  padding-top: 9px;
  font-weight: bold;
}

.c_news_type01 dd {
  padding-left: 120px;
  word-wrap: break-word;
  padding-right: 20px;
  padding-bottom: 10px;
}
.c_news_type01 dt:not(:first-of-type) {
  margin-top: 2px;
}
.c_news_type01 dd:not(:first-of-type) {
  border-top: 1px solid #aaaaaa;
}

/*----------------------------------------------
  	.c_ttl_type01
  ---------------------------------------------*/
.c_ttl_type01 {
  font-size: 2.4rem;
  font-weight: bold;
  color: #ff6e4d;
  padding: 12px 20px;
  margin: -30px;
  margin-bottom: 30px!important;
  background: rgb(255,220,212);
  background: -moz-linear-gradient(left, rgba(255,220,212,1) 31%, rgba(255,165,146,1) 100%);
  background: -webkit-linear-gradient(left, rgba(255,220,212,1) 31%,rgba(255,165,146,1) 100%);
  background: linear-gradient(to right, rgba(255,220,212,1) 31%,rgba(255,165,146,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffdcd4', endColorstr='#ffa592',GradientType=1 );
}
/*----------------------------------------------
    .c_ttl_type02
---------------------------------------------*/
.c_ttl_type02 {
  padding: 10px 10px;
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  background: #FFF;
  border-top: 1px solid #e56b51;
}
.c_ttl_type02.is_with_btn {
}
.c_ttl_btn {
	float: right;
}
.c_ttl_btn a,
.c_ttl_btn span {
	display: inline-block;
	vertical-align: top;
	padding: 6px 10px;
	text-decoration: none;
	color: #fff;
	font-size: 1.3rem;
	font-weight: bold;
	background-color: #ff6e4d;
	border-radius: 4px;
	transition: all .3s ease;
}
.c_ttl_btn a:hover {
	background-color: #ce5034;
}
/*----------------------------------------------
    .c_ttl_type03
---------------------------------------------*/
.c_ttl_type03 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #e56b51;
  padding: 5px 15px 5px 3px;
  position: relative;
  border-bottom: 1px solid #CCC;
}

.c_ttl_type03:before {
  content: url(../images/h3_detail.png);
  margin-right: 7px;
  position: relative;
  top: -2px;
}
/*----------------------------------------------
    .c_ttl_type04
---------------------------------------------*/
.c_ttl_type04 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
}

.c_ttl_type04:before {
  content: url(../images/h4_detail.png);
  margin-right: 7px;
  position: relative;
  top: -2px;
}

/*----------------------------------------------
    .c_ttl_type05
---------------------------------------------*/
.c_ttl_type05 {
  font-size: 1.6rem;
  font-weight: bold;
  color: #e56b51;
}

/*----------------------------------------------
  Gradient Sample
---------------------------------------------*/
/*background: -webkit-gradient(left top, right top, color-stop(0%, rgba(16,41,75,1)), color-stop(100%, rgba(10,59,150,1)));
background: -webkit-linear-gradient(left, rgba(16,41,75,1) 0%, rgba(10,59,150,1) 100%);
background: -o-linear-gradient(left, rgba(16,41,75,1) 0%, rgba(10,59,150,1) 100%);
background: -ms-linear-gradient(left, rgba(16,41,75,1) 0%, rgba(10,59,150,1) 100%);
background: linear-gradient(to right, rgba(16,41,75,1) 0%, rgba(10,59,150,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#10294b', endColorstr='#0a3b96', GradientType=1 );*/

/*----------------------------------------------
  	.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_kome_type01
---------------------------------------------*/
.c_kome_type01 {
  text-indent: -1em;
  padding-left: 1em;
}

/*----------------------------------------------
	.c_table_type01
---------------------------------------------*/
.c_table_type01 {
  color: #333;
}

.c_table_type01 thead th {
  text-align: center;
  vertical-align: middle;
   background: #FDBFB1;
}

.c_table_type01 th {
  text-align: left;
  vertical-align: top;
  font-weight: normal;
  background: #FFDCD4;
}
.c_table_type01 td {
  background: #FFF;
}

.c_table_type01 th,
.c_table_type01 td {
  padding: 10px 10px;
  border: 1px solid #F4B6A7;
}


.is_td_center td {
	text-align: center;
}

/*----------------------------------------------
	.c_table_type02
---------------------------------------------*/
.c_table_type02 {
  color: #333;
}

.c_table_type02 tr:nth-child(odd) {
  background: #FFDCD4;
}

.c_table_type02 th {
  text-align: left;
  vertical-align: top;
  font-weight: normal;
  white-space: nowrap;
  color: #ff6e4d;
}

.c_table_type02 th,
.c_table_type02 td {
  padding: 10px 10px;
}


/*----------------------------------------------
	.c_table_type03
---------------------------------------------*/
.c_table_type03 {
  width: 100%;
}

.c_table_type03 thead th {
  color: #333;
  white-space: nowrap;
  font-weight: bold;
  border-bottom: 2px solid #333;
  text-align: center;
}
.c_table_type03 tbody th {
  color: #fff;
  background: #666;
  white-space: nowrap;
}

.c_table_type03 tbody td {
  vertical-align: top;
}

.c_table_type03 th,
.c_table_type03 td {
  font-weight: normal;
  padding: 10px;
}

/*----------------------------------------------
	.c_table_type04
---------------------------------------------*/
.c_table_type04 tr > * {
  vertical-align: top;
  border: 1px solid #333;
}

/*----------------------------------------------
	.c_table_type05
---------------------------------------------*/
/*.c_table_type05 {
	text-align: left;
	font-size: 1.4rem;
	border-collapse: separate;
	border-spacing: 5px;
}
.c_table_type05 th {
	position: relative;
	padding: 0 15px;
}
.c_table_type05 th::before {
	content: '●';
	color: #FFB748;
	font-size: 1rem;
	top: 8%;
	position: absolute;
   text-indent: -1.75em;
}*/


/* FOR COLORED LIST TYPE */
/*----------------------------------------------
	.c_list_type01
---------------------------------------------*/
.c_list_type01 {
  vertical-align: top;
}

.c_list_type01 li {
  list-style: none;
  position: relative;
  margin-bottom: 8px;
  padding-left: 2rem;
  /*text-align: justify;
  -ms-text-justify: inter-ideograph;
  text-justify: inter-ideograph;	*/
}
.c_list_type01 li:before {
  color: #E56B51;
  left: -.5em;
  position: relative;
}
.c_list_type01.is_square li:before {
  content: "■";
}

.c_list_type01.is_disc li:before {
  content: "●";
  font-size: 1rem;
  position: relative;
  top: -2px;
}

.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;
  left: 1em;
  width: 1.5em;
  display: inline-block; */

  font-weight: bold;
  position: relative;
  text-align: right;
  width: 25px;
  display: inline-block;
  text-indent: 0;
  font-size: 1.3rem;
  padding-top: 2px;
}

.c_list_type01.is_triangle li:before {
  content: "▶";
}

.c_list_type01.is_diamond li:before {
  content: "◆";
}

.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: -1rem;
  padding-left: 2rem;
}
.c_list_type01.is_decimal > li {
  text-indent: -2rem;
  padding-left: 2.5rem;
}

.c_list_type01.is_decimal > li > ul > li {
  counter-reset: unset;
}
.c_list_type01.is_decimal > li > ul > li:before {
  counter-increment: unset;
  content: '●';
  top: -2px;
  font-size: 0.5em;
}

/* 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 !important;
}

.c_list_type02.is_decimal li {
  list-style: decimal;
}

/*----------------------------------------------
	.c_list_link
---------------------------------------------*/
.c_list_link {
	font-size: 0;
}
.c_list_link li {
	display: inline-block;
	vertical-align: top;
	width: 48%;
	margin: 0 1% 5px;
}
.c_list_link li a {
	font-size: 1.4rem;
}

/*----------------------------------------------
	.c_btn_type01
---------------------------------------------*/
.c_btn_type01 {
  display: inline-block;
  padding: 11px 60px 10px 17px;
  min-width: 200px;
  text-decoration: none!important;
  color: #FFF;
  text-align: left;
  position: relative;
  vertical-align: top;
  border-radius: 50px;
  font-size: 1.6rem;
}
a.c_btn_type01 {
  background: url(../images/btn_arrow.png) 95% 50% no-repeat, #ff6e4d;
}
span.c_btn_type01 {
  background:  url(../images/btn_arrow.png) 95% 50% no-repeat,#ccc;
}
a.c_btn_type01:hover {
  color: #fff;
  background-color: #ce5034;
  box-shadow: 0 0 10px 0 rgba(228, 99, 70, 0.4);;
}
.c_btn_type01.u_ALcenter {
	padding: 11px 60px 10px;
}
.c_btn_type01.is_w250 { width: 250px; }
.c_btn_type01.is_w320 { width: 320px; }
.c_btn_type01.is_w340 { width: 340px; }
.c_btn_type01.is_w400 { width: 400px; }

.c_btn_type01.is_exlink {
  background-image: url("../images/icon_external_nav.png");
}
.c_btn_type01.is_word {
  background-image: url(../images/icon_btn_word.png);
}
.c_btn_type01.is_excel {
  background-image: url(../images/icon_btn_excel.png);
}
.c_btn_type01.is_ppt {
  background-image: url(../images/icon_btn_powerpoint.png);
	background-size: 16px auto;
}
.c_btn_type01.is_pdf {
  background-image: url(../images/icon_btn_pdf.png);
}
.c_btn_type01.is_exlink::before,
.c_btn_type01.is_word::before,
.c_btn_type01.is_excel::before,
.c_btn_type01.is_ppt::before,
.c_btn_type01.is_pdf::before {
  margin-right: 5px;
  position: relative;
  top: 1px;
}
.c_btn_type01.is_nolink {
	pointer-events: none;
}
.c_btn_alert .c_btn_type01:hover {
	cursor: pointer;
}

/*----------------------------------------------
	.c_btn_type02
---------------------------------------------*/
.c_btn_type02 {
  background: url(../images/poster_btn_detail.png) center right 10px no-repeat, #fff;
  border-radius: 20px;
  min-width: 130px;
  font-size: 1.4rem;
  text-decoration: none;
  display: inline-block;
  padding: 4px 30px 4px 10px;
  color: #333!important;
}

a.c_btn_type02:hover {
  opacity: 0.9;
}

.c_btn_type02.is_w190 {
  width: 190px;
}

/*----------------------------------------------
	.c_btn_type03
---------------------------------------------*/
.c_btn_type03 {
  display: inline-block;
  padding: 22px 29px 18px 72px;
  min-width: 340px;
  background: url(../images/nav_arrow.png) 95% 50% no-repeat,
  url(../images/btn_type03_bg.png) repeat-x;
  text-decoration: none!important;
  color: #fff!important;
  font-size: 2rem;
  border-radius: 40px;
  position: relative;
}

.c_btn_type03.is_blue {
  background: url(../images/nav_arrow.png) 95% 50% no-repeat,
  url(../images/btn_type03_blue.png) repeat-x;
}

a.c_btn_type03:hover {
  opacity: 0.8;
}

.c_btn_type03::before {
  left: 29px;
  margin-top: 0px;
}
.c_btn_type03.is_register::before {
  content: url(../images/icon_register.png);
  position: absolute;
}
.c_btn_type03.is_book::before {
  content: url(../images/icon_book.png);
  position: absolute;
}

/*----------------------------------------------
	.c_btn_type04
---------------------------------------------*/
.c_btn_type04 {
  text-decoration: none!important;
  color: #333!important;
  font-size: 1.8rem;
  border-radius: 25px;
  position: relative;
  display: inline-block;
  padding: 13px 29px 10px 49px;
  min-width: 340px;
  font-weight: bold;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  background: -moz-linear-gradient(left, rgba(254,225,111,0.9) 0%, rgba(255,111,78,0.9) 100%);
  background: -webkit-linear-gradient(left, rgba(254,225,111,0.9) 0%,rgba(255,111,78,0.9) 100%);
  background: linear-gradient(to right, rgba(254,225,111,0.9) 0%,rgba(255,111,78,0.9) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6fee16f', endColorstr='#e6ff6f4e',GradientType=1 );
}

.c_btn_type04.is_important_dates {
  background: #FFF;
}

.c_btn_type04.is_register::before {
  content: url(../images/icon_register.png);
  position: absolute;
  left: 20px;
  top: 15px;
}

.c_btn_type04.is_book::before {
  content: url(../images/icon_book.png);
  position: absolute;
  left: 20px;
  top: 13px;
}

.c_btn_type04.is_bg02 {
  background: -moz-linear-gradient(left, rgba(140,251,223,0.9) 0%, rgba(254,110,77,0.9) 100%);
  background: -webkit-linear-gradient(left, rgba(140,251,223,0.9) 0%,rgba(254,110,77,0.9) 100%);
  background: linear-gradient(to right, rgba(140,251,223,0.9) 0%,rgba(254,110,77,0.9) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e68cfbdf', endColorstr='#e6fe6e4d',GradientType=1 );
}


/*----------------------------------------------
	.c_box_type01
---------------------------------------------*/
.c_box_type01 {
  padding: 20px 30px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
}
.inner .c_box_type01{
  padding: 20px;
  box-shadow: none;
  border: 1px solid #CCC;
}

.c_box_type01_header {
  color: #333;
  position: relative;
  font-size: 1.6rem;
}

.c_box_type01_header:before {
  content: "●";
  color: #e56b51;
  font-size: 1rem;
  position: relative;
  top: -2px;
  margin-right: 5px;
}

.c_box_type01_content {
  font-size: 1.4rem;
}

/*----------------------------------------------
	.c_box_type02
---------------------------------------------*/
.c_box_type02 {
  padding: 20px;
  border: 2px solid #b60000;
  background: #ffeeee;
  color: #b60000;
}

/*----------------------------------------------
	.c_box_type03
---------------------------------------------*/
.c_box_type03 {
  padding: 20px;
  background: #FFF8F0;
  border-radius: 6px;
}

/*----------------------------------------------
	.c_box_type05
---------------------------------------------*/
.c_box_type05 {
	padding: 15px 10px 0;
	background-color: #fff3f3;
	border: 1px solid #ffbcac;
	box-sizing: border-box;
}

/*----------------------------------------------
.c_box_alert
---------------------------------------------*/
.c_box_alert {
	display: none;
	align-items: center;
	width: 90%;
	max-width: 450px;
	/*height: 200px;
	max-height: 320px;*/
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	z-index: 9999;
}
.box_inner {
	padding: 20px;
	background-color: #fff;
	box-shadow: 0 0 10px 0 rgba(0,0,0,.2);
}
.c_box_close {
	text-align: center;
	margin-top: 20px;
}
.c_box_close span {
	display: inline-block;
	padding: 8px 20px;
	background-color: #ff6e4d;
	border-radius: 4px;
	color: #fff;
	text-decoration: none;
	transition: all .3s ease;
}
.c_box_close span:hover {
	background-color: #ce5034;
	cursor: pointer;
}
.l_main_contents:before {
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.8);
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0;
	z-index: -1;
	transition: all .2s ease;
}
.alert_open .l_main_contents:before {
	opacity: 1;
	z-index: 999;
}

/*----------------------------------------------
.c_imglink
---------------------------------------------*/
.c_imglink {
	transition: all .3s ease;
}
.c_imglink:hover {
	opacity: .6;
}

/*----------------------------------------------
.c_img_group
---------------------------------------------*/
.c_img_group {
	width: 100%;
	display: table;
	padding: 10px 0;
	text-align: center;
}
.c_img_group a {
   display: inline-block;
   text-decoration: none;
   transition: all 0.5s ease-in-out;
}
.c_img_group a:hover {
   opacity: 0.6;
}
.c_img_group .img_content {
	width: 50%;
	display: table-cell;
	text-align: center;
	vertical-align: middle;
}


/*----------------------------------------------
.c_anchor_icon
---------------------------------------------*/
a.c_anchor_icon {
    display: inline-block;
    padding-right: 20px;
  }
a[href^="http://"].c_anchor_icon,
a[href^="https://"].c_anchor_icon{ background: url(../images/icon_external.png) no-repeat right center; }

a[href$=".xls"].c_anchor_icon,
a[href$=".xlsx"].c_anchor_icon {  background: url(../images/icon_excel.png) no-repeat right center; }

a[href$=".doc"].c_anchor_icon,
a[href$=".docx"].c_anchor_icon { background: url(../images/icon_word.png) no-repeat right center; }

a[href$=".ppt"].c_anchor_icon,
a[href$=".pptx"].c_anchor_icon { background: url(../images/icon_powerpoint.png) no-repeat right center; }

a[href$=".pdf"].c_anchor_icon { background: url(../images/icon_pdf.png) no-repeat right center; }
