@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;
  background: #fff;
}
.c_nav_type01 li:not(:last-of-type) a,
.c_nav_type01 li:not(:last-of-type) span{
  border-bottom: 1px solid #ddd;
}
.c_nav_type01 li a,
.c_nav_type01 li span{
  display: block;
  padding: 14px 16px;
  font-size: 1.6rem;
  color: #333;
  text-decoration: none;
  text-align: left;
  position: relative;
  /*background: url(../images/nav_arrow.png) 91% 50% no-repeat;*/
  border: 1px solid transparent;
}

.c_nav_type01 li:hover a,
.c_nav_type01 li.active a {
  /*background: url(../images/nav_active_arrow.png) 91% 50% no-repeat, url(../images/nav_active.png);*/
  background: linear-gradient(98deg, #E32D2F, #E8656E 43%, #EE8394 55%, #F7C9DC);
  border-color: #DC384B;
  color: #fff;
	font-weight: bold;
  text-shadow: 5px 5px 5px #CB2D33;
  position: relative;
}

.c_nav_type01 li:first-of-type a,
.c_nav_type01 li:first-of-type span {
  border-radius: 3px 3px 0 0;
}

.c_nav_type01 li:last-of-type a,
.c_nav_type01 li:last-of-type span {
  border-radius: 0 0 3px 3px;
}

.c_nav_type01 li.is_new a::after{
  content: "NEW";
  width: 40px;
  height: 20px;
  color: #fff;
  background: #f00;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
	position: absolute;
	right: 5px;
  top: 50%;
  transform: translateY(-50%);
}
.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:hover a::before,
.c_nav_type01 li.active a::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 2px;
  height: 92%;
  background: #F9D6DF; 
}
/*----------------------------------------------
	.c_nav_type02
---------------------------------------------*/
.c_nav_type02 * {
  list-style: none;
}
.c_nav_type02 li:not(:last-of-type) a,
.c_nav_type02 li:not(:last-of-type) span{
  border-bottom: 1px solid #ccc;
}
.c_nav_type02 li span,
.c_nav_type02 li a {
  padding-left: 18px;
  display: block;
  padding: 16px;
}
.c_nav_type02 li a {
  padding-left: 20px;
}
.c_nav_type02 > li {
  display: block;
  font-size: 1.6rem;
  color: #333;
  text-decoration: none;
  text-align: left;
  position: relative;
  /*background: url(../images/nav_arrow.png) 91% 50% no-repeat;*/
}

.c_nav_type02 > li ul > li:hover a,
.c_nav_type02 > li ul > li.active a {
  /*background: url(../images/nav_active_arrow.png) 91% 50% no-repeat, url(../images/nav_active.png);*/
  color: #333;
  background: #ccc;
}
.c_nav_type02 li.is_external a::after,
.c_nav_type02 li.is_pdf a::after,
.c_nav_type02 li.is_word a::after,
.c_nav_type02 li.is_ppt a::after,
.c_nav_type02 li.is_excel a::after {
  content: " ";
  display: inline-block;
  width: 16px;
  height: 18px;
  vertical-align: middle;
  position: relative;
  margin-left: 10px;
}
.c_nav_type02 li.is_external a::after {
  background: url(../images/icon_external_nav.png) no-repeat;
  background-size: 100%;
}
.c_nav_type02 li.is_external a:hover::after {
  background: url(../images/icon_external_nav_o.png) no-repeat;
  background-size: 100%;
}
.c_nav_type02 li.is_pdf a::after {
  background: url(../images/icon_pdf.png) no-repeat;
  background-size: 100%;
}
.c_nav_type02 li.is_word a::after {
  background: url(../images/icon_word.png) no-repeat;
  background-size: 100%;
}
.c_nav_type02 li.is_ppt a::after {
  background: url(../images/icon_powerpoint.png) no-repeat;
  background-size: 100%;
}
.c_nav_type02 li.is_excel a::after {
  background: url(../images/icon_excel.png) no-repeat;
  background-size: 100%;
}

