@charset "utf-8";
/*ディライト株式会社*/
.dm{}

/* 予約バー */
#reserveBar {
    position: relative;
    margin-bottom: 50px;
    padding: 25px 0;
    background-color: #f7f4f1;
}
#reserveBar .bestrate {
    width: 70%;
    margin: 0 auto 30px;
}
#reserveBar .bestrate--bn {
  margin-bottom: 20px;
}
#reserveBar .bestrate--txt p {
  font-size: 1.4rem;
}
#reserveBar > .inner {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    margin: auto;
}
#reserveBar > .inner > h3 {
    margin-bottom: 15px;
}
#reserveBar > .inner > h3::before {
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-size: 1.8rem;
    font-weight: 900;
    color: #919261;
    content: "\f002";
    margin-right: .5em;
}
#searchBlock #searchBox {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 84%;
    margin: auto;
}
#searchBlock #searchBox .checkin {
    display: block;
    width: 100%;
    margin-bottom: 30px;
}
#searchBlock #searchBox .rooms,
#searchBlock #searchBox .adults {
    position: relative;
    margin-left: 20px;
    padding-left: 12px;
}
#searchBlock #searchBox .rooms::before,
#searchBlock #searchBox .adults::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 1px;
    height: 4em;
    background: #d5d5d5;
    z-index: 0;
}


#searchBlock #searchBox fieldset legend {
    font-size: 1.3rem;
    margin-bottom: 5px;
}
#searchBlock #searchBox input,
#searchBlock #searchBox select {
    font-family: "A1明朝", "游明朝体", "Yu Mincho", YuMincho, serif !important;
    font-size: 1.6rem;
    font-weight: normal;
    height: 2em;
    line-height: 1;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid #666;
}
#searchBlock #searchBox select {
    position: relative;
    margin: auto;
    background-image: url("../img/re_arrow.png");
    background-repeat: no-repeat;
    background-position: 100% 63%;
    background-color: transparent;
    text-align: center;
    border: none;
    width: 100%;
    font-family: "A1明朝", "游明朝体", "Yu Mincho", YuMincho, serif !important;;
    line-height: 1;
    color: #231815;
    outline: none;
    padding: .2em 1.10em .2em .8em;
}
#searchBlock #searchBox > .checkin input {
    position: relative;
    color:#53565a;
    width: 100%;
    height: 32px;
    padding:0 12px;
    letter-spacing:.05em;
    border-radius:3px;
    border:1px solid #ccc;
    box-sizing: border-box;
}


#searchBlock #searchBox .field-button {
    position: relative;
    font-family: "A1明朝";
    font-size: 1.8rem;
    color: #FFF;
    margin: 15px 0;
    padding: 1em;
    width: 100%;
    background: #919261;
    border: none;
    outline: none;
    cursor: pointer;
}
#searchBlock #searchBox .field-button::before {
    position: absolute;
    top: 50%;
    left: calc( 50% - 3.2rem );
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #FFF;
    content: "\f002";
    font-size: 2rem;
    z-index: 1;
}
#searchBlock #searchBox .field-button input {
    position: relative;
    font-size: 1.8rem;
    color: #FFF;
    width: 100%;
    height: 100%;
    padding-left: 5.2rem;
    background: #919261;
    border: none;
    outline: none;
    cursor: pointer;
}

#reserveBar > .inner > .link {
    margin: auto;
}
#reserveBar > .inner > .link ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
#reserveBar > .inner > .link li a {
    display: block;
    color: initial;
    font-size: 1.3rem;
    text-align: left;
    text-decoration: none;
    padding: .2em 1em;
}
#reserveBar > .inner > .link li a::before {
    display: inline-block;
    content: ">";
    margin-right: .5em;
}

/* 予約ポップアップ */
/* モーダル */
/*モーダルを開くボタン*/
.modal-open {
  cursor: pointer;
}
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 80%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
  z-index: 8000;
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active {
  opacity: 1;
  visibility: visible;
}
/*モーダル枠の指定*/
.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 90%;
}
/*モーダルを閉じるボタンの指定*/
.modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -40px;
  right: -40px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
.modal-close::before,
.modal-close::after {
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: 25%;
  width: 80%;
  height: 4%;
  content: "";
  background-color: #fff;
}

.modal-close::before {
  top: 30%;
  transform: rotate(315deg);
}

.modal-close::after {
  top: 30%;
  transform: rotate(-315deg);
}
/*モーダル内のコンテンツの指定*/
.modal-content {
  background: #fff;
  text-align: left;
  padding: 15px;
}

/* ウィジェット */
.searchCalWidget * {
  margin: 0;
  padding: 0;
  color: #333;
  text-decoration: none;
  box-sizing: border-box;
}
#searchCalFrom {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}

