@charset "utf-8";
/* CSS Document */


/* RESET */

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,th,var,optgroup{font-style:inherit;font-weight:inherit;}del,ins{text-decoration:none;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym{border:0;font-variant:normal;}sup{vertical-align:baseline;}sub{vertical-align:baseline;}legend{color:#000;}input,button,textarea,select,optgroup,option{font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;}input,button,textarea,select{*font-size:100%;}
/* RESET HTML5 */
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%;font:inherit;vertical-align:baseline;}
/* HTML5 display-role reset for older browsers */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}



/* GENERAL */

html {
    overflow-y:scroll;
    }

body {
	font-family: "メイリオ", Meiryo,"ＭＳ Ｐゴシック", "MS PGothic","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka,  sans-serif;
	font-size:20px;
	line-height:1.5;
	color: #000;
	text-align:center;
	background: #fff;
	-webkit-text-size-adjust: 100%;

}

@media screen and (max-width: 767px) {
	body{
		font-size: 18px;
		line-height: 1.3; 
	}
}


/*共通*/

article,section{
	width: 100%;
	padding-top: 50px;
	overflow: hidden;
}
section div{
	width:990px;
	margin-right: auto;
	margin-left: auto;
	overflow: hidden;
}

@media screen and (max-width: 767px) {
	section div{
	width: 100%;
}
	section div img{ width: 100%; }
}

/*要素*/

a{ text-decoration: none; }

h1{
	margin-bottom: 70px;
	font-family : YuMincho, '游明朝', "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	font-size: 45px;
	font-weight: bold;
	color: #53b0a6;
}

h2{
	margin-bottom: 30px;
	font-size: 38px;
	font-weight: bold;
}

@media screen and (max-width: 767px) {
	h1{
		margin-bottom: 45px;
		font-size: 30px;
}
}

/*header*/
.cbp-af-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	text-align: center;
	background: #fff;
	z-index: 10000;
	min-height: 50px;
	overflow: hidden;
	-webkit-transition: height 0.3s;
	-moz-transition: height 0.3s;
	transition: height 0.3s;
	border-bottom: 2px solid #000;
}

.cbp-af-header .cbp-af-inner {
	width: 90%;
	max-width: 990px;
	margin: 0 auto;
	padding: 10px 0;
	text-align: left;
}

header img{
	float: left;
}
header nav{
	float: right;
	max-width: 70%;
	margin-top: 15px;
}
header nav a{
	display: block;
	float:left;
	margin-right: 20px;
	font-size: 13px;
	color: #737373;
}
header nav a:last-child{ margin-right: 0; }

