/*! Lity - v2.4.1 - 2020-04-26
* http://sorgalla.com/lity/
* Copyright (c) 2015-2020 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}

.lity-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}

.lity-content {
  z-index: 9993;
  width: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition:
    transform 0.3s ease,
    -webkit-transform 0.3s ease;
}

.lity-loading .lity-content,
.lity-closed .lity-content {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

.lity-content:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}

.lity-close:active {
  top: 1px;
}

/* Image */
.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}

/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

.lity-hide {
  display: none;
}

.ui-label {
  display: inline-block;
  white-space: nowrap;
  color: #fff;
  padding: 0.3rem 1rem;
}

.ui-label-default {
  background-color: #cccccc;
}

.ui-label-active {
  background-color: #ed6103;
}

.ui-label-with {
  display: inline-block;
}

.ui-label-with:after {
  display: inline-block;
  content: "〇・";
}

.ui-label-with:last-of-type:after {
  content: "〇";
}

.ui-label-without {
  display: inline-block;
}

.ui-label-without:after {
  display: inline-block;
  content: "×・";
}

.ui-label-without:last-of-type:after {
  content: "×";
}

.ui-modal-container {
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.ui-modal-header {
  background: #ed6103;
  color: #fff;
  position: relative;
  min-height: 50px;
  line-height: 50px;
}

.ui-modal-header .title {
  text-align: center;
  margin-right: 50px;
  font-size: 1.8rem;
  font-weight: normal;
  padding-left: 6rem;
  font-weight: bold;
}

.ui-modal-close {
  border: 2px solid #fff;
  border-radius: 4px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  position: absolute;
  right: 1rem;
  top: 1rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  background: none;
  outline: none;
  box-shadow: none;
}

.ui-modal-close span {
  font-weight: 100;
  font-family:
    Verdana, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ",
    Meiryo, sans-serif;
  font-style: normal;
  font-size: 24px;
  line-height: 30px;
  display: inline-block;
  margin-top: -0.3rem;
}

.ui-modal-body {
  padding: 0 1rem 1rem;
  max-height: 60vh;
  overflow-y: scroll;
}

@media screen and (max-width: 768px) {
  .ui-modal-body {
    max-height: 50vh;
  }
}

.note-top {
  padding: 20px 10px;
}

@media screen and (max-width: 768px) {
  .note-top {
    padding: 20px 0;
  }
}

.note-top > p {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .note-top > p {
    line-height: 1.6;
    font-size: 1.2rem;
  }
}

.note-top > p + p {
  margin-top: 1rem;
}

.note-top > p a {
  color: #ed6103;
}

.ui-modal-footer {
  text-align: center;
  padding: 1rem;
  border-top: 1px solid #bdc8ca;
}

.ui-modal-footer a {
  color: #ed6103;
}
.ui-modal .notification a {
  color: #ed6103;
}
.ui-modal .notification a[href^="tel:"] {
  text-decoration: none;
  font-weight: bold;
}

.ui-modal-footer .ui-btn-sm {
  margin-top: 10px;
  padding: 1rem 3rem;
  font-weight: normal;
  font-size: 1.3rem;
  box-shadow: none;
  border-color: #bdc8ca;
}

.ui-modal-footer .ui-btn-sm:hover {
  top: 0;
}

.ui-table {
  width: 100%;
  max-width: 100%;
}

.ui-table th,
.ui-table td {
  padding: 0.75rem 1rem;
  line-height: 1.4;
}

.ui-table th {
  background-color: #f7f7f7;
  font-weight: normal;
  vertical-align: middle;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .ui-table th {
    vertical-align: top;
    width: 30%;
  }
}

.ui-table th a {
  color: #1f1f1f;
}

.ui-table-bordered th {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  width: 25%;
}

.ui-table-bordered td {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  width: 75%;
}

@media screen and (max-width: 768px) {
  .ui-table-bordered th,
  .ui-table-bordered td {
    font-size: 1.4rem;
  }
}

.ui-table-bordered th + th,
.ui-table-bordered th + td,
.ui-table-bordered td + th,
.ui-table-bordered td + td {
  border-left: 1px solid #e5e5e5;
}

.ui-table-full-bordered th,
.ui-table-full-bordered td {
  border: 1px solid #e5e5e5;
}

#modal-shops .access {
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  #modal-shops .access {
    line-height: 1.6;
    margin: 0.5em 0;
  }
}

#modal-shops .shop td {
  position: relative;
  padding-right: 44px;
}

#modal-shops .shop address {
  font-style: normal;
  position: relative;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

#modal-shops .shop .ui-btn {
  position: absolute;
  right: 0.7rem;
  top: 0.7rem;
  color: #ed6103;
  border: 1px solid #bdc8ca;
  width: 30px;
  height: 30px;
  font-size: 24px;
  line-height: 26px;
  text-align: center;
  border-radius: 4px;
  background: url("/assets/common/icon_pin-c7fe5df4.png") center center
    no-repeat #fff;
  background-size: auto 80%;
  box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.2);
}

#modal-shops .shop .ui-btn:hover {
  top: 0.9rem;
  box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0);
}

#modal-shops .shop .tags {
  font-size: 1.2rem;
}

#modal-shops .shop .tags li {
  display: inline-block;
  margin-top: 0.5rem;
  margin-right: 0.5rem;
}

/* #modal-shops .shop .tags li+li {
    margin-left: 0.5rem;
  } */
#modal-shops .ui-modal-footer .notes {
  text-align: left;
  font-size: 1.2rem;
  line-height: 1.8;
}

.ui-modal .notification p {
  margin-bottom: 1rem;
}

