:root {
	/* color palette */
	/* primary */
	--dark-grey: #3C3C3B;
	--black: #000;
	--cod-grey: #141414;
	--ship-grey: #444;
	--grey-Haze: #F9F9F9;
	--white: #FFF;

	/* secondary */
	--phosphorus-blue: #00B2A9;

	/* alert */
	--alert-red: #D2000A;

	/* accessibility */
	--focus-blue: 74, 144, 226;

	/* strokes */
	--light: #F9F9F9;
	--medium: #D8D8D8;
	--dark: #8D8D8D;
	--darker: #555;


	/* color definition */
  --alert-color: var(--alert-red);
  --focus-color: rgba(var(--focus-blue), .6);
  --primary-color: var(--dark-grey);


	/* size */
	--logo_width: 110px;
	--X_space: calc(var(--logo_width) / 4);
}


/* reset */
h1, h2, h3, h4, h5, h6, p{
	font-weight: normal;
	margin: 0;
}

ul, ol, dl, li, dt, dd{
	list-style: none;
	margin: 0;
	padding: 0;
}

*:focus{
	outline: none;
}

/* module */
br.sp_only{
	display: none;
}

.required {
	color: red;
}

.btn {
	cursor: pointer;
}

.capsule {
	border-radius: 10000px;
}
.left_half_capsule {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.right_half_capsule {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.color_red {
	color: #F00;
}
.color_black {
	color: #000;
}
.color_white {
	color: #FFF;
}

.columnwise_flex {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.display_block {
	display: block;
}
.display_inline {
	display: inline;
}
.display_inline_block {
	display: inline-block;
}
.display_table {
	display: table;
}
.display_table_cap {
	display: table-caption;
}
.display_table_row {
	display: table-row;
}
.display_table_cell {
	display: table-cell;
}

.domain::before {
	content: "@";
}

.fixed_inner {
	max-width: 1000px;
	margin: auto;
	box-sizing: border-box;
}

.flex_container {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
}

.font_w_bold {
	font-weight: bold;
}
.font_w_normal {
	font-weight: normal;
}

.hover_action_opa:hover {
	opacity: .5;
}

.indent {
	padding-left: 1em;
	text-indent: -1em;
}

.justify_sb {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.line_height_cancel_container {
	border-top: 1px solid rgba(0, 0, 0, 0);
	border-bottom: 1px solid rgba(0, 0, 0, 0);
}

.rowwise_flex {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
}

.strict_line_break {
	word-break: keep-all;
	-webkit-line-break: strict;
	line-break: strict;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.position_abs {
	position: absolute;
}
.position_rel {
	position: relative;
}

.text_align_center {
	text-align: center;
}
.text_align_left {
	text-align: left;
}
.text_align_right {
	text-align: right;
}
.text_align_justify {
	text-align: justify;
}

.wrapped_flex {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.v_align_top {
	vertical-align: top;
}


.full_height {
	height: 100%;
}
.half_height {
	height: 50%;
}

.full_width {
	width: 100%;
}
.half_width {
	width: 50%;
}


/* for Google Remarketing Tag */
iframe[name='google_conversion_frame']{
	height: 0 !important;
	width: 0 !important;
	line-height: 0 !important;
	font-size: 0 !important;
	margin-top: -13px;
	float: left;
}

/* body */
body{
	background: #FFF;
	font-family: Meiryo, "Hiragino Kaku Gothic ProN", sans-serif;
}

#contents{
	background: #fff;
	margin: 0 auto;
	max-width: 935px;
	padding-top: 10px;
}

/* btn */
.btn_box a,
.btn_box input{
	width: 140px;
	height: 30px;
	line-height: 30px;
	font-size: 0.7em;
	color: #fff;
	border: none;
	background: #9e9fa3;
	cursor: pointer;
	border-radius: 0;

	-webkit-transition: all 0.7s;
	-moz-transition: all 0.7s;
	-ms-transition: all 0.7s;
	-o-transition: all 0.7s;
	transition: all 0.7s;
}

.btn_box a{
	display: block;
	text-decoration: none;
}

.btn_box a:hover,
.btn_box input:hover{
	opacity: 0.7;
	filter: alpha(opacity=70);
}
.btn_box .btn_blk{
	color: #fff;
	background: #414143;
}

.btn_box .btn_white{
	color: #000;
	background: #fff;
}

/* title */
#lr_logo{
	width: 92%;
	padding: 24px 0;
	margin: 0 auto;
	background: #fff;
}

.img_container {
	font-size: 0;
}

#lr_logo.img_container {
	align-items: center;
	display: flex;
	padding: 0;
}

#lr_logo.img_container:has(.header_logo_img._4brand),
#lr_logo.img_container:has(.header_logo_img._3brand) {
	justify-content: center;
}

.header_logo_img {
	margin: var(--X_space);
	width: var(--logo_width);
}
.header_logo_img._3brand {
	margin: 5px 0;
	width: calc(var(--logo_width) * 5.25);
}
.header_logo_img._4brand {
	margin: 5px 0;
	width: calc(var(--logo_width) * 7);
}


#lr_kv{
	width: 92%;
	padding: 0;
	margin: 0 auto;
	background: #fff;
}
#lr_kv img{
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

#header{
	width: 92%;
	height: 195px;
	margin: 0 auto;
	overflow: hidden;
	background: #e9e9eb;
}
.kmi#header{
	height: 100px;
	background: #393939;
}

