@charset "utf-8";

/*--------------HEADER---------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 25px;
  background: #FFF;
  box-shadow: 0 0 19px rgba(159,159,159,0.31);
  z-index: 999;
}
.header {
  display: flex;
  max-width: 1380px;
  padding: 14px 0;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
}
.header-logo {
  width: 50%;
  max-width: 220px;
}
.header-logo a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
}
.header-menu.pc {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 32px;
}
.header-menu ul {
  display: flex;
  align-items: center;
  gap: 0 32px;
}
.header-menu ul li a {
  display: block;
  font-size: 20px;
  font-weight: 700;
}
.header-btn {
  display: flex;
  width: 216px;
  height: 58px;
  font-size: 20px;
  font-weight: 700;
  color: #FFF;
  background: #4FB7B3;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1440px) {
	.header-logo {
  	max-width: 320px;
	}
	.header-menu ul li a {
  	font-size: 15px;
	}
	.header-btn {
	  width: 150px;
	  height: 44px;
	  padding-bottom: 1px;
	  font-size: 16px;
	  border-radius: 5px;
	}
}

@media screen and (max-width: 1024px) {
	.header-menu.pc {
  	gap: 0 20px;
	}
	.header-menu ul {
  	gap: 0 12px;
	}
	.header-btn {
  	width: 130px;
	}
}

@media screen and (max-width: 767px) {
	header {
  	padding: 0 15px;
	}
	.header {
  	height: 56px;
  	padding: 0;
	}
	.header-logo {
		position: relative;
  	width: auto;
  	height: 40px;
  	font-size: 0;
  	z-index: 100;
	}
	.header-menu.pc {
  	display: none;
	}
  .hamburger {
    position: relative;
    display: block;
    width: 44px;
    height: 20px;
    cursor: pointer;
    z-index: 99;
  }
  .hamburger span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #31326f;
    transition: 0.3s ease-in-out;
  }
  .hamburger span:nth-child(2) {
    top: 9px;
  }
  .hamburger span:last-child {
    top: 18px;
  }
  .hamburger.active span {
    width: 48px;
  }
  .hamburger.active span:first-child {
    top: 9px;
    transform: rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    height: 0;
  }
  .hamburger.active span:last-child {
    top: 9px;
    transform: rotate(-45deg);
  }
  .hamburger-menu {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 120px 24px 80px;
    text-align: center;
    background: #fff;
    align-items: center;
    justify-content: center;
    z-index: 98;
  }
  .hamburger-menu ul {
  	display: block;
	}
  .hamburger-menu ul li {
    margin-bottom: 24px;
    font-size: 14px;
  }
  .menu-btns {
  	display: flex;
    justify-content: center;
  }
}

/*--------------FOOTER---------------*/
footer {
	padding: 48px 40px 0;
  background: #FFF;
  box-shadow: 0 0 19px rgba(159,159,159,0.31);
}
.footer {
  display: flex;
  max-width: 1220px;
  padding: 0 0 30px 100px;
  margin: 0 auto;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0 80px;
}
.footer-btns {
  width: 40%;
  max-width: 370px;
}
.footer-logo {
  max-width: 380px;
  margin-bottom: 20px;
}
.footer-access {
  margin-bottom: 60px;
  font-weight: 600;
}
.footer-menu {
  display: flex;
  color: #31326F;
  font-weight: 600;
  gap: 0 24px;
  white-space: nowrap;
}
.footer-btn {
	position: relative;
  display: flex;
  width: 100%;
  max-width: 380px;
  height: 160px;
  padding: 28px 40px;
  margin-bottom: 13px;
  font-weight: bold;
  text-align: center;
  border: 3px solid;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
}
.footer-btn .arw {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 22px;
  font-size: 0;
  transform: translateY(-50%);
}
.footer-btn .arw svg {
	width: 100%;
}
.btn-tel {
	color: #31326F;
	border-color: #31326F;
}
.btn-reservation {
	color: #4FB7B3;
	border-color: #4FB7B3;
}
.btn-tel .tel-number {
  display: block;
  font-size: 36px;
}
.btn-reservation span {
	display: block;
	font-size: 48px;
}
.footer-sub-wrap {
  padding: 10px 40px;
  margin: 0 -40px;
  color: #FFF;
  text-align: right;
  font-weight: bold;
  background: #31326F;
}
.footer-sub-menu {
  display: flex;
  margin-bottom: 6px;
  color: #637AB9;
  justify-content: flex-end;
  gap: 0 26px;
}

