/* -------------------------------- 

Primary style（スマホ共通スタイル）

-------------------------------- */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
	font-size: 100%;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #747676;
	background-color: #000;
}

body, html {
  /* important */
  height: 100%;
}

a {
	color: #FFF;
	text-decoration: none;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Open Sans', sans-serif ,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic";
	font-weight: none;
	font-style: normal;
	text-rendering: optimizeLegibility;
	line-height: 1.1;
	margin-bottom: 10px;
	margin-top: 10px;
}
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
	font-size: 80%;
	color: #CCC;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-weight: inherit; text-decoration:none; }
h1 {font-size: 36px; line-height: 48px;}
h2 {font-size: 32px; line-height: 42px;}
h3 {font-size: 28px; line-height: 36px;}
h4 {font-size: 24px; line-height: 32px;}
h5 {font-size: 21px; line-height: 27px;}
h6 {font-size: 18px; line-height: 27px;}

.col_white{
	color: #FFF;
}

/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 768px;
  margin: 0 auto;
}
.cd-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------- 

Header Navi

-------------------------------- */
.cd-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 50px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	z-index: 2;
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
	background-color: #000;
}
.cd-header span{font-family: 'Lora', serif;}
.cd-header span.small{
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-size: 90%;
}

.cd-header:after {
  content: "";
  display: table;
  clear: both;
}
.cd-header #cd-logo {
  float: left;
  margin: 13px 0 0 5%;
}
.cd-header #cd-logo img {
  display: block;
}


/* -------------------------------- 
CSS animation
-------------------------------- */
figure {
	position: relative;
	overflow: hidden;
	width: 300px;
}
figcaption {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.6);
	-webkit-transition: .3s;
	transition: .3s;
	opacity: 0;
}
figure:hover figcaption {
	opacity: 1;
}


figure h3 {
  padding: 20px 0 5px;
  color: #fff;
  font-size: 24px;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
}
figure p {
  color: #fff;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}



/* Effect 01 */
#slider3 figure {
  position: relative;
  overflow: hidden;
}
#slider3 figcaption {
position: absolute;
top: 0;
left: 0;
z-index: 2;
width: 100%;
height: 100%;
background: rgba(0,0,0,.6);
-webkit-transition: .3s;
transition: .3s;
opacity: 0;
padding-top: 20%;
}
#slider3 figure:hover figcaption {
  opacity: 1;
}


#contact {
	padding-top: 15%;
}

#content01 {
	position: relative;
	color: #fff;
}
#content01 a {
	color: #fff;
}
.close-content01 {
	position: absolute;
	right: 10px;
	top: 10px;
	font-size: 24px;
	cursor: pointer;
	border:1px #fff solid;
	padding: 0 10px;
}
#content2 {
	position: relative;
	color: #102E27;
	background-color: rgba(255,255,255,0.8) !important;
}
#content02 a {
	color: #102E27;
}
.open-menu {
-webkit-filter: blur(4px);
  -ms-filter: blur(4px);
  filter: blur(4px);
}
.close-menu {
-webkit-filter: blur(0px);
  -ms-filter: blur(0px);
  filter: blur(0px);
}
.close-content02 {
	position: absolute;
	right: 10px;
	top: 10px;
	font-size: 24px;
	cursor: pointer;
	padding: 0 10px;
}
.modal-content {
	padding: 20px;
}
.modal-content ul {
	width: 300px;
	margin: 50px auto;
	font-size: 24px;
}
.modal-content ul li {
	display: inline-block;
	margin: 0 10px 20px;
}
.modal-content ul li i {
	margin: 0 10px 0 0;
}

@media only screen and (min-width: 768px) {/*PC768px〜*/
  .cd-header {
    height: 70px;
  }
  .cd-header #cd-logo {
    margin: 23px 0 0 5%;
  }
}

