@charset "UTF-8";
/* information.css */
/* 全体 */

/* オレンジ囲みタブ付き（Point） */

ul.f138 {
  border: solid 2px #ffb03f;
  padding: 0.5em 1em 0.5em 2.3em;
  position: relative;
}

ul.f138 li {
  line-height: 1.5;
  padding: 0.5em 0;
  list-style-type: none!important;/*ポチ消す*/
}

ul.f138 li:before {/*疑似要素*/
  font-family: FontAwesome;
  content: "\f00c";
  position: absolute;
  left : 1em; /*左端からのアイコンまで*/
  color: #ffb03f; /*アイコン色*/

}
ul.f138 li:after {/*タブ*/
  background: #ffb03f;
  color: #fff;
  font-family: FontAwesome,'Avenir','Arial',sans-serif;
  position: absolute;
  left: -2px;
  bottom: 100%;
  padding: 1px 7px;
  content: '\f0a7  Point';/*アイコンコード＋文字*/
  letter-spacing: 0.05em;/*字間*/
  }
  
  /* オレンジ囲みタブ付き（×） */

ul.f136 {
  border: solid 2px #ffb03f;
  padding: 0.5em 1em 0.5em 2.3em;
  position: relative;
}

ul.f136 li {
  line-height: 1.5;
  padding: 0.5em 0;
  list-style-type: none!important;/*ポチ消す*/
}

ul.f136 li:before {/*疑似要素*/
  font-family: FontAwesome;
  content: "\f00d";
  position: absolute;
  left : 1em; /*左端からのアイコンまで*/
  color: #808080; /*アイコン色*/

}
ul.f136 li:after {/*タブ*/
  background: #ffb03f;
  color: #fff;
  font-family: FontAwesome,'Avenir','Arial',sans-serif;
  position: absolute;
  left: -2px;
  bottom: 100%;
  padding: 1px 7px;
  content: '\f0a7  Point';/*アイコンコード＋文字*/
  letter-spacing: 0.05em;/*字間*/
  }
  
 /* オレンジ囲みタブ付きシェブロンマーク（メール通知） */

ul.f137 {
  border: solid 2px #ffb03f;
  padding: 0.5em 1em 0.5em 2.3em;
  position: relative;
}

 ul.f137 li {
  line-height: 1.5;
  padding: 0.5em 0;
  list-style-type: none!important;/*ポチ消す*/
}

ul.f137 li:before {/*疑似要素*/
  font-family: FontAwesome;
  content: "\f138";
  position: absolute;
  left : 1em; /*左端からのアイコンまで*/
  color: #ffb03f; /*アイコン色*/

}
ul.f137 li:after {/*タブ*/
  background: #ffb03f;
  color: #fff;
  font-family: FontAwesome,'Avenir','Arial',sans-serif;
  position: absolute;
  left: -2px;
  bottom: 100%;
  padding: 1px 7px;
  content: '\f0a7  Mail';/*アイコンコード＋文字*/
  letter-spacing: 0.05em;/*字間*/
  }
 
  /* ol background を灰色 */
  
ol {
  background: #fafafa;/*灰色に*/
  border-radius :8px;
  box-shadow :0px 0px 5px silver;
  padding: 0.5em 0.5em 0.5em 2em;
  margin: 0.5em 0;
}
ol li {
  line-height: 1.5;
  padding: 0.5em 0;
}


  /* 円で番号を囲むリスト */

ol.number{
  counter-reset:number; /*数字をリセット*/
  list-style-type: none!important; /*数字を一旦消す*/
  list-style:none; /* olが数字を付けることをキャンセル */
  padding:0.5em;
  background: #f5faff;
}
ol.number li{
  position: relative;
  padding-left: 30px;
  line-height: 1.5em;
  padding: 0.5em 0.5em 0.5em 30px;
  display: block;
}

