@charset "UTF-8";
/* page */
.c-button:focus-visible, .search-form__foot .search-form__clear-btn:focus-visible, .search-form__all-clear-btn:focus-visible, .search-form .search-form__submit-btn:focus-visible, .popup-filter__primary-btn:focus-visible {
  border: 1px solid #99c4fd;
  color: #140d77;
  background-color: #f0f7ff;
  outline: 1px solid #3064d5;
  outline-offset: 2px;
}

@keyframes gradationAnimation {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}
.error-message {
  padding: 24px;
  background-color: #fff7f7;
}
@media screen and (max-width : 740.98px) {
  .error-message {
    padding: 16px;
  }
}
.error-message + .error-message {
  margin-top: 8px;
}
.section-select__title + .error-message {
  margin-top: 24px;
}
.error-message__head {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.error-message__icon {
  position: relative;
  top: 3px;
}
.error-message__icon:not(img)::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #df0d00;
  mask-image: url(/assets/images/common/icon_warning.svg);
}
.error-message__title {
  font-size: 0.875rem;
  font-weight: bold;
  color: #df0d00;
}
.error-message__text {
  margin-top: 8px;
  font-size: 0.875rem;
  color: #df0d00;
}
.error-message__note {
  margin-top: 8px;
  font-size: 0.75rem;
  color: #df0d00;
}
.error-message__link {
  font-size: 0.875rem;
  text-decoration: underline;
  color: #3064d5;
}
.error-message__link:visited {
  color: #3064d5;
}
@media (hover: hover) {
  .error-message__link:not(.is-disabled-hover):hover {
    color: #140d77;
    text-decoration: none;
  }
}
.error-message--info {
  background-color: #fffcd5;
}
.error-message--info .error-message__icon:not(img)::before {
  background-color: #f29423;
  mask-image: url(/assets/images/common/icon_info_fill.svg);
}
.error-message--info .error-message__title,
.error-message--info .error-message__text,
.error-message--info .error-message__note {
  color: #cf3700;
}
.error-message--gray {
  background-color: #f5f7fa;
}
.error-message--gray .error-message__icon:not(img)::before {
  background-color: #697180;
  mask-image: url(/assets/images/common/icon_info_fill.svg);
}
.error-message--gray .error-message__title,
.error-message--gray .error-message__text,
.error-message--gray .error-message__note {
  color: #2c2a29;
}
.error-message.is-hidden {
  display: none;
}

.accordion__ttl {
  position: relative;
  padding-right: 36px;
}
.accordion__ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 24px;
  height: 24px;
  background-image: url("/assets/images/search-result/icon_accordion_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}
.accordion__ttl:not(.is-open)::after {
  transform: translateY(-50%) rotate(180deg);
}

.is-closed + .js-accordion-contents {
  height: 0;
  display: none;
}

.radio-list {
  display: flex;
  gap: 19px;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 11px;
}
.radio-list input[type=radio],
.radio-list label {
  cursor: pointer;
}
.radio-list input[type=radio] {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
}
.radio-list label {
  display: block;
  position: relative;
  padding-left: 32px;
  font-size: 0.875rem;
}
.radio-list label::after, .radio-list label::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  width: 24px;
  height: 24px;
  appearance: none;
  background-image: url("/assets/images/common/icon_radio.svg"), url("/assets/images/common/icon_radio_hover.svg");
  background-size: 100% 100%, 0 0;
  background-repeat: no-repeat;
}
.radio-list label::after {
  opacity: 0;
  background-image: url("/assets/images/common/icon_radio_checked.svg");
  z-index: 1;
}
@media (hover: hover) {
  .radio-list label:not(.is-disabled-hover):hover::before {
    background-size: 0 0, 100% 100%;
  }
}
.radio-list label:has(input[type=radio]:checked)::after {
  opacity: 1;
}
@media (hover: hover) {
  .radio-list label:has(input[type=radio]:checked):not(.is-disabled-hover):hover::before {
    opacity: 0;
  }
}
.radio-list label:has(input[type=radio]:focus-visible) {
  outline: 2px solid #0078d7;
}
.radio-list label:has(input[type=radio]:focus-visible) input {
  outline: none;
}
.radio-list label:has(input[type=radio]:disabled) {
  pointer-events: none;
}
.radio-list label:has(input[type=radio]:disabled)::before {
  background-image: url("/assets/images/common/icon_radio_disabled.svg");
}
.radio-list label:has(input[type=radio]:disabled)::after {
  background-image: url("/assets/images/common/icon_radio_checked-disabled.svg");
}
.radio-list input[type=radio]:checked + label::after {
  opacity: 1;
}
@media (hover: hover) {
  .radio-list input[type=radio]:checked + label:not(.is-disabled-hover):hover::before {
    opacity: 0;
  }
}
.radio-list input[type=radio]:focus-visible {
  outline: none;
}
.radio-list input[type=radio]:focus-visible + label {
  outline: 2px solid #0078d7;
  outline-offset: 4px;
}
.radio-list input[type=radio]:disabled + label {
  pointer-events: none;
}
.radio-list input[type=radio]:disabled + label::before {
  background-image: url("/assets/images/common/icon_radio_disabled.svg");
}
.radio-list input[type=radio]:disabled + label::after {
  background-image: url("/assets/images/common/icon_radio_checked-disabled.svg");
}
.radio-list__options {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.radio-list--departure {
  width: 360px;
  padding: 16px;
}
@media screen and (max-width : 740.98px) {
  .radio-list--departure {
    width: 100%;
  }
}

.popup-filter-wrapper {
  position: relative !important;
}

.popup-filter {
  display: none;
  position: absolute;
  border: solid 1px #888888;
  overflow: hidden;
  top: 100%;
  z-index: 11;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.45);
  border-radius: 8px;
}
@media screen and (max-width : 740.98px) {
  .popup-filter {
    width: 100%;
  }
}
.popup-filter.is-open {
  display: block;
}
.popup-filter--large.is-open {
  width: 100%;
}
@media print, screen and (min-width: 741px) {
  .popup-filter--large.is-open {
    min-width: 600px;
  }
}
@media screen and (max-width : 740.98px) {
  .popup-filter--large.is-open {
    height: 360px;
  }
}
@media screen and (max-width : 740.98px) {
  .popup-filter--height-auto {
    height: auto;
    overflow-y: auto;
  }
}
@media screen and (max-width : 740.98px) {
  .popup-filter--height-auto.is-open {
    height: auto;
  }
}
@keyframes slideOpen {
  0% {
    max-height: 0;
  }
  100% {
    max-height: 600px;
  }
}
@keyframes slideClose {
  0% {
    display: block;
    max-height: 600px;
  }
  100% {
    display: none;
    max-height: 0;
  }
}
.popup-filter.js-accordion-contents {
  display: none;
}
.popup-filter__head {
  display: none;
}
.popup-filter__body {
  overflow: hidden;
}
.popup-filter__ttl {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
}
.popup-filter__close {
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
  width: 24px;
  height: 24px;
  margin-block: auto;
  padding: 0;
  border: none;
  background-color: transparent;
}
.popup-filter__foot {
  width: 100%;
  margin-top: auto;
  padding: 16px 20px;
  background-color: #f5f7fa;
}
.popup-filter__primary-btn {
  border-radius: 100px;
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
}
@media screen and (max-width : 740.98px) {
  .popup-filter__primary-btn {
    padding: 9px 14px;
    font-size: 0.875rem;
  }
}
@media print, screen and (min-width: 741px) {
  .popup-filter__primary-btn {
    padding: 11px 16px;
    font-size: 1rem;
  }
}
.popup-filter__primary-btn {
  background-color: #10069f;
  color: #fff;
  border: 1px solid transparent;
}
@media (hover: hover) {
  .popup-filter__primary-btn:not(.is-disabled-hover):hover {
    background-color: #140d77;
    color: #fff;
  }
}
.popup-filter__primary-btn:visited:not(:focus-visible) {
  color: #fff;
}
.popup-filter__primary-btn {
  width: 100%;
  padding: 12px 14px;
}

