@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_navigation
---------------------------------------------*/
.c_navigation {
  list-style: none;
  display: inline-block;
  float: right;
}

.c_navigation li {
  display: inline-block;
  position: relative;
}

.c_navigation li a,
.c_navigation li span {
  display: block;
  padding: 12px 15px 10px;
  font-size: 1.8rem;
  color: #000;
  line-height: 1;
  font-weight: bold;
  text-decoration: none;
}

.c_navigation li:hover:after,
.c_navigation li.active:after {
  content: " ";
  display: inline-block;
  background: url(../images/icon_nav-active-inner.png) bottom center no-repeat;
  height: 14px;
  width: 12px;
  position: absolute;
  bottom: -23px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

/* .c_navigation li.is_external a::after,
.c_navigation li.is_pdf a::after,
.c_navigation li.is_word a::after,
.c_navigation li.is_ppt a::after,
.c_navigation li.is_excel a::after {
  content: " ";
  display: inline-block;
  width: 16px;
  height: 18px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 15px;
}
.c_navigation li.is_external a::after {
  background: url(../images/icon_external_nav.png) no-repeat;
}
.c_navigation li.is_external a:hover::after {
  background: url(../images/icon_external_nav_o.png) no-repeat;
}
.c_navigation li.is_pdf a::after {
  background: url(../images/icon_pdf.png) no-repeat;
}
.c_navigation li.is_word a::after {
  background: url(../images/icon_word.png) no-repeat;
}
.c_navigation li.is_ppt a::after {
  background: url(../images/icon_powerpoint.png) no-repeat;
}
.c_navigation li.is_excel a::after {
  background: url(../images/icon_excel.png) no-repeat;
} */

/*----------------------------------------------
  	.c_title01
  ---------------------------------------------*/
.c_title01 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  color: #FFF;
  padding: 5px 40px;
  position: relative;
  display: inline-block;
  line-height: 1.3;
  font-family: Arial, Roboto, "Droid Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

.c_title01 span {
  text-align: center;
  font-size: 1.4rem;
  color: #FFF;
  font-weight: normal;
}
.c_title01:before,
.c_title01:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 1px;
  background: rgba(255,255,255, 0.3);
  top: -30px;
  bottom: 0;
  margin: auto 0;
}
.c_title01:before {
  left: 100%;
}
.c_title01:after {
  right: 100%;
}

.c_title01-type02 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  color: #000;
  padding: 5px 60px;
  position: relative;
  display: inline-block;
  line-height: 1.3;
  font-family: Arial, Roboto, "Droid Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
.c_title01-type02 span {
  text-align: center;
  font-size: 1.4rem;
  color: #0071BC;
  font-weight: normal;
}

.c_title01.is_type02:before,
.c_title01.is_type02:after {
  background: #FFF;
  top: 0px;
  width: 115px;
}

/*----------------------------------------------
    .c_ttl02
---------------------------------------------*/
.c_ttl02 {
  padding: 13px 15px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #FFF;
  background: #0071BC;
  border-radius: 10px;
  line-height: 1;
  border: 4px solid #7fb8dd;
  box-shadow: 0 0 0px 1px #00aaff
}

/*----------------------------------------------
    .c_ttl03
---------------------------------------------*/
.c_ttl03 {
  font-size: 2.4rem;
  font-weight: bold;
  color: #000;
  text-align: center;
  position: relative;
  display: block;
}

.c_ttl03 span {
  font-size: 1.8rem;
  font-weight: bold;
  color: #1F80C2;
  display: inline-block;
  margin-top: 30px;
  position: relative;
  padding: 0 20px;
}
.c_ttl03 span:before,
.c_ttl03 span:after {
  content: "";
  position: absolute;
  width: 33px;
  height: 1px;
  background: #A3A2A4;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.c_ttl03 span:before {
  left: 100%;
}
.c_ttl03 span:after {
  right: 100%;
}

/*----------------------------------------------
  	.c_ttl04
---------------------------------------------*/
.c_ttl04 {
  font-size: 1.8rem;
  text-align: center;
  width: 565px;
  line-height: 1;
  background: url(../images/bg_ttl04.png) left no-repeat, #FFF;
  color: #000;
  padding: 10px 0 18px;
}

