@charset "UTF-8";

/* ------------------------------------------------------------------
  reset
------------------------------------------------------------------ */
input,
button,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* ------------------------------------------------------------------
  .main
------------------------------------------------------------------ */
.main_content {
  padding: 40px 0 60px;
}
.main_contentTtl {
  font-size: 24px;
  font-weight: bold;
  position: relative;
  text-align: center;
  margin-bottom: 50px;
}
.main_contentTtl:after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #4289c8;
  position: absolute;
  left: 50%;
  bottom: -15px;
  margin-left: -30px;
}
.main_contentTtl-txt {
  position: relative;
}
.main_contentTtl-txt:before {
  content: "";
  display: block;
  position: absolute;
}
@media only screen and (max-width: 640px) {
  .main_content {
    padding: 20px 0 30px;
  }
  .main_contentTtl {
    margin-bottom: 40px;
  }
}

/* ------------------------------------------------------------------
  .searchMap
------------------------------------------------------------------ */
.searchMap {
  background-color: #ecf3f9;
}
.searchMap_ttl-txt {
  padding-left: 25px;
}
.searchMap_ttl-txt:before {
  background: url(../images/common/icon_map.png) no-repeat;
  background-size: contain;
  width: 20px;
  height: 28px;
  top: 50%;
  left: 0;
  margin-top: -15px;
}

/* ------------------------------------------------------------------
  .tabLists
------------------------------------------------------------------ */
.tabLists {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.tabLists_ele {
  width: 32%;
  width: 49%;
  padding: 8px 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  color: #4289c8;
  background-color: #ffffff;
  text-align: center;
}
.tabLists_ele-active {
  color: #ffffff;
  background-color: #4289c8;
  position: relative;
}
.tabLists_ele-active:after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(../images/common/arrow_tab.png) no-repeat;
  position: absolute;
  bottom: -18px;
  left: 50%;
  margin-left: -9px;
}
.tabLists_ele-all {
  padding: 27px 0;
}
.tabLists_ele-monthly span,
.tabLists_ele-time span {
  position: relative;
}
.tabLists_ele-monthly span:before,
.tabLists_ele-time span:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin: 0 auto 5px;
}
.tabLists_ele-monthly span:before {
  background: url(../images/common/icon_park_blue.png) no-repeat;
  background-size: contain;
}
.tabLists_ele-time span:before {
  background: url(../images/common/icon_time_blue.png) no-repeat;
  background-size: contain;
}
.tabLists_ele-monthly.tabLists_ele-active span:before {
  background: url(../images/common/icon_park_white.png) no-repeat;
  background-size: contain;
}
.tabLists_ele-time.tabLists_ele-active span:before {
  background: url(../images/common/icon_time_white.png) no-repeat;
  background-size: contain;
}
.tabArea_box {
  display: none;
  margin-top: 25px;
}
.tabArea_box-show {
  display: block;
}
.tabArea_box iframe {
  width: 100%;
  height: 55vh;
  border: 2px solid #4289c8;
}

/* ------------------------------------------------------------------
  .searchArea
------------------------------------------------------------------ */
.searchArea_ttl-txt {
  padding-left: 55px;
}
.searchArea_ttl-txt:before {
  background: url(../images/common/icon_search.png) no-repeat;
  background-size: contain;
  width: 44px;
  height: 44px;
  top: 50%;
  left: 0;
  margin-top: -22px;
}
@media only screen and (max-width: 640px) {
  .searchArea_ttl-txt {
    padding-left: 30px;
  }
  .searchArea_ttl-txt:before {
    width: 22px;
    height: 22px;
    margin-top: -11px;
  }
}