@media screen and (max-width : 740.98px) {
  .filter-popular {
    display: flex;
    white-space: nowrap;
    flex-wrap: nowrap;
    width: calc(100% + 40px);
    transform: translateX(-20px);
    background-color: #f0f7ff;
    display: none;
  }
}
@media screen and (max-width : 740.98px) {
  .filter-popular-section {
    padding-top: 24px;
    position: relative;
  }
}
@media screen and (max-width : 740.98px) and (max-width : 740.98px) {
  .filter-popular-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-top: 1px solid #c0c5cc;
    width: calc(100% + 40px);
    transform: translateX(-20px);
  }
}
@media print, screen and (min-width: 741px) {
  .filter-popular-section {
    padding-top: 24px;
    border-top: 1px solid #c0c5cc;
  }
}
.filter-popular__ttl {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 8px;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.3;
  flex-shrink: 0;
}
@media screen and (max-width : 740.98px) {
  .filter-popular__ttl-text {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    width: 1px;
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
  }
}
@media screen and (max-width : 740.98px) {
  .filter-popular__ttl-text {
    clip: unset;
    clip-path: unset;
    width: unset;
    height: unset;
    overflow: unset;
    position: unset;
    white-space: unset;
  }
}
.filter-popular__ttl-icon {
  display: inline-block;
  vertical-align: bottom;
  width: 24px;
  height: 24px;
  mask-image: url("/assets/images/search-result/icon_sort.svg");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  background-color: #697180;
}
@media screen and (max-width : 740.98px) {
  .filter-popular__ttl-icon {
    width: 20px;
    height: 20px;
    background-color: #697180;
  }
}
.filter-popular__current-num {
  display: none;
}
.filter-popular__current-num[data-filter-selected-num="0"] {
  display: none;
}
@media screen and (max-width : 740.98px) {
  .filter-popular__current-num {
    position: absolute;
    top: 4px;
    right: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: #3064d5;
    border-radius: 50%;
    font-size: 0.75rem;
    line-height: 1.3;
    color: #fff;
  }
}
.filter-popular__button {
  border: none;
  background-color: transparent;
  padding: 0;
  color: #697180;
  pointer-events: none;
}
@media print, screen and (min-width: 741px) {
  .filter-popular__button {
    pointer-events: none;
  }
}
@media screen and (max-width : 740.98px) {
  .filter-popular__button {
    cursor: pointer;
    padding: 15px 16px;
  }
}
@media screen and (max-width : 740.98px) and (hover: hover) {
  .filter-popular__button:hover .filter-popular__ttl-icon {
    background-color: #140d77;
  }
  .filter-popular__button:hover .filter-popular__current-num {
    background-color: #140d77;
  }
}
.filter-popular__more {
  display: none;
}
@media screen and (max-width : 740.98px) {
  .filter-popular__more {
    display: inline-block;
    border: none;
    background-color: transparent;
    font-size: 0.75rem;
    color: #3064d5;
    cursor: pointer;
    padding: 0;
    margin-left: 12px;
  }
}
@media screen and (max-width : 740.98px) and (hover: hover) {
  .filter-popular__more:hover {
    color: #140d77;
  }
}
@media print, screen and (min-width: 741px) {
  .filter-popular .checkbox-list {
    margin-top: 16px;
  }
}
@media screen and (max-width : 740.98px) {
  .filter-popular .checkbox-list {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    column-gap: 4px;
    padding: 8px 40px 8px 0;
    align-items: center;
  }
}
@media screen and (max-width : 740.98px) {
  .filter-popular .checkbox-list label {
    padding: 7.5px 14px;
    font-size: 0.75rem;
    line-height: 1.3;
    background-color: #e0edff;
    border-radius: 100px;
    border: 1px solid transparent;
    color: #2c2a29;
  }
  .filter-popular .checkbox-list label::before {
    display: none;
  }
  .filter-popular .checkbox-list label::after {
    width: 16px;
    height: 16px;
    left: auto;
    right: 12px;
    margin-block: auto;
    background-image: url("/assets/images/search-result/icon_close.svg");
  }
}
.filter-popular .checkbox-list label:has(input[type=checkbox]:checked) {
  padding-right: 32px;
  border-color: #c0c5cc;
  background-color: #fff;
}
@media print, screen and (min-width: 741px) {
  .filter-popular .checkbox-list .js-add-popular-label {
    display: none;
  }
}

