@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@400;500;700;800;900&display=swap');



/* --------------------------------------------------------------------------------
			Reset
-------------------------------------------------------------------------------- */
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, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin:0;
	padding:0;
	font-feature-settings: "palt";
	letter-spacing: 0.1em;
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box !important;
}

html{
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
	font-weight:normal;
	font-size:100%;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display:block;
}
ol, ul {
	list-style:none;
}
blockquote, q {
	quotes:none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content:'';
	content:none;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
img{
	vertical-align:top;
	max-width: 100%;
}



/* --------------------------------------------------------------------------------
		common	
-------------------------------------------------------------------------------- */
/*@font-face {
	font-family: "Noto Serif Japanese";
	font-style: normal;
	font-weight: 400;
	src: url(../fonts/Noto_Serif_JP/NotoSerifJP-Regular.otf) format("opentype");
}
@font-face {
	font-family: "Noto Serif Japanese";
	font-style: normal;
	font-weight: 600;
	src: url(../fonts/Noto_Serif_JP/NotoSerifJP-SemiBold.otf) format("opentype");
}
@font-face {
	font-family: "Noto Serif Japanese";
	font-style: normal;
	font-weight: 700;
	src: url(../fonts/Noto_Serif_JP/NotoSerifJP-Bold.otf) format("opentype");
}*/
.device_pc{
	display: none !important;
}
body{
	color: #371815;
	font-size: 14px;
	line-height: 1.5;
	font-family: 'M PLUS 1p', YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}
a{
	text-decoration: none;
}
a,
a:visited,
a:link,
a:active{
	color: #371815;
}

.inner{
	width: 100%;
	position: relative;
	margin: 0 auto 100px;
}
.scr_prevent {
    overflow: hidden;
    height: 100%;
}
.row_wrap{
	display: flex;
	flex-flow: column wrap;
}
.buy_btn a{
	display: inline-block;
	color: #fff;
	font-size: 16px;
	border-radius: 20px;
	background-color: #DD6200;
	padding: 8px 36px;
}



/*アニメーション*/

/*.main-fade{
    animation-name: mainfadein;
    animation-duration: 2.5s;
}
@keyframes mainfadein{
    from{
    opacity: 0;
    transform: translatey(20px);
	
    }
    to{
    opacity: 1;
    transform: translatey(0);
    }
}


.main-fade2{
    animation-name: mainfadein;
    animation-duration: 5s;
}
@keyframes mainfadein2{
    from{
    opacity: 0;
    transform: translatey(20px);
	
    }
    to{
    opacity: 1;
    transform: translatey(0);
    }
}
*/

.js-fade{
	opacity: 0;

}

.is-inview{
    animation: is-inview .4s linear .25s 1 normal forwards;
}


@keyframes is-inview{
    from{
    opacity: 0;
    transform: translatey(20px);
	
    }
    to{
    opacity: 1;
    transform: translatey(0);
    }
}




.is-inview li:first-child{
	opacity: 0;
    animation: is-inview .4s linear .25s 1 normal forwards;
}

.is-inview li:nth-child(2n){
	opacity: 0;
    animation: is-inview .4s linear .5s 1 normal forwards;
}

.is-inview li:nth-child(3n){
	opacity: 0;
    animation: is-inview .4s linear .75s 1 normal forwards;
}

.is-inview li:nth-child(5n){
	opacity: 0;
    animation: is-inview .4s linear 1s 1 normal forwards;
}


.main-img.is-inview img{
	opacity: 0;
    animation: is-inview .4s linear .25s 1 normal forwards;
}


.main-img.is-inview img:last-of-type {
	opacity: 0;
    animation: is-inview .4s linear .5s 1 normal forwards;
}


#news .news_inner.is-inview .news_box:nth-of-type(1) {
	opacity: 0;
    animation: is-inview .4s linear .25s 1 normal forwards;
}

#news .news_inner.is-inview .news_box:nth-of-type(2) {
	opacity: 0;
    animation: is-inview .4s linear .5s 1 normal forwards;
}