#header h1{
	color: #414143;
	font-size: 24px;
	letter-spacing: 0.3em;
	line-height: 195px;
	text-align: center;
}
.kmi#header h1{
	line-height: 100px;
}

#header h1.letter{
	font-size: 1.3em;
}
#header h1.smaller{
	font-size: 1.1em;
}
#header h1.smaller_line2{
	padding-top: 75px;
	font-size: 1.3em;
	line-height: 1.3em;
}
#header h1.smaller_line2 span{
	font-size: 0.6em;
}
#header h1.smaller_line3{
	padding-top: 65px;
	font-size: 1.2em;
	line-height: 1.2em;
}
#header h1.smaller_line3 span{
	font-size: 0.7em;
	display: block;
	line-height: 1.5em;
	margin-top: 15px;
}

#header h1.smaller2{
	padding-top: 80px;
	font-size: 1.1em;
	line-height: 1.3em;
}

#header h1.no_space{
	letter-spacing: 0.1em;
}

/* agreement */
#agreement{
	padding: 4% 4% 3%;
	position: relative;
}

#agreement p{
	font-size: 0.75em;
	line-height: 1.8em;
	margin-bottom: 2%;
}

#agreement p.kmi_ttl {
	font-size: 0.85em;
	text-align: center;
	color: #5b5b5b;
	line-height: 2em;
	margin-top: -10px;
}

#agreement p.notice{
/*
	color: #666;
	margin: 2%;
	text-align: center;
*/
	color: #666;
	max-width: 570px;
	margin: 2% auto;
	text-align: left;
	line-height: 1.5em;
	padding-left: 12px;
}

#agreement p.notice.no_mb{
	margin: 2% auto 0;
}

#agreement p.notice span{
	margin-left: -12px;
}


#agreement #policy{
	background: #fff;
	padding: 3% 1% 1% 3%;
	height: 410px;
	overflow-y: scroll;
	border: 1px solid #9e9fa3;
}

#agreement #policy p{
	color: #666;
}

#agreement #policy p.ttl{
	font-weight: bold;
}
#agreement #policy p.ttl.with_bt{
	border-top: 3px solid #ccc;
	padding-top: 2%;
}

#agreement #notes{
	margin-top: 20px;
	background: #fff;
	padding: 3% 3% 1%;
	height: 120px;
	overflow: auto;
}

#agreement #notes p{
	color: #666;
	padding-left: 12px;
}

#agreement #notes p.ttl{
	font-weight: bold;
}

#agreement #notes p span{
	margin-left: -12px;
}


#agreement .btn_center{
	width: 410px;
	margin: 0 auto;
	overflow: hidden;
}

#agreement .btn_center .btn_box{
	width: 50%;
	float: left;
	text-align: center;
}

#agreement .terms{
	text-align: center;
	margin-top: 15px;
}

#agreement .terms a{
	font-size: 1.2em;
	color: #000;
}

#agreement .terms label{
	font-size: 1.2em;
	line-height: 2em;
}

#agreement .terms label input{
	vertical-align: middle;
	margin-right: 5px;
}

#agreement .terms_notice{
	text-align: center;
	color: red;
	margin-bottom: 5px;
	visibility: hidden;
}

.btn_box .btn_white.na{
	opacity: 0.5;
	filter: alpha(opacity=50);
}


/* catalog */
#agreement #catalog_dl{
	margin-bottom: 2%;
}
#agreement #catalog_dl .btn_box{
	width: 100%;
}
#agreement #catalog_dl .btn_box a{
	width: 180px;
	margin: 0 auto;
}