.c_ttl04 span {
  display: block;
}

/*----------------------------------------------
    .c_ttl-product
---------------------------------------------*/
.c_ttl-product {
  padding-top: 5px;
  font-size: 2.6rem;
  position: relative;
  height: 55px;
}
.c_ttl-product span {
  font-size: 1.2rem;
  font-weight: bold;
  position: absolute;
  left: 460px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  height: 18px;
  color: #000;
}

.c_ttl-product.is_type02 {
  padding-top: 10px;
  font-size: 2.3rem;
  height: 55px;
}
.c_ttl-product.is_type02 span {
  font-size: 1.2rem;
  left: 490px;
  line-height: 1.2;
  height: 28px;
}

.c_ttl-product.is_blue {
  background: url(../images/product-ttl-blue.png) right no-repeat;
}
.c_ttl-product.is_orange {
  background: url(../images/product-ttl-orange.png) right no-repeat;
}
.c_ttl-product.is_green {
  background: url(../images/product-ttl-green.png) right no-repeat;
}
.c_ttl-product.is_purple {
  background: url(../images/product-ttl-purple.png) right no-repeat;
}
.c_ttl-product.is_darkblue {
  background: url(../images/product-ttl-darkblue.png) right no-repeat;
}
.c_ttl-product.is_darkgreen {
  background: url(../images/product-ttl-darkgreen.png) right no-repeat;
}
.c_ttl-product.is_pink {
  background: url(../images/product-ttl-pink.png) right no-repeat;
}
.c_ttl-product.is_brown {
  background: url(../images/product-ttl-brown.png) right no-repeat;
}
/*----------------------------------------------
  	.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_table01
---------------------------------------------*/
.c_table01 {
  width: 100%;
}

.c_table01 thead tr th{
  background: #0071BC;
  color: #FFF;
  text-align: left;
  font-size: 2.4rem;
  padding: 15px 30px;
  line-height: 1;
}

.c_table01 tbody td {
  width: 33%;
  padding: 10px 20px;
  border: 1px solid #ADADAD;
}

.c_table01 .is_gray {
  background: #E6E6E6;
}

/*----------------------------------------------
	.c_table02
---------------------------------------------*/
.c_table02 {
  width: 100%;
  border-bottom: 1px solid #A3A2A4;
}

.c_table02 th {
  text-align: center;
  width: 295px;
  border-top: 3px solid #A3A2A4!important;
  border-bottom: 3px solid #A3A2A4!important;
}

.c_table02 th,
.c_table02 td {
  border-top: 1px solid #A3A2A4;
  padding: 20px;

}

/*----------------------------------------------
	.c_table-nodesign
---------------------------------------------*/
.c_table-nodesign th,
.c_table-nodesign td {
  vertical-align: top;
  padding: 6px 15px;
}

/*----------------------------------------------
	.c_table-nodesign02
---------------------------------------------*/

.c_table-nodesign02 th,
.c_table-nodesign02 td {
  vertical-align: top;
  padding: 5px 10px;
}

.c_table-nodesign02 th {
  width: 190px;
  font-weight: normal;
  text-align: left;
  padding: 5px 0;
}
.c_table-nodesign02.type02 th {
  width: 14%;
}
.c_table-nodesign02.type02 td {
  width: 37%;
}

/*----------------------------------------------
	.c_workflow-list
---------------------------------------------*/
.c_workflow-list > div {
  display: inline-block;
  width: 220px;
}

.c_workflow-list > div > li:not(:last-child) {
  margin-bottom: 10px;
}

.c_workflow-list li {
  list-style: none;
  position: relative;
  font-size: 1.8rem;
  color: #FFF;
  font-weight: bold;
}