#news .news_inner.is-inview .news_box:last-of-type {
	opacity: 0;
    animation: is-inview .4s linear .75s 1 normal forwards;
}




.js-hover img{
	filter: drop-shadow(0px 5px 0px rgba(55,24,21,1));
}

.js-hover:hover img{
	transform: translateY(5px);
	filter: drop-shadow(0px 1px 0px rgba(55,24,21,1));
}

.js-hover input{
	filter: drop-shadow(0px 5px 0px rgba(55,24,21,1));
}

.js-hover:hover input{
	transform: translateY(5px);
	filter: drop-shadow(0px 1px 0px rgba(55,24,21,1));
}








/* --------------------------------------------------------------------------------
		header
-------------------------------------------------------------------------------- */
#header{
	width: 100%;
	border-bottom: 3px solid #FF8200;

}
#header .h_wrap{
	width: 100%;
	height: 70px;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
	background-color: #fff;
	padding: 0 1em;
	position: relative;
}

#header .h_wrap h1.h_logo{
	width: 75vw;
	
}
#header .h_wrap h1.h_logo img{
	width: 100%;
	height: auto;
}
#header .h_wrap .ham_wrap .nav_toggle{
	height: 30px;
    width: 30px;
	position: absolute;
	top: 5vw;
	right: 1em;
    z-index: 98;
}
#header .h_wrap .ham_wrap .nav_toggle div{
	display: inline-block;
    height: 16px;
    width: 30px;
}
#header .h_wrap .ham_wrap .nav_toggle p{
	font-size: 10px;
	color: #FF8200;
}


#header .h_wrap .ham_wrap .nav_toggle span{
	position: absolute;
    left: 0;
    display: inline-block;
    height: 2px;
    width: 30px;
    background-color: #FF8200;
    transition: all 0.3s ease-out;
}
#header .h_wrap .ham_wrap .nav_toggle span:nth-of-type(1){
	bottom: 12px;
}
#header .h_wrap .ham_wrap .nav_toggle span:nth-of-type(2){
	bottom: 19px;
}
#header .h_wrap .ham_wrap .nav_toggle span:nth-of-type(3){
	bottom: 26px;
}
#header .h_wrap .ham_wrap .nav_toggle.is_active div{
   
}
#header .h_wrap .ham_wrap .nav_toggle.is_active span{
    background-color: #FF8200;
}
#header .h_wrap .ham_wrap .nav_toggle.is_active span:nth-of-type(1){
	width: 38px;
	bottom: 13px;
    transform: rotate(-135deg);
}
#header .h_wrap .ham_wrap .nav_toggle.is_active span:nth-of-type(2){
	opacity: 0;
}
#header .h_wrap .ham_wrap .nav_toggle.is_active span:nth-of-type(3){
	width: 38px;
	bottom: 13px;
    transform: rotate(135deg);
}

#header .h_wrap .ham_wrap .nav_toggle.is_active p{
	display: none;
}


#header .h_wrap .ham_wrap .nav_wrap{
	display: none;
    position: fixed;
    left: 00%;
    top: 72px;
    overflow-y: scroll;
    z-index: 999;
    width: 100%;
    height: 100vh;
    background-color: #FF8200;
    padding: 35px 1em 80px;
}
#header .h_wrap .nav_wrap .g_nav{
	text-align: center;
	margin: 0 0 70px;
}
#header .h_wrap .nav_wrap .g_nav li{
	text-align: center;
	margin: 0 0 30px;
}
#header .h_wrap .nav_wrap .g_nav li a{
	color: #fff;
	font-size: 16px;
	text-align: center;
}

#header .h_wrap .nav_wrap .util-btn{
	text-align: center;
	margin: 0 0 70px;
}

#header .h_wrap .nav_wrap .util-btn li{
	margin: 0 0 12px;
	
}




/* --------------------------------------------------------------------------------
		main_visual
-------------------------------------------------------------------------------- */
#main_visual{
	width: 100%;
	background: url("https://altaauto.jp/images/common/main-bg.jpg") center;
	background-size: 72%;
	padding: 20px 2em 0;

}

#main_visual .main-content ul{
	
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;

}