@media screen and (max-width: 1440px) {
	.footer {
  	max-width: 980px;
  	padding-left: 50px;
	}
	.footer-logo {
  	max-width: 280px;
  	margin-bottom: 14px;
	}
}

@media screen and (max-width: 1024px) {
	footer {
  	padding: 40px 25px 0;
	}
	.footer {
  	padding: 0 0 40px;
  	gap: 0 40px;
	}
	.footer-menu {
  	gap: 0 14px;
	}
	.footer-btn {
		height: 140px;
  	padding: 0 32px;
	}
	.footer-btn small {
  	display: block;
  	font-size: 12px;
	}
	.btn-tel .tel-number {
  	font-size: 32px;
  	line-height: 1.5;
	}
	.btn-reservation span {
  	font-size: 40px;
  	line-height: 1.5;
	}
	.footer-sub-wrap {
		margin: 0 -25px;
	}
}

@media screen and (max-width: 767px) {
	footer {
  	padding: 24px 15px 0;
	}
	.footer {
  	display: block;
  	padding-bottom: 20px;
	}
	.footer-info {
  	margin-bottom: 20px;
	}
	.footer-logo {
  	max-width: 240px;
  	margin: 0 auto 20px;
  	text-align: center;
	}
	.footer-access {
		text-align: center;
	}
	.footer-menu {
  	font-size: 14px;
  	justify-content: center;
  	gap: 0 10px;
	}
	.footer-btns {
		width: 100%;
		margin: 0 auto;
	}
	.footer-btn {
  	height: 120px;
  	margin-bottom: 10px;
	}
	.footer-btn .arw {
  	width: 15px;
	}
	.footer-sub-wrap {
	  padding: 10px 15px;
	  margin: 0 -15px;
	  font-size: 12px;
	}
	.footer-sub-menu {
  	margin-bottom: 2px;
  	gap: 0 16px;
	}
}