/* form */
.hidden_form{
	display: none;
}

#form_main{
	display: none;
	padding: 2% 0 0;
}

#form_main.thanks,
#form_main.confirm,
#form_main.correction{
	display: block;
}

#form_main form{
	margin: 0;
}

#form_main .form_contents{
	margin-bottom: 7%;
	padding: 0 4%;
}

#form_main .form_contents.with_arrow{
	margin-bottom: 0;
	padding-bottom: 7%;
	position: relative;
}

#form_main .form_contents h2{
	font-size: 1.1em;
	font-weight: bold;
	line-height: 1.5em;
	margin-bottom: 3%;
}

#form_main .form_contents h2 span{
	margin-right: 10px;
}

#form_main .form_contents #vehicle_type{
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	height: auto;
	overflow: hidden;
}

#form_main .form_contents #vehicle_type li{
	float: left;
	margin-bottom: 3%;
	width: 33%;
}
#form_main .form_contents #vehicle_type li:nth-of-type(3n+1){
	clear: both;
}

#form_main.confirm .form_contents #vehicle_type li{
	width: 100%;
}

#form_main .form_contents #vehicle_type li p{
	padding: 3% 0 5%;
	text-align: center;
}
#form_main.confirm .form_contents #vehicle_type li p{
	padding: 3% 0 1%;
	text-align: left;
}
#form_main .form_contents #vehicle_type li p img{
	width: 90%;
	max-width: 256px;
	height: auto;
}
#form_main.confirm .form_contents #vehicle_type li p img{
	width: auto;
}

#form_main .form_contents #vehicle_type li input[type=radio]{
	width: 15px;
	height: 15px;
	margin: 0 6px 0 6%;
}

#form_main .form_contents #vehicle_type li span{
	font-size: 0.75em;
	line-height: 15px;
	font-weight: bold;
	vertical-align: top;
}

.form_contents .tbl_box{
	width: 100%;
}

.form_contents dl{
	overflow: hidden;
}

.form_contents dt,
.form_contents dd{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 2px 5px;
	font-size: 0.8em;
	line-height: 1.4em;
	text-align: left;
	float: left;
}

.form_contents dt{
	font-weight: bold;
	width: 100%;
	padding-top: 15px;
	vertical-align: top;
	clear: both;
}

.form_contents dt.ttl_small{
	font-size: 0.77em;
}

.form_contents dt span{
	color: #ff0000;
	font-size: 0.85em;
	margin-left: 4px;
}

.form_contents dd{
	width: 65%;
}
.form_contents dd.radio_long{
	width: 95%;
}

.form_contents dd .msg_line{
	font-size: 0.80em;
	color: #333;
	padding-bottom: 5px;
}

.form_contents dd .input_block{
	float: left;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 7px 2px;
}

.confirm .form_contents dd .input_block{
	line-height: 34px;
}

.form_contents dd .input_block.ttl{
	font-weight: bold;
	padding: 15px 2px;
}

