/*
車検メニュー選択ページで共用するCSS
・全店舗ページ　/privacypolicy/（店舗は予約サイトの次の画面で選ぶ）
・店舗別ページ　/privacypolicy_店舗名/（紫竹山・女池インター・赤道・三条・燕・長岡）
privacypolicy_common.css（ヘッダー・プライバシーマーク等）の後ろで読み込む
旧 select_menu.css の本文部分（見出し・案内・メニューカード）を取り込み済み
*/




/* 車検メニューのご選択 *******************/
/*セクション（下の余白）*/
section {
	padding-bottom: 60px;
}
/*見出し*/
section h2 {
	position: relative;
	width: 980px;
	padding: 18px 0;
	margin: 30px auto;
	background-color: #666666;
	border: 1px solid #666666;
	border-radius: 10px;
	font-size: 24px;
	font-weight: 600;
	color: #FFFFFF;
	text-align: center;
}

/*ご予約店舗*/
p.shop_name {
	margin: 25px 0 20px;
	font-size: 24px;
	font-weight: 500;
	text-align: center;
}
p.shop_name span {
	display: inline-block;
	padding: 4px 12px;
	margin-right: 10px;
	background-color: #EC2D2C;
	border-radius: 4px;
	font-size: 16px;
	color: #fff;
	vertical-align: middle;
}

/*どちらも「検査項目・料金」は同じです*/
section div h3 {
	position: relative;
	width: 950px;
	padding: 20px 0 0;
	margin: 0 auto 30px;
	background-color: #FFF6EA;
	border: 1px solid #FED3A4;
	border-radius: 6px;
	font-size: 18px;
	font-weight: 600;
	color: #000000;
	text-align: center;
}
/*「i」アイコン*/
section div h3::before {
	content: "\f05a";
	display: inline-block;
	margin-right: 3px;
	font-family: "Font Awesome 5 Free";
	font-size: 18px;
	font-weight: 700;
}
section div h3 p {
	margin: 10px 0 20px;
	font-size: 14px;
	font-weight: 500;
}

