@charset "utf-8";
/* =Reset default browser CSS.
Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
-------------------------------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
 /*------------------------------------------------------------
   Browser Default Initialization responsive1
 ------------------------------------------------------------*/
 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
 }
 html {
   overflow-y: scroll;
   height: 100%;
 }
 body {
   margin: 0;
   padding: 0;
   font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
   /*font-family: 'メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;*/
	font-family: 'Noto Sans JP', sans-serif;
	 font-feature-settings: "palt" 1;
   color: #333;
   font-size: 16px;
   line-height: 125%;
   text-align: left;
   -webkit-text-size-adjust: 100%;
   height: 100%;
   word-wrap: break-word;
}


#wrapper{
	overflow: hidden;
	width: 100%;
	position: relative;
	z-index: 1;
}
:focus {
	outline: 0;
}
ol, ul {
	list-style: none;
}
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	font-weight: normal;
	text-align: left;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
a img {
	border: 0;
}
img{
	vertical-align:bottom;	
}
figure {
	margin: 0
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
a{
	text-decoration: none;
	color: #000;
}


/*-----------------------------
   Header
-------------------------------*/
.totop{
  position: fixed;
  right: 1%;
  bottom: 3%;
	width: 55px;
	height: 55px;
	background-image: url("../images/totop.jpg");
	background-position: center top;
	background-size: 100% auto;
	background-repeat: no-repeat;
  cursor: pointer;
  transition: .3s;
  opacity: 0;
  visibility: hidden;
	z-index: 800;
}
.totop:hover{
	opacity: .6;
	-moz-transition: .2s;
    -webkit-transition: .2s;
    -o-transition: .2s;
    -ms-transition: .2s;
	transition: .2s;
}

.active{
  opacity: 1;
  visibility: visible;
}


.pc_only{
	display: block !important;
}
.smt_only{
	display: none !important;
}



.menu_squ{
	display: none;
}

#menu_trigger_box{
	position: fixed;
	top: 32px;
	right: 5%;
	display: block;
	z-index: 1001;
	background-color: #fff;
	width: 60px !important;
	height: 74px !important;
	padding: 10px;
}
#menu_trigger_box_inn{
	width: 100%;
	height: 100%;
	position: relative;
}
#menu_trigger_box::after{
	content: "";
	width: 80%;
	height: 20px;
	position: absolute;
	background-image: url("../images/icon_g_menu.png");
	background-size: 80% auto;
	background-position: center top;
	background-repeat: no-repeat;
	bottom: 0;
	left: 10%;
}
.menu-trigger,
.menu-trigger span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
.menu-trigger {
	position: relative;
	width: 40px;
	height: 34px;
}
.menu-trigger:hover {
	cursor: pointer;
}
.menu-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #2e7770;
	border-radius: 4px;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 15px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(15px) rotate(-45deg);
  transform: translateY(15px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
  -webkit-animation: active-menu-bar02 .8s forwards;
  animation: active-menu-bar02 .8s forwards;
}

.menu-trigger.returns span:nth-of-type(1) {
  -webkit-transform: translateY(0px) rotate(0deg);
  transform: translateY(0px) rotate(0deg);
}
.menu-trigger.returns span:nth-of-type(2) {
  left: 0%;
  opacity: 100;
  -webkit-animation: active-menu-bar02 .8s backwards;
  animation: active-menu-bar02 .8s backwards;
}

@-webkit-keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-15px) rotate(45deg);
  transform: translateY(-15px) rotate(45deg);
}
.menu-trigger.returns span:nth-of-type(3) {
  -webkit-transform: translateY(0px) rotate(0deg);
  transform: translateY(0px) rotate(0deg);
}

#smtnav{
	display: block;
}
#smtnav {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 250px;
    background: #009096;
	transition: all 0.2s;
	transform: translateY(-250px);
	z-index: 1000;
}
#smtnav.open {
	transform: translateY(0px); 
}
#smtnav.close {
	transform: translateY(-250px);
}
#smtnav ul {
	margin: 30px 0 0 0;
	padding: 1em;
	list-style-type: none;
}
#smtnav ul li {
	padding: 1em 0;
	border-bottom: 1px solid #fff;
}
#smtnav ul li a {
	display: block;
	text-align: center;
	text-decoration: none;
	color: #fff;
}




