@charset "utf-8";
:root {
	--c_main:#2A76AF;
	--c_aq:#D4E5F0;
	--c_bk:#000000;
	--c_wh:#ffffff;
	--c_gy:#F5F5F5;
}
.clr-main {color: var(--c_main)!important;}
.clr-bk {color: var(--c_bk)!important;}
.clr-wh {color: var(--c_wh)!important;}
.bg-main {background-color: var(--c_main)!important;}
.bg-bk {background-color: var(--c_bk)!important;}
.bg-wh {background-color: var(--c_wh)!important;}
.bg-gy {background-color: var(--c_gy)!important;}
.link {
	color: var(--c_main);
	text-decoration: underline;
}
button {
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",'Noto Sans JP', sans-serif ,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS P Gothic", Verdana;
	font-weight: 600;
	font-style: normal;
	transition: .2s;
}
input[type="text"],input[type="tel"],input[type="email"],input[type="password"],input[type="time"],select,textarea {
	padding: 1.2rem .8rem;
	border: 1px solid #e0e0e0;
	border-radius: .5rem;
}
input[type="time"] {
	padding: .85rem;
}
#login input,#staff textarea,#staff select {
	border-width: .2rem;
}

/*header
---------------------------------------------------------*/
header {
	background: #000;
	color: #fff;
	padding: 1rem 0;
	font-size: 1.8rem;
}
.hWrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 90%;
	max-width: 100rem;
	margin: 0 auto;
}
.hLogo {
	width: 18rem;
}
.hLogo img {
	display: block;
	width: 100%;
}
.hBtn {
	display: flex;
	align-items: center;
	gap: 2rem;
}
.hBtn a {
	color: #fff;
	position: relative;
	display: flex;
	align-items: center;
	gap: .5rem;
}
.hBtn a::before {
	content: "";
	display: block;
	background: url(../img/icon_kanri.svg) center center no-repeat;
	background-size: contain;
	width: 1.6rem;
	aspect-ratio: 1;
}
.hBtn .logout a::before {
	width: 1.4rem;
	background-image: url(../img/icon_logout.svg);
	aspect-ratio: 7/8;
}
.hBtn a:hover {
	color: #c5c5c5;
}
.shopTtl {
	font-size: 2.2rem;
}
footer {
	text-align: center;
	padding: 2rem;
	font-size: 1.2rem;
	color: #323232;
	background: #f1f1f1
}

/*login
---------------------------------------------------------*/
.ttl {
	font-size: 3.2rem;
	margin-bottom: 6rem;
}
.formBox {
	max-width: 40rem;
	margin: 0 auto;
	color: #505050;
}
.formBox dl {
	font-size: 1.8rem;
}
.formBox dt {
	text-align: left;
	font-size: 2rem;
	margin-bottom: 1rem;
}
.formBox dd input {
	font-size: 2rem;
	width: 100%;
	padding: 1.8rem 1rem;
}
.formBox dd+dt {
	margin-top: 2rem;
}
.error {
	margin-top: 1rem;
	font-size: 1.5rem;
	color: red;
}
.formBtn {
	margin-top: 8rem;
}
.btn {
	background: var(--c_main);
	border-radius: .5rem;
	width: 24rem;
	padding: 1rem;
	color: #fff;
	font-size: 2.4rem;
}
.btn:hover {
	background: #333;
}
.btn02 {
	display: inline-block;
	background: var(--c_main);
	border-radius: .5rem;
	width: 20rem;
	padding: 1rem;
	color: #fff;
	font-size: 1.8rem;
	font-weight: 700;
	margin-top: 2rem;
}
.btn02:hover {
	background: #333;
}
.dlbtn a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	background: var(--c_aq);
	border-radius: .5rem;
	padding: .7rem 2rem .5rem;
	font-weight: 700;
	color: #323232;
	line-height: 1;
	margin-top: 4rem;
}
.dlbtn a::before {
	content: "";
	display: block;
	background: url(../img/icon_dl.svg) center center no-repeat;
	background-size: contain;
	width: 2rem;
	aspect-ratio: 1;
}
.dlbtn a:hover {
	opacity: .7;
}

