﻿@charset "UTF-8";


/* 基本レイアウト ここから↓ */
* {
	margin: 0;
	padding: 0;
}
*, *::before, *::after {
    box-sizing: border-box;
}
html{
	font-size: 62.5%;
}
body{
	font-size: 1.6rem;/* 16px*/
	line-height: 2;
	width: 100%;
	color: #231815;
	background-color: #fff;
	/* フォントの種類を指定 */
	font-family: -apple-system, BlinkMacSystemFont, 游ゴシック, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
	/* 字間(プロポーショナルメトリクス)を指定 */
	font-feature-settings: "palt";
	display: inline;
}
li {
	list-style:none;
}
ul, ol {
	padding:0;
	margin:0;
}
a {	
	color: #231815;
	text-decoration: none;
}
a:hover {
	/* filter: saturate(180%) opacity(70%);
	transition-duration: 0.5s; */
}
a img:hover {
	filter: opacity(80%);
}
a[href*="tel"] {
	pointer-events: auto;
}
.font {
	font-family: 'Stoke', serif;
	font-style: italic;
}
img {
	max-width: 100%;
    height: auto;
	vertical-align: middle;
	display: block;
	margin: auto;
}
img.widthmax {
	/* width: 100%; */
}
img.width80 {
	width: 80%;
}
.hidden {
	position: absolute;
	top: -9999px;
	left: -9999px;
  }
.sp_only {
	display: block;
}
.pc_only {
	display: none;
}


@media screen and (min-width: 960px) {
	.sp_only {
		display: none;
	}
	.pc_only {
		display: block;
	}
	a[href*="tel"] {
		pointer-events: none;
	}
}

.bold {
	font-weight: bold;
}
/* webfont */
.ff-rodin-m {
	font-family: "FOT-ロダンNTLG Pro M";
}
.ff-rodin-pro-l {
	font-family: "FOT-ロダン Pro L";
}
.ff-rodin-pro-m {
	font-family: "FOT-ロダン Pro M";
}
.ff-rodin-pro-db {
	font-family: "FOT-ロダン Pro DB";
}
.ff-rodin-pro-b {
	font-family: "FOT-ロダン Pro B";
}
.ff-rodin-pro-eb {
	font-family: "FOT-ロダン Pro EB";
}

/* 文字色 */
.white {
	color: #fff;
}
.red {
	color: #d0121b;
}
/* 基本レイアウト ここまで↑ */


/*------------------------------

	ヘッダーここから

------------------------------*/
header {
	background: #fff;
	width: 100%;
	position: fixed;
	z-index: 10;
	display: flex;
	align-items: center;
}
header h1 {
	width: 20%;
	padding: 1% 3% 1% 1%;
}
header h2 {
	font-family: "FOT-ロダン Pro DB";
	font-size: 2vw;
	font-weight: normal;
}
@media screen and (min-width: 960px) {
	header h1 {
		padding: 1% 3%;
	}
	header h2 {
		font-size: 1vw;
	}
	
}

/*------------------------------

	ヘッダーここまで

------------------------------*/
/*------------------------------

	メイン部分ここから

------------------------------*/
main {

}
main video {
	width: 100%;
	display: block;
}
main section {
	max-width: 1000px;
	padding: 0 3%;
	margin: auto;
	margin-top: 20px;
}
@media screen and (min-width: 960px) {
	main section {
		margin-top: 40px;
	}
}
main section.widthmax {
	max-width: 100%;
	padding: 0;
}

/* about ここから */
#about {
	text-align: center;
}
#about h3 {
	font-family: "FOT-ロダン Pro B";
	font-size: 5vw;
	font-weight: normal;
	display: inline;
	background: linear-gradient(transparent 70%, #a2c4e8 70%);
}
#about h4 {
	font-family: "FOT-ロダン Pro DB";
	font-size: 3.5vw;
	font-weight: normal;
	line-height: 1.5;
	margin-top: 1%;
}
@media screen and (min-width: 960px) {
	#about h3 {
		font-size: 3rem;
	}
	#about h4 {
		font-size: 2rem;
	}
}

#about ul {
	font-family: "FOT-ロダン Pro DB";
	display: flex;
	justify-content: center;
	margin-bottom: 5%;
}
#about ul li {
	border-left: 1px solid #555;
	padding: 0 3%;
	margin-top: 5%;
}
@media screen and (min-width: 960px) {
	#about ul li {
		padding: 0 7%;
	}
}
#about ul li:first-child {
	border-left: none;
}
#about ul li h5 {
	font-size: 3vw;
}
#about ul li p {
	font-size: 2vw;
	line-height: 1.5;
}
@media screen and (min-width: 960px) {
	#about ul li h5 {
		font-size: 2rem;
	}
	#about ul li p {
		font-size: 1.2rem;
	}
}
/* about ここまで*/ 