.c_workflow-list {
  counter-reset: is_decimal_counter;
}
.c_workflow-list li:before {
  counter-increment: is_decimal_counter;
  content: counter(is_decimal_counter) "";
  font-weight: normal;
  text-align: center;
  display: inline-block;
  width: 25px;
  height: 15px;
  padding: 5px 0;
  line-height: 1;
  margin-right: 10px;
  color: #FFF;
  border-radius: 30px;
  font-size: 1.5rem;

  background: rgb(2,11,80);
  background: -moz-linear-gradient(left,  rgba(2,11,80,1) 0%, rgba(2,42,137,1) 50%, rgba(2,11,80,1) 100%);
  background: -webkit-linear-gradient(left,  rgba(2,11,80,1) 0%,rgba(2,42,137,1) 50%,rgba(2,11,80,1) 100%);
  background: linear-gradient(to right,  rgba(2,11,80,1) 0%,rgba(2,42,137,1) 50%,rgba(2,11,80,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#020b50', endColorstr='#020b50',GradientType=1 );
}
/* FOR COLORED LIST TYPE */

/*----------------------------------------------
	.c_list01
---------------------------------------------*/
.c_list01 {
  vertical-align: top;
}
.c_list01 {
  list-style: none;
  position: relative;
}
.c_list01 li:before {
  color: #0071BC;
  position: relative;
  margin-right: 5px;
}

.c_list01.is_orange li:before {
  color: #EA6000;
}

.c_list01.is_green li:before {
  color: #8DC21F;
}

.c_list01.is_violet li:before {
  color: #2E3192;
}
.c_list01.is_cyan li:before {
  color: #83CAC7;
}

.c_list01.is_square li:before {
  content: "■";
}

/*----------------------------------------------
	.c_list_type01
---------------------------------------------*/
.c_list_type01 {
  vertical-align: top;
}

.c_list_type01 li {
  list-style: none;
  position: relative;
  font-size: 1.6rem;
}
.c_list_type01 li:before {
  color: #ffd14e;
  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_list-ordered
---------------------------------------------*/
.c_list-ordered {
  padding-left: 2.5rem;
}
.c_list-ordered li {
  padding-left: 2rem;
}
.c_list-ordered li:not(:last-child) {
  padding-bottom: 1rem;
}
/*----------------------------------------------
	.c_anchor01
---------------------------------------------*/
.c_anchor01 {
  color: #FFF;
  border-bottom: 1px solid #FFF;
  text-decoration: none;
}
.c_anchor01:hover {
  color: #FFA500;
  border-bottom: 1px solid #FFA500;;
}

/*----------------------------------------------
	.c_btn01
---------------------------------------------*/
.c_btn01 {
  background: rgb(0, 113, 188);
  background: -moz-linear-gradient(left, rgba(0, 113, 188, 1) 0%, rgba(24, 147, 210, 1) 29%, rgba(41, 171, 226, 1) 51%, rgba(0, 113, 188, 1) 100%);
  background: -webkit-linear-gradient(left, rgba(0, 113, 188, 1) 0%, rgba(24, 147, 210, 1) 29%, rgba(41, 171, 226, 1) 51%, rgba(0, 113, 188, 1) 100%);
  background: linear-gradient(to right, rgba(0, 113, 188, 1) 0%, rgba(24, 147, 210, 1) 29%, rgba(41, 171, 226, 1) 51%, rgba(0, 113, 188, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0071bc', endColorstr='#0071bc', GradientType=1);
  display: inline-block;
  width: 280px;
  padding: 21px 10px;
  font-size: 1.8rem;
  color: #FFF!important;
  line-height: 1;
  position: relative;
  bottom: 75px;
  text-decoration: none;
}
.c_btn01.is-type02 {
  padding: 7px 10px;
  line-height: 1.3;
}
.c_btn01:hover {
  opacity: 0.7;
}

.c_btn01.is-type03 {
  padding: 6px 10px;
  font-size: 1.3rem;
  line-height: 1.3;
}

.c_btn01.is-type04 {
  padding: 14px 10px;
  font-size: 1.3rem;
  line-height: 1.3;
}

/*----------------------------------------------
	.c_btn02
---------------------------------------------*/
.c_btn02 {
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  width: 420px;
  padding: 11.5px 0;
  color: #FFF!important;
  text-decoration: none;
  background: rgb(193,39,45);
  background: -moz-linear-gradient(left,  rgba(193,39,45,1) 0%, rgba(237,28,36,1) 50%, rgba(193,39,45,1) 100%);
  background: -webkit-linear-gradient(left,  rgba(193,39,45,1) 0%,rgba(237,28,36,1) 50%,rgba(193,39,45,1) 100%);
  background: linear-gradient(to right,  rgba(193,39,45,1) 0%,rgba(237,28,36,1) 50%,rgba(193,39,45,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c1272d', endColorstr='#c1272d',GradientType=1 );
  box-shadow: 3px 3px 5px 0px #333;
}

.c_btn02:after {
  content: url(../images/icon_cbtn02.png);
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  height: 22px;
  margin: auto 0;
}

.c_btn02:hover {
  opacity: 0.8;
}

.c_btn02.is_type02{
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  width: 420px;
  padding: 11.5px 0;
  color: #FFF!important;
  background: rgb(193,39,45);
  background: -moz-linear-gradient(left,  rgba(193,39,45,1) 0%, rgba(237,28,36,1) 50%, rgba(193,39,45,1) 100%);
  background: -webkit-linear-gradient(left,  rgba(193,39,45,1) 0%,rgba(237,28,36,1) 50%,rgba(193,39,45,1) 100%);
  background: linear-gradient(to right,  rgba(193,39,45,1) 0%,rgba(237,28,36,1) 50%,rgba(193,39,45,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c1272d', endColorstr='#c1272d',GradientType=1 );
  box-shadow: unset;
}

.c_btn02.is_type02:after {
  content: "";
}


/*----------------------------------------------
	.c_btn
---------------------------------------------*/
.c_btn {
  display: inline-block;
  padding: 12px 20px 11px;
  min-width: 240px;
  text-decoration: none!important;
  color: #fff!important;
  position: relative;
  background: #ffb400;
  box-shadow: 0 5px 0 0 #ef9e01;
  border-radius: 25px;
}
a.c_btn:hover {
  background: #fd9628;
  box-shadow: 0 5px 0 0 #e38414;
}

span.c_btn {
  background: #ccd6e2;
  box-shadow: 0 5px 0 0 #bac3ce;
}
.c_btn.is_w250 { width: 250px; }
.c_btn.is_w320 { width: 320px; }
.c_btn.is_w400 { width: 400px; }

.c_btn.is_word,
.c_btn.is_excel,
.c_btn.is_ppt,
.c_btn.is_pdf {
  background: #006bb5;
  box-shadow: 0 5px 0 0 #014a88;
}

.c_btn.is_word::before,
.c_btn.is_excel::before,
.c_btn.is_ppt::before,
.c_btn.is_pdf::before {
  content: "";
  display: inline-block;
  position: relative;
  top: 0;
  bottom: 0;
  width: 18px;
  height: 18px;
  margin: auto 0;
  vertical-align: middle;
  right: 10px;
}
.c_btn.is_word::before {
  background: url(../images/icon_btn_word.png) no-repeat;
  background-size: 100%;
}
.c_btn.is_excel::before {
  background: url(../images/icon_btn_excel.png) no-repeat;
  background-size: 100%;
}
.c_btn.is_ppt::before {
  background: url(../images/icon_btn_powerpoint.png) no-repeat;
  background-size: 100%;
}
.c_btn.is_pdf::before {
  background: url(../images/icon_btn_pdf.png) no-repeat;
  background-size: 100%;
  width: 16px;
  height: 20px;
}

/*----------------------------------------------
	.c_box01
---------------------------------------------*/
.c_box01 {
  width: 450px;
  height: 450px;
  display: inline-block;
  vertical-align: top;
  line-height: 0;
}
.c_box01 img {
  width: 100%;
  line-height: 0;
}

.c_box01-header {
  background: #FFF;
  text-align: center;
  line-height: 1;
  padding: 25px 0;
}
.c_box01-header p {
  font-size: 2.4rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 10px;
}
.c_box01-header span {
  font-size: 1.4rem;
  color: #0071BC;
}

.c_box01-content {
  font-size: 1.8rem;
  background: #FFF;
  text-align: left;
  line-height: 1.3;
  padding: 38px 30px;
  box-shadow: 3px 3px 10px 0px #999;
}
.c_box01-content p {
  color: #333;
}
.c_box01-content.is_dbl {
  padding: 27px 30px;
}

/*----------------------------------------------
	.c_box02
---------------------------------------------*/
.c_box02 {
  width: 465px;
  padding: 20px 40px;
  background: #EEEEEE;
  vertical-align: top;
  min-height: 200px;
}

/*----------------------------------------------
	.c_box03
---------------------------------------------*/
.c_box03 {
  width: 100%;
  padding: 20px 25px;
  background: url(../images/box03-detail.png) right no-repeat, #FFF;
  border-top: 3px solid #0071BC;
  border-bottom: 3px solid #0071BC;
  box-shadow: 3px 3px 5px -1px #999;
}

/*----------------------------------------------
	.c_box04
---------------------------------------------*/
.c_box04 {
  display: inline-block;
  padding: 20px 25px;
  background: #F9CB87;
}

/*----------------------------------------------
	.hr
---------------------------------------------*/
.c_hr01 {
  border-top: 1px solid #5F595D;
}

/*----------------------------------------------
	.hr02
---------------------------------------------*/
.c_hr02 {
  border-top: 1px solid #999;
}


/*----------------------------------------------
.c_phone
---------------------------------------------*/
.c_phone {
  position: relative;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  padding: 3px 0px 2px 50px;
}
.c_phone:before {
  content: url(../images/icon_phone02.png);
  position: absolute;
  width: 29px;
  height: 29px;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
}
/*----------------------------------------------
.c_external01
---------------------------------------------*/
.c_external01 {
 color: #FFF;
 text-decoration: none;
}
.c_external01:before {
 content: url(../images/icon_external01.png);
 margin-right: 10px;
}
/*----------------------------------------------
.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;
}

/*----------------------------------------------
.c_accordion
---------------------------------------------*/
.c_accordion {
  background: url(../images/icon_accordion-detail01.png) left center no-repeat, url(../images/bg_accordion.png);
  color: #444444;
  text-shadow: 2px 2px 0 #FFF;
  font-size: 2.4rem;
  font-weight: normal;
  cursor: pointer;
  padding: 16px 50px 13px;
  width: 100%;
  text-align: left;
  border: 1px solid #999;
  transition: 0.4s;
  line-height: 1;
  position: relative;
  margin-bottom: 20px;
}
.c_accordion.is_category02 {
  background: url(../images/icon_accordion-detail02.png) left center no-repeat, url(../images/bg_accordion.png);
}
.c_accordion.is_category03 {
  background: url(../images/icon_accordion-detail03.png) left center no-repeat, url(../images/bg_accordion.png);
}
.c_accordion.is_category04 {
  background: url(../images/icon_accordion-detail04.png) left center no-repeat, url(../images/bg_accordion.png);
}
.c_accordion.is_category05 {
  background: url(../images/icon_accordion-detail05.png) left center no-repeat, url(../images/bg_accordion.png);
}
.c_accordion.is_category06 {
  background: url(../images/icon_accordion-detail06.png) left center no-repeat, url(../images/bg_accordion.png);
}
.c_accordion.is_category07 {
  background: url(../images/icon_accordion-detail07.png) left center no-repeat, url(../images/bg_accordion.png);
}
.c_accordion.is_category08 {
  background: url(../images/icon_accordion-detail08.png) left center no-repeat, url(../images/bg_accordion.png);
}
.c_accordion p {
  display: inline-block;
}
.c_accordion span {
  font-size: 1.2rem;
  font-weight: bold;
  position: absolute;
  left: 480px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  height: 12px;
  color: #000;
  text-shadow: 0px 0px 0px #FFF;
}

.c_accordion.is_type02 span {
  left: 620px;
  height: 24px;
}

.active.c_accordion, .c_accordion:hover {
  background-color: #ccc;
}

.c_accordion-panel {
  padding: 0 20px ;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.c_accordion-panel-content {
  padding: 30px 0px;
}

.c_accordion:after {
  content: url(../images/icon_accordion-arrow.png);
  position: absolute;
  right: 20px;
  width: 22px;
  height: 19px;
  -ms-transform: rotate(180deg);
      transform: rotate(180deg);
  transition: all 0.3s ease-out;
}

.active.c_accordion:after {
  -ms-transform: rotate(0deg);
      transform: rotate(0deg);
}
