@charset "utf-8";
* {
	padding: 0;
	margin: 0;
}

html {
  min-height: 100%;
  position: relative;
}
 
body {
	color: #000;
	background-color: #FFF;
	font-family: "メイリオ", "Meiryo", arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
	word-wrap: break-word;
	letter-spacing: 0.1em;
}

.wrap {
	width: 100%;
	min-width: 1200px;
	overflow: hidden;
}

section {
	display: block;
}

.font_mincho {
	font-family: "Sawarabi Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E",  "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.font_garamond {
	font-family: 'Cormorant Garamond', serif;
}
img {
	vertical-align: top;
}
a img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
a:hover img {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha( opacity=70 )";
}
li {
	list-style-type: none;
}
a {
	color: #333;
	-webkit-transition: 0.2s linear;
	-moz-transition: 0.2s linear;
	transition: 0.2s linear;
}
a:hover {
	color: #00AE53;
	text-decoration: none;
}

.clfix:after {
	content: ".";
	display: block;
	height: 0;
	font-size: 0;
	clear: both;
	visibility: hidden;
}

h2 {
	font-family: "Sawarabi Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E",  "ＭＳ Ｐ明朝", "MS PMincho", serif;
	font-weight: normal;
}
p {
	line-height: 2;
	font-size: 18px;
	margin-bottom: 20px;
	margin-top: 10px;
}

.txt_small {
	font-size: 12px;
}
/*
テーブル
-------------------------------------------*/
table {
	border-collapse: collapse;
}
table td {
	border-collapse: collapse;
}

table.table_01 {
	width: 700px;
	float: left;
}
table.table_01 td {
	padding: 10px;
	font-size: 14px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #E3E3E3;
	color: #333;
}

table.table_01 th {
	text-align: center;
	padding: 10px;
	font-size: 14px;
	white-space: nowrap;
	font-weight: normal;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #D8E9A5;
	background-color: #F5FFD5;
}

table.table_01 caption {
	font-size: 18px;
	line-height: 40px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
}


/*
ヘッダー
-------------------------------------------*/
header {
	width: 100%;
	position: fixed;
	z-index: 200;
	background-color: rgba(0,0,0,0.8);
	height: 60px;
}
header h1 {
	text-align: center;
	width: 100%;
	display: block;
	padding-top: 5px;
}

/*
メニュー用シャドウ
-------------------------------------------*/
.bg_bl {
	background-color: #FFF;
	height: 100%;
	width: 100%;
	opacity: 0.80;
	filter: alpha(opacity=80);
	-ms-filter: "alpha( opacity=80 )";
	display: block;
	position: fixed;
	z-index: 2000;
}


/*
メニューボタン
-------------------------------------------*/

.menu_btn {
	display: block;
	height: 30px;
	width: 40px;
	text-align: center;
	padding-top: 5px;
	padding-bottom: 20px;
	position: fixed;
	z-index: 5000;
	top: 5px;
	right: 10px;
}

.menu_btn p::after {
	font-size: 10px;
	line-height: 14px;
	letter-spacing: 1px;
	position:absolute;
	bottom: 0px;
	left: 0px;
	color: #FFF;
	display: block;
	width: 40px;
	height: 20px;
	text-align: center;
	content: "Menu";
}
.menu_btn.opened p::after {
	content: "Close";
}
.menu_btn:hover {
	cursor: pointer;
}

.menu_btn span {
	width: 28px;
	height: 2px;
	display: block;
	position: absolute;
	left: 50%;
	top: 20px;
	margin-left: -14px;
	background-color: #FFF;
}
.menu_btn span {
    transition: all 0.3s;
    transform: rotate(0deg);
	-webkit-transform: rotate(0deg);  
    -moz-transform: rotate(0deg);    
  }
.menu_btn span.top {
    transform: translateY(-8px);
	-webkit-transform: translateY(-8px);  
    -moz-transform: translateY(-8px);    
  }
