.ws-form {
  background-color: #f2f6fd;
  padding: 2rem;
}
.ws-form__slide {
  display: none;
}
.ws-form__slide--active {
  display: block;
}
.ws-form__title {
  font-size: 1.375rem;
  margin: 0 0 1.5rem;
  padding: 0;
  color: #444;
  font-weight: bold;
  display: block;
  text-align: center;
  position: relative;
}
.ws-form__area {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.ws-form__select-wrapper {
  flex: 0 1 200px;
}
.ws-form__select-label {
  font-size: 1rem;
  line-height: 1.5;
  display: block;
  padding-left: 0.25rem;
}
.ws-form__select {
  padding: 0.75rem;
  border: 2px solid #cacfd5;
  outline: none;
  transition: 0.15s ease-in-out;
  border-radius: 4px;
}
.ws-form__select:focus {
  border-color: #3959cc;
}
.ws-form__action-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.5rem 0 0;
  gap: 1rem;
}
.ws-form__button {
  border: 2px solid #3959cc;
  background-color: transparent;
  color: #3959cc;
  transition: 0.15s ease-in-out;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
}
.ws-form__button:hover {
  background-color: #3959cc;
  color: #fff;
}
.ws-form__button--back {
  border-color: #666;
  color: #666;
}
.ws-form__button--back:hover {
  background-color: #666;
  color: #fff;
}
.ws-form__button--disable {
  border-color: #ddd;
  color: #ddd;
  cursor: default;
  pointer-events: none;
}
.ws-form-checkbox {
  display: inline-flex;
  justify-content: flex-end;
}
.ws-form-checkbox__check-container {
  display: flex;
  align-items: center;
  position: relative;
}
.ws-form-checkbox__checkbox {
  margin-right: 0.75rem;
  position: relative;
  display: inline-flex;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 2px solid #bbb;
  transition: all 0.3s ease;
  cursor: pointer;
}
.ws-form-checkbox__checkbox svg {
  fill: none;
  stroke: #3959cc;
  stroke-dasharray: 28;
  stroke-dashoffset: 28;
  transition: all 0.3s ease;
  transform: scale(1.1);
  position: absolute;
  top: 0;
  left: 3px;
}
.ws-form-checkbox__checkbox svg:first-child {
  stroke: #fff;
}
.ws-form-checkbox__check {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  border: none;
  padding: 0;
  background: transparent;
}
.ws-form-checkbox__check:after {
  position: absolute;
  width: 24px;
  height: 24px;
  content: "";
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
}
.ws-form-checkbox__check:checked + .ws-form-checkbox__checkbox {
  color: #3959cc;
  border-color: #3959cc;
}
.ws-form-checkbox__check:checked + .ws-form-checkbox__checkbox svg {
  stroke-dashoffset: 0;
}
.ws-form-checkbox__check:checked + .ws-form-checkbox__checkbox + .ws-form-checkbox__label {
  color: #3959cc;
}
.ws-form__th {
  text-align: left;
  padding: 0.5rem 1rem;
  border: 2px solid #cacfd5;
  border-right: none;
}
.ws-form__td {
  padding: 0.5rem 1rem;
  border: 2px solid #cacfd5;
}
.ws-form__td-inner {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.ws-form__table tr:nth-of-type(2n+1) {
  background-color: #fafbfc;
}
.ws-form__table tr th {
  background-color: #f5f6f7;
}
.ws-form__unit {
  margin-left: 1rem;
}
.ws-form input[type=number] {
  padding: 0.75rem;
  border: 2px solid #cacfd5;
  outline: none;
  transition: 0.15s ease-in-out;
  border-radius: 4px;
  width: 100px;
  text-align: center;
  background-color: transparent;
}
.ws-form input[type=number]:focus {
  border-color: #3959cc;
}
.ws-form .ws-form__number-of-people .ws-form__table {
  table-layout: fixed;
}
.ws-form p {
  margin-bottom: 0.5rem !important;
}
.ws-form__caution {
  color: #D50000;
  line-height: 1.3;
  font-size: 0.875rem;
}
.ws-form__text {
  font-weight: bold;
  font-size: 1.25rem;
}