/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
	display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}
@charset "UTF-8";

* {
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
/* html
---------------------------------------------------- */
html {
	font-size: 62.5%;
}
h1, h2, h3, h4, h5, h6, strong {
     font-weight: 500;
} 

/* ヘッダー
---------------------------------------------------- */
header {
	width: 100%;
	background: url(../images/header-bg.png) 0 0 repeat-x;
	background-size: contain;
	margin-bottom: 2px;
	position: relative;
}
header h1 {
	max-width: 719px;
	padding: 7px 12px;
}
header .badge {
	display: none;
}

/* ボディー
---------------------------------------------------- */
body {
	font-family: 'Noto Sans JP', sans-serif;
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.6em;
	font-weight: 300;
	color: #333;
	background: #fff;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
}

/* リンク
---------------------------------------------------- */
a {
	color: #333;
	background: transparent;
	text-decoration: none;
}
a:visited {
	background: transparent;
}
a:hover,
a:active {
	background: transparent;
	text-decoration: underline;
}

/* 全体構造
---------------------------------------------------- */
.inner {
	margin: 0 7px;
}

.flex {
	width: 100%;
	display: -webkit-flex;
	display: -webkit-box;
    display: -ms-flexbox;
	display: -moz-flex;
    display: flex;
}
.row-column {
	flex-flow: column;
}
.row-column-reverse {
	flex-flow: column;
}
.column {
	flex-flow: column;
}
/* 幅いっぱいに広げる */
.between {
	-webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
	justify-content: space-between;
	text-align: center;
}
/* 均等に広げる */
.around {
	-ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
	justify-content: space-around;
	text-align: center;
}
/* 左寄せ */
.start {	
	-webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
	justify-content: flex-start;
	text-align: center;
}
/* 右寄せ */
.end {	
	-webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
	justify-content: flex-end;
	text-align: center;
}
/* 真ん中寄せ */
.center {	
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
	justify-content: center;
	text-align: center;
}

.w50,
.w49,
.w48,
.w33,
.w25,
.w20 {
	width: 100%;
}

/* 画像
---------------------------------------------------- */
img {
	max-width: 100%;
	height: auto;
	line-height: 0;
}
a img {
	border: none;
	color: #fff;
	background: transparent;
	-webkit-transition: 0.3s ease-in-out;
       -moz-transition: 0.3s ease-in-out;
         -o-transition: 0.3s ease-in-out;
            transition: 0.3s ease-in-out;
}
a img:hover {
	opacity: 0.8;
	filter: alpha(opacity=80);
}

/* フッタ
---------------------------------------------------- */
footer {
	height: 155px;
	background: url(../images/footer-bg.png) 0 0 repeat-x;
	text-align: center;
	font-size: 11px;
	font-size: 1.rem;
	color: #929292;
}
footer .logo {
	padding-top: 40px;
}

/* レティーナ用画像
---------------------------------------------------- */
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
header {
	background: url(../images/header-bg@2x.png) 0 0 repeat-x;
	background-size: contain;
}
footer {
	background: url(../images/footer-bg@2x.png) 0 0 repeat-x;
	background-size: contain;
}
}