/*----------------------------------------------
	.c_contact_type01
---------------------------------------------*/
.c_contact_type01 {
	background: #ddd;
  width: 100%;
}
.c_contact_type01 .c_contact_header {
  color: #333;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 10px 15px;
  border-bottom: 2px solid #ccc;
}
.c_contact_type01 .c_contact_details {
  font-size: 1.4rem;
  padding: 12px;
  line-height: 1.5;
}
/*----------------------------------------------
  .c_contact_type02
---------------------------------------------*/
.c_contact_type02{
  background: #ddd;
  border: 2px solid #aaa;
}
.c_contact_type02 .c_contact_header {
  color: #333;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 10px 15px;
  border-bottom: 2px solid #ccc;
}
.c_contact_type02 .c_contact_details {
  font-size: 1.4rem;
  padding: 12px;
  line-height: 1.5;
}

/*----------------------------------------------
  .c_contact_type03
---------------------------------------------*/
.c_contact_type03:first-child:after {
  content: "";
  background: #44160b;
  width: 1px;
  height: 123px;
  position: absolute;
  right: -1px;
  top: 12px;
}
.c_contact_type03 {
  padding:0 50px;
  position: relative;
}
.c_contact_type03 .c_contact_header {
  color: #333;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 5px;
  border: 1px solid #bbb;
	display: inline-block;
}
.c_contact_type03 .c_contact_details {
  font-size: 1.4rem;
  padding: 15px;
  line-height: 1.5;
}

/*----------------------------------------------
  .c_contact_type04
---------------------------------------------*/
.c_contact_type04 {
	background: #ccc;
}
.c_contact_type04 .c_contact_header {
  color: #333;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 5px;
  border: 1px solid #bbb;
	display: inline-block;
	vertical-align: top;
}
.c_contact_type04 .c_contact_details {
  font-size: 1.4rem;
  padding: 0;
  line-height: 1.5;
	display: inline-block;
}

/*----------------------------------------------
  .c_contact_type05
---------------------------------------------*/
.c_contact_type05 {
	background: #ccc;
  width: 100%;
}
.c_contact_type05 .c_contact_header {
  color: #333;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 5px;
  border: 1px solid #bbb;
	display: block;
	vertical-align: top;
}
.c_contact_type05 .c_contact_details {
  font-size: 1.4rem;
  line-height: 1.5;
	display: block;
  padding: 20px;
}


/*----------------------------------------------
  .c_contact_footer
---------------------------------------------*/
 .c_contact_footer .c_contact_header {
  margin-bottom:10px;
  color: #70675B;
  font-size: 1.5rem;
  font-weight: bold;
}
.c_contact_footer .c_contact_details {
	font-size: 1.4rem;
	line-height: 1.5;
}

.c_footer_link {
  color: #CA6190;
}
/*----------------------------------------------
  .c_news_type01
---------------------------------------------*/
.c_news_type01 {
	width: 71%;
  max-height: 370px;
  overflow-y: auto;
  position: relative;
  font-size: 1.6rem;
  border-top: none;
  border-radius: 0 0 5px 5px;
  color: #333;
	direction: rtl;
}
.c_news_type01::-webkit-scrollbar {
  width: 6px;
	direction: rtl;
}
.c_news_type01::-webkit-scrollbar-track {
  background: #fff;
}
.c_news_type01::-webkit-scrollbar-thumb {
  background: #b9baba;
  border-radius: 8px;
}
.c_news_type01::-webkit-scrollbar-track { /* 上下に余白を付ける */
  margin-top: 4px;
  margin-bottom: 4px;
}
.c_news_type01 > * {
	direction: ltr;
}
.c_news_type01 dt,
.c_news_type01 dd {
  padding-top: 20px;
}
.c_news_type01 dt {
	position: relative;
  float: left;
  clear: left;
  padding-left: 20px;
  font-size: 1.6rem;
}
.c_news_type01 dt .is_new {
	position: absolute;
	color: #fff;
	font-size: 1.3rem;
	font-weight: bold;
	right: 0;
	bottom: -22px;
	background: #f00;
	padding: 1px 5px;
	border-radius: 5px;
}
.c_news_type01 dd {
  word-wrap: break-word;
  padding: 20px 5px 20px 132px;
}
.c_news_type01 dt:not(:first-of-type) {
  margin-top: 2px;
}
.c_news_type01 dd:not(:first-of-type) {
  border-top: 2px dotted #ddd;
}

