@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 10px rgba(114, 68, 33, .2);
  background-color: #fff;
}

.c_nav_type01.is_en {
  margin-bottom: 20px;
}

.c_nav_type01 li:not(:last-of-type) a,
.c_nav_type01 li:not(:last-of-type) span {
  border-bottom: 1px solid #ccc;
}

.c_nav_type01 li a,
.c_nav_type01 li span {
  display: block;
  font-size: 1.6rem;
  color: #333;
  text-decoration: none;
  text-align: left;
  position: relative;
  background-image: url(../images/nav_arrow.png);
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center right 10px;
  padding: 15px;
}
.c_nav_type01 li.is_mail a {
  background-image: none;
}
.c_nav_type01 li.is_mail:hover a {
  background-image: none;
}
.c_nav_type01.is_en li a,
.c_nav_type01.is_en li span {
  background-color: #EA5205;
  background-image: url("../images/nav_active_arrow.png");
  color: #fff;
}

.c_nav_type01.is_special li a,
.c_nav_type01.is_special li span {
  background-color: #b51d2c;
  background-image: none;
  color: #ffc3c9;
  font-weight: bold;
  text-align: center;
  position: relative;
  text-shadow: 1px 1px #840f0f;
}
.c_nav_type01.is_special li a:after,
.c_nav_type01.is_special li span:after {
  content: "";
  background: none;
  display: block;
  width: calc(100% - 10px);
  height:  calc(100% - 10px);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  border: 1px solid #fff;
}
.c_nav_type01.is_special li a div {
  color: #fff;
}
.c_nav_type01.is_special li a:hover {
  opacity: 0.8;
}

.c_nav_type01 li:hover a,
.c_nav_type01 li.active a {
  background-image: url(../images/nav_active_arrow.png);
  color: #fff;
  background-color: #F6B041;
  font-weight: bold;
}

.c_nav_type01 li.is_new a::before {
  content: "NEW";
  width: 40px;
  height: 20px;
  color: #fff;
  background: #f00;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  position: absolute;
  right: 30px;
  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: 30px;
}
.c_nav_type01 li.is_mail a::after {
  content: " ";
  display: inline-block;
  position: absolute;
  width: 20px;
  height: 20px;
  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.is_mail a::after {
  background: url("../images/icon_mail.png") no-repeat;
}
.c_nav_type01 li:hover.is_mail a::after {
  background: url("../images/icon_mail_w.png") no-repeat;
}
/*----------------------------------------------
.c_nav_type01 li.special {
  background-color: #ffe1e1;
}
---------------------------------------------*/
/*----------------------------------------------
	.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%;
}
.u_box_shadow {
  box-shadow: 0 0 3px 1px rgba(114, 68, 33, .2);
} 

/*----------------------------------------------
	.c_banner_area
---------------------------------------------*/
.c_banner_area{
  margin-top: 20px;
}
.c_banner_area img{
 width: 100%;
 background-color: #fff;
 border: #ccc 1px solid;
}
.c_banner_area a:hover{
    opacity: 0.7;
}
.c_banner_img {
 border: #ccc 1px solid;
}
/*----------------------------------------------
	.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: #333;
  font-size: 1.5rem;
  font-weight: bold;
}

.c_contact_footer .c_contact_details {
  font-size: 1.4rem;
  line-height: 1.7;
}

/*----------------------------------------------
  .c_news_type01
---------------------------------------------*/
.c_news_type01 {
  max-height: 194px;
  overflow-y: auto;
  position: relative;
  font-size: 1.6rem;
  color: #333;
}

.c_news_type01 dt,
.c_news_type01 dd {
  padding-top: 20px;
}

.c_news_type01 dt {
  float: left;
  clear: left;
  padding-left: 20px;
  font-size: 1.6rem;
}

.c_news_type01 dd {
  word-wrap: break-word;
  padding: 20px 20px 20px 132px;
}

.c_news_type01 dt:not(:first-of-type) {
  margin-top: 2px;
}

.c_news_type01 dd:not(:first-of-type) {
  border-top: 1px dotted #CCC;
}

/*----------------------------------------------
  	.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 {
  font-size: 2.6rem;
  font-weight: bold;
  background-image: url(../images/img_h1_bg.png);
  background-size: cover;
  padding: 15px 20px;
  color: #fff;
  position: relative;
  text-shadow:1px 1px 1px #513404b0, -1px -1px 1px #513404b0,
              -1px 1px 1px #513404b0, 1px -1px 1px #513404b0,
              0px 1px 1px #513404b0,  1px 1px #513404b0,
              -1px 0 1px #513404b0, 1px 0 1px #513404b0;
}

/*----------------------------------------------
    .c_ttl_type02
---------------------------------------------*/
.c_ttl_type02 {
  font-size: 2.2rem;
  font-weight: bold;
  color: #444444;
  padding: 7px 15px;
  background-color: #ffe1e1;
  background-repeat: no-repeat;
  background-size: cover;
}

/*----------------------------------------------
    .c_ttl_type03
---------------------------------------------*/
.c_ttl_type03 {
  font-size: 2rem;
  font-weight: bold;
  color: #444444;
  padding: 4px 10px 1px 10px;
  position: relative;
  border-left: 3px solid #EA5205;
  background-color: #FFF4DD;
}

/*----------------------------------------------
    .c_ttl_type04
---------------------------------------------*/
.c_ttl_type04 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #B33E04;
  position: relative;
  border-bottom: 2px dotted #B33E04;
  padding: 2px 0 2px;
}