.menu_btn span.bottom {
    transform: translateY(8px);
	-webkit-transform: translateY(8px);  
    -moz-transform: translateY(8px);    
}

.menu_btn:hover span.top {
    transform: translateY(-10px);
	-webkit-transform: translateY(-10px);  
    -moz-transform: translateY(-10px);    
}
.menu_btn:hover span.bottom {
    transform: translateY(10px);
	-webkit-transform: translateY(10px);  
    -moz-transform: translateY(10px);    
}

.menu_btn.opened  span.middle {
    background: rgba(0, 0, 0, 0);
	 transform: translateX(30px);
	 -webkit-transform: translateX(30px);  
    -moz-transform: translateX(30px);    
}
.menu_btn.opened  span.top {
    transform: rotate(-45deg) translateY(0px);
	-webkit-transform: rotate(-45deg) translateY(0px);  
    -moz-transform: rotate(-45deg) translateY(0px);    
}
.menu_btn.opened  span.bottom {
    transform: rotate(45deg) translateY(0px);
	-webkit-transform: rotate(45deg) translateY(0px);  
    -moz-transform: rotate(45deg) translateY(0px);    
}

/*
グローバルナビ
-------------------------------------------*/

#g_navi {
	position: fixed;
	right: -300px;
	overflow: auto;
	z-index: 3000;
	padding-top: 60px;
	height: 100%;
	width: 360px;
	background-color: rgba(0,0,0,0.8);
	top: 0px;
}

.fixed {
	overflow: hidden;
}

#g_navi ul {
	display: block;
	margin: 0px;
	padding: 0px;
	clear: both;
}
#g_navi ul li a {
	font-size: 16px;
	color: #FFF;
	text-decoration: none;
	display: block;
	padding-top: 10px;
	padding-right: 30px;
	padding-bottom: 8px;
	padding-left: 30px;
	line-height: 30px;
	vertical-align: middle;
	letter-spacing: 1px;
}
#g_navi ul li a:hover {
	background-color: #FFF33C;
	color: #000;
}

#g_navi ul.nav_btn li a {
	padding-right: 0px;
	padding-left: 0px;
	text-align: center;
	margin: 20px;
	border: 2px solid #FFF;
}
#g_navi ul.nav_btn li a:hover {
	border: 2px solid #FFF33C;
}

/*
メインイメージ
-------------------------------------------*/

.top_img {
	width: 100%;
	height: 600px;
	display: block;
	overflow: hidden;
	background-color: #FFFFFF;
	background-image: url(img/top_img_bg.gif);
	background-repeat: repeat-x;
	background-position: center top;
	min-width: 1200px;
}

