/* stylelint-disable-next-line scss/dollar-variable-pattern */
/* stylelint-disable-next-line scss/dollar-variable-pattern */
/* stylelint-disable-next-line scss/dollar-variable-pattern */
/* stylelint-disable-next-line scss/percent-placeholder-pattern */
/* stylelint-disable-next-line scss/percent-placeholder-pattern */
/* stylelint-disable-next-line scss/at-mixin-pattern */
/* stylelint-disable-next-line keyframes-name-pattern */
@keyframes gradationAnimation {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}
/* stylelint-disable-next-line scss/at-mixin-pattern */
@font-face {
  font-family: his-icons;
  src: url("../fonts/hisicons-icomoon.woff") format("woff");
}
:root {
  --swiper-pagination-bullet-horizontal-gap: 0;
  --swiper-pagination-color: #939dad;
  --swiper-pagination-bullet-inactive-color: #e9ecf2;
  --swiper-pagination-bullet-size: 10px;
  --swiper-pagination-bullet-inactive-opacity: 1;
}

@keyframes blink-opacity {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
@keyframes bounce-scale {
  0%, 80%, 100% {
    opacity: 0.3;
    transform: scale(0);
  }
  40% {
    opacity: 1;
    transform: scale(1);
  }
}
.dt-day-select {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dt-day-select .c-dt-select__label small, .dt-day-select .c-dt-select__option small {
  margin-left: 4px;
  font-size: 0.75rem;
  font-weight: bold;
  color: var(--color-warning);
}

.dt-detail-panel {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.dt-detail-panel .ui-static-message-title-wrapper {
  align-items: flex-start;
}
.dt-detail-panel .ui-static-message-title-wrapper .ui-static-icon {
  /* stylelint-disable-next-line declaration-property-value-allowed-list */
  margin-top: 3px;
}
.dt-detail-panel__wrapper {
  padding: 16px;
  background: var(--background-color-primary);
  border: 1px solid #e9ecf2;
  border-radius: 8px;
}
.dt-detail-panel__title {
  padding-bottom: 16px;
  margin-bottom: 16px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 1px solid #e9ecf2;
}
.dt-detail-panel__title-sub {
  display: block;
  margin-top: 8px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
}
.dt-detail-panel__detail-list {
  gap: 4px 16px;
}
.dt-detail-panel__detail {
  display: flex;
  gap: 8px;
  align-items: center;
}
.dt-detail-panel__detail-title {
  min-width: 76px;
  height: 17px;
  padding-inline: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-muted);
  text-align: center;
  background-color: var(--color-white);
  border-radius: 4px;
}
.dt-detail-panel__detail-text {
  font-size: 0.875rem;
  line-height: 1.5;
}

.dt-enter-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 300;
  visibility: visible;
  width: 100%;
  /* stylelint-disable-next-line */
  padding-inline: 88px;
  /* stylelint-disable-next-line */
  margin-right: calc(50% - 50cqi);
  /* stylelint-disable-next-line */
  margin-left: calc(50% - 50cqi);
  background-color: var(--background-color-primary);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4509803922);
  transition: opacity 0.3s, visibility 0.3s;
}
.dt-enter-menu.is-hidden {
  visibility: hidden;
  opacity: 0;
}
.dt-enter-menu__inner {
  display: flex;
  align-items: center;
  justify-content: right;
  max-width: 1104px;
  height: 71px;
  margin-inline: auto;
}
.dt-enter-menu__total-price {
  text-align: right;
}
.dt-enter-menu__price-text {
  font-size: 0.75rem;
  line-height: 1.5;
}
.dt-enter-menu__price {
  font-family: var(--font-family-robot);
  font-size: 1.375rem;
  font-weight: var(--font-bold);
  line-height: 1.3;
  color: var(--color-caution);
}
.dt-enter-menu__price-unit {
  font-size: 0.875rem;
}
.dt-enter-menu__buttons {
  display: flex;
  gap: 8px;
}
.dt-enter-menu__buttons .ui-static-button.is-disabled {
  background-color: rgba(233, 236, 242, 0.6980392157);
  border-color: rgba(192, 197, 204, 0.6980392157);
}
.dt-enter-menu__option-button {
  font-size: 1rem;
  font-weight: var(--font-normal);
}
.dt-enter-menu__reservation-button.ui-static-button:focus {
  outline: auto;
  background: var(--color-hover);
  border-color: var(--color-hover);
}