#main_visual .main-content ul li img{
  height: 40vw;
	object-fit: cover;
	
}

#main_visual .main-content ul li a{
  position: relative;
    display: block;
	
}


#main_visual .main-content ul li a:hover{
  opacity: 1;

}

#main_visual .main-content ul li a:hover img{
  transform: scale(1.2);
  transition-duration: 0.3s;

}



/*#main_visual .main-content ul li a::after{
	content: '';	
	width: 10px;
	height: 10px;
	border: 0px;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	-ms-transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	position: absolute;
	bottom: -33px;
	right: 0px;
	left: 0;
	margin: 0 auto;
}


#main_visual .main-content ul li a::before{
	content: '';
	background: #371815;
	width: 40px;
	height: 40px;
	border: 0px;
	position: absolute;
	bottom: -50px;
	right: 0px;
	left: 0px;
	margin: 0 auto;
	border-radius: 20px;
}


#main_visual .main-content ul li a:hover::after{
	bottom: -53px;
	transition-duration: 0.3s;
}


#main_visual .main-content ul li a:hover::before{
	bottom: -70px;
	transition-duration: 0.3s;
}
*/


#main_visual .main-content ul li .main-img{
	display: flex;
	align-items: center;
	margin: 45px 0 0;
	padding: 0 0 20px;
	
}

#main_visual .main-content ul li .main-img img{
	height: 33vw;
	object-fit: contain;
	
}

/* --------------------------------------------------------------------------------
		index
-------------------------------------------------------------------------------- */

#container{
	background-size: auto auto;
	background-color: rgba(255, 195, 132, 1);
	background-image: repeating-linear-gradient(110deg, transparent, transparent 62px, rgba(255, 212, 144, 1) 62px, rgba(255, 212, 144, 1) 112px );
}

.outer{
	padding: 80px 0 0;
}

/*section　ベース・新車枠*/

section{
	position: relative;
	border: 10px solid #FFE13E;
}

section::before{
	content: "";
	display: block;
	border-bottom: 10px solid #FF8200;
	width:  calc(50% + 10px) ;
	position: absolute;
	top:-10px;
	right: -10px;

}

section::after{
	content: "";
	display: block;
	border-bottom: 10px solid #FF8200;
	width:  calc(50% + 10px) ;
	position: absolute;
	bottom:-10px;
	left: -10px;

}


.section-inner{
	position: relative;
	background: #fff;
	padding: 80px 20px;
	
}


.section-inner::before{
	content: "";
	display: block;
	border-left: 10px solid #FF8200;
	width: 10px;
	height:  calc(50% + 10px) ;
	position: absolute;
	top:-10px;
	right: -10px;

}

.section-inner::after{
	content: "";
	display: block;
	border-left: 10px solid #FF8200;
	width: 10px;
	height:  calc(50% + 10px) ;
	position: absolute;
	bottom:-10px;
	left: -10px;

}

/*中古車枠*/

section#used-car{
	position: relative;
	border: 10px solid #B7F4AC;
}

section#used-car::before{
	content: "";
	display: block;
	border-bottom: 10px solid #59D090;
	width:  calc(50% + 10px) ;
	position: absolute;
	top:-10px;
	right: -10px;

}

section#used-car::after{
	content: "";
	display: block;
	border-bottom: 10px solid #59D090;
	width:  calc(50% + 10px) ;
	position: absolute;
	bottom:-10px;
	left: -10px;

}
section#used-car .section-inner::before{
	content: "";
	display: block;
	border-left: 10px solid #59D090;
	width: 10px;
	height:  calc(50% + 10px) ;
	position: absolute;
	top:-10px;
	right: -10px;

}


section#used-car .section-inner::after{
	content: "";
	display: block;
	border-left: 10px solid #59D090;
	width: 10px;
	height:  calc(50% + 10px) ;
	position: absolute;
	bottom:-10px;
	left: -10px;

}


/*高価買取枠*/

section#carpurchase{
	position: relative;
	border: 10px solid #FFCCCC;
}

