@charset "UTF-8";
/* ============================================
   AWAIRO 共通CSS（下地・ヘッダー・ハンバーガー・フッター・SP追従バー・共通ボタン）
   家風: coding-rules/style_guide.md 準拠
   ・色は直値／クラスは最小限（要素セレクタで辿る）
   ・PCは幅を絶対値、SP（1079px以下）は相対値＋max-width
   ・SPはファイル末尾に max-width:1079px で一括
============================================ */

/* 下地（リセットは destyle.css に任せる。ここは書体と最低限の既定だけ） *******************/
body {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: #4a4a4a;
}
/*Safari対策*/
a {
	font-family: 'Noto Sans JP', sans-serif;
}
/*英数字用*/
.eisu {
	font-family: Arial, sans-serif;
}




/* ヘッダー *******************/
header {
	width: 100%;
	background: #fff;
}
/*内側：ロゴ・右上リンク・ボタン（PC 1280列）*/
header > div:nth-of-type(1) {
	width: 96%;
	max-width: 1290px;
	height: 100px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	position: relative;
}
/*ロゴ＋エリア文言*/
header h1 {
	display: flex;
	align-items: flex-start;
}
header h1 > a.logo {
	width: 241px;
	margin-top: 10px;
	display: block;
	position: relative;
	overflow: hidden;
}
header h1 > a.logo img {
	width: 100%;
	height: auto;
}
/*ロゴhover：若干の沈み込み＋キラッと光る（コバック方式）*/
header h1 > a.logo:hover {
	transform: translate3d(0, 1px, 0);
	-webkit-transform: translate3d(0, 1px, 0);
	-ms-transform: translate3d(0, 1px, 0);
}
header h1 > a.logo::before {
	content: '';
	position: absolute;
	top: 0;
	left: -75%;
	width: 50%;
	height: 100%;
	background-image: linear-gradient(to right, rgb(255 255 255 / .5) 0%, rgb(255 255 255 / .5) 100%);
	transform: skewX(-25deg);
	-webkit-transform: skewX(-25deg);
	-ms-transform: skewX(-25deg);
}
header h1 > a.logo:hover::before {
	animation: shine 0.7s;
}
@keyframes shine {
	100% { left: 125%; }
}
header h1 > p {
	margin-top: 51px;
	font-size: 16px;
	font-weight: 700;
	color: #072469;
	line-height: 24px;
	white-space: nowrap;
}
/*右上：よくあるご質問・店舗情報はこちら*/
header div.menu {
	margin-left: auto;
	display: flex;
	align-items: flex-start;
}
header div.menu > a:nth-of-type(1) {
	margin: 51px 20px 0 0;
	font-size: 16px;
	font-weight: 500;
	color: #072469;
	line-height: 24px;
	position: relative;
}
/*オンマウスでライン表示（文字と同色）*/
header div.menu > a:nth-of-type(1)::before {
	content: '';
	width: 100%;
	height: 1px;
	background: #072469;
	position: absolute;
	left: 0;
	bottom: -1px;
	transform-origin: right top;
	transform: scale(0, 1);
	transition: transform .3s;
}
header div.menu > a:nth-of-type(1):hover::before {
	transform-origin: center top;
	transform: scale(1, 1);
}
/*店舗情報はこちら（白ボタン）*/
header div.menu > a:nth-of-type(2) {
	width: 200px;
	height: 50px;
	margin-top: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid #808080;
	border-radius: 8px;
	font-size: 18px;
	font-weight: 500;
	color: #4a4a4a;
	line-height: 26px;
	filter: drop-shadow(0px 3px 0px #808080);
}
header div.menu > a:nth-of-type(2)::after {
	content: '';
	width: 14px;
	height: 11px;
	margin-left: 4px;
	background-image: url(../newimages/common/sankaku_down.png);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
/*hover：背景を薄く・影消灯・沈み込み（コバックWEB車検予約ボタン方式）*/
header div.menu > a:nth-of-type(2):hover {
	background: #f4f4f4;
	filter: drop-shadow(0px 0px 0px rgb(255 255 255 / 1));
	transform: translate3d(0, 3px, 0);
	-webkit-transform: translate3d(0, 3px, 0);
	-ms-transform: translate3d(0, 3px, 0);
}
/*ハンバーガーボタン（SPのみ）*/
header div.menu_btn {
	display: none;
}
/*ハンバーガーメニュー（SPのみ）：起動時の背景*/
div.menu_cover {
	display: none;
}
/*ハンバーガーメニュー本体（PCは非表示。中身の見た目はここで定義しSPで表示）*/
div.sp_menu {
	display: none;
}
div.sp_menu > ul > li > a::before {
	content: '';
	width: 29px;
	height: 22px;
	margin-right: 8px;
	flex-shrink: 0;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
div.sp_menu > ul > li:nth-of-type(1) > a::before {
	background-image: url(../newimages/common/icon_1.png);
}
div.sp_menu > ul > li:nth-of-type(2) > a::before {
	background-image: url(../newimages/common/icon_2.png);
}
div.sp_menu > ul > li:nth-of-type(3) > a::before {
	background-image: url(../newimages/common/icon_3.png);
}
div.sp_menu > ul > li:nth-of-type(4) > a::before {
	background-image: url(../newimages/common/icon_4.png);
}
div.sp_menu > ul > li:nth-of-type(5) > a::before {
	background-image: url(../newimages/common/icon_5.png);
}
div.sp_menu > ul > li:nth-of-type(6) > a::before {
	background-image: url(../newimages/common/icon_6.png);
}
div.sp_menu > ul > li:nth-of-type(7) > a::before {
	background-image: url(../newimages/common/icon_7.png);
}
/*運営会社*/
div.sp_menu > p {
	margin-top: 30px;
	font-size: 24px;
	font-weight: 500;
	color: #fff;
	line-height: 35px;
	text-align: center;
}
div.sp_menu > p a {
	display: block;
	width: 100%;
	max-width: max-content;
	margin: 0 auto;
}
div.sp_menu > p a span {
	display: inline-block;
	font-weight: 700;
	line-height: 1;
	padding: 2px;
	color: #fef728;
	border-bottom: 1px solid #fef728;
}
/*hover：若干薄く（注釈）*/
div.sp_menu > p a:hover {
	opacity: 0.8;
}
div.sp_menu > p a::after {
	content: '';
	width: 16px;
	height: 16px;
	margin-left: 8px;
	display: inline-block;
	vertical-align: middle;
	background-image: url(../newimages/common/icon_link.png);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
/*グローバルナビ*/
header div.gv_menu {
	width: 100%;
	height: 60px;
	background: #f7f7f7;
}
header div.gv_menu > ul {
	width: 100%;
	max-width: 1290px;
	height: 60px;
	margin: 0 auto;
	padding: 0 10px 0 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header div.gv_menu > ul > li > a {
	display: flex;
	align-items: center;
	font-size: 16px;
	font-weight: 500;
	color: #072469;
	line-height: 24px;
	position: relative;
}
header div.gv_menu > ul > li > a::before {
	content: '';
	height: 22px;
	margin-right: 12px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
header div.gv_menu > ul > li:nth-of-type(1) > a::before {
	width: 16px;
	background-image: url(../newimages/common/icon_global_1.png);
}
header div.gv_menu > ul > li:nth-of-type(2) > a::before {
	width: 19px;
	background-image: url(../newimages/common/icon_global_2.png);
}
header div.gv_menu > ul > li:nth-of-type(3) > a::before {
	width: 22px;
	background-image: url(../newimages/common/icon_global_3.png);
}
header div.gv_menu > ul > li:nth-of-type(4) > a::before {
	width: 29px;
	background-image: url(../newimages/common/icon_global_4.png);
}
header div.gv_menu > ul > li:nth-of-type(5) > a::before {
	width: 25px;
	background-image: url(../newimages/common/icon_global_5.png);
}
/*オンマウスでライン表示（文字部分のみ・文字と同色）*/
header div.gv_menu > ul > li > a::after {
	content: '';
	height: 1px;
	background: #072469;
	position: absolute;
	right: 0;
	bottom: -1px;
	transform-origin: right top;
	transform: scale(0, 1);
	transition: transform .3s;
}
header div.gv_menu > ul > li:nth-of-type(1) > a::after {
	left: 28px;
}
header div.gv_menu > ul > li:nth-of-type(2) > a::after {
	left: 31px;
}
header div.gv_menu > ul > li:nth-of-type(3) > a::after {
	left: 34px;
}
header div.gv_menu > ul > li:nth-of-type(4) > a::after {
	left: 41px;
}
header div.gv_menu > ul > li:nth-of-type(5) > a::after {
	left: 37px;
}
header div.gv_menu > ul > li > a:hover::after {
	transform-origin: center top;
	transform: scale(1, 1);
}




/* フッター *******************/
footer {
	width: 100%;
	text-align: center;
}
/*青地（テクスチャ）部分：ロゴ・リンク一覧・運営会社*/
footer div.ft_menu {
	width: 100%;
	padding: 40px 0;
	background-image: url(../newimages/common/texture_footer_pc.png);
	background-position: center top;
	background-size: cover;
	background-repeat: no-repeat;
}
footer div.ft_menu > a.logo {
	width: 366px;
	margin: 0 auto;
	display: block;
}
footer div.ft_menu > a.logo:hover {
	opacity: 0.8;
}
footer div.ft_menu > a.logo img {
	width: 100%;
	height: auto;
}
/*リンク一覧（PCは2列）*/
footer div.ft_menu > ul {
	width: 604px;
	margin: 32px auto 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
footer div.ft_menu > ul > li {
	width: 272px;
	margin-bottom: 20px;
}
footer div.ft_menu > ul > li:last-of-type {
	margin-bottom: 0;
}
footer div.ft_menu > ul > li > a {
	width: 100%;
	max-width: max-content;
	display: flex;
	align-items: center;
}
footer div.ft_menu > ul > li > a span {
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	text-align: left;
	border-bottom: 1px solid #fff;
}
footer div.ft_menu > ul > li > a:hover {
	opacity: 0.8;
}
footer div.ft_menu > ul > li > a::before {
	content: '';
	width: 29px;
	height: 22px;
	margin-right: 6px;
	flex-shrink: 0;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
footer div.ft_menu > ul > li:nth-of-type(1) > a::before {
	background-image: url(../newimages/common/icon_1.png);
}
footer div.ft_menu > ul > li:nth-of-type(2) > a::before {
	background-image: url(../newimages/common/icon_2.png);
}
footer div.ft_menu > ul > li:nth-of-type(3) > a::before {
	background-image: url(../newimages/common/icon_3.png);
}
footer div.ft_menu > ul > li:nth-of-type(4) > a::before {
	background-image: url(../newimages/common/icon_4.png);
}
footer div.ft_menu > ul > li:nth-of-type(5) > a::before {
	background-image: url(../newimages/common/icon_5.png);
}
footer div.ft_menu > ul > li:nth-of-type(6) > a::before {
	background-image: url(../newimages/common/icon_6.png);
}
footer div.ft_menu > ul > li:nth-of-type(7) > a::before {
	background-image: url(../newimages/common/icon_7.png);
}
/*運営会社*/
footer div.ft_menu > p {
	margin-top: 30px;
	font-size: min(7vw,24px);
	font-weight: 500;
	color: #fff;
	line-height: 35px;
	text-align: center;
}
footer div.ft_menu > p a {
	display: block;
	width: 100%;
	max-width: max-content;
	margin: 0 auto;
}
footer div.ft_menu > p a span {
	display: inline-block;
	font-weight: 700;
	line-height: 1;
	padding: 2px;
	color: #fef728;
	border-bottom: 1px solid #fef728;
}
/*hover：若干薄く（注釈）*/
footer div.ft_menu > p a:hover {
	opacity: 0.8;
}
footer div.ft_menu > p a::after {
	content: '';
	width: 16px;
	height: 16px;
	margin-left: 8px;
	display: inline-block;
	vertical-align: middle;
	background-image: url(../newimages/common/icon_link.png);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
/*プライバシーマーク・コピーライト（白地）*/
footer div.privacy {
	padding: 60px 0 10px;
}
footer div.privacy > a img {
	display: block;
	width: 120px;
	margin: 0 auto;
}
footer div.privacy > img {
	width: 100%;
	height: auto;
}
footer div.privacy > p {
	margin-top: 20px;
	font-size: 12px;
	font-weight: 500;
	color: #2258c3;
	line-height: 17px;
}




/* SP追従バー（SPのみ） *******************/
div.tsuiju {
	display: none;
}




/* PC/SP 表示切替ユーティリティ */
.ipc {
	display: inline;
}
.isp {
	display: none !important;
}
.bpc {
	display: block;
}
.bsp {
	display: none !important;
}
/* 亜種：768pxで切り替える出し分け（ファーストビュー用） */
.ipc2 {
	display: inline;
}
.isp2 {
	display: none !important;
}
.bpc2 {
	display: block;
}
.bsp2 {
	display: none !important;
}
/*■■■■■■■■■■■■■■ sp ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
@media screen and (max-width: 1079px) {
*{}
/*■■■■■■■■■■■■■■ sp ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/

/* 下地 *******************/
body {
	padding-bottom: 74px;/*SP追従バー分の逃げ*/
}
.ipc {
	display: none !important;
}
.isp {
	display: inline !important;
}
.bpc {
	display: none !important;
}
.bsp {
	display: block !important;
}




/* ヘッダー *******************/
header > div:nth-of-type(1) {
	height: auto;
	padding: 10px 0;
}
header h1 > a.logo {
	width: 48%;
	max-width: 180px;
	margin-top: 0;
}
header h1 > p {
	margin-top: 19px;
	font-size: min(3.2vw, 12px);
	line-height: 17px;
}
header div.menu {
	display: none;
}
/*ハンバーガーボタン*/
header div.menu_btn {
	width: 46px;
	height: 46px;
	display: block;
	position: relative;
	cursor: pointer;
}
header div.menu_btn img {
	width: 100%;
	height: auto;
}
/* ハンバーガーメニュー *******************/
/*起動時の背景*/
div.menu_cover {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 98;
	width: 100%;
	height: 100%;
	background: rgb(0 0 0 / .4);
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
	cursor: pointer;
}
div.menu_cover.is-active {
	opacity: 1;
	visibility: visible;
}
/*メニュー本体：右からスライドイン（マルヤマアップル方式）*/
div.sp_menu {
	width: 100%;
	max-width: 520px;
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 99;
	padding: 10px;
	background: #5094d6;
	transform: translateX(100%);
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	transition: transform .3s linear;
}
div.sp_menu.is-active {
	transform: translateX(0);
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
}
/*閉じるボタン（上下2箇所）*/
div.sp_menu > div.close_btn {
	width: 100%;
	height: 30px;
	border: 1px solid #fff;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	line-height: 28px;
	text-align: center;
	position: relative;
	cursor: pointer;
}
div.sp_menu > div.close_btn::after {
	content: '';
	width: 14px;
	height: 14px;
	position: absolute;
	top: 50%;
	right: 16px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	background-image: url(../newimages/common/close.png);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
div.sp_menu > div.close_btn:last-of-type {
	margin-top: 20px;
}
/*メニュー一覧*/
div.sp_menu > ul {
	width: 80%;
	margin: 20px auto 0;
}
div.sp_menu > ul > li {
	margin-bottom: 15px;
}
div.sp_menu > ul > li:last-of-type {
	margin-bottom: 0;
}
div.sp_menu > ul > li > a {
	display: flex;
	align-items: center;
	line-height: 24px;
}
div.sp_menu > ul > li > a span {
	font-size: min(4.5vw,16px);
	font-weight: 500;
	color: #fff;
	text-align: left;
	border-bottom: 1px solid #fff;
}
/*運営会社*/
div.sp_menu > p {
	font-size: min(7vw,24px);
	line-height: 1.4;
}
/*グローバルナビ*/
header div.gv_menu {
	display: none;
}




/* フッター *******************/
footer div.ft_menu {
	padding: 40px 0 30px;
	background-image: url(../newimages/common/texture_footer_sp.png);
}
footer div.ft_menu > a.logo {
	width: 59%;
	max-width: 366px;
}
footer div.ft_menu > ul > li > a::before {
	margin-right: 8px;
}
footer div.privacy {
	padding: 40px 0 10px;
}
footer div.privacy > a img {
	width: 80px;
}
footer div.privacy > p {
	font-size: 9px;
	line-height: 13px;
}




/* SP追従バー *******************/
div.tsuiju {
	width: 100%;
	display: flex;
	justify-content: center;/*ボタンが上限幅で止まっても中央に*/
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 97;
	padding: 10px 0;
	background-image: url(../newimages/common/texture_tsuiju.png);
	background-position: center top;
	background-size: cover;
	background-repeat: no-repeat;
	opacity: 0;
	visibility: hidden;
	transition: 0.4s;/*ふわっと出す（ポケ4WD sp_float_cv と同じ）*/
}
/*純水洗車のエリアまでスクロールしたら表示（JSで .is-active）*/
div.tsuiju.is-active {
	opacity: 1;
	visibility: visible;
}
div.tsuiju > a {
	display: block;
}
div.tsuiju > a img {
	width: 100%;
	height: auto;
}
/*洗車メニュー・料金（橙）*/
div.tsuiju > a:nth-of-type(1) {
	width: 52%;
	max-width: 195px;
	filter: drop-shadow(0px 3px 0px #c77f36);
}
/*店舗情報（白）*/
div.tsuiju > a:nth-of-type(2) {
	width: 34.7%;
	max-width: 130px;
	margin-left: 10px;
	filter: drop-shadow(0px 3px 0px #808080);
}
div.tsuiju > a:hover {
	filter: drop-shadow(0px 0px 0px rgb(255 255 255 / 1)) brightness(1.1);
	transform: translate3d(0, 3px, 0);
	-webkit-transform: translate3d(0, 3px, 0);
	-ms-transform: translate3d(0, 3px, 0);
}




/*■■■■■■■■■■■■■■ sp ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
}
/*■■■■■■■■■■■■■■ sp ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/



/*■■■■■■■■■■■■■■ 768px以下（第二のブレイクポイント） ■■■■■■■■■■■■■■■■■■■*/
@media screen and (max-width: 768px) {
*{}
/*■■■■■■■■■■■■■■ sp ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
	
/* フッター：リンク一覧 *******************/
footer div.ft_menu > ul {
	width: 90%;
	max-width: 247px;
	margin: 31px auto 0;
	display: block;
}
footer div.ft_menu > ul > li {
	width: 100%;
	margin-bottom: 15px;
}
footer div.ft_menu > ul > li > a span {
	font-size: min(5.5vw,16px);
}
.ipc2 {
	display: none !important;
}
.isp2 {
	display: inline !important;
}
.bpc2 {
	display: none !important;
}
.bsp2 {
	display: block !important;
}

/*■■■■■■■■■■■■■■ sp ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
}
/*■■■■■■■■■■■■■■ sp ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