/* .searchForm
------------------------------------- */
.searchForm {
  font-weight: bold;
  background-color: #f2f2f2;
  padding: 25px;
}
.searchForm label {
  font-weight: bold;
  position: relative;
}
.searchForm .searchForm_selectWrapper {
  display: inline-block;
  background-color: #ffffff;
  height: 40px;
  position: relative;
}
.searchForm_check-line input:first-child + label {
  margin-right: 5px;
}
.searchForm .searchForm_selectWrapper:after {
  content: "▼";
  color: #ffffff;
  background-color: #4289c8;
  padding: 8px 12px;
  font-size: 16px;
  position: absolute;
  top: 0;
  right: 0;
  line-height: 1.5;
}
.searchForm .searchForm_selectWrapper select {
  height: 40px;
  padding-left: 10px;
  position: relative;
  z-index: 10;
  font-size: 16px;
  cursor: pointer;
}
@media only screen and (max-width: 640px) {
  .searchForm {
    padding: 10px;
  }
  .searchForm .searchForm_selectWrapper {
    height: 30px;
    width: 100%;
  }
  .searchForm .searchForm_selectWrapper:after {
    padding: 6px 9px;
    font-size: 12px;
  }
  .searchForm .searchForm_selectWrapper select {
    height: 30px;
    font-size: 11px;
  }
  .searchForm_selectWrapper-max {
    float: right;
  }
}

/* .searchForm_area
------------------------------------- */
.searchForm_area {
  margin-bottom: 10px;
}
.searchForm_area label {
  padding-left: 25px;
}
.searchForm_area label:before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/common/icon_map_s.png) no-repeat;
  background-size: contain;
  width: 20px;
  height: 27px;
  top: 50%;
  left: 0;
  margin-top: -14px;
}
.searchForm_area .searchForm_selectWrapper select {
  width: 230px;
}
@media only screen and (min-width: 641px) {
  .searchForm_area {
    display: inline-block;
    margin-bottom: 20px;
    margin-right: 82px;
    font-size: 20px;
  }
}
@media only screen and (max-width: 640px) {
  .searchForm_area label {
    padding-left: 20px;
    margin-bottom: 2px;
    display: block;
  }
  .searchForm_area label:before {
    width: 15px;
    height: 21px;
    margin-top: -10px;
  }
  .searchForm_area .searchForm_selectWrapper select {
    width: 100%;
  }
}

/* .searchForm_price
------------------------------------- */
.searchForm_price {
  margin-bottom: 15px;
}
.searchForm_price label {
  padding-left: 25px;
}
.searchForm_price label:before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/common/icon_yen.png) no-repeat;
  background-size: contain;
  width: 22px;
  height: 28px;
  top: 50%;
  left: 0;
  margin-top: -14px;
}
.searchForm_price .searchForm_selectWrapper select {
  width: 230px;
}
@media only screen and (min-width: 641px) {
  .searchForm_price {
    display: inline-block;
    font-size: 20px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 640px) {
  .searchForm_price label {
    padding-left: 20px;
    margin-bottom: 2px;
    display: block;
  }
  .searchForm_price label:before {
    width: 15px;
    height: 20px;
    margin-top: -10px;
  }
  .searchForm_price .searchForm_selectWrapper select {
    width: 100%;
  }
  .searchForm_pricelange {
    display: block;
    text-align: center;
  }
}

/* .searchForm_check
------------------------------------- */
.searchForm_check {
  font-size: 14px;
  float: left;
}
.searchForm_check-line {
  margin-bottom: 5px;
}
.searchForm_check label {
  cursor: pointer;
}
.searchForm_check label:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 1px solid #4289c8;
  margin-right: 5px;
  vertical-align: text-top;
}
.searchForm_check-line input:first-child + label {
  margin-right: 5px;
}
.searchForm_check input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: -4px;
  left: 6px;
  width: 6px;
  height: 12px;
  transform: rotate(40deg);
  border-bottom: 3px solid #4289c8;
  border-right: 3px solid #4289c8;
}
@media only screen and (max-width: 640px) {
  .searchForm_check {
    margin-bottom: 15px;
    float: none;
  }
}

