.entry-hero {
  padding: 4rem 1.875rem 2.5rem;
}
@media (min-width: 480px) {
  .entry-hero {
    padding-top: 1rem;
  }
}
.entry-hero__head {
  text-align: center;
  margin-bottom: 2.75rem;
}
.entry-hero__en {
  font-family: "the-seasons", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #b27f34;
  line-height: 1;
  margin-bottom: 0.625rem;
  display: block;
}
.entry-hero__title {
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  color: #1a1a1a;
  text-align: center;
}

.entry-steps {
  display: flex;
  justify-content: center;
  max-width: 320px;
  margin: 0 auto;
}
.entry-steps__item {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.entry-steps__item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  width: 100%;
  height: 1px;
  background: #ddd;
  z-index: 1;
}
.entry-steps__item.is-active .entry-steps__dot {
  background: #1a1a2e;
  border-color: #1a1a2e;
}
.entry-steps__item.is-active .entry-steps__label {
  color: #1a1a1a;
  font-weight: 700;
}
.entry-steps__dot {
  position: relative;
  z-index: 2;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ccc;
}
.entry-steps__label {
  font-size: 0.6875rem;
  letter-spacing: 0.02em;
  color: #aaa;
  white-space: nowrap;
}

.entry-form-sec {
  padding: 0 0 4.5rem;
}

.entry-form__notice {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin: 0 1.875rem 2.5rem;
  padding: 0.9375rem 1.125rem;
  background: #f7f5f0;
  border-radius: 4px;
  font-size: 0.75rem;
  color: #666;
  line-height: 1.5;
}

.req-badge {
  flex-shrink: 0;
  display: inline-block;
  background: #b27f34;
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
  line-height: 1.4;
}

.entry-form {
  padding: 0 1.875rem;
}
.entry-form__group {
  margin-bottom: 2rem;
}
.entry-form__label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.875rem;
  letter-spacing: 0.02em;
}
.entry-form__input, .entry-form__select, .entry-form__textarea {
  width: 100%;
  padding: 0.9375rem 1.125rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  color: #2d2d2d;
  background: #fff;
}
.entry-form__input:focus, .entry-form__select:focus, .entry-form__textarea:focus {
  outline: none;
  border-color: #b27f34;
}
.entry-form__input::placeholder, .entry-form__textarea::placeholder {
  color: #b3b3b3;
}
.entry-form__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.125rem center;
  padding-right: 2.5rem;
}
.entry-form__textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.7;
}
.entry-form__submit {
  display: block;
  width: 100%;
  padding: 1.1rem;
  margin-top: 1rem;
  border: none;
  border-radius: 1.875rem;
  background: #1a1a2e;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.2s;
}
.entry-form__submit:hover {
  opacity: 0.85;
}

.entry-confirm-sec {
  padding: 0 0 4.5rem;
}

.entry-confirm__table {
  margin: 0 1.875rem;
}

.entry-confirm__row {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid #eee;
}
.entry-confirm__row:first-child {
  border-top: 1px solid #eee;
}

.entry-confirm__key {
  font-size: 0.75rem;
  font-weight: 700;
  color: #aaa;
  letter-spacing: 0.05em;
}

.entry-confirm__val {
  font-size: 0.9375rem;
  color: #1a1a1a;
  line-height: 1.7;
  word-break: break-all;
  min-height: 1.5em;
}

.entry-confirm__actions {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin: 2.5rem 1.875rem 0;
}

.entry-confirm__submit {
  display: block;
  width: 100%;
  padding: 1.1rem;
  border: none;
  border-radius: 1.875rem;
  background: #1a1a2e;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.2s;
}
.entry-confirm__submit:hover {
  opacity: 0.85;
}

.entry-confirm__back {
  display: block;
  width: 100%;
  padding: 1.1rem;
  border: 1px solid #ccc;
  border-radius: 1.875rem;
  background: #fff;
  color: #2d2d2d;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.2s;
}
.entry-confirm__back:hover {
  opacity: 0.7;
}

.entry-complete-sec {
  padding: 2rem 1.875rem 4.5rem;
  text-align: center;
}