.cbp-af-header nav a {
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.cbp-af-header.cbp-af-header-shrink {
	height: 40px;
}

.sp-catch{ display: none; }
@media screen and (max-width: 1000px) {

header nav{ margin-top: 0;}
}
@media screen and (max-width: 767px) {

header nav{ display: none; }

.sp-catch{
	padding: 15px 5px 0 0 ;
	display: block;
	font-size: 10px;
	font-weight: bold;
	color: #666;
	text-align: right;
}
}
@media screen and (max-device-width: 320px) {
header img { width: 40%; }/* iPhone */
.sp-catch{ padding: 8px 0 0 0 ; }
}

/*section-top*/

section.movie{
	width: 100%;
	max-width: 100%;
	height: auto;
	padding: 0;
	position: relative;
	z-index: 0;
}


.movie-text{
	position:absolute;
	width: 160px;
	height: 500px;
	top: 10%;
	left: 50%;
	margin-left: -80px;
	z-index: 1;
}
.item {
  float: right;
  margin-left: 30px;
  opacity: 0;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

.item:nth-child(1) {
  -webkit-animation: example 2s ease 0.5s 1 forwards; /*2s のところが降ってくるスピードです*/
  animation: example 2s ease 0.5s 1 forwards; /*2s のところが降ってくるスピードです*/
}

.item:nth-child(2) {
	margin-top: 100px;
  -webkit-animation: example 2s ease 3s 1 forwards; /*2s のところが降ってくるスピードで、3ｓのところが表示されるまでの時間です*/
  animation: example 2s ease 3s 1 forwards; /*2s のところが降ってくるスピードで、3ｓのところが表示されるまでの時間です*/
}

@-webkit-keyframes example {
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes example {
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
video{
	display: block;
	width: 100%;
	z-index: 100;
}
.movie-cont{
	position: absolute;
	width: 504px;
	height: 130px;
	top: 70%;
	left: 50%;
	margin-top: -80px;
	margin-left: -252px;
	z-index: 1000;
	text-align: center;
}
.movie-cont a{
	display: block;
	width: 504px;
	height: 63px;
	margin: 10px auto 0;
}
.movie-cont a:hover{
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	zoom: 1; 
	background:url(https://www.blooming.co.jp/wordpress201910/wp-content/themes/nakanishi/images/easycare/button_h.png);
}



section.slide{ display: none;}

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

section.movie{ display: none;}

section.slide{
	display: block;
	width: 100%;
	height: auto;
	max-height: 640px;
	position: relative;
	margin: 0;
	padding: 0;
	background: none;
	overflow: hidden;
}
.movie-cont{
	min-height: 140px;
	margin-top: -80px;
	z-index: 1;
}
.movie-cont img{
	width: 100%;
	max-width: 504px;
}
.movie-cont-sp{
	position: absolute;
	width: 90%;
	top: 55%;
	left: 50%;
	margin-top: -80px;
	margin-left: -45%;
}

.rslides {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
  z-index: 0;
  }

.rslides li {
  -webkit-backface-visibility: hidden;
  position: absolute;
  display: none;
  width: 100%;
  left: 0;
  top: 0;
  }

.rslides li:first-child {
  position: relative;
  display: block;
  float: left;
  }

.rslides img {
  display: block;
  height: auto;
  float: left;
  width: 100%;
  border: 0;
  }
}


/*section01-07*/

section{
	padding: 110px 0;
	position: relative;
	z-index: 0;
	overflow: visible;
}
section#sec07{
	padding-bottom: 0;
}
section .title{
	position: absolute!important;
	width: 151px!important;
	height: 151px!important;
	min-height: inherit!important;
	top: -76px!important;
	left: 50%!important;
	padding: 0!important;
	margin-left: -76px!important;
	z-index: 100001!important;
}
section .line{
	position: absolute;
	width: 100%!important;
	height: 17px;
	min-height: 17px!important;
	top: -8px;
	left: 0;
	background: url(https://www.blooming.co.jp/wordpress201910/wp-content/themes/nakanishi/images/easycare/line.png) top repeat-x;
	z-index: 100001!important;
}
.stripe{
	position:absolute;
	width: 100%;
	max-width: 100%;
	height: 100%;
	top: 0px;
	left: 0;
	background: url(https://www.blooming.co.jp/wordpress201910/wp-content/themes/nakanishi/images/easycare/stripe.png) repeat; 
	z-index: 1;
	opacity: 0.1;
}
/*epsode01*/
section#sec01 p{
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	color: #53b0a6;
}
@media screen and (max-width: 767px) {
	section#sec01 p,section#sec01 p.txt22{ font-size: 18px; }
}



/*easycare*/

section#sec02{
	padding: 0;
	background: url(https://www.blooming.co.jp/wordpress201910/wp-content/themes/nakanishi/images/easycare/sec02-bg.jpg) center top repeat-x;
}


section#sec02 div.for-pc{
	width: 990px;
	height: 903px;
	position: relative;
}
section#sec02 div img{z-index: 2; }
.sec02-01{
	position: absolute;
	width: 431px;
	height: 341px;
	top: 114px;
	left:65px;
}
.sec02-02{
	position: absolute;
	width: 433px;
	height: 226px;
	top: 237px;
	left:532px;
}
.sec02-03{
	position: absolute;
	width: 266px;
	height: 288px;
	top: 437px;
	left: 71px;
}
.sec02-04{
	position: absolute;
	width: 265px;
	height: 272px;
	top: 477px;
	left: 363px;
}
.sec02-05{
	position: absolute;
	width: 306px;
	height: 244px;
	top: 528px;
	left: 636px;
}	

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

	section#sec02 div.for-sp{
		width: 90%;
		height: auto;
		padding: 70px 5% 0;
		z-index: 2;
		position: relative;
	}
	.sec02-01,.sec02-02,.sec02-03,.sec02-04,.sec02-05{
		position: inherit;
		width: inherit;
		top: inherit;
		left: inherit;
	}
	section#sec02 div img{
		width: 80%;
		height: auto;
		margin-top: 30px;
	}
	section#sec02 div.for-sp ul{
		width: 100%;
		margin: 30px 0 100px;
	}
	section#sec02 div.for-sp ul li{
	margin-bottom: 25px;
	font-size: 16px;
	color: #53b0a6;
	text-align: left;
	}
	section#sec02 div.for-sp ul li h3{
		margin-bottom: 5px;
		font-size: 22px;
		font-weight: bold;
		color: #e4c789;
	}
	section#sec02 div.for-sp ul li img{
		float:left;
		max-width: 115px;
		max-height: 115px;
		margin: 0 25px 0 0;
}
}
/*saveironing*/
section#sec03{
	padding: 150px 0;
	background: url(https://www.blooming.co.jp/wordpress201910/wp-content/themes/nakanishi/images/easycare/sec03-bg.jpg) center top repeat-x;
}

