@charset "utf-8";

/* =========================================
共通 2024-02-07 09:15
========================================= */
/*レイアウト*/
body {
   background-color: #FFF;
}
body.fixed {
  position: fixed !important;
  width: 100% !important;
  height: 100% !important;
}
.content {
  padding-top: 78px;
  margin-bottom: 70px;
}
.content.top {
  margin-bottom: 100px;
}
.contentInner {
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.main {
  width: calc(100% - 415px);
}
.sub {
  width: 400px;
}
.sticky {
  position: sticky;
  top: 100px;
  z-index: 1;
}
.search .sticky {
  position: relative;
  top: 0;
}

@media screen and (max-width: 1200px) {
  .main {
    width: calc(100% - 360px);
  }
  .sub {
    width: 345px;
  }
}

@media (max-width: 970px) {
  .content {
    padding-top: 61px;
  }
}

@media screen and (max-width: 768px) {
  .content {
    padding-top: 50px;
  }
  .search .sticky {
    position: relative;
  }
  .sticky {
    position: static;
  }
}

.flexWrap {
  display: flex;
}
.pcOnly {
  display: block;
}
.spOnly {
  display: none;
}

@media screen and (max-width: 768px) {
  .pcOnly {
    display: none;
  }
  .spOnly {
    display: block;
  }
}

/*パンくず*/
.topicPath {
  margin-bottom: 20px;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  background-color: #eeeeee;
}
.topicPath ul {
  padding: 9px 10px 9px;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
.topicPath li,
.topicPath a {
  padding-right: 5px;
  color: #000;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
}
.topicPath a {
  text-decoration: underline;
}
.topicPath a:hover {
  text-decoration: none;
}

@media (max-width: 970px) {
  .topicPath {
    margin-bottom: 0;
  }
  .topicPath ul {
    height: auto;
    padding: 10px 10px;
    display: block;
  }
  .topicPath li {
    display: inline;
  }
  .topicPath li,
  .topicPath a {
    font-size: 12px;
  }
}

/*打ち消し線*/
.del {
  text-decoration: none;
  margin-right: 10px;
  display: inline-block;
  position: relative;
}
.del:after {
  content: "";
  width: 100%;
  height: 4px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}


.carInfoBox img {
  width: 100%;
  height: auto;
  margin-bottom: 8px;
}
.carInfoBox .lead {
  margin-bottom: 8px;
  color: #523c26;
  font-size: 12px;
  font-weight: bold;
}
.carInfoBox .name {
  margin-bottom: 10px;
  color: #000;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.25;
}
.carInfoBox .price {
  margin-bottom: 7px;
  color: #555;
  font-size: 11px;
  line-height: 1.25;
}
.carInfoBox .price span {
  padding-right: 0.5em;
  color: #B90000;
  font-size: 14px;
  font-weight: bold;
}
.carInfoBox .total {
  font-size: 10px;
}

@media screen and (max-width: 768px) {
  .carInfoBox img {
    margin-bottom: 5px;
  }
  .carInfoBox .lead {
    margin-bottom: 5px;
    font-size: 11px;
  }
  .carInfoBox .name {
    margin-bottom: 2px;
    color: #000;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.25;
  }
  .carInfoBox .price {
    margin-bottom: 4px;
    color: #555;
    font-size: 10px;
    line-height: 1.5;
  }
  .carInfoBox .price span {
    padding-right: 0.5em;
    font-size: 12px;
  }
  .carInfoBox .total {
    padding-top: 1px;
  }
}

/*レビュー数*/
.rateBox:after {
  content: "";
  display: table;
  clear: both;
}
.rateBox li {
  color: #0a4b84;
  font-size: 12px;
  line-height: 1.25;
  float: left;
}
.rateBox .total {
  color: #555;
}

/*検索ボックス*/
.formArea {
  width: 400px;
  background-color: #0073B9;
  position: relative;
}
.formInner {
  padding: 19px 20px;
}
.formArea .tit {
  margin-bottom: 20px;
  color: #FFF;
  font-size: 14px;
  font-weight: bold;
}
.formArea .subTit {
  margin-bottom: 5px;
  color: #FFF;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
}
.formArea .flexWrap {
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.formArea .formAreaItem {
  margin-top: 20px;
}
.formArea .formAreaItem:first-of-type {
  margin-top: 0;
}
.formArea .selectWrap {
  width: 170px;
}
.formInput {
  margin-top: 5px;
  position: relative;
}
.formInput:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 8px solid #0a4b84;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}
.formInput:first-of-type {
  margin-top: 0;
}
.formInput .input,
.formInput .select,
.formInput span {
  width: 170px;
  height: 30px;
  padding-left: 13px;
  color: #000;
  /*font-size: 12px;*/
  background-color: #FFF;
  border: none;
  border-radius: 2px;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
.formInput input::-webkit-input-placeholder,
.formInput textarea::-webkit-input-placeholder {
  color: #000;
  font-weight: normal;
}
.formInput input:-ms-input-placeholder,
.formInput textarea:-ms-input-placeholder {
  color: #000;
  font-weight: normal;
}
.formInput input::-moz-placeholder,
.formInput textarea::-moz-placeholder {
  color: #000;
  font-weight: normal;
}
.formInput.calendar:after {
  content: "";
  pointer-events: none;
  width: 14px;
  height: 14px;
  border: none;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/common/ico_calendar.png) no-repeat center /cover;
}
.formInput.js-modalOpen select {
  pointer-events: none;
}
.select {
  width: 100%;
  height: 100%;
  height: 30px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.selecType {
  margin-top: -7px;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
select::-ms-expand {
  display: none;
}
.selecType li {
  width: 115px;
  margin-top: 7px;
}
.selecType input {
  display: none;
}
.selecType label {
  width: 100%;
  height: 56px;
  font-size: 12px;
  font-weight: normal;
  text-align: center;
  line-height: 1.3333;
  text-decoration: none;
  border-radius: 2px;
  background-color: #FFF;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.3);
  transition: .3s;
  cursor: pointer;
}
.selecType input:checked + label,
.selecType label:hover {
  box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.3);
  color: #fff;
  border: 1px solid #fff;
  background-color: #0A4B84;
}

/*出発日・返却日選択*/
.modal {
  display: block;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  top: 115px;
  left: 20px;
  z-index: 1000;
  width: calc(100% - 40px);
  background-color: #FFF;
  box-shadow: 2px 3px 6px 0px rgba(0, 0, 0, 0.5);
  overflow: visible;
  transition: .3s;
}
.modal.is-active {
  opacity: 1;
  visibility: visible;
}
.startSelect .modal {
  left: -5px;
}
.endSelect .modal {
  left: auto;
  right: -145px;
}
#startTime.modal,
#endTime.modal {
  top: 150px;
}
#startPref.modal,
#endPref.modal {
  top: 190px;
}
#startPlace.modal,
#endPlace.modal {
  top: 230px;
}
.modal:before {
  content: "";
  width: 0;
  height: 0;
  border-bottom: 11px solid #fff;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
}

.modal.modalCalender {
  width: 800px;
  left: -5px;
  right: auto !important;
  transition: 0s;
}
.modal.modalCalender:before {
  left: 180px;
}
.endSelect .modal.modalCalender:before {
  left: 371px;
}
.modal .datepicker {
  width: 100% !important;
  padding: 0 10px;
  z-index: 100;
}
.modal .ui-datepicker {
  width: 100% !important;
}
.modal .ui-datepicker-group {
  width: 50% !important;
  padding: 0;
}
.modal .ui-datepicker table {
  margin-bottom: 0.7em;
}
.modal .ui-datepicker .ui-datepicker-header {
  width: calc(100% + 20px);
  margin-left: -10px;
  padding: 7px 0 7px;
  background-color: #fff;
  border-bottom: 1px solid #999;
}
.modal .ui-datepicker .ui-datepicker-title {
  color: #000;
  font-size: 16px;
  font-weight: bold;
}
.modal .ui-datepicker .ui-datepicker-prev,
.modal .ui-datepicker .ui-datepicker-next {
  width: 0;
  height: 0;
  top: 14px;
}
.modal .ui-datepicker .ui-datepicker-prev {
  left: 11px;
}
.modal .ui-datepicker .ui-datepicker-next {
  right: 19px;
}
.modal .ui-datepicker .ui-datepicker-prev:before,
.modal .ui-datepicker .ui-datepicker-next:before {
  content: "";
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  position: absolute;
  top: 0;
  left: 0;
}
.modal .ui-datepicker .ui-datepicker-prev:before {
  border-right: 10px solid #0A4B84;
}
.modal .ui-datepicker .ui-datepicker-next:before {
  border-left: 10px solid #0A4B84;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 0;
  margin-left: 0;
  top: 0;
  margin-top: 0;
}
.modal .ui-datepicker table {
  margin-top: 11px;
}
.modal .ui-datepicker th {
  width: 46px;
  padding-top: 9px;
  padding-bottom: 6px;
  font-size: 15px;
  text-align: center;
}
.modal .ui-datepicker td {
  padding: 1px;
}
.modal .ui-datepicker td .ui-state-hover,
.modal .ui-datepicker td .ui-state-active {
  color: #fff !important;
  border-color: transparent;
  background-color: #3695D5 !important;
  vertical-align: middle;
  text-align: center;
}
.modal .ui-state-default {
  width: 47px;
  height: 47px;
  margin: 0 auto;
  font-size: 15px;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 50%;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
}
.modal .ui-state-disabled .ui-state-default {
  color: #CCC;
  border-color: transparent;
}
/*土曜日の色を設定*/
.modal .ui-datepicker .ui-datepicker-week-end:last-child span,
.modal .ui-datepicker .ui-datepicker-week-end:last-child a {
  color: #3A94C9;
}
.modal .ui-datepicker .ui-datepicker-week-end:last-child span.ui-state-active,
.modal .ui-datepicker .ui-datepicker-week-end:last-child a.ui-state-active {
  color: #FFF;
}
/*日曜日の色を設定*/
.modal .ui-datepicker .ui-datepicker-week-end:first-child span,
.modal .ui-datepicker .ui-datepicker-week-end:first-child a {
  color: #e94357;
}
.modal .ui-datepicker .ui-datepicker-week-end:first-child span.ui-state-active,
.modal .ui-datepicker .ui-datepicker-week-end:first-child a.ui-state-active {
  color: #FFF;
}
.modal .ui-datepicker .ui-state-disabled.ui-datepicker-unselectable span {
  color: #BBB;
}
/*期間選択*/
.formArea input:disabled,
.formArea .is-disabled {
  cursor: default;
  background-color: #ccc;
  position: relative;
}
.formArea .is-disabled:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  background: rgba(204,204,204,.6);
}