.entry-complete__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1a1a2e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
}
.entry-complete__icon svg {
  width: 28px;
  height: 28px;
}

.entry-complete__title {
  font-family: "the-seasons", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #b27f34;
  margin-bottom: 1.25rem;
}

.entry-complete__message {
  font-size: 0.875rem;
  color: #2d2d2d;
  line-height: 2;
  margin-bottom: 2.5rem;
}

.entry-complete__btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  border-radius: 1.875rem;
  background: #1a1a2e;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: opacity 0.2s;
}
.entry-complete__btn:hover {
  opacity: 0.85;
}

.page-cast-contact .l-wrap {
  background: #fff;
}

.page-cast-contact .entry-hero__en {
  color: #e05490;
}
.page-cast-contact .req-badge {
  background: #e05490;
}
.page-cast-contact .entry-form__input:focus,
.page-cast-contact .entry-form__select:focus,
.page-cast-contact .entry-form__textarea:focus {
  border-color: #e05490;
}
.page-cast-contact .entry-form__submit {
  background: #e05490;
}
.page-cast-contact .entry-form__datetime {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.page-cast-contact .entry-form__date-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
}
.page-cast-contact .entry-form__date {
  cursor: pointer;
  padding-right: 2.75rem;
}
.page-cast-contact .entry-form__date::placeholder {
  color: #b3b3b3;
}
.page-cast-contact .entry-form__date-icon {
  position: absolute;
  top: 50%;
  right: 1.125rem;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #e05490;
  pointer-events: none;
}
.page-cast-contact .entry-form__hour-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.page-cast-contact .entry-form__hour {
  width: 5.5rem;
  padding-right: 1.875rem;
  background-position: right 0.75rem center;
}
.page-cast-contact .entry-form__hour-suffix {
  font-size: 0.9375rem;
  color: #1a1a1a;
}
.page-cast-contact .ui-datepicker {
  width: 300px;
  max-width: calc(100vw - 3rem);
  padding: 1.25rem;
  border: 2px solid #1a1a1a;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  font-family: inherit;
}
.page-cast-contact .ui-datepicker-header {
  position: relative;
  background: none;
  border: none;
  padding: 0 0 1rem;
}
.page-cast-contact .ui-datepicker-title {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 0.25rem;
  text-align: left;
}
.page-cast-contact .ui-datepicker-year {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
}
.page-cast-contact .ui-datepicker-year::after {
  content: "/";
  margin: 0 0.25rem;
  font-weight: 400;
}
.page-cast-contact .ui-datepicker-month {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
}
.page-cast-contact .ui-datepicker-prev,
.page-cast-contact .ui-datepicker-next {
  top: -0.125rem;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  cursor: pointer;
}
.page-cast-contact .ui-datepicker-prev .ui-icon,
.page-cast-contact .ui-datepicker-next .ui-icon {
  background: none;
  text-indent: 0;
  display: block;
  width: auto;
  height: auto;
  font-size: 1.25rem;
  color: #e05490;
}
.page-cast-contact .ui-datepicker-prev.ui-state-hover,
.page-cast-contact .ui-datepicker-next.ui-state-hover {
  background: none;
  border: none;
}
.page-cast-contact .ui-datepicker-prev {
  right: 2.25rem;
  left: auto;
}
.page-cast-contact .ui-datepicker-next {
  right: 0;
}
.page-cast-contact .ui-datepicker-calendar {
  width: 100%;
  border-collapse: collapse;
}
.page-cast-contact .ui-datepicker-calendar th {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #1a1a1a;
  padding-bottom: 0.75rem;
}
.page-cast-contact .ui-datepicker-calendar th span {
  text-decoration: none;
}
.page-cast-contact .ui-datepicker-calendar th:first-child {
  color: #e05490;
}
.page-cast-contact .ui-datepicker-calendar th:last-child {
  color: #7ba7d9;
}
.page-cast-contact .ui-datepicker-calendar td {
  text-align: center;
  padding: 0.125rem;
}
.page-cast-contact .ui-datepicker-calendar td span,
.page-cast-contact .ui-datepicker-calendar td a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin: 0 auto;
  border: none;
  border-radius: 50%;
  font-size: 0.875rem;
  color: #1a1a1a;
  background: none;
  text-align: center;
}
.page-cast-contact .ui-datepicker-calendar .ui-state-default:hover, .page-cast-contact .ui-datepicker-calendar .ui-state-default.ui-state-hover {
  background: rgba(224, 84, 144, 0.12);
  color: #1a1a1a;
}
.page-cast-contact .ui-datepicker-calendar .ui-datepicker-today a {
  border: 1px solid #e05490;
}
.page-cast-contact .ui-datepicker-calendar .ui-state-active {
  background: #e05490 !important;
  color: #fff !important;
}
.page-cast-contact .ui-datepicker-calendar .ui-datepicker-unselectable .ui-state-default {
  color: #ccc;
  cursor: default;
}