.ui-btn-mouse {
  display: inline-block;
  background: #fff;
  color: inherit;
  font-weight: bold;
  text-decoration: none;
  padding: 1.2rem 1.8rem;
  border: 1px solid #bdc8ca;
  border-radius: 100px;
  box-shadow: 0 1px 2px rgba(132, 132, 132, 0.3);
  text-align: center;
  position: relative;
  font-size: 1.7rem;
}

.ui-modal-footer .ui-btn-sm {
  width: auto;
  padding: 1rem 3rem;
  font-weight: normal;
  font-size: 1.3rem;
  box-shadow: none;
  border-color: #bdc8ca;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

.ui-modal-footer .ui-btn-sm:hover {
  background: #fffe9a;
  color: #ed6103;
}

button.lity-close {
  display: none;
}

/*  //////////////////////////////////////////////// */
@media screen and (max-width: 768px) {
  #modal-shops .modalList {
    padding: 1rem;
    border-bottom: 1px solid #bdc8ca;
    font-size: 1.6rem;
    line-height: 1.5;
  }
  #modal-shops .modalList .modalList-title {
    font-weight: bold;
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #ed6103;
  }
  #modal-shops .modalList .not-accept-reserve {
    color: #a5a5a5;
  }
  #modal-shops .modalList .modalList-body address {
    font-style: normal;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.4rem;
  }
  #modal-shops .modalList .modalList-body .buttons {
    border-spacing: 0;
  }
  #modal-shops .modalList .modalList-body .buttons .buttonsInner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    table-layout: auto;
    table-layout: initial;
    width: 100%;
  }
  #modal-shops
    .modalList
    .modalList-body
    .buttons
    .buttonsInner
    a[class*="btn-"] {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #modal-shops .modalList .modalList-body .buttons .buttonsInner .btn-another {
    margin-right: 5px;
    padding: 1.2rem 0.5rem;
    border: 1px solid #bfcacc;
    border-radius: 5px;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.3);
    background: #fff;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
  }
  #modal-shops
    .modalList
    .modalList-body
    .buttons
    .buttonsInner
    .btn-another.shop-datail {
    width: 33%;
    color: #1f1f1f;
  }
  #modal-shops
    .modalList
    .modalList-body
    .buttons
    .buttonsInner
    .btn-another.map {
    width: 20%;
    color: #1f1f1f;
  }
  #modal-shops
    .modalList
    .modalList-body
    .buttons
    .buttonsInner
    .btn-consultation {
    margin-right: 0;
    padding: 1.2rem 5.7rem 1.2rem 0.5rem;
    width: 47%;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    line-height: 1;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background: #2c3af6;
    position: relative;
  }
  #modal-shops
    .modalList
    .modalList-body
    .buttons
    .buttonsInner
    .btn-consultation.not-accept-reserve {
    background: #a5a5a5;
    color: #fff;
  }
  #modal-shops
    .modalList
    .modalList-body
    .buttons
    .buttonsInner
    .btn-consultation.not-accept-reserve
    span {
    background: #dadada;
    color: #a5a5a5;
  }
  #modal-shops
    .modalList
    .modalList-body
    .buttons
    .buttonsInner
    .btn-consultation.disabled {
    background: #ebebeb;
    color: #a5a5a5;
    box-shadow: none;
    pointer-events: none;
  }
  #modal-shops
    .modalList
    .modalList-body
    .buttons
    .buttonsInner
    .btn-consultation.disabled
    span {
    background: #dadada;
  }
  #modal-shops
    .modalList
    .modalList-body
    .buttons
    .buttonsInner
    .btn-consultation
    span {
    display: inline-block;
    margin-left: 0.2rem;
    width: 40px;
    height: 24px;
    border-radius: 5px;
    font-size: 1.4rem;
    vertical-align: middle;
    font-weight: normal;
    line-height: 24px;
    background: #0e15a8;
    position: absolute;
    right: 1.2rem;
    bottom: 1.2rem;
  }
  #modal-shops .ui-modal-footer .ui-btn-sm {
    padding: 1rem;
  }
  .ui-modal-header {
    background: #ed6103;
    color: #fff;
    position: relative;
    min-height: 50px;
    line-height: 50px;
  }
  .ui-modal-header .title {
    text-align: center;
    margin-right: 50px;
    padding-left: 40px;
    font-size: 1.8rem;
  }
  .ui-modal-close {
    border: 1px solid #fff;
    border-radius: 2px;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 1rem;
    top: 1rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    padding: 0;
    color: #fff;
    font-style: normal;
    /* font-size: 35px; */
    font-family: Arial, Baskerville, monospace;
    line-height: 30px;
    background: none;
    outline: none;
    box-shadow: none;
  }
  .ui-modal-scroll {
    max-height: calc(90vh - 90px);
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
  .ui-modal-footer {
    text-align: center;
    padding: 1rem;
    border-radius: 0 0 5px 5px;
  }
  .ui-modal-container {
    background: #fff;
  }
  .modalList-body a {
    color: #ed6103;
  }
  button.lity-close {
    display: none;
  }
  .lity-wrap {
    padding: 10px;
  }
  .btn-consultation.prg-add-param.inquire_link {
    text-decoration: none;
  }
  .ui-modal .notification {
    padding: 20px 0;
  }
  .ui-modal .notification p {
    text-align: center;
    font-size: 1.4rem;
  }
  .ui-modal .notification p a {
    color: #ed6103;
  }
  .ui-btn-sm {
    border: 1px solid #bdc8ca;
    border-radius: 4px;
    padding: 0.5rem;
    background: #fff;
    text-align: center;
    position: relative;
    font-size: 1.7rem;
    width: auto;
    box-shadow: 0 2px 1px rgba(0, 0, 0, 0.2);
  }
  #modal-shop-1 {
    border-top: 1px solid #bdc8ca;
  }
}