section#sec03 ul{
	width: 920px;
	padding: 50px 35px;
	margin: 0 auto;
	background: rgba(255,255,255,0.8);
}
section#sec03 ul li{
	float: left;
}
section#sec03 ul li.sec03-txt{
	width: 435px;
	padding: 45px 30px ;
	font-size: 16px;
	color: #53b0a6;
	line-height: 1.7;
	text-align: left;
}
section#sec03 .sec03-txt h3{
	width: 100%;
	font-size: 24px;
	margin-bottom: 30px;
}
section#sec03 .sec03-txt p{
	display: block;
	width: 435px;
	margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
section#sec03{
	padding: 110px 0;
}
section#sec03 ul{
	width: 80%;
	padding: 5%;
}
section#sec03 ul li{
	float: none;
}
section#sec03 ul li.sec03-txt{
	width: 90%;
	padding: 25px 5%;
	font-size: 80%;
}
section#sec03 .sec03-txt h3{
	width: 100%;
	font-size: 22px;
	margin-bottom: 15px;
}
section#sec03 .sec03-txt p{
	width: 100%;
	margin-bottom: 40px;
}
section#sec03 .sec03-txt img{
	width: 100%;
}
}

/*technology*/

section#sec04 .sec04-txt{
	float: right;
	width: 467px;
	padding-top: 70px;
	margin-left: 110px;
	font-size: 16px;
	color: #53b0a6;
}

section#sec04 h2{
	margin-bottom: 50px;
	font-size: 29px;
}
section#sec04 .sec04-txt img{
	float: none;
	margin-bottom: 50px;
}
section#sec04 p{
	display: block;
	width: 376px;
	padding: 0 30px 0 50px;
	text-align: left;
}
section#sec04 img{
	float: right;
}

@media screen and (max-width: 767px) {
	section#sec04 img{
	float: none;
	width: 100%;
}
section#sec04 .sec04-txt{
	float: none;
	width: 90%;
	padding: 0 0 0 5%;
	margin: 0 0 30px;
	margin-left: 0;
}

section#sec04 h2{
	width: 100%;
	margin-bottom: 20px;
	font-size: 29px;
}
section#sec04 .sec04-txt img{
	float: none;
	margin-bottom: 20px;
	width: 80%;
	max-width: 335px;
}
section#sec04 p{
	display: block;
	width: 100%;
	padding: 0;
	text-align: left;
}
section#sec04 img{
	float: none;
	width: 100%;
	max-width: 523px;
}
}
/*comparison*/
section#sec05{
	padding: 150px 0;
	background: url(https://www.blooming.co.jp/wordpress201910/wp-content/themes/nakanishi/images/easycare/sec05-bg.jpg) center top repeat-x;
}