.top_img_in {
	width: 1200px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

.top_catch {
	position: absolute;
	top: 80px;
	right: 20px;
}

/*
動画バナー
-------------------------------------------*/

.mv_van {
	width: 100%;
	height: 250px;
	background-color: #FFFFFF;
	min-width: 1200px;
}

.mv_van_in {
	width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-top:25px;
	text-align:center;
}

/*
ボタン
-------------------------------------------*/
.btn_01 {
	position: absolute;
	right: 0px;
	bottom: 180px;
}
.btn_01_sec{
	bottom: 70px;
}

.btn_01 a {
	font-size: 22px;
	color: #FFF;
	text-decoration: none;
	text-align: center;
	display: block;
	width: 400px;
	padding-top: 20px;
	padding-bottom: 20px;
	border: 2px solid #FFF;
	background-color: #66BB38;
	line-height: 40px;
}
.btn_01 a:hover {
	color: #66BB38;
	background-color: #FFF;
	border-top-color: #66BB38;
	border-right-color: #66BB38;
	border-bottom-color: #66BB38;
	border-left-color: #66BB38;
}

.btn_cart {
	position: absolute;
	right: 70px;
	top: 10px;
}
.btn_cart a {
	font-size: 16px;
	color: #FFF;
	text-decoration: none;
	text-align: center;
	display: block;
	width: 120px;
	padding-top: 8px;
	padding-bottom: 8px;
	border: 2px solid #FFF;
	line-height: 20px;
}

.btn_cart a i {
	padding-right: 10px;
}

.btn_cart a:hover {
	background-color: #FFF33C;
	border: 2px solid #FFF33C;
	color: #000;
}
.btn_agent {
	position: absolute;
	left: 70px;
	top: 10px;
}
.btn_agent a {
	font-size: 16px;
	color: #FFF;
	text-decoration: none;
	text-align: center;
	display: block;
	width: 150px;
	padding-top: 8px;
	padding-bottom: 8px;
	border: 2px solid #FFF;
	line-height: 20px;
}

.btn_agent a i {
	padding-right: 10px;
}

.btn_agent a:hover {
	background-color: #5BB431;
	border: 2px solid #5BB431;
	color: #000;
}

.btn_testdrive {
	position: absolute;
	left: 250px;
	top: 10px;
}


.btn_02 a {
	font-size: 22px;
	color: #5AB331;
	text-decoration: none;
	text-align: center;
	display: block;
	width: 430px;
	padding-top: 20px;
	padding-bottom: 20px;
	border: 2px solid #5AB331;
	line-height: 40px;
	margin-top: 20px;
	margin-left: auto;
	margin-right: auto;
}

.btn_02 a i {
	padding-right: 10px;
}

.btn_02 a:hover {
	background-color: #5AB331;
	color: #FFF;
}

.btn_03 a {
	font-size: 20px;
	color: #FFF;
	text-decoration: none;
	text-align: center;
	display: block;
	width: 220px;
	padding-top: 10px;
	padding-bottom: 10px;
	border: 2px solid #FFF;
	line-height: 30px;
	margin-left: auto;
	margin-right: auto;
}

.btn_03 a i {
	padding-right: 10px;
}

.btn_03 a:hover {
	background-color: #FFF;
	border: 2px solid #FFF;
	color: #5BB431;
}

/*
アコーディオン
-----------------------------------------------------*/

.ac_menu {
	cursor: pointer;
	position: relative;
}
.ac_menu::after {
	font-size: 10px;
	position:absolute;
	top: 5px;
	right: 5px;
	color: #FFF;
	background-color: #333;
	display: block;
	width: 110px;
	line-height: 28px;
	text-align: center;
	content: "▼コメントを表示";
	font-family: "メイリオ", "Meiryo", arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}
.ac_menu:hover::after {
	color: #000;
	background-color: #DDD;
}
.ac_menu.active::after {
	content: "▲コメントを隠す";
	color: #000;
	background-color: #DDD;
}

.ac_cont {
	display: none;
}

/*
一日のストーリー
-----------------------------------------------------*/
.cont_st_top {
	color: #FFF;
	background-color: #9ECD3E;
	text-align: center;
	position: relative;
	padding-top: 30px;
	padding-bottom: 60px;
	background-image: url(../img/st_top_bg.png);
	background-repeat: no-repeat;
	background-position: center top;
	width: 100%;
	min-width: 1200px;
}
.cont_st_top p {
	text-align: left;
	width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.cont_st_top .st_scroll {
	position:absolute;
	bottom: -100px;
	left: 50%;
	margin-left: -120px;
	z-index: 100;
}

.st_base {
	width: 100%;
	min-width: 1200px;
}

.st_od {
	float: left;
	height: 2050px;
	width: 50%;
	position: relative;
	background-image: url(../img/st_od_bg.png);
	background-repeat: no-repeat;
	background-position: right top;
}
.st_id {
	float: right;
	height: 2050px;
	width: 50%;
	position: relative;
	background-color: #FFF86C;
	background-image: url(../img/st_id_bg.png);
	background-repeat: no-repeat;
	background-position: left top;
}

.st_od_00 {
	position: absolute;
	top: 30px;
	right: 100px;
}

.st_od_01 {
	position: absolute;
	top: 700px;
	right: 100px;
}

.st_od_02 {
	position: absolute;
	top: 950px;
	right: 30px;
}

.st_od_03 {
	position: absolute;
	top: 1250px;
	right: 80px;
}

.st_od_04 {
	position: absolute;
	top: 1460px;
	right: 30px;
}

.st_od_05 {
	position: absolute;
	top: 1720px;
	right: 150px;
}
.st_od_06 {
	position: absolute;
	top: 1460px;
	right: -180px;
	z-index: 50;
}

.st_id_00 {
	position: absolute;
	top: 30px;
	left: 100px;
}

.st_id_01 {
	position: absolute;
	top: 680px;
	left: 150px;
}

.st_id_02 {
	position: absolute;
	top: 950px;
	left: 30px;
}

.st_id_03 {
	position: absolute;
	top: 1200px;
	left: 100px;
}

.st_id_04 {
	position: absolute;
	top: 1470px;
	left: 70px;
}

.st_id_05 {
	position: absolute;
	top: 1710px;
	left: 130px;
}

.st_id_06 {
	position: absolute;
	top: 1550px;
	left: 200px;
}

.cont_shadow {
	width: 100%;
	height: 30px;
	top: -30px;
	background-image: url(../img/cont_shadow.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	position: absolute;
}

/*
コンパクト
-----------------------------------------------------*/
.point {
	min-width: 1200px;
	width: 100%;
	clear: both;
}
.point_compact {
	background-image: url(../img/point_compact_bg.gif);
	background-repeat: repeat-x;
	background-position: center top;
	width: 100%;
	clear: both;
	position: relative;
}
.point_compact .box_in {
	width: 1200px;
	height: 680px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}
.point_compact .box_in .compact_title {
	position: absolute;
	top: -100px;
	left: 395px;
}

.point_compact .box_in .compact_title2 {
	position: absolute;
	top: 250px;
	left: 470px;
}
.point_compact .box_in .an_cp {
	position: absolute;
	top: 50px;
	left: 0px;
}
.point_compact .box_in .compact_img {
	position: absolute;
	top: 150px;
	right: 0px;
}
.point_compact .box_in p {
	position: absolute;
	top: 410px;
	left: 470px;
}

.point_compact .box_bottom {
	width: 100%;
	clear: both;
	background-color: #EEE;
	text-align: center;
	padding-top: 30px;
	padding-bottom: 80px;
	background-image: url(../img/cont_shadow.png);
	background-repeat: no-repeat;
	background-position: center bottom;
}

/*
軽量・安心安全
-----------------------------------------------------*/
.point_lightweight {
	background-image: url(../img/point_lightweight_bg.png);
	background-repeat: no-repeat;
	background-position: right top;
	float: left;
	width: 50%;
	background-color: #FFE71F;
	position: relative;
	height: 700px;
}
.point_safety {
	background-image: url(../img/point_safety_bg.png);
	background-repeat: no-repeat;
	background-position: left top;
	float: right;
	width: 50%;
	background-color: #9ECD3E;
	position: relative;
	height: 700px;
}
.lightweight_title {
	position: absolute;
	top: -100px;
	right: 100px;
}
.lightweight_title2 {
	position: absolute;
	top: 240px;
	right: 70px;
}
.point_lightweight p {
	position: absolute;
	top: 440px;
	right: 110px;
	text-align: right;
	font-size: 16px;
}

.safety_title {
	position: absolute;
	top: -100px;
	left: 100px;
}
.safety_title2 {
	position: absolute;
	top: 240px;
	left: 70px;
}
.point_safety p {
	position: absolute;
	top: 440px;
	left: 110px;
	font-size: 16px;
	color: #FFF;
}

/*
リーズナブル
-----------------------------------------------------*/
.point_reasonable {
	background-image: url(../img/point_reasonable_bg.png);
	background-repeat: no-repeat;
	background-position: center top;
	width: 100%;
	background-color: #66BB38;
	clear: both;
	position: relative;
}

.point_reasonable .box_in {
	position: relative;
	width: 1200px;
	margin-left: auto;
	margin-right: auto;
	height: 600px;
	clear: both;
}
.reasonable_title {
	position: absolute;
	top: -100px;
	left: 395px;
}
.reasonable_title2 {
	position: absolute;
	top: 240px;
	left: 280px;
}
.reasonable_img {
	position: absolute;
	top: 240px;
	left: 0px;
}
.point_reasonable p {
	position: absolute;
	top: 340px;
	left: 280px;
	color: #FFF;
}

/*
基本情報
-----------------------------------------------------*/
.kihon {
	background-image: url(../img/kihon_bg.gif);
	background-repeat: repeat-x;
	background-position: center 350px;
	width: 100%;
	min-width: 1200px;
	position: relative;
}
.kihon_img {
	width: 1200px;
	height: 800px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}
.kihon_title {
	position: absolute;
	top: 70px;
	left: 335px;
}
.kihon_front {
	position: absolute;
	top: 270px;
	left: 50px;
}
.kihon_rear {
	position: absolute;
	top: 270px;
	right: 50px;
}
.kihon_parts {
	background-color: #EEE;
	height: 600px;
	width: 100%;
	position: relative;
}
.kihon_parts_box {
	position: absolute;
	left: 50%;
	width: 600px;
	height: 190px;
}
.kihon_parts_box.p_a {
	margin-left: -600px;
	top: 20px;
}
.kihon_parts_box.p_b {
	margin-left: -600px;
	top: 210px;
}
.kihon_parts_box.p_c {
	margin-left: -600px;
	top: 410px;
}
.kihon_parts_box.p_d {
	top: 20px;
}
.kihon_parts_box.p_e {
	top: 210px;
}
.kihon_parts_box.p_f {
	top: 410px;
}
.kihon_parts_box img {
	float: left;
	padding-right: 10px;
}
.kihon_parts_box h3 {
	font-size: 20px;
	line-height: 24px;
	color: #5AB331;
	padding-top: 10px;
	font-weight: normal;
}
.kihon_parts_box p {
	font-size: 14px;
	line-height: 24px;
}
.kihon_shiyou {
	width: 1200px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 50px;
	padding-bottom: 50px;
}
.kihon_shiyou .kihon_shiyou_right {
	float: right;
	width: 440px;
	text-align: center;
}
.kihon_shiyou .kihon_shiyou_right p.price {
	font-size: 20px;
	margin-top: 30px;
	margin-bottom: 30px;
}
.kihon_shiyou .kihon_shiyou_right p.price strong {
	font-size: 28px;
	color: #5AB331;
}

/*
付属品
-----------------------------------------------------*/

.fuzoku {
	background-image: url(../img/fuzoku_bg.png);
	background-repeat: repeat-x;
	background-position: center top;
	width: 100%;
	min-width: 1200px;
	background-color: #9ECD3E;
	color: #FFF;
	padding-top: 50px;
}
.fuzoku .fuzoku_in {
	width: 1200px;
	margin-left: auto;
	margin-right: auto;
	height: 800px;
}
.fuzoku h2 {
	font-size: 40px;
	text-align: center;
	margin-bottom: 30px;
	margin-top: 20px;
}
.fuzoku p.txt_main {
	margin-left: 320px;
	margin-bottom: 40px;
}

.fuzoku .slide_list .slide_box {
	margin: 10px;
}
.fuzoku .slide_list .slide_box img {
	margin-left: auto;
	margin-right: auto;
}
.fuzoku .slide_list .slide_main {
	background-color: #FFF;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 5px 0px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 5px 0px;
	-moz-box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 5px 0px;
	padding-top: 10px;
	padding-bottom: 1px;
}
.slide_main h3 {
	font-size: 18px;
	color: #000;
	font-weight: normal;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 10px;
}
.slide_main p {
	font-size: 18px;
	color: #000;
	color: #5BB431;
	text-align: right;
	line-height: 30px;
	margin-right: 10px;
}
.slide_main p strong {
	font-size: 30px;
	font-weight: normal;
}
.slide_bottom p {
	font-size: 14px;
	padding: 5px;
}

/*
ストーリー
-----------------------------------------------------*/

.story {
	background-color: #F5F2E8;
	position: relative;
	width: 100%;
	min-width: 1200px;
	height: 840px;
}

.story .story_box {
	position: absolute;
	left: 50%;
	width: 290px;
	padding-left: 300px;
	padding-right: 10px;
	height: 320px;
	background-repeat: no-repeat;
	background-position: left top;
}
.story .story_box h2 {
	font-size: 22px;
	color: #5BB431;
	line-height: 32px;
}
.story .story_box p {
	font-size: 14px;
	color: #342721;
	line-height: 26px;
}
.story .story_box.no_01 {
	top: 70px;
	background-image: url(../img/story_no_01.gif);
	margin-left: -600px;
}
.story .story_box.no_02 {
	top: 70px;
	background-image: url(../img/story_no_02.gif);
}
.story .story_box.no_03 {
	top: 440px;
	background-image: url(../img/story_no_03.gif);
	margin-left: -600px;
}
.story .story_box.no_04 {
	top: 440px;
	background-image: url(../img/story_no_04.gif);
}

/*
トップへ戻るボタン
-------------------------------------------*/
#to_top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 200;
}

#to_top_is_mobile {
	position: fixed;
	bottom: 220px;
	right: 20px;
	z-index: 200;
}

#to_top a , #to_top_is_mobile a {
	text-decoration: none;
	color: #FFF;
	text-align: center;
	display: block;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	font-size: 40px;
	line-height: 50px;
	height: 50px;
	width: 50px;
	background-color: #333;
}
#to_top a:hover ,#to_top_is_mobile a:hover {
	background-color: #000;
	line-height: 40px;
}

