@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: #00008b;
}

.c_nav_type01 li:not(:last-of-type) a,
.c_nav_type01 li:not(:last-of-type) span{
  border-bottom: 1px solid #ffffff;
}
.c_nav_type01 li a,
.c_nav_type01 li span{
  display: block;
  padding: 11px 15px;
  color: #fff;
  position: relative;
  background: url(../images/nav_icon.png) 93% 50% no-repeat;
}

.c_nav_type01 li:hover a,
.c_nav_type01 li.active a {
  /*background: url(../images/nav_active.png) 93% 50% no-repeat,
  #b5003e;*/
  background: url(../images/nav_active.png) 93% 50% no-repeat,
  #228b22;
}

.c_nav_type01 * {
  vertical-align: middle;
}

.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: relative;
  margin-left: 10px;
  vertical-align: middle;
}
.c_nav_type01 li.is_external a::after {
  background: url(../images/icon_external_nav.png) no-repeat;
  background-size: 100%;
  width: 12px;
  height: 12px;

}
.c_nav_type01 li.is_pdf a::after {
  background: url(../images/icon_pdf.png) no-repeat;
  background-size: 100%;
  width: 24px;
  height: 14px;
}
.c_nav_type01 li.is_word a::after {
  background: url(../images/icon_word.png) no-repeat;
  background-size: 100%;
}
.c_nav_type01 li.is_ppt a::after {
  background: url(../images/icon_powerpoint.png) no-repeat;
  background-size: 100%;
}
.c_nav_type01 li.is_excel a::after {
  background: url(../images/icon_excel.png) no-repeat;
  background-size: 100%;
}
/*----------------------------------------------
	.c_contact_type01
---------------------------------------------*/
.c_contact_type01 {
  width: 100%;
}

.c_contact_header {
  font-size: 1.5rem;
  font-weight: bold;
}

.c_contact_details {
  padding-top: 8px;
  line-height: 1.5;
  font-size: 1.3rem;
}

/*----------------------------------------------
  .c_news_type01
---------------------------------------------*/
.c_news_type01 {
  max-height: 145px;
  overflow-y: auto;
  position: relative;
  padding: 7px 18px 0 18px;
  background: #fff;
  margin: 0 4px 4px 4px;
}

.c_news_type01 dt,
.c_news_type01 dd {
  padding-top: 10px;
  font-size: 1.4rem;
}

.c_news_type01 dt {
  float: left;
  clear: left;
  padding-top: 10px;
  padding-left: 11px;
  font-weight: bold;
  position: relative;
}
.c_news_type01 dt:before {
  content: "●";
  color: #092d75;
  font-size: 0.7rem;
  display: inline-block;
  position: relative;
  top: -3px;
  left: -2px;
  padding-right: 7px;
}
.c_news_type01 dd {
  padding-left: 140px;
  word-wrap: break-word;
  padding-right: 5px;
  padding-bottom: 7px;
}
.c_news_type01 dt:not(:first-of-type) {
  margin-top: 2px;
}
.c_news_type01 dd:not(:first-of-type) {
  border-top: 1px solid #ccc;
}
.c_news_tag {
	color: #FFF;
   width: 50%;
   margin: 0 auto;
	padding: 3px 5px;
	display: block;
   vertical-align: top;
	font-size: 1.1rem;
   text-align: center;
	border-radius: 8px;
	background: #B5003E;
}

/*----------------------------------------------
  	.c_ttl_type01
  ---------------------------------------------*/
.c_ttl_type01 {
  font-size: 2.5rem;
  font-weight: bold;
  background: url(../images/h1_bg.jpg) no-repeat;
  color: #fff;
  padding: 14px 20px;
}
/*----------------------------------------------
    .c_ttl_type02
---------------------------------------------*/
.c_ttl_type02 {
  font-size: 2.1rem;
  font-weight: bold;
  color: #b5003e;
}
.c_ttl_type02 span {
  display: block;
  padding: 7px 10px;
}
.c_ttl_type02::before {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
}
.c_ttl_type02::after {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
}

/*----------------------------------------------
    .c_ttl_type03
---------------------------------------------*/
.c_ttl_type03 {
  color: #092D75;
  position: relative;
  margin-left: 2rem;
  text-indent: -1.5rem;
  font-size: 1.8rem;
  font-weight: bold;
}

.c_ttl_type03::before {
  content: "";
  position: relative;
  display: inline-block;
  top: -1.5px;
  margin-right: 5px;
  width: 9px;
  height: 11px;
  background: url(../images/h3_bg.png);
}

/*----------------------------------------------
    .c_ttl_type04
---------------------------------------------*/
.c_ttl_type04 {
  font-size: 1.6rem;
  font-weight: bold;
  color: #333333;
  position: relative;
  z-index: 1;
}

.c_ttl_type04::before {
  content: "";
  position: relative;
  display: inline-block;
  height: 11px;
  width: 9px;
  background: url(../images/h4_bullet.png) no-repeat;
  top: 1px;
  margin-right: 5px;
}

