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

html, body {
	margin:0;
	padding:0;
}

/*Webフォントの指定///////////////////////////////////*/
/*WebフォントRegular*/
@font-face {
  	font-family: 'MazdaType-Regular';
	src: url("../fonts/mazda/0050_MazdaType-Regular.woff") format('woff');
  	font-weight: normal;
}

/*WebフォントMedium*/
@font-face {
  	font-family: 'MazdaType-Medium';
  	src: url('../fonts/mazda/0030_MazdaType-Medium.woff') format('woff');
  	font-weight: normal;
}

/*WebフォントBold*/
@font-face {
  	font-family: 'MazdaType-Bold';
  	src: url('../fonts/mazda/0010_MazdaType-Bold.woff') format('woff');
  	font-weight: bold;
}



.LP_wrap  {
	overflow: hidden;
	font-family: 'MazdaType-Regular', "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
}

.LP_wrap div,
.LP_wrap img,
.LP_wrap section,
.LP_wrap h2,
.LP_wrap h3,
.LP_wrap h4,
.LP_wrap p,
.LP_wrap figure,
.LP_wrap ul,
.LP_wrap li {
  margin: 0;
  padding: 0;
}


.LP_wrap img {
	width: 100%;
	height: auto;
	margin: auto;
	vertical-align: bottom;
	display: block;
}



.LP_wrap .con_940 {
	width: 100%;
	max-width: 940px;
	margin: 0 auto 0;	
	box-sizing: border-box;
}
.LP_wrap .con_980 {
	width: 95%;
	max-width: 980px;
	margin: 0 auto 0;	
	box-sizing: border-box;
}
.LP_wrap .margin-T {
	margin-top: 20%;
}
.LP_wrap .margin-B {
	margin-bottom: 10%;
}

/* ページロード時にふわっと表示させるアニメーション ////////*/
.LP_wrap {
	opacity: 0;
	animation: fadeIn 1s ease-in-out forwards;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}




/*main-img //////////////////////////////*/
.LP_wrap .LP_main-img{
	position: relative;
}
.LP_wrap .LP_main-img .LP_main-car{
	position: absolute;
	left: 0;
	top: 0;
	animation: floatUp 2s ease-out both;
}
@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}





/*////////////  各店舗リスト ///////////////*/
.LP_wrap .LP_shop {
	margin-top: 150px;
}
.LP_wrap .bg_black {
	background: #323232;
	padding: 80px 0 80px;
}
.LP_wrap .bg_black .shop_con {
	width: 90%;
	max-width: 940px;
	margin: auto;
}
.LP_wrap .bg_black .shop_con > figure {
	width:  50%;
	max-width: 550px;
	margin: 0 auto;	
	box-sizing: border-box;
}

/* 店舗リンクリスト（PC＆SP） */
ul.shop_list {
	list-style: none;
	box-sizing: border-box;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px 10px;
	margin-top: 5%;
}
@media screen and (max-width: 1024px) {
	ul.shop_list {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px 10px;
		margin-top: 8%;
  }
}

/* 店舗リンクボタン */
ul.shop_list li a {
	position: relative;
	display: block;
	padding: 0;
	transition: all 0.3s ease;
	box-sizing: border-box;
}
ul.shop_list li a:hover {
	opacity: 0.5;
}


/*テキスト部分*/
.LP_wrap .LP_shop p {
	text-align: center;
	font-family: 'MazdaType-Medium';
	font-weight: bold;
	font-size: 22px;
	color: #ffffff;
}

/*WEBより事前予約をしていただけますと〜*/
@media screen and (max-width:750px){
	.LP_wrap .LP_shop p.first-child {
		font-size: 14px;
	}
}

/*お電話でのご予約も承っております*/
.LP_wrap p.LP_tel span {
	display: inline-block;
	background-color: #ffffff;;
	color: #1e1e1e;
	text-align: center;
	font-weight: normal;
	padding: 5px 20px;
	border-radius: 1000px;
}
.LP_wrap p.LP_tel {
	margin: 3% auto 0;
}

/*※詳しくは各店舗へお問い合わせください。*/
.LP_wrap p.note {
	font-size: 18px;
	margin: 8% auto 0%;
	font-weight: normal;
}
@media screen and (max-width:1024px){
	.LP_wrap p.note span {
		display: block;
		line-height: 1.1;
	}
}






/*LP_option-present //////////////////////////////////////////*/
.LP_wrap .LP_option-present {
	background: #a51937;
	padding: 10% 0;
}







/*ボタン//////////////////////////////////////////*/
/*リンクボタン*/
.LP_wrap a:hover {
	opacity: 0.8;
}

/*車ボタン*/
.LP_wrap a.btn_base{
	opacity: 1;
	text-decoration: none;
	display: block;
    background: #ffffff;
	width: 90%;
	max-width: 420px;
	height: 55px;
	line-height: 55px;
	margin: 5% auto 0;
	border-radius: 8px;
    text-align: center;
    transition: ease .4s;
	color: #000000;
	font-size: 22px;
	border: 1px solid #000000;
}
@media screen and (max-width:750px){
	.LP_wrap a.btn_base{
		height: 75px;
		line-height: 75px;
		font-size:30px;
		max-width: 800px;
	}
}
/* PC（hover可能デバイス）のみ hover指定 */
@media (hover: hover) and (pointer: fine) {
    .LP_wrap a.btn_base:hover {
        background: #323232;
        color: #ffffff;
		border: 1px solid #323232;
    }
}





/*スクロールアニメーション//////////////////////////////////////////*/
/* 共通：透明状態 */
.LP_wrap .fade-in {
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transition: opacity 1.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

/* 表示時 */
.LP_wrap .fade-in.show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* 左右：今回は未使用 
.LP_wrap .fade-in.fade-left { transform: translate3d(-100px, 0, 0); }
.LP_wrap .fade-in.fade-right { transform: translate3d(100px, 0, 0); }*/