/*最短夕方のお返し・店内でお待ちの方（メニューカード。カード全体で選ぶ）*/
div.custody ul {
	display: flex;
	justify-content: space-between;
	width: 836px;
	margin: 0 auto;
}
div.custody li {
	width: 382px;
	background-color: #FFFFFF;
	border: 1px solid #D2D2D2;
	border-radius: 6px;
	cursor: pointer;
	transition: box-shadow .15s, border-color .15s;
}
/*メニューカード hover*/
div.custody li:hover {
	border-color: #E73420;
}
/*選択中のカード*/
div.custody li.is-selected {
	border-color: #E73420;
	box-shadow: 0 0 0 3px rgb(231 52 32 / .2);
}
/*カード上部の帯*/
div.custody li > div {
	padding: 18px 0;
	background-color: #FDEAE7;
	border-radius: 6px 6px 0 0;
	font-size: 18px;
	font-weight: 600;
	color: #E73421;
	text-align: center;
}
/*代車無料・代車なしのラベル*/
div.custody li h1 {
	display: block;
	position: relative;
	width: 72px;
	padding: 2px 0;
	margin: 10px auto 0;
	background-color: #FFFFFF;
	border: 1px solid #FBD7D1;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 500;
	color: #E73421;
	text-align: center;
}
/*代車なしは灰色*/
div.custody li:nth-of-type(2) h1 {
	color: #666666;
}
/*アイコン画像*/
div.custody li img {
	display: block;
	width: 130px;
	height: auto;
	margin: 20px auto;
}
/*説明文*/
div.custody li h4 {
	margin: 0 0 17px;
	font-size: 13px;
	font-weight: 400;
	color: #000000;
	text-align: center;
}
/*注意書き*/
div.custody li p {
	margin: 0 0 17px;
	font-size: 12px;
	font-weight: 400;
	color: #333333;
	text-align: center;
}
/*カード内のボタン（選択状態の表示用。クリックはカード全体で拾う）*/
/*※旧 select_menu.css にあった矢印画像（a::after）は、このページでは使わないため取り込んでいない*/
div.custody li a {
	display: block;
	position: relative;
	width: 191px;
	padding: 10px 0;
	margin: 0 auto 15px;
	background-color: #FFFFFF;
	border: 1px solid #E73420;
	border-radius: 20px;
	font-size: 18px;
	font-weight: 600;
	color: #E73420;
	text-align: center;
	filter: drop-shadow(0px 3px 6px #00000029);
	pointer-events: none;
	cursor: pointer;
}
/*カード内のボタンの丸印*/
div.custody li a::before {
	content: "\f111";
	margin-right: 6px;
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}
/*選択中のボタン*/
div.custody li.is-selected a {
	background-color: #E73420;
	color: #FFFFFF;
}
/*選択中のボタンのチェック印*/
div.custody li.is-selected a::before {
	content: "\f058";
	font-weight: 900;
}

/*個人情報の取り扱いへの同意*/
div.owlet-rules-agree {
	margin: 20px auto 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 22px;
	text-align: center;
}
/*チェックボックス（既定の見た目を消して描き直す）*/
div.owlet-rules-agree input[type="checkbox"] {
	position: relative;
	padding: 0 0 0 30px;/*チェックボックス用の余白*/
	margin: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	vertical-align: middle;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
div.owlet-rules-agree input[type="checkbox"]::before,
div.owlet-rules-agree input[type="checkbox"]::after {
	content: "";
	display: block;
	position: absolute;
}
/*チェックボックスの枠*/
div.owlet-rules-agree input[type="checkbox"]::before {
	top: 50%;
	left: 5px;
	width: 20px;
	height: 20px;
	background-color: #fff;
	border: 1px solid #666464;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
/*チェックの印（チェック前は非表示）*/
div.owlet-rules-agree input[type="checkbox"]::after {
	top: -8px;
	left: 7px;
	width: 17px;
	height: 12px;
	border-bottom: 4px solid #000;
	border-left: 4px solid #000;
	opacity: 0;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
div.owlet-rules-agree input[type="checkbox"]:checked::after {
	opacity: 1;
}
/*本文ページへのリンク*/
div.owlet-rules-agree a {
	color: #0B57D0;
	text-decoration: underline;
}
/*別タブで開くアイコン*/
div.owlet-rules-agree a::after {
	content: "\f35d";
	display: inline-block;
	margin-left: 4px;
	font-family: "Font Awesome 5 Free";
	font-size: 13px;
	font-weight: 900;
	text-decoration: none;
	text-indent: 0;/*SPのぶら下げ（-2em）を受け継ぐとアイコンだけ左へずれて文字に重なるため打ち消す*/
}
div.owlet-rules-agree label {
	cursor: pointer;
}

/*予約カレンダーへ進むボタン（押せない状態）*/
a.go_btn {
	display: block;
	width: 600px;
	padding: 25px 0;
	margin: 30px auto 0;
	background-color: #C9C9C9;
	border-radius: 8px;
	font-size: 30px;
	font-weight: 500;
	color: #FFFFFF;
	text-align: center;
	filter: drop-shadow(0px 6px 0px #9E9E9E);
	cursor: not-allowed;
}
/*予約カレンダーへ進むボタン（押せる状態）*/
a.go_btn.is-active {
	background-color: #EC2D2C;
	color: #FFF346;
	filter: drop-shadow(0px 6px 0px #A40F19);
	cursor: pointer;
}
/*押せる状態の hover（沈み込み。本番の旧 /newcss/privacypolicy.css の予約ボタンと同じ動き）*/
a.go_btn.is-active:hover {
	opacity: 0.9;
	filter: drop-shadow(0px 0px 0px #FFFFFF);
	-webkit-transform: translateY(6px);
	-ms-transform: translateY(6px);
	transform: translateY(6px);
}
/*ボタン下の案内文（押せる状態になったら隠す。場所は残して、下のプライバシーマークが動かないようにする）*/
p.go_hint {
	margin-top: 15px;
	font-size: 16px;
	font-weight: 500;
	color: #E73421;
	text-align: center;
}
p.go_hint.is-hidden {
	visibility: hidden;
}
/*店舗選択の注意書き（全店舗ページのみ）*/
p.next_note {
	margin-top: 15px;
	font-size: 15px;
	font-weight: 400;
	color: #666;
	text-align: center;
}







/*■■■■■■■■■■■■■■ sp ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
@media screen and (max-width: 1079px) {
/*■■■■■■■■■■■■■■ sp ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/

/* 車検メニューのご選択 *******************/
/*セクション（下の余白）*/
section {
	padding-bottom: 40px;
}
/*見出し*/
section h2 {
	width: 100%;
	padding: 10px 0;
	margin: 0 auto;
	border-radius: 0;
	font-size: 16px;
}

/*ご予約店舗*/
p.shop_name {
	margin: 20px 0 15px;
	font-size: 18px;
}
p.shop_name span {
	padding: 3px 8px;
	margin-right: 6px;
	font-size: 13px;
}

/*どちらも「検査項目・料金」は同じです*/
section div h3 {
	width: 90%;
	padding: 15px 0 0;
	margin: 20px auto;
	font-size: 14px;
}
/*「i」アイコン*/
section div h3::before {
	margin-right: 5px;
	font-size: 14px;
}
section div h3 p {
	margin: 10px 0 15px;
	font-size: 13px;
}

/*最短夕方のお返し・店内でお待ちの方（メニューカード）*/
div.custody ul {
	width: 90%;
}
div.custody li {
	width: 48.5%;
}
/*カード上部の帯*/
div.custody li > div {
	padding: 10px 0;
	font-size: 14px;
}
/*代車無料・代車なしのラベル*/
div.custody li h1 {
	width: 64px;
	padding: 1px 0;
	font-size: 12px;
}
/*アイコン画像*/
div.custody li img {
	width: 92px;
	margin: 7px auto;
}
/*説明文*/
div.custody li h4 {
	width: 85%;
	height: 51px;
	margin: 0 auto 3px;
	font-size: min(4vw, 13px);
	line-height: 1.3;
	text-align: left;
}
/*注意書き*/
div.custody li p {
	width: 85%;
	height: 47px;
	margin: 0 auto 10px;
	line-height: 1.3;
	text-align: left;
}
/*カード内のボタン*/
div.custody li a {
	width: 138px;
	padding: 10px 0;
	margin: 0 auto 10px;
	font-size: 14px;
}

/*個人情報の取り扱いへの同意（折り返したときのぶら下げは本番の旧 /newcss/privacypolicy.css の指定を踏襲）*/
div.owlet-rules-agree {
	width: 90%;
	padding-left: 2em;
	text-indent: -2em;
}

/*予約カレンダーへ進むボタン*/
a.go_btn {
	width: 90%;
	max-width: 600px;
	padding: 18px 0;
	margin-top: 20px;
	font-size: 20px;
}
/*ボタン下の案内文*/
p.go_hint {
	font-size: 13px;
}
/*店舗選択の注意書き（全店舗ページのみ）*/
p.next_note {
	margin-top: 10px;
	font-size: 12px;
}

/*■■■■■■■■■■■■■■ sp ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
}
/*■■■■■■■■■■■■■■ sp ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