/*
フッター
-------------------------------------------*/

footer {
	clear: both;
	width: 100%;
	min-width: 1200px;
	background-color: #EEE;
	position: relative;
	display: block;
	padding-top: 50px;
	padding-bottom: 20px;
}

.footer_is_mobile {
	padding-bottom: 200px;
}

.footer_in {
	width: 1200px;
	height: 320px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}
ul.f_btn {
	position: absolute;
	left: 0px;
	top: 0px;
}
ul.f_btn2 {
	position: absolute;
	left: 0px;
	top: 80px;
}
ul.f_btn li ,
ul.f_btn2 li {
	display: inline-block;
}

ul.f_btn li a {
	font-size: 18px;
	line-height: 20px;
	text-decoration: none;
	display: inline-block;
	border: 2px solid #999;
	margin-right: 20px;
	padding-top: 15px;
	padding-right: 30px;
	padding-bottom: 15px;
	padding-left: 30px;
}

ul.f_btn li a:hover {
	font-size: 18px;
	border: 2px solid #333;
	background-color: #333;
	color: #FFF;
}

ul.f_btn2 li a {
	font-size: 15px;
	line-height: 20px;
	text-decoration: none;
	display: inline-block;
	background-color: #999;
	color: #FFF;
	margin-right: 18px;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
}