/*----------------------------------------------
    .c_ttl_type05
---------------------------------------------*/
.c_ttl_type05 {
  font-size: 1.6rem;
  font-weight: bold;
  color: #333;
  position: relative;
  background-image: url(../images/icon_h5.png);
  background-repeat: no-repeat;
  background-size: 15px 15px;
  background-position: left center;
  padding: 0 20px 0 20px;
}

/*----------------------------------------------
  	.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_kome_type02
---------------------------------------------*/
.c_kome_type02 {
  text-indent: -0.4em;
  padding-left: 0.4em;
}

/*----------------------------------------------
	.c_table_type01
---------------------------------------------*/
.c_table_type01 {
  width: 100%;
}

.c_table_type01 thead th {
  background: #F5B45F;
  color: #444444;
  font-weight: bold;
  text-align: center;
}

.c_table_type01 thead th.is_bodycolor {
  background: #FBE1C0;
  color: #333;
}
.c_table_type01:not([class*="is_th_bold"]) thead th.is_bodycolor {
  font-weight: normal;
}

.c_table_type01 th {
  text-align: left;
  vertical-align: top;
  font-weight: normal;
  white-space: nowrap;
  color: #333;
  background: #FBE1C0;
}
.c_table_type01 th.is_special {
  width: 20%!important;
  text-align: center;
}
.c_table_type01 thead th + th {
  border-left: 1px solid #FFFFFF;
}
.c_table_type01 thead th:not(:last-of-type){
  border-right: 1px solid #fff;
}
.c_table_type01 th,
.c_table_type01 td {
  padding: 14px;
  border: 1px solid #ccc;
}
.c_table_type01.is_pad_a {
  width: 75%;
}
.c_table_type01.is_pad_a th,
.c_table_type01.is_pad_a td {
  padding: 5px 14px;
}
.c_table_type01.is_pad_a td:first-child {
  text-align: center;
}
.c_table_type01.is_repad th,
.c_table_type01.is_repad td {
  padding: 10px 5px;
}
.c_table_type01.is_th_middle th{
  vertical-align: middle;
}
.c_table_type01.is_cfa th{
  width: 10%;
  text-align: center;
  padding: 10px;
}
.c_table_type01.is_cfa td {
  width: 40%;
  padding: 10px;
}
.c_table_type01.is_th_ALcenter th { text-align: center; }
.c_table_type01.is_td_ALcenter td { text-align: center; }

.c_table_type01.is_th_pad_s th{
  padding: 13.8px;
}

.c_table_type01.is_td_normal {
  font-weight: normal;
}

.c_table_type01.is_th_bold th {
  font-weight: bold;
}
.c_table_type01.is_th_height77 tbody th{
  height: 77px!important;
  vertical-align: middle;
}
.c_table_type01 th.is_blue {
  background-color: #79CDF3;
}
.c_table_type01 td.is_blue {
  background-color: #DDF6FF;
}
.c_table_type01 td.is_orange {
  background-color: #FBE1C0;
}
.c_table_type01.is_th_middle th {
  vertical-align: middle;
}
.c_table_type01.is_th_w01 th {
  width: 15%;
}
.c_table_type01.is_th_w02 th {
  width: 20%;
}
/*----------------------------------------------
	.c_table_type02
---------------------------------------------*/
.c_table_type02 {
  width: 100%;
}

.c_table_type02 tr:nth-child(odd) {
  background: #FBE1C0;
}

.c_table_type02 th,
.c_table_type02 td {
  padding: 10px;
  text-align: left;
}

.c_table_type02 th {
  color: #333;
  font-weight: normal;
}

/*----------------------------------------------
	.c_table_type03
---------------------------------------------*/
.c_table_type03 {
  width: 100%;
  border-top: 3px solid #F5B45F;
}

.c_table_type03 tr th,
.c_table_type03 tr td {
  text-align: center;
  padding: 10px;
}

.c_table_type03 tr th {
  color: #333;
  white-space: pre-wrap;
  font-weight: bold;
  border: 1px solid #FBE1C0;
}

