@charset "UTF-8";
.btn {
  color: #fff !important;
  background-color: #9b8d77 !important;
}
.btn:hover {
  background-color: #aea391 !important;
}

/* 2025.07.09 MCS)SAITO ADD START */
.btnpink {
  color: #fff !important;
  background-color: #f09191 !important;
  border: 1px solid #f09191 !important;
  height: 38.5px;
}
.btnpink:hover {
  background-color: rgba(240, 145, 145, 0.8) !important;
  border: 1px solid rgba(240, 145, 145, 0.8) !important;
}

/* 2025.07.09 MCS)SAITO ADD END */
.table {
  border-collapse: separate;
  border-spacing: 0;
}
.table thead + tbody tr th,
.table thead + tbody tr td,
.table thead tr:not(:first-child) th,
.table thead tr:not(:first-child) td,
.table tbody tr:not(:first-child) th,
.table tbody tr:not(:first-child) td,
.table tfoot tr th,
.table tfoot tr td {
  border-top: none;
}
.table th,
.table td {
  border: 1px solid #dee2e6;
}
.table th {
  background-color: #f6f1e8;
}
.table td:not(:first-child),
.table th:not(:first-child) {
  border-left: none;
}

noscript .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
noscript .error-message {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  max-width: 80%;
  text-align: center;
}

.alert-container {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  max-width: 90vw;
  z-index: 9999;
}

.keep-all-break-word {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

i.available {
  color: green;
  -webkit-text-stroke: 0.5px;
}
i.limited {
  color: orange;
  -webkit-text-stroke: 0.5px;
}
i.unavailable {
  color: red;
  -webkit-text-stroke: 0.5px;
}

input[type=date] {
  position: relative;
}
input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}

html {
  height: 100%;
  font-size: 16px;
}

body {
  height: 100%;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", serif !important;
  background-color: #f6f1e8 !important;
}

img {
  pointer-events: none;
}

header {
  position: relative;
  background-color: #9b8d77;
  height: 146px;
  color: white;
  justify-content: center;
  align-items: center;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
}
header .separator-wave {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 80px;
}

main {
  padding: 0 12px;
  /* 2025.05.08 MCS)SAITO ADD START */
  /* 2025.05.08 MCS)SAITO ADD END */
}
main .step-bar-container {
  max-width: 960px;
  margin: 0 auto;
}
main .step-bar-container .step-bar {
  position: relative;
  list-style: none;
  margin: 0 0 0.5em;
  padding: 0;
  text-align: center;
  width: 100%;
  overflow: hidden;
  zoom: 1;
}
main .step-bar-container .step-bar .step {
  width: 20%;
  position: relative;
  float: left;
  line-height: 36px;
  padding: 0 20px 0 10px;
  background-color: #fff;
  box-sizing: border-box;
}
main .step-bar-container .step-bar .step:before, main .step-bar-container .step-bar .step:after {
  position: absolute;
  left: -8px;
  display: block;
  content: "";
  background-color: #fff;
  border-left: 4px solid #eee;
  width: 20px;
  height: 18px;
}
main .step-bar-container .step-bar .step:after {
  top: 0;
  transform: skew(30deg);
}
main .step-bar-container .step-bar .step:before {
  bottom: 0;
  transform: skew(-30deg);
}
main .step-bar-container .step-bar .step:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
main .step-bar-container .step-bar .step:first-child:before, main .step-bar-container .step-bar .step:first-child:after {
  content: none;
}
main .step-bar-container .step-bar .step:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
main .step-bar-container .step-bar .step.current {
  color: #fff;
  background-color: #9b8d77;
}
main .step-bar-container .step-bar .step.current:before, main .step-bar-container .step-bar .step.current:after {
  background-color: #9b8d77;
}
main .step-bar-container .step-bar .step .phrase {
  position: relative;
  z-index: 10;
}
main .step-bar-container .step-bar .step .sp {
  display: none;
}
main .container {
  max-width: 960px !important;
  padding: 1.5rem !important;
  background-color: #fff;
  border-radius: 8px;
}
main .container .calendar {
  padding: 0 15px;
  background-color: #fff;
}
main .container .calendar .calendar-title {
  text-align: center;
  margin: 6px 0;
  font-weight: bold;
  color: #4a4a4a;
}
main .container .calendar tr:last-child {
  border-right: 1px solid #dee2e6;
}
main .container .calendar .calendar-table th,
main .container .calendar .calendar-table td {
  text-align: center;
  font-size: 0.9rem;
}
main .container .calendar .calendar-table th {
  padding: 2px 8px;
  font-weight: bold;
}
main .container .calendar .calendar-table th:first-child {
  /* 2025.05.08 MCS)SAITO MOD START */
  background-color: #f6f1e8 !important;
  /* 2025.05.08 MCS)SAITO MOD END */
}
main .container .calendar .calendar-table th:last-child {
  /* 2025.05.08 MCS)SAITO MOD START */
  background-color: #f6f1e8 !important;
  /* 2025.05.08 MCS)SAITO MOD END */
}
main .container .calendar .calendar-table td {
  padding: 4px 10px;
  /* 2025.05.08 MCS)SAITO DEL START */
  /* 2025.05.08 MCS)SAITO DEL END */
}
main .container .calendar .calendar-table td:not(.none) {
  cursor: pointer;
}
main .container .calendar .calendar-table td:hover:not(.none) {
  background-color: #f6f1e8 !important;
  box-shadow: 0 0 0 1px #9b8d77 inset !important;
}
main .status-container {
  width: 100%;
  max-width: 340px;
}
main .search-container {
  border: none !important;
}
main .hanbou-container {
  width: 100%;
  max-width: 500px;
}
main .hanbou-color {
  background-color: rgba(255, 0, 0, 0.062745098) !important;
}
main .room-card {
  cursor: pointer;
}
main .room-card .room-img {
  width: 45%;
}
main .room-card .room-img::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 80%, #fff 100%);
  position: absolute;
  top: 0;
  left: 0;
}
main .room-card.selected {
  font-weight: bold;
  background-color: #f6f1e8;
  border: 1px solid #9b8d77;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
main .room-card.selected .room-img::before {
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 80%, #f6f1e8 100%);
}

@media (max-width: 568px) {
  main .step-bar-container .step-bar .step {
    line-height: 22px;
    padding: 4px 20px 4px 10px;
  }
  main .step-bar-container .step-bar .step:before, main .step-bar-container .step-bar .step:after {
    left: -8px;
    height: 26px !important;
  }
  main .step-bar-container .step-bar .step .sp {
    display: block;
  }
}
footer {
  position: sticky;
  top: 100dvh;
  width: 100%;
}

/* 2025.05.13 MCS)SAITO ADD START */
@media screen and (min-width: 768px) {
  .keep-all-break-word-smaho {
    word-break: keep-all;
    overflow-wrap: anywhere;
    margin-right: 3rem;
    padding-right: 1.5rem;
  }
}
@media screen and (min-width: 483px) and (max-width: 767px) {
  .keep-all-break-word-smaho {
    overflow: hidden;
    white-space: nowrap;
    margin-right: 3rem;
    padding-right: 1.5rem;
  }
}
@media screen and (max-width: 482px) {
  .keep-all-break-word-smaho {
    overflow: hidden;
    white-space: nowrap;
    text-align: left;
    font-size: min(5vw, 16px);
    margin-left: 15px;
  }
}
/* 2025.05.13 MCS)SAITO ADD END *//*# sourceMappingURL=reserver.css.map */