ul.f_btn2 li a:hover {
	background-color: #FFF;
	color: #666;
}

ul.f_btn2 li a i {
	padding-right: 10px;
}

.f_btn_sns{
	clear:both;
	top:150px;
	position:absolute;
}
.f_btn_sns img{
	margin-right:20px;
}
.f_btn_sns a{
	all: initial;
}


.f_tel {
	position: absolute;
	right: 0px;
	top: 0px;
}
.f_tel p {
	font-size: 16px;
	color: #555;
}
.f_tel p strong {
	font-size: 34px;
	color: #5AB331;
	font-weight: normal;
}
.f_info {
	position: absolute;
	left: 0px;
	bottom: 0px;
	padding-left: 340px;
	background-image: url(../img/f_logo.png);
	background-repeat: no-repeat;
	background-position: left center;
}
.f_info p {
	font-size: 12px;
	line-height: 24px;
	color: #555;
}
address {
	position: absolute;
	bottom: 20px;
	right: 0px;
	font-size: 12px;
	font-style: normal;
	text-align: right;
	display: block;
	color: #555;
}

/*
フッターメニュー 190123
-------------------------------------------*/
#footerFloatingMenu {
    display: block;
    width: 100%;
	height: 200px;
    position: fixed;
    left: 0px;
    bottom: 2px;
    z-index: 9999;
    text-align: center;
    padding: 0 auto;
	background-color: rgba(0,0,0,0.8);
}