.c_table_type03 tr td {
  border-top: 1px solid #FBE1C0;
  border-right: 1px solid #FBE1C0;
  border-left: 1px solid #FBE1C0;
  border-bottom: 2px dotted #FBE1C0;
}

.c_table_type03 tr:last-child td {
  border-bottom: 1px solid #FBE1C0;
}

/*----------------------------------------------
	.c_table_type04
---------------------------------------------*/
.c_table_type04 tr>* {
  vertical-align: top;
  border: 1px solid #333;
}

/*----------------------------------------------
	.c_table_type05
---------------------------------------------*/
.c_table_type05 th {
  width: 5em;
  font-weight: normal;
  vertical-align: top;
  padding-left: 1em;
}
.c_table_type05 th::after {
  content: "：";
}
.c_table_type05 td.is_name {
  width: 6em;
  vertical-align: top;
}
.c_table_type05 td.is_name_02 {
  padding-left: 5em;
  width: 11em;
  vertical-align: top;
}
.c_table_type05 td.is_affiliation {
  text-indent: -1em;
  padding-left: 1em;
}
.c_table_type05 td.is_affiliation::before {
  content: "（";
}
.c_table_type05 td.is_affiliation::after {
  content: "）";
}
.c_table_type05 td.is_affiliation.is_en {
  padding-left: 5.5em;
  width: 42em;
}
/*----------------------------------------------
	.c_table_type05
---------------------------------------------*/
.c_table_type06 {
  width: 100%;
}

.c_table_type06 thead th {
  background: #9b919a;
  color: #FFF;
  font-weight: bold;
  text-align: center;
}

.c_table_type06 th {
  text-align: left;
  vertical-align: top;
  font-weight: normal;
  white-space: nowrap;
  color: #333;
  background: #FBE1C0;
}
.c_table_type06 thead th + th {
  border-left: 1px solid #FFFFFF;
}
.c_table_type06 thead th:not(:last-of-type){
  border-right: 1px solid #fff;
}
.c_table_type06 th,
.c_table_type06 td {
  padding: 14px;
  border: 1px solid #ccc;
}
.c_table_type06 .is_gb_blue {
  background-color: #bdeffb;
}
.c_table_type06 .is_gb_orange {
  background-color: #ffd1a9;
}
.c_table_type06 .is_gb_gray {
  background-color: #d5d5d5;
}
.c_table_type06 .is_gb_yellow {
  background-color: #fff5a2;
}
.c_table_type06 .is_gb_pink {
  background-color: #ffd5fb;
}
.c_table_type06 .is_gb_green {
  background-color: #d5ffd8;
}
.c_table_type06 .is_gb_purple {
  background-color: #ECDEF6; 
}

/*----------------------------------------------
	.c_table_type07
---------------------------------------------*/
.c_table_type07 {
  width: 100%;
}

.c_table_type07 th {
  background: #f1f1f1;
  text-align: center;
  font-weight: normal;
}
.c_table_type07 td {
  background: #FFF;
  color: #333;
}
.c_table_type07 th,
.c_table_type07 td {
  padding: 14px;
  border: 1px solid #ccc;
}

/* 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: #F6B041;
  top: 10px;
}

.c_list_type01.is_triangle>li::before {
  content: "";
  width: 0;
  height: 0;
  border: solid 5px transparent;
  border-left: solid 7px #ACCC7E;
  top: 7px;
}

.c_list_type01.is_diamond>li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #7E84CC;
  -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: #f00;
  vertical-align: unset;
  top: 0;
}


.c_list_type01.is_decimal.is_kakko li::before {
  content: counter(is_decimal_counter) ")";
  color: #f00;
  font-weight: normal;
}
.c_list_type01.is_decimal li ul.is_decimal_disc li {
  padding-left: 1.5rem;
}
.c_list_type01.is_decimal li ul.is_decimal_disc li::before {
  content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #F6B041;
	top: 10px;
  counter-increment: none;
}

/* 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;
  color: #fff !important;
  position: relative;
  background: #EA5205;
  border-radius: 5px;
}

a.c_btn_type01:hover {
  opacity: 0.4;
}

.c_btn_type01.is_gray {
  background: #aaa;
}
.c_btn_type01.is_unit {
  background: #356CAC;
}

span.c_btn_type01,
.c_btn_type01.is_disable {
  background: #ccc;
  pointer-events: none;
}

.c_btn_type01.is_w250 {
  width: 250px;
}

.c_btn_type01.is_w320 {
  width: 320px;
}

.c_btn_type01.is_w380 {
  width: 380px;
}

.c_btn_type01.is_w400 {
  width: 400px;
}

.c_btn_type01.is_w500 {
  width: 500px;
}

.c_btn_type01.is_word,
.c_btn_type01.is_excel,
.c_btn_type01.is_ppt,
.c_btn_type01.is_pdf {
  background-color: #356CAC;
}

.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_btn_type01.is_blue{
  color: #fff !important;
  background: #356CAC;
}

.c_btn_type01.is_purple{
  background: #995095;
}
/*----------------------------------------------
	.c_btn_type02
---------------------------------------------*/
.c_btn_type02 {
  display: inline-block;
  padding: 15px;
  min-width: 200px;
  text-decoration: none !important;
  color: #fff !important;
  position: relative;
  background: #0A5198;
  border-radius: 5px;
}
.c_btn_type02:hover {
  opacity: .8;
}