.dt-fixed-content-item--page-top {
  --dt-page-top-bottom: 93px;
}

.dt-enter-detail-notice {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.dt-enter-detail-notice--before-sales {
  padding: 40px;
  margin-top: 24px !important;
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--color-muted);
  text-align: center;
  background: #f5f7fa;
  border: 1px solid #c0c5cc;
  border-radius: 8px;
}
.dt-enter-detail-notice--before-sales p {
  font-weight: var(--font-bold);
}
.dt-enter-detail-notice__wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dt-enter-detail-notice__text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dt-enter-detail-notice__text {
  font-size: 0.875rem;
  line-height: 1.5;
}
.dt-enter-detail-notice__radio-wrapper.fieldset {
  gap: 16px;
  padding: 16px;
  background-color: var(--color-white);
  border: 2px solid #66a4f9;
}
.dt-enter-detail-notice__radio-wrapper.fieldset .ui-static-checkbox .checkmark {
  top: 0;
  transform: translateY(0%);
}
.dt-enter-detail-notice__radio-wrapper.fieldset .ui-static-checkbox {
  font-weight: var(--font-bold);
}
.dt-enter-detail-notice__login-wrapper {
  width: 100%;
}
.dt-enter-detail-notice__login-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.dt-enter-detail-notice__link span {
  text-decoration: none;
}
.dt-enter-detail-notice .dt-enter-detail-notice__link-button--registration {
  align-items: flex-end;
  font-weight: var(--font-normal);
}

.dt-option-select {
  margin-top: 64px;
}
.dt-option-select__error {
  margin-bottom: 16px;
}
.dt-option-select__error .ui-static-message-title-wrapper {
  align-items: flex-start;
}
.dt-option-select__error .ui-static-message-title-wrapper .ui-static-icon {
  /* stylelint-disable-next-line */
  margin-top: 3px;
}
.dt-option-select__error .c-dt-dot-list {
  margin-top: 16px;
}
.dt-option-select .c-dt-option-select-card {
  margin-top: 16px;
}
.dt-option-select__title + * {
  margin-top: 16px;
}
.dt-option-select__top-message .ui-static-message-text {
  font-size: 0.75rem;
}

.dt-enter-payment-info {
  width: 100%;
  max-width: 672px;
  /* stylelint-disable-next-line declaration-property-value-allowed-list */
  margin-inline: auto;
}
.dt-enter-payment-info__detail {
  margin-top: 24px;
}
.dt-enter-payment-info__overseas-message {
  margin-top: 64px;
}
.dt-enter-payment-info__overseas-message .ui-static-message {
  margin-top: 8px;
  background-color: #f0f7ff;
}
.dt-enter-payment-info__overseas-message .ui-static-message .ui-static-message-title-wrapper {
  align-items: flex-start;
}
.dt-enter-payment-info__overseas-message .ui-static-message .ui-static-message-title-wrapper .ui-static-icon {
  /* stylelint-disable-next-line */
  margin-top: 3px;
}
.dt-enter-payment-info__overseas-message .ui-static-message a {
  color: var(--color-secondary);
  transition: all 0.3s ease-out;
}
.dt-enter-payment-info__overseas-message-heading {
  font-size: 1rem;
  font-weight: var(--font-bold);
  line-height: 1.5;
}
.dt-enter-payment-info__contact {
  margin-top: 40px;
}
.dt-enter-payment-info__coupon-note {
  margin-top: 16px;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--color-muted);
}