/*--------------TOP---------------*/
main {
  display: block;
  background: #eff1f4;
}
.f-kv {
	padding: 20px 0 0 20px;
	margin-bottom: 80px;
}
.kv-wrap {
	position: relative;
	display: flex;
	padding: 240px 0 160px;
	justify-content: flex-end;
	background: url(../images/kv.jpg) 50% 50% / cover no-repeat;
	border-radius: 50px;
	gap: 0 40px;
}
.kv-txt {
	position: absolute;
	left: 40px;
	bottom: 50px;
	white-space: nowrap;
}
.kv-txt h1 {
	margin-bottom: 20px;
	font-size: 48px;
	font-weight: bold;
}
.kv-txt span {
	display: inline-block;
	padding: 0 8px;
	margin-bottom: 4px;
	background: rgba(255,255,255,0.5);
}
.kv-txt span b {
	color: #31326F;
}
.kv-note {
  padding: 2px 6px 4px;
  font-size: 12px;
  font-weight: 600;
  color: #FFF;
  background: #31326F;
}
.kv-form {
	width: 50%;
	max-width: 614px;
  padding: 32px 36px 32px;
  background: #FFF;
}
.bk-title {
	display: flex;
	margin-bottom: 30px;
}
.bk-title span {
  display: block;
  padding: 0 8px 3px;
  font-size: 40px;
  line-height: 1.4;
  color: #FFF;
  font-weight: bold;
  background: #31326F;
}
.kv-form .kv-form_t span {
  padding-bottom: 0;
  font-size: 20px;
}
.kv-form table {
  width: 100%;
  margin-bottom: 28px;
}
.kv-form table th {
  width: 140px;
  font-size: 15px;
  text-align: left;
}
.kv-form table td {
  padding: 5px 0;
}
.form_fl {
  display: flex;
  font-size: 15px;
  font-weight: bold;
  gap: 0 8px;
}
.form_fl > * {
  width: 100%;
}
.input-item input,
.input-item textarea {
  width: 100%;
  height: 28px;
  padding: 0 4px;
  border: none;
  background: #eff1f4;
}
.input-item textarea {
	height: 200px;
	padding: 3px 4px;
}
.select-item {
	position: relative;
}
.select-item::before {
	content: "";
}
.select-item select {
  width: 100%;
  height: 28px;
  padding: 0 14px 0 4px;
  border: none;
  background: #eff1f4;
}
.select-item svg {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
}
.kv-form .input-item,
.kv-form .select-item {
	max-width: 130px;
}
.kv-form .form_fl.short {
	max-width: 280px;
}
.cr-input label span {
  position: relative;
  padding-left: 32px;
}
.cr-input label span::before {
	content: "";
	position: absolute;
	top: 1px;
	left: 0;
	width: 19px;
	height: 19px;
	background: #FFF;
	border: 1px solid;
	border-radius: 3px;
}
.cr-input label span::after {
	content: "";
	position: absolute;
	top: 4px;
  left: 3px;
	width: 15px;
	height: 15px;
	background: #31326F;
	border-radius: 3px;
	transform: scale(0);
}
.cr-input.checkbox label span::after {
	background: url(../images/check.png) 50% 50% / contain no-repeat;
}
.cr-input.radio label span::after {
	border-radius: 50%;
}
.cr-input label input:checked + span::after {
	transform: scale(1);
}
.form-btns {
  display: flex;
  justify-content: center;
}
.form-btns .form-btn {
  width: 280px;
  height: 54px;
  font-size: 20px;
  font-weight: bold;
  color: #FFF;
  background: #637AB9;
  border-radius: 40px;
}
.form-privacy {
  display: block;
  margin-bottom: 24px;
  font-size: 12px;
  text-align: center;
}
.form-privacy a {
	display: inline-block;
	color: #637AB9;
	text-decoration: underline;
}

.pp-title {
  display: flex;
  margin-bottom: 56px;
  text-align: center;
  justify-content: center;
}
.pp-title span {
  position: relative;
  padding: 14px 30px;
  font-size: 32px;
  color: #FFF;
  z-index: 1;
}
.pp-title span::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #637AB9;
	transform:skewX(-15deg);
	z-index: -1;
}
.pp-title span::after {
	content: "";
	position: absolute;
	right: 30%;
	bottom: -24px;
	width: 60px;
	height: 60px;
	background: url(../images/pp_arw.png) 50% 100% / contain no-repeat;
	z-index: -1;
}
.step-wrap {
  max-width: 1220px;
  margin: 0 auto 120px;
}
.step-items {
  display: flex;
  margin-bottom: 14px;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px 0;
}
.step-item {
  width: 49%;
  background: #FFF;
  border-radius: 8px;
  overflow: hidden;
}
.step-item h2 {
  display: flex;
  font-size: 24px;
}
.step-num {
  display: flex;
  width: 64px;
  min-width: 64px;
  height: 64px;
  padding-bottom: 2px;
  font-size: 40px;
  color: #FFF;
  line-height: 1.2;
  background: #31326f;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
}
.step-txt {
  padding: 16px 20px;
}
.step-inner {
  padding: 10px 24px 20px;
  font-weight: 500;
  line-height: 1.8;
}
.note {
  display: block;
  font-size: 12px;
}
.step-wrap .note {
  margin-bottom: 48px;
}
.item-btns {
  display: flex;
  justify-content: center;
}
.item-btns a {
  display: flex;
  width: 100%;
  max-width: 280px;
  height: 56px;
  font-size: 20px;
  font-weight: 700;
  color: #31326f;
  background: #FFF;
  border: 2px solid #31326f;
  border-radius: 50px;
  align-items: center;
  justify-content: center;
}