section#sec05 ul{
	width: 890px;
	margin: 0 auto;
	padding: 50px;
	background: rgba(255,255,255,0.8);
	position: inherit;
	z-index: 10;
}
section#sec05 ul li{
	float: left;
}
section#sec05 ul li.sec05-txt{
	width: 460px;
	padding: 60px 0;
	margin-right: 90px;
	font-size: 16px;
	color: #907232;
	line-height: 1.7;
}
section#sec05 .sec05-txt h3{
	width: 100%;
	font-size: 29px;
	margin-bottom: 30px;
}
section#sec05 .sec05-txt p{
	display: block; 
	width: 380px;
	padding-left: 60px;
	margin-bottom: 40px;
	text-align: left;
}
@media screen and (max-width: 767px) {
section#sec05{
	padding: 110px 0;
}
section#sec05 ul{
	width: 80%;
	padding: 5%;
}
section#sec05 ul li{
	float: none;
}
section#sec05 ul li.sec05-txt{
	width: 90%;
	padding: 25px 5%;
	margin-right: 0;
	font-size: 80%;
}
section#sec05 .sec05-txt h3{
	width: 100%;
	margin-bottom: 10px;
	font-size: 26px;
}
section#sec05 .sec05-txt p{
	width: 100%;
	padding: 0;
	margin-bottom: 20px;
}
.sec05-txt p img{
	max-width: 152px;
	margin: 0;
}
.sec05-txt img{
	width: 80%;
	max-width: 400px;
	margin: 0 0 15px 1%;
}
}

/*user's voice*/
section#sec06{
	/*padding: 150px 0;*/
	background: url(https://www.blooming.co.jp/wordpress201910/wp-content/themes/nakanishi/images/easycare/sec06-bg.jpg) center top repeat-x;
}
section#sec06 div img{
	float: left;
}
section#sec06 h2{
	margin-bottom: 40px;
	font-size: 29px;
	color: #907232;
}
/*where to buy*/

.sec07-bg{
	position:absolute;
	width: 100%;
	max-width: 100%;
	height: 950px;
	top: 0;
	left: 0;
	background: #f6f6f6; 
	z-index: 1;
}
.sec07{
	position: inherit;
	z-index: 10;
}
section#sec07 h2{
	margin-bottom: 70px;
	font-size: 29px;
	color:#53b0a6;
	background: url(https://www.blooming.co.jp/wordpress201910/wp-content/themes/nakanishi/images/easycare/sec07-title.gif) top center no-repeat;
}
section#sec07 div.logo{
	width: 600px;
	padding-left: 30px;
	margin-bottom: 70px;
}
section#sec07 div.logo img{
	float: left;
	margin: 0 30px 50px 0;
}
section#sec07 p{
	display: block;
	margin-bottom: 30px;
	font-size: 23px;
	line-height: 2;
	color: #3d3d3d;
}
section#sec07 p.cap{
	display: block;
	font-size: 17px;
}

/*ショップリンク*/
.cart-wrap{
	width: 100%;
	margin: 50px auto!important;
	text-align: center;
}
.hallmark .cart-wrap{
	margin: 10px auto 100px!important;
}

.cart-wrap a.cart{
    display: inline-block;
    min-height: 20px;
    padding: 13px 45px;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
	background-color: #999;
    border: 1px none rgba(0,0,0,0.2);
    border-radius: 50px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}
.cart-wrap a.cart:hover {
    background-color: #000;
}

.cart-wrap a.cart:before {
  font-family: "Font Awesome 5 Free";
  content: "\f07a";
  font-size: 16px;
  font-weight: 900;
  padding-right : 10px;/*文字との隙間*/
  color: #fff;/*アイコンの色*/
}
.cart-wrap a.cart.relation{
    display: block;
    max-width: 210px;
    min-height: 20px;
    padding: 13px 45px;
    margin: 0 auto 20px;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    background-color: #999;
    border: 1px none rgba(0,0,0,0.2);
    border-radius: 50px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}
.cart-wrap a.cart.relation:hover {
    background-color: #000;
}