.search-form {
  padding-block: 40px 62px;
}
.search-form__ttl-lv1 {
  font-size: 2rem;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width : 740.98px) {
  .search-form__ttl-lv1 {
    font-size: 1.5rem;
  }
}
.search-form__ttl-icon {
  vertical-align: bottom;
}
.search-form__ttl {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: bold;
  padding-right: calc(3em + 12px);
}
.search-form__ttl.accordion__ttl {
  cursor: pointer;
}
.search-form__ttl-lv2 {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 8px;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.3;
  flex-shrink: 0;
}
.search-form__ttl-lv2 .search-form__ttl {
  padding-top: 0;
}
.error-message + .search-form__ttl-lv2 {
  margin-top: 40px;
}
.search-form__ttl-sub {
  margin-left: 8px;
  font-size: 0.75rem;
  font-weight: normal;
  line-height: 1.5;
  color: #697180;
}
.search-form__body {
  max-width: 712px;
  margin-inline: auto;
  padding: 40px 20px 0;
}
.search-form__contents {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 8px;
  padding-top: 16px;
}
@container (max-width: 170px) {
  .search-form__contents:has(.days-range) {
    gap: 0;
  }
}
@media screen and (max-width : 740.98px) {
  .search-form__contents:has(.popup-filter) {
    row-gap: 0;
  }
}
.search-form__contents > .search-form__contents {
  padding-top: 0;
}
.search-form__contents--origin {
  display: none;
}
.search-form__contents--origin.is-active {
  display: flex;
}
.search-form__item {
  position: relative;
  border-top: 1px solid #c0c5cc;
}
@media screen and (max-width : 740.98px) {
  .search-form__item {
    padding-top: 25px;
    padding-bottom: 24px;
    border-top: none;
  }
}
@media print, screen and (min-width: 741px) {
  .search-form__item {
    padding-block: 24px;
  }
}
.search-form__ttl-lv2 + .search-form__item {
  padding-top: 16px;
  border-top: none;
}
@media screen and (max-width : 740.98px) {
  .search-form__ttl-lv2 + .search-form__item::before {
    display: none;
  }
}
.search-form__item:has(.search-form__item) {
  padding-top: 0;
  border-top: none;
}
@media screen and (max-width : 740.98px) {
  .search-form__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-top: 1px solid #c0c5cc;
    width: calc(100% + 40px);
    transform: translateX(-20px);
  }
}
.search-form__body .search-form__clear-btn-wrapper {
  position: absolute;
  top: 24px;
  right: 0;
  width: auto;
  margin-top: 0;
}
@media screen and (max-width : 740.98px) {
  .search-form__body .search-form__clear-btn-wrapper {
    top: 30px;
  }
}
.search-form__body .search-form__clear-btn {
  display: block;
  width: fit-content;
  margin-left: auto;
  font-size: 0.875rem;
  color: #3064d5;
}
.search-form__body .search-form__clear-btn:visited, .search-form__body .search-form__clear-btn:active {
  color: #3064d5;
}
@media (hover: hover) {
  .search-form__body .search-form__clear-btn:not(.is-disabled-hover):hover {
    color: #140d77;
    text-decoration: underline;
  }
}
.search-form__foot .search-form__clear-btn-wrapper {
  display: inline-block;
  max-width: 160px;
  width: 100%;
}
@media screen and (max-width : 740.98px) {
  .search-form__foot .search-form__clear-btn-wrapper {
    max-width: 130px;
  }
}
.search-form__foot .search-form__clear-btn {
  display: block;
  border-radius: 100px;
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
}
@media screen and (max-width : 740.98px) {
  .search-form__foot .search-form__clear-btn {
    padding: 9px 14px;
    font-size: 0.875rem;
  }
}
@media print, screen and (min-width: 741px) {
  .search-form__foot .search-form__clear-btn {
    padding: 11px 16px;
    font-size: 1rem;
  }
}
.search-form__foot .search-form__clear-btn {
  background-color: #fff;
  color: #2c2a29;
  border: 1px solid #939dad;
}
@media (hover: hover) {
  .search-form__foot .search-form__clear-btn:not(.is-disabled-hover):hover {
    background-color: #f0f7ff;
    color: #140d77;
    border-color: #99c4fd;
  }
}
.search-form__foot .search-form__clear-btn:visited:not(:focus-visible) {
  color: #2c2a29;
}
.search-form__foot .search-form__clear-btn {
  --button-padding-block: 11px;
  --button-font-size: 14;
  width: fit-content;
  padding: calc(var(--button-padding-block, 8px) + var(--leading-trim, 0px)) 16px;
  font-size: calc(var(--button-font-size, 12) / 16 * 1rem);
}
@media (hover: hover) {
  .search-form__foot .search-form__clear-btn:not(.is-disabled-hover):hover {
    text-decoration: none;
  }
}
@media print, screen and (min-width: 741px) {
  .search-form__foot .search-form__clear-btn {
    width: fit-content;
    padding: calc(var(--button-padding-block, 12px) + var(--leading-trim, 0px)) 16px;
    font-size: calc(var(--button-font-size, 16) / 16 * 1rem);
    min-width: 160px;
  }
}
@media screen and (max-width : 740.98px) {
  .search-form__foot .search-form__clear-btn {
    width: fit-content;
    padding: calc(var(--button-padding-block, 8px) + var(--leading-trim, 0px)) 16px;
    font-size: calc(var(--button-font-size, 12) / 16 * 1rem);
    width: 100%;
  }
}
.search-form__all-clear-btn {
  display: block;
  border-radius: 100px;
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
}
@media screen and (max-width : 740.98px) {
  .search-form__all-clear-btn {
    padding: 9px 14px;
    font-size: 0.875rem;
  }
}
@media print, screen and (min-width: 741px) {
  .search-form__all-clear-btn {
    padding: 11px 16px;
    font-size: 1rem;
  }
}
.search-form__all-clear-btn {
  background-color: #fff;
  color: #2c2a29;
  border: 1px solid #939dad;
}
@media (hover: hover) {
  .search-form__all-clear-btn:not(.is-disabled-hover):hover {
    background-color: #f0f7ff;
    color: #140d77;
    border-color: #99c4fd;
  }
}
.search-form__all-clear-btn:visited:not(:focus-visible) {
  color: #2c2a29;
}
@media print, screen and (min-width: 741px) {
  .search-form__all-clear-btn {
    display: none;
  }
}
@media screen and (max-width : 740.98px) {
  .search-form__all-clear-btn {
    --button-font-size: 14;
    --button-padding-block: 12px;
    width: fit-content;
    padding: calc(var(--button-padding-block, 8px) + var(--leading-trim, 0px)) 16px;
    font-size: calc(var(--button-font-size, 12) / 16 * 1rem);
    width: 100%;
    max-width: 256px;
    margin-top: 16px;
    margin-inline: auto;
  }
}
.search-form .search-form__submit-btn {
  position: relative;
  border-radius: 100px;
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
}
@media screen and (max-width : 740.98px) {
  .search-form .search-form__submit-btn {
    padding: 9px 14px;
    font-size: 0.875rem;
  }
}
@media print, screen and (min-width: 741px) {
  .search-form .search-form__submit-btn {
    padding: 11px 16px;
    font-size: 1rem;
  }
}
.search-form .search-form__submit-btn {
  background-color: #10069f;
  color: #fff;
  border: 1px solid transparent;
}
@media (hover: hover) {
  .search-form .search-form__submit-btn:not(.is-disabled-hover):hover {
    background-color: #140d77;
    color: #fff;
  }
}
.search-form .search-form__submit-btn:visited:not(:focus-visible) {
  color: #fff;
}
.search-form .search-form__submit-btn {
  font-weight: bold;
}
.search-form .search-form__submit-btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 16px;
  bottom: 0;
  width: 16px;
  height: 16px;
  margin-block: auto;
  background-color: #fff;
  mask: url("/assets/images/common/icon_search.svg") no-repeat center;
}
@media (hover: hover) {
  .search-form .search-form__submit-btn:not(.is-disabled-hover):hover::before {
    background-color: #fff;
  }
}
.search-form .search-form__submit-btn:focus-visible::before {
  background-color: #140d77;
}
@media print, screen and (min-width: 741px) {
  .search-form .search-form__submit-btn {
    --button-font-size: 14;
    width: fit-content;
    padding: calc(var(--button-padding-block, 8px) + var(--leading-trim, 0px)) 16px;
    font-size: calc(var(--button-font-size, 12) / 16 * 1rem);
  }
}
.search-form .search-form__item > .accordion__ttl:not(.accordion__ttl--code) + .js-accordion-contents {
  display: block !important;
}
.search-form .search-form__ttl-lv2 + .search-form__item {
  border-top: none;
}
.search-form .search-form__item + .search-form__ttl-lv2 {
  position: relative;
  padding-top: 24px;
  margin: 0;
}
.search-form .search-form__item + .search-form__ttl-lv2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
}
@media print, screen and (min-width: 741px) {
  .search-form .search-form__item + .search-form__ttl-lv2::before {
    border-top: 1px dashed #c0c5cc;
  }
}
@media screen and (max-width : 740.98px) {
  .search-form .search-form__item + .search-form__ttl-lv2::before {
    border-top: 8px solid #c0c5cc;
    width: calc(100% + 40px);
    transform: translateX(-20px);
  }
}
.search-form__close-wrapper {
  position: fixed;
  top: 13px;
  right: 0;
  left: 0;
  z-index: 101;
  max-width: 712px;
  padding-inline: 20px;
  margin-inline: auto;
}
@media screen and (max-width : 740.98px) {
  .search-form__close-wrapper {
    top: 16px;
  }
}
.search-form__foot {
  position: sticky;
  bottom: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  gap: 24px;
  width: 100%;
  margin-top: 16px;
  padding: 16px;
  background-color: #f5f7fa;
}
@media screen and (max-width : 740.98px) {
  .search-form__foot {
    gap: 8px;
    padding-inline: 20px;
  }
  .is-single-tab .search-form__foot {
    padding-bottom: calc(var(--extra-safe-bottom) + var(--safe-bottom));
  }
}
@media print, screen and (min-width: 741px) {
  .search-form__submit-btn {
    width: 100%;
    min-width: 256px;
    padding: calc(var(--button-padding-block, 12px) + var(--leading-trim, 0px)) 16px;
    font-size: calc(var(--button-font-size, 16) / 16 * 1rem);
    max-width: 256px;
  }
}
@media screen and (max-width : 740.98px) {
  .search-form__submit-btn {
    --button-padding-block: 11px;
    --button-font-size: 14;
    width: fit-content;
    padding: calc(var(--button-padding-block, 8px) + var(--leading-trim, 0px)) 16px;
    font-size: calc(var(--button-font-size, 12) / 16 * 1rem);
    max-width: 197px;
    width: 100%;
  }
}

.search-form__item .search-form__item:last-child {
  padding-bottom: 0;
}
.search-form__item:has(.search-item) {
  display: none;
}
.search-form__item:has(.search-item)::before {
  display: none;
}
.search-form__item:has(.search-item.is-active) {
  display: flex;
  padding-bottom: 24px;
  flex-direction: column;
}
.search-form__item:has(.search-item.is-active)::before {
  display: block;
}