.form_contents dd .input_block .input_contents{
	width: 100%;
	padding: 0 11px;
	height: 34px;
	line-height: 34px;
	border: 1px solid #dcdcdc;
	float: left;
	border-radius: 3px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.form_contents dd label .input_contents.other{
	width: 200px;
	padding: 0 11px;
	height: 34px;
	line-height: 34px;
	margin: -10px 0 0 10px;
	border: 1px solid #dcdcdc;
	border-radius: 3px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}


.form_contents dd .input_block input[type="text"].input_contents{
	-webkit-appearance: none;
}

.form_contents dd .input_block.with_msg_sl .input_contents,
.form_contents dd .input_block.with_msg_sr .input_contents{
	width: 72%; /* for IE8 & Android4.3 */
	width: -webkit-calc(100% - 25px);
	width: calc(100% - 25px);
}

.form_contents dd .input_block.with_msg_ml .input_contents,
.form_contents dd .input_block.with_msg_mr .input_contents{
	width: 70%; /* for IE8 & Android4.3 */
	width: -webkit-calc(100% - 45px);
	width: calc(100% - 45px);
}

.form_contents dd .input_block.with_msg_ll .input_contents,
.form_contents dd .input_block.with_msg_lr .input_contents{
	width: 55%; /* for IE8 & Android4.3 */
	width: -webkit-calc(100% - 70px);
	width: calc(100% - 70px);
}


.form_contents dd .input_block select.input_contents{
	padding-right: 0;
}

.form_contents dd .input_block textarea.input_contents{
	height: 178px;
	resize: none;
	padding: 1% 11px;
	line-height: 1.5em;
}


.form_contents dd .input_block.w25{
	width: 25%;
}
.form_contents dd .input_block.w30{
	width: 30%;
}
.form_contents dd .input_block.w35{
	width: 35%;
}
.form_contents dd .input_block.w40{
	width: 40%;
}
.form_contents dd .input_block.w45{
	width: 45%;
}
.form_contents dd .input_block.w50{
	width: 50%;
}
.form_contents dd .input_block.w65{
	width: 65%;
}
.form_contents dd .input_block.w70{
	width: 70%;
}
.form_contents dd .input_block.w100{
	width: 100%;
}

/*
.form_contents dd .input_block.with_msg_sl{
	padding-left: 5%;
}
.form_contents dd .input_block.with_msg_sr{
	padding-right: 5%;
}
.form_contents dd .input_block.with_msg_ml{
	padding-left: 10%;
}
.form_contents dd .input_block.with_msg_mr{
	padding-right: 10%;
}
*/

.form_contents dd .input_block span{
	display: block;
	font-size: 0.85em;
	line-height: 34px;
	color: #333;
	float: left;
	text-align: center;
}

.form_contents dd .input_block.with_msg_sl span{
	width: 20px;
	padding-right: 5px;
}
.form_contents dd .input_block.with_msg_ml span{
	width: 40px;
	padding-left: 5px;
}
.form_contents dd .input_block.with_msg_sr span{
	width: 20px;
	padding-left: 5px;
}
.form_contents dd .input_block.with_msg_mr span{
	width: 40px;
	padding-right: 5px;
}

.btn_box.input_block input{
	width: 85%;
	height: 32px;
	font-size: 0.9em;
	margin: 1px 0 1px 7%;
}


.form_contents dd label{
	margin-right: 7%;
	display: block;
	float: left;
	padding: 16px 0;
}

.form_contents dd.radio_line2 label{
	margin-right: 5%;
	padding: 8px 0;
	font-size: 0.9em;
}
.form_contents dd.radio_long label{
	padding: 8px 0 4px 23px;
}
.form_contents dd.radio_long label input[type=radio],
.form_contents dd.radio_long label input[type=checkbox]{
	margin-left: -23px;
}

.form_contents dd.radio_long.jlr_models label{
	margin: 0;
	padding: 0;
	float: none;
	display: inline;
}
#form_main .form_contents .jlr_models #vehicle_type li{
	text-align: center;
}
#form_main .form_contents .jlr_models #vehicle_type li p img{
	max-width: 190px;
}
#form_main .form_contents .jlr_models #vehicle_type li input[type=radio]{
	margin: 0 12px 0 0;
}
#form_main .form_contents .jlr_models #vehicle_type li span{
	font-size: 1em;
}


.form_contents dd label input[type=radio],
.form_contents dd label input[type=checkbox]{
	width: 15px;
	height: 15px;
	margin-right: 8px;
}

.form_contents dd label span{
	vertical-align: top;
}

.form_contents>span.err_msg,
.form_contents dd>span.err_msg,
.form_contents dd .input_block span.err_msg{
	width: auto;
	font-size: 0.7em;
	line-height: 1em;
	color: red;
	padding: 4px 0 3px;
	margin-top: 2px;
	text-align: left;
	display: block;
	clear: both;
}

.form_contents .info_line dt{
	padding: 0;
	display: none;
}
.form_contents .info_line dd{
	font-size: 0.7em;
}

.form_contents .ttl_line dt span{
	color: #000;
}


/* zip */
#addr_box{
	display: none;
	clear: both;
}

#addr_box input{
	width: 60px;
	margin-left: 10px;
	padding: 0;
	border: none;
	background: #000;
	color: #fff;
	display: block;
	float: left;
	font-size: 0.8em;
	line-height: 34px;
	text-align: center;
	cursor: pointer;
	border-radius: 0;
	-webkit-transition: all 0.7s;
	-moz-transition: all 0.7s;
	-ms-transition: all 0.7s;
	-o-transition: all 0.7s;
	transition: all 0.7s;
}

#addr_box input:hover{
	opacity: 0.7;
	filter: alpha(opacity=70);
}

/* retailer select */
#retailer_box{
	display: none;
	clear: both;
	width: 100%;
	overflow: hidden;
}