#footerFloatingMenu ul {
	display: block;
	margin: 0px;
	padding: 0px;
	clear: both;
}
#footerFloatingMenu ul li {
	float: left;
	width: 50%;
}

#footerFloatingMenu ul li a {
	font-size: 60px;
	text-decoration: none;
	display: block;
	padding-top: 10px;
	padding-right: 30px;
	padding-bottom: 8px;
	padding-left: 30px;
	line-height: 140px;
	vertical-align: middle;
	letter-spacing: 1px;
	background-color: #FFF33C;
	color: #000;
}

#footerFloatingMenu ul.nav_btn li a {
	padding-right: 0px;
	padding-left: 0px;
	text-align: center;
	margin: 20px;
	border: 2px solid #FFF33C;
}



/*
Good design
-------------------------------------------*/
.logo_gda {
position: absolute;
right: 220px;
top:0px;}

.logo_gda img {
max-width:60px;
height:auto;
}

/*
top_news 190123
-------------------------------------------*/
.news {
display: block;
width: 800px;
margin: 50px auto;
overflow: hidden;
}

.news .ul_news li {
	line-height: 30px;
	padding-top: 22px;
	padding-bottom: 22px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #CCC;
	font-size: 18px;
}
.news .ul_news li div {
	color: #000;
	padding-right: 20px;
	float: left;
}
.news .ul_news li div.date {
	width: 160px;
}