.formArea input::-webkit-input-placeholder {
  opacity: 1;
}
.formArea input::-moz-placeholder {
  opacity: 1;
}



.modal .ui-datepicker .ui-state-selected {
  color: #FFF !important;
  background: #61aee2;
}
.modal .ui-datepicker .ui-state-selected.ui-state-active {
  background-color: #0A4B84 !important;
}
.formArea .modal .ui-datepicker input:disabled {
  cursor: default;background-color: #ccc;
}
.ui-state-selected{
  background: #61aee2;
}
.modalItem {
  padding: 20px 15px 22px;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.modalTit {
  width: 100%;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
  text-align: left;
}
.modalItem .flexWrap {
  width: 100%;
  margin-top: -7px;
  margin-left: -7px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
}
.modalItem li {
  width: calc(33.33333% - 7px);
  margin-top: 7px;
  margin-left: 7px;
}
.modalItem input {
  display: none;
}
.modalItem label {
  width: 100%;
  height: 34px;
  color: #0A4B84;
  font-size: 13px;
  font-weight: normal;
  text-align: center;
  line-height: 1.3333;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid #0A4B84;
  background-color: #fff;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.3);
  transition: .3s;
}
.modalItem label:hover,
.modalItem input:checked + label {
  box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.1);
  color: #fff;
  border: 1px solid transparent;
  background-color: #0A4B84;
}

.overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, .5);
}
.js-calendarOpen.is-active {
  z-index: 1000;
}

@media screen and (max-width: 1200px) {
  .modal {
    width: 360px;
    top: 90px;
  }
  .startSelect .modal {
    left: 5px;
  }
  .endSelect .modal {
    left: auto;
    right: -155px;
  }
  .search .startSelect .modal {
    /*left: -25px;*/
  }
  .search .startSelect .modal.modalCalender:before {
    left: 156px;
  }
  .search .endSelect .modal.modalCalender:before {
    left: 321px;
  }
  .search .modal.modalCalender {
    left: 0;
    transform: translateX(0);
  }
  #startTime.modal,
  #endTime.modal {
    top: 130px;
  }
  #startPref.modal,
  #endPref.modal {
    top: 169px;
  }
  #startPlace.modal,
  #endPlace.modal {
    top: 210px;
  }
  .modal.modalCalender {
    left: 0;
  }
  .modal.modalCalender:before {
    left: 183px;
  }
  .endSelect .modal.modalCalender:before {
    left: 377px;
  }
}

@media screen and (max-width: 970px) {
  .modal.modalCalender {
    width: 700px;
    left: 50%;
    transform: translateX(-50%);
  }
  .modal.modalCalender:before {
    left: 333px;
  }
  .startSelect .modal.modalCalender:before {
    left: 157px;
  }
}