/*----------------------------------------------
  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 #092D75; }

.c_table_type01 th {
  vertical-align: top;
  font-weight: bold;
  white-space: nowrap;
  color: #092d75;
  background: #eef0f5;
}
.c_table_type01 td.w_border {
	border-right: 1px solid #092D75;
}
.c_table_type01 th,
.c_table_type01 td {
  padding: 10px 20px;
}

/*----------------------------------------------
	.c_table_type02
---------------------------------------------*/
.c_table_type02 {
  width: 100%;
}

.c_table_type02 tr:not(:last-of-type):not(:first-of-type) {
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
}

.c_table_type02 th {
  vertical-align: top;
  font-weight: bold;
  white-space: nowrap;
  color: #b5003e;
}

.c_table_type02 th,
.c_table_type02 td {
  padding: 10px 20px;
}

/*----------------------------------------------
	.c_list_type01
---------------------------------------------*/
.c_list_type01 {
  padding-left: 1.5rem;
}

.c_list_type01 li {
  margin-bottom: 8px;
  text-align: justify;
  -ms-text-justify: inter-ideograph;
  text-justify: inter-ideograph;
  color: #B5003E;
}

.c_list_type01.is_arrow {
  list-style-image: url(../images/list_triangle.png);
}
.c_list_type01.is_arrow li {
  color: #333;
}
.c_list_type01.is_square {
  list-style-type: square;
}

.c_list_type01.is_disc {
	list-style-type: none;
	padding-left: 2.5rem;
}
.c_list_type01.is_disc li {
  color: #333;
  position: relative;
}
.c_list_type01.is_disc li::before {
  content: '●';
  left: -3%;
  top: 10%;
  color: #B5003E;
  font-size: 1.2rem;
  position: absolute;
}

.c_list_type01.is_decimal {
  list-style-type: decimal;
}

.c_list_type01 span {
  color: #333;
  font-weight: normal;
}

/*----------------------------------------------
	.c_list_type02
---------------------------------------------*/
.c_list_type02 li {
  margin-bottom: 5px;
  margin-left: 2.5rem;
  list-style-type: none;
  counter-increment: step-counter;
}
.c_list_type02.is_decimal li::before {
  content: counter(step-counter)'.';
  display: inline-block;
  position: absolute;
  left: 3.5%;
  color: #B5003E;
  font-size: 1.6rem;
  font-weight: bold;
}

/*----------------------------------------------
	.c_btn
---------------------------------------------*/
.c_btn_group {
  display: flex;
  justify-content: space-around;
}
.c_btn {
  display: inline-block;
  padding: 14px 10px;
  min-width: 220px;
  border-radius: 5px;
  text-decoration: none!important;
  color: #FFF;
  position: relative;
  box-shadow: 0px 1px 1px 2px #CCC;
  transition: 0.2s ease;
}
a.c_btn:hover {
  opacity: 0.8;
}
.c_btn.is_red {
  color: #FFF;
  background: #b5003e;
}
.c_btn.is_blue {
  color: #FFF;
  background: #092d75;
}
.c_btn.is_periwinkle {
  color: #092D75;
  background: #E5ECFF;
}

.c_btn.is_red.is_default::after,
.c_btn.is_blue.is_default::after,
.c_btn.is_periwinkle.is_default::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 15px;
  top: -2px;
  bottom: 0;
  width: 15px;
  height: 15px;
  margin: auto;
  vertical-align: middle;
}
.c_btn.is_word::after,
.c_btn.is_excel::after,
.c_btn.is_ppt::after,
.c_btn.is_pdf::after {
  content: "";
  display: inline-block;
  position: relative;
  bottom: 2px;
  width: 22px;
  height: 22px;
  margin: auto auto auto 10px;
  vertical-align: middle;
}
.c_btn.is_red.is_default::after {
  background: url(../images/btn_arrow1.png) no-repeat;
}
.c_btn.is_blue.is_default::after {
  background: url(../images/btn_arrow2.png) no-repeat;
}
.c_btn.is_word::after {
  background: url(../images/icon_btn_word.png) no-repeat;
  background-size: 100%;
}
.c_btn.is_excel::after {
  background: url(../images/icon_btn_excel.png) no-repeat;
  background-size: 100%;
}
.c_btn.is_ppt::after {
  background: url(../images/icon_btn_powerpoint.png) no-repeat;
  background-size: 100%;
}
.c_btn.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 #b5003e;
  background-color:#ffffff;
}

/*----------------------------------------------
	.c_box_type02
---------------------------------------------*/
.c_box_type02 {
  padding: 20px;
  background: #FBE5E5;
}

/*----------------------------------------------
	.c_box_type03
---------------------------------------------*/
.c_box_type03 {
  padding: 20px;
  background: #eef0f5;
}

/*----------------------------------------------
	.c_img_group
---------------------------------------------*/
.c_img_group p {
	display: inline-block;
	padding: 0 1.5%;
}
.c_img_group a {
	display: block;
	transition: all 0.2s ease-in-out;
}
.c_img_group a:hover {
	opacity: 0.7;
}


/*----------------------------------------------
.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;
  padding-right: 35px;
}

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;
  padding-right: 30px;
}