/*-----------------------------
   Section01 タイトル
-------------------------------*/
article.cont_base_A{
	width: 100%;
	position: relative;
	background-image: url("../images/bg_sec01_B.png"), url("../images/bg_sec01_C.png"), url("../images/bg_sec01_A.jpg");
	background-position: center top, center top, center top;
	background-size: 100% auto, 100% 100%, 72px auto;
	background-repeat: repeat-y, no-repeat, repeat;
}
article.cont_base_A .A_inn{
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
	padding: 2% 0 4%;
}

.tit_obj_000{
	width: 47.8%;
	margin: 0 auto;
}
.tit_obj_001{
	width: 100%;
	position: relative;
	margin: 0 auto 0;
}
.tit_obj_001 span{
	width: 100%;
	position: absolute;
	top: -38%;
	left: 2%;
}
.tit_obj_002{
	width: 100%;
	margin: -1% auto 0;
}
.tit_obj_003{
	width: 100%;
	position: relative;
	margin: -2% auto 0;
}
.tit_obj_004{
	width: 100%;
	position: relative;
	margin: -5.5% auto 0;
}
.tit_obj_005{
	width: 100%;
	position: absolute;
	top: 5%;
	left: 10%;
}

.tit_obj_000 img,
.tit_obj_001 img,
.tit_obj_002 img,
.tit_obj_003 img,
.tit_obj_004 img,
.tit_obj_005 img{
	width: 100%;
	height: auto;
}

@keyframes fuwafuwa {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-60px);
  }
}

.anime-fuwafuwa {
  animation: 10s fuwafuwa infinite;
}



/*-----------------------------
   Section02 厳選50台！！優良中古車勢ぞろい！
-------------------------------*/
article.cont_base_B{
	width: 100%;
	margin: 0 auto 0;
	position: relative;
	background-image: url("../images/bg_sec03_C.png"), url("../images/bg_sec03_B.png"), url("../images/bg_sec03_A.jpg");
	background-size: 100% auto, 100% auto, 72px auto;
	background-position: center top, center top, center top;
	background-repeat: repeat-y, repeat-y, repeat;
	padding: 1% 0 2%;
}
article.cont_base_B .B_inn{
	max-width: 1000px;
	width: 100%;
	margin: 0 auto 0;
	position: relative;
	padding: 1% 0 3%;
}


.obj_sec02_01{
	width: 100%;
	position: relative;
	margin: 0 auto 0;
}

.obj_sec02_02{
	width: 100%;
	position: relative;
	margin: 30px 0 0;
}


.obj_sec02_01 img,
.obj_sec02_02 img{
	width: 100%;
	height: auto;
	margin: 0;
}



/*------中古車のカテゴリブロック-------*/
.u_block_hybrid{
	width: 100%;
	background-color: #fff;
	border-top: #009fe8 3px solid;
	border-right: #009fe8 3px solid;
	border-left: #009fe8 3px solid;
	position: relative;
	padding: 5% 0 0;
	margin: 15% 0 0;
}
.u_block_conpact{
	width: 100%;
	background-color: #fff;
	border-top: #e51373 3px solid;
	border-right: #e51373 3px solid;
	border-left: #e51373 3px solid;
	position: relative;
	padding: 5% 0 0;
	margin: 15% 0 0;
}
.u_block_suv{
	width: 100%;
	background-color: #fff;
	border-top: #5f1985 3px solid;
	border-right: #5f1985 3px solid;
	border-left: #5f1985 3px solid;
	position: relative;
	padding: 5% 0 0;
	margin: 15% 0 0;
}
.u_block_minivan{
	width: 100%;
	background-color: #fff;
	border-top: #8f6d02 3px solid;
	border-right: #8f6d02 3px solid;
	border-left: #8f6d02 3px solid;
	position: relative;
	padding: 5% 0 0;
	margin: 15% 0 0;
}
.u_block_sedan{
	width: 100%;
	background-color: #fff;
	border-top: #009136 3px solid;
	border-right: #009136 3px solid;
	border-left: #009136 3px solid;
	position: relative;
	padding: 5% 0 3%;
	margin: 15% 0 0;
	border-bottom: #009136 3px solid;
}
.u_block_kei{
	width: 100%;
	background-color: #fff;
	border-top: #ec6800 3px solid;
	border-right: #ec6800 3px solid;
	border-left: #ec6800 3px solid;
	position: relative;
	padding: 5% 0 0;
	margin: 15% 0 0;
}
.u_main{
	width: 98%;
	margin: 0 1%;
}
.u_main img,
.btn_A img,
.u_other .sub_tit img,
.u_other_unit img{
	width: 100%;
	height: auto;
}
.u_block_hybrid .title_A,
.u_block_conpact .title_A,
.u_block_suv .title_A,
.u_block_minivan .title_A,
.u_block_sedan .title_A,
.u_block_kei .title_A{
	width: 100%;
	position: absolute;
	top: -60px;
	left: 0;
}
.u_block_hybrid .title_A img,
.u_block_conpact .title_A img,
.u_block_suv .title_A img,
.u_block_minivan .title_A img,
.u_block_sedan .title_A img,
.u_block_kei .title_A img{
	width: 100%;
	height: auto;
}