/*----------------------------------------------
	.c_btn_type03
---------------------------------------------*/
.c_btn_type03 {
    display: inline-block;
    padding: 22px 20px;
    width: 740px;
    /* height: 90px; */
    text-align: center;
    text-decoration: none !important;
    color: #fff !important;
    position: relative;
    background: linear-gradient(90deg, #1F7D7B 0%, #47D4D1 100%);
    border-radius: 15px;
    font-size: 3rem;
    font-weight: bold;
}
.c_btn_type03:hover {
  opacity: .8;
}
/*----------------------------------------------
	.c_box_type01
---------------------------------------------*/
.c_box_type01 {
  padding: 15px;
  background: #F2F6FC;
  border: 1px solid #7E84CC;
}

.c_box_type01_header {
  font-weight: bold;
  color: #7E84CC;
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.c_box_type01_header02 {
  font-weight: bold;
  color: #fff;
  background-color: #003090;
  font-size: 1.6rem;
  margin-bottom: 10px;
  padding: 16px;
}

/*----------------------------------------------
	.c_box_type02
---------------------------------------------*/
.c_box_type02 {
  padding: 15px;
  background: #F7FAF4;
  border: 2px solid #ACCC7E;
  border-radius: 20px;
}

.c_box_type02_header {
  font-weight: bold;
  color: #73AC52;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

#green_project .c_box_type02 {
  padding: 15px 10px;
}
/*----------------------------------------------
	.c_box_type03
---------------------------------------------*/
.c_box_type03 {
  padding: 25px 15px;
  border: 1px solid #FF0000;
  color: #FF0000;
  background-color: #FEEEEE;
}

.c_box_type03.is_white {
  background-color: #fff;
}

/*----------------------------------------------
	.c_box_type04
---------------------------------------------*/
.c_box_type04 {
    padding: 20px;
    border: 3px solid #ffe1e1;
    border-top: none;
}

/*----------------------------------------------
.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;
}

a.c_anchor_icon.is_external {
  background: url(../images/icon_external_nav.png) no-repeat right center;
  color: #333;
}

.c_bnr_area a:hover{
    opacity: 0.7;
}
.c_bnr_area img{
    background-color: #fff;
    border: #ccc 1px solid;
}

/*----------------------------------------------
.c_important
---------------------------------------------*/
.c_important {
    background: #ffe1e1;
    padding: 5px;
    font-size: 20px;
    font-weight: bold;
    color: #f00;
}

/*----------------------------------------------
.c_toggle_contents cfaページのアコーディオン
---------------------------------------------*/
.c_toggle_contents {
	border: 1px solid #d9d9d9;
}
.c_toggle_title {
	position: relative;
  min-height: 45px;
  width: 100%;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
	cursor: pointer;
	font-size: 16px;
  font-weight: bold;
	line-height: 1.4;
}
.c_toggle_title:hover {
  background-color: #FFF4E3;
}
.c_toggle_btn {
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	display: block;
	width: 24px;
	height: 24px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	border-radius: 50%;
}
.c_toggle_btn:before, .c_toggle_btn:after {
	display: block;
	content: '';
	background-color: #EA5205;
	position: absolute;
	width: 10px;
	height: 2px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.c_toggle_btn:before {
	width: 2px;
	height: 10px;
}
.c_toggle_title.selected .c_toggle_btn:before {
	content: normal;
}
.c_toggle_contents dd {
	display: none;
  padding: 0 10px 10px;
}

.c_kikaku_title {
  font-weight: bold;
  text-indent: -5em;
  padding-left: 5em;
  margin-bottom: 5px;
}
.c_kikaku_title span.is_number {
  padding-right: 1em;
}

.c_hr {
	background-color: #fff;
	border-top: 1px dashed #ddd;
  margin-bottom: 20px;
}

.u_box {
    position: relative;
}
.u_box::before {
    content: "";
    display: block;
    width: 50px;
    height: 18px;
    background: #DDF6FF;
    border: solid 1px;
    position: absolute;
    right: 200px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.c_invited {
  width: 74%;
}

.c_title {
  color: #003F7E;
  font-weight: bold;
  text-indent: -5em;
  padding-left: 5em;
  margin-bottom: 10px;
}
.c_title.is_02 {
  text-indent: -4.3em;
  padding-left: 4.3em;
}