/* iPad　縦　以上
---------------------------------------------------- */
@media all and (min-width: 767px) {

/* ヘッダー
---------------------------------------------------- */
header {
	height: 84px;
}
header h1 {
	margin: 15px 0 0 0/*16.28571%*/;
}

	
header .inner {
		position: relative;
	}
header .badge {
	display: block;
	width: auto;
	position: absolute;
	top: -25px;
	right: 0/*225px*/;
	z-index: 8000;
}
header .badge img {
	width: 125px;
}	

/* 全体構成
---------------------------------------------------- */
.flex div {
	margin:0 1%;
}

.row {
	flex-flow: row;
	flex: 1;
	-webkit-flex: 1;
}

.row-column {
	flex-flow: row;
}
.row-column-reverse {
	flex-flow: row-reverse;
}

/* 上揃え */
.top {	
	-webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}
	/* 下揃え */
.bottom {	
	-webkit-box-align: end;
    -ms-flex-align: end;
	-webkit-align-items: flex-end;
    align-items: flex-end;
}
	/* 真ん中揃え */
.centre {	
	-webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
	/* ベースライン揃え */
.baseline {	
	-webkit-box-align: baseline;
    -ms-flex-align: baseline;
	-webkit-align-items: baseline;
    align-items: baseline;
}
	/* ストレッチ揃え */
.stretch {	
	-webkit-box-align: stretch;
    -ms-flex-align: stretch;
	-webkit-align-items: stretch;
    align-items: stretch;
}

.w50 {
	width: 50%;
}
.w49 {
	width: 49%;
}
.w48 {
	width: 48%;
}
.w33 {
	width: 33%;
}
.w25 {
	width: 25%;
}
.w20 {
	width: 20%;
}

/* 共通
---------------------------------------------------- */
.wrap {
	-webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.inner {
	max-width: 960px;
	margin: 0 auto;
	padding: 0;
}
}

@media all and (min-width: 820px) {

/* ヘッダー
---------------------------------------------------- */
header .badge img {
	width: 145px;
}	
}
/* IE10 */
@media all and (-ms-high-contrast:none) and (min-width: 1140px) {

}
@charset "UTF-8";

/* ヘッド
---------------------------------------------------- */
.head {
	padding: 18px 0 30px 0;
	background: url(../images/head-bg-sp.png) center center no-repeat;
	background-size: cover;
}
.head-text {
	position: relative;
	z-index: 5000;
	text-align: center;
}

.head-form {
	padding: 44px 0 43px 0;
	background: url(../images/head-form-bg.png) center center no-repeat;
	background-size: cover;
	text-align: center;
}

/* 矢印
---------------------------------------------------- */
.arrow {
	position: relative;
	z-index: 1000;
}
.arrow img {
	position: absolute;
	top: -30px;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 146px;
	height: 73px;
}
.arrow-top {
	position: relative;
	z-index: 1000;
}
.arrow-top img {
	position: absolute;
	top: -30px;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 146px;
	height: 73px;
}


/* 問い合わせフォームへ
---------------------------------------------------- */
aside {
	margin-top: 1px;
	margin-bottom: 1px;
	padding-top: 25px;
	padding-bottom: 0px;
	background: url(../images/app-bg.png) 0 0 repeat-x;
	background-size: contain;
}
.app-btn {
	margin-top: -5px;
	margin-bottom: 20px;
}
.tel-title {
	margin-bottom: -20px;
}
.aside-bottom {
	padding-bottom: 40px;
}

.mt20{margin-top: 20px;}

/* セクション
---------------------------------------------------- */
section {
	margin: 0;
	padding: 5.71428% 0;
}
section h2 {
	margin: 0;
	padding: 0;
}

/* セクション1
---------------------------------------------------- */
.section-1 {
	height: 52.14285%;
	background: url(../images/section-1-bg.png) center 0 no-repeat;
	background-size: cover;
	position: relative;
}
.section-1 h2 {
	margin-bottom: 3.92857%;
}
.section-1 .text {
	margin-bottom: 14.28571%;
}

/* セクション2
---------------------------------------------------- */
.section-2 {
	height: 52.14285%;
}
.section-2 h2 {
	margin-bottom: 3.92857%;
}
.section-2 .text {
	margin-bottom: 10px20px;
	text-align: center;
}
.section-2 .table-1 {
	margin-bottom: 20px/*70px*/;
	text-align: center;
}
.section-2 .table-2 {
	text-align: center;
}

/* セクション3
---------------------------------------------------- */
.section-3 {
	height: 68.5%;
	background: url(../images/section-3-bg.png) center 0 no-repeat;
	background-size: cover;
	position: relative;
}
.section-3 h2 {
	margin-bottom: 8.71428%;
}
.section-3 .flex div {
	margin-bottom: 3.57142%;
	z-index: 5000;
}

/* セクション4
---------------------------------------------------- */
.section-4 {
	padding-bottom: 0;
	line-height: 0;
	background: url(../images/section-4-bg.png) center 0 no-repeat;
	background-size: cover;
	text-align: center;
}

/* セクション5
---------------------------------------------------- */
.section-5 {
	position: relative;
}
.section-5 .yellow {
	position: relative;
	top: -125px;
}
.section-5 .title {
	margin-top: -90px;
	margin-bottom: 30px;
}
.section-5 .marutto {
	position: relative;
	z-index: 5000;
}

/* セクション6
---------------------------------------------------- */
.section-6 {
	padding-bottom: 0;
}
.section-6 .point-1 .inner {
	padding-bottom: 2.85714%;
	position: relative;
}
.section-6 .point-2 {
	background: url(../images/point-2-bg.png) center 0 no-repeat;
	background-size: cover;
}
.section-6 .point-2 .inner {
	padding-bottom: 2.85714%;
	position: relative;
}
.section-6 .point-3 .inner {
	padding-bottom: 2.85714%;
	position: relative;
}
.section-6 .point-4 {
	background: url(../images/point-4-bg.png) center 0 no-repeat;
	background-size: cover;
}
.section-6 .point-4 .inner {
	padding-bottom: 2.85714%;
	position: relative;
	z-index: 5000;
}
.section-6 .point-5 {
	height: 30.28571%;
	background: url(../images/point-5-bg.png) center 0 no-repeat;
	background-size: cover;
	margin-top: 2px;
	padding: 7.85714% 0;
}

/* セクション7
---------------------------------------------------- */
.section-7 {
}
.section-7 h2 {
	margin-bottom: 3.35714%;
}
.section-7 .flow {
	width: 100%;
	height: 350px;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
}
.section-7 .flow .img {
	width: 950px;
	height: 335px;
	background: url(../images/flow.png) center 0 no-repeat;
	background-size: 950px 335px;
}
.yoko-scroll {
	margin: 1em 0;
}

/* セクション8
---------------------------------------------------- */
.section-8 {
	background: url(../images/section-8-bg.png) center 0 no-repeat;
	background-size: cover;
	position: relative;
}
.section-8 h2 {
	margin-bottom: 3.35714%;
}
.jirei {
	display: -webkit-flex;
	display: -webkit-box;
    display: -ms-flexbox;
	display: -moz-flex;
    display: flex;
	-ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
	justify-content: space-around;
	text-align: center;
	-webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	position: relative;
	z-index: 5000;
}
.jirei div {
	width: 48%;
}

/* ページトップ
---------------------------------------------------- */
.go-top {
	height: 50px;
	background: url(../images/page-top-bg.png) 0 0 repeat-x;
	position: relative;
}
.page-top-btn {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 191px;
	height: 96px;
}

/* 会社概要
---------------------------------------------------- */
.company {
	color: #333;
}

.company h2 {
	font-size: 17px;
	font-size: 1.7rem;
	padding-bottom: 15px;
	text-align: left;
}
.company h3 {
	font-size: 13px;
	font-size: 1.3rem;
	margin-top: 20px;
	margin-bottom: 10px;
	padding-bottom: 5px;
	text-align: left;
	border-bottom: 1px solid #bebebe;
}
.company h3:nth-of-type(2) {
	margin-top: 20px;
}
.company h4 {
	font-size: 13px;
	font-size: 1.3rem;
	margin: 0px 0 0 0;
	padding: 0;
	text-align: left;
}
.company h4:nth-of-type(2) {
	margin: 20px 0 0 0;
}
.company-link {
	font-size: 13px;
	font-size: 1.3rem;
	text-align: left;
}
.company-link a {
	color: #333;
	text-decoration: underline;
}
.f_left {
	width: 100%;
}

.f_right {
	width: 100%;
}

.f_right p {
	margin: 0;
	padding: 0;
	font-size: 13px;
	font-size: 1.3rem;
	line-height: 17px;
	text-align: left;
}
.company table {
	width: 100%;
	text-align: left;
	font-size: 13px;
	font-size: 1.3rem;
	line-height: 1.65em;
	margin: 15px 0 0 0;
}
.company table tr {
	border-top: 1px solid #bebebe;
	border-bottom: 1px solid #bebebe;
}
.company table th {
	padding: 5px 0;
	text-align: left;
	vertical-align: top;
	width: 14%;
}
.company table td {
	padding: 5px 0;
}
#tk_tb {
	margin: 0;
	padding: 0;
}
#tk_tb tr {
	border: none;
}
#bg_tk {
	background: #EAEAEA;
	text-align: center;
	font-size: 12px;
	font-size: 1.2rem;
	width: 30%;
	vertical-align: middle;
}
#bg_tk02 {
	background: #f2f2f2;
	padding-left: 25px;
}