.btn_A{
	width: 60%;
	margin: 0 auto;
	display: block;
	padding: 2% 0 0;
}
.btn_A:hover{
	opacity: .7;
	-moz-transition: .2s;
    -webkit-transition: .2s;
    -o-transition: .2s;
    -ms-transition: .2s;
	transition: .2s;
}

/*------その他の車種セクション-------*/
.u_block_hybrid .u_other{
	width: 100%;
	border-top: #009fe8 4px solid;
	margin: 8% 0 0;
	display: none;
	padding-top: 30px;
}
.u_block_conpact .u_other{
	width: 100%;
	border-top: #e51373 4px solid;
	margin: 8% 0 0;
	padding-top: 30px;
	display: none;
}
.u_block_suv .u_other{
	width: 100%;
	border-top: #5f1985 4px solid;
	margin: 8% 0 0;
	padding-top: 30px;
	display: none;
}
.u_block_minivan .u_other{
	width: 100%;
	border-top: #8f6d02 4px solid;
	margin: 8% 0 0;
	padding-top: 30px;
	display: none;
}
.u_block_sedan .u_other{
	width: 100%;
	border-top: #009136 4px solid;
	margin: 8% 0 0;
	padding-top: 30px;
	display: none;
}
.u_block_kei .u_other{
	width: 100%;
	border-top: #ec6800 4px solid;
	margin: 8% 0 0;
	padding-top: 30px;
	display: none;
}
.u_block_hybrid .u_other .sub_tit{
	width: 66%;
	margin: -5% auto 0;
	position: relative;
	z-index: 10;
}
.u_block_conpact .u_other .sub_tit{
	width: 65%;
	margin: -5% auto 0;
	position: relative;
	z-index: 10;
}
.u_block_suv .u_other .sub_tit{
	width: 54.6%;
	margin: -5% auto 0;
	position: relative;
	z-index: 10;
}
.u_block_minivan .u_other .sub_tit{
	width: 60%;
	margin: -5% auto 0;
	position: relative;
	z-index: 10;
}
.u_block_sedan .u_other .sub_tit{
	width: 56.4%;
	margin: -5% auto 0;
	position: relative;
	z-index: 10;
}
.u_block_kei .u_other .sub_tit{
	width: 60.6%;
	margin: -5% auto 0;
	position: relative;
	z-index: 10;
}
.u_other_inner{
	padding: 3% 3% 0;
}
.u_other_unit{
	position: relative;
	width: 23%;
	margin: 0 1% 3%;
	float: left;
}

.u_other_unit a{
	position: absolute;
	display: block;
	width: 98%;
	bottom: 4%;
	left: 1%;
}

.u_other_inner::after{
	content: "";
    clear: both;
    height: 0;
    display: block;
    visibility: hidden;
}

/*------開閉ボタン-------*/
#u_block_hybrid_btn{
	width: 100%;
	background-color: #009fe8;
	padding: 3% 0 ;
	cursor: pointer;
	position: relative;
	margin: 3% 0 0;
}
#u_block_conpact_btn{
	width: 100%;
	background-color: #e51373;
	padding: 3% 0 ;
	cursor: pointer;
	position: relative;
	margin: 3% 0 0;
}
#u_block_suv_btn{
	width: 100%;
	background-color: #5f1985;
	padding: 3% 0 ;
	cursor: pointer;
	position: relative;
	margin: 3% 0 0;
}
#u_block_minivan_btn{
	width: 100%;
	background-color: #8f6d02;
	padding: 3% 0 ;
	cursor: pointer;
	position: relative;
	margin: 3% 0 0;
}
#u_block_sedan_btn{
	width: 100%;
	background-color: #009136;
	padding: 3% 0 ;
	cursor: pointer;
	position: relative;
	margin: 3% 0 0;
}
#u_block_kei_btn{
	width: 100%;
	background-color: #ec6800;
	padding: 3% 0 ;
	cursor: pointer;
	position: relative;
	margin: 3% 0 0;
}
.open_btn p{
	color: #fff;
	text-align: center;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 900;
	font-style: normal;
	font-size: 1.8em;
}