.cart-wrap a.cart.relation:before {
  font-family: "Font Awesome 5 Free";
  content: "\f060";
  font-size: 16px;
  font-weight: 900;
  padding-right : 10px;/*文字との隙間*/
  color: #fff;/*アイコンの色*/
}
.entry .cart-wrap a:link,.entry .cart-wrap a:visited{ color: #fff; }
.cart-wrap.two-cart a.cart:first-child{ margin: 0 auto 10px; }

.cart-wrap p{
	font-size: 13px;
	text-align: center;
}



@media screen and (max-width: 767px) {
	.sec07-bg{ height: 100%; }
	section#sec07{
		padding: 110px 0 0 ;
		margin-bottom: 50px;
	}
	.sec07-title{ display: none; }
	section#sec07 h2{
		margin-bottom: 20px;
		font-size: 21px;
		color: #53b0a6 ;
		background: none;
	}
		
	section#sec07 div.logo{
		width: 95%;
		padding-left: 5%;
		margin-bottom:30px;
	}
	section#sec07 div.logo img{
		width: 90%;
		margin: 0 5% 10px 0;
}
section#sec07 p{
	width: 100%;
	margin: 0 auto 30px;
	font-size: 15px;
	line-height: 1.3;
}
section#sec07 p.cap{
	font-size: 12px; }
.sec07-photo{
	position: inherit;
	width: 80%;
	margin: 0 auto;
	height: inherit;
	top: inherit;
	left: inherit;
}
}

@media screen and (min-width: 768px) {
/*フッター*/

footer{
	width:100%;
	padding: 25px 0;
	background:#f6f6f6;
	font-size: 13px;
}
footer h3{ font-weight:bold; }
	
ul.foot-cont{
	width: 995px;
	padding-left:5px;
	margin: 0 auto;
	text-align: left;
}
ul.foot-cont li{
	float: left;
	height: 350px;
	padding-right: 23px;
	margin-right: 23px;
	background: url(https://www.blooming.co.jp/news/wp-content/themes/nakanishi/images/foot-bg.gif) right top repeat-y;
}
ul.foot-cont li.foot-shop{
	margin-right: 23px;
}
ul.foot-cont li.topics{
	max-width: 160px;
	padding-right: 0;
	margin-right: 0;
	background:none;
}
ul.foot-cont li.topics img{
	margin-bottom: 10px; 
}
ul.foot-cont p{
	padding-left:15px;
}
ul.foot-cont a{
	display:block;
	color:#626262 ;
}
ul.foot-cont a.blue{ color: steelblue; }
ul.foot-cont li.topics a img{
	border:none;
}
.copy{
	width:100%;
	padding:25px 0;
	font-size: 13px;
}
.sns{
	width:100%;
	margin-top: 5px;
	font-size: 14px;
	font-weight: bold;
}
.sns a{
	float:left;
	margin-right:10px;
}
}
@media screen and (max-width: 767px) {

/*フッター*/


footer{
	width:100%;
	padding: 25px 0;
	background:#f6f6f6;
	font-size: 13px;
}
footer h3{
	margin-bottom:10px;
	color: #cc195e;
	font-weight:bold; }
	
ul.foot-cont{
	width: 90%;
	padding-left: 5px;
	margin: 0 auto;
	text-align: left;
}
ul.foot-cont li{
	padding: 20px 0;

}
ul.foot-cont li span{ display:block; }
ul.foot-cont a{
	display:block;
	color:#626262 ;}

ul.foot-cont a.blue{ color: steelblue; }
.copy{
	width:100%;
	padding:25px 0;
	font-size: 13px;
}
.sns{
	width:100%;
	font-size: 14px;
	font-weight: bold;
}
.sns a{
	float:left;
	margin-right:20px;
}
}

/*TOPスクロールボタン*/
#page-top {
	position: fixed;
	bottom: 70px;
	right: 50px;
	font-size: 77%;
}
#page-top a {
	background: #c4c4c4;
	text-decoration: none;
	color: #fff;
	width: 70px;
	padding: 5px 20px;
	text-align: center;
	display: block;
	border-radius: 5px;
	font-size:11px;
	border-radius:5px 5px 5px 5px;
}
#page-top a:hover {
	text-decoration: none;
	background: #999;
}