.lineup-wrap {
  max-width: 1220px;
  margin: 0 auto 120px;
}
.lineup-wrap .bk-title {
  margin-bottom: 48px;
}
.lineup-list {
  display: flex;
  gap: 40px 0;
  justify-content: space-between;
  flex-wrap: wrap;
}
.lineup-item {
  width: 49%;
}
.lineup-img {
	position: relative;
  display: block;
  text-align: center;
  border-radius: 20px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.lineup-img::before {
	content: "";
	display: block;
	width: 100%;
	padding-top: 54%;
}
.lineup-img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.lineup-car_name {
  position: relative;
  display: block;
  margin-top: -30px;
  font-size: 40px;
  color: #31326f;
  z-index: 1;
}
.car_price_group {
  display: flex;
  width: 100%;
  margin-bottom: 14px;
  text-align: center;
}
.group_item {
  width: 100%;
  padding: 18px 10px 20px;
  font-weight: 500;
  background: #e6f0f7;
}
.group_item:nth-child(2n) {
  background: #dcecf7;
}
.car_reserv_btns {
  display: flex;
  justify-content: center;
}
.car_reserv_btn {
  display: flex;
  width: 100%;
  max-width: 240px;
  height: 56px;
  font-size: 20px;
  font-weight: 700;
  color: #FFF;
  background: #31326f;
  border-radius: 50px;
  align-items: center;
  justify-content: center;
}
.f-news {
  max-width: 1220px;
  padding: 0 0 140px;
  margin: 0 auto;
}
.news-list {
  padding: 0 40px;
  margin-bottom: 64px;
}
.news_list_item {
  display: flex;
  padding: 25px 0;
  font-weight: 600;
  border-bottom: 2px solid #dcecf7;
}
.news_list_item time {
  display: block;
  margin-right: 40px;
  color: #31326f;
  white-space: nowrap;
}
.news_list_item p {
	-webkit-line-clamp: 1;
	-moz-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	box-orient: vertical;
	display: -webkit-box;
	display: -moz-box;
	display: box;
	overflow: hidden;
	white-space: normal;
	text-overflow: ellipsis;
}

@media screen and (max-width: 1440px) {
	.step-wrap,
	.lineup-wrap,
	.f-news {
	  max-width: 980px;
	}
}

@media screen and (max-width: 1024px) {
	.kv-wrap {
  	padding: 400px 0 80px;
  	border-radius: 25px;
	}
	.kv-txt {
  	left: 20px;
  	top: 120px;
  	bottom: auto;
	}
	.kv-txt h1 {
  	margin-bottom: 10px;
  	font-size: 40px;
	}
	.kv-form {
  	width: 80%;
	}

	.f-content {
  	padding: 0 25px;
	}
	.lineup-car_name {
  	margin-top: -20px;
  	font-size: 32px;
	}
}

@media screen and (max-width: 767px) {
	.f-kv {
  	padding: 10px 0 0 10px;
  	margin-bottom: 40px;
	}
	.kv-wrap {
  	padding: 80px 0 60px;
  	border-radius: 10px;
  	flex-wrap: wrap;
	}
	.kv-form {
  	width: calc(100% - 20px);
  	padding: 20px 16px;
  	order: 1;
	}
	.bk-title {
  	margin-bottom: 20px;
	}
	.kv-form table th,
	.kv-form table td {
  	display: block;
  	width: 100%;
	}
	.kv-form table td {
  	padding-bottom: 10px;
	}
	.form_fl {
  	font-size: 13px;
	}
	.cr-input label span {
  	padding-left: 28px;
	}
	.cr-input label span::before {
  	width: 17px;
  	height: 17px;
	}
	.cr-input label span::after {
  	width: 13px;
  	height: 13px;
	}
	.kv-form table {
  	margin-bottom: 16px;
	}
	.form-btns .form-btn {
	  width: 240px;
	  height: 46px;
	  padding-bottom: 2px;
  	font-size: 16px;
	}
	.kv-txt {
    position: relative;
    top: auto;
    left: auto;
    padding: 0 20px 0 0;
    margin-bottom: 20px;
    white-space: normal;
  }
  .kv-txt h1 {
  	margin-bottom: 6px;
  	font-size: 34px;
	}
	.kv-note {
  	font-size: 11px;
	}

	.f-content {
  	padding: 0 15px;
	}
	.pp-title {
  	padding: 0 15px;
  	margin-bottom: 48px;
	}
	.pp-title span {
  	padding: 10px 24px;
  	font-size: 20px;
	}
	.pp-title span::after {
		right: 10%;
	}

	.step-item {
  	width: 100%;
	}
	.step-num {
	  width: 56px;
	  min-width: 56px;
	  height: 56px;
	  font-size: 32px;
  	border-radius: 8px;
	}
	.step-txt {
	  padding: 16px 10px 10px 14px;
	  font-size: 20px;
	}
	.step-inner {
  	padding: 10px 16px 16px;
  	font-size: 14px;
	}
	.item-btns a,
	.car_reserv_btn {
  	max-width: 240px;
  	height: 48px;
  	font-size: 16px;
	}

	.step-wrap,
	.lineup-wrap {
  	margin-bottom: 64px;
	}

	.bk-title span {
  	font-size: 24px;
	}

	.lineup-list {
  	gap: 28px 0;
	}
	.lineup-item {
  	width: 100%;
	}
	.lineup-img::before {
  	padding-top: 68%;
	}
	.lineup-car_name {
  	margin-top: -22px;
  	margin-bottom: 6px;
  	font-size: 28px;
	}
	.group_item {
  	padding: 8px 10px;
  	font-size: 14px;
	}

	.f-news {
		padding-bottom: 80px;
	}
	.news-list {
	  padding: 0 10px;
	  margin-bottom: 32px;
	}
	.news_list_item {
  	padding: 16px 0;
  	font-size: 14px;
  	align-items: center;
	}
	.news_list_item time {
  	margin-right: 24px;
  	font-size: 12px;
	}
}

/*--------------PAGES---------------*/
.page {
  padding: 180px 40px 120px;
}
.content-inner {
	max-width: 1220px;
	margin: 0 auto;
}
.page-title {
  margin-bottom: 64px;
}

.content-case {
  padding: 20px 20px 48px;
  margin-bottom: 40px;
  background: #e3e9f0;
  border-radius: 10px;
}
.dot-title {
  position: relative;
  display: flex;
  margin-bottom: 24px;
  font-size: 32px;
}
.dot-title::before {
  content: "・";
  color: #31326F;
}
.content-text .color {
	color: #31326F;
}
.inner-flex-box {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.box {
  width: 44%;
  max-width: 470px;
  padding: 16px 20px 30px;
  color: #FFF;
  line-height: 1.7;
  background: #637AB9;
  border-radius: 10px;
}
.content-case > .content-text:not(:last-child),
.content-case > .inner-flex-box:not(:last-child),
.content-case > .inner-table {
	margin-bottom: 28px;
}
.box-title {
  font-weight: 800;
}
.inner-table th {
  padding: 4px 32px 4px 12px;
  text-align: left;
  font-weight: 400;
  background: #F4F4F4;
  border: 2px solid #BABABA;
}
.inner-table td {
  padding: 4px 32px 4px 12px;
  background: #FFF;
  border: 2px solid #BABABA;
}

@media screen and (max-width: 1440px) {
	.content-inner {
		max-width: 980px;
	}
	.dot-title {
  	font-size: 26px;
	}
}

@media screen and (max-width: 767px) {
	.page {
  	padding: 100px 15px 80px;
	}
	.page-title {
		margin-bottom: 48px;
	}

	.content-case {
  	padding: 16px 12px;
  	font-size: 14px;
	}
	.dot-title {
  	margin-bottom: 12px;
  	font-size: 20px;
	}
	.inner-flex-box {
		justify-content: center;
		gap: 12px;
	}
	.box {
  	width: 100%;
  	padding: 16px 12px;
  	margin-bottom: 24px;
	}
	.content-case > .content-text:not(:last-child),
	.content-case > .inner-flex-box:not(:last-child),
	.content-case > .inner-table {
  	margin-bottom: 13px;
	}
	.inner-table {
  	overflow-x: auto;
	}
	.inner-table table {
  	min-width: 480px;
  	font-size: 12px;
	}
}

.faq-item {
  margin: 20px 0;
}
.faq-question {
  display: block;
  max-width: 880px;
  padding: 4px 20px;
  margin: 0 auto;
  font-size: 18px;
  color: #fff;
  background: #4FB7B3;
}
.faq-answer {
  max-width: 880px;
  padding: 16px 20px;
  margin: 0 auto;
  background: #FFF;
}
.faq-answer a {
	display: inline-block;
	color: #4FB7B3;
	text-decoration: underline;
}

@media screen and (max-width: 767px) {
	.faq-question {
  	padding: 8px 12px 9px;
  	font-size: 16px;
  	line-height: 1.4;
	}
	.faq-answer {
  	padding: 12px;
	}
}

.price-table {
	margin-bottom: 24px;
}
.price-table table {
  width: 100%;
  text-align: left;
  font-weight: bold;
}
.price-table table th,
.price-table table td {
  padding: 20px 40px;
  background: #e6f0f7;
}
.price-table table th {
  width: 240px;
  color: #31326f;
}
.price-table table tr:nth-child(2n) th,
.price-table table tr:nth-child(2n) td {
	background: #dcecf7;
}

@media screen and (max-width: 767px) {
	.price-table table tr {
  	display: block;
  	margin-bottom: 10px;
	}
	.price-table table th,
	.price-table table td {
	  display: block;
	  width: 100%;
	  padding: 12px 16px;
	}
	.price-table table th {
  	border-bottom: 1px dotted #31326f;
	}
}

.shop-table table {
	width: 100%;
	text-align: left;
	font-weight: 600;
}
.shop-table th,
.shop-table td {
  padding: 20px 40px;
  background: #e6f0f7;
}
.shop-table table iframe {
	width: 100%;
	height: 280px;
	border-radius: 10px;
}
.shop-table table tr:nth-child(2n) th,
.shop-table table tr:nth-child(2n) td {
	background: #dcecf7;
}

.shop-note {
  display: block;
  margin-top: 20px;
  font-size: 13px;
  text-align: right;
}
.shop-note a {
	display: inline-block;
	color: #637AB9;
	text-decoration: underline;
}

@media screen and (max-width: 767px) {
	.shop-table table tr {
  	display: block;
  	margin-bottom: 10px;
	}
	.shop-table table th,
	.shop-table table td {
	  display: block;
	  width: 100%;
	  padding: 12px 16px;
	}
	.shop-table table th {
  	border-bottom: 1px dotted #31326f;
	}
}

.post-pager .wp-pagenavi {
  display: flex;
  justify-content: center;
  gap: 0 8px;
}
.post-pager .wp-pagenavi span,
.post-pager .wp-pagenavi a {
  display: flex;
  width: 32px;
  height: 32px;
  font-size: 12px;
  color: #31326f;
  font-weight: 600;
  border-radius: 50%;
  border-color: #31326f;
  align-items: center;
  justify-content: center;
}
.post-pager .wp-pagenavi .pages {
  width: auto;
  border: none;
}
.post-pager .wp-pagenavi .current {
  color: #FFF;
  background: #31326f;
}

.search-wrap {
  padding: 32px 20px;
  background: #FFF;
}
.search-wrap table {
	max-width: 640px;
	margin: 0 auto 24px;
}
.search-wrap th,
.search-wrap td {
  padding: 4px 0;
}

.car-list {
  margin: 80px 0;
}
.car-info-box {
  display: flex;
  background: #FFF;
  flex-wrap: wrap;
}
.car-info-box dl {
  width: calc(100% / 3);
  font-size: 12px;
  text-align: center;
}
.car-info-box dl dt {
  padding: 4px 10px;
  background: #e6f0f7;
}
.car-info-box dl dd {
  padding: 8px 10px;
}

@media screen and (max-width: 767px) {
	.car .search-wrap {
  	padding: 12px 10px 20px;
  	font-size: 14px;
	}
	.car .search-wrap table {
  	margin-bottom: 12px;
	}
	.car .search-wrap th,
	.car .search-wrap td {
    display: block;
    width: 100%;
    text-align: left;
  }
  .car .search-wrap th {
    color: #31326F;
  }
  .car .search-wrap td {
  	margin-bottom: 4px;
	}
}

.reserv_item {
  padding: 24px;
  margin-bottom: 40px;
  background: #FFF;
}
.reserv_item table {
  width: 100%;
}
.reserv_item table th,
.reserv_item table td {
	padding: 14px 20px;
  background: #fff;
}
.reserv_item table th {
  padding-top: 20px;
  text-align: left;
  vertical-align: text-top;
}
.reserv_item table th span {
  display: inline-block;
  margin-left: 3px;
  color: #31326f;
}
.reserv_item .input-item input,
.reserv_item .select-item select {
  padding: 0 12px;
  height: 40px;
}
.reserv_item .cr-input .mwform-checkbox-field,
.reserv_item .cr-input .mwform-radio-field {
  display: block;
}
.mw_wp_form .reserv_item .horizontal-item + .horizontal-item {
	margin: 10px 0 0;
}
.reserv_item .form_fl {
  align-items: center;
}
.form_item_note {
  display: block;
  margin: 10px 0 0;
  font-size: 11px;
  color: #31326f;
}
.reserv_item .input-item,
.reserv_item .select-item {
	position: relative;
}
.reserv_item .input-item .error,
.reserv_item .select-item .error {
  position: absolute;
  right: 0;
  font-size: 10px;
  font-weight: 300;
  color: #ff0d0d;
}
.reserv-form .form-btns {
  gap: 0 40px;
}
.form-btns .form-btn.back {
  background: #7c7d86;
}
.reserv_item .form_fl > * {
  width: auto;
}

@media screen and (max-width: 767px) {
	.reserv_item {
  	padding: 12px 0;
	}
	.reserv_item table th,
	.reserv_item table td {
		display: block;
	}
	.reserv_item table th {
  	padding: 10px 15px 5px;
	}
	.reserv_item table td {
  	padding: 10px 15px;
	}
	.reserv-form .form-btns {
  	gap: 0 12px;
	}
	.reserv_item .form_fl {
  	flex-wrap: wrap;
  	gap: 4px 0;
	}
	.reserv_item .form_fl > * {
  	width: 100%;
	}
}

.car-modal {
  display: flex;
  width: 100%;
  padding: 4px 10px;
  font-size: 12px;
  text-align: right;
  justify-content: flex-end;
  background: #eff1f4;
}
.modal-name {
  white-space: nowrap;
}
.car-modal .modal-list span:not(:last-child)::after {
	content: "、";
}
.lineup-tag {
  position: absolute;
  top: 8px;
  left: 12px;
  padding: 1px 6px 2px;
  font-size: 12px;
  font-weight: 700;
  color: #4fb7b3;
  border: 1px solid #4fb7b3;
  border-radius: 4px;
  z-index: 1;
}

@media screen and (max-width: 767px) {
	.lineup-img img {
		object-fit: contain;
	}
}

.kv-reserv-btn {
  display: flex;
  width: 50%;
  padding: 200px 40px 0;
  justify-content: flex-end;
}
.kv-reserv-btn .kv-btn {
	color: #FFF;
  background: #4fb7b3;
  border-color: #4fb7b3;
  border-radius: 6px;
}
.reserv-form input[name="car_class"] {
  pointer-events: none;
  background: transparent;
}

@media screen and (max-width: 1024px) {
	.kv-reserv-btn {
  	padding-top: 50px;
	}
}

@media screen and (max-width: 767px) {
	.kv-reserv-btn {
	  width: 100%;
	  padding: 40px 20px 0;
	  justify-content: center;
	  order: 1;
	}
}

.kv-wrap {
	padding: 0;
	height: 640px;
}

@media screen and (max-width: 767px) {
	.kv-wrap {
		height: 560px;
	}
	.kv-txt {
	  position: absolute;
	  bottom: 20px;
	  left: 10px;
	  padding-right: 10px;
	  margin: 0;
	}
}

.header-btn small {
  display: block;
  margin: 5px 0 0;
  font-size: 64%;
  line-height: 1.1;
  text-align: center;
}