.page-cast-confirm .entry-hero__en {
  color: #e05490;
}
.page-cast-confirm .entry-confirm__submit {
  background: #e05490;
}

.page-cast-complete .entry-hero__en {
  color: #e05490;
}
.page-cast-complete .entry-complete__title {
  color: #e05490;
}
.page-cast-complete .entry-complete__btn {
  background: #e05490;
}
.page-cast-complete .entry-complete__icon {
  background: #e05490;
}

.page-cast-recruit .rec-footer {
  margin-top: -3.75rem;
  padding-top: 5.3rem;
}
.page-cast-recruit .rec-footer::before {
  background: #f0b8cc;
}
.page-cast-recruit .entry-steps__item.is-active .entry-steps__dot {
  background: #e05490;
  border-color: #e05490;
}

.page-staff-recruit .l-wrap {
  background: #fff;
}

.page-staff-recruit .rec-footer {
  margin-top: -3.75rem;
  padding-top: 5.3rem;
  background: rgba(255, 255, 255, 0.6);
}
.page-staff-recruit .entry-steps__item.is-active .entry-steps__dot {
  background: #27b964;
  border-color: #27b964;
}

.page-staff-contact .entry-hero__en {
  color: #27b964;
}
.page-staff-contact .req-badge {
  background: #27b964;
}
.page-staff-contact .entry-form__input:focus,
.page-staff-contact .entry-form__select:focus,
.page-staff-contact .entry-form__textarea:focus {
  border-color: #27b964;
}
.page-staff-contact .entry-form__submit {
  background: #27b964;
}
.page-staff-contact .entry-form__datetime {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.page-staff-contact .entry-form__date-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
}
.page-staff-contact .entry-form__date {
  cursor: pointer;
  padding-right: 2.75rem;
}
.page-staff-contact .entry-form__date::placeholder {
  color: #b3b3b3;
}
.page-staff-contact .entry-form__date-icon {
  position: absolute;
  top: 50%;
  right: 1.125rem;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #27b964;
  pointer-events: none;
}
.page-staff-contact .entry-form__hour-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.page-staff-contact .entry-form__hour {
  width: 5.5rem;
  padding-right: 1.875rem;
  background-position: right 0.75rem center;
}
.page-staff-contact .entry-form__hour-suffix {
  font-size: 0.9375rem;
  color: #1a1a1a;
}
.page-staff-contact .ui-datepicker {
  width: 300px;
  max-width: calc(100vw - 3rem);
  padding: 1.25rem;
  border: 2px solid #1a1a1a;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  font-family: inherit;
}
.page-staff-contact .ui-datepicker-header {
  position: relative;
  background: none;
  border: none;
  padding: 0 0 1rem;
}
.page-staff-contact .ui-datepicker-title {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 0.25rem;
  text-align: left;
}
.page-staff-contact .ui-datepicker-year {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
}
.page-staff-contact .ui-datepicker-year::after {
  content: "/";
  margin: 0 0.25rem;
  font-weight: 400;
}
.page-staff-contact .ui-datepicker-month {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
}
.page-staff-contact .ui-datepicker-prev,
.page-staff-contact .ui-datepicker-next {
  top: -0.125rem;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  cursor: pointer;
}
.page-staff-contact .ui-datepicker-prev .ui-icon,
.page-staff-contact .ui-datepicker-next .ui-icon {
  background: none;
  text-indent: 0;
  display: block;
  width: auto;
  height: auto;
  font-size: 1.25rem;
  color: #27b964;
}
.page-staff-contact .ui-datepicker-prev.ui-state-hover,
.page-staff-contact .ui-datepicker-next.ui-state-hover {
  background: none;
  border: none;
}
.page-staff-contact .ui-datepicker-prev {
  right: 2.25rem;
  left: auto;
}
.page-staff-contact .ui-datepicker-next {
  right: 0;
}
.page-staff-contact .ui-datepicker-calendar {
  width: 100%;
  border-collapse: collapse;
}
.page-staff-contact .ui-datepicker-calendar th {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #1a1a1a;
  padding-bottom: 0.75rem;
}
.page-staff-contact .ui-datepicker-calendar th span {
  text-decoration: none;
}
.page-staff-contact .ui-datepicker-calendar th:first-child {
  color: #27b964;
}
.page-staff-contact .ui-datepicker-calendar th:last-child {
  color: #7ba7d9;
}
.page-staff-contact .ui-datepicker-calendar td {
  text-align: center;
  padding: 0.125rem;
}
.page-staff-contact .ui-datepicker-calendar td span,
.page-staff-contact .ui-datepicker-calendar td a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin: 0 auto;
  border: none;
  border-radius: 50%;
  font-size: 0.875rem;
  color: #1a1a1a;
  background: none;
  text-align: center;
}
.page-staff-contact .ui-datepicker-calendar .ui-state-default:hover, .page-staff-contact .ui-datepicker-calendar .ui-state-default.ui-state-hover {
  background: rgba(39, 185, 100, 0.12);
  color: #1a1a1a;
}
.page-staff-contact .ui-datepicker-calendar .ui-datepicker-today a {
  border: 1px solid #27b964;
}
.page-staff-contact .ui-datepicker-calendar .ui-state-active {
  background: #27b964 !important;
  color: #fff !important;
}
.page-staff-contact .ui-datepicker-calendar .ui-datepicker-unselectable .ui-state-default {
  color: #ccc;
  cursor: default;
}

