@charset "utf-8";
/* page setting
--------------------------------------------------------- */
body {
	margin: 0;
	font-family: Arial, sans-serif;
	padding: 0;
	background-color: white;
}

.header {
	width: 100%;
	border: 0px;
}

.top-photo {
	width: 75%;
}

.t_border {
	position: relative;
	margin: 0 0 10px 0;
	padding: 13px 0;
	border-top: 5px ;
	border-bottom: 6px solid #006600;
	font-size: 1.286em;
	text-align: left;
	color: #003399;
	font-weight: bold;
	width: 100%;
	background: linear-gradient(90deg, #F2F2F2 76%, #D9D9D9 100%);
	z-index: 4;
}

.header hr {
	height: 2px;
	background: #92D050;
	border: none;
	margin-top: -10px;
	z-index: 4;
}


.t_border img{
	margin-left: 15%;
	padding: 2px 0 0 0;
	width: 215px;
}

@media screen and (max-width: 700px) {
	header {
		position: sticky; /* ここに注目! */
		top: 0;
		color: white;
		background-color: white;
		align-content: center;
		z-index: 5;
	}

	section {
		padding: 5px 15px;
		height: 150vh;
		background-color: skyblue;
	}

	.t_border img{
		margin-left: 10px;
		margin-bottom: -5px;
		padding: 2px 0 0 0;
		width: 215px;
	}
}


/*メニューリスト*/
.list {
	position: relative;
	overflow: hidden; /* ulでリスト全体を右に50%移動している分幅が広がりスクロールバーが表示されるのを防ぐ */
	width: 100%;
}

.list img {
	position:sticky;
	top: 0px;
	left: 5%;
	margin-bottom: -20px;
	margin-top: -20px;
}


.list ul {
	text-align: right;
	margin-right: 7%;
	height: auto;
	font-size: 0; /* タグ改行時の空白防止 */
}

.list ul li{
	display: inline-block;
	margin-left: 5px;
	font-size: 12px; /* ulでサイズ0にしたのを戻す */
	list-style: none;
	width:13%;
	vertical-align: top;
	text-align: center;
	font-color: #275317;
}

.list ul li a,a:visited{
	color: #275317;/*カラーコードは任意*/
	text-decoration: none;
}


@media screen and (max-width: 700px) {
	.list ul {
		display: block;
		text-align: center;
/*		margin: auto;*/
		height: auto;
/*		padding-top: 40px;*/
		margin: 0 -10px 0 -25%;
	}

	.list ul li{
		margin: auto;
		font-size: 3.5vw; /* ulでサイズ0にしたのを戻す */
		list-style: none;
		width: 100%;
		vertical-align: top;
		text-align: left;
		font-color: #ffffff;
		border-bottom: 1px solid #afafaf;
		line-height: 3em;
		text-indent: 2.5em;

	}

	.list ul li a,a:visited,a:link{
		color: #ffffff;/*カラーコードは任意*/
		text-decoration: none;
	}

	.css-br::after {
		content: "\A";
		white-space: pre;
		line-height: 2.5;
	}


	/*ハンバーガーメニュー用*/
	.hamburger {
		position: fixed;
		top: 25px;
		right: 25px;
		width: 30px;
		cursor: pointer;
		z-index: 20;
	}

	.hamburger span {
		display: block;
		height: 3px;
		width: 100%;
		background-color: #275317;
		margin: 5px 0;
		transition: 0.4s;
	}

	/* バツ印に変化するスタイル */
	.hamburger.active span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
		background-color: #ffffff;
	}

	.hamburger.active span:nth-child(2) {
		opacity: 0;
		background-color: #ffffff;
	}

	.hamburger.active span:nth-child(3) {
		transform: rotate(-45deg) translate(6px, -6px);
		background-color: #ffffff;
	}


	.hamburger2 {
		position: fixed;
		top: 25px;
		right: 80px;
		width: 30px;
		cursor: pointer;
		z-index: 20;
	}

	.hamburger2 span {
		display: block;
		height: 3px;
		width: 100%;
		background-color: #275317;
		margin: 5px 0;
		transition: 0.4s;
	}

	/* バツ印に変化するスタイル */
	.hamburger2.active span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
		background-color: #ffffff;
	}

	.hamburger2.active span:nth-child(2) {
		opacity: 0;
		background-color: #ffffff;
	}

	.hamburger2.active span:nth-child(3) {
		transform: rotate(-45deg) translate(6px, -6px);
		background-color: #ffffff;
	}
	

	/* メニューのスタイル */
	.list {
		position: fixed;
		top: -100%; /* 初期状態でメニューを画面の外に */
		right: 0;
		width: 50%;
		height: 100%;
		background-color: rgba(39,83,23,0.7);
		padding: 20px;
		box-sizing: border-box;
		z-index: 5;
		transition: top 0.3s ease; /* スライドアニメーション */

/*		display: block;
		position: fixed;
		top: -100%;
		right: 0px;
		width: 50%;
		height: auto;
		background-color: #ffffff;
		padding: 5px;
		box-sizing: border-box;
		z-index: 4;
		transition: top 0.3s ease;  */
	}

	/* メニューが表示される時 */
	.list.open {
		top: 0; /* メニューが表示される位置 */
	}