#u_block_hybrid_btn span{
	background-color: #1d2087;
	position: absolute;
	width: 8%;
	height: 100%;
	top: 0;
	right: 0;
}
#u_block_conpact_btn span{
	background-color: #c9004c;
	position: absolute;
	width: 8%;
	height: 100%;
	top: 0;
	right: 0;
}
#u_block_suv_btn span{
	background-color: #910782;
	position: absolute;
	width: 8%;
	height: 100%;
	top: 0;
	right: 0;
}
#u_block_minivan_btn span{
	background-color: #c79f62;
	position: absolute;
	width: 8%;
	height: 100%;
	top: 0;
	right: 0;
}
#u_block_sedan_btn span{
	background-color: #1eaa39;
	position: absolute;
	width: 8%;
	height: 100%;
	top: 0;
	right: 0;
}
#u_block_kei_btn span{
	background-color: #f29600;
	position: absolute;
	width: 8%;
	height: 100%;
	top: 0;
	right: 0;
}
.open_btn span img{
	width: 100%;
	padding: 25% 20% 0 20%;
}
.open_btn.open span img{
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  transition: all 0.2s ease-in-out;
  padding-bottom: 25%;
}



.notes_B{
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	text-align: center;
	font-size: 1em;
	padding: 5px;
	border-bottom: 1px solid #000;
	margin: 5px 0;
}

.notes_C{
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	text-align: justify;
	font-size: 0.85em;
}


/*-----------------------------
   Section03 残価設定型「スマイル夢のりプラン」で新車のお支払いが月々楽々！
-------------------------------*/
article.cont_base_C{
	width: 100%;
	position: relative;
	background-image:  url("../images/bg_sec03_C.png"), url("../images/bg_sec04_B.png"), url("../images/bg_sec04_A.jpg");
	background-size: 100% auto, 100% auto, 72px auto;
	background-position: center top, center top, center top;
	background-repeat: repeat-y, repeat-y, repeat;
}
article.cont_base_C .C_inn{
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
	position: relative;
	padding: 5% 0 5%;
}

.obj_sec03_01{
	width: 100%;
	position: relative;
}

.obj_sec03_02{
	width: 100%;
	position: relative;
	margin: 5% 0 0 0;
}

.obj_sec03_03{
	width: 100%;
	position: relative;
	margin: 10% 0 0 0;
}

.obj_sec03_04{
	width: 100%;
	margin: 5% 0 0;
	position: relative;
}
.obj_sec03_04 a{
	width: 86.2%;
	position: absolute;
	top: 75.5%;
	left: 6.9%
}
.obj_sec03_04 a:hover{
	opacity: .7;
	-moz-transition: .2s;
    -webkit-transition: .2s;
    -o-transition: .2s;
    -ms-transition: .2s;
	transition: .2s
}

.obj_sec03_01 img,
.obj_sec03_02 img,
.obj_sec03_03 img,
.obj_sec03_04 img{
	width: 100%;
	height: auto;
}



/*-----------------------------
   Section04　Virtual Door
-------------------------------*/
.cont_base_D{
	width: 100%;
	margin: 0 auto 0;
	position: relative;
	background-image: url("../images/img_221228_section07_01_bg.jpg");
	background-size: 100% 100%;
	background-position:center top;
	background-repeat: no-repeat;
}
article.cont_base_D .D_inn{
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
	position: relative;
	padding: 5% 0 5%;
}

.obj_sec04_01{
	width: 100%;
	margin: 0 auto 0;
	position: relative;
}
.obj_sec04_01 span{
	position: absolute;
	width: 40.6%;
	top: 65%;
	left: 55%;
}
.obj_sec04_01 span a{
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}
.obj_sec04_01 span a .off{
	position: absolute;
	top: 0;
	right: 0;
}
.obj_sec04_01 img{
	width: 100%;
	height: auto;
}
.obj_sec04_01 span a .off:hover{
	opacity: 0;
	-moz-transition: .2s;
    -webkit-transition: .2s;
    -o-transition: .2s;
    -ms-transition: .2s;
	transition: .2s
}



.btn_A{
	width: 68.8%;
	margin: 2% auto 0;
	position: relative;
}
.btn_A img{
	width: 100%;
	height: auto;
}
.btn_A a:hover{
	opacity: .7;
	-moz-transition: .2s;
    -webkit-transition: .2s;
    -o-transition: .2s;
    -ms-transition: .2s;
	transition: .2s;
}







