@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_contact
---------------------------------------------*/
.c_contact {
  position: relative;
}

.c_contact .c_contact_header {
  display: inline-block;
  color: #fff;
  font-size: 1.3rem;
  padding: 2px 4px;
  margin-right: 3px;
  border: 1px solid #fff;
}

.c_contact .c_contact_details {
  line-height: 1.5;
  display: inline-block;
  font-size: 1.3rem;
}

/*----------------------------------------------
  .c_news_type01
---------------------------------------------*/
.c_news_type01 {
  max-height: 142px;
  overflow-y: auto;
  position: relative;
  font-size: 1.5rem;
  color: #000;
  display: inline-block;
  width: 820px;
}

.c_news_type01 dt,
.c_news_type01 dd {
  padding-top: 12px;
}

.c_news_type01 dt {
  float: left;
  clear: left;
  padding-left: 10px;
  font-size: 15px;
}

.c_news_type01 dd {
  padding-left: 125px;
  word-wrap: break-word;
  padding-right: 10px;
  padding-bottom: 12px;
}
.c_news_type01 dt:not(:first-of-type) {
  margin-top: 2px;
}
.c_news_type01 dd:not(:first-of-type) {
  border-top: 1px solid #dde8f8;
}

/*----------------------------------------------
  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 {
  width: 100%;
}

.c_table_type01 tr {
  border: 1px solid #000;
}

.c_table_type01 tr:not(:last-child) th{
  border-bottom: 1px solid #fff;
}
.c_table_type01 th {
  text-align: center;
  vertical-align: top;
  font-weight: bold;
  white-space: nowrap;
  color: #fff;
  background: #333;
}

.c_table_type01 th,
.c_table_type01 td {
  padding: 10px 20px;
}

/*----------------------------------------------
	.c_table_type02
---------------------------------------------*/
.c_table_type02 {
  width: 100%;
}

.c_table_type02 tr {
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
}

.c_table_type02 tr:nth-child(even) {
  background: #eee;
}

.c_table_type02 th {
  text-align: center;
  vertical-align: top;
  font-weight: bold;
  white-space: nowrap;
  color: #333;
}

.c_table_type02 th,
.c_table_type02 td {
  padding: 10px 0;
}

/*----------------------------------------------
	.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;
}

/* FOR COLORED LIST TYPE */
/*----------------------------------------------
	.c_list_type01
---------------------------------------------*/
.c_list_type01 {
  vertical-align: top;
}

.c_list_type01 li {
  margin-bottom: 8px;
  text-align: justify;
  -ms-text-justify: inter-ideograph;
  text-justify: inter-ideograph;
  list-style: none;
  position: relative;
  padding-left: 2rem;
}
.c_list_type01 li::before {
  position: absolute;
  left: 0;
  color: #003651;
}

.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_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;
}

.c_list_type01.is_triangle li:before {
  content: "▶";
}

.c_list_type01.is_diamond li:before {
  content: "◆";
}

/*
  ➔
  ➤
  ■
  ▶
  ◆
  ◉
  ●
*/

/* 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: 15px 10px;
  min-width: 220px;
  background: #333;
  text-decoration: none!important;
  color: #fff!important;
}
a.c_btn_type01:hover {
  opacity: 0.8;
}
.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::after,
.c_btn_type01.is_excel::after,
.c_btn_type01.is_ppt::after,
.c_btn_type01.is_pdf::after {
  content: "";
  display: inline-block;
  position: relative;
  top: 0;
  bottom: 0;
  width: 22px;
  height: 22px;
  margin: auto auto auto 10px;
  vertical-align: middle;
}
.c_btn_type01.is_word::after {
  background: url(../images/icon_btn_word.png) no-repeat;
  background-size: 100%;
}
.c_btn_type01.is_excel::after {
  background: url(../images/icon_btn_excel.png) no-repeat;
  background-size: 100%;
}
.c_btn_type01.is_ppt::after {
  background: url(../images/icon_btn_powerpoint.png) no-repeat;
  background-size: 100%;
}
.c_btn_type01.is_pdf::after {
  background: url(../images/icon_btn_pdf.png) no-repeat;
  background-size: 100%;
}
/*----------------------------------------------
	.c_btn_type02
---------------------------------------------*/
.c_btn_type02 {
  display: inline-block;
  padding: 10px 10px;
  min-width: 220px;
  background: #333;
  border-radius: 5px;
  text-decoration: none!important;
  color: #fff!important;
}
a.c_btn_type02:hover {
  opacity: 0.8;
}
.c_btn_type02.is_word::after,
.c_btn_type02.is_excel::after,
.c_btn_type02.is_ppt::after,
.c_btn_type02.is_pdf::after {
  content: "";
  display: inline-block;
  position: relative;
  top: 0;
  bottom: 0;
  width: 22px;
  height: 22px;
  margin: auto auto auto 10px;
  vertical-align: middle;
}
.c_btn_type02.is_word::after {
  background: url(../images/icon_btn_word.png) no-repeat;
  background-size: 100%;
}
.c_btn_type02.is_excel::after {
  background: url(../images/icon_btn_excel.png) no-repeat;
  background-size: 100%;
}
.c_btn_type02.is_ppt::after {
  background: url(../images/icon_btn_powerpoint.png) no-repeat;
  background-size: 100%;
}
.c_btn_type02.is_pdf::after {
  background: url(../images/icon_btn_pdf.png) no-repeat;
  background-size: 100%;
}

/*----------------------------------------------
	.c_box_type01
---------------------------------------------*/
.c_box_type01 {
  padding: 20px;
  border: 2px solid #093190;
  border-radius: 6px;
}

/*----------------------------------------------
	.c_box_type02
---------------------------------------------*/
.c_box_type02 {
  padding: 20px;
  border: 2px solid #f00;
  background: #FBE5E5;
  border-radius: 6px;
}

/*----------------------------------------------
	.c_box_type03
---------------------------------------------*/
.c_box_type03 {
  padding: 20px;
  background: #E9F2F9;
  border-radius: 6px;
}

/*----------------------------------------------
	.c_box_type04
---------------------------------------------*/
.c_box_type04 {
  padding: 20px;
  background: #fff8e4;
  border: 1px solid #fcc800;
} 

/*----------------------------------------------
.c_anchor_icon
---------------------------------------------*/
a.c_anchor_icon{
    display: inline-block;
    padding-left: 20px;
  }
a[href^="http://"].c_anchor_icon,
a[href^="https://"].c_anchor_icon{ background: url(../images/icon_external.png) no-repeat left center; }

a[href$=".xls"].c_anchor_icon,
a[href$=".xlsx"].c_anchor_icon {  background: url(../images/icon_excel.png) no-repeat left center; }

a[href$=".doc"].c_anchor_icon,
a[href$=".docx"].c_anchor_icon { background: url(../images/icon_word.png) no-repeat left center; }

a[href$=".ppt"].c_anchor_icon,
a[href$=".pptx"].c_anchor_icon { background: url(../images/icon_powerpoint.png) no-repeat left center; }

a[href$=".pdf"].c_anchor_icon { background: url(../images/icon_pdf.png) no-repeat left center; }