#retailer_box .area_list{
	width: 30%;
	padding-right: 2%;
}
#retailer_box .area_list span{
	color: #666;
	padding-left: 10%;
}

#retailer_box .name_list{
	display: none;
	width: 70%;
	padding-right: 3%;
}

#retailer_box .name_list ul{
	border: 1px solid #fff;
	padding: 3%;
	background: #fff;
}

#retailer_box .name_list ul li{
	padding: 2% 0 2% 3%;
	overflow: hidden;
}

#retailer_box .name_list ul li:nth-of-type(2n+1){
	background: #f2f2f2;
}

#retailer_box .name_list ul li span{
/*	width: 33%;*/
	color: #666;
	font-size: 1em;
	line-height: 1.5em;
	text-align: left;
	padding-right: 1%;
}
#retailer_box .name_list ul li span.retailer_id{
	display: none;
}

#retailer_box .name_list ul li p{
	width: 50%;
	min-width: 145px;
	overflow: hidden;
	float: right;
	margin-right: 2%;
}

#retailer_box .name_list ul li p a,
#retailer_box .name_list ul li p input{
	width: 34%;
	border: none;
	padding: 0;
	background: #000;
	color: #fff;
	display: block;
	float: left;
	font-size: 0.8em;
	line-height: 21px;
	text-align: center;
/*	padding: 0 8%;	*/
	cursor: pointer;
	border-radius: 0;
	-webkit-transition: all 0.7s;
	-moz-transition: all 0.7s;
	-ms-transition: all 0.7s;
	-o-transition: all 0.7s;
	transition: all 0.7s;
}

#retailer_box .name_list ul li p a{
	width: 63%;
	float: right;

/*	padding: 0 5%;	*/
	text-decoration: none;
}

#retailer_box .name_list ul li p a:hover,
#retailer_box .name_list ul li p input:hover{
	opacity: 0.7;
	filter: alpha(opacity=70);
}

#form_main #form_btn{
	margin: 0;
}

#form_main #form_btn .btn_center{
	width: 340px;
	margin: 0 auto 8%;
	overflow: hidden;
}

#form_main #form_btn .btn_center .btn_box{
	width: 100%;
}
#form_main.confirm #form_btn .btn_center .btn_box{
	width: 50%;
	float: left;
	text-align: center;
}


#form_main #form_btn .btn_center .btn_box input{
	width: 100%;
	height: 56px;
	line-height: 56px;
	font-size: 1.1em;
}
#form_main.confirm #form_btn .btn_center .btn_box input{
	width: 85%;
}

#form_main #form_btn p{
	text-align: center;
}

#form_main #form_btn p a{
	color: #666;
	font-size: 0.65em;
	line-height: 1.2em;
}

#form_main #form_btn p a:hover{
	text-decoration: none;
}


/* footer */
#footer{
	padding: 15px 0;
	background: #414143;
}

#footer p{
	color: #999;
	font-size: 0.75em;
	line-height: 1.5em;
	text-align: center;
}


/* thanks page */
#header.thanks h1{
	letter-spacing: 0.1em;
}

p.thanks_msg{
	text-align: center;
	line-height: 1.7em;
	padding: 3% 0 35%;
	margin: 0 4%;
	font-size: 0.95em
}
.form_contents p.thanks_msg{
	font-size: 0.9em;
	padding: 2% 0 3%;
}

p.thanks_msg a{
	color: #000;
}


#form_main.thanks .form_contents #vehicle_type{
	margin-bottom: 4%;
}

#form_main.thanks .form_contents #vehicle_type li{
	width: 100%;
	text-align: center;
}

#form_main.thanks .form_contents #vehicle_type li p{
	padding: 2% 0 1%;
}

#form_main.thanks .form_contents #vehicle_type li span{
	font-size: 0.85em;
}

#form_main .form_contents #catalog_link{
	height: auto;
	overflow: hidden;
}

#form_main .form_contents #catalog_link li{
	float: left;
	margin-bottom: 5%;
	text-align: center;
	width: 29%;
	padding: 0 2%;
}

#form_main .form_contents #catalog_link li a{
	color: #000;
	font-size: 0.85em;
	font-weight: bold;
}
#form_main .form_contents #catalog_link li a:hover{
	text-decoration: none;
}

#form_main .form_contents #catalog_link li.w50{
	width: 46%;
}
#form_main .form_contents #catalog_link li.w100{
	width: 96%;
}