.c_news_img {
	width: 29%;
	text-align: left;
}
.c_news_img img {
	width: 214px;
}

/*----------------------------------------------
  	.c_news_type02
  ---------------------------------------------*/
.c_news_type02 {
  max-height: 216px;
  overflow-y: auto;
  position: relative;
  font-size: 1.6rem;
  color: #333;
}
.c_news_type02 dt {
  font-size: 1.6rem;
  font-weight: bold;
  display: block;
  padding: 15px 15px 0;
}
.c_news_type02 dd {
  padding: 5px 15px 15px;
  word-wrap: break-word;
}
.c_news_type02 dt:not(:first-of-type) {
  border-top: 2px dotted #aaa;
}
/*----------------------------------------------
  	.c_ttl_type01
  ---------------------------------------------*/
.c_ttl_type01 {
  background: linear-gradient(to right, #CABCDB, #896EAF 16%, #DAD2E8);
  border:1px solid #8C72B1;
  border-radius: 3px 3px 0 0;
  color: #fff;
  font-size: 2.6rem;
  font-weight: bold;
  padding: 15px 20px;
  position: relative;
  text-shadow: 3px 3px 6px rgba(113, 84, 154, 0.8);
}

.c_ttl_type01::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 1px;
  height: 92%;
  background: #E0D8EB; 
}

/*----------------------------------------------
    .c_ttl_type02
---------------------------------------------*/
.c_ttl_type02 {
  font-size: 2.2rem;
  font-weight: bold;
	background: linear-gradient(98deg, #2D9AE3, #65C1E8 43%, #7ECCEC 55%, #B4E2F5);
  border-radius: 3px;
  color: #fff;
	padding: 8px 15px;
  text-shadow: 3px 3px 6px #0c89dc;
}

/*----------------------------------------------
    .c_ttl_type03
---------------------------------------------*/
.c_ttl_type03 {
  background: #D0EDF9;
  border-radius: 3px;
  font-size: 2rem;
  font-weight: bold;
  color: #0D84D3;
  padding: 5px 15px;
  position: relative;
}

/*----------------------------------------------
    .c_ttl_type04
---------------------------------------------*/
.c_ttl_type04 {
	border-top: 3px solid #0D84D3;
  border-bottom: 2px solid #ddd;
  color: #333;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 3px 0;
  position: relative;
}

/*----------------------------------------------
    .c_ttl_type05
---------------------------------------------*/
.c_ttl_type05 {
  border-left: 4px solid #CA6190;
  color: #333;
  font-size: 1.6rem;
  font-weight: bold;
  padding-left: 7px;
  position: relative;
}

/*----------------------------------------------
  	.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 {
  border: 1px solid #0D84D3;
  width: 100%;
}

.c_table_type01 thead th {
  background: #0D84D3;
  color: #FFF;
  font-weight: bold;
  text-align: center;
}
.c_table_type01 th {
  text-align: left;
  vertical-align: top;
  font-weight: normal;
  white-space: nowrap;
  color: #333;
  background: #DFF2FF;
}

.c_table_type01 th,
.c_table_type01 td {
  padding: 14px;
  border: 1px solid #A2D0EF;
}

.c_table_type01 tr *:first-child {
  border-left: 1px solid #0D84D3;
}
.c_table_type01 tr *:last-child {
  border-right: 1px solid #0D84D3;
}
.c_table_type01 tr:last-of-type th,
.c_table_type01 tr:last-of-type td {
  border-bottom: 1px solid #0D84D3;
}
.c_table_type01 tr:first-of-type th,
.c_table_type01 tr:first-of-type td {
  border-top: 1px solid #0D84D3;
}

/*----------------------------------------------
	.c_table_type02
---------------------------------------------*/
.c_table_type02 {
  width: 100%;
}

.c_table_type02 tr:nth-child(odd) {
  background: #FFF6CE;
}

.c_table_type02 th {
  color: #333;
  font-weight: normal;
}

.c_table_type02 th,
.c_table_type02 td {
  padding: 10px;
  text-align: left;
}

/*----------------------------------------------
	.c_table_type03
---------------------------------------------*/
.c_table_type03 {
	width: 100%;
	border-top: 3px solid #aaa;
}

.c_table_type03 th {
  color: #333;
  white-space: pre-wrap;
  font-weight: bold;
  text-align: center;
}

.c_table_type03 th,
.c_table_type03 td {
	text-align: center;
  padding: 10px;
	border: 1px solid #aaa;
}

.c_table_type03 thead tr:last-of-type th {
/*  border-bottom: 1px solid #333;*/
}
.c_table_type03 tbody tr th,
.c_table_type03 tbody tr td {
  border-top: none;
}
.c_table_type03 tbody tr:not(:last-of-type) th,
.c_table_type03 tbody tr:not(:last-of-type) td {
  border-bottom: 1px dotted #aaa;
}

/*----------------------------------------------
	.c_table_type04
---------------------------------------------*/
.c_table_type04 tr > * {
  vertical-align: top;
  border: 1px solid #333;
}

/* FOR COLORED LIST TYPE */
/*----------------------------------------------
	.c_list_type01
---------------------------------------------*/
.c_list_type01 {
  vertical-align: top;
}

.c_list_type01 li {
  list-style: none;
  position: relative;
	padding-left: .8em;
}

.c_list_type01.is_decimal li {
  padding-left: 1.8em;
}

.c_list_type01 li::before {
  color: #ffd14e;
  position: absolute;
  display: inline-block;
  width: 10px;
  vertical-align: middle;
  top: 8px;
  left: 0;
}

.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: "";
	width: 8px;
	height: 8px;
	background: #ffd14e;
}