/* 問い合わせフォーム
---------------------------------------------------- */
.content {
	max-width: 964px;
	margin: 0 auto;
	padding: 60px 7px 120px 7px;
}
.content table {
	width: 100%;
	margin: 0 auto 20px auto;
	border-collapse: separate;
	border-spacing: 0;
	border-top: 1px solid #ccc;
	font-size: 16px;
	font-size: 1.6rem;
}

.content table th {
	width: 200px;
	padding: 20px;
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc;
	background: #474c4f;
	color: #fff;
	text-align: left;
	vertical-align: top;
	line-height: 2.7em;
}
.content table th span {
	color: #ccc;
	line-height: 1em;
}
.content table td {
	padding: 20px;
	border-bottom: 1px solid #ccc;
	background: #eee;
	vertical-align: middle;
}
.content table textarea {
	margin: 0;
	width: 100%;
	height: 240px;
	font-size: 16px;
	font-size: 1.6rem;
}
.content h3 {
	margin: 0px 0 20px 0;
	font-size: 16px;
	font-size: 1.6rem;
}
.content h3.h3 {
	margin: 45px 0 20px 0;
	font-size: 16px;
	font-size: 1.6rem;
}
.content h3 span {
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: 400;
}
.mb30 {
	margin-bottom: 30px;
}
.w100 {
	width: 80%;
	padding: 5px;
	border: 1px solid #999;
	font-size: 16px;
	font-size: 1.6rem;
}
.w40 {
	width: 34%;
	margin: 0 15px 0 10px;
	padding: 5px;
	border: 1px solid #999;
	font-size: 16px;
	font-size: 1.6rem;
}
.name {
	width: 100%;
	display: inline-block;
	margin: 7px 0;
}
.necessary {
	float: right;
	margin-top: 12px;
}
.kojinjyouhou_box {
	height: 130px;
	padding: 20px 15px;
	border:1px solid #999;
	font-size: 14px;
	font-size: 1.4rem;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.checkbox {
	margin: 0 45px 0 0;
	line-height: 2.5em;
}
.btn {
	margin: 25px 0;
	text-align: center;
}
.buttons {
	text-align: center;
}
button {
	background: none;
	border: none;
}

	@media only screen and (max-width: 767px) { 
		.content table th {
		width: 100%;
		height: auto;
		display: block;
		padding: 5px 10px;
		line-height: 1.6em;
		}
		.content table td {
		width: 100%;
		height: auto;
		display: block;
		padding: 10px;
		}
		.necessary {
		float: right;
		margin-top: 4px;
}

		.content table td input[type=text] {
		width: 100%;
		}
		.w40 {
		margin: 0;
		}

	}

/* レティーナ用画像
---------------------------------------------------- */
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
.head {
	background: url(../images/head-bg-sp@2x.png) center center no-repeat;
	background-size: cover;
}

.head-form {
	background: url(../images/head-form-bg@2x.png) center center no-repeat;
	background-size: cover;
}
aside {
	background: url(../images/app-bg@2x.png) 0 0 repeat-x;
	background-size: contain;
}
.section-1 {
	background: url(../images/section-1-bg@2x.png) center 0 no-repeat;
	background-size: cover;
}
.section-3 {
	height: 68.5%;
	background: url(../images/section-3-bg@2x.png) center 0 no-repeat;
	background-size: cover;
}
.section-4 {
	background: url(../images/section-4-bg@2x.png) center 0 no-repeat;
	background-size: cover;
}
.section-6 .point-2 {
	background: url(../images/point-2-bg@2x.png) center 0 no-repeat;
	background-size: cover;
}
.section-6 .point-4 {
	background: url(../images/point-4-bg@2x.png) center 0 no-repeat;
	background-size: cover;
}
.section-6 .point-5 {
	background: url(../images/point-5-bg@2x.png) center 0 no-repeat;
	background-size: cover;
}
.section-7 .flow .img {
	background: url(../images/flow@2x.png) center 0 no-repeat;
	background-size: 950px 335px;
}

.section-8 {
	background: url(../images/section-8-bg@2x.png) center 0 no-repeat;
	background-size: cover;
}
.go-top {
	height: 50px;
	background: url(../images/page-top-bg@2x.png) 0 0 repeat-x;
	background-size: contain;
}
}

