@charset "utf-8";

/* ----------------------------------------

shops

---------------------------------------- */

/* search_result
------------------------------- */
.mod_shop_detail .shop_detail_search_result {
  justify-content: flex-start;
}
.mod_shop_detail .shop_detail_search_result .shop_detail_def {
  flex-basis: 22.5%;
}
.mod_shop_detail .shop_detail_search_result .shop_detail_def_address {
  flex-basis: 100%;
}

.mod_shop_detail .shop_detail_inner .mod_button_btn02 button {
  background: #ff833c;
  background: linear-gradient(180deg,#ffb78e 0,#f57936 10%,#f57936 90%,#cd5320);
}
.mod_shop_detail .shop_detail_inner .mod_button_btn02 button:hover {
  background: linear-gradient(180deg,#f89e6b 0,#f45f0a 10%,#f45f0a 90%,#c43c05);
}

.shop_detail_search_result .mod_genre_list {
  margin-top: -5px;
}

.mod_shop_search .mod_button_btn02 button {
  background: #ff833c;
  background: linear-gradient(180deg,#ffb78e 0,#f57936 10%,#f57936 90%,#cd5320);
}
.mod_shop_search .mod_button_btn02 button:hover {
  background: linear-gradient(180deg,#f89e6b 0,#f45f0a 10%,#f45f0a 90%,#c43c05);
}

.numInputWrapper {
  order: 1;
  display: flex!important;
  width: 5em!important;
  position: relative;
}
.numInputWrapper:after  {
  content: "年";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateX(-100%) translateY(-50%);
}


/* カレンダー */
.mod_select_box_calendar {
  position: relative;
  margin-right: 30px;
}
.mod_select_box_calendar input[readonly] {
  cursor: pointer;
  width: 230px;
  border-radius: 5px !important;
}
.mod_select_box_calendar input[readonly]::placeholder {
  background-image: url(../../../images/md/shops/calendar-alt-regular.svg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 14px;
}
.js-calendar-wrap {
  position: absolute;
  bottom: -6px;
  transform: translateY(100%);
  z-index: 8;
  width: 300px;
  margin: 0 auto;
  color: #000;
  background: #fff;
  box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgb(0 0 0 / 8%);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}
.js-calendar-wrap:before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 25px;
  margin-left: -5px;
  border: 5px solid transparent;
  border-bottom: 5px solid #fff;
}
.js-calendar-wrap.is-active {
  opacity: 1;
  visibility: visible;
}

.calendar {
  text-align: center;
  width: 100%;
}
table {
  width: 100%;
}
th {
  text-align: center;
  padding: 0 10px 8px;
}
td {
  padding: 2px;
}
td span {
  display: block;
  padding: 8px;
  border-radius: 50%;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}
td span.is-prev,
td span.is-next {
  color: #ccc;
}
td span:hover {
  background: #ff833d;
  color: #fff;
}
td.is-disabled span {
  color: #ccc;
  pointer-events: none;
}
td.is-today span {
  background: #FFE6D8;
  color: #000;
}
td.is-select span {
  background: #ff833d;
  color: #fff;
}

.next-prev-button {
  display: flex;
  justify-content: space-between;
}
.next-prev-button .date {
  text-align: center;
  font-size: 20px;
  width: 100%;
  margin: 8px 0 5px;
}
.next-prev-button div {
  cursor: pointer;
  padding: 20px 24px;
  position: relative;
}
.next-prev-button div:hover{
  opacity: .6;
}
.next-prev-button .prev:after,
.next-prev-button .next:after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(135deg);
}
.next-prev-button .prev:after {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.next-prev-button .is-disabled {
  opacity: 0;
  visibility: hidden;
}