.searchCalWidget select {
  padding: .25em 1em;
  font-size: 16px;
  outline: none;
  border: 1px solid #999;
  border-radius: 3px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.searchCalWidget select::-ms-expand {
  display: none;
}

.searchCalElement {
  order: 2;
}
.searchCalElement > ul {
  list-style: none;
  margin: 0 0 1em;
  /*! display: flex; */
  /*! justify-content: space-between; */
}
.searchCalElement > ul > li {
  /*! width: 48%; */
}
.searchCalElement > ul > li li {
  list-style: none;
  margin: 0 0 .5em;
  padding: 0 .5em .5em;
  border-bottom: 1px solid #ddd;
}
.searchCalElement > ul > li li dl {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.searchCalElement > ul > li li dl dt {
  font-size: 14px;
}
.searchCalElement > ul > li li dl dt span {
  margin-left: .25em;
  font-size: 11px;
}
.searchCalElement > ul > li li dl dd {
  margin-left: auto;
}
.searchCalButton {
  padding: 0 0 2em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.searchCalButton input {
  padding: .4em 2em;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: #333;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.searchCalSelectBox {
  padding: 0 0 .5em;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}
.searchCalSelectBox > div > ol > li button {
  width: 28px;
  height: 27px;
}
.searchCalNote {
  display: flex;
  justify-content: space-between;
  padding: 1em 0 1em;
}
.searchCalNote ol {
  list-style: none;
  display: flex;
}
.searchCalNote li {
  margin-right: 1.5em;
  font-size: 13px;
  line-height: 16px;
  display: flex;
}
.searchCalNote li svg {
  margin-right: 5px;
  width: 16px;
  height: 16px;
  fill: #333;
}
.searchCalNote p {
  font-size: 13px;
  line-height: 16px
}
.searchCalSelect {
  margin-left: auto;
  padding: 0 0 1em;
  display: flex;
  align-items: stretch;
}
.searchCalSelect ol {
  list-style: none;
  display: flex;
  align-items: stretch;
}
.searchCalSelect ol li {
  margin-left: 5px;
}
.searchCalSelect ol li button {
  padding: 5px 5px 4px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  border: 1px solid #999;
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
}
.searchCalSelect ol li button:disabled {
  opacity: .5
}
.searchCalSelect ol li svg {
  width: 16px;
  height: 16px;
  fill: #666;
  pointer-events: none;
}
.searchCalAdult dt > span {
  color: #666666;
  margin-left: 1em;
}
.searchCalChildren {
  font-size: 14px;
}
.searchCalChildren dt > span {
  color: #666666;
  margin-left: 1em;
}
.searchCalChildren dd > span {
  margin: 0 2px;
}

.searchCalCalender {
  order: 1;
}

#searchCal > dl > dt {
  padding: 0 0 .5em;
  font-size: 16px;
  font-weight: 700;
}
#searchCal > dl > dd ul {
  list-style: none;
  display: flex;
}
#searchCal > dl > dd ul li {
  padding: .25em;
  font-size: 11px;
  text-align: center;
  background: #eee;
  flex: 1;
}
#searchCal > dl > dd ul li:first-child {
  color: #ff4d4d;
}
#searchCal > dl > dd ul li:last-child {
  color: #006dd9;
}
#searchCal > dl > dd ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  border: solid #ddd;
  border-width: 1px 0 0 1px;
}
#searchCal > dl > dd ol li {
  width: 14.28571%;
  min-height: 70px;
  position: relative;
  border: solid #ddd;
  border-width: 0 1px 1px 0;
}
#searchCal > dl > dd ol li dl {
  padding-bottom: 1.25em;
}
#searchCal > dl > dd ol li dt {
  padding-top: .25em;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
#searchCal > dl > dd ol li:nth-child(7n) dt {
  color: #006dd9;
}
#searchCal > dl > dd ol li:nth-child(7n-6) dt {
  color: #ff4d4d;
}
#searchCal > dl > dd ol li.none dl {
  opacity: .25;
  cursor: not-allowed;
}
#searchCal > dl > dd ol li dl dd {
  padding: .25em 0 .5em;
  display: flex;
  justify-content: center;
}
#searchCal > dl > dd ol li dl dd svg {
  width: 20px;
  height: 20px;
  fill: #333;
}
#searchCal > dl > dd ol li dd p {
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  text-indent: -.4em;
  width: 100%;
  position: absolute;
  bottom: 5px;
  left: 0;
}
@media screen and (max-width:640px) {
  .searchCalElement > ul > li li dl dt {
    font-size: 12px;
  }
  .searchCalElement > ul > li li dl dt span {
    font-size: 10px;
  }
  #searchCal > dl > dd ol li dd p {
    transform: scaleX(.75);
  }
}


/* Entry */
.bottom-non {
    margin-bottom: 0px !important;
}
.bottom-5 {
    margin-bottom: 5px !important;
}
.bottom-10 {
    margin-bottom: 10px !important;
}
.bottom-15 {
    margin-bottom: 15px !important;
}
.bottom-20 {
    margin-bottom: 20px !important;
}
.bottom-25 {
    margin-bottom: 25px !important;
}
.bottom-30 {
    margin-bottom: 30px !important;
}
.bottom-35 {
    margin-bottom: 35px !important;
}
.bottom-40 {
    margin-bottom: 40px !important;
}

#pageMain.post .entry ul {
  list-style: disc;
  list-style-position: inside;
}
#pageMain.post .entry ul li {
  text-indent: -1em;
  margin-left: 1em;
}


/* SLICK SLIDER */
.slick-prev {
    left: 30px;
    z-index: 100;
}
.slick-next {
    right: 30px;
    z-index: 100;
}

#topics .slick-prev,
#topics .slick-next,
#topics .slick-prev:focus,
#topics .slick-next:focus,
#topics .slick-prev:hover,
#topics .slick-next:hover {
    background: rgba(255,255,255,0.8);
    transition: all .5s;
}

#topics .slick-prev {
    width: 50px;
    height: 50px;
    left: 5%;
    z-index: 100;
    top: 40%;
    bottom: 0 !important;
    transform: initial !important;
}
#topics .slick-next {
    width: 50px;
    height: 50px;
    right: 5%;
    z-index: 100;
    top: 40%;
    bottom: 0 !important;
    transform: initial !important;
}
#topics .slick-prev::before,
#topics .slick-next::before {
    font-family: initial;
    font-size: 21px;
    color: #000;
}