.dt-enter-price {
  margin-top: 40px;
}
.dt-enter-price__item {
  display: flex;
  justify-content: space-between;
}
.dt-enter-price__item + .dt-enter-price__item {
  margin-top: 16px;
}
.dt-enter-price__label {
  font-size: 1rem;
  font-weight: var(--font-bold);
  line-height: 1.3;
}
.dt-enter-price__amount {
  font-family: var(--font-family-robot);
  font-size: 1.5rem;
  font-weight: var(--font-bold);
  line-height: 1;
  color: var(--color-caution);
  text-align: right;
}
.dt-enter-price__amount-unit {
  font-family: var(--font-family-noto);
  font-size: 1rem;
  font-weight: var(--font-bold);
  color: var(--color-caution);
}
.dt-enter-price + .dt-enter-price--total {
  padding-top: 16px;
  margin-top: 16px;
  border-top: solid 1px #c0c5cc;
}
.dt-enter-price + .dt-enter-price--total .dt-enter-price__amount {
  font-size: 32px;
}

.dt-enter-payment-contact {
  display: grid;
  gap: 16px;
  justify-content: space-between;
}
.dt-enter-payment-contact__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dt-enter-payment-contact__heading {
  display: flex;
  flex-direction: column;
  /* stylelint-disable-next-line */
  gap: 2px;
  font-size: 0.875rem;
  line-height: 1.5;
}
.dt-enter-payment-contact__heading-large {
  font-size: 1.25rem;
  font-weight: var(--font-bold);
  line-height: 1.3;
}
.dt-enter-payment-contact__application-heading {
  font-size: 1rem;
  line-height: 1.8;
}
.dt-enter-payment-contact__address {
  display: flex;
  flex-direction: column;
  /* stylelint-disable-next-line */
  gap: 2px;
}
.dt-enter-payment-contact__logo {
  display: flex;
  gap: 4px;
  align-items: center;
}

.dt-room-select {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 64px;
}
.dt-room-select__title + * {
  margin-top: 16px;
}
.dt-room-select__section--price {
  padding: 24px;
  background: #f0f7ff;
}
.dt-room-select__section--price .dt-room-select__section-content {
  margin-top: 16px;
}
.dt-room-select__section-content {
  margin-top: 4px;
}
.dt-room-select__section-content--user-select {
  margin-top: 8px;
}
.dt-room-select__price-table:not(.dt-room-select__price-table--day-trip) tr *:nth-child(2) {
  border-left: none !important;
}
.dt-room-select__price-table:not(.dt-room-select__price-table--day-trip) th:first-of-type {
  position: sticky;
  left: 0;
  min-width: 79px;
  padding: 8px 16px !important;
  text-align: left;
  border-right: none !important;
  border-left: none !important;
}
.dt-room-select__price-table:not(.dt-room-select__price-table--day-trip) th:first-of-type::before, .dt-room-select__price-table:not(.dt-room-select__price-table--day-trip) th:first-of-type::after {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 1px;
  height: 100%;
  content: "";
  background-color: #c0c5cc;
}
.dt-room-select__price-table:not(.dt-room-select__price-table--day-trip) th:first-of-type::after {
  right: 0;
  left: auto;
}
.dt-room-select__price-table table {
  width: 100%;
  text-wrap: nowrap;
}
.dt-room-select__price-table th,
.dt-room-select__price-table td {
  /* stylelint-disable-next-line */
  padding: 8px 12px !important;
}
.dt-room-select__price-table td {
  min-width: 84px;
  text-align: right;
  background: #fff;
}
.dt-room-select__price-note {
  margin-top: 8px;
  font-size: 0.75rem;
  color: var(--color-caution);
}
.dt-room-select__price-note + .dt-room-select__price-note {
  margin-top: 4px;
}
.dt-room-select__price-note .ui-static-list-item-bullet-gray {
  /* stylelint-disable-next-line */
  padding-left: 1em;
  text-indent: -1em;
}