/*staff
---------------------------------------------------------*/
.staffSelect select {
	width: 100%;
	font-size: 1.8rem;
	padding: 2rem;
}

/*car-regist
---------------------------------------------------------*/
.carRegist {
	max-width: 100%;
}
.carInput {
	display: block;
	width: 100%;
	max-width: 100%;
	min-width: 100%;
	min-height: 6.6rem;
}
.carUnit {
	position: relative;
	padding: 2rem 5.5rem 2rem 2rem;
	border-radius: .8rem;
	background: rgba(230,230,230,.15);
	border: 1px solid rgba(230,230,230,1);
}
.carUnit + .carUnit {
	margin-top: 2rem;
}
.carUnit dl {
	display: grid;
	grid-template-columns: 25rem 1fr;
	gap: 1rem;
	padding: .5rem 0;
}
.carUnit dt {
	text-align: left;
	font-weight: 700;
	display: flex;
	align-items: center;
	white-space: nowrap;
	background: rgba(200,200,200,.2);
	border-radius: .3rem;
	padding-left: 2rem;
}
.carUnit input[type="text"] {
	width: 100%;
}
.input-hide {
	position: absolute;
	top: 1.3rem;
	right: 1.3rem;
	width: 3rem;
	aspect-ratio: 1;
	clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
	background: #808080;
	color: #fff;
	text-align: center;
	transition: .2s;
	cursor: pointer;
}
.carUnit:first-of-type .input-hide {
	/* display: none; */
}
.input-hide:hover {
	background: #000;
}
#input-plus {
	width: 20rem;
	font-weight: 700;
	border-radius: .5rem;
	padding: 1rem;
	display: block;
	max-width: 20rem;
	margin: 1.5rem 0 0 auto;
	border: 1px solid #505050;
	color: #505050;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: .5rem;
	transition: .2s;
}
#input-plus::after {
	content: "+";
	display: block;
	background: var(--c_main);
	color: #fff;
	font-weight: 800;
	font-size: 1.3rem;
	width: 1.6rem;
	border-radius: 50%;
	line-height: 1.25;
	aspect-ratio: 1;
}
#input-plus:hover {
	color: var(--c_main);
	border-color: var(--c_main);
	background: #f1f1f1;
}
.staffFormContents {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 8rem;
}
.staffFormContents >section {
	border: 1px solid #e0e0e0;
	padding: 3rem;
	border-radius: .5rem;
}
.staffFormContents .ttl {
	font-size: 2.4rem;
	margin-bottom: 2rem;
}
.regstBtn {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 3rem;
	margin-top: 3rem;
}
.regstBtn input {
	width: 15rem;
	border: 1px solid #505050;
	border-radius: .5rem;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",'Noto Sans JP', sans-serif ,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS P Gothic", Verdana;
	font-weight: 700;
	color: #505050;
	padding: 1rem;
	font-size: 1.6rem;
}
.regstBtn input.submit {
	background: var(--c_main);
	border-color: var(--c_main);
	color: #fff;
}
.regstBtn input:hover {
	background: #f1f1f1;
}
.regstBtn input.submit:hover {
	background-color: #000;
}
.qrSelect {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5rem;
}
.qrSelect a {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	font-size: 2.2rem;
	font-weight: 700;
	background: var(--c_main) url(../img/btn_bg.svg) top center no-repeat;
	background-size: 100% 50%;
	color: #fff;
	letter-spacing: 0.1em;
	border-radius: 1rem;
	width: 32rem;
	aspect-ratio: 9/4.5;
}
.qrSelect .new a {
	color: var(--c_main);
	background-color: var(--c_aq);
}
.qrSelect a::after {
	content: "";
	display: block;
	width: 1.9rem;
	aspect-ratio: 1;
	background: url(../img/arrow_wh.svg) center center no-repeat;
	background-size: contain;
}
.qrSelect .new a::after {
	background-image: url(../img/arrow.svg);
}
.qrSelect a:hover {
	opacity: .8;
}
.backBtn {
	display: block;
	width: 20rem;
	background: rgba(0,0,0,.05);
	margin: 5rem auto 0;
	font-weight: 700;
	border-radius: .5rem;
	padding: 1.5rem;
}
.backBtn:hover {
	background: #e0e0e0;
}
.qrttl {
	font-size: 2.2rem;
	color: #323232;
	padding-bottom: 3rem;
	margin-bottom: 3rem;
	border-bottom: 1px solid #e0e0e0;
}
.qrttl span {
	display: block;
	font-weight: 500;
	font-size: 80%;
}
.qrImg {
	max-width: 40rem;
	margin: 0 auto;
	border: 1px solid #dcdcdc;
}
.urlcopy {
	display: inline-flex;
	align-self: center;
	justify-content: center;
	background: var(--c_main);
	padding: 1rem 2rem;
	color: #fff;
	border-radius: .5rem;
	letter-spacing: 0.07em;
	gap: 1rem;
	margin-top: 3rem;
}
.urlcopy::after {
	content: "";
	display: block;
	background: url(../img/icon_copy.svg) center center no-repeat;
	background-size: contain;
	width: 1.6rem;
	aspect-ratio: 1;
}
.urlcopy:hover {
	background: #000;
}
#qr-output h2 {
	margin-bottom: 1rem;
	color: var(--c_main);
	font-size: 2rem;
}
.stepTtlWrap {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 3rem;
	padding: 2rem;
	letter-spacing: 0.05em;
	text-align: left;
	color: #fff;
	background: #269;
}
.stepTtlWrap .icon {
	width: 9rem;
}
.stepTtlWrap .icon img {
	width: 100%;
}
.stepTtl h1 {
	font-size: 2.6rem;
	line-height: 1.2;
}
.stepTtl p {
	font-size: 2rem;
	font-weight: 700;
	color: #E7CB2E;
	margin-bottom: 0.25rem;
}
#step-02 .stepTtlWrap {background: #35A5BC;}
#step-03 .stepTtlWrap {background: #1F7979;}
#step-04 .stepTtlWrap {background: #25A99C;}
.formArea {
	text-align: left;
	padding: 0 3rem;
}
.formArea + .formArea {
	margin-top: 6rem;
}
.ttl01 {
	border-left: .5rem solid var(--c_main);
	background: #eaeaea;
	padding: .5rem 1.5rem;
	font-size: 112.5%;
	margin: 0 -3rem 3rem;
	text-align: left;
	margin-top: 6rem;
}
.ttl01:first-of-type {
	margin-top: 0;
}
.formArea  .txt {
	margin-bottom: 4rem;
}
.inquiry {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem 0;
}
.inquiry dt,.inquiry dd {
	padding: .8rem 2rem;
	font-weight: 700;
	width: 30%;
}
.inquiry dt {
	width: 20%;
	background: var(--c_aq);
	color: var(--c_main);
	text-align: center;
}
.agreement h3 {
	border-bottom: 1px solid #E0E0E0;
	padding-bottom: 1rem;
	font-size: 112.5%;
	text-align: left;
	margin-bottom: 1.5rem;
}
.agreement h3:not(:first-of-type) {
	margin-top: 4rem;
}
.agreement li {
	padding-left: 1em;
	text-indent: -1em;
}
.agreement li::before {
	content: "・";
	margin-right: 0.5em;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",'Noto Sans JP', sans-serif ,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS P Gothic", Verdana;
	font-weight: 500;
}
.agreementCheck {
	width: fit-content;
	margin: 0 auto;
	text-align: left;
	margin-bottom: 6rem;
}
.agreementCheck li + li {
	margin-top: 2rem;
}
.agreementCheck input[type="checkbox"] {
	opacity: 0;
	width: 0;
	height: 0;
	margin: 0 ;
	pointer-events: none;
	z-index: -999;
	position: relative;
}
.agreementCheck label {
	position: relative;
	padding-left: 4.7rem;
	padding-top: 0.5rem;
	transition: .3s;
}
.agreementCheck label::before {
  content: '';
  display: block;
  width: 3rem;
  height: 3rem;
  border: .2rem solid #aaa;
  position: absolute;
  left: .2rem;
  top: 0;
	border-radius: .5rem;
  -webkit-transition: all .3s, border-color .08s;
  transition: all .3s, border-color .08s;
}
.agreementCheck label::after {
	content: "";
	display: block;
	width: 2.3rem;
	aspect-ratio: 1;
	background: #fff;
  clip-path: polygon(80% 0, 100% 0, 100% 100%, 50% 100%, 50% 80%, 80% 80%);
  transform: rotate(45deg);
	position: absolute;
	left: .4rem;
	top: 0rem;
	opacity: 0;
	z-index: 1;
}
.agreementCheck label:hover {
	color: #888;
	background: none;
}
.agreementCheck label:hover::before {
	transform: scale(1.1)
}
.agreementCheck input[type="checkbox"]:checked + label:before {
	background: var(--c_main);
	border-color: var(--c_main);
}
.agreementCheck input[type="checkbox"]:checked + label::after {
	opacity: 1;
}
.submitWrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem 5rem;
}
.submitWrap a,.submitWrap input,.submitWrap button {
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",'Noto Sans JP', sans-serif ,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS P Gothic", Verdana;
	display: block;
	border-radius: .5rem;
	font-weight: 700;
	background: var(--c_main);
	color: #fff;
	width: 24rem;
	padding: 1.5rem;
	font-size: 1.8rem;
	letter-spacing: 0.1em;
}
.submitWrap a.back {
	background: #f5f5f5;
	color: #323232;
}
.submitWrap input:hover,.submitWrap input:hover {
	background: #000;
}
.submitWrap a.back:hover {
	background: #e0e0e0;
}
.submit[disabled] {
  background: #b3b3b3!important;
  cursor: not-allowed;
  pointer-events: none;
}
.formCont {
	display: grid;
	grid-template-columns: 25rem 1fr;
}
.formCont input {
	width: 100%;
}
.formCont dt,.formCont dd {
	padding: 2rem 0;
	border-bottom: 1px solid #eaeaea;
}
.formCont dt {
	position: relative;
	display: flex;
	align-items: flex-start;
	font-weight: 700;
	padding-top: 2.8rem;
}
.formCont dt::before {
	content: "任意";
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",'Noto Sans JP', sans-serif ,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS P Gothic", Verdana;
	font-size: 80%;
	font-weight: 500;
	white-space: nowrap;
	padding: .5rem 1rem .3rem;
	display: inline-block;
	background: #969696;
	color: #fff;
	line-height: 1.1;
	margin-right: 1.5rem;
}
.formCont dt.req::before {
	content: "必須";
	color: #fff;
	background: #D61D1D;
}
.confPage .formCont dt {
	padding-top: 2rem;
}
.confPage .formCont dt::before {
	display: none;
}
.formCont .note,
.form02Cont .note {
	margin-top: 0.3rem;
	font-size: 1.2rem;
	color: #969696;
}
.checkWrap {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.5rem 5rem;
	font-size: 112.5%;
	font-weight: 700;
}
.checkWrap .other {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.checkWrap .other input[type="text"] {
	width: 28rem;
}
.formBtm .note {
	color: #969696;
	margin-bottom: 6rem;
}
.tgl {
	background: var(--c_aq);
	display: inline-flex;
	justify-content: space-between;
	align-items: center;
	width: fit-content;
	gap: 2rem;
	padding: .8rem 2rem;
	font-size: 112.5%;
	font-weight: 700;
	border: .2rem solid var(--c_aq);
	transition: .2s;
	cursor: pointer;
	margin-bottom: 3rem;
}
.tgl::after {
	content: "";
	display: block;
	background: url(../img/tgl.svg) center center no-repeat;
	background-size: contain;
	width: 1.2rem;
	aspect-ratio: 12/7;
	transition: .2s;
}
.tgl.act::after {
	transform: rotate(180deg);
}
.tgl:hover {
	border-color: var(--c_main);
}
.hideArea {
	display: none;
}
.confBox,.form02Cont {
	display: grid;
	grid-template-columns: 35rem 1fr;
}
.confBox dt,.confBox dd,
.form02Cont dt,.form02Cont dd {
	padding: 2rem 0;
	border-bottom: 1px solid #eaeaea;
}
.confBox dt,.form02Cont dt {
	font-weight: 700;
}
.form02Cont dt {
	padding-top: 2.8rem;
}
.form-date {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1em;
	font-weight: 700;
}
input.year {
	max-width: 10rem;
}
.bikou {
	width: 100%;
	min-height: 20rem;
}
.meterWrap {
	max-width: 40rem;
}
.meter {
	display: grid;
	grid-template-columns: repeat(5,1fr);
}
.meter li {
	position: relative;
	border: 1px solid #e0e0e0;
}
.meter li:not(:first-of-type) {
	border-left: none;
}
.meter li input {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	opacity: 0;
	z-index: -99;
}
.meter li label {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 1;
	margin: 0;
	background: #fff;
	transition: .1s;
}
.meter label.active {
  background: var(--c_main)
}
.meter li label:not(.active):hover {
	background-color: #f1f1f1;
}
.meterTxt {
	display: flex;
	justify-content: space-between;
	font-weight: 700;
	font-size: 2rem;
}
.meterTxt span:last-of-type {
	color: var(--c_main);
}
#meterView {
	pointer-events: none;
}
.damageArea {
	display: none;
	padding-top: 4rem;
}
.damageArea.is-visible {
	display: block;
}
.damageWrap {
	display: grid;
	grid-template-columns: 50% 1fr;
	gap: 5rem;
	margin-bottom: 6rem;
}
svg g[id^="damage_"] .cls-2,
svg g[id^="damage_"] .cls-3 { 
  fill: transparent!important;
	cursor: pointer;
	pointer-events: all;
	transition: fill .1s ease;
}
.carBg,svg g[id^="damage_"] .cls-7 {
	pointer-events: none;
}
svg g[id^="damage_"].select .cls-7 {
	fill: #fff!important;
}
svg g[id^="damage_"].select .cls-2,
svg g[id^="damage_"].select .cls-3 {
  fill: rgba(42,118,175,.8)!important;
}
svg g[id^="damage_"]:not(.select) .cls-2:hover,
svg g[id^="damage_"]:not(.select) .cls-3:hover {
  fill: rgba(255,255,255,.7)!important;
}
.damageCheck {
	position: relative;
	display: grid;
	grid-template-columns: repeat(5,1fr);
	gap: .2rem;
}
.damageCheck input {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	opacity: 0;
	z-index: -99;
}
.damageCheck label {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2rem;
	font-weight: 700;
	width: 100%;
	height: 5.5rem;
	margin: 0;
	text-align: center;
	background: #E6E6E6;
	transition: .1s;
}
.damageCheck label:hover {
	background: #fff;
}
.damageCheck input:checked + label {
	background: var(--c_main);
	color: #fff;
}
.damageWrap h3 {
	font-size: 112.5%;
	margin-bottom: 1.5rem;
}
.returnTtl {
	background: var(--c_main);
	color: #fff;
	height: 13rem;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 2rem;
}
.returnTtl h1 {
	font-size: 2.6rem;
}
.damageResult {
	max-width: 32rem;
}
.damageResult .img svg g,
.damageResult .img svg g[id^="damage_"] .cls-2,
.damageResult .img svg g[id^="damage_"] .cls-3 {
	pointer-events: none!important;
}
.damageResult ul {
	display: flex;
	justify-content: center;
	gap: .5rem;
	font-weight: 700;
	margin-top: 1rem;
	padding: 1.5rem;
	background: #fff;
	position: relative;
}
.damageResult ul::after {
	content: "";
	display: block;
	width: 3rem;
	height: 1rem;
	background-color: #fff;
	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
	position: absolute;
	left: 0;
	right: 0;
	bottom: 100%;
	margin: 0 auto;
}
.damageResult ul li {
	display: inline-block;
	background: var(--c_main);
	color: #fff;
	line-height: 1;
	padding: .5rem 1rem .3rem;
}
.form02Cont .agreementCheck {
	width: 100%;
	margin-bottom: 0;
}
#no-approve {
	background: #d9d9d9;
}
#no-approve h2 {
	font-size: 2.6rem;
	letter-spacing: 0.1em;
	padding-bottom: 1.5rem;
	margin-bottom: 2rem;
	border-bottom: 1px solid #969696;
}
#no-approve .form02Cont dt,#no-approve .form02Cont dd {
	border-bottom: none;
}
.submit._bk {
	background-color: #323232;
}
.thxWrap {
	border: 1px solid #ddd;
	padding: 3rem 5%;
	line-height: 1.8;
}