.page-staff-confirm .entry-hero__en {
  color: #27b964;
}
.page-staff-confirm .entry-confirm__submit {
  background: #27b964;
}

.page-staff-complete .entry-hero__en {
  color: #27b964;
}
.page-staff-complete .entry-complete__title {
  color: #27b964;
}
.page-staff-complete .entry-complete__btn {
  background: #27b964;
}
.page-staff-complete .entry-complete__icon {
  background: #27b964;
}

.page-cast-contact .l-wrap,
.page-cast-confirm .l-wrap,
.page-cast-complete .l-wrap,
.page-staff-contact .l-wrap,
.page-staff-confirm .l-wrap,
.page-staff-complete .l-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
@media (min-width: 480px) {
  .page-cast-contact .l-wrap,
  .page-cast-confirm .l-wrap,
  .page-cast-complete .l-wrap,
  .page-staff-contact .l-wrap,
  .page-staff-confirm .l-wrap,
  .page-staff-complete .l-wrap {
    min-height: calc(100vh - 100px);
  }
}
.page-cast-contact main,
.page-cast-confirm main,
.page-cast-complete main,
.page-staff-contact main,
.page-staff-confirm main,
.page-staff-complete main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}
.page-cast-contact .page-content,
.page-cast-confirm .page-content,
.page-cast-complete .page-content,
.page-staff-contact .page-content,
.page-staff-confirm .page-content,
.page-staff-complete .page-content {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}
.page-cast-contact .rec-footer,
.page-cast-confirm .rec-footer,
.page-cast-complete .rec-footer,
.page-staff-contact .rec-footer,
.page-staff-confirm .rec-footer,
.page-staff-complete .rec-footer {
  flex-shrink: 0;
}/*# sourceMappingURL=contact.css.map */