.dt-user-select {
  padding: 24px;
  border: 1px solid #c0c5cc;
  border-radius: 8px;
}
.dt-user-select.is-error {
  background-color: #fff7f7;
  border: 2px solid rgba(214, 51, 51, 0.4);
}
.dt-user-select__error {
  margin-bottom: 16px;
}
.dt-user-select__error[data-js-user-select=error], .dt-user-select__error[data-js-user-select=transition-error], .dt-user-select__error[data-js-user-select=infant-error] {
  display: none;
}
.dt-user-select__error .ui-static-message-title-wrapper {
  align-items: flex-start;
}
.dt-user-select__error .ui-static-message-title-wrapper .ui-static-icon {
  /* stylelint-disable-next-line */
  margin-top: 3px;
}
.dt-user-select__error .ui-static-message {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dt-user-select__capacity-error {
  display: none;
  color: #df0d00;
}
.dt-user-select__capacity-error-wrapper {
  display: flex;
  gap: 4px;
}
.dt-user-select__capacity-error-wrapper > i {
  /* stylelint-disable-next-line declaration-property-value-allowed-list */
  margin-top: 2px;
}
.dt-user-select__capacity-error-text {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: inherit;
}
.dt-user-select__error-modal {
  display: none;
}
.dt-user-select__input {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.dt-user-select__input-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
  overflow: hidden;
  border-radius: 8px;
}
.dt-user-select__input-item.is-open .dt-user-select__input-head {
  border-radius: 0;
  transition: all 0s 0s;
}
.dt-user-select__input-head {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: #e0edff;
  border-radius: 0 0 8px 8px;
  transition: all 0.3s 0.25s;
}
.dt-user-select__input-type {
  font-size: 1.125rem;
  font-weight: bold;
}
.dt-user-select__input-note {
  display: block;
  font-size: 0.75rem;
  color: var(--color-muted);
}
.dt-user-select__input-content {
  display: none;
  padding: 16px 24px;
  background: #fff;
  border: 2px solid #e0edff;
  border-top: none;
  border-radius: 0 0 8px 8px;
}
.dt-user-select__input-subitem {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dt-user-select__input-subitem + .dt-user-select__input-subitem {
  margin-top: 16px;
}
.dt-user-select__input-subitem .dt-user-select__input-label {
  display: flex;
  gap: 8px;
  align-items: center;
}
.dt-user-select__note {
  margin-top: 8px;
}
.dt-user-select__confirm {
  margin-top: 24px;
  border: 1px solid #99c4fd;
}
.dt-user-select__confirm-title {
  /* stylelint-disable-next-line */
  padding: 12px 24px;
  font-size: 0.875rem;
  font-weight: bold;
  background: #f0f7ff;
}
.dt-user-select__confirm-users {
  padding: 16px 24px;
  background: #fff;
}
.dt-user-select__total {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.dt-user-select__total-item {
  display: flex;
  justify-content: space-between;
  width: calc(50% - 12px);
}
.dt-user-select__confirm-type {
  font-size: 0.875rem;
}
.dt-user-select__confirm-type--infants {
  font-weight: bold;
}
.dt-user-select__total-note {
  font-size: 0.75rem;
  color: var(--color-muted);
}
.dt-user-select__total-count {
  font-size: 1rem;
  font-weight: bold;
}
.dt-user-select__total-unit {
  font-size: 0.75rem;
}
.dt-user-select__confirm-separator {
  margin: 16px 0;
  border: none;
  border-top: 1px dashed var(--color-gray);
}
.dt-user-select__confirm-infants {
  display: flex;
  justify-content: space-between;
  width: calc(50% - 12px);
}
.dt-user-select__confirm-note {
  margin-top: 8px;
}

.main:has(.dt-input-reservation-layout) ~ .page-top {
  bottom: 87px;
}

.dt-input-reservation-layout {
  word-wrap: anywhere;
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 40px 0 96px;
}
.dt-input-reservation-layout > * {
  width: 100%;
  max-width: 672px;
  margin: auto;
}
.dt-input-reservation-layout:has(.dt-enter-payment-info) {
  padding-bottom: 64px;
}

.ui-static-section-overflow--bg-blue {
  background-color: #f0f7ff;
}
.ui-static-section-overflow--bg-blue .dt-input-reservation-layout {
  /* stylelint-disable-next-line declaration-property-value-allowed-list */
  padding: 40px 20px 0;
}

.ui-static-section-wrapper {
  padding-bottom: 0;
}

.dt-back-button {
  background-color: #f0f7ff;
  /* stylelint-disable-next-line */
  padding: 62px 40px 16px;
}
.dt-back-button__inner {
  max-width: 1104px;
  margin-inline: auto;
}
.dt-back-button .c-dt-link span {
  text-decoration: none;
}
.dt-back-button {
  /* stylelint-disable-next-line selector-class-pattern */
}
.dt-back-button .c-dt-link--with-icon .ui-static-icon {
  color: var(--color-muted);
}

.dt-enter-section--border {
  border-top: 1px solid #c0c5cc;
}

.dt-enter-detail-error {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dt-enter-detail-error:has(+ *) {
  margin-bottom: 16px;
}
@media screen and (768px <= width <= 1104px) {
  .dt-enter-menu {
    /* stylelint-disable-next-line */
    padding-inline: 20px;
  }
}
@media screen and (width < 768px) {
  .dt-detail-panel__detail-list {
    display: flex;
    flex-direction: column;
  }
  .dt-enter-menu {
    /* stylelint-disable-next-line */
    padding-inline: 20px;
  }
  .dt-enter-menu__inner {
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
    justify-content: center;
    height: 95px;
  }
  .dt-enter-menu__total-price {
    display: flex;
    align-items: center;
    justify-content: right;
  }
  .dt-enter-menu__option-button {
    min-width: 144px;
    height: 38px;
    font-size: 0.875rem;
  }
  .dt-enter-menu__reservation-button {
    min-width: 183px;
    height: 38px;
    font-size: 0.875rem;
  }
  .dt-enter-detail-notice--before-sales {
    padding: 24px;
    font-size: 1rem;
  }
  .dt-enter-payment-info {
    /* stylelint-disable-next-line declaration-property-value-allowed-list */
    padding-inline: 20px;
  }
  .dt-enter-payment-info .ui-static-heading {
    font-weight: var(--font-bold);
  }
  .dt-enter-payment-info__detail .ui-static-accordion-content-inner {
    padding: 16px;
  }
  .dt-room-select__section--price {
    padding: 16px;
  }
  .dt-room-select__price-table {
    overflow-x: auto;
    overscroll-behavior-x: none;
  }
  .dt-user-select {
    padding: 16px;
  }
  .dt-user-select__input {
    grid-template-columns: 1fr;
  }
  .dt-user-select__input-item {
    width: 100%;
  }
  .dt-user-select__confirm-title {
    /* stylelint-disable-next-line */
    padding: 12px 16px;
  }
  .dt-user-select__confirm-users {
    padding: 16px;
  }
  .dt-user-select__total-item {
    width: 100%;
  }
  .dt-user-select__confirm-infants {
    width: 100%;
  }
  .main:has(.dt-input-reservation-layout) ~ .page-top {
    bottom: 111px;
  }
  .dt-back-button {
    padding-inline: 16px;
  }
}
@media (any-hover: hover) {
  .swiper-pagination-bullet:hover {
    --swiper-pagination-bullet-inactive-color: #e0edff;
  }
  .swiper-pagination-bullet.swiper-pagination-bullet-active:hover {
    pointer-events: none;
  }
  .dt-enter-detail-notice__link:hover span {
    text-decoration: underline;
  }
  .dt-enter-payment-info__overseas-message .ui-static-message a:hover {
    color: var(--color-hover);
    text-decoration: none;
  }
  .dt-back-button .c-dt-link:hover span {
    text-decoration: underline;
  }
}
@media print, screen and (width >= 768px) {
  .dt-detail-panel__wrapper {
    padding: 24px;
  }
  .dt-detail-panel__detail-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .dt-enter-menu__total-price {
    margin-right: 40px;
  }
  .dt-enter-detail-notice__radio-wrapper.fieldset {
    padding: 16px 24px;
  }
  .dt-enter-payment-contact {
    grid-template-columns: 264px 1fr;
  }
}