section#carpurchase::before{
	content: "";
	display: block;
	border-bottom: 10px solid #ED7B60;
	width:  calc(50% + 10px) ;
	position: absolute;
	top:-10px;
	right: -10px;

}

section#carpurchase::after{
	content: "";
	display: block;
	border-bottom: 10px solid #ED7B60;
	width:  calc(50% + 10px) ;
	position: absolute;
	bottom:-10px;
	left: -10px;

}
section#carpurchase .section-inner::before{
	content: "";
	display: block;
	border-left: 10px solid #ED7B60;
	width: 10px;
	height:  calc(50% + 10px) ;
	position: absolute;
	top:-10px;
	right: -10px;

}


section#carpurchase .section-inner::after{
	content: "";
	display: block;
	border-left: 10px solid #ED7B60;
	width: 10px;
	height:  calc(50% + 10px) ;
	position: absolute;
	bottom:-10px;
	left: -10px;

}




section .anc{
	width: 70%;
	position: absolute;
	top:-28px;
	left: 20px;
}

section h2{
	width: 70%;
	text-align: center;
	margin: 0 auto 20px;
 
}

section .ttl-line{
	width: 75%;
	text-align: center;
	margin: 0 auto 20px;
  	
}

section p.lead{
	text-align: center;
	margin: 0 0 20px;
	font-size: 14px;
  	
}

section p.lead span.line_p a{
	text-align: center;
	margin: 0 0 40px;
	font-size: 18px;
	color: #00ad6d;
	text-decoration : underline;

}
section p.lead span.line_p a:active{
	text-align: center;
	margin: 0 0 40px;
	font-size: 18px;
	color: #00ad6d;
	text-decoration : none;
}


section p.catch{
    position:relative;
    width:100%;
    background:#FFE13E;
    padding:10px 0;
	margin: 0 auto;
    text-align:center;
    border:2px solid #371815;
    color:#371815;
    font-size:15px;
    border-radius:40px;
	font-weight: 500;
 
}
section p.catch:after,section p.catch:before{
    border: solid transparent;
    content:'';
    height:0;
    width:0;
    pointer-events:none;
    position:absolute;
    top:100%;
    left:50%;
}
section p.catch:after{
   
    border-top-width:15px;
    border-bottom-width:15px;
    border-left-width:13px;
    border-right-width:13px;
    margin-left: -13px;
    border-top-color:#FFE13E;
}
section p.catch:before{
   
    border-top-width:15px;
    border-bottom-width:15px;
    border-left-width:15px;
    border-right-width:15px;
    margin-left: -15px;
    margin-top: 2px;
    border-top-color:#371815;
}


section h4{
   font-size: 25px;
	text-align: center;
	margin: 30px 0 0;
	font-weight: 800;
}


/*新車販売*/

#new-car .section-inner {
    position: relative;
    background: #fff;
    padding: 80px 20px 0;
}

#new-car .car-list{
	margin: 0 0 100px;
}

#new-car .lineup-slider{
	width: 100%;
	margin: 0 auto;
}


.slick-dots {
    bottom: -45px;
}


.slick-dots li button:before{
    font-size: 14px;
    color: #371815;
}


.slick-next:before {
    content: '';
}

.slick-prev:before {
    content: '';
}

#new-car .lineup-slider .slick-prev {
    line-height: auto!important;
    background: url(https://altaauto.jp/images/common/arr-left.svg)!important;
	width: 15px!important;
	height: 23px!important;
}

#new-car .lineup-slider .slick-next {
    line-height: auto!important;
    background: url(https://altaauto.jp/images/common/arr-right.svg)!important;
	width: 15px!important;
	height: 23px!important;
}


#new-car .lineup-slider .slick-next {
    right: 30px;
	z-index: 99;
}

#new-car .lineup-slider .slick-prev {
    left: 30px;
	z-index: 99;
}




#new-car .slide_item_inner{	
	border:5px solid #371815;
	border-radius: 10px;
	margin: 0 10px;
}

#new-car .slide_item_inner .img img{	
	max-width: 100%;
}

#new-car .slide_item_inner .name{	
	background: #FFEDDB;
	text-align: center;
	font-size: 18px;
	padding: 10px;
	margin: 0 0 10px;
	font-weight: 500;
}