/* .searchForm_submit
------------------------------------- */
.searchForm_submit {
  width: 250px;
  padding: 10px;
  background-color: #f08437;
  text-align: center;
  float: right;
  cursor: pointer;
}
.searchForm_submit input {
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
}
@media only screen and (max-width: 640px) {
  .searchForm_submit {
    padding: 10px;
    margin: 0 auto;
    cursor: pointer;
    float: none;
  }
}

/* ------------------------------------------------------------------
  .itemInfo
------------------------------------------------------------------ */
.itemInfo {
  background: url(../images/bg_parking.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.itemInfo_ttl {
  color: #ffffff;
}
@media only screen and (min-width: 641px) {
  .itemInfo_btn {
    width: 50%;
    margin: 0 auto;
  }
}

/* .itemBox, monthly
------------------------------------- */
.itemBox {
  margin-bottom: 15px;
}
.itemBox_ttl {
  background-color: #4289c8;
  color: #ffffff;
  font-size: 22px;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  padding: 10px 0;
}
.itemBox_ttl-txt {
  padding-left: 28px;
  position: relative;
  display: inline-block;
}
.itemBox_ttl-txt:before {
  content: "";
  display: block;
  position: absolute;
  width: 23px;
  height: 23px;
  top: 50%;
  left: 2px;
  margin-top: -11px;
}
.itemBox_ttl-monthly .itemBox_ttl-txt:before {
  background: url(../images/common/icon_park_white.png) no-repeat;
  background-size: contain;
}
.itemBox_txtArea {
  background-color: #ffffff;
  padding: 20px;
}
.itemBox_btn {
  font-size: 16px;
  background-color: #f08437;
  width: 80%;
  margin: 10px auto 0;
  padding: 7px 10px;
  text-align: center;
}
.itemBox_btn a {
  color: #ffffff;
}
@media only screen and (min-width: 641px) {
  .itemBox {
    width: 48%;
    float: left;
    margin-bottom: 40px;
  }
  .itemBox:first-of-type {
    margin-right: 4%;
  }
}

/* .itemBox_time
------------------------------------- */
.itemBox_ttl-time .itemBox_ttl-txt:before {
  background: url(../images/common/icon_time_white.png) no-repeat;
  background-size: contain;
}
.itemBox_txtArea-small {
  background-color: #ffffff;
  padding: 15px;
}
.itemBox_img {
  position: relative;
}
.itemBox_labelArea {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-around;
}
.itemBox_label {
  width: 34%;
  color: #ffffff;
  font-size: 12px;
  text-align: center;
  line-height: 1;
  padding: 6px 2px;
}
.itemBox_label-time {
  background-color: #9fe173;
}
.itemBox_label-maximum {
  background-color: #f2a8d0;
}
.itemBox_label-nomotorcycle {
  background-color: #999999;
}
.itemBox_label-motorcycle {
  background-color: #4289c8;
}
.itemBox_subttl {
  text-align: center;
}
.itemBox_subttl-b {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}
.itemBox_subttl-s {
  font-size: 14px;
}
.itemBox_txt {
  font-size: 12px;
}
@media only screen and (min-width: 641px) {
  .itemBox-left,
  .itemBox-right {
    width: 50%;
    float: left;
  }
}
@media only screen and (max-width: 640px) {
  /* .itemBox_img {
    height: 125px;
    overflow: hidden;
  } */
}

/* ------------------------------------------------------------------
  #parking .news
------------------------------------------------------------------ */
#parking .news_day {
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
}
.news_head {
  color: #67a9d7;
  border-color: #67a9d7;
}
.news_btn a {
  background-color: #67a9d7;
}

/* ------------------------------------------------------------------
  aki
------------------------------------------------------------------ */
.mapInfo .-aki {
  display: none;
}

.mapInfo .-full {
  color: red;
}

.bosyuCheck__wrap {
  margin-bottom: 30px;
  padding: 20px;
  background: #fff;
  text-align: center;
}

.bosyuCheck {
  appearance: auto;
  cursor: pointer;
}

.bosyuCheck__label {
  cursor: pointer;
  font-weight: bold;
}