.search-label {
  box-sizing: border-box;
  display: block;
  width: 100%;
  background: #fff;
  position: relative;
}
.search-label input[type=text] {
  text-overflow: ellipsis; /* 省略記号 */
  white-space: nowrap; /* 折り返さない */
  overflow: hidden; /* はみ出しを隠す */
}
.search-label input[type=text],
.search-label select:not(.ui-datepicker-month) {
  width: 100%;
  padding: 15px 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-size: 0.875rem;
}
@supports (-webkit-touch-callout: none) {
  .search-label input[type=text],
  .search-label select:not(.ui-datepicker-month) {
    font-size: 16px;
    transform: scale(0.875);
    transform-origin: left center;
  }
}
.search-label input[type=text],
.search-label select:not(.ui-datepicker-month) {
  line-height: 1.3;
  background: #fff;
  border: 1px solid #939dad;
  border-radius: 8px;
  color: #2c2a29;
}
.search-label input[type=text]:focus-visible,
.search-label select:not(.ui-datepicker-month):focus-visible {
  background-color: #f0f7ff;
  outline: 2px solid #99c4fd;
  outline-offset: -1px;
}
.search-label input[type=text]:disabled,
.search-label select:not(.ui-datepicker-month):disabled {
  background-color: rgba(233, 236, 242, 0.7);
  border-color: rgba(192, 197, 204, 0.7);
  color: #939dad;
}
.search-label--error input[type=text],
.search-label--error select:not(.ui-datepicker-month) {
  background-color: #fff7f7;
  border: 2px solid rgba(214, 51, 51, 0.4);
}
.search-label--error input[type=text]:focus-visible,
.search-label--error select:not(.ui-datepicker-month):focus-visible {
  border-color: transparent;
}
.search-label__error-txt {
  display: none;
  gap: 4px;
  margin-top: 4px;
  font-size: 0.75rem;
  color: #df0d00;
}
.search-label--error .search-label__error-txt {
  display: flex;
}
.search-label::before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 0.75rem;
  box-sizing: border-box;
  z-index: 1;
}
.search-label--budget-low, .search-label--budget-high {
  width: 83px;
}
@container (max-width: 170px) {
  .search-label--budget-low, .search-label--budget-high {
    width: 152px;
    margin-top: 4px;
  }
}
@media print, screen and (min-width: 741px) {
  .search-label--budget-low, .search-label--budget-high {
    width: 158px;
  }
}
.search-label--departure-date input[type=text], .search-label--budget-low input[type=text], .search-label--budget-high input[type=text], .search-label--city input[type=text], .search-label--area input[type=text], .search-label--keyword input[type=text] {
  padding-top: 22px;
  padding-bottom: 8px;
}
.search-label--travel-days select:not(.ui-datepicker-month), .search-label--number-rooms select:not(.ui-datepicker-month), .search-label--room-type select:not(.ui-datepicker-month) {
  padding-top: 22px;
  padding-bottom: 8px;
}
@media print, screen and (min-width: 741px) {
  .search-label--travel-days, .search-label--number-rooms {
    width: 216px;
    margin-bottom: auto;
  }
}
.search-label--departure-date {
  width: 100%;
  max-width: 101px;
}
@container (max-width: 170px) {
  .search-label--departure-date {
    max-width: unset;
    width: 100%;
    margin-top: 16px;
  }
  .search-label--departure-date input[type=text] {
    width: 100%;
  }
  .search-label--departure-date .search-from {
    width: 100%;
    margin-top: 0;
  }
}
@media screen and (max-width : 740.98px) {
  .search-label--departure-date {
    max-width: none;
  }
}
.search-label--departure-date::before {
  content: "出発日";
}
.search-label--departure-date.is-hidden {
  visibility: hidden;
  opacity: 0;
}
@container (max-width: 170px) {
  .search-label--departure-date.is-hidden {
    height: 0;
  }
}
.search-label--pulldown-icon input[type=text],
.search-label--pulldown-icon select:not(.ui-datepicker-month), .search-label--required input[type=text],
.search-label--required select:not(.ui-datepicker-month) {
  padding-right: 32px;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: right 8px center;
}
.search-label--pulldown-icon select:not(.ui-datepicker-month) {
  background-image: url("/assets/images/search-result/icon_select_arrow.svg");
}
.search-label--required input[type=text] {
  background-image: url("/assets/images/search-result/icon_checked_circle.svg");
}
.search-label--required input[type=text]:placeholder-shown {
  background-image: url("/assets/images/search-result/icon_check_circle.svg");
}
.search-label--travel-days .option-pulldown__label::before {
  content: "旅行日数";
}
.search-label--number-rooms .option-pulldown__label::before {
  content: "室数";
}
.search-label--room-type .option-pulldown__label::before {
  content: "部屋タイプ";
}
.search-label--budget-low::before {
  content: "下限";
}
.search-label--budget-high::before {
  content: "上限";
}
.search-label--city::before {
  content: "都市";
}
.search-label--area::before {
  content: "地域";
}
.search-label--keyword::before {
  content: "キーワード";
}

@container (max-width: 170px) {
  .search-from {
    margin-top: 4px;
  }
}
@container (max-width: 170px) {
  .search-from + .search-label--departure-date {
    margin-top: 4px;
  }
}
@container (max-width: 170px) {
  .search-from.is-hidden {
    display: none;
  }
}

.budget {
  display: flex;
  flex-wrap: wrap;
}

.budget-bar {
  width: calc(100% - 20px);
  transform: translateX(10px);
  margin-top: 10px;
  margin-bottom: 13px;
}
@media print, screen and (min-width: 741px) {
  .budget-bar {
    width: 335px;
  }
}

.budget-yen-label {
  width: 100%;
  margin-bottom: 16px;
}
.budget-yen-label__inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media print, screen and (min-width: 741px) {
  .budget-yen-label__inner {
    width: 335px;
  }
}
.budget-yen-label__text {
  font-size: 0.875rem;
  line-height: 1.5;
}

.budget-yen,
.search-from {
  height: 1.3em;
  position: relative;
  top: 16px;
  font-size: 0.875rem;
  line-height: 1.3;
}

.budget-yen {
  margin-left: 4px;
}

.search-from {
  margin-inline: 8px;
}
.search-from.is-hidden {
  display: none;
}