#new-car .slide_item_inner .price{		
	text-align: center;
	font-size: 13px;
	margin: 0 0 10px;
}

#new-car .slide_item_inner .priceoff{		
	text-align: center;
	font-size: 16px;
	margin: 0 0 20px;
	font-weight: 800;
}

#new-car .slide_item_inner .priceoff span{		
	background:linear-gradient(transparent 10%, #FFE13E 0%);
}


#new-car .slide_item_inner .priceoff em{		
	color: #DB2A00;
	font-size: 50px;
	font-style: normal;
	letter-spacing: 0;
	
}


#new-car .contents ul{		
	display: flex;
	justify-content: center;
	flex-direction: column;
	margin: 80px 0 0;
}

#new-car .contents ul li{
	position: relative;
	border:10px solid #FFE13E;
	margin: 0 0 70px;
	text-align: center;
	padding: 43px 0 30px;
}

#new-car .contents ul li .i-no{
	position: absolute;
	width: 86px;
	top:-50px;
	left: 0;
	right: 0;
	margin: 0 auto;
}

#new-car .contents ul li .img{
	text-align: center;
	margin: 0 0 30px;
}

#new-car .contents ul li h5{
	font-size: 20px;
	text-align: center;
	margin: 0 0 10px;
	font-weight: 500;
}

#new-car .contents ul li p{
	font-size: 14px;
	text-align: center;
	padding: 0 15px;
	
}

/*中古車販売*/


#used-car .section-inner {
    position: relative;
    background: #fff;
    padding: 80px 0;
}


#used-car .search-box{
	width: 100%;
	background: url("https://altaauto.jp/images/common/usedcar-bg.jpg") center;
	background-size: 80%;
	margin: 40px 0;
	padding: 40px 0 20px;
}

#used-car .search-box ul{
	display: flex;
	flex-direction: column;
	justify-content: center;

}

#used-car .search-box ul li{
	border: 5px solid #371815;
    border-radius: 10px;
    margin: 0 20px 18px;
	padding: 30px 15px 80px;
	background: #fff;
	text-align: center;
}

#used-car .search-box ul li .img{
	width: 80%;
    margin: 0 auto 20px;
	
}


#used-car .search-box ul li h4{
	font-size: 16px;
	color: #00AD6D;
    margin: 0 0 10px;
	font-weight: 500;
}


#used-car .search-box ul li .ttl-search{
	font-size: 25px;
	font-weight: 800;
    
}

#used-car .search-box ul li p{
	font-size: 18px;
	font-weight: 500;
    
}

#used-car .search-box ul li a{
	display: block;
	position: relative;
    
}
#used-car .search-box ul li a::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 0px;
    border-top: solid 3px #371815;
    border-right: solid 3px #371815;
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    position: absolute;
    bottom: -40px;
    right: 0px;
    left: 0;
    margin: 0 auto;
}

#used-car .contents{
	padding: 0 20px;
    
}



#used-car .contents p.lead{
	margin: 20px 0 40px;
    
}




#used-car .contents ul{		
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 80px 0 0;
}

#used-car .contents ul li{
	position: relative;
	border:10px solid #00AD6D;
	margin: 0 0 70px;
	text-align: center;
	padding: 43px 0 30px;
	background: #F0FFF7;
	
}

#used-car .contents ul li:last-child{
	
	margin: 0 0 40px;
	
	
}


#used-car .contents ul li .i-no{
	position: absolute;
	width: 86px;
	top:-50px;
	left: 0;
	right: 0;
	margin: 0 auto;
}

#used-car .contents ul li .img{
	text-align: center;
	margin: 0 0 30px;
}

#used-car .contents ul li h5{
	font-size: 20px;
	text-align: center;
	margin: 0 0 10px;
	font-weight: 500;
}

#used-car .contents ul li p{
	font-size: 14px;
	text-align: left;
	padding: 0 15px;
	
}

#used-car .voice{
	text-align: center;
	
}