ol.number li:before{
  /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*以下数字のデザイン変える*/
  display:inline-block;
  background: #5c9ee7;
  color: white;
  font-family: 'Avenir','Arial Black','Arial',sans-serif;
  font-weight:bold;
  font-size: 12px;
  border-radius: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align:center;
  /*以下 上下中央寄せのため*/
  top: 50%;
  -moz-transform: translateY(-50%);
  	-webkit-transform: translateY(-50%);
  	-o-transform: translateY(-50%);
  	-ms-transform: translateY(-50%);
  	transform: translateY(-50%);

  ol.number li:after {/*タブ*/
  background: #5c9ee7;
  color: white;
  font-family: FontAwesome,'Avenir','Arial',sans-serif;
  position: absolute;
  left: -2px;
  bottom: 100%;
  padding: 1px 7px;
  content: '\f0a7  承認方法';/*アイコンコード＋文字*/
  letter-spacing: 0.05em;/*字間*/
  }
    
  
  /*box*/

.box11 {
    padding: 0.5em 1em;
    margin: 2em 0;
    color: #5d627b;
    background: white;
    border-left: solid 5px #5d627b;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
}
.box11 p {
    margin: 0; 
    padding: 0;
}

  /*テーブル枠線なし*/
  
table.type11 {
	border-collapse:collapse;
	text-align: center;

}
table.type11 th {
	width: 155px;
	padding: 10px;
	font-weight: bold;
	vertical-align: top;
	color: #fff;
        border-style: none;
	text-align: center;

}
table.type11 td {
	width: 155px;
	padding: 10px;
	vertical-align: top;
	border-style: none;
}

.box_11{
    padding: 0.5em 1em;
    margin: 2em 0;
    color: #5d627b;
    background: white;
    border-top: solid 5px #5d627b;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
}
.box_11 p {
    margin: 0; 
    padding: 0;
}

  /* FontAwesome用のクラスを用意する */

.fb:before
{
	font-family: 'FontAwesome' ;
	padding-right: 5px ;
}

.fb-check-circle:before
{
	content: '\f058' ;
	color: #ffb03f ;
}

  /* 鍵マーク黄色 */
.fa-orange:before 
{
     color: #773c30;
}

.fa-red:before 
{
     color: red;
}

.fa-green:before
{
	color: #A4C639 ;
}

.fa-external-link:after {
  content: "\f08e";
  font-family: FontAwesome;
  margin: 0 0.2rem;
}


  /* Font Awesome 色 */
.fa-gray {color: gray}
.fa-skyblue {color: skyblue}
.fa-orange {color: #773c30}
.fa-yellow {color: #ffd900}
.fa-orange1 {color: #ffb03f}
.fa-red {color: red}
.fa-pink {color: #ff1493}

  /* check mark */
  
.fa-checkmark
 {
position: relative;
padding-left: 1.2em;/*アイコン分のスペース*/
line-height: 1.4;
}

.fa-checkmark:before
{ 
font-family: FontAwesome;/*忘れずに*/
content: "\f00c";/*アイコンのユニコード*/
position: absolute;/*絶対位置*/
font-size: 1em;/*サイズ*/
left: 0;/*アイコンの位置*/
top: 0;/*アイコンの位置*/
color: #5ab9ff; /*アイコン色*/
}


  /* hr.style */
  
hr.style1{
	border-top: 1px solid #8c8b8b;
}
hr.style2 {
	border-top: 3px double #8c8b8b;
}
hr.style3 {
	border-top: 1px dashed #8c8b8b;
}
hr.style4 {
	border-top: 1px dotted #8c8b8b;
}
hr.style5 {
	background-color: #fff;
	border-top: 2px dashed #8c8b8b;
}
hr.style6 {
	background-color: #fff;
	border-top: 2px dotted #8c8b8b;
}


  /* オンマウスでポップアップメッセージを表示する */
  
.qa1 {
    position: relative;
}
.qa1 span.an1 {
    display: none;
}
.qa1 a:hover span.qa1 {
    background: none repeat scroll 0 0 #EEFFEE;
    border: 1px solid #CCCCCC;
    color: #000000;
    display: block;
    line-height: 1.2em;
    margin: 0.5em;
    padding: 0.5em;
    position: absolute;
    top: 50px;
    width: 12em;
}

  /* オンマウスでポップアップメッセージを表示する */
  
@font-face {
  font-family: 'typicons';
  src: url("fonts/typicons.eot");
  src: url("fonts/typicons.eot?#iefix") format('embedded-opentype'),
       url("fonts/typicons.woff") format('woff'),
       url("fonts/typicons.ttf") format('truetype'),
       url("fonts/typicons.svg#typicons") format('svg');
  font-weight: normal;
  font-style: normal;
}
.wrap{
  width: 350px;
  margin: 0 auto;
  padding: 50px 0 100px;
  color: #fff;
  text-align: center;
}
.wrap li{
  list-style: none;
  float: left;
  margin: 0;
  padding: 0 5px;
}
.wrap a{
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
  padding: 5px;
  border-radius: 50%;
  background: #3498db;
  transition: .3s;
}
.wrap a:hover{
  background: #196090;
}
.wrap a:before {
  font-family: 'typicons';
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  width: 30px;
  height: 30px;
  padding: 0;
  margin: 0;
  color: #fff;
  font-size: 30px;
  text-align: center;
  line-height: 1;
}
.home:before { content: '\e081'; }
.twitter:before { content: '\e0e7'; }
.facebook:before { content: '\e0d7'; }
.rss:before { content: '\e0ce'; }
.cog:before { content: '\e04d'; }
.wrap a span{
  position: absolute;
  opacity: 0;
  top: -50px;
  left: -20px;
  width: 60px;
  padding: 10px;
  border-radius: 2px;
  background: #196090;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  transition: .3s;
}
.wrap a span:after{
  position: absolute;
  top: 100%;
  left: 34px;
  height: 0;
  width: 0;
  border: 6px solid transparent;
  border-top: 6px solid #196090;
  content: "";
}
.wrap a:hover span{
  opacity: 1;
  top: -40px;
}