/*ハンバーガーメニューここまで*/
}



/*main*/
.main {
	margin: auto;
	max-width: 800px;/*ここで最大幅を表示*/
}

.main_border {
	position: relative;
	margin: -10px 0 -10px 0;
	padding: 0 0 3px 0;
	font-size: 12px;
	text-align: center;
	width: 100%;
	color: #000000;
	background: linear-gradient(to bottom, #ffffff 0%, #ffffff 10%, #E5EDEA 5%, #E5EDEA 100%);
}


/*事業内容*/
.contents {
	text-align: center;
	height: auto;
	width: 100%;
	margin-bottom: 50px;
	min-width :800px;
}

.contents-list {
	position: relative;
	overflow: hidden; /* ulでリスト全体を右に50%移動している分幅が広がりスクロールバーが表示されるのを防ぐ */
}

.contents-list ul {
	text-align: center;
	margin-left: -10px;
	font-size: 0; /* タグ改行時の空白防止 */
}

.contents-list ul li{
	display: inline-block;
	margin: 10px 30px 10px 30px;
	font-size: 12px; /* ulでサイズ0にしたのを戻す */
	font-color: #275317;
	list-style: none;
	height: 150px;
	width: 150px;
	text-align: center;
	vertical-align: top;
	border-radius: 10px; /* 角を丸くする */
	outline: solid 1px #000000;
	background: #ffffff;
}

.contents-list ul li a {
    display: block;
    width: 100%;
    height: 100%;
}


/*サービス*/
.service {
	height: auto;
	width: 100%;
	margin-bottom: 50px;
	min-width :800px;

}

.service teble {
	width:90%;
	border:0;
}

.service td {
	width:50%;
	vertical-align: top;
	color: #595959;
}

.service td p {
	padding:10px;
	margin-top: -10px;
	margin-bottom; -15px;
	color: #595959;
}

.service hr {
	height: 2px;
	background: linear-gradient(to right, #F2F2F2, #92D050 20%, #006600 74%, #006600 83%, #92D050 100%);
	border: none;
	margin-top: 5px;
	margin-right: 10px;
	margin-left: 10px;
}

.service .inde {
	text-indent: 1em;
	line-height: 1.8em;
}


.service-contents .inde {
	text-indent: 1em;
	line-height: 1.8em;
}

.service-contents {
     width: 100%;
     max-width: 1200px;
     margin: auto;
 }
 .service-contents img {
     width: 100%;
 }
.text-center {
	text-align: center;
}
.flexbox {
	display: flex;
}
 
.flexbox hr {
	height: 2px;
	background: linear-gradient(to right, #F2F2F2, #92D050 20%, #006600 74%, #006600 83%, #92D050 100%);
	border: none;
	margin-top: 5px;
	margin-right: 10px;
	margin-left: 10px;
}


.box1 {
	width: 50%;
	margin: auto;
}
.box2 {
	width: 50%;
	margin: auto .5rem;
	color: #595959;
}

.box3 {
	width: 50%;
	margin: auto;
	color: #595959;
}
.box4 {
	width: 50%;
	margin: auto .5rem;
}

.box5 {
	width: 50%;
	margin: auto;
}

.box6 {
	width: 50%;
	margin: auto .5rem;
	color: #595959;
}


@media screen and (max-width: 700px) {
	.flexbox {
		display: block;
	}
	.flexbox .box1 {
		width: 90%;
		margin: 0 auto;
	}
	.flexbox .box2 {
		width: 90%;
		margin: 0 auto;
	}
	.flexbox .box3 {
		display: none;
	}
	.flexbox .box4 {
		display: none;
	}
	
	.flexbox .box5 {
		width: 90%;
		margin: 0 auto;
	}
	.flexbox .box6 {
		width: 90%;
		margin: 0 auto;
	}
}

@media screen and (min-width: 701px) {
	.flexbox .box5 {
		display: none;
	}
	.flexbox .box6 {
		display: none;
	}
}

.service-contents hr {
	height: 2px;
	background: linear-gradient(to right, #F2F2F2, #92D050 20%, #006600 74%, #006600 83%, #92D050 100%);
	border: none;
	margin-top: 5px;
	margin-right: 10px;
	margin-left: 10px;
}



/*ニュース*/
.news {
	text-align: center;
	height: auto;
	width: 95%;
	margin-bottom: 50px;
	margin-left: 10px;
}

.news ul {
	width: 90%;
	margin: auto;
	border-radius: 10px; /* 角を丸くする */
	outline: solid 2px #000000;
	padding-top: 20px;
	padding-bottom: 10px;
	margin-bottom: 40px;
}

.news ul li{
	display: inline-block;
	font-size: 12px; /* ulでサイズ0にしたのを戻す */
	list-style: none;
	width:100%;
	text-align: left;
	vertical-align: top;
	margin: 5px 0px;
}

.inden {
	text-indent: 1em;
}

.news ul li a,a:visited{
	color: #000000;/*カラーコードは任意*/
	text-decoration: none;
}

.newstitle {
	width: 100%;
	max-width: 800px;
	color: #595959;
	font-size: 35px;
	font-weight: bold;
}

.newsbox {
	display: flex;
}
 
.newsbox hr {
	height: 2px;
	background: linear-gradient(to right, #F2F2F2, #92D050 20%, #006600 74%, #006600 83%, #92D050 100%);
	border: none;
	margin-top: 5px;
	margin-right: 10px;
	margin-left: 10px;
}


.newsbox1 {
	width: 20%;
	margin: auto;
	color: #595959;
}
.newsbox2 {
	width: 20%;
	margin: auto;
	color: #595959;
}

.newsbox3 {
	width: 60%;
	margin: auto;
	color: #595959;
}



/*footer*/
.footer {
	width: 100%;
	border: 0px;
	background: #E5EDEA;
}


.footer-line {
	background: #275317;
	color: #ffffff;
	text-align: left;
	margin-top: -16px;
}


.copyright_txt {
	font-size: 12px;
	line-height: 1;
	padding-top: 10px;
	padding-bottom: 5px;
	margin-top: 5px;
	margin-bottom: -45px;
	margin-left: 15%;
}


.copyright_txt2 {
	font-size: 12px;
	line-height: 1;
	padding-top: 15px;
	padding-bottom: 10px;
	margin-right: 15%;
	margin-bottom: 5px;
	text-align: right;
}


.copyright_txt3 {
	font-size: 12px;
	line-height: 1;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-left: -50px;
}

.footer-list {
	position: relative;
	overflow: hidden; /* ulでリスト全体を右に50%移動している分幅が広がりスクロールバーが表示されるのを防ぐ */
}

.footer-list ul {
	text-align: left;
	margin-left: 0px;
	font-size: 0; /* タグ改行時の空白防止 */
	background: #E5EDEA;
}

.footer-list ul li{
	display: inline-block;
	margin: 5px 0 5px 13%;
	padding: 10px 0;
	font-size: 10px; /* ulでサイズ0にしたのを戻す */
	font-color: #275317;
	list-style: none;
	width:60%;
	text-align: left;
	vertical-align: top;
}


.footer-list ul li a,a:visited{
	color: #275317;/*カラーコードは任意*/
	text-decoration: none;
}





.footer-list2 {
	position: relative;
	overflow: hidden; /* ulでリスト全体を右に50%移動している分幅が広がりスクロールバーが表示されるのを防ぐ */
}

.footer-list2 ul {
	text-align: left;
	margin-left: 0px;
	font-size: 0; /* タグ改行時の空白防止 */
	background: #E5EDEA;
}

.footer-list2 ul li{
	display: inline-block;
	margin: 5px 0 5px 13%;
	padding: 10px 0;
	font-size: 10px; /* ulでサイズ0にしたのを戻す */
	font-color: #275317;
	list-style: none;
	width:60%;
	height:15px;
	text-align: left;
	vertical-align: top;
}





@media screen and (max-width: 700px) {
	.footer-list {
		position: relative;
		overflow: hidden; /* ulでリスト全体を右に50%移動している分幅が広がりスクロールバーが表示されるのを防ぐ */
	}

	.footer-list ul {
		text-align: left;
		margin-left: 0px;
		font-size: 0; /* タグ改行時の空白防止 */
		background: #E5EDEA;
	}


	.footer-list ul li{
		display: inline-block;
		margin: 5px 0 5px -5%;
		padding: 10px 0;
		font-size: 9px; /* ulでサイズ0にしたのを戻す */
		font-color: #275317;
		list-style: none;
		width:100%;
		text-align: left;
		vertical-align: top;
	}

	.footer-list2 {
		position: relative;
		overflow: hidden; /* ulでリスト全体を右に50%移動している分幅が広がりスクロールバーが表示されるのを防ぐ */
	}

	.footer-list2 ul {
		text-align: left;
		margin-left: 0px;
		font-size: 0; /* タグ改行時の空白防止 */
		background: #E5EDEA;
	}


	.footer-list2 ul li{
		display: inline-block;
		margin: 5px 0 5px -5%;
		padding: 10px 0;
		font-size: 9px; /* ulでサイズ0にしたのを戻す */
		font-color: #275317;
		list-style: none;
		width:100%;
		text-align: left;
		vertical-align: top;
	}



	.copyright_txt {
		font-size: 9px;
		line-height: 1;
		padding-top: 10px;
		padding-bottom: 5px;
		margin-top: -12px;
		margin-bottom: -45px;
		margin-left: 5%;
	}


	.copyright_txt2 {
		font-size: 9px;
		line-height: 1;
		padding-top: 15px;
		padding-bottom: 10px;
		margin-top: 15px;
		margin-right: 5%;
		margin-bottom: 5px;
		text-align: right;
	}
}



/* CONTACT */

.contact {
	width: 100%;
	text-align: center;
	margin-top: 30px;
	padding-bottom: 10px;
}


.contact a img:hover{
	opacity:0.5;
	transition:0.3s;
	padding: 0;
}

@media screen and (min-width: 701px) {
	.contact_txt {
		font-size: 12px;
		color: #595959;
		line-height: 1;
		padding-top: -230px;
		padding-bottom: 20px;
		line-height: 20px;
		font-weight: bold;
	}

	.contact_txt-sp {
		display: none;
	}

	.contact_txt3 {
		margin: auto;
		max-width: 800px;/*ここで最大幅を表示*/
		text-align: center;
	}

	.contact_txt3 table {
		text-align: center;
		width: 100%;
		margin-top: -170px;
		margin-bottom: -20px
	}

	.contact_txt3 table td {
		text-align: center;
		width: 50%;
	}

}

@media screen and (max-width: 700px) {
	.contact_txt {
		display: none;
	}

	.contact_txt-sp {
		font-size: 12px;
		color: #595959;
		line-height: 1;
		padding-top: -230px;
		padding-bottom: 20px;
		line-height: 20px;
		font-weight: bold;
	}

	.contact_txt-sp a,a:visited,a:link{
		color: #595959;
	}


}

.contact_txt2 {
	font-size: 12px;
	line-height: 1;
	padding-top: -5px;
	padding-bottom: 20px;
	margin-top: 13px;
	margin-right: 30%;
	text-align: right;
}

	.contact_txt3 {
		margin: auto;
		max-width: 800px;/*ここで最大幅を表示*/
		text-align: center;
	}

	.contact_txt3 table {
		text-align: center;
		width: 100%;
		margin-top: -170px;
		margin-bottom: -20px
	}

	.contact_txt3 table td {
		text-align: center;
		width: 50%;
	}


@media screen and (min-width: 701px) {
.btn {/*親div*/
  position: relative;/*相対配置*/
  }

.btn img {
  width: 70%;
  margin-top: -10px;
  }

	.btn-sp {
		display: none;
	}
}

@media screen and (max-width: 700px) {
	.btn-sp {/*親div*/
		position: relative;/*相対配置*/
	}

	.btn-sp p {
		position: absolute;/*絶対配置*/
		color: white;/*文字は白に*/
		top: 10%;
		left: 40%;
		font-size: 16px;
	}

	.btn-sp img {
		width: 80%;
		margin-top: -20px;
		margin-right: 10px;
	}

	.btn {
		display: none;
	}
}

@media screen and (min-width: 701px) {
	.button-pc {
		padding: 30px 50px;
		background: #006600;
		font-size: 16px;
		font-color: #ffffff;
		cursor: pointer;
		outline: none;
		border-radius: 10px;
		border-style: none;
		margin-top: -20px;
		margin-left: auto;
		margin-right: auto;
	}

	.button-sp {
		display: none;
	}
}

@media screen and (max-width: 700px) {

	.button-sp {
		padding: 20px 40px;
		background: #006600;
		font-size: 16px;
		font-color: #ffffff;
		cursor: pointer;
		outline: none;
		border-radius: 10px;
		border-style: none;
		margin-top: -10px;
		margin-left: auto;
		margin-right: auto;
	}

.button-pc {
	display: none;
}

}




.button-pc a :hover{
	opacity:0.5;
	transition:0.3s;
}

.button-sp a :hover{
	opacity:0.5;
	transition:0.3s;
}

.button-pc a,a:visited{
	color: #ffffff;/*カラーコードは任意*/
	text-decoration: none;
}

.button-sp a,a:visited{
	color: #ffffff;/*カラーコードは任意*/
	text-decoration: none;
}

a,a:visited{
	color: #275317;/*カラーコードは任意*/
	text-decoration: none;
}


/* 見出し*/
.move {
	font-size: 10px;
	font-color: #275317;
	margin-top: 5px;
}


@media screen and (max-width: 700px) {
	.move {
		font-size: 10px;
		font-color: #275317;
		margin-top: 5px;
		margin-left: 20px;
	}
}



.move2 {
	background: linear-gradient(180deg, #ffffff 0%, #ffffff 15%, #E5EDEA 15%, #E5EDEA 100%);
	display: flex;
	justify-content: center;
	align-items: start;
	width: 100%;
	border: 0px;
}

.move2 p {
	color: #595959;
	font-size: 17px;
	text-align: center;
	line-height: 1.9em;
}

.move2 table {
	text-align: center;
	width: 100%;
}

.move2 table th {
	text-align: center;
	width: 100%;
	color: #595959;
	font-size: 35px;
	font-weight: bold;
}

.move2 table td {
	width: 100%;
	color: #595959;
	font-size: 17px;
	text-align: center;
	line-height: 2.0em;
	margin-top: 25px;
	padding-bottom: 10px;
}


@media screen and (max-width: 700px) {
/*	.move2 {
		display: none;
	}

	.move2 p {
		display: none;
	}
*/

	.move2 table {
		text-align: center;
		width: 100%;
	}

	.move2 table th {
		text-align: center;
		width: 100%;
		color: #595959;
		font-size: 25px;
		font-weight: bold;
		padding-top: 10px;
	}

	.move2 table td {
		width: 95%;
		color: #595959;
		font-size: 14px;
		text-align: left;
		line-height: 1.9em;
		padding:0 10px 10px 10px;
		margin: auto;
	}



	.move2-2 {
		background: linear-gradient(180deg, #ffffff 0%, #ffffff 15%, #E5EDEA 15%, #E5EDEA 100%);
		display: flex;
		justify-content: center;
		align-items: start;
		width: 100%;
		border: 0px;
	}
	.move2-2 p {
		color: #595959;
		font-size: 12px;
		line-height: 1.9em;
		width: 90%;
		text-align: left;
	}

/*
	.move2 {
		background: linear-gradient(180deg, #ffffff 0%, #ffffff 15%, #E5EDEA 15%, #E5EDEA 100%);
		display: flex;
		justify-content: center;
		align-items: start;
		width: 100%;
		border: 0px;
	}

	.move2 p {
		color: #595959;
		font-size: 14px;
		text-align: center;
		line-height: 1.9em;
	}
*/
}

@media screen and (min-width: 701px) {
	.move2-2 {
		display: none;
	}
	.move2-2 p {
		display: none;
	}
}

.move3 {
	display: flex;
	justify-content: center;
	align-items: start;
	width: 100%;
	border: 0px;
}

.move3 p {
	color: #595959;
	font-size: 35px;
	font-weight: bold;
}

.move4 {
	background: linear-gradient(90deg, #F2F2F2 76%, #D9D9D9 100%);
	display: flex;
	justify-content: center;
	align-items: start;
	width: 100%;
	border: 0px;
	height: 200px;
}

.move4 p {
	color: #595959;
	font-size: 14px;
	text-align: center;
	line-height: 2.5em;
	margin-top: -15px;
}

.heading {
	height: auto;
	width: 100%;
	margin-top: 10px;
	padding: 5px 0;
	background: #E5EDEA;
}

.heading-box {
	text-align: left;
	height: auto;
	margin-left: 20%;
	padding-left: 50px;
}

.heading-box .border1{
	border-bottom: 2px solid #275317;
	padding-top: 15px;
	margin-top: 20px;
	margin-right: 50px;
	margin-bottom: -15px;
}

@media screen and (max-width: 700px) {
	.heading p {
		margin-left: 10px;
	}
}




/*========== 共有 ==================================================*/
.alignleft	{float:left;}
.alignright	{float:right;}
.aligncenter	{float:center;}
.textleft	{text-align:left !important;	}
.textright	{text-align:right !important;	}
.textcenter	{text-align:center !important;	}
.def		{color:#6b0000 !important;		}
.red		{color:#E33 !important;		}
.wred		{color:#900 !important;		}
.green		{color:#451 !important;		}
.blue		{color:#33E !important;		}
.brown		{color:#642 !important;		}
.pink		{color:#ffa1a9 !important;		}
.white		{color:#fff !important;		}
.link_b		{color:#f00;	text-decoration:underline;}
.bg-red	{background: #C00000; padding: 0 5px;}
.bg-blue	{background: #215F9A; padding: 0 5px;}
.bold	{font-weight: bold;}
.mt2	{margin-top:2px !important;	}
.mt5	{margin-top:5px !important;	}
.mt10	{margin-top:10px !important;	}
.mt15	{margin-top:15px !important;	}
.mt20	{margin-top:20px !important;	}
.mt25	{margin-top:25px !important;	}
.mt30	{margin-top:30px !important;	}
.mt33	{margin-top:33px !important;	}
.mt34	{margin-top:34px !important;	}
.mt35	{margin-top:35px !important;	}
.mt40	{margin-top:40px !important;	}
.mt50	{margin-top:50px !important;	}
.mt60	{margin-top:60px !important;	}
.mt70	{margin-top:70px !important;	}
.mt80	{margin-top:80px !important;	}
.mt90	{margin-top:90px !important;	}
.mt100	{margin-top:100px !important;	}
.mt110	{margin-top:110px !important;	}
.mt120	{margin-top:120px !important;	}
.mt130	{margin-top:130px !important;	}
.mt140	{margin-top:140px !important;	}
.mt150	{margin-top:150px !important;	}
.mt-5	{margin-top:-5px !important;	}
.mt-10	{margin-top:-10px !important;	}
.mt-15	{margin-top:-15px !important;	}
.mt-20	{margin-top:-20px !important;	}
.mt-25	{margin-top:-25px !important;	}
.mt-30	{margin-top:-30px !important;	}
.mt-33	{margin-top:-33px !important;	}
.mt-34	{margin-top:-34px !important;	}
.mt-35	{margin-top:-35px !important;	}
.mt-40	{margin-top:-40px !important;	}
.mt-50	{margin-top:-50px !important;	}
.mt-60	{margin-top:-60px !important;	}
.mb5	{margin-bottom:5px !important;	}
.mb10	{margin-bottom:10px !important;	}
.mb15	{margin-bottom:15px !important;	}
.mb20	{margin-bottom:20px !important;	}
.mb25	{margin-bottom:25px !important;	}
.mb30	{margin-bottom:30px !important;	}
.mb35	{margin-bottom:35px !important;	}
.mb40	{margin-bottom:40px !important;	}
.mb50	{margin-bottom:50px !important;	}
.mb60	{margin-bottom:60px !important;	}
.mb70	{margin-bottom:70px !important;	}
.mb80	{margin-bottom:80px !important;	}
.mb90	{margin-bottom:90px !important;	}
.mb150	{margin-bottom:150px !important;	}
.mb200	{margin-bottom:200px !important;	}
.mb-5	{margin-bottom:-5px !important;	}
.mb-10	{margin-bottom:-10px !important;	}
.mb-15	{margin-bottom:-15px !important;	}
.mb-20	{margin-bottom:-20px !important;	}
.mb-25	{margin-bottom:-25px !important;	}
.mb-30	{margin-bottom:-30px !important;	}
.mb-35	{margin-bottom:-35px !important;	}
.mb-40	{margin-bottom:-40px !important;	}
.mb-50	{margin-bottom:-50px !important;	}
.mb-60	{margin-bottom:-60px !important;	}
.mb-70	{margin-bottom:-70px !important;	}
.mb-80	{margin-bottom:-80px !important;	}
.mb-90	{margin-bottom:-90px !important;	}
.ml5	{margin-left:5px !important;	}
.ml10	{margin-left:10px !important;	}
.ml15	{margin-left:15px !important;	}
.ml20	{margin-left:20px !important;	}
.ml25	{margin-left:25px !important;	}
.ml30	{margin-left:30px !important;	}
.ml35	{margin-left:35px !important;	}
.ml40	{margin-left:40px !important;	}
.ml45	{margin-left:45px !important;	}
.ml50	{margin-left:50px !important;	}
.ml60	{margin-left:60px !important;	}
.ml70	{margin-left:70px !important;	}
.ml80	{margin-left:80px !important;	}
.ml90	{margin-left:90px !important;	}
.ml100	{margin-left:100px !important;	}
.ml150	{margin-left:150px !important;	}
.ml200	{margin-left:200px !important;	}
.ml-5	{margin-left:-5px !important;	}
.ml-6	{margin-left:-6px !important;	}
.ml-7	{margin-left:-7px !important;	}
.ml-8	{margin-left:-8px !important;	}
.ml-10	{margin-left:-10px !important;	}
.ml-15	{margin-left:-15px !important;	}
.ml-20	{margin-left:-20px !important;	}
.ml-25	{margin-left:-25px !important;	}
.ml-30	{margin-left:-30px !important;	}
.ml-35	{margin-left:-35px !important;	}
.ml-40	{margin-left:-40px !important;	}
.ml-45	{margin-left:-45px !important;	}
.ml-50	{margin-left:-50px !important;	}
.ml-60	{margin-left:-60px !important;	}
.ml-70	{margin-left:-70px !important;	}
.ml-80	{margin-left:-80px !important;	}
.ml-90	{margin-left:-90px !important;	}
.ml-100	{margin-left:-100px !important;	}
.ml-150	{margin-left:-150px !important;	}
.ml-200	{margin-left:-200px !important;	}
.mr5	{margin-right: 5px !important;	}
.mr10	{margin-right:10px !important;	}
.mr13	{margin-right:13px !important;	}
.mr15	{margin-right:15px !important;	}
.mr20	{margin-right:20px !important;	}
.mr25	{margin-right:25px !important;	}
.mr30	{margin-right:30px !important;	}
.mr33	{margin-right:33px !important;	}
.mr34	{margin-right:34px !important;	}
.mr35	{margin-right:35px !important;	}
.mr40	{margin-right:40px !important;	}
.mr50	{margin-right:50px !important;	}
.mr60	{margin-right:60px !important;	}
.mr100	{margin-right:100px !important;	}
.mr150	{margin-right:150px !important;	}
.mr200	{margin-right:200px !important;	}

.pt2	{padding-top:2px !important;	}
.pt5	{padding-top:5px !important;	}
.pt10	{padding-top:10px !important;	}
.pt15	{padding-top:15px !important;	}
.pt20	{padding-top:20px !important;	}
.pt25	{padding-top:25px !important;	}
.pt30	{padding-top:30px !important;	}
.pt35	{padding-top:35px !important;	}
.pt40	{padding-top:40px !important;	}
.pt50	{padding-top:50px !important;	}
.pt60	{padding-top:60px !important;	}
.pt-5	{padding-top:-5px !important;	}
.pt-10	{padding-top:-10px !important;	}
.pt-15	{padding-top:-15px !important;	}
.pt-20	{padding-top:-20px !important;	}
.pt-25	{padding-top:-25px !important;	}
.pt-30	{padding-top:-30px !important;	}
.pt-35	{padding-top:-35px !important;	}
.pt-40	{padding-top:-40px !important;	}
.pt-50	{padding-top:-50px !important;	}
.pt-60	{padding-top:-60px !important;	}
.pb5	{padding-bottom:5px !important;	}
.pb10	{padding-bottom:10px !important;	}
.pb15	{padding-bottom:15px !important;	}
.pb20	{padding-bottom:20px !important;	}
.pb25	{padding-bottom:25px !important;	}
.pb30	{padding-bottom:30px !important;	}
.pb35	{padding-bottom:35px !important;	}
.pb40	{padding-bottom:40px !important;	}
.pb50	{padding-bottom:50px !important;	}
.pb60	{padding-bottom:60px !important;	}
.pl5	{padding-left:5px !important;	}
.pl10	{padding-left:10px !important;	}
.pl15	{padding-left:15px !important;	}
.pl20	{padding-left:20px !important;	}
.pl25	{padding-left:25px !important;	}
.pl30	{padding-left:30px !important;	}
.pl35	{padding-left:35px !important;	}
.pl40	{padding-left:40px !important;	}
.pl50	{padding-left:50px !important;	}
.pl60	{padding-left:60px !important;	}
.pl70	{padding-left:70px !important;	}
.pl80	{padding-left:80px !important;	}
.pl90	{padding-left:90px !important;	}
.pl100	{padding-left:100px !important;	}
.p-l5	{padding-left:-5px !important;	}
.p-l10	{padding-left:-10px !important;	}
.p-l15	{padding-left:-15px !important;	}
.p-l20	{padding-left:-20px !important;	}
.p-l25	{padding-left:-25px !important;	}
.p-l30	{padding-left:-30px !important;	}
.p-l35	{padding-left:-35px !important;	}
.p-l40	{padding-left:-40px !important;	}
.p-l50	{padding-left:-50px !important;	}
.p-l60	{padding-left:-60px !important;	}
.p-l70	{padding-left:-70px !important;	}
.p-l80	{padding-left:-80px !important;	}
.p-l90	{padding-left:-90px !important;	}
.p-l100	{padding-left:1-00px !important;	}
.pr5	{padding-right: 5px !important;	}
.pr10	{padding-right:10px !important;	}
.pr15	{padding-right:15px !important;	}
.pr20	{padding-right:20px !important;	}
.pr25	{padding-right:25px !important;	}
.pr30	{padding-right:30px !important;	}
.pr35	{padding-right:35px !important;	}
.pr40	{padding-right:40px !important;	}
.pr50	{padding-right:50px !important;	}
.pr60	{padding-right:60px !important;	}

.f10, .f10 li	{font-size:10px !important;}
.f11, .f11 li	{font-size:11px !important;}
.f12, .f12 li	{font-size:12px !important;}
.f13, .f13 li	{font-size:13px !important;}
.f14, .f14 li	{font-size:14px !important;}
.f15, .f15 li	{font-size:15px !important;}
.f16, .f16 li	{font-size:16px !important;}
.f17, .f17 li	{font-size:17px !important;}
.f18, .f18 li	{font-size:18px !important;}
.f19, .f19 li	{font-size:19px !important;}
.f20, .f20 li	{font-size:20px !important;}
.f21, .f21 li	{font-size:21px !important;}
.f22, .f22 li	{font-size:22px !important;}
.f23, .f23 li	{font-size:23px !important;}
.f24, .f24 li	{font-size:24px !important;}
.f25, .f25 li	{font-size:25px !important;}
.f26, .f26 li	{font-size:26px !important;}
.f27, .f27 li	{font-size:27px !important;}
.f28, .f28 li	{font-size:28px !important;}
.f29, .f29 li	{font-size:29px !important;}
.f30, .f30 li	{font-size:30px !important;}
.f35, .f35 li	{font-size:35px !important;}
.f40, .f40 li	{font-size:40px !important;}
.f45, .f45 li	{font-size:45px !important;}
.f50, .f50 li	{font-size:50px !important;}
.f55, .f55 li	{font-size:55px !important;}
.f60, .f60 li	{font-size:60px !important;}

.lh10, .lh10 li	{line-height:100% !important;}
.lh11, .lh11 li	{line-height:110% !important;}
.lh12, .lh12 li	{line-height:120% !important;}
.lh13, .lh13 li	{line-height:130% !important;}
.lh14, .lh14 li	{line-height:140% !important;}
.lh15, .lh15 li	{line-height:150% !important;}
.lh16, .lh16 li	{line-height:160% !important;}
.lh17, .lh17 li	{line-height:170% !important;}
.lh18, .lh18 li	{line-height:180% !important;}
.lh19, .lh19 li	{line-height:190% !important;}
.lh20, .lh20 li	{line-height:200% !important;}

.l170 {line-height: 1.7;}



.ls012	{letter-spacing: 0.12em;}
.ls013	{letter-spacing: 0.13em;}
.ls014	{letter-spacing: 0.14em;}
.ls015	{letter-spacing: 0.15em;}
.ls016	{letter-spacing: 0.16em;}
.ls017	{letter-spacing: 0.17em;}
.ls018	{letter-spacing: 0.18em;}
.ls019	{letter-spacing: 0.19em;}
.ls020	{letter-spacing: 0.20em;}
.ls030	{letter-spacing: 0.30em;}
.ls040	{letter-spacing: 0.40em;}
.ls050	{letter-spacing: 0.50em;}
.ls060	{letter-spacing: 0.60em;}
.ls070	{letter-spacing: 0.70em;}
.ls080	{letter-spacing: 0.80em;}
.ls090	{letter-spacing: 0.90em;}
.ls100	{letter-spacing: 1.00em;}

.lh15	{line-height: 15px;}
.lh16	{line-height: 16px;}
.lh17	{line-height: 17px;}
.lh18	{line-height: 18px;}
.lh19	{line-height: 19px;}
.lh20	{line-height: 20px;}