#used-car .voice a{
	border: 1px solid #371815;
	border-radius: 60px;
	display: block;
	width: 260px;
	padding: 15px 40px;
	text-align: center;
	margin: 0 auto;
	font-size: 14px;
	box-shadow: 0px 13px 0px -5px rgba(55,24,21,1);
	font-weight: 500;
	
	
}

#used-car .voice a:hover{
	opacity: 1;
	border: 1px solid #371815;
	background: #371815;
	border-radius: 60px;
	display: block;
	width: 260px;
	padding: 15px 40px;
	text-align: center;
	margin: 0 auto;
	font-size: 14px;
	color: #fff;
	transform: translateY(5px);
	box-shadow: 0px 0px 0px -5px rgba(55,24,21,1);
	
}


/*高価買取*/

#carpurchase .section-inner {
    position: relative;
    background: #fff;
    padding: 80px 0 0;
}


#carpurchase .contents {
    padding: 0 20px;
}




#carpurchase .img{
	margin: 40px 0 ;
	text-align: center;
}

#carpurchase p.txt{
	margin: 20px 0 0;
	font-size: 16px;
	display: flex;
	
}

#carpurchase p.txt span{
	color: #FF9900;
	padding: 0 1em 0 0;
}

#carpurchase p.txt:nth-last-of-type(2) span{
	color: #D2FF00;
}

#carpurchase p.txt:nth-last-of-type(3) span{
	color: #25CEFF;
}

#carpurchase p.txt:nth-last-of-type(3) span{
	color: #25CEFF;
}

#form-box{
	padding: 60px 15px;
	background: #FFE13E;
}

#form-box .img{
	margin: 0;
	
}

#form-box h4{
	font-size: 21px;
	padding: 0 0 40px;
	margin: 30px 0 0;
	background: #FFE13E;
}


#form-box form{
	width: 100%;
	margin: 0 auto;
}


#form-box form table{
	
	font-size: 16px;
	margin: 0 auto 30px;
	display: block;
}
#form-box form table tbody{
	width: 100%;
	display: block;
}
#form-box form table tr{
	width: 100%;
	display: block;
}

#form-box form table th{
	display: block;
	width: 100%;
	text-align: left;
	font-size: 16px;
	padding: 0 0 10px;
	font-weight: 500;
}


#form-box form table th span{
	background: #00AD6D;
	color: #fff;
	text-align: center;
	font-size: 12px;
	padding: 0 10px ;
	border-radius: 10px;
	margin: 0 10px 0 0;
}

#form-box form table td{
	display: block;
	width: 100%;
	font-weight: normal;
	text-align: left;
	font-size: 14px;
	padding: 0 0 10px;
}

#form-box form table td input{
	width: 100%;
	padding: 10px;
	border-radius: 4px;
	border: 1px solid #371815;
	font-size: 14px;
	letter-spacing:0.1em;
}

#form-box .submit{
	text-align: center;
	margin: 0 0 30px;
}

#form-box .submit input{
	background: #DB2A00;
	color: #fff;
	text-align: center;
	width: 100%;
	font-size: 16px;
	padding: 12px;
	border-radius: 10px;
	letter-spacing:0.1em;
	margin: 0 0 10px;
	font-weight: 500;
}



#form-box .util-btn{
	
}

#form-box .util-btn li{
	text-align: center;
	margin: 20px 0 0;
}




section#carpurchase.inner {
    margin:  0 auto 40px;
}

#contets-nav{
	padding: 0 20px;
	margin: 0 0 40px;
}

#contets-nav ul{
	display: flex;
	flex-direction: column;
	justify-content: center;
}


#contets-nav ul li{
	margin: 0 0 15px;
}


#news{
	padding: 70px 20px 50px;
	background: #6A433F;
}

#news h2{
	text-align: center;
    margin: 0 0 40px
}

#news p.lead {
    text-align: center;
    margin: 0 0 40px;
    font-size: 14px;
	color: #fff;
}
/*
#news .news_inner {
    display: flex;
	flex-direction: column;
	justify-content: center;
}
*/
#news .news_inner .slick-prev {
    line-height: auto!important;
    background: url(https://altaauto.jp/images/common/arr-left.svg)!important;
	width: 15px!important;
	height: 23px!important;
}