@media screen and (max-width: 768px) {
  .modal {
    top: 90px;
    left: 0;
    width: 100%;
    height: auto;
  }
  .startSelect .modal {
    left: 0 !important;
  }
  .endSelect .modal {
    left: 0;
    right: auto;
  }
  #startTime.modal,
  #endTime.modal {
    top: 128px;
  }
  #startPref.modal,
  #endPref.modal {
    top: 167px;
  }
  #startPlace.modal,
  #endPlace.modal {
    top: 209px;
  }
  .modal.modalCalender {
    transform: translateX(0);
  }
  .modal.modalCalender:before {
    left: 334px;
  }
  .setSelect .modal.modalCalender:before {
    left: auto;
    right: 7px;
  }
  .endSelect .modal.modalCalender:before {
    left: auto;
    right: 7px;
  }
  .search .startSelect .modal.modalCalender:before {
    left: calc(50% - 17px);
  }
  .search .endSelect .modal.modalCalender:before {
    left: auto;
    right: 7px;
  }
  .startSelect .modal:before {
    left: calc(50% - 17px);
  }
  .endSelect .modal:before {
    left: auto;
    right: 8px;
  }
  .modal.modalCalender {
    width: 100%;
    left: 0;
    right: auto !important;
    transition: 0s;
  }
  .modal .ui-datepicker-group {
    width: 100% !important;
    padding: 0;
  }
  .modal .ui-datepicker-group-last {
    padding-top: 30px;
  }
  .modal .datepicker {
    width: 100%;
    padding: 0 10px;
    z-index: 100;
    overflow-y: scroll;
  }
  .search .modal .datepicker {
    height: 900px;
  }
  .modal .ui-datepicker {
    width: 100%;
    padding: 0;
  }
  .modal .ui-datepicker .ui-datepicker-header {
    width: calc(100% + 20px);
    margin-left: -10px;
    padding: 7px 0 3px;
    border-bottom: 1px solid #999;
  }
  .modal .ui-datepicker .ui-datepicker-title {
    font-size: 14px;
  }
  .modal .ui-datepicker .ui-datepicker-prev,
  .modal .ui-datepicker .ui-datepicker-next {
    width: 30px;
    height: 1.2em;
    top: 12px;
  }
  .modal .ui-datepicker .ui-datepicker-prev {
    left: 0px;
  }
  .modal .ui-datepicker .ui-datepicker-next {
    right: 0px;
  }
  .modal .ui-datepicker .ui-datepicker-prev:before,
  .modal .ui-datepicker .ui-datepicker-next:before {
    content: "";
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .modal .ui-datepicker .ui-datepicker-prev:before {
    border-right-width: 7px;
    margin-left: 2px;
  }
  .modal .ui-datepicker .ui-datepicker-next:before {
    border-left-width: 7px;
    margin-right: 2px;
  }
  .modal .ui-datepicker table {
    margin-top: 10px;
  }
  .modal .ui-datepicker th {
    width: 46px;
    padding-top: 9px;
    padding-bottom: 6px;
    font-size: 12px;
    text-align: center;
  }
  .modal .ui-datepicker td {
    padding: 1px;
  }
  .modal .ui-datepicker td .ui-state-hover,
  .modal .ui-datepicker td .ui-state-active {
    color: #fff !important;
    border-color: transparent;
    background-color: #3695D5;
  }
  .modal .ui-state-default {
    width: 40px;
    height: 40px;
    font-size: 14px;
    text-align: center;
    border: 1px solid transparent;
  }
  .modalTit {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .modalItem li {
    width: calc(50% - 7px)
  }
  .modalItem label {
    font-size: 14px;
  }
  .modalItem label:hover {
    box-shadow: 0;
    color: #fff;
    border: 1px solid transparent;
    background-color: #0A4B84;
  }
  .formInput .input {
    padding-top: 5px;
  }
}


@media screen and (max-width: 1200px) {
  .kvArea {
    padding-top: 34px;
  }
  .formArea {
    width: 100%;
    max-width: 400px;
  }
  .formInner {
    padding: 19px 10px;
  }
  .formArea .tit {
    margin-bottom: 10px;
    color: #FFF;
    font-size: 14px;
    font-weight: bold;
  }
  .formArea .subTit {
    margin-bottom: 5px;
    font-size: 12px;
  }
  .formArea .formAreaItem {
    margin-top: 20px;
  }
  .formArea .selectWrap {
    width: calc(50% - 3px);
  }
  .formInput {
    margin-top: 8px;
    position: relative;
  }
  .formInput:after {
    border-top: 6px solid #0a4b84;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
  }
  .formInput .input,
  .formInput .select,
  .formInput span {
    width: 100%;
    padding-left: 5px;
    /*font-size: 10px;*/
  }
  .formInput.calendar:after {
    width: 12px;
    height: 12px;
  }

  .selecType {
    margin-top: -8px;
  }
  .selecType li {
    width: calc(50% - 3px);
    margin-top: 8px;
  }
  .selecType label {
    height: 35px;
    font-size: 10px;
  }
}

.refineBox {
  padding: 10px 15px 23px;
  border: 5px solid #0073B9;
  border-top: none;
  -webkit-background-size: 4px 4px;
  -moz-background-size: 4px 4px;
  background-size: 4px 4px;
  background-color: #fff;
  background-image: -webkit-gradient(linear, 0 0, 100% 100%,
              color-stop(.25, #eaf3f8), color-stop(.25, transparent),
              color-stop(.5, transparent), color-stop(.5, #eaf3f8),
              color-stop(.75, #eaf3f8), color-stop(.75, transparent),
              to(transparent));
  background-image: -webkit-linear-gradient(-45deg, #eaf3f8 25%, transparent 25%,
            transparent 50%, #eaf3f8 50%, #eaf3f8 75%,
            transparent 75%, transparent);
  background-image: -moz-linear-gradient(-45deg, #eaf3f8 25%, transparent 25%,
            transparent 50%, #eaf3f8 50%, #eaf3f8 75%,
            transparent 75%, transparent);
  background-image: -ms-linear-gradient(-45deg, #eaf3f8 25%, transparent 25%,
            transparent 50%, #eaf3f8 50%, #eaf3f8 75%,
            transparent 75%, transparent);
  background-image: -o-linear-gradient(-45deg, #eaf3f8 25%, transparent 25%,
            transparent 50%, #eaf3f8 50%, #eaf3f8 75%,
            transparent 75%, transparent);
  background-image: linear-gradient(-45deg, #eaf3f8 25%, transparent 25%,
            transparent 50%, #eaf3f8 50%, #eaf3f8 75%,
            transparent 75%, transparent);
}
.refineBox > .tit {
  margin-bottom: 25px;
  padding: 0;
  color: #000;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
.refineBox .refineItem:first-of-type {
  margin-bottom: 28px;
}
.refineBox .refineItem + .refineItem {
  margin-top: 20px;
}
.refineBox .subTit {
  margin-bottom: 13px;
  color: #000;
  font-size: 12px;
  font-weight: bold;
}
.refineBox .subTit > span {
  margin-left: 15px;
  font-weight: normal;
  display: inline-block;
}
.refineBox .ui-slider {
  height: 6px;
  margin-right: 7px;
  background-color: #CCC;
}
.refineBox .ui-slider .ui-slider-range {
  background-color: #0073B9;
}
.refineBox .ui-slider .ui-slider-handle {
  width: 23px;
  height: 23px;
  margin-top: -4px;
  border-radius: 50%;
  border: 2px solid #0073B9;
  background-color: #FFF;
}
.raidoWrap + .raidoWrap {
  margin-top: 7px;
}
.raidoWrap input {
  display: none;
}
.raidoWrap label {
  padding-left: 33px;
  position: relative;
  cursor: pointer;
}
.raidoWrap label:before {
  content: "";
  width: 26px;
  height: 12px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  overflow: hidden;
  background: url(../images/common/bg_radio.png) no-repeat left top / cover;
}
.raidoWrap label:hover,
.raidoWrap input:checked + label {
  color: #0073B9;
}
.raidoWrap input:checked + label:before {
  background-position: left bottom;
}

@media (max-width: 970px) {
  .refineBox > .tit {
    margin-bottom: 15px;
  }
  .refineBox .refineItem:first-of-type {
    margin-bottom: 20px;
  }
  .refineBox .refineItem + .refineItem {
    margin-top: 20px;
  }
  .refineBox .subTit {
    margin-bottom: 13px;
    color: #000;
    font-size: 12px;
    font-weight: bold;
  }
  .refineBox .subTit > span {
    margin-left: 10px;
  }
  .raidoWrap + .raidoWrap {
    margin-top: 7px;
  }
}

@media screen and (max-width: 768px) {
  .formArea {
    max-width: 100%;
  }
}

.btnSubmit {
  width: 227px;
  margin: 22px auto 0;
  padding: 0;
  display: block;
  position: relative;
}
.btnSubmit a,
.btnSubmit button {
  width: 100%;
  height: 42px;
  color: #000;
  font-size: 13px;
  font-weight: bold;
  border: none;
  border-radius: 2px;
  background-color: #FED600;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  text-shadow: 1px 1px 0px rgba(255, 255, 255, .7);
  box-shadow: 1px 2px 6px 0px rgba(0, 0, 0, 0.5);
  transition: .3s;
}
.btnSubmit a{
  /* text-indent: -1em; */
}
.btnSubmit a:hover,
.btnSubmit button:hover {
  opacity: 0.8;
  box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.3);
}
.btnSubmit:before,
.btnSubmit:after {
  content: "";
  pointer-events: none;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  position: absolute;
  right: 13px;
  transform: translateY(-50%);
}
.btnSubmit:before {
  border-left: 8px solid #000;
  z-index: 10;
  top: 50%;
}
.btnSubmit:after {
  border-left: 8px solid #fff;
  top: calc(50% + 1px);
  z-index: 1;
}
.searchList .btnSubmit{
  width: 250px;
}
/* ----------------------------------------------------------------------
 ヘッダー
---------------------------------------------------------------------- */
#headerArea {
  width: 100%;
  padding-bottom: 14px;
  background-color: #FFF;
  position: fixed;
  top: 0;
  z-index: 500;
}
#headerIn {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}
.headerLogo {
  padding: 16px 4px 0 16px;
  margin-left: -11px;
  display: flex;
  align-items: center;
}
#headerArea a {
  text-decoration: none;
}
#headerArea a:hover {
  text-decoration: underline;
}
.headerLogo img{
  width: auto;
  max-height: 45px;                           
}
.rentacarLog {
  color: #251E1C;
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 0 4px;
  line-height: 1.4;
}
.rentacarLog span {
  font-size: 10px;
  display: block;
}
.headerSub {
  margin-left: auto;
  position: relative;
}
.utilityNav {
  padding: 7px 15px 8px;
  margin-bottom: 12px;
  background-color: #0A4B84;
}
.utilityNav ul {
  display: flex;
}
.utilityNav li {
  margin-right: 1em;
  color: #fff;
  font-size: 10px;
  line-height: 1;
}
.utilityNav li:after {
  content: "|";
}
.utilityNav li:last-child:after {
  content: normal;
}
.utilityNav a {
  margin-right: 1em;
  color: #fff;
  font-size: 10px;
  line-height: 1;
}
.utilityNav a:hover {
  text-decoration: underline;
}
.globalNav ul {
  padding: 5px 15px 6px;
  display: flex;
}
.globalNav li {
  margin-right: 40px;
}
.globalNav a {
  color: #251E1C;
  font-size: 13px;
  font-weight: bold;
}
.globalNav a:hover {
  text-decoration: underline;
}
.selectLanguage {
  width: 104px;
  position: absolute;
  right: 0;
  bottom: 2px;
  text-align: center;
}
.selectLanguage:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 4px 0 4px;
  border-color: #0a4b84 transparent transparent transparent;
  pointer-events: none;
}
.selectLanguage select {
  width: 100%;
  padding: 5px 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 12px;
  border: 1px solid #0a4b84;
  border-radius: 0;
  background-color: #FFF;
  text-align: center;
}
#navSp,
#menuSp {
  display: none;
}