.noUi-target {
  height: 6px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.noUi-connect {
  height: 6px;
  background: #3064d5;
}

.noUi-connects {
  background-color: #e9ecf2;
}

.noUi-horizontal .noUi-handle {
  width: 20px !important;
  height: 20px !important;
  border: none;
  border-radius: 50% !important;
  cursor: pointer;
  top: -8px;
  right: -20px;
}
.noUi-horizontal .noUi-handle:focus-visible {
  outline: 2px solid #0078d7;
  outline-offset: 1px;
}
.noUi-horizontal .noUi-handle-lower {
  transform: translateX(-10px);
}
.noUi-horizontal .noUi-handle-upper {
  transform: translateX(-10px);
}

.noUi-touch-area {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("/assets/images/search-result/icon_slide.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.noUi-handle::before,
.noUi-handle::after,
.noUi-pips-horizontal {
  display: none;
}

.checkbox-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%;
  row-gap: 8px;
}
.checkbox-list input[type=checkbox],
.checkbox-list label {
  cursor: pointer;
}
.checkbox-list input[type=checkbox] {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
}
.checkbox-list label {
  display: block;
  width: fit-content;
  position: relative;
  min-height: 24px;
  padding-left: 32px;
  font-size: 0.875rem;
}
.checkbox-list label::after, .checkbox-list label::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  width: 24px;
  height: 24px;
  appearance: none;
  background-image: url("/assets/images/common/icon_checkbox.svg"), url("/assets/images/common/icon_checkbox_hover.svg");
  background-size: 100% 100%, 0 0;
  background-repeat: no-repeat;
}
.checkbox-list label::after {
  opacity: 0;
  background-image: url("/assets/images/common/icon_checkbox_checked.svg"), url("/assets/images/common/icon_checkbox_checked-hover.svg");
  background-size: 100% 100%, 0 0;
  z-index: 1;
}
@media (hover: hover) {
  .checkbox-list label:not(.is-disabled-hover):hover::before {
    background-size: 0 0, 100% 100%;
  }
}
.checkbox-list label:has(input[type=checkbox]:checked)::after {
  opacity: 1;
}
@media (hover: hover) {
  .checkbox-list label:has(input[type=checkbox]:checked):not(.is-disabled-hover):hover::before {
    opacity: 0;
  }
  .checkbox-list label:has(input[type=checkbox]:checked):not(.is-disabled-hover):hover::after {
    background-size: 0 0, 100% 100%;
  }
}
.checkbox-list label:has(input[type=checkbox]:focus-visible) {
  outline: 2px solid #0078d7;
}
.checkbox-list label:has(input[type=checkbox]:focus-visible) input {
  outline: none;
}
.checkbox-list label:has(input[type=checkbox]:disabled) {
  pointer-events: none;
}
.checkbox-list label:has(input[type=checkbox]:disabled)::before {
  background-image: url("/assets/images/common/icon_checkbox_disabled.svg");
}
.checkbox-list label:has(input[type=checkbox]:disabled)::after {
  background-image: url("/assets/images/common/icon_checkbox_checked-disabled.svg");
}
.checkbox-list input[type=checkbox].is-hidden,
.checkbox-list label.is-hidden {
  display: none;
}
.checkbox-list--brand, .checkbox-list--airline {
  width: 382px;
  padding: 16px;
}
@media screen and (max-width : 740.98px) {
  .checkbox-list--brand, .checkbox-list--airline {
    width: 100%;
  }
}
.checkbox-list__sub-label {
  display: block;
  font-size: 0.75rem;
  color: #697180;
}

.checkbox-list--preferences {
  margin-top: 8px;
}
@media print, screen and (min-width: 741px) {
  .checkbox-list--preferences {
    flex-direction: row;
    gap: 16px 24px;
  }
}
@media print, screen and (min-width: 741px) {
  .checkbox-list--preferences .search-form__clear-btn {
    display: none;
  }
}
@media print, screen and (min-width: 741px) {
  .checkbox-list--preferences input[type=checkbox].is-hidden,
  .checkbox-list--preferences label.is-hidden {
    display: unset;
  }
}

.checkbox-title {
  font-size: 0.875rem;
  font-weight: bold;
}
.checkbox-list + .checkbox-title {
  margin-top: calc(16px + var(--leading-trim, 0px));
}

.search-item {
  display: none;
}
.search-item.is-active {
  display: flex;
  flex-direction: column;
}

.room-type {
  width: 100%;
}
@media print, screen and (min-width: 741px) {
  .room-type {
    width: 208px;
    margin-left: auto;
  }
}
.room-type__item {
  display: none;
}
.room-type__item + .room-type__item {
  margin-top: 8px;
}
.room-type__item.is-show {
  display: flex;
  align-items: center;
}
.room-type__text {
  margin-right: 8px;
  font-size: 0.875rem;
  white-space: nowrap;
}

.check-list {
  width: 100%;
}
.check-list:not(.check-list--middle) {
  overflow-x: hidden;
  overflow-y: auto;
}
.check-list .check-list__item {
  width: 100%;
}
.check-list .check-list__item:not(:first-of-type) {
  border-top: solid 1px #d7d7d7;
}
.check-list .check-list__category-title {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 5px;
  cursor: pointer;
}
.check-list .check-list__category-title p {
  font-weight: bold;
  width: calc(100% - 20px);
  padding-left: 5px;
  padding-right: 25px;
  position: relative;
}
.check-list .check-list__category-title p::after {
  box-sizing: border-box;
  content: "";
  display: block;
  width: 13px;
  height: 8px;
  background: url("/assets/images/search-form/icon_arrow_down.svg") no-repeat 100%/100%;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
}
.check-list .check-list__category-title p.non-icon::after {
  display: none;
}
.check-list .check-list__category-title p.is-open::after {
  transform: translateY(-50%) rotate(180deg);
}
.check-list .check-list__checkbox {
  width: 100%;
}
.check-list .check-list__checkbox--notFull {
  width: auto;
}
.check-list .check-list__checkbox input[type=checkbox] {
  display: none;
}
.check-list .check-list__checkbox label {
  display: block;
  height: 20px;
  padding-left: 20px;
  cursor: pointer;
  position: relative;
}
.check-list .check-list__checkbox label::before {
  box-sizing: border-box;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: solid 1px #888888;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
}
.check-list .check-list__checkbox--large {
  padding: 5px;
}
.check-list .check-list__checkbox--large label {
  font-weight: bold;
  padding-left: 25px;
}
.check-list .check-list__checkbox label::before {
  box-sizing: border-box;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: solid 1px #888888;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
}
.check-list .check-list__checkbox input[type=checkbox]:checked + label::before {
  background: url("/assets/images/search-form/icon_check.svg") no-repeat 100%/100%;
}
.check-list--middle {
  display: none;
  padding-left: 25px;
  border-top: solid 1px #d7d7d7;
}
.check-list--middle.is-open {
  display: block;
}
.check-list--middle .check-list__item {
  padding: 5px 0;
}
.check-list--middle .check-list__checkbox label {
  padding-left: 25px;
  font-size: 1rem;
  line-height: 1.2;
}
@media print, screen and (min-width: 741px) {
  .check-list {
    width: 340px;
  }
  .check-list:not(.check-list--middle) {
    max-height: 300px;
  }
  .check-list .check-list__item:hover {
    background: #f2f2f2;
  }
  .check-list--middle .check-list__item:hover {
    background: #ffffff;
  }
}
@media screen and (max-width : 740.98px) {
  .check-list:not(.check-list--middle) {
    max-height: 200px;
  }
}

.check-inner .select-list__item {
  border-bottom: 1px solid #d7d7d7;
  cursor: pointer;
}
.check-inner .select-list__item.is-active {
  background-color: #fff;
}
@media print, screen and (min-width: 741px) {
  .check-inner .select-list__item:hover {
    background-color: #fff;
  }
}

.select-list__checkbox {
  width: 100%;
}
.select-list__checkbox--notFull {
  width: auto;
}
.select-list__checkbox input[type=checkbox] {
  display: none;
}
.select-list__checkbox label {
  display: block;
  min-height: 20px;
  padding-left: 20px;
  cursor: pointer;
  position: relative;
  background: #fff;
}
.select-list__checkbox label::before {
  box-sizing: border-box;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: solid 1px #888888;
  border-radius: 4px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.select-list__checkbox input[type=checkbox]:checked + label::before {
  background: url("../images/search-result/icon_check.svg") no-repeat 100%/100%;
}

.select-list__category-title {
  padding: 10px 16px;
  display: flex;
  align-items: center;
}
.select-list__category-title p {
  padding-left: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
}
@media print, screen and (min-width: 741px) {
  .select-list__category-title p br {
    display: none;
  }
}
@media screen and (max-width : 740.98px) {
  .select-list__category-title p {
    font-size: 12px;
  }
}
@media screen and (max-width : 740.98px) {
  .select-list__category-title {
    padding: 10px 12px;
  }
}

.search-calendar {
  position: relative;
}
@media screen and (max-width : 740.98px) {
  .search-calendar {
    width: calc(50% - 24px);
  }
}
.modal-filter.is-show .search-calendar {
  flex-wrap: nowrap;
}
.search-calendar__content {
  max-height: none;
  min-height: 377px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  position: relative;
  z-index: 1;
}
@media screen and (max-width : 740.98px) {
  .search-calendar__content {
    max-height: 93.7dvh;
    border-radius: 8px 8px 0 0;
  }
}
.search-calendar__header {
  position: relative;
  padding: 16px;
}
@media print, screen and (min-width: 741px) {
  .search-calendar__header {
    display: none;
  }
}
.search-calendar__title {
  font-weight: bold;
  text-align: center;
  font-size: 18px;
  line-height: 1.3;
  padding-inline: 16px;
}
.search-calendar__close-button {
  display: block;
  width: 24px;
  height: 24px;
  background-color: #697180;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-image: url(/assets/images/common/icon_close.svg);
  mask-image: url(/assets/images/common/icon_close.svg);
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 16px;
}
.search-calendar__main {
  padding: 16px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.search-calendar__pulldown {
  width: fit-content;
  min-width: 600px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.45);
  transition-property: opacity, visibility;
  position: absolute;
  left: 0;
  transition-duration: 0.3s;
  z-index: 100;
  overflow: hidden;
}
@media print, screen and (min-width: 741px) {
  .search-calendar__pulldown {
    border-radius: 8px;
  }
}
.search-calendar__pulldown.is-open {
  opacity: 1;
  visibility: initial;
  top: 51px;
}
@media screen and (max-width : 740.98px) {
  .search-calendar__pulldown.is-open {
    position: fixed;
    top: auto;
    bottom: 0;
    width: 100%;
    min-width: auto;
    top: auto;
  }
  .search-calendar__pulldown.is-open::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
  }
}

.js-pulldown {
  display: none;
}

.js-pulldown.is-open {
  display: block;
}

/* 目的地
-------------------------*/
@keyframes modalSlideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
.c-modal:not(.c-modal--scrollable) .c-modal__contents {
  padding: 0;
}
@media print, screen and (min-width: 741px) {
  .c-modal:not(.c-modal--scrollable) .c-modal__contents {
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
}
@media screen and (max-width : 740.98px) {
  .c-modal:not(.c-modal--scrollable) .c-modal__contents {
    width: 100%;
    height: calc(100% - 48px);
    top: auto;
    bottom: 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    overflow: hidden;
  }
}
@media screen and (max-width : 740.98px) {
  .c-modal:not(.c-modal--scrollable).is-show .c-modal__contents {
    animation: modalSlideUp 0.3s ease forwards;
  }
}
@media screen and (max-width : 740.98px) {
  .c-modal__bg {
    pointer-events: none;
  }
}
.c-modal__title {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  padding: 16px 40px;
}
@media screen and (max-width : 740.98px) {
  .c-modal__title {
    font-size: 1.125rem;
    border-bottom: none;
  }
}
.c-modal__close {
  top: 17px;
  right: 17px;
}
.c-modal__close > img {
  width: 100%;
  max-width: none;
  height: 100%;
}

.checkbox-modal .c-modal__inner,
.checkbox-modal__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.select-item-trigger {
  width: 100%;
  background-color: #f5f7fa;
  border-bottom: 1px solid #e9ecf2;
  cursor: pointer;
}
@media screen and (max-width : 740.98px) {
  .select-item-trigger {
    position: relative;
    padding: 8px;
    background-color: transparent;
    border-bottom: none;
  }
  .select-item-trigger .c-input-checkbox + .c-input-name {
    padding: 0 8px 0 32px;
  }
  .select-item-trigger .c-input-checkbox + .select-item-trigger__category-title::before, .select-item-trigger .c-input-checkbox + .select-item-trigger__category-title::after {
    inset: auto;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  .select-item-trigger::after {
    content: "";
    display: block;
    background-color: #697180;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
    transition: background-color 0.3s;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    mask-image: url(/assets/images/common/icon_arrow.svg);
  }
  .select-item-trigger.is-open::after {
    transform: translateY(-50%) rotate(180deg);
  }
}
.select-item-trigger__item {
  padding: 16px 16px 18px;
}
@media screen and (max-width : 740.98px) {
  .select-item-trigger__item {
    padding: 8px 32px 8px 8px;
    border-radius: 4px;
  }
  .select-item-trigger__item:has(.c-input-checkbox:checked) {
    background-color: #f0f7ff;
  }
}
.select-item-trigger.is-active .select-item-trigger__item {
  background-color: #ffffff;
}
.select-item-trigger.is-active .select-item-trigger__item:has(.c-input-checkbox:checked) {
  background-color: #f0f7ff;
}
@media screen and (max-width : 740.98px) {
  .select-item-trigger.is-active .select-item-trigger__item {
    background-color: #f0f7ff;
  }
}
.select-item-trigger:has(.c-input-checkbox:disabled) {
  pointer-events: none;
  background-color: rgba(233, 236, 242, 0.7);
}
.select-item-trigger:has(.c-input-checkbox:disabled) .c-input-name {
  color: #939dad;
}
.select-item-trigger:has(.c-input-checkbox:disabled)::after {
  background-color: #acb5bf;
}
.select-item-trigger.is-disabled {
  pointer-events: none;
  cursor: not-allowed;
  border-bottom-color: #e9ecf2;
  background-color: rgba(233, 236, 242, 0.7);
}
.select-item-trigger__category-title {
  font-size: 0.875rem;
  font-weight: bold;
  color: #2c2a29;
}
@media screen and (max-width : 740.98px) {
  .select-item-trigger__category-title {
    width: 100%;
    font-size: 0.875rem;
    font-weight: bold;
    line-height: 1.5;
    color: #2c2a29;
  }
}
.select-item-trigger__label {
  align-items: center;
}

.check-area--s {
  display: flex;
  gap: 16px 24px;
  background-color: #f5f7fa;
  padding: 12px;
  margin-top: 8px;
  margin-left: 24px;
}
.check-area--origin .check-area--s {
  display: none;
}
.check-area--has-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  width: 100%;
  margin-top: 16px;
}
.check-area--has-wrap .c-form-label {
  margin-left: 12px;
}
.check-area__checkbox--wrap .c-input-name {
  font-weight: bold;
}
.check-area.has-airport .check-area-s--airport {
  display: flex;
}
.check-area.has-station .check-area-s--station {
  display: flex;
}
.check-area.is-accordion .check-area__checkbox--m,
.check-area.is-accordion .check-area__checkbox--wrap {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.check-area.is-accordion .check-area__checkbox--m::after,
.check-area.is-accordion .check-area__checkbox--wrap::after {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url(/assets/images/common/icon_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 8px;
}
@media screen and (max-width : 740.98px) {
  .check-area.is-accordion .check-area__checkbox--m::after,
  .check-area.is-accordion .check-area__checkbox--wrap::after {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
}
.check-area.is-accordion .check-area__checkbox--m.is-open::after,
.check-area.is-accordion .check-area__checkbox--wrap.is-open::after {
  transform: rotate(180deg);
}
@media screen and (max-width : 740.98px) {
  .check-area.is-accordion .check-area__checkbox--m.is-open::after,
  .check-area.is-accordion .check-area__checkbox--wrap.is-open::after {
    transform: translateY(-50%) rotate(180deg);
  }
}

@media print, screen and (min-width: 741px) {
  .select-item-trigger-wrap {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1;
    width: 152px;
    pointer-events: auto;
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .c-modal:not(.c-modal--scrollable).checkbox-modal--destination .c-modal__contents {
    height: 760px;
  }
  .c-modal:not(.c-modal--scrollable).checkbox-modal--origin .c-modal__contents {
    max-height: calc(100% - clamp(12px, 19.74vh - 122.83px, 42px));
  }
  .check-inner {
    background: #ffffff;
  }
  .select-contents {
    grid-row: 1/12;
    grid-column: 2/3;
  }
  .check-area {
    flex: 1;
    overflow-y: auto;
    flex-wrap: wrap;
    align-content: flex-start;
  }
  .check-area--middle {
    display: none;
    gap: 16px 24px;
    width: 100%;
    height: 100%;
    padding: 24px;
  }
  .check-area--middle.is-active {
    display: flex;
  }
  .check-area__checkbox label {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: normal;
    line-height: 1.5;
    color: #2c2a29;
  }
  .check-area-display {
    position: relative;
    display: grid;
    grid-template-columns: 152px 1fr;
    align-items: start;
    width: 100%;
  }
  .check-area-display__item {
    display: contents;
  }
  .check-area-button {
    grid-column: span 2/span 2;
    display: flex;
    gap: 24px;
    justify-content: center;
    background: #f5f7fa;
    width: 100%;
    padding: 17px;
    text-align: center;
    z-index: 1;
    border-top: 2px solid #ffffff;
    flex-shrink: 0;
  }
  .check-area-button > .c-button--lg {
    margin: 0;
    padding: 11px 16px 12px;
  }
  .check-area-button > .c-button--white {
    max-width: 160px;
    width: 100%;
  }
  .c-modal__title,
  .check-area-button {
    flex-shrink: 0;
  }
}
/* PC（マウス操作）であり、かつ高さが低い場合のみ */
@media screen and (min-width: 768px) and (max-height: 835px) and (any-hover: hover) {
  .checkbox-modal--origin .select-item-trigger__item {
    padding-top: clamp(10px, 3.95vh - 16.98px, 16px);
    padding-bottom: clamp(10px, 5.26vh - 25.92px, 18px);
    padding-inline: 16px;
  }
  .checkbox-modal--origin .check-area-button {
    padding: clamp(12px, 3.29vh - 10.47px, 17px);
  }
  .checkbox-modal--origin .c-modal__title {
    padding-block: clamp(12px, 2.63vh - 5.96px, 16px);
  }
  .checkbox-modal--origin:not(.c-modal--scrollable) .c-modal__contents {
    max-height: calc(100% - clamp(12px, 19.74vh - 122.83px, 42px));
  }
}
@media screen and (min-width: 768px) and (max-height: 820px) and (any-hover: hover) {
  .checkbox-modal--destination .select-item-trigger__item {
    padding-top: clamp(10px, 3.33vh - 11.31px, 16px);
    padding-bottom: clamp(10px, 4.44vh - 18.41px, 18px);
    padding-inline: 16px;
  }
  .checkbox-modal--destination .check-area-button {
    padding: clamp(12px, 2.78vh - 5.8px, 17px);
  }
  .checkbox-modal--destination .c-modal__title {
    padding-block: clamp(12px, 2.22vh - 2.2px, 16px);
  }
  .checkbox-modal--destination:not(.c-modal--scrollable) .c-modal__contents {
    max-height: calc(100% - clamp(12px, 16.67vh - 94.69px, 42px));
  }
}
@media screen and (max-width : 740.98px) {
  .check-area-display {
    flex: 1;
    min-width: 0;
    min-height: 0;
    padding: 16px 20px 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .check-area-display__item {
    border: #e9ecf2 solid 1px;
    border-radius: 8px;
  }
  .check-area-display__item + .check-area-display__item {
    margin-top: 16px;
  }
  .select-contents {
    display: none;
    padding: 0 16px 16px 40px;
  }
  .checkbox-modal .c-modal__inner {
    max-height: 93.7vh;
    max-height: 93.7dvh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .checkbox-modal .checkbox-modal__content,
  .checkbox-modal .check-inner,
  .checkbox-modal .check-area {
    min-width: 0;
    min-height: 0;
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .check-area {
    overflow: hidden;
  }
  .check-area--middle {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    padding: 0;
  }
  .check-area--origin .check-area--s {
    display: none;
  }
  .check-area-button {
    position: sticky;
    bottom: 0;
    left: 0;
    display: flex;
    gap: 8px;
    justify-content: center;
    background: #f5f7fa;
    width: 100%;
    padding: 16px 20px;
    text-align: center;
    z-index: 1;
  }
  .check-area-button > .c-button--mg {
    margin: 0;
  }
  .check-area-button > .c-button--white {
    max-width: 130px;
    width: 100%;
  }
  .check-area-button > .c-button--lg {
    margin-inline: 0;
  }
}
/* checkbox
-------------------------*/
.modal-filter .checkbox-modal.is-show .c-modal__close {
  display: block;
  top: 17px;
  right: 17px;
}
.checkbox-modal .check-area__item {
  padding: 0;
}
.checkbox-modal .check-area__item.is-hide {
  display: none;
}
.checkbox-modal .c-form-label {
  display: flex;
  width: fit-content;
  cursor: pointer;
  position: relative;
  padding-inline: 0;
}
.checkbox-modal .c-form-label::before {
  display: none;
}
.checkbox-modal .c-form-label:has(:disabled) {
  cursor: not-allowed;
  pointer-events: none;
}
.checkbox-modal .c-form-label:has(.c-input-disabled) {
  cursor: not-allowed;
  pointer-events: none;
}
@media (hover: hover) {
  .checkbox-modal .c-form-label:not(.is-disabled-hover):hover .c-input-name::before,
  .checkbox-modal .c-form-label:not(.is-disabled-hover):hover .c-input-icon::before {
    background-size: 0 0, 100% 100%;
  }
  .checkbox-modal .c-form-label:not(.is-disabled-hover):hover:has(input[type=checkbox]:checked) .c-input-name::before, .checkbox-modal .c-form-label:not(.is-disabled-hover):hover:has(input[type=checkbox]:checked) .c-input-icon::before {
    opacity: 0;
  }
  .checkbox-modal .c-form-label:not(.is-disabled-hover):hover:has(input[type=checkbox]:checked) .c-input-name::after, .checkbox-modal .c-form-label:not(.is-disabled-hover):hover:has(input[type=checkbox]:checked) .c-input-icon::after {
    background-size: 0 0, 100% 100%;
  }
}
.checkbox-modal .c-form-label:has(.c-input-checkbox:focus-visible), .checkbox-modal .c-form-label:has(.c-input-radio:focus-visible) {
  outline: 2px auto #0078d7;
  outline-offset: 1px;
}
.checkbox-modal .c-input-icon {
  cursor: pointer;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.checkbox-modal .c-input-checkbox {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  white-space: nowrap;
  position: absolute;
  overflow: hidden;
}
.checkbox-modal .c-input-checkbox + .c-input-name, .checkbox-modal .c-input-checkbox + .c-input-icon {
  position: relative;
  display: flex;
  gap: 8px;
  min-height: 24px;
  font-size: 0.875rem;
}
.checkbox-modal .c-input-checkbox + .c-input-name::before, .checkbox-modal .c-input-checkbox + .c-input-icon::before {
  content: "";
  display: block;
  width: 24px;
  aspect-ratio: 1;
  border: 2px solid var(--borderColor, #939dad);
  background-color: var(--backgroundColor, #ffffff);
  box-sizing: border-box;
  flex-shrink: 0;
}
.checkbox-modal .c-input-checkbox.c-input-required + .c-input-name::before, .checkbox-modal .c-input-checkbox.c-input-required + .c-input-icon::before {
  --backgroundColor: #fdffe5;
}
.checkbox-modal .c-input-checkbox.c-input-error:not(:checked) + .c-input-name::before, .checkbox-modal .c-input-checkbox.c-input-error:not(:checked) + .c-input-icon::before {
  --borderColor: rgba(214, 51, 51, 0.4);
  --backgroundColor: var(--background-color-error);
}
.checkbox-modal .c-input-checkbox:checked + .c-input-name::before, .checkbox-modal .c-input-checkbox:checked + .c-input-icon::before {
  --borderColor: var(--color-secondly);
}
.checkbox-modal .c-input-checkbox:checked + .c-input-name::after, .checkbox-modal .c-input-checkbox:checked + .c-input-icon::after {
  position: absolute;
  display: inline-block;
}
.checkbox-modal .c-input-checkbox + .c-input-name::before, .checkbox-modal .c-input-checkbox + .c-input-name::after, .checkbox-modal .c-input-checkbox + .c-input-icon::before, .checkbox-modal .c-input-checkbox + .c-input-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  width: 24px;
  height: 24px;
  appearance: none;
  background-image: url(/assets/images/common/icon_checkbox.svg), url(/assets/images/common/icon_checkbox_hover.svg);
  background-size: 100% 100%, 0 0;
  background-repeat: no-repeat;
  border: 0;
  background-color: transparent;
}
.checkbox-modal .c-input-checkbox + .c-input-name::after, .checkbox-modal .c-input-checkbox + .c-input-icon::after {
  opacity: 0;
  background-image: url(/assets/images/common/icon_checkbox_checked.svg), url(/assets/images/common/icon_checkbox_checked-hover.svg);
  background-size: 100% 100%, 0 0;
  z-index: 1;
}
.checkbox-modal .c-input-checkbox + .c-input-name {
  padding-left: 32px;
}
.checkbox-modal .c-input-checkbox + .c-input-icon + .c-input-name {
  padding-left: 8px;
  font-size: 0.875rem;
}
.checkbox-modal .c-input-checkbox:checked + .c-input-name, .checkbox-modal .c-input-checkbox:checked + .c-input-icon {
  --borderColor: transparent;
  --backgroundColor: transparent;
}
.checkbox-modal .c-input-checkbox:checked + .c-input-name::after, .checkbox-modal .c-input-checkbox:checked + .c-input-icon::after {
  opacity: 1;
}
@media (hover: hover) {
  .checkbox-modal .c-input-checkbox:checked + .c-input-name:not(.is-disabled-hover):hover::before, .checkbox-modal .c-input-checkbox:checked + .c-input-icon:not(.is-disabled-hover):hover::before {
    opacity: 0;
  }
  .checkbox-modal .c-input-checkbox:checked + .c-input-name:not(.is-disabled-hover):hover::after, .checkbox-modal .c-input-checkbox:checked + .c-input-icon:not(.is-disabled-hover):hover::after {
    background-size: 0 0, 100% 100%;
  }
}
.checkbox-modal .c-input-checkbox:disabled + .c-input-name::before, .checkbox-modal .c-input-checkbox:disabled + .c-input-icon::before {
  background-image: url(/assets/images/common/icon_checkbox_disabled.svg);
}
.c-form-label:has(.checkbox-modal .c-input-checkbox:disabled) {
  pointer-events: none;
}
.checkbox-modal .c-input-checkbox:disabled:checked + .c-input-name::after, .checkbox-modal .c-input-checkbox:disabled:checked + .c-input-icon::after {
  background-image: url(/assets/images/common/icon_checkbox_checked-disabled.svg);
}
.checkbox-modal .c-input-checkbox.is-dashed + .c-input-name::before, .checkbox-modal .c-input-checkbox.is-dashed + .c-input-icon::before {
  background-image: url(/assets/images/common/icon_checkbox_dash_enabled.svg), url(/assets/images/common/icon_checkbox_dash_hover.svg);
  background-size: 100% 100%, 0px 0px;
}
.checkbox-modal .c-input-text:-ms-input-placeholder {
  color: #939dad;
}
.checkbox-modal .c-input-text::-ms-input-placeholder {
  color: #939dad;
}
.checkbox-modal .c-input-text::placeholder {
  color: #939dad;
}
.checkbox-modal .c-input-text:disabled:-ms-input-placeholder {
  color: #c0c5cc;
}
.checkbox-modal .c-input-text:disabled::-ms-input-placeholder {
  color: #c0c5cc;
}
.checkbox-modal .c-input-text:disabled::placeholder {
  color: #c0c5cc;
}
.checkbox-modal .c-input-text {
  --borderColor: #939dad;
  --backgroundColor: var(--color-white);
  --sp-width: 100%;
  --pc-width: 100%;
  width: var(--sp-width);
  height: auto;
  min-height: 50px;
  padding: 10px 8px;
  color: var(--color-base);
  border: solid 1px var(--borderColor);
  border-radius: 8px;
  background-color: var(--backgroundColor);
  resize: vertical;
}
@media print, screen and (min-width: 741px) {
  .checkbox-modal .c-input-text {
    width: var(--pc-width);
  }
}
.checkbox-modal .c-input-text.c-input-required {
  --backgroundColor: #fdffe5;
}
.checkbox-modal .c-input-text.c-input-error {
  --borderColor: rgba(214, 51, 51, 0.4);
  --backgroundColor: var(--background-color-error);
  border-width: 2px;
}
.checkbox-modal .c-input-text:focus {
  --borderColor: transparent;
  outline: 2px solid #99c4fd;
  --backgroundColor: #f0f7ff;
}
.checkbox-modal .c-input-box {
  border: 3px solid rgba(242, 148, 35, 0.4);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.checkbox-modal .c-input-box .c-input-name {
  font-weight: var(--font-bold);
}
.checkbox-modal .c-input-box .c-input-checkbox:disabled + .c-input-name {
  color: #697180;
}
.checkbox-modal .c-input-checkbox:not(:disabled) + .c-input-name .c-input-name-grid__sub-item,
.checkbox-modal .c-input-checkbox:not(:disabled) + .c-input-icon .c-input-name-grid__sub-item {
  color: var(--color-muted);
}

/* c-button
-------------------------*/
.c-button {
  border-radius: 100px;
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
}
@media screen and (max-width : 740.98px) {
  .c-button {
    padding: 9px 14px;
    font-size: 0.875rem;
  }
}
@media print, screen and (min-width: 741px) {
  .c-button {
    padding: 11px 16px;
    font-size: 1rem;
  }
}
.c-button {
  background-color: #10069f;
  color: #fff;
  border: 1px solid transparent;
}
@media (hover: hover) {
  .c-button:not(.is-disabled-hover):hover {
    background-color: #140d77;
    color: #fff;
  }
}
.c-button:visited:not(:focus-visible) {
  color: #fff;
}
.c-button {
  width: 100%;
  padding: 12px 14px;
  font-weight: bold;
}
.c-button--lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 11px 24px 11px 16px;
  max-width: 256px;
  margin-inline: auto;
  font-size: 1rem;
  line-height: 1.3;
}
.c-button--lg .c-button__text {
  flex: 1;
}
.c-button--md {
  padding: 8px 16px;
  max-width: 197px;
  margin-inline: auto;
  font-size: 1rem;
  line-height: 1.3;
}
.c-button--md .c-button__text {
  flex: 1;
}
.c-button--white {
  background-color: #ffffff;
  border: #939dad solid 1px;
  color: #2c2a29;
  font-weight: normal;
}
@media (hover: hover) {
  .c-button--white:not(.is-disabled-hover):hover {
    background-color: #f0f7ff;
    border-color: #99c4fd;
    color: #140d77;
  }
}
.c-button__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.option-pulldown {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.option-pulldown + .option-pulldown {
  margin-top: 8px;
}
.option-pulldown__title {
  min-width: 104px;
  font-size: 0.875rem;
  font-weight: bold;
}
@media screen and (max-width : 740.98px) {
  .option-pulldown__title {
    min-width: 119px;
  }
}
.option-pulldown__area {
  width: 100%;
  position: relative;
}
.option-pulldown__input {
  color: transparent;
  opacity: 0;
  cursor: pointer;
}
.option-pulldown__label {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #939dad;
  border-radius: 8px;
  padding: 22px 32px 8px 8px;
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
  font-size: 0.875rem;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
  cursor: pointer;
  color: #2c2a29;
  background-color: #fff;
}
.option-pulldown__input:focus-visible + .option-pulldown__label {
  outline: 2px auto #0078d7;
}
.option-pulldown__label::before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 0.75rem;
  box-sizing: border-box;
  z-index: 1;
}
.option-pulldown__label::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background-color: #697180;
  mask-image: url(/assets/images/common/icon_arrow.svg);
  mask-size: 16px 16px;
  mask-repeat: no-repeat;
  mask-position: right 12px center;
}
.option-pulldown__label-text {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.option-pulldown__contents {
  position: absolute;
  z-index: 3;
  display: none;
  top: 50px;
  left: 0;
  width: 100%;
  box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  background-color: #ffffff;
  overflow: hidden;
}
@media screen and (max-width : 740.98px) {
  .option-pulldown__contents {
    width: 100%;
  }
}
.option-pulldown__contents.is-active {
  display: block;
}
.option-pulldown__list, .option-pulldown__item {
  margin: 0;
  padding: 0;
  list-style: none;
}
.option-pulldown__item-label {
  display: block;
  width: 100%;
  position: relative;
  padding: 8px 16px;
  cursor: pointer;
  background-color: #fff;
  transition: background-color 0.2s;
}
@media (hover: hover) {
  .option-pulldown__item-label:not(.is-disabled-hover):hover {
    background-color: #c0dbff;
  }
}
.option-pulldown__item--soldout .option-pulldown__item-label {
  cursor: default;
  pointer-events: none;
}
.option-pulldown__item-radio {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
}
.option-pulldown__item-text {
  font-size: 0.875rem;
}
.option-pulldown__item-radio:checked + .option-pulldown__item-text {
  font-weight: bold;
}
.option-pulldown__item--soldout .option-pulldown__item-text {
  color: #939dad;
}
.option-pulldown__item-note {
  display: block;
  font-size: 0.75rem;
  color: #939dad;
}

.tag-area {
  padding: 0 16px 16px;
  border-bottom: #e9ecf2 solid 1px;
}
@media screen and (max-width : 740.98px) {
  .tag-area {
    border-bottom: none;
  }
}
.tag-area__inner {
  padding: 16px;
  background-color: #f5f7fa;
  border-radius: 8px;
}
.tag-area__title {
  font-size: 0.875rem;
  font-weight: bold;
}
.tag-area__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.tag-area__button {
  padding: 4px 12px;
  border: 1px solid #939dad;
  border-radius: 4px;
  background-color: #fff;
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: center;
  color: #2c2a29;
  cursor: pointer;
  transition: 0.2s;
}
@media (hover: hover) {
  .tag-area__button:not(.is-disabled-hover):hover {
    background-color: #e0edff;
    border-color: #99c4fd;
    color: #140d77;
  }
}
.tag-area__button:disabled {
  background-color: rgba(233, 236, 242, 0.7);
  border-color: rgba(192, 197, 204, 0.7);
  color: #939dad;
  pointer-events: none;
}
.tag-area__button.is-active {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #e0edff;
  border-color: #99c4fd;
  color: #2c2a29;
}
.tag-area__button.is-active::after {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  mask-image: url(/assets/images/common/icon_close.svg);
  background-color: #697180;
  transition: 0.2s;
}
@media (hover: hover) {
  .tag-area__button.is-active:not(.is-disabled-hover):hover {
    background-color: #c0dbff;
    border-color: #66a4f9;
    color: #140d77;
  }
  .tag-area__button.is-active:not(.is-disabled-hover):hover::after {
    background-color: #140d77;
  }
}