/* for events */
#header h1.line2{
	line-height: 1.8em;
	font-size: 1em;
	padding-top: 62px;
}
#header h1.line2 span{
	font-size: 1.5em;
	line-height: 1.8em;
}

#header h1.line2_l{
	line-height: 1.8em;
	padding-top: 62px;
	font-size: 1.2em;
}

#header h1.first_edition{
	letter-spacing: 0;
	font-size: 1.3em;
}

#form_main .form_contents.event_form{
	margin-bottom: 7%;
}

#form_main .form_contents h2.event_date{
	text-align: left;
	font-size: 1em;
	margin: 20px 0;
}

.form_contents dt.ttl_line2{
	padding-top: 18px;
}

.form_contents dd .input_block .input_contents.calendar_input{
	background: #fff url(../img/icon_calendar.png) no-repeat right center;
	padding-right: 33px;
}

.form_contents .tbl_box>p label input[type=checkbox]{
	width: 15px;
	height: 15px;
	vertical-align: middle;
	margin: 0 6px 0 10px;
}

#form_main .form_contents #vehicle_type li p.txt_line{
	padding: 0 0 0 15px;
	text-align: left;
}

#form_main .form_contents #vehicle_type li p.txt_line input{
	margin-left: -15px;
}

.dws_model_online{
	display: none;
	clear: both;
	padding: 15px 0;
	font-size: 0.9em;
	line-height: 1.5em;
}

.dws_model_online select{
	width: 200px;
	margin-left: 15px;
	padding: 0 11px;
	height: 34px;
	line-height: 34px;
	border: 1px solid #fff;
	border-radius: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#models{
	width: 400px;
	border: 1px solid #9e9fa3;
	margin-top: 10px;
}

#models li{
	padding: 0 10px;
}

#models li label{
	padding: 10px;
	margin: none;
}
#models li:nth-of-type(2n) label{
	background: #e9e9eb;
}

#models li label input{
	margin-left: 0 !important;
	vertical-align: middle;
}

#schedule dd{
	width: 100%;
}

#schedule dd .w70{
	width: 240px;
}

#schedule dd .w30{
	width: 140px;
}

#option1_calendar{
	clear: both;
	overflow: hidden;
	margin-top: 60px;

	display: none;
}

#option1_calendar #time_tbl table{
	border-collapse: collapse;
}
#option1_calendar #time_tbl table th{
	text-align: center;
	font-size: 11px;
	position: relative;
	padding: 0 20px;
}
#option1_calendar #time_tbl table th span{
	position: absolute;
	bottom: 0;
	right: 0;
	margin-bottom: -9px;
}

#option1_calendar #time_tbl table td{
	text-align: center;
	border-left: 1px solid #e9e9eb;
	border-right: 1px solid #e9e9eb;
	border-top: 1px dotted #e9e9eb;

	padding: 15px 2px;
	width: 60px;
	cursor: pointer;
}

#option1_calendar #time_tbl table td.full{
	color: #fff;
	background: #414143;
	cursor: default;
}
#option1_calendar #time_tbl table td.curt{
	font-weight: bold;
}

#option1_calendar #time_tbl table tr:nth-of-type(1) td{
	padding: 5px 2px;
	border-top: 1px solid #e9e9eb;
	cursor: default;
}
#option1_calendar #time_tbl table tr:nth-of-type(1) td.day0,
#option1_calendar #time_tbl table tr:nth-of-type(1) td.day6{
	color: #ff0000;
}


#option1_calendar #time_tbl table tr.last_line td{
	border: none;
	padding: 25px 5px 0;
	cursor: default;
	text-align: left;
}

#option1_calendar #time_tbl table td:hover{
	background: #e9e9eb;
}
#option1_calendar #time_tbl table td.full:hover{
	background: #414143;
}
#option1_calendar #time_tbl table tr.last_line td:hover{
	background: none;
}
#option1_calendar #time_tbl table tr:nth-of-type(1) td:hover{
	background: none;
}

#multi_dealer{
	padding: 2px 10px;
	border: 1px solid #dcdcdc;
	border-radius: 3px;
}

#multi_dealer p{
	padding: 5px 0;
	overflow: hidden;
}

#multi_dealer label{
	display: inline;
	margin: 0;
	padding: 0;
	float: none;
	font-size: 1.1em;
	line-height: 1.5;
}
#multi_dealer span{
	display: inline;
	float: right;
	font-size: 1.1em;
	line-height: 1.5;
	color: #000;
}
#multi_dealer input{
	vertical-align: middle;
}