.c_list_type01.is_disc li::before {
  content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #E58340;
	top: 10px;
}

.c_list_type01.is_triangle li::before {
  content: "";
	width: 0;
  height: 0;
  border: solid 5px transparent;
  border-left: solid 7px #E58340;
	top: 7px;
}

.c_list_type01.is_diamond li::before {
	content: "";
  width: 6px;
  height: 6px;
  background: #E58340;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
	top: 9px;
}

.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: 25px;
  margin-right: 5px;
  color: #8C72B1;
  vertical-align: unset;
  top: 0;
}


/* 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_type01
---------------------------------------------*/
.c_btn_type01 {
  display: inline-block;
  padding: 20px;
  min-width: 240px;
  text-decoration: none!important;
	text-shadow: 0 0 10px #e00b43;
  color: #fff!important;
  position: relative;
  background: linear-gradient(to right, #ee174f, #ff6b93);
  border-radius: 5px;
}
a.c_btn_type01:hover {
  opacity: .4;
}

.c_btn_type01.is_word,
.c_btn_type01.is_excel,
.c_btn_type01.is_ppt,
.c_btn_type01.is_pdf {
	text-shadow: 0 0 10px #05a7c4;
  background: linear-gradient(to right, #16a8c4, #84dae9);
}

.c_btn_type01.is_gray {
	text-shadow: none;
  background: #aaa;
}

span.c_btn_type01,
.c_btn_type01.is_disable {
	text-shadow: none;
  background: #ccc;
	pointer-events: none;
}
.c_btn_type01.is_w250 { width: 250px; }
.c_btn_type01.is_w320 { width: 320px; }
.c_btn_type01.is_w400 { width: 400px; }

.c_btn_type01.is_word::before,
.c_btn_type01.is_excel::before,
.c_btn_type01.is_ppt::before,
.c_btn_type01.is_pdf::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
	right: 10px;
  width: 22px;
  height: 22px;
  margin: auto auto auto 10px;
  vertical-align: middle;
}
.c_btn_type01.is_word::before {
  background: url(../images/icon_btn_word.png) no-repeat;
  background-size: 100%;
}
.c_btn_type01.is_excel::before {
  background: url(../images/icon_btn_excel.png) no-repeat;
  background-size: 100%;
}
.c_btn_type01.is_ppt::before {
  background: url(../images/icon_btn_powerpoint.png) no-repeat;
  background-size: 100%;
}
.c_btn_type01.is_pdf::before {
  background: url(../images/icon_btn_pdf03.png) no-repeat;
  background-size: 100%;
}

/*----------------------------------------------
	.c_language_btn
---------------------------------------------*/
.c_language_btn {
  background: linear-gradient(98deg, #2D9AE3, #65C1E8 43%, #7ECCEC 55%, #B4E2F5);
  border: 1px solid #0D84D3;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  padding: 14px 16px;
  position: relative;
  text-align: center;
  text-shadow: 3px 3px 5px #0D84D3;
  text-decoration: none;
  min-width: 240px;
}

.c_language_btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 2px;
  height: 92%;
  background: #D0EDF9; 
}

.c_language_btn:hover {
  color: #fff;
  opacity: 0.4;
}

.c_language_btn:active,
.c_language_btn:focus {
  color: #fff;
}


/*----------------------------------------------
	.c_box_type01
---------------------------------------------*/
.c_box_type01 {
  padding: 15px;
  background: #E3F4FF;
  border: 1px solid #0D84D3;
}
.c_box_type01_header {
  font-weight: bold;
  color: #333;
  font-size: 1.6rem;
}

/*----------------------------------------------
	.c_box_type02
---------------------------------------------*/
.c_box_type02 {
  padding: 15px;
  background: #FFFAE5;
  border: 2px solid #E58340;
  border-radius: 10px;
}

.c_box_type02_header {
  font-weight: bold;
  border-radius: 10px;
  color: #333;
  font-size: 1.6rem;
}

/*----------------------------------------------
	.c_box_type03
---------------------------------------------*/
.c_box_type03 {
  padding: 25px;
  background: #FEEEEE;
  border: 1px solid #ee2b29;
  color: #ee2b29;
}


/*----------------------------------------------
	.c_bnr_box
---------------------------------------------*/
.c_bnr_box {
  border-radius: 5px;
  min-width: 230px;
  text-decoration: none;
}

a.c_bnr_box:hover {
  opacity: .4;
}
.c_bnr_box.is_bnr {
	display: block;
}
.c_bnr_box.is_bnr img {
	width: 230px;
}
.c_bnr_box.is_poster {
  align-items: center;
  background: #BCAE9C;
  color: #fff;
  display: flex;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 11px 19px;
  position: relative;
}

.c_bnr_box.is_poster p {
  text-shadow: 5px 5px 5px #A9957B;
}

.c_bnr_box.is_poster img {
  filter:drop-shadow(3px 3px 3px rgba(169, 149, 123, 0.8));
  position: absolute;
  right: 9.2px;
  top: -33.7px;
  max-width: 100%;
  width: 80px;
}

.c_bnr_box.is_x {
  align-items: center;
  color: #fff;
  background: #232323;
  border-radius: 5px;
  display: flex;
  font-size: 2rem;
  font-weight: bold;
  justify-content: space-between;
  padding: 19px;
  width: 230px;
}

/*----------------------------------------------
.c_anchor_icon
---------------------------------------------*/
a.c_anchor_icon {
  display: inline-block;
  padding: 1px 20px 1px 0;
}
a.c_anchor_icon.is_inline {
	display: inline;
}

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;
}

/*----------------------------------------------
.c_nav_icon
メニューの外部リンク用アイコン
---------------------------------------------*/
a.c_nav_icon {
  background: url("../images/icon_external.png") no-repeat right 5px center;
  display: inline-block;
  padding: 3px 30px 3px 5px;
}
a.c_nav_icon:hover,
a.c_nav_icon.is_hover {
  background: url("../images/icon_external_nav_o.png") no-repeat right 5px center, linear-gradient(91deg, #E32D2F, #E8656E 43%, #EE8394 55%, #F7C9DC);
  color: #fff;
}