.notes_A{
	font-size: 0.95em;
	line-height: 1.5em;
	text-align: justify;
	width: 100%;
	padding: 15px 2%;
	border: 1px solid #000;
	background-color: #fff;
	margin: 6% 0 0;
}
.notes_A2{
	font-size: 0.95em;
	line-height: 1.5em;
	text-align: justify;
	width: 100%;
	padding: 15px 2%;
	border: 1px solid #000;
	background-color: #fff;
	margin: 3% 0 0;
}



/*-----------------------------
   Section06 おすすめ新車ラインナップ
-------------------------------*/

@keyframes powapowa {
  0%{
    transform: scale(0.7, 0.7);
  }
  80% {
    transform: scale(1.0, 1.0);
  }
}

.anime-powapowa {
  animation: 1.8s powapowa infinite;
}

@keyframes powapowa2 {
  0%{
    transform: scale(0.7, 0.7);
  }
  90% {
    transform: scale(1.0, 1.0);
  }
}

.anime-powapowa2 {
  animation: 1.8s powapowa2 infinite;
}

@keyframes powapowa3 {
  0%{
    transform: scale(0.7, 0.7);
  }
  100% {
    transform: scale(1.0, 1.0);
  }
}

.anime-powapowa3 {
  animation: 1.8s powapowa3 infinite;
}





/*-----------------------------
  Section10 ラスト
-------------------------------*/
article.cont_base_J{
	width: 100%;
	position: relative;
	background-image: url("../images/img_240224_sec05_bg01.png"), url("../images/bg_sec01_A.jpg");
	background-position: center top, center top;
	background-size: 100% auto, 72px auto;
	background-repeat: no-repeat, repeat;
}

article.cont_base_J .J_inn{
	max-width: 1000px;
	width: 100%;
	margin: 0 auto 0;
	position: relative;
	padding: 4% 0 4%;
}

.last_cast{
	width: 100%;
	margin: 0 auto 0;
}
.last_cast2{
	width: 91.5%;
	margin: -2% auto 0;
}
.last_cast img,
.last_cast2 img{
	width: 100%;
	height: auto;
}

footer{
	background-color: #009096;
	padding: 20px 0;
}
footer #footer_logo{
	width: 15%;
	min-width: 150px;
	max-width: 260px;
	margin: 0 auto;
}
footer img{
	width: 100%;
	height: auto;
}


/*ポップアップ---------------*/
.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
	left: -10%;
    width: 120%;
	z-index: 1100 !important;
}
.modal__bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal__content{
    background: #fff;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 50%;
	max-width: 500px;
	min-width: 300px;
}
.modal__content img{
	width: 100%;
	height: auto;
}
.js-modal-close-btn{
	width: 40px;
	height: 40px;
	position: absolute;
	top: -60px;
	left: 0;
	background-image: url("../images/bg_section04_btn_delete.jpg");
	background-size: 100% 100%;
	background-repeat: no-repeat;
	cursor: pointer;
}
.js-modal-close-btn img{
	width: 100%;
	height: 100%;
}
.js-modal-close-btn:hover{
	opacity: 0.7;
	-moz-transition: .3s;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -ms-transition: .3s;
	transition: .3s;
}





/*-----------------------------
  Margin Padding
-------------------------------*/
.mt--5pc{
	margin-top: -5%;
}
.mt--8pc{
	margin-top: -8%;
}
.mt--10pc{
	margin-top: -10%;
}
.mt-43pc{
	margin-top: -43%;
}
.mt-45pc{
	margin-top: -45%;
}
.mt-40pc{
	margin-top: -40%;
}
.mt-8pc{
	margin-top: -8%;
}
.mt-4pc{
	margin-top: -4%;
}
.mt-2pc{
	margin-top: -2%;
}
.mt-40{
	margin-top: -40px;
}
.mt10{
	margin-top: 10px;
}
.mt20{
	margin-top: 20px;
}
.mt30{
	margin-top: 30px !important;
}
.mt40{
	margin-top: 40px !important;
}
.mt50{
	margin-top: 50px !important;
}
.mt60{
	margin-top: 60px !important;
}
.mt100{
	margin-top: 100px !important;
}


.mb10{
	margin-bottom: 10px;
}
.mb5pc{
	margin-bottom: 5%;
}
.mb8pc{
	margin-bottom: 8%;
}
.mb10pc{
	margin-bottom: 10%;
}


.pb100{
	padding-bottom: 100px;
}
.pt10{
	padding-top: 10px;
}

.pb80{
	padding-bottom: 80px;
}
/*-----------------------------
  Width
-------------------------------*/
.w80{
	width: 80%;
}