/*PC非表示*/
button.drawer-toggle,
.drawer-hamburger-icon,
.drawer-main,
.drawer-hamburger,
.top-sp,.for-sp{
	display:none;
}

@media screen and (max-width: 767px) {
button.drawer-toggle,
.drawer-hamburger-icon,
.drawer-main,
.drawer-hamburger,
.top-sp,.for-sp {
	display: block;
}
.for-pc{ display: none; }
}
/*調整マージン*/
.flo-l{ float:left; }
.flo-r{ float:right; }

.txt22{ font-size: 22px; }

.txt-en{
	font-family:Helmet, Freesans, Helvetica, Arial, sans-serif;
	font-size: 16px;
}
	

.red{color:#F00;}
	
.bdr-orange{border:1px solid #fa7d19;}
.bdr-red{border: 1px solid #e60012; }
.bdr-b-red{border-bottom: 4px solid #e60012; }
.no-bdr{ border:none;}
p.bdr{
	border-bottom: 3px solid #f0f0f0;
	padding-bottom: 30px;
}

.text-11{ font-size: 11px; }
.text-13{ font-size: 13px; }
.text-14,.box300 h3 span.text-14{ font-size: 14px; }
.text-16{ font-size: 16px; }
.text-23{ font-size: 23px; }
.text-24{ font-size: 24px; }
.text-25{ font-size: 25px; }

.text-center{ text-align: center; }
.text-l,.w100 section div.text-l{ text-align: left; }
.text-r{ text-align: right; }

.mgn-t-30{ margin-top: -30px; }
.mgn-t15{ margin-top: 15px; }
.mgn-t40{ margin-top: 40px; }
.pdn-t75{padding-top:75px;}
.mgn-t120{ margin-top: 120px; }
.mgn-t160{ margin-top: 160px; }

.mgn-r0,img.mgn-r0,li.mgn-r0{ margin-right:0px;}
.mgn-r10{ margin-right:10px; }
.mgn-r15{ margin-right:15px; }
.mgn-r19{ margin-right: 19px; }
.mgn-r20{ margin-right:20px; }
.mgn-r25{ margin-right:25px; }
.mgn-r30{ 	margin-right: 28px;}
.mgn-r34{ margin-right:34px; }
.mgn-r40{ margin-right:40px; }
.mgn-r50{ margin-right:50px; }
.mgn-r55{ margin-right: 55px;}
.mgn-r65{ margin-right:65px;}
.mgn-r70{ margin-right:70px;}
.mgn-r75{ margin-right:75px;}
.mgn-r120{ margin-right:120px; }
.mgn-r150{ margin-right: 150px; }
.mgn-r200{ margin-right: 200px; }
.mgn-r370{ margin-right:370px;}

.mgn-b10{ margin-bottom:10px;}
.mgn-b15{ margin-bottom:15px;}
.mgn-b20{ margin-bottom:20px;}
.mgn-b30{ margin-bottom:30px;}
.mgn-b35{ margin-bottom:35px;}
.mgn-b40,p.mgn-b40{ margin-bottom:40px;}
.mgn-b50{ margin-bottom:50px;}
.mgn-b55{ margin-bottom:55px;}
.mgn-b60{ margin-bottom:60px;}
.mgn-b70{ margin-bottom:70px;}
.mgn-b75{ margin-bottom:75px;}
.mgn-b80{ margin-bottom:80px;}
.mgn-b90{ margin-bottom: 90px;}
.mgn-b100{ margin-bottom:100px;}
.mgn-b170{ margin-bottom:170px;}
.mgn-b200{ margin-bottom:200px;}

.mgn-l50{ margin-left: 50px; }
.mgn-l85{ margin-left: 85px; }
.mgn-l145{ margin-left: 145px; }

/*clearfix*/
.clearfix,section,header{zoom: 1;}
.clearfix:after,section:after,header:after {content: ""; display: block; clear: both;}

	