#news .news_inner .slick-next {
    line-height: auto!important;
    background: url(https://altaauto.jp/images/common/arr-right.svg)!important;
	width: 15px!important;
	height: 23px!important;
}


#news .news_inner .slick-next {
    right: -15px;
	z-index: 99;
}

#news .news_inner .slick-prev {
    left: -15px;
	z-index: 99;
}
#news .news_inner .news_box{
	/*width: 100%;*/
	width: 96%;
    background: #fff;
	/*margin: 0 0 15px;*/
	margin: 0 auto 15px;
	padding: 5px;
	border-radius: 10px;
	
	
}

#news .news_inner .news_box .new_icon{
	position: absolute;
	background: #DB2A00;
	color: #fff;
	font-size: 16px;
	text-align: center;
	padding: 5px 20px;
	top:-20px;
}

#news .news_inner .news_box .txt{
	position: relative;
}


#news .news_inner .news_box a {
    display: block;
}

#news .news_inner .news_box .img {
    height: 267px;
}

#news .news_inner .news_box .title {
    padding: 40px 20px 0;
	margin: 0 0 20px;
	font-size: 14px;
	font-weight: 500;
}

#news .news_inner .news_box .date {
    padding:0 20px ;
	margin: 0 0 30px;
	font-size: 14px;
}



#access{
	padding: 100px 20px;
}

#access .access-inner{
	
	margin: 0 auto;
}

#access h2{
	text-align: center;
	margin: 0 0 60px;
	font-weight: 800;
}


#access .gmap{
	margin: 0 0 30px;
}

#access iframe{
	width: 100%!important;
}


#access .info{
	
	
}

#access .info h2{
	font-size: 23px;
	text-align: left;
	margin: 0 0 30px;
}

#access .info .txt{
	margin: 0 0 40px;
}

#access .info .txt table th{
	text-align: left;
	width: 80px;
	font-size: 14px;
	padding: 0 0 15px;
	vertical-align: top;
	font-weight: 500;
}

#access .info .txt table td{
	text-align: left;
	font-weight: normal;
	font-size: 14px;
	padding: 0 0 15px;
}



/* --------------------------------------------------------------------------------
		footer	
-------------------------------------------------------------------------------- */
#footer{
	width: 100%;
	background-color: #371815;
	padding: 40px 0 20px;
}

#footer .inner{
	padding: 0 20px;
}


#footer ul.g_nav{
	display: none;
}


#footer .f_logo{
	text-align: center;
	margin: 0 0 30px;
}


#footer .address{
	margin: 0 auto 30px;
	color: #fff;
	font-size: 14px;
}

#footer ul.util-btn{
	display: flex;
	align-items: center;
	flex-direction: column;
	margin: 0 0 20px;
	
}
#footer ul.util-btn li{
	margin: 0 0 10px;
	
}

#footer .copy{
	color: #fff;
	font-size: 14px;
	text-align: center;
}


#fix-bnr{
	
	display: none;
	width: 100%;
	background: rgba(255,255,255,0.9);
	padding:10px 15px;
	position: fixed;
	bottom:0;
}

#fix-bnr ul{
	display: flex;
	justify-content: center;
	
}

#fix-bnr ul li{
	margin: 0 7px;
}

#fix-bnr ul li img{
	height: 56px;
	object-fit: contain;
}

.visible{
	display: block!important;
}


/* --------------------------------------------------------------------------------
		pagetitle
-------------------------------------------------------------------------------- */
#pagetitle{
	width: 100%;
	background: url("https://altaauto.jp/images/common/page-bg.jpg") center;
	background-size: 72%;
	padding: 7px 0 0;
}
#pagetitle .page-back {
	width: 100%;
    text-align: center;
}
#pagetitle .page-back .top-line {
	margin: 0;
	padding: 0;
}
#pagetitle .page-back p {
	margin: 7px 0 35px;
	color: #371815;
	font-size: 24px;
	letter-spacing: 4px;
	text-align: center;
	font-weight: bold;
}