/*ieハック*/
@media screen\0  {
}

/*********************************/
/* タブレット用のスタイル記述 */
/*********************************/
@media screen and (max-width: 1150px) {
	html {
		font-size: .8vw;
	}
}

/*********************************/
/* スマートフォン用のスタイル記述 */
/*********************************/
@media screen and (max-width: 780px) {
/*全体レイアウト
---------------------------------------------------------*/
	html {
		font-size: 2.7777777vw;
	}
	body {
		font-size: 1.4rem;
		line-height: 1.5
	}
	body.active {
		overflow: hidden;
	}
	article > section {
		padding: 4rem 0;
	}
	/*header
	-------------------------------------------------------*/
	.hLogo {
		width: 14rem;
	}
	.hWrap .txt {
		font-size: 1.4rem;
		padding-bottom: .06em;
	}

	/*contents
	-------------------------------------------------------*/
	.ttl {
		font-size: 2rem;
	}
	.formBox dl {
		font-size: 1.6rem;
		display: block;
	}
	.formBox dt {
		font-size: 1.6rem;
	}
	.formBox dd input {
		padding: 1rem;
	}
	.formBtn {
		margin-top: 4rem;
	}
	.login {
		font-size: 1.8rem;
		width: 20rem;
	}
	.formBox dd input {
		padding: 1rem;
	}
	.hBtn {
		gap: 1.5rem;
	}
	.hBtn a {
		font-size: 1.2rem;
	}
	.shopTtl {
		font-size: 1.8rem;
		margin-top: 1rem;
	}
	.btn {
		width: 18rem;
		font-size: 2rem;
	}
	.staffFormContents {
		grid-template-columns: repeat(1,1fr);
		gap: 5rem
	}
	.staffFormContents >section {
		padding: 3rem 2rem;
	}
	.staffFormContents .ttl {
		font-size: 2rem;
	}
	.staffSelect select {
		font-size: 1.6rem;
		padding: 1.2rem;
	}
	.regstBtn {
		gap: 2rem;
	}
	.regstBtn input {
		width: 12rem;
	}
	.staffFormContents .ttl {
		margin-bottom: 2rem;
	}
	.qrSelect {
		flex-direction: column;
		gap: 3rem;
	}
	.qrSelect li {
		width: 30rem;
	}
	.qrSelect a {
		width: 100%;
		position: relative;
		font-size: 1.9rem;
		aspect-ratio: 9 / 4;
	}
	.qrSelect a::after {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 1rem;
		z-index: 1;
	}
	#carRegistArea .ttl {
		margin-bottom: 3rem;
	}
	.carUnit {
		padding: 2.7rem 1rem .5rem;
		border-radius: .5rem;
	}
	.carUnit dl {
		grid-template-columns: repeat(1,1fr);
		padding: 1rem 0;
	}
	.carUnit dt {
		padding: .5rem 1rem;
	}
	.input-hide {
		width: 2.4rem;
		top: .7rem;
		right: 1rem;
	}
	.formArea {
		padding: 0;
	}
	.ttl01 {
		padding: .5rem 1rem;
		margin: 4rem 0 2.5rem;
	}
	.stepTtlWrap {
		display: grid;
		grid-template-columns: 7rem 1fr;
		padding: 1.5rem 2rem;
		gap: 1.5rem;
		white-space: nowrap;
	}
	.stepTtlWrap .icon {
		width: 100%;
	}
	.stepTtl h1 {
		font-size: 2rem;
	}
	.stepTtl p {
		font-size: 1.6rem;
	}
	.formArea  .txt {
		margin-bottom: 2.5rem;
	}
	.inquiry dt,.inquiry dd {
		width: 50%;
		border-width: .5rem;
		padding: .5rem;
	}
	.inquiry dt {
		width: 45%;
		margin-right: 5%;
	}
	.formArea + .formArea {
		margin-top: 4rem;
	}
	.agreement h3:not(:first-of-type) {
		margin-top: 2.5rem;
	}
	.agreementCheck {
		margin-bottom: 4rem;
	}
	.agreementCheck label::before {
		width: 2rem;
		height: 2rem;
	}
	.agreementCheck label {
		padding-left: 3.5rem;
		padding-top: 0.2rem;
	}
	.agreementCheck label::after {
		width: 1.6rem;
	}
	.submitWrap {
		display: grid;
		grid-template-columns: 10rem 1fr;
		gap: 1rem;
	}
	.submitWrap.col-1 {
		display: flex;
		justify-content: center;
	}
	.submitWrap.col-1 a, .submitWrap.col-1 input, .submitWrap.col-1 button {
		width: 20rem;
	}
	.submitWrap a, .submitWrap input,.submitWrap button {
		font-size: 1.6rem;
		width: auto;
	}
	.formCont {
		display: block;
	}
	.formCont dt, .formCont dd {
		border-bottom: none;
	}
	.formCont dt {
		padding: 0;
		margin-bottom: 1rem;
	}
	.formCont dt::before {
		padding-top: 0.3rem;
	}
	.formCont dt:not(:first-of-type) {
		margin-top: 2rem;
	}
	.formCont dd {
		padding: 0 1rem;
	}
	.confPage .formCont dt {
		padding: .5rem 1rem;
		background: #eaeaea;
	}
	.checkWrap {
		flex-direction: column;
		align-items: flex-start;
	}
	.checkWrap .other {
		display: block;
	}
	.checkWrap .other input[type="text"] {
		margin-left: 1.8rem;
	}
	.tgl {
		width: 100%;
		font-size: 100%;
	}
	.formBtm .note {
		text-align: left;
		font-size: 87.5%;
		margin-bottom: 4rem;
	}
	.confBox, .form02Cont {
		display: block;
	}
	.confBox dt,
	.confBox dd,
	.form02Cont dt,
	.form02Cont dd {
		padding: 0;
		border-bottom: none;
	}
	.confBox dt,.form02Cont dt {
		margin-bottom: 1rem;
	}
	.confBox dt:not(:first-of-type),.form02Cont dt:not(:first-of-type) {
		margin-top: 2rem;
	}
	.confBox dd {
		padding-left: 1em;
	}
	.bikou {
		min-height: 10rem;
	}
	.hasDamageWrap {
		margin-top: 2rem;
	}
	.damageWrap {
		display: block;
	}
	.damageWrap dt {
		margin-bottom: 2rem;
	}
	.damageCheck label {
		font-size: 1.6rem;
		height: 3.5rem;
	}
	.agreementCheck li + li {
    margin-top: 1rem;
	}
	.confBox + .form02Cont {
		margin-top: 2.5rem;
	}
	.returnTtl {
		height: 10rem;
	}
	.returnTtl h1 {
		font-size: 2rem;
	}













}