.news .ul_news li p {
	/*margin-left: 180px;*/
	clear: both;
	font-size : 14px;
	line-height : 24px;
	margin-bottom: 0;
	color: #999;
	}
	

/*
top_toyota
-------------------------------------------*/
.toyota {
display: block;
width: 1200px;
margin: 50px auto;
overflow: hidden;
}

.toyota .left {
float: left;
margin-right:35px;
}

.toyota .right {
display: block;
width: 850px;
float: left;
}

.toyota .right .txt {
display: block;
width: 500px;
float: left;
margin-right:0;
font-size: 16px;
}

.toyota .right .txt h1{
font-weight: bold;
line-height:110%;
margin-bottom: 30px;
font-size: 24px;
}
.toyota .right img{
float: right;
}
.margin_v30 {
margin-bottom: 30px;
}

/*
top_trial
-------------------------------------------*/
.trial {
clear: both;
display: block;
width: 1200px;
margin: 50px auto;
overflow: hidden;
}

.trial .left {
display: block;
width: 365px;
float: left;
text-align: left;
}

.trial .right {
display: block;
width: 365px;
float: left;
text-align: right;
}

.trial .left img , .trial .right img{
width: 100%;
margin-top: 10px;
}

.trial .center {
display:block;
width: 450px;
float: left;
text-align: center;
}

.btn_trial a {
	font-size: 22px;
	color: #5AB331;
	text-decoration: none;
	text-align: center;
	display: block;
	width: 350px;
	padding-top: 20px;
	padding-bottom: 20px;
	border: 2px solid #5AB331;
	line-height: 40px;
	margin-top: 10px;
	margin-left: auto;
	margin-right: auto;
}

.btn_trial a i {
	padding-right: 10px;
}

.btn_trial a:hover {
	background-color: #5AB331;
	color: #FFF;
}