.cd-main-nav {
  float: right;
  margin-right: 5%;
  width: 44px;
  height: 100%;
  background: url("./img/cd-icon-menu.svg") no-repeat center center;
  background-size: 44px 44px;
  cursor: pointer;
}
.cd-main-nav ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.cd-main-nav ul.is-visible {
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}
.cd-main-nav a {
	display: block;
	height: 50px;
	line-height: 50px;
	padding-left: 5%;
	border-top: 1px solid #453c3d;
	color: #CCC;
	background-color: #000;
}
  .no-touch .cd-main-nav a:hover {
	color: #4B0082;
  }

@media only screen and (min-width: 769px) {
  .cd-main-nav {
    width: auto;
    height: auto;
    background: none;
    cursor: auto;
  }
  .cd-main-nav ul {
    position: static;
    width: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    line-height: 70px;
  }
  .cd-main-nav ul.is-visible {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  .cd-main-nav li {
    display: inline-block;
    margin-left: 0.5em;
  }
  .cd-main-nav a {
	display: inline-block;
	height: auto;
	line-height: normal;
	background: transparent;
	padding: 0.2em;
	border-top: none;
	color: #CCC;
	text-transform: none;
	/*	font-weight: bold;*/	
    font-size: 12px;
	/*	font-size: 0.7rem;*/
  }
  .no-touch .cd-main-nav a:hover {
	color: #4B0082;
  }
}

/* ---- Forms ---- */
.vform {
	width: 80%;
	margin-right: auto;
	margin-left: auto;
}
.hform {
	width: 95%;
	padding: 5%;
}
.vform, .hform {
	margin-bottom: 20px;
	color: #FFF;
	font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
}


.vform label {width: 100%; margin-bottom: 5px; }
.hform label {width: 25%; margin-bottom: 10px; }
.vform label {
	font-size: 14px;
	line-height: 21px;
	vertical-align: middle;
	display: block;
	float: none;
	text-align: left;
	color: #FFF;
}
.hform label {
	font-size: 14px;
	line-height: 21px;
	vertical-align: middle;
	display: block;
	float: left;
	text-align: right;
	padding-right: 2em;
	color: #FFF;
}

.vform textarea, .vform input[type="text"], .vform input[type="password"], .vform input[type="datetime"], .vform input[type="datetime-local"], .vform input[type="date"], 
.vform input[type="month"], .vform input[type="time"], .vform input[type="week"], .vform input[type="number"], .vform input[type="email"], .vform input[type="url"], 
.vform input[type="tel"], .vform input[type="color"], .vform select{
	width: 100%;
}
.hform textarea, .hform input[type="text"], .hform input[type="password"], .hform input[type="datetime"], .hform input[type="datetime-local"], .hform input[type="date"], 
.hform input[type="month"], .hform input[type="time"], .hform input[type="week"], .hform input[type="number"], .hform input[type="email"], .hform input[type="url"], 
.hform input[type="tel"], .hform input[type="color"], .hform select {
	width: 70%;
}

.vform textarea, .vform input[type="text"], .vform input[type="password"], .vform input[type="datetime"], .vform input[type="datetime-local"], .vform input[type="date"], 
.vform input[type="month"], .vform input[type="time"], .vform input[type="week"], .vform input[type="number"], .vform input[type="email"], .vform input[type="url"], 
.vform input[type="tel"], .vform input[type="color"], .vform select, .vform input[type=file],
.hform textarea, .hform input[type="text"], .hform input[type="password"], .hform input[type="datetime"], .hform input[type="datetime-local"], .hform input[type="date"], 
.hform input[type="month"], .hform input[type="time"], .hform input[type="week"], .hform input[type="number"], .hform input[type="email"], .hform input[type="url"], 
.hform input[type="tel"], .hform input[type="color"], .hform select, .hform input[type=file] {
	display: block;
	background: #ffffff;
	border: 1px solid #cccccc;
	padding: 10px 10px;
	vertical-align: middle;
	outline: none;	
			border-radius: 4px;
	   -moz-border-radius: 4px;
	-webkit-border-radius: 4px;
			transition: border linear 0.4s, box-shadow linear 0.4s;
		 -o-transition: border linear 0.4s, box-shadow linear 0.4s;
	   -moz-transition: border linear 0.4s, box-shadow linear 0.4s;
	-webkit-transition: border linear 0.4s, box-shadow linear 0.4s;
	margin-bottom: 10px;
	font-size: 13px; 
	line-height: 21px; 
	height: 30px;
} 
.vform input[type="text"]:focus, .vform input[type="password"]:focus, .vform input[type="datetime"]:focus, .vform input[type="email"]:focus,
.vform input[type="datetime-local"]:focus, .vform input[type="date"]:focus, .vform input[type="month"]:focus, .vform input[type="time"]:focus, 
.vform input[type="week"]:focus, .vform input[type="url"]:focus, .vform input[type="number"]:focus, .vform input[type="search"]:focus, .vform input[type="tel"]:focus, 
.vform textarea:focus,
.hform textarea:focus, .hform input[type="text"]:focus, .hform input[type="password"]:focus, .hform input[type="datetime"]:focus, 
.hform input[type="datetime-local"]:focus, .hform input[type="date"]:focus, .hform input[type="month"]:focus, .hform input[type="time"]:focus, 
.hform input[type="week"]:focus, .hform input[type="number"]:focus, .hform input[type="email"]:focus, .hform input[type="url"]:focus, .hform input[type="search"]:focus, 
.hform input[type="tel"]:focus, .hform input[type="color"]:focus{
  border: 1px solid;
  border-color: rgba(82, 168, 236, 0.8);
  color: #444;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(81, 168, 236, 0.5);
     -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(81, 168, 236, 0.5);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(81, 168, 236, 0.5);
}
.vform textarea, .hform textarea{min-height: 120px; }
.vform fieldset, .hform fieldset {
	margin-bottom: 1em;
}
.vform input[type="file"], .hform input[type="file"] {overflow: none;}
/* conjoined inputs */
.vform span.pre, .hform span.pre, .vform span.post, .hform span.post {
	display: block;	
	background-color: #f2f2f2; 
	border: 1px solid #cccccc;
	color: #222222;
	font-size: 13px; 
	line-height: 18px;
	height: 30px;
	position: relative;
	padding: 5px 10px;
}
.vform span.pre, .hform span.pre{margin-right: -1px; float: left;	}
.vform span.post, .hform span.post{margin-left: -1px; float: left;}
.vform input.post, .hform input.post, .vform span.pre, .hform span.pre{
         border-radius: 4px 0 0 4px;
	   -moz-border-radius: 4px 0 0 4px;
	-webkit-border-radius: 4px 0 0 4px;
}
.vform input.pre, .hform input.pre, .vform span.post, .hform span.post{
         border-radius: 0 4px 4px 0;
	   -moz-border-radius: 0 4px 4px 0;
	-webkit-border-radius: 0 4px 4px 0;
}
.vform input.pre, .vform input.post{width:75%; float:left; height: 30px;}
.hform input.pre, .hform input.post{width:45%; float:left; height: 30px;}
.vform input.pre-post{width: 70%; float: left; height: 30px; border-radius: 0;}
.hform input.pre-post{width: 40%; float: left; height: 30px; border-radius: 0;}
.vform span[type="submit"].post, .hform span[type="submit"].post, .vform span[type="submit"].pre, .hform span[type="submit"].pre{
	cursor: pointer;
	background-color: #f5f5f5;
	background-image: linear-gradient(top, #f9f9f9, #efefef);
	background-image: -ms-linear-gradient(top, #f9f9f9, #efefef);
	background-image: -moz-linear-gradient(top, #f9f9f9, #efefef);  
	background-image: -webkit-linear-gradient(top, #f9f9f9, #efefef);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9', EndColorStr='#efefef');
}
.vform span[type="submit"].post:hover, .hform span[type="submit"].post:hover, .vform span[type="submit"].pre:hover, .hform span[type="submit"].pre:hover{
	background:#eee;
	background:-webkit-gradient(linear, left top, left bottom, from(#eee), to(#f8f8f8));
	background:-moz-linear-gradient(top, #eee, #f8f8f8);
}

/* ---- Buttons ---- */
button{
	display:inline-block;*display:inline;
	padding:7px 20px;
	margin-bottom:10px;*margin-left:.3em;
	font-size:14px;
	line-height:20px;*line-height:20px;
	color:#333 !important;
	text-align:center;
	vertical-align:middle;
	cursor:pointer;
	border:1px solid #dedede;*border:0;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	border-color:#eeeeee,#dedede,#dedede;
	        border-radius:4px;
	     -o-border-radius:4px;
	    -ms-border-radius:4px;
	   -moz-border-radius:4px;
	-webkit-border-radius:4px;
	background-color: #f5f5f5;
	background-image: linear-gradient(top, #f9f9f9, #efefef);
	background-image: -ms-linear-gradient(top, #f9f9f9, #efefef);
	background-image: -moz-linear-gradient(top, #f9f9f9, #efefef);  
	background-image: -webkit-linear-gradient(top, #f9f9f9, #efefef);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9', EndColorStr='#efefef');
}
button:hover, button:active{
	background:#eee;
	background:-webkit-gradient(linear, left top, left bottom, from(#eee), to(#f8f8f8));
	background:-moz-linear-gradient(top, #eee, #f8f8f8);
}
button.large{padding:10px 35px; font-size:15px;}
button.small{padding:3px 13px; font-size:13px;}

button.skyblue{ /* --- skyblue color button --- */
	color:#fff !important;
	background-color:#26a2b6;
	background: linear-gradient(#34bac9, #26a2b6);
	background: -o-linear-gradient(#34bac9, #26a2b6);
	background: -ms-linear-gradient(#34bac9, #26a2b6);
	background: -moz-linear-gradient(#34bac9, #26a2b6);
	background: -webkit-linear-gradient(#34bac9, #26a2b6);
	background: -webkit-gradient(linear, left top, left bottom, from(#34bac9), to(#26a2b6));
	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#34bac9', EndColorStr='#26a2b6');
}
button.skyblue:hover, button.skyblue:active{
	background:#26a2b6;
	background:-moz-linear-gradient(top, #26a2b6, #34bac9);
	background:-webkit-gradient(linear, left top, left bottom, from(#26a2b6), to(#34bac9));
}


/* -------------------------------- 
スマホ、タブレット用
-------------------------------- */

.cd-main-content {
	width: 100%;
	padding-bottom: 2em;
	}
.cd-fixed-bg {
	display: block;
	width: 100%;
}
.cd-main-content #logos {
position:absolute;
top: 10%;
left: 10%;
bottom: 0;
margin: auto;
width:100px;
height:auto;
z-index:1000;
text-align: center;
}
.cd-main-content #logos img {
	max-width : 100%
	}

.cd-fixed-bg .t-box {
	width: 90%;
	text-align: left;
	font-size: 14px;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	color: #747670;
	line-height: 1.5;
	padding-top: 3em;
	padding-bottom: 3em;
	margin-right: auto;
	margin-left: auto;
}
.cd-fixed-bg .boxC {
	width: 90%;
	text-align: center;
	font-size: 14px;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	color: #747670;
	line-height: 1.5;
	padding-top: 5em;
	padding-bottom: 3em;
	margin-right: auto;
	margin-left: auto;
}
.cd-fixed-bg #gallerie {
	width : 80%;
	text-align : center;
	padding-bottom: 2em;
	margin-right: auto;
	margin-left: auto;
}
.cd-fixed-bg #gallerie img {
	height: auto;
	width: 80%;
}

.fl {
	width : 100%;
	text-align: center;
}
.fl img {
  max-width: 100%;
  height: auto;
}
.fl img {max-width:100%; vertical-align:middle;border:0;}
/* IE8 max-width バグへの対応 */
.fl img {width:auto\9; height:auto\9;}



#footer{
	width: 100%;
	text-align:center;
	color: #f2f2f2;
	height: auto;
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: #000;
	bottom:0px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #1C1C1C;
}

#footer .col,#footer ul.fm {
	width: 100%;
	float: none;
	margin: 10px 0 3px 0;
}

#footer ul.fm li{
	padding-right:15px;
	display: inline-block;

}

.alignC {
	text-align:center;
}
@media only screen and (max-width: 320px) {

.cd-main-content #logos {
position:absolute;
top: 2%;
left: 5%;
bottom: 0;
margin: auto;
width:50px;
height:auto;
z-index:1000;
text-align: center;
}
}


/* -------------------------------- 
タブレット横用
-------------------------------- */

@media only screen and (min-width: 769px) {
.cd-main-content {
  height: 100%;
  position: relative;
  z-index: 1;
}
	.cd-fixed-bg {
  position: relative;
  min-height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}

  .cd-fixed-bg {
 background-attachment: fixed;
  }
  

.cd-fixed-bg #gallerie img { width : auto}

#footer{
	position:fixed;
	width: 100%;
	text-align:center;
	color: #f2f2f2;
	z-index:999;
	height: 40px;
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: #000;
	bottom:0px;
}

#footer .col {
	width: 47%;
	float: left;
	margin: 0 3% 0 0;
}

#footer ul.fm{
	width: 50%;
	float: left;
	margin: 0 0 0 0;

}
#footer ul.fm li{
	padding-right:15px;
	display: inline-block;

}

}




@media only screen and (min-width: 1170px) {

/* -------------------------------- 
PC用
-------------------------------- */


.cd-main-content {
  height: 100%;
  position: relative;
  z-index: 1;
  margin-bottom:0;
}
.cd-fixed-bg {
  position: relative;
  min-height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}
.cd-main-content #logos {
	position:absolute;
	left:10%;
	top:30%;
	width:20%;
	height:auto;
	z-index:1000;
	text-align: center;
}

.cd-fixed-bg #gallerie {
	position: absolute;
	left: 50%;
	top: 90%;
	bottom: auto;
	right: auto;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	width: 90%;
	max-width: 1170px;
	text-align: center;
	font-size: 14px;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	color: #747676;
}
.cd-fixed-bg #gallerie img { width : auto}

.cd-fixed-bg .t-box {
	position: absolute;
	left: 50%;
	top: 50%;
	bottom: auto;
	right: auto;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	width: 90%;
	max-width: 1170px;
	text-align: left;
	font-size: 16px;
	padding-left: 40%;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	color: #747676;
	line-height: 1.5;
}
    .cd-fixed-bg .t-box#last{
	text-align: center;
	padding-left: 0;
	top: 80%;
  }


.cd-fixed-bg.cd-bg-1 {
	background-image: url(../img/main_2.jpg);
}


.cd-fixed-bg.cd-bg-0 {
	background-image: url(../img/bi_001.jpg);
}



.cd-fixed-bg.cd-bg-2 {
	background-image: url(../img/bi_1.jpg);
}
.cd-fixed-bg.cd-bg-3 {
	background-image: url(../img/bi9.jpg);
}
.cd-fixed-bg.cd-bg-4 {
	background-image: url(../img/bi11.jpg);
}
.cd-fixed-bg.cd-bg-5 {
	background-image: url(../img/bi8.jpg);
}
.cd-fixed-bg.cd-bg-7 {
	background-image: url(../img/bi1p.jpg);
}
.cd-fixed-bg.cd-bg-6 {
/*	background-image: url(../img/bi10.jpg);
*/}

.fl img {
	display: none;
}

.cd-fixed-bg .boxC{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 80%;
	height: 80%;
	text-align: center;
	padding-top: 2em;
}

.cd-fixed-bg .boxC form {
	padding-top: 1em;
}

}


/* -----------------------------------------------
 margin style
-------------------------------------------------- */
.mt0{ margin-top:0px !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; }

.mb0{ margin-bottom:0px !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; }


/* -----------------------------------------------
 margin style
-------------------------------------------------- */
.pt0{ padding-top:0px !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; }

.pb0{ padding-bottom:0px !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; }

.pr0{ padding-right:0px !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; }