/* start 20190705 Jaguar active Summer 70 DAYSフォーム作成 スタイリング追加 */
.centering_table {
	display: table;
	text-align: center;
}

#header.left_aligned_table {
	display: table;
	padding-left: 0;
	text-align: left;
	width: 100%;
}

#header h1.vertical_center {
	display: table-cell;
	letter-spacing: .2em;
	line-height: normal;
	vertical-align: middle;
}

#header.left_aligned_table h1.vertical_center {
	padding-left: 5%;
}

#btn_agree.na {
	opacity: .5;
}

#desired_model input.desired_model {
	vertical-align: middle;
}
/* end 20190705 Jaguar active Summer 70 DAYSフォーム作成 スタイリング追加 */

/* start 20230228 LRのみ店舗対応 ロゴ、規約の片ブランド対応スタイリング追加 */
.one_side_only_logo {
	height: 63px;
}
/* end 20230228 LRのみ店舗対応 ロゴ、規約の片ブランド対応スタイリング追加 */


/* SP */
@media screen and (max-width: 640px){

	#models{
		width: 100%;
		max-width: 400px;
	}

	br.sp_only{
		display: inline;
	}

	#lr_logo{
		padding: 12px 0 12px 4%
	}

	#lr_logo img{
		width: 30%;
		height: auto;
		max-width: 115px;
	}
	#lr_logo img.header_logo_img {
    max-width: none;
    width: var(--logo_width);
	}

	#lr_logo img.header_logo_img._3brand {
    min-width: 240px;
    width: 62vw;
	}
	#lr_logo img.header_logo_img._4brand {
    min-width: 280px;
    width: 62vw;
	}


	#header{
		height: 100px;
	}
	.kmi#header{
		height: 70px;
	}

	#header h1{
		font-size: 1.2em;
		line-height: 100px;
	}
	.kmi#header h1{
		font-size: 1.2em;
		line-height: 70px;
	}

	#header h1.letter{
		font-size: 1.15em;
		letter-spacing: 0.1em;
	}
	#header h1.smaller{
		font-size: 1em;
		line-height: 1.4em;
		padding-top: 25px;
	}
	#header h1.smaller2{
		font-size: 1em;
		line-height: 1.4em;
		padding-top: 25px;
	}
	#header h1.smaller_line2{
		padding-top: 30px;
		font-size: 1.1em;
		line-height: 1.2em;
	}

	#agreement{
		padding: 4% 4% 5%;
	}

	#agreement #catalog_dl .btn_box{
		margin: 3% 0;
	}

	#agreement.agreed{
		margin-bottom: 35px;
	}

	#agreement .btn_center{
		width: 100%;
	}

	#agreement p.kmi_ttl.sp_left{
		text-align: left;
		margin-top: 0 !important;
	}
	#agreement p.kmi_ttl.sp_left br{
		display: none;
	}

	.btn_box input{
		width: 90%;
		max-width: 140px;
	}

	#form_main .form_contents h2{
		font-size: 1.2em;
	}

	#form_main .form_contents h2 span{
		width: 40px;
		height: 40px;
		line-height: 40px;
		margin-bottom: 15px;
	}

	#form_main .form_contents #vehicle_type li{
		width: 50%;
	}

	#form_main .form_contents #vehicle_type li:nth-of-type(2n+1){
		clear: both;
	}
	#form_main .form_contents #vehicle_type li:nth-of-type(3n+1){
		clear: none;
	}

	#form_main .form_contents #vehicle_type li p img{
		width: 95%;
		max-width: 190px;
		height: auto;
	}

	#form_main .form_contents #vehicle_type li span{
		font-size: 0.7em;
	}

	.form_contents dt,
	.form_contents dd{
		width: 100%;
	}

	.form_contents dd{
		overflow: hidden;
		padding: 0 5px 10px;
	}

	.form_contents dd .input_block span{
		font-size: 0.75em;
	}

	.form_contents dd .input_block.with_msg_sl span{
		width: 15px;
		padding-right: 3px;
	}
	.form_contents dd .input_block.with_msg_ml span{
		width: 30px;
		padding-left: 3px;
	}
	.form_contents dd .input_block.with_msg_sr span{
		width: 15px;
		padding-left: 3px;
	}
	.form_contents dd .input_block.with_msg_mr span{
		width: 30px;
		padding-right: 3px;
	}

	.form_contents>span.err_msg,
	.form_contents dd>span.err_msg,
	.form_contents dd .input_block span.err_msg{
		width: auto;
		padding: 4px 0 3px 23px;
	}

	.form_contents dd .input_block.with_msg_sl .input_contents,
	.form_contents dd .input_block.with_msg_sr .input_contents{
		width: 70%; /* for IE8 & Android4.3 */
		width: -webkit-calc(100% - 18px);
		width: calc(100% - 18px);
	}

	.form_contents dd .input_block.with_msg_ml .input_contents,
	.form_contents dd .input_block.with_msg_mr .input_contents{
		width: 70%; /* for IE8 & Android4.3 */
		width: -webkit-calc(100% - 33px);
		width: calc(100% - 33px);
	}

	.form_contents dd .input_block.sp_w35{
		width: 45%;
	}
	.form_contents dd .input_block.sp_w45{
		width: 45%;
	}
	.form_contents dd .input_block.sp_w65{
		width: 45%;
	}
	.form_contents dd .input_block.sp_w100{
		width: 100%;
	}

	.form_contents dd .input_block.sp_w100 .input_contents{
		width: 100%;
	}
	.form_contents dd .input_block.sp_w100 .input_contents{
		width: -webkit-calc(100% - 33px);
		width: calc(100% - 33px);
	}
	.form_contents dd .input_block.sp_nopdg .input_contents{
		width: 100%;
	}

	.form_contents dd .input_block.with_msg_lr.sp_w100 .input_contents{
		width: -webkit-calc(100% - 60px);
		width: calc(100% - 60px);
	}
	#addr_box input{
		width: 50px;
	}


	.btn_box.input_block input#btn_retailer{
		width: 95%;
		font-size: 0.78em;
		padding: 0;
	}

	#retailer_box .area_list{
		width: 100%;
	}

	#retailer_box .area_list .input_contents{
		float: left;
		width: 50%
	}

	#retailer_box .area_list span{
		padding-left: 10px;
		float: left;
	}

	#retailer_box .name_list{
		width: 100%;
		padding: 7px 2px;
	}

	#form_main #form_btn{
		padding-top: 50px;
	}

	#form_main #form_btn .btn_center{
		width: 90%;
		max-width: 340px;
		margin-bottom: 8%;
	}

	#form_main #form_btn .btn_center .btn_box input{
		max-width: 100%;
	}

	p.thanks_msg{
		font-size: 0.85em;
	}

	#form_main .form_contents #catalog_link li,
	#form_main .form_contents #catalog_link li.w100{
		width: 46%;
		margin-bottom: 10%;
	}

	#form_main.thanks .form_contents #vehicle_type li span{
		font-size: 0.75em;
	}

	#form_main .form_contents #catalog_link li a{
		font-size: 0.75em;
	}

	/* for events */
	#header h1.line2,
	#header h1.line2_l{
		font-size: 0.9em;
		line-height: 1.5em;
		padding-top: 23px;
	}
	#header h1.line2 span{
		font-size: 1.4em;
		line-height: 1.5em;
	}
	#header h1.smaller_line3{
		width: 95%;
		padding-top: 20px;
		font-size: 0.95em;
		line-height: 1.2em;
	}
	#header h1.smaller_line3 span{
		font-size: 0.55em;
		display: block;
		line-height: 1.5em;
		margin-top: 5px;
	}

	#option1_calendar #time_tbl table tr:nth-of-type(1) td{
		padding: 5px 0;
		font-size: 11px;
	}

	#option1_calendar #time_tbl table th{
		font-size: 10px;
		padding: 0 15px;
	}

	#option1_calendar #time_tbl table tr.last_line td{
		padding: 25px 0 0;
	}
	/* start 20190705 Jaguar active Summer 70 DAYSフォーム作成 スタイリング追加 */
	#header h1.vertical_center {
		font-size: 1.1rem;
		padding-top: 0;
	}
	/* end 20190705 Jaguar active Summer 70 DAYSフォーム作成 スタイリング追加 */
}


@media screen and (max-width: 480px){
	#header h1.letter{
		font-size: 0.95em;
		letter-spacing: normal;
	}

	/* for events */
	#header h1.line2{
		font-size: 0.8em;
		line-height: 1.5em;
		padding-top: 25px;
	}
	#header h1.line2 span{
		font-size: 1.2em;
		line-height: 1.5em;
	}

	.pc_only{
		display: none;
	}
}