@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

/* 月間予約カレンダー */
.monthly-calendar {
  clear: both;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 0 auto 1.5rem;
  max-width: 800px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  padding: 1.5rem;
  overflow: hidden;
}
.monthly-calendar table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 20px;
}
.monthly-calendar caption {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  color: #2d3748;
  padding: 1.25rem 0;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.monthly-calendar th {
  font-size: 0.875rem;
  font-weight: 500;
  color: #4a5568;
  padding: 1rem;
  background: #f7fafc;
  border-bottom: 2px solid #e2e8f0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.monthly-calendar th,
.monthly-calendar td {
  text-align: center;
  vertical-align: middle;
}
.monthly-calendar td {
  padding: 20px 0 0;
}

.week-title.sun, .week-title.sat {
  color: #e53e3e;
}
.week-title.sat {
  color: #3182ce;
}

.day-box {
  min-height: 100px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background: #ffffff;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.day-box.disable {
  color: #ddd;
  font-weight: normal;
}
.day-box.sun {
  background: #fff5f5;
}
.day-box.sun .day-number {
  color: #e53e3e;
}
.day-box.sat {
  background: #ebf8ff;
}
.day-box.sat .day-number {
  color: #3182ce;
}
.day-box.holiday {
  background: #fff5f5;
  border: 2px solid #e53e3e;
}
.day-box.holiday .day-number {
  color: #e53e3e;
  font-weight: 600;
}
.day-box.no-day {
  background-color: #f7fafc;
  border: 1px solid #e2e8f0;
  opacity: 0.5;
}
.day-box.today {
  background-color: #fef5e7;
  border: 2px solid #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
  font-weight: 700;
}

.day-number {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2d3748;
  display: block;
}

a.calendar-daylink {
  display: block;
  text-decoration: none;
}

.monthly-prev {
  float: left;
}

.monthly-next {
  float: right;
  margin-right: 1rem;
}

.calendar-mark {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  padding: 20px 0;
}

.vacant {
  position: relative;
  overflow: hidden;
}
.vacant:hover {
  background: #ffffaa;
}

.vacant a:before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100vh;
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  left: 50%;
  top: 50%;
}

.monthly-prev-next {
  font-size: 1.2rem;
  line-height: 1;
  padding: 20px 0;
}

/* 指定日予約状況表示 */
.day-calendar {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin-bottom: 2rem;
  max-width: 700px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  padding: 1.5rem;
  transition: box-shadow 0.2s ease-in-out;
}
.day-calendar:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 12px 32px rgba(0, 0, 0, 0.08);
}
.day-calendar h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin: 15px 0 30px;
  letter-spacing: 0.02em;
}
.day-calendar p {
  font-size: 1.2rem;
  font-weight: 500;
  color: #4a5568;
  margin: 0 0 1.25rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.day-calendar table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}
.day-calendar th,
.day-calendar td {
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #e2e8f0;
  transition: background-color 0.2s ease-in-out;
}
.day-calendar tr:first-child th,
.day-calendar tr:first-child td {
  padding: 1rem 1.25rem;
  font-size: 1.2rem;
  background-color: #eef;
  border: 1px solid #e2e8f0;
}
.day-calendar tr:last-child th,
.day-calendar tr:last-child td {
  border-bottom: none;
}
.day-calendar th.day-left {
  background-color: #f7fafc;
  color: #2d3748;
  font-weight: 600;
  width: 40%;
  font-size: 1rem;
  border-right: 1px solid #e2e8f0;
}
.day-calendar th.day-right {
  background-color: #f7fafc;
  color: #2d3748;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.day-calendar td.day-left {
  color: #4a5568;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  border-right: 1px solid #e2e8f0;
}
.day-calendar td.day-right {
  color: #2d3748;
  font-size: 1.125rem;
  font-weight: 600;
}

a.booking-timelink {
  display: inline-block;
  color: #3182ce;
  text-decoration: none;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
}

/* 予約フォーム */
.content-form {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  max-width: 700px;
  margin-bottom: 2rem;
  padding: 50px;
  background-color: #f7fafc;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
}
.content-form fieldset {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  padding: 1.5rem;
  margin: 0 0 1.5rem 0;
  transition: box-shadow 0.2s ease-in-out;
}
.content-form fieldset:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 12px 32px rgba(0, 0, 0, 0.08);
}
.content-form legend {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2d3748;
  padding: 0 0.5rem;
  letter-spacing: 0.02em;
}
.content-form .required-message {
  font-size: 1rem;
  font-weight: 500;
  color: #4a5568;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px;
}
.content-form table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  margin: 0 0 1rem 0;
}
.content-form th,
.content-form td {
  vertical-align: middle;
  border-bottom: 1px solid #e2e8f0;
}
.content-form tr:last-child th,
.content-form tr:last-child td {
  border-bottom: none;
}
.content-form th {
  background-color: #f7fafc;
  color: #2d3748;
  font-size: 1rem;
  font-weight: 600;
  width: 30%;
  border-right: 1px solid #e2e8f0;
}
.content-form td {
  color: #4a5568;
  font-size: 1rem;
  padding: 10px;
}
.content-form input[type=text],
.content-form input[type=email],
.content-form input[type=tel],
.content-form input[type=number],
.content-form textarea {
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  transition: all 0.2s ease-in-out;
  background: #ffffff;
  color: #2d3748;
  box-sizing: border-box;
  width: 100%;
}
.content-form input[type=text]:focus,
.content-form input[type=email]:focus,
.content-form input[type=tel]:focus,
.content-form input[type=number]:focus,
.content-form textarea:focus {
  outline: none;
  border-color: #3182ce;
  box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}
.content-form textarea {
  width: 95%;
}
.content-form button {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  background-color: #3182ce;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.content-form button:hover {
  background-color: #2c5282;
}
.content-form button:focus {
  outline: 2px solid #3182ce;
  outline-offset: 2px;
}
.content-form .error-message {
  clear: both;
  color: #e53e3e;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.5rem;
}
.content-form .required {
  color: #e53e3e;
  font-weight: 600;
}
.content-form input.booking-option-number {
  text-align: right;
  width: 4rem;
}
.content-form label.field-item {
  margin-right: 0.8rem;
  cursor: pointer;
}
.content-form label.field-item input {
  margin-right: 0.3rem;
}
.content-form select {
  padding: 8px 12px;
  font-size: 1rem;
  border: 1px solid #e3f2fd;
  border-radius: 4px;
  background-color: #ffffff;
  transition: border-color 0.2s ease;
}
.content-form select:focus {
  outline: none;
  border-color: #1976d2;
}

.content-text.small {
  width: 3rem;
}
.content-text.medium {
  width: 48%;
}
.content-text.fat {
  width: 95%;
}

.input-number {
  float: left;
  margin-right: 1rem;
  text-align: center;
}

input.right {
  text-align: right;
}/*# sourceMappingURL=mtssb-front.css.map */