@media (max-width: 970px) {
  #headerArea {
    padding-bottom: 0;
  }
  .headerSub {
    display: none;
  }
  .headerLogo {
    margin-left: 0;
    padding: 8px 5px 8px;
    width: auto;
  }
  #navSp {
    display: block;
    position: absolute;
    top: 12px;
    right: 5px;
  }
  #menuSp {
    display: none;
    width: 100%;
    height: auto;
    padding: 10px 0 20px;
    position: absolute;
    top: 61px;
    z-index: 200;
    left: 0px;
    box-shadow: 0px 6px 3px -3px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 6px 3px -3px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 6px 3px -3px rgba(0,0,0,0.2);
    z-index: 2000;
    background-color: rgba(255,255,255,.98);
    text-align: center;
    display: none;
    border-top: #ccc solid 1px;
  }
  .globalNav ul {
    padding: 0 15px 0;
    margin-bottom: 10px;
    display: block;
  }
  .globalNav li {
    width: 100%;
    height: 40px;
    margin-right: 0;
    display: flex;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-align-items: center;
            align-items: center;
  }
  .globalNav a {
    color: #251E1C;
    font-size: 16px;
    font-weight: bold;
    display: block;
  }
  .utilityNav {
    padding: 0;
    margin-bottom: 20px;
    background-color: transparent;
  }
  .utilityNav ul {
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    border-top: 1px dotted #0A4B84;
  }
  .utilityNav li {
    width: 50%;
    margin-right: 0;
    color: #fff;
    font-size: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
    line-height: 1;
    border-bottom: 1px dotted #0A4B84;
  }
  .utilityNav li:nth-child(odd) {
    border-right: 1px dotted #0A4B84;
  }
  .utilityNav li:after {
    content: normal;
  }
  .utilityNav a {
    margin-right: 0;
    color: #0A4B84;
    font-size: 15px;
    font-weight: bold;
    line-height: 1;
    display: block;
  }
  .selectLanguage {
    width: 150px;
    margin: 0 auto;
    position: relative;
    right: auto;
    bottom: auto;
    text-align: center;
  }
  .selectLanguage:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 4px 0 4px;
    border-color: #0a4b84 transparent transparent transparent;
    pointer-events: none;
  }
  .selectLanguage select {
    width: 100%;
    padding: 5px 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 12px;
    border: 1px solid #0a4b84;
    border-radius: 0;
    background-color: #FFF;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .mainLog img {
    /* width: 100%; */
    height: 40px;
  }
  .rentacarLog {
    font-size: 12px;
    text-align: left;
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translateY(-50%);
    margin: 0;
  }
  #navSp {
    right: 5px;
  }
  #menuSp {
    top: 49px;
    z-index: 600;
  }
}


/* ----------------------------------------------------------------------
 TOP
---------------------------------------------------------------------- */
 /*key visual*/
.kvArea {
  height: 519px;
  padding: 20px 0 0;
  background: url(../images/index/bg_kv.png?2022) no-repeat center top / cover;
  position: relative;
}
.kvArea .inner {
  width: auto;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.kvArea .formArea {
  box-shadow: 2px 3px 10px 0px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
}
.kvArea .slick {
  width: 63.666666667%;
  max-width: 740px;
  padding: 12px 0 73px;
}
.kvArea .slick img {
  width: 100%;
  height: auto;
}
.kvArea .slick-dots {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: flex;

}
.kvArea .slick-dots li {
  color: transparent;
  margin-right: 4px;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-color: transparent;
  border-radius: 50%;

}
.kvArea .slick-dots li button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;

}
.kvArea .slick-dots .slick-active {
  background-color: #0a4b84;
}

@media (max-width: 1200px) {
  .kvArea .slick {
    width: 55%;
    padding-top: 80px;
    padding-left: 30px;
  }
}

@media (max-width: 970px) {
  .kvArea {
    height: auto;
    padding: 41px 0;
  }
  .kvArea .inner {
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-align-items: center;
            align-items: center;

  }
  .kvArea .formArea {
    order: 2;
  }
  .kvArea .slick {
    width: 100%;
    max-width: 100%;
    padding: 12px 0 20px;
    margin-left: 0;
    margin-bottom: 10px;
    order: 1;
  }
  .kvArea .slick-dots {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
  }
  .kvArea .slick-dots li {
    width: 15px;
    height: 15px;
  }
}
/* -- h2見出しデザイン -- */
.recommendArea .cTit{
    color: #0A4B84;
    border-bottom: dashed 3px #6594e0;
    padding: 2rem 0 1.5rem;
    margin-bottom: 4rem;
    font-size: 2.18rem;
}
@media (max-width: 768px){
  .recommendArea .cTit{
    font-size: 1.8rem;
    margin-bottom: 1rem;
    padding: 2rem 0 1rem;
  }
}
/* -- End h2見出しデザイン -- */