/* iPad　縦　以上
---------------------------------------------------- */
@media all and (min-width: 767px) {
/* ヘッド
---------------------------------------------------- */
.head {
	height: 1.57142%;
	padding: 18px 0 10px 0;
	position: relative;
	background: url(../images/head-bg-pc.png) center center no-repeat;
	background-size: cover;
}
.head-line {
	max-width: 1400px;
	height: 1.57142%;
	margin: 0 auto;
	padding: 18px 0 10px 0;
	position: relative;
	background: url(../images/head-bg-pc-line.png) center center no-repeat;
	background-size: cover;
}

.section-2 .text {
/*	margin-bottom: 20px;*/
}
.section-2 .table-1 {
	margin-bottom: 70px;
}
.jirei div {
	width: 213px;
}
	
/* 矢印
---------------------------------------------------- */
.arrow img {
	top: -58px;
	width: 287px;
	height: 144px;
}
.arrow-top img {
	top: -220px;
	width: 287px;
	height: 144px;
}

section.section-2 .inner2 {
	max-width: 1036px;
	margin: 0 auto;
	padding: 0;
}
section.section-2 .inner2 .section-2-left-box {
	max-width: 462px;
}
section.section-2 .inner2 .section-2-right-box {
	max-width: 500px;

}

/* 問い合わせフォーム
---------------------------------------------------- */
aside {
	padding-top: 40px/*4.34285%*/;
	padding-bottom: 40px/*4.34285%*/;
}
.aside-top {
	margin-top: -80px;
	position: relative;
	z-index: 999;
}
.app-btn {
	margin-top: 0;
	margin-bottom: 0;
}
.badge {
	margin-right: 1%;
}
.app-title {
	margin-left: 1%;
}
.app-btn-title {
	margin-top: 15px;
	margin-right: 1%;
}
.tel-title {
	margin-top: 15px;
	margin-left: 1%;
	margin-bottom: 0;
}
.company h2 {
	float: left;
}
.company-link {
	float: right;
}
.company h3 {
	margin-top: 0;
}
.f_left {
  width: 48%;
}
.f_right {
  width: 48%;
}
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 767px) {
.head {
	background: url(../images/head-bg-pc@2x.png) center center no-repeat;
	background-size: cover;
}
.head-line {
	background: url(../images/head-bg-pc-line@2x.png) center center no-repeat;
	background-size: cover;
}
}