/* テキスト重なりイメージ部分 ここから */
#text-img {
	max-width: 1000px;
	position: relative;
	font-weight: bold;
}
#text-img img {
	width: 65%;
}
#text-img div {
	position: absolute;
	top: 0;
	/* top: 66%;
	left: 7%; */

	/* left: 50%;
	bottom: -6.5em;
	transform: translateX(-50%); */
	/* 
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	 */
	

	/* text-shadow:1px 1px 5px #FFF, -1px -1px 5px #FFF,
              -1px 1px 5px #FFF, 1px -1px 5px #FFF,
              0px 1px 5px #FFF,  0-1px 5px #FFF,
              -1px 0 5px #FFF, 1px 0 5px #FFF; */
}
#text-img div h3 {
	font-family: "FOT-ロダン Pro B";
	/* font-size: clamp(2rem, 4vw + 2rem, 6rem); */
	font-size: 4vw; /* ビューポートの幅の何パーセントか */
	font-weight: normal;
	line-height: 1.5;
	padding-left: 1.5em;
	text-indent: -1.5em;
}
#text-img div h4 {
	color: #727171;
	font-family: "FOT-ロダン Pro DB";
	font-size: 2.5vw;
	font-weight: normal;
	line-height: 1.5;
}
@media screen and (min-width: 960px) {
	#text-img div h3 {
		font-size: 3.8rem;
	}
	#text-img div h4 {
		font-size: 2.3rem;
	}
}
/* テキスト重なりメージ部分 ここまで */

/* TEL ここから */
.tel {
	/* width: 80%; */
	line-height: 1.5;
}
.btn-tel {
	width: 80%;
	margin-bottom: 5%;
}

.tel div {
	background-color: #008d42;
	color: #fff;
	padding: 5%;
	border-radius: 5vw;
	width: 90%;
	margin: auto;
	text-align: center;
}
.tel div h3 {
	background: url(../img/btn/icon-tel.jpg) no-repeat left/15%;
	padding-left: 18%;
	font-size: 9vw; 
}
.tel div p {
	font-size: 1.5vw;
}
@media screen and (min-width: 960px) {
	.tel div h3 {
		font-size: 9rem;
	}
	.tel div p {
		font-size: 2.5rem;
	}
}
/* TEL ここまで */

/* 車リスト ここから */
.car{
	text-align: center;
	line-height: 1.3;
}
.car h3 img {
	margin-left: 0;
	width: 30%;
}
.car ul li {
	margin-top: 8%;
}
.car ul li h4 {
	font-family: "FOT-ロダン Pro B";
	font-size: 4vw;
	font-weight: normal;
}
.car ul li img {
	width: 65%;
	margin-top: 3%;
}
.car ul li h5 {
	font-family: "FOT-ロダン Pro DB";
	font-size: 2.3vw;
	font-weight: normal;
	color: #727171;
}
@media screen and (min-width: 960px) {
	.car ul li h4 {
		font-size: 3.8rem;
	}
	.car ul li h5 {
		font-size: 2.5rem;
	}
}
/* 車リスト ここまで */

/* プライバシーポリシー ここから　*/
#privacy h3 {
	font-size: 1.5em;
	margin-bottom: 2em;
}
#privacy p {
	font-size: 1.3em;
	margin-bottom: 2em;
}
#privacy ul li {
	font-size: 1.3em;
	margin-bottom: 2em;
	padding-left: 1em;
	text-indent: -1em;
}
#privacy ol {
	counter-reset: count 0;
}
#privacy li:before {
	content: counter(count) ". ";
	counter-increment: count 1;
}
/* プライバシーポリシー ここまで */

/*------------------------------

	メイン部分ここまで

------------------------------*/


/*------------------------------

	フッター部分ここまで

------------------------------*/
footer {
	/* padding-bottom: 20vw; */
	background: #3b3b3b;
	color: #ffffff;
    text-align: center;
	padding-top: 1em;
	padding-bottom: 2em;
	margin-top: 5%;
}





footer a {
	display: block;
	text-decoration: underline;
	color: #fff;
	margin-bottom: 0.5em;
}
/*------------------------------

	フッター部分ここまで

------------------------------*/


/* *************************************************** */
/*------------------------------

	PC用ここから

------------------------------*/
@media screen and (min-width: 960px) {
	
	
}
/*------------------------------

	PC用ここまで

------------------------------*/