/* -- 選ばれるポイント -- */
section.point{
  margin-top: 3rem;
}
.point .point__layout{
  display: flex;
  justify-content: space-between;
}
.point .point__layout dl{
  width: calc((100% / 3) - 3rem);
}
.point .point__layout dt img{
  width: 80%;
  display: block;
  margin: 0 auto;
}
.point .point__layout dd{
  margin-top: 1.5rem;
  text-align: center;
}
.point .point__layout dd h3{
  display: inline-block;
  font-weight: bold;
  font-size: 1.2rem;
  color: #0A4B84;
  background: linear-gradient(transparent 70%, #FECE15 70%);
}
.point .point__layout dd h3 span{
  font-size: 2rem;
}
.point .point__layout dd ul{
  display: inline-block;
  margin-top: 1rem;
}
.point .point__layout dd li{
  text-align: left;
  margin-top: .5rem;
  font-size: 1rem;
}
.point .point__layout dd li i{
  color: #0A4B84;
  margin-right: .3rem;
}
@media (max-width: 768px){
  section.point{
    margin-top: 4rem;
  }
  .point .point__layout{
    display: block;
  }
  .point .point__layout dl{
    width: 100%;
    margin-top: 3rem;
  }
  .point .point__layout dd{
    margin-top: 1rem;
  }
  .point .point__layout dt img{
    width: 60%;
  }
  .point .point__layout dd ul{
    margin-top: .8rem;
  }
  .point .point__layout dd li{
    margin-top: .4rem;
    font-size: .9rem;
  }
}
/* -- End-選ばれるポイント -- */

/*おすすめ*/
.cTit {
  margin-bottom: 23px;
  color: #000;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.recommendArea {
  padding: 26px 0 49px;
}
.recommendArea .inner {
  padding: 0 60px;
}
.recommendArea a {
  display: block;
  transition: .3s;
}
.recommendArea a:hover {
  opacity: 0.7;
}
.recommendArea .slick {
  width: 100%;
  position: relative;
}
.recommendArea .slick-arrow {
  width: 47px;
  height: 92px;
  padding: 0;
  position: absolute;
  top: 40px;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  transition: .3s;
  cursor: pointer;
}
.recommendArea .slick-arrow:hover {
  opacity: 0.7;
}
.recommendArea .slick-prev {
  left: -58px;
  content: "";
  width: 47px;
  height: 92px;
  background: url(../images/index/ico_arrow_slider_prev.png) no-repeat center / cover;
}
.recommendArea .slick-next {
  right: -58px;
  content: "";
  width: 47px;
  height: 92px;
  background: url(../images/index/ico_arrow_slider_next.png) no-repeat center / cover;
}
.recommendArea .slickItem {
  padding: 0 10px;
}

@media (max-width: 768px) {
  .cTit {
    margin-bottom: 10px;
    font-size: 18px;
  }
  .recommendArea {
    padding: 0 16px;
    margin-top: 4rem;
  }
  .recommendArea .inner {
    padding: 0 10px;
  }
  .recommendArea .slickItem {
    padding: 0 5px;
  }
  .recommendArea .slick-arrow {
    top: 50%;
    transform: translateY(-50%) scale(.5);
  }
  .recommendArea .slick-prev {
    left: -39px;
  }
  .recommendArea .slick-next {
    right: -39px;
  }
}

/*車種から探す*/
.typeSearchArea {
  margin-bottom: 48px;
  padding: 0 8px;
}
.typeSearchArea a {
  display: block;
  transition: .3s;
}
.typeSearchArea a:hover {
  opacity: 0.7;
}
.typeSearchArea .inner {
  padding: 24px 47px 37px;
  border: #0A4B84 solid 1px;
  background-color: #F1F8FD;
}
.typeSearchArea .list {
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.typeSearchArea .list li {
   max-width: 190px;
   background-color: #FFF;
}
.typeSearchArea .list li + li {
  margin-left: 15px;
}
.typeSearchArea .list img {
  width: 100%;
  height: auto;
}
.typeSearchArea .list .name {
  padding: 10px 10px;
  color: #000;
  font-size: 12px;
  font-weight: bold;
  overflow: hidden;
}
.typeSearchArea .list .name span {
  margin-bottom: 5px;
  font-size: 10px;
  font-weight: normal;
  display: block;
}

@media (max-width: 768px) {
  .typeSearchArea .inner {
    padding: 10px 10px 20px;
  }
  .typeSearchArea .list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: center;
            justify-content: center;
  }
  .typeSearchArea .list li {
    width: calc((100% / 3) - 10px);
    max-width: 100%;
  }
  .typeSearchArea .list li + li {
    margin-left: 10px;
  }
  .typeSearchArea .list li:nth-child(4),
  .typeSearchArea .list li:nth-child(5) {
    margin-top: 10px;
  }
  .typeSearchArea .list .name {
    padding: 3px 5px 5px;
  }
  .typeSearchArea .list .name span {
    margin-bottom: 3px;
  }
}

/*レビュー*/
.reviewList {
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.reviewItem {
  width: 49.1666667%;
  padding: 15px 20px 13px;
  border-bottom: 1px solid #cccccc;
}
.reviewItem:nth-child(1),
.reviewItem:nth-child(2) {
  border-top: 1px solid #cccccc;
}
.reviewList .name {
  margin-bottom: 9px;
  overflow: hidden;
}
.reviewList .name .icon {
  width: 50px;
  height: 50px;
  float: left;
  margin-right: 20px;
  border-radius: 50%;
  overflow: hidden;
}
.reviewList .name .reviewerName {
  margin-top: 5px;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: bold;
}
.reviewList .name a {
  transition: .3s;
}
.reviewList .name a:hover {
  opacity: 0.8;
}
.reviewList .tit {
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: bold;
}
.reviewList .txt {
  font-size: 12px;
  line-height: 1.5;
}
.reviewArea .more {
  margin-top: 40px;
  text-align: center;
}
.reviewArea .more a {
  font-size: 14px;
  font-weight: bold;
  text-decoration: underline;
}
.reviewArea .more a:hover {
  text-decoration: none;
}

@media (max-width: 768px) {
  .reviewItem {
    width: 100%;
    padding: 15px 20px 10px;
  }
  .reviewItem:nth-child(2) {
    border-top: none;
  }
  .reviewArea .more {
    margin-top: 20px;
  }
}


/*レンタカーを探す*/
.search .main {
  order: 2;
  position: relative;
}
.search .sub {
  order: 1;
}
.searchConditions {
  display: none;
}

.search .sub .formArea {
  height: auto;
}

.featureList li {
  width: calc(100% / 6);
  min-height: 1.5rem;
  padding: .3rem .5rem;
  color: #d7d7d7;
  font-size: 10px;
  line-height: 1.2;
  border: 1px solid #fff;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.featureList li:last-child {
  margin-right: 4px;
}
@media screen and (max-width: 768px){
  .featureList li {
    width: auto;
    font-size: 9px;
    padding: .2rem;
  }
}
.featureList .point {
  color: #FFF;
  background-color: #0073B9;
}
.featureList {
  margin-top: 4px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.detailArea .featureList{
  margin-top: 24px;
}
.detailSlider .warning{
  margin-top: 4px;
  display: block;
  margin-top: .8rem;
}
@media screen and (max-width: 768px){
  .detailArea{
    margin-top: 16px;
  }
}
.label {
  height: 28px;
  margin-bottom: 8px;
  padding: 0 55px 0 8px;
  color: #FFF;
  font-size: 14px;
  font-weight: bold;
  -webkit-border-radius: 0;
          border-radius: 0;
  display: inline-flex;
  -webkit-align-items: center;
          align-items: center;
  position: relative;
}
.label:after {
  content: "";
  width: 0;
  height: 0;
  border-right: 15px solid #fff;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  position: absolute;
  top: -1px;
  right: -1px;
}
.top3Label {
  background-color: #0073B9;
}
.top3Box {
  margin-bottom: 36px;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.top3Box > a {
  width: calc(33.33333% - 16px);
  transition: .3s;
}
.top3Box > a:hover {
  opacity: 0.7;
}

.typeChangeTab {
  margin-bottom: 12px;
  border-bottom: 3px solid #0073B9;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.typeChangeTab li {
  width: calc((100%/5) - 2px);
  margin-right: .1rem;
}

.typeChangeTab a {
  width: 100%;
  height: 27px;
  font-size: 9px;
  font-weight: bold;
  text-align: center;
  line-height: 1.25;
  background-color: #eaf3f8;
  border-radius: 5px 5px 0 0;
  border-bottom: 1px solid #0073B9;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
}
.typeChangeTab a:hover,
.typeChangeTab .is-active {
  color: #FFF;
  background-color: #0073B9;
}

.resultHead {
  margin-bottom: 6px;
  -webkit-align-items: center;
          align-items: center;
}
.resultHead .txt {
  font-size: 14px;
}
.resultHead .txt span {
  font-weight: bold;
}
.resultHead .sort div{
  display: flex;
  justify-content: flex-end;
}
.resultHead .sort dt,
.resultHead .sort dd {
  padding-left: 1em;
  font-size: 14px;
}
.resultHead .sort a:hover,
.resultHead .sort .is-active {
  color: #0073B9;
  text-decoration: underline;
}
.resultItem {
  padding: 16px 20px 16px;
  border: 4px solid #eeeeee;
  border-top: 4px solid #0073b9;
}
.resultItem + .resultItem {
  margin-top: 20px;
}
/* レンタカー検索画面のPR枠-2023.07 */
.pr-area{
  border-top: 4px solid #eeeeee!important;
  margin-top: 20px;
}
.pr-area .product{
  display: flex;
  align-items: center;
  font-size: .9em;
  color: #ddd;
  margin: .4px 0 6px;
}
.pr-flex{
  display: flex;
  justify-content: space-around;
}
.pr-flex article{
  margin: 20px 10px 0;
  width: 100%;
}
.pr-flex .logo{
  width: 40px;
  height: 40px;
}
.pr-flex .logo img{
  width: 100%;
}
.pr-flex .img{
  text-align: center;
}
.pr-flex .btnBox .txt{
  text-align: right;
}
.pr-flex .btnBox .left{
  color: #555;
  font-size: .75em;
  margin-right: 6px;
}
.pr-flex .btnBox .right{
  color: #B90000;
    font-size: 26px;
    font-weight: bold;
}
@media screen and (max-width: 1110px){
  .pr-flex{
    display: block;
  }
  .pr-flex article{
    margin: 20px 0 0;
  }
  .pr-flex .logo{
    position: absolute!important;
  }
}
/* end-レンタカー検索画面のPR枠-2023.07 */
.carName {
  margin-bottom: 14px;
  position: relative;
}
.carName .tit {
  padding-right: 100px;
  margin-top: 4px;
  font-size: 19px;
  font-weight: bold;
}
.carName .rateBox {
  margin-bottom: 7px;
}
.carName .logo {
  position: absolute;
  top: 0;
  right: 0;
}
.resultItem .body {
  margin-bottom: 15px;
  position: relative;
}
.resultItem .body .img {
  width: 31.3299%;
  margin-right: 14px;
  flex: 0 0 auto;
}
.resultItem .body .img img {
  width: 100%;
  height: auto;
}
.resultItem .body .detailList li {
  display: flex;
}
.resultItem .body .detailList li + li {
  margin-top: 4px;
}
.resultItem .body .detailList .head {
  width: 84px;
  padding: 6px 0;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 0;
  background-color: #E9E7E9;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  flex: 0 0 auto;
}
.resultItem .body .detailList .body {
  padding-left: 14px;
  margin-bottom: 0;
  line-height: 1.5;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
.resultItem .body .btnBox {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
}
.resultItem .body .btnBox .txt {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.resultItem .body .btnBox .left {
  color: #555;
  font-size: 10px;
  margin-right: 6px;
}
.resultItem .body .btnBox .del {
  font-size: 14px;
  display: block;
}
.resultItem .body .btnBox .right {
  color: #B90000;
  font-size: 26px;
  font-weight: bold;
}
.resultItem .body .btn {
  margin-top: 0;
  margin-bottom: 0;
}
.resultItem .foot .list li {
  font-weight: bold;
  font-size: 12px;
  line-height: 1.5;
  padding-left: 1.2em;
  text-indent: -1.2em;
}
.resultItem .foot .list li + li {
  margin-top: 4px;
}
.resultItem .foot .list li::before{
  content: "\f14a";
  font: normal normal normal 14px/1 FontAwesome;
  color: #FF5730;
  padding-right: 2px;
}
/*もっと見る*/
.btnMore {
  width: 100%;
  margin-top: 27px;
}
.btnMore a {
  width: 100%;
  height: 46px;
  font-size: 12px;
  font-weight: bold;
  border: 2px solid #FED600;
  background-color: #FFF8D3;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  transition: .3s;
}
.btnMore a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 1200px) {
  .resultItem > .body {
    padding-bottom: 90px;
  }

  .typeChangeTab {
    margin-bottom: 12px;
    border-bottom: 4px solid #0073B9;
  }
  .typeChangeTab a {
    height: 35px;
  }
  .typeChangeTab a:hover,
  .typeChangeTab .is-active {
    color: #FFF;
    border-bottom: 1px solid #0073B9;
    background-color: #0073B9;
  }

  .resultHead {
    /* margin-bottom: 17px; */
    display: block;
  }
  .resultHead .txt {
    font-size: 14px;
  }
  .resultHead .txt span {
    font-weight: bold;
  }
  .resultHead .sort {
    margin-top: 10px;
    margin-left: 0;
    display: block;
    /* display: flex; */
  }
  .resultHead .sort dt {
    padding-left: 0;
  }
  .resultHead .sort a:hover,
  .resultHead .sort .is-active {
    color: #0073B9;
    text-decoration: underline;
  }
}

@media screen and (max-width: 768px) {
  .search .contentInner {
    padding: 0 10px;
    -webkit-align-items: center;
            align-items: center;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .search .main {
    width: 100%;
    padding-top: 54px;
    position: relative;
  }
  .search .sub {
    width: 100vw;
    position: fixed;
    top: 50px;
    z-index: 11;
  }

  .top3Box > a {
    width: calc(33.33333% - 10px);
    transition: .3s;
  }
  .top3Box > a:hover {
    opacity: 0.7;
  }
  .typeChangeTab a {
    height: 55px;
  }
  .resultItem {
    padding: 16px 8px 10px;
    border: 4px solid #eeeeee;
    border-top: 4px solid #0073b9;
  }
  .resultItem > .head {
    padding-top: 0;
  }
  .carName .tit {
    padding-right: 62px;
  }
  .carName .logo {
    margin-bottom: 10px;
  }
  .resultItem > .body {
    padding-bottom: 0;
  }
  .resultItem .body .flexWrap {
    display: block;
  }
  .resultItem .body .img {
    width: 70%;
    margin: 0 auto 14px;
  }
  .resultItem .body .btnBox {
    width: 100%;
    margin-top: 14px;
    position: static;
  }
  .resultItem .body .btnBox .txt {
    -webkit-justify-content: center;
            justify-content: center;
  }

  .search .sub .formArea {
    display: none;
    height: 100vh;
    overflow: scroll;
    padding-bottom: 230px;
    position: relative;
  }
  .searchConditions {
    width: 100%;
    padding: 0 10px;
    border-top: 1px solid #c5c5c5;
    border-bottom: 1px solid #c5c5c5;
    background-color: #EEE;
    display: block;
  }
  .searchConditions .item {
    padding: 8px 4px 4px;
    display: flex;
    font-size: 11px;
    line-height: 1.5;
  }
  .searchConditions .item + .item {
    padding-right: 0;
    padding-bottom: 8px;
    border-top: 1px solid #c5c5c5;
    -webkit-justify-content: space-between;
            justify-content: space-between;
  }
  .searchConditions .startDateWrap {
    width: 55%;
    padding-right: 25px;
    position: relative;
  }
  .searchConditions .endDateWrap {
    width: 45%;
  }
  .searchConditions .startDateWrap:after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid #000000;
    border-bottom: 2px solid #000000;
    position: absolute;
    top: 50%;
    right: 15px;
    z-index: 10;
    transform: translateY(-50%) rotate(-45deg);
  }
  .searchConditions .btnSubmit {
    width: 101px;
    height: 35px;
    margin: 0;
    flex: 0 0 auto;
  }
  .searchConditions .btnSubmit a {
    height: 35px;
  }
  .searchConditions .btnSubmit:before,
  .searchConditions .btnSubmit:after {
    content: normal;
  }
  .refineBox .btnSubmit {
    margin-bottom: 30px;
  }
}

/*詳細*/
.detailSlider .list {
  margin-top: 20px;
}
.detailSlider .list li {
  padding: 6px 11px 6px;
  font-size: 12px;
  line-height: 1.5;
  border: 1px solid #0073B9;
  background-color: #eaf3f8;
}
.detailSlider .list li + li {
  margin-top: 5px;
}
.sliderImgs img {
  width: 100%;
  height: auto;
}
.sliderThumbs {
  margin-top: 1px;
  padding: 10px 53px;
  background-color: #e9e9e9;
}
.sliderThumbs li {
  width: 75px;
  height: 75px;
  margin: 0 5px;
  overflow: hidden;
  position: relative;
  transition: .3s;
}
.sliderThumbs li:hover {
  opacity: 0.9;
}
.sliderThumbs img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  backface-visibility: hidden;
}
.sliderThumbs .slick-arrow {
  width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  transition: .3s;
  cursor: pointer;
  background-color: #fed600;
}
.sliderThumbs .slick-prev {
  left: 15px;
  content: "";
  width: 28px;
  height: 28px;
}
.sliderThumbs .slick-next {
  right: 15px;
  content: "";
  width: 28px;
  height: 28px;
}
.sliderThumbs .slick-arrow:before,
.sliderThumbs .slick-arrow:after {
  content: "";
  pointer-events: none;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  position: absolute;
  left: calc(50% - 1px);
  transform: translate(-50%, -50%) rotate(90deg);
}
.sliderThumbs .slick-arrow:before {
  border-bottom: 5px solid #000;
  z-index: 10;
  top: 50%;
}
.sliderThumbs .slick-arrow:after {
  border-bottom: 5px solid #fff;
  top: calc(50% + 2px);
  z-index: 1;
}
.sliderThumbs .slick-prev.slick-arrow:before,
.sliderThumbs .slick-prev.slick-arrow:after {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.sliderThumbs .slick-next.slick-arrow:before,
.sliderThumbs .slick-next.slick-arrow:after {
  margin-left: 2px;
}
.sliderThumbs .slick-arrow:hover {
  opacity: 0.7;
}

.detailBox {
  margin-top: 35px;
}
.lineTit {
  padding-bottom: 8px;
  margin-bottom: 14px;
  color: #0063B9;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  border-bottom: 2px solid #0073B9;
}
.detailBox > .body {
  font-size: 14px;
  line-height: 1.75;
}
.detailBox a {
  color: #0073B9;
  text-decoration: underline;
}
.detailBox > .body a:hover {
  text-decoration: none;
}
.detailBox > .body .tit {
  margin-bottom: 5px;
  font-weight: bold;
}
.detailBox .note {
  color: #B90000;
  font-size: 12px;
}
.selectOptionWrap {
  margin-top: 15px;
}
.selectOptionWrap:first-of-type {
  margin-top: 0;
}

.selectOptionWrap .selectOption {
  margin: -7px 0 5px -7px;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.selectOptionWrap .selectOption li {
  width: 115px;
  margin: 7px 0 0 7px;
}
.selectOptionWrap .selectOption input {
  display: none;
}
.selectOptionWrap .selectOption label {
  width: 100%;
  padding: 10px 0 10px;
  color: #fff;
  font-size: 12px;
  font-weight: normal;
  text-align: center;
  line-height: 1.3333;
  text-decoration: none;
  border: 2px solid #0073b9;
  border-radius: 2px;
  background-color: #0073b9;
  display: block;
  box-shadow: 0px 3px 0 0px rgba(68, 68, 68, 1),
              0 -1px 0 0 #0073b9;
}
.selectOptionWrap .selectOption span {
  font-weight: bold;
}
.selectOptionWrap .selectOption input:checked + label,
.selectOptionWrap .selectOption label:hover{
  transform: translateY(1px);
  box-shadow: 0px 1px 0 0px #0A4B84,
              0 -1px 0 0 transparent;
  color: #fff;
  border: 2px solid transparent;
  background-color: #0A4B84;
}
.reserveDetail {
  margin-top: 40px;
  border: 5px solid #0073B9;
  -webkit-background-size: 4px 4px;
  -moz-background-size: 4px 4px;
  background-size: 4px 4px;
  background-color: #fff;
  background-image: -webkit-gradient(linear, 0 0, 100% 100%,
              color-stop(.25, #eaf3f8), color-stop(.25, transparent),
              color-stop(.5, transparent), color-stop(.5, #eaf3f8),
              color-stop(.75, #eaf3f8), color-stop(.75, transparent),
              to(transparent));
  background-image: -webkit-linear-gradient(-45deg, #eaf3f8 25%, transparent 25%,
            transparent 50%, #eaf3f8 50%, #eaf3f8 75%,
            transparent 75%, transparent);
  background-image: -moz-linear-gradient(-45deg, #eaf3f8 25%, transparent 25%,
            transparent 50%, #eaf3f8 50%, #eaf3f8 75%,
            transparent 75%, transparent);
  background-image: -ms-linear-gradient(-45deg, #eaf3f8 25%, transparent 25%,
            transparent 50%, #eaf3f8 50%, #eaf3f8 75%,
            transparent 75%, transparent);
  background-image: -o-linear-gradient(-45deg, #eaf3f8 25%, transparent 25%,
            transparent 50%, #eaf3f8 50%, #eaf3f8 75%,
            transparent 75%, transparent);
  background-image: linear-gradient(-45deg, #eaf3f8 25%, transparent 25%,
            transparent 50%, #eaf3f8 50%, #eaf3f8 75%,
            transparent 75%, transparent);
}
.reserveDetail > .head {
  padding: 12px 18px 14px;
  color: #FFF;
  font-size: 18px;
  font-weight: bold;
  background-color: #0073B9;
  display: flex;
}
.reserveDetail > .body {
  padding: 8px 10px 16px;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.reserveDetail .table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 2px;
  table-layout: fixed;
}
.reserveDetail .table th,
.reserveDetail .table td {
  font-size: 14px;
  line-height: 1.5;

  border-top: none;
}
.reserveDetail .table th {
  width: 130px;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  background-color: #E9E7E9;
}
.reserveDetail .table td {
  padding: 5px 0 5px 15px;
}
.reserveDetail .table .list li {
  overflow: hidden;
}
.reserveDetail .table .list span {
  width: 70px;
  float: right;
  text-align: right;
  display: inline-block;
}
.totalPrice {
  padding: 11px 5px 13px;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  background-color: #fff;
  border: 3px solid #FED600;
}
.totalPrice .price {
  color: #B90000;
  font-size: 26px;
  font-weight: bold;
}
.fwN {
  font-weight: normal;
}
.fwB {
  font-size: 15px;
  font-weight: bold;
  color: #0063B9;
}
.reserveDetail .btn {
  width: 100%;
  margin-top: 7px;
}
.reserveDetail .btn a {
  color: #000;
  text-decoration: none;
}
#refund_details{
  margin-bottom: 1rem;
}
.detailBox .mapWrao {
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.detailBox .map {
  width: 46.4516%;
  min-width: 250px;
  min-height: 335px;
  margin-right: 22px;
  position: relative;
  padding-bottom: 0;
  padding-top: 30px;
  overflow: hidden;
}
.detailBox .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.detailBox .txtBox {
  line-height: 1.5;
}
.reviewBox > .head {
  overflow: hidden;
}
.reviewBox > .head .tit {
  float: left;
  margin-right: 10px;
  font-weight: bold;
}
.reviewBox > .head .rateBox {
  margin-top: 5px;
  float: left;
}
.reviewBox > .head .rateBox .total {
  margin-top: 2px;
  font-size: 10px;
}
.detailBox .reviewList {
  margin-top: 35px;
  display: block;
}
.detailBox .reviewItem {
  width: 100%;
  border: 1px solid #CCC;
  border-top: none;
}
.detailBox .reviewItem:first-of-type {
  border-top: 1px solid #CCC;
}
.detailBox .more {
  margin-top: 20px;
  text-align: center;
}
.detailBox .more a {
  color: #000;
  font-size: 14px;
  font-weight: bold;
  text-decoration: underline;
}
.detailBox .more a:hover {
  text-decoration: none;
}
.sub .reserveDetail {
  margin-top: 0;
}
.sub .reserveDetail .head {
  padding: 10px 10px 11px 18px;
  -webkit-align-items: center;
          align-items: center;
}

.reserveDetail > .head .reserveChange {
  width: 108px;
  height: 25px;
  margin-top: -3px;
  margin-left: auto;
  color: #000;
  font-size: 12px;
  font-weight: bold;
  border: none;
  border-radius: 2px;
  background-color: #FED600;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  text-shadow: 1px 1px 0px rgba(255, 255, 255, .7);
  box-shadow: 1px 2px 6px 0px rgba(0, 0, 0, 0.5);
  transition: .3s;
}
.reserveDetail > .head .reserveChange:hover {
  opacity: 0.8;
  box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.3);
}

.sub .reserveDetail .reserveChange {
  width: 108px;
  height: 25px;
  margin-top: -3px;
  margin-left: auto;
  color: #000;
  font-size: 12px;
  font-weight: bold;
  border: none;
  border-radius: 2px;
  background-color: #FED600;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  text-shadow: 1px 1px 0px rgba(255, 255, 255, .7);
  box-shadow: 1px 2px 6px 0px rgba(0, 0, 0, 0.5);
  transition: .3s;
}
.sub .reserveDetail .reserveChange:hover {
  opacity: 0.8;
  box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.3);
}
.sub .reserveDetail > .body {
  display: block;
}
.sub .reserveDetail .table {
  margin-bottom: 0;
}
.sub .reserveDetail .table th {
  padding: 0;
}
.sub .reserveDetail .table td {
  padding: 2px 0 2px 15px;
}
.reserveDetail .table .priceCell {
  width: 80px;
  padding: 5px 0;
  text-align: right;
}
.sub .reserveDetail .totalPrice {
  padding: 16px 0 16px;
  border: none;
  border-top: 2px solid #0073b9;
  background-color: #FFF;
}
.sub .reserveDetail .foot {
  padding: 6px 0 9px;
  background-color: #0073B9;
}
.sub .reserveDetail .btn {
  width: 227px;
}

@media screen and (max-width: 1200px) {
  .detailBox .map {
    min-width: 250px;
    min-height: 250px;
  }
}

@media screen and (max-width: 970px) {
  .reserveDetail > .body {
    display: block;
  }
  .reserveDetail .table {
    margin-bottom: 0;
  }
  .reserveDetail .table th {
    padding: 0;
  }
  .reserveDetail .totalPrice {
    margin-top: 7px;
  }
}

@media screen and (max-width: 768px) {
  .detail .contentInner {
    padding: 0 10px;
    -webkit-align-items: center;
            align-items: center;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .detail .main {
    order: 1;
    width: 100%;
    margin-bottom: 60px;
  }
  .detail .sub {
    order: 2;
    width: auto;
  }
  .detailBox .mapWrap {
    display: block;
  }
  .detailBox .map {
    width: 100%;
    height: 300px;
    min-height: 0;
    margin-bottom: 10px;
  }
  .reserveDetail > .body {
    display: block;
  }
  .reserveDetail .table {
    margin-bottom: 0;
  }
  .selectOptionWrap .selectOption li {
    width: 110px;
  }
  .selectOptionWrap .selectOption label:hover {
    transform: translateY(0);
    border: 2px solid #0073b9;
    border-radius: 2px;
    background-color: #0073b9;
    display: block;
    box-shadow: 0px 3px 0 0px rgba(68, 68, 68, 1),
                0 -1px 0 0 #0073b9;
  }
}



/*マリンスポーツから探す*/
.searchArea {
  max-width: 1240px;
  margin: 0 auto 76px;
  padding: 0 20px;
}
.searchArea .list {
  margin-bottom: 23px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.searchArea .list li {
  margin-bottom: 27px;
  display: inline;
  border-right: 1px solid #0A4B84;
  border-left: 1px solid #0A4B84;
}
.searchArea .list li + li {
  margin-left: -1px;
}
.searchArea .list a {
  padding: 0 30px;
  color: #0A4B84;
  font-size: 17px;
  font-weight: bold;
  display: inline-block;
}
.searchArea .list li:nth-child(3) a,
.searchArea .list li:last-child a {
  border-right: none;
}
.searchArea .imgList {
  max-width: 1060px;
  margin: -20px auto 0;
  display: flex;
  flex-wrap: wrap;
}
.searchArea .imgList li {
  width: calc((100% / 4) - 20px);
  margin-top: 20px;
  margin-left: 20px;
  position: relative;
}
.searchArea .imgList li:nth-child(1),
.searchArea .imgList li:nth-child(5) {
  margin-left: 0;
}
.searchArea .imgList a {
  display: block;
  transition: .3s;
}
.searchArea .imgList a:hover {
  opacity: 0.8;
}
.searchArea .imgList img {
  width: 100%;
  height: auto;
}
.searchArea .imgList .txt {
  width: 100%;
  height: 37px;
  position: absolute;
  left: 0;
  bottom: 0;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #3072B3;
}

@media screen and (max-width: 970px) {
  .searchArea .imgList {
    justify-content: space-between;
  }
  .searchArea .imgList li {
    width: calc(50% - 10px);
    margin-left: 0;
  }
  .searchArea .imgList .txt {
    height: 25px;
  }
}

/* ----------------------------------------------------------------------
 details_2023
---------------------------------------------------------------------- */
html{
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

.pc-layout{
  display: block;
}
.sp-layout{
  display: none;
}
#noc-option span a{
  margin-left: 8px;
  font-size: .8em;
  color: #B90000;
}

.page-nav{
  max-width: 860px;
  margin: 40px auto 0;
  padding: 24px 47px 37px;
    border: #0A4B84 solid 1px;
    background-color: #F1F8FD;
}

.page-nav h2{
  font-size: 20px;
  font-weight: bold;
}

.page-nav ol {
  padding: 0 20px;
  list-style-type: decimal;
  font-size: 16px;
  padding-left: 1.5em;
}
.page-nav li{
  margin-top: 20px;
}
.page-nav a{
  display: block;
  margin-top: 6px;
}
.page-nav ol dl dt {
  font-weight: normal;
}

.page-nav a{
  color: #337ba7;
  text-decoration: none;
}

.page-nav a:hover{
  color: #FF8008;
}
@media screen and (max-width: 768px){
  .sp-layout{
    display: block;
  }
  .reserveDetail > .head {
    font-size: 18px;
    padding: 12px 18px 16px 10px;
}
.lineTit{
  font-size: 16px;
  margin: 20px 0 8px;
}
.reserveDetail .table select{
  width: 100%;
}
.detailBox .txtBox img{
  width: 100%;
}
.page-nav{
  padding: 16px 24px 28px;
}
.page-nav h2{
  font-size: 18px;
}
.page-nav li{
  font-size: 14px;
  margin-top: 20px;
}
.page-nav li a{
  margin-top: 8px;
}
}

/* ----------------------------------------------------------------------
  shop-page_2024
---------------------------------------------------------------------- */
.search__form{
  position: relative;
}
.search__form .gogo-cat{
  position: absolute;
  top: 170px;
  left: 90px;
  width: 20%;
}
.shop__search .tit{
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.shop__search .tit img{
width: 50px;
border-radius: 50%;
}
.shop__search .tit span{
  margin-left: 1rem;
  font-size: 1.8rem;
  color: #0A4B84;
  font-weight: bold;
}
@media screen and (max-width: 768px){
  .shop__search .tit{
    margin-top: 1.2rem;
  }
  .shop__search .tit span{
    font-size: 1.2rem;
  }
  .shop__search .slick{
    margin-top: 1.2rem;
  }
  .shopWrap .catch{
    margin-top: 0;
  }
  .shopWrap .catch p{
    font-size: 1rem;
  }
  .rent__slider{
    margin-top: 0;
    padding: 3rem 0.5rem!important;
  }
}
.shop__search .slick{
  /* width: 63.666666667%; */
  max-width: 740px;
}
.shop__search .slick img{
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.shop__search .slick-dots{
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: flex;
}
.shop__search .slick-dots li{
  color: transparent;
  margin-right: 4px;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-color: transparent;
  border-radius: 50%;
}
.shop__search .slick-dots .slick-active{
  background-color: #0a4b84;
}
.shop__search .slick-dots li button{
  appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.catch .inner{
  max-width: 900px;
}
.shop__head .catch{
  min-height: 80px;
  padding: .5rem;
}
.shop__head .catch p{
  padding: 4px;
  margin-bottom: 0;
}
.shopWrap .catch{
  padding: 0;
}
.shopWrap .catch p{
  line-height: 1.4;
  font-size: 1.2rem;
  text-align: center;
}
.shopWrap .shop__menu{
  background-color: #fff;
  margin-top: 70px;
}
.shopWrap .shop__menu ul{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto .5rem;
  display: flex;
  border-bottom: 2px solid #0073b9;
}
.shopWrap .shop__menu li{
  font-size: 1.2rem;
  margin-right: .1rem;
}
/* 非アクティブ状態のスタイル */
.shopWrap .shop__menu a {
  display: block;
  border-radius: 5px 5px 0 0;
  padding: 8px;
  color: #0073b9; /* 青いテキスト色 */
  background-color: #eaf3f8; /* 白い背景色 */
  text-decoration: none;
}
/* アクティブ状態のスタイル */
.shopWrap .shop__menu a.active {
  color: #ffff00; /* 白いテキスト色 */
  background-color: #0073b9; /* 青い背景色 */
}

/* 追従 */
.shopWrap .shop__menu.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 570;
}
@media screen and (max-width: 768px){
  .shopWrap .shop__menu{
    margin-top: 55px;
  }
  .shopWrap .shop__menu li{
    font-size: 1rem;
  }
}

.shopWrap .sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000; /* 他の要素より前面に表示 */
}

.hide-menu {
  display: none; /* 非表示 */
}

/* 追従メニューがstickyクラスを持っていない時のスタイルを定義 */
.shop__menu:not(.sticky) {
  background-color: #fff;
  padding: 10px;
}


/* End - 追従 */

.shopWrap #car__list{
  margin: 2rem auto;
}
.shop__contents{
  padding-top: 2.5rem;
}
.shop__contents .panel-heading{
  text-align: center;
  color: #ffff00;
}
@media only screen and (max-width : 1000px) {
  .shopWrap .shop__menu ul{
    padding: 0 .5rem;
  }
  .shop__contents .table__layout tr{
    display: flex;
    flex-direction: column;
  }
  .shop__contents .table__layout td{
    width: 100%;
  }
  .shop__contents .table__layout tr td:first-child{
    background-color: #d9edf7;
  }
}

/* Google Mapレスポンシブ */
.google__map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 42%; /* 比率調整 */
}

.google__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* End - Google Mapレスポンシブ */

/* LPボタン新デザイン2023.05.18 */

.btn-L, .primary-btn,
a.primary-btn {
  font-size: 1.2rem;
  font-weight: bold;
  position: relative;
  display: inline-block;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
}

.btn-L, .btn-M {
  margin-top: 64px;
  text-align: center;
  display: block;
}
@media (max-width: 768px){
  .btn-L, .btn-M {
    margin-top: 32px;
  }
}

.btn-L a.btn-c,  .btn-M a.btn-c{
  position: relative;
  padding: 1.5rem 2rem 1.5rem 3.5rem;
  color: #fff;
  background: #FF8008;
  box-shadow: 0 5px 0 #eb5b30;
}

.btn-M a.btn-c{
  display: inline-block;
  max-width: 100%;
  padding: 1rem 2rem 1rem 3rem;
  color: #fff;
  background: #FF8008;
  box-shadow: 0 5px 0 #eb5b30;
}

.btn-L a.btn-c span {
  font-size: 1rem;

  position: absolute;
  top: -1.25rem;
  left: calc(50% - 150px);

  display: block;

  width: 300px;
  padding: 0.2rem 0;

  color: #FF8008;
  border: 2px solid #FF8008;
  border-radius: 100vh;
  background: #fff;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}

.btn-L a.btn-c .btn-search, .btn-M a.btn-c .btn-search{
  display: flex;
  margin-left: -20px;
  align-items: center;
}
.btn-L a.btn-c .btn-search img, .btn-M a.btn-c .btn-search img{
  width: 40px;
  margin-right: 1rem;
}
@media screen and (max-width:768px) {
  .btn-L a.btn-c .btn-search, .btn-M a.btn-c .btn-search{
    margin-left: -34px;
  }
  .btn-L a.btn-c .btn-search img, .btn-M a.btn-c .btn-search img{
    width: 24px;
    margin-right: .5em;
  }
  
}
.btn-L a.btn-c span:before,
.btn-L a.btn-c span:after {
  position: absolute;
  left: calc(50% - 10px);

  content: "";
}

.btn-L a.btn-c span:before {
  bottom: -10px;

  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #eb5b30 transparent transparent transparent;
}

.btn-L a.btn-c span:after {
  bottom: -7px;

  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

.btn-L a.btn-c:hover, .btn-M a.btn-c:hover {
  transform: translate(0, 3px);
  color: #fff;
  background: #FF8008;
  -webkit-box-shadow: 0 2px 0 #eb5b30;
  box-shadow: 0 2px 0 #eb5b30;
}