/* 964px　以上
---------------------------------------------------- */
@media all and (min-width: 964px) {
.yoko-scroll {
	display: none;
}
}

/* IE10 */
@media all and (-ms-high-contrast:none) and (min-width: 1140px) {

}
@font-face {
  font-family: 'fontello';
  src: url('../font/fontello.eot?18146598');
  src: url('../font/fontello.eot?18146598#iefix') format('embedded-opentype'),
       url('../font/fontello.woff?18146598') format('woff'),
       url('../font/fontello.ttf?18146598') format('truetype'),
       url('../font/fontello.svg?18146598#fontello') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello';
    src: url('../font/fontello.svg?18146598#fontello') format('svg');
  }
}
*/
 
 [class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
 
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
 
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
 
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
 
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
 
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
 
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
 
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
 
.icon-angle-down:before { content: '\64'; } /* 'd' */
.icon-angle-left:before { content: '\6c'; } /* 'l' */
.icon-angle-up:before { content: '\75'; } /* 'u' */
.icon-ok:before { content: '\e800'; } /* '' */
.icon-down-dir:before { content: '\e801'; } /* '' */
.icon-right-dir:before { content: '\e802'; } /* '' */
.icon-left-dir:before { content: '\e803'; } /* '' */
.icon-up-dir:before { content: '\e804'; } /* '' */
.icon-angle-right:before { content: '\e805'; } /* '' */
.icon-phone:before { content: '\e806'; } /* '' */
.icon-list:before { content: '\e807'; } /* '' */
.icon-check:before { content: '\e808'; } /* '' */
.icon-mail:before { content: '\e809'; } /* '' */
.icon-edit:before { content: '\e80a'; } /* '' */
.icon-cancel:before { content: '\e80b'; } /* '' */
.icon-popup:before { content: '\e80c'; } /* '' */