@charset "UTF-8";
/* variable */
/* foundation */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --leading-trim: calc((1em - 1lh) / 2);
  --safe-bottom: env(safe-area-inset-bottom);
  --extra-safe-bottom: 44px;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  width: 100%;
  font-size: 100%;
  color: #2c2a29;
}

body {
  position: relative;
  -webkit-text-size-adjust: 100%;
}

main {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: "Noto Sans JP", sans-serif;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

button {
  cursor: pointer;
  touch-action: manipulation;
}

:focus-visible {
  outline: 2px auto #0078d7;
}

[data-hide-target] {
  display: none;
}

[data-rental-content] {
  display: none;
}

[data-rental-content][data-rental-visible] {
  display: block;
}

@media screen and (max-width: 740px) {
  main {
    -webkit-text-size-adjust: 100%;
  }
}
@media print {
  body {
    -webkit-print-color-adjust: exact;
  }
}
/* utility */
@media screen and (max-width: 740px) {
  .pc-only {
    display: none !important;
  }
}
@media print, screen and (min-width: 741px) {
  .sp-only {
    display: none !important;
  }
}
.txc {
  text-align: center;
}

.txl {
  text-align: left;
}

.txr {
  text-align: right;
}

.mt-1em {
  margin-top: 1em;
}

.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

.no-scroll {
  overflow: hidden;
}

/* layout */
@keyframes gradationAnimation {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}
@media print, screen and (min-width: 741px) {
  .sidebar {
    container-type: inline-size;
    max-width: 232px;
    min-width: 170px;
    width: 100%;
  }
}
@media screen and (max-width : 740.98px) {
  .sidebar {
    padding-inline: 20px;
  }
  .sidebar .modal-filter__head {
    display: none;
  }
  .sidebar .modal-filter__body {
    display: none;
  }
}

@media print, screen and (min-width: 741px) {
  .container {
    width: 100%;
  }
}
@media print, screen and (min-width: 741px) {
  .container:has(.sidebar) {
    display: flex;
    gap: 40px;
    max-width: 1116px;
    margin: 0 auto;
    padding-block: 40px 96px;
    padding-inline: 6px;
  }
}
@media screen and (max-width : 740.98px) {
  .container:has(.sidebar) {
    padding-block: 0 96px;
  }
}

@media print, screen and (min-width: 741px) {
  .main-content {
    flex-grow: 1;
    max-width: 832px;
  }
}
@media screen and (max-width : 740.98px) {
  .main-content {
    margin-top: 24px;
    padding-inline: 20px;
  }
}

/* components */
.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;
}

.back-link {
  max-width: 1200px;
  padding: 0 48px 16px;
  margin-inline: auto;
}
@media screen and (max-width : 740.98px) {
  .back-link {
    padding-inline: 20px;
  }
}
.back-link__text {
  color: #2c2a29;
  font-size: 0.75rem;
  font-weight: normal;
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.back-link__text::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #697180;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-image: url("/assets/images/common/icon_arrow_left.svg");
  mask-image: url("/assets/images/common/icon_arrow_left.svg");
  transition: background-color 0.2s;
}
@media (hover: hover) {
  .back-link__text:not(.is-disabled-hover):hover {
    color: #140d77;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .back-link__text:not(.is-disabled-hover):hover::before {
    background-color: #140d77;
  }
}

.breadcrumb {
  width: 100%;
  padding: 8px 16px;
  box-sizing: border-box;
}
.breadcrumb__inner {
  display: flex;
  align-items: center;
  column-gap: 4px;
  overflow-x: auto;
  white-space: nowrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  margin: 0;
}
.breadcrumb__item .breadcrumb__itemInner {
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 0.75rem;
}
.breadcrumb__item .breadcrumb__itemInner:focus-visible {
  outline-offset: -1px;
}
.breadcrumb__item :where(a.breadcrumb__itemInner) {
  color: #697180;
}
@media (hover: hover) {
  .breadcrumb__item :where(a.breadcrumb__itemInner):not(.is-disabled-hover):hover {
    color: #3064d5;
    text-decoration-color: #3064d5;
    text-underline-offset: 2px;
  }
}
.breadcrumb__item :where(a.breadcrumb__itemInner):visited {
  color: #697180;
}
.breadcrumb__item + .breadcrumb__item::before {
  display: flex;
  gap: 4px;
  content: "";
  width: 16px;
  height: 16px;
  background-color: transparent;
  background-image: url("/assets/images/common/icon_breadcrumb_arrow.svg");
  top: 2px;
  left: 0;
  margin: 0;
}
@media print, screen and (min-width: 741px) {
  .breadcrumb__item + .breadcrumb__item::before {
    left: -4px;
  }
}
.breadcrumb__item:first-child a::before {
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  background-color: #acb5bf;
  -webkit-mask-image: url("/assets/images/common/icon_home.svg");
  mask-image: url("/assets/images/common/icon_home.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.breadcrumb__item:last-child {
  color: #2c2a29;
}

.c-sub-header {
  width: 100%;
  background-color: #f2f2f2 !important;
}
.c-sub-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  padding: 9px 18px;
}
.c-sub-header__link-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: auto;
}
.c-sub-header__link {
  display: flex;
  align-items: center;
  color: #2c2a29;
  font-size: 0.833125rem;
  line-height: 150%;
  opacity: 1;
  white-space: nowrap;
  background-repeat: no-repeat;
  background-position: center left 0;
  font-weight: bold;
}
.c-sub-header__link:not(:first-of-type) {
  margin-left: 18px;
}
@media print, screen and (min-width: 741px) {
  .c-sub-header__link:hover {
    opacity: 0.5;
  }
}
.c-sub-header__link--list {
  background-image: url("/assets/images/common/icon_menu.svg");
  background-size: 18px 18px;
  padding-left: 22px;
}
.c-sub-header__link--mypage {
  background-image: url("/assets/images/common/icon_account_circle.svg");
  background-size: 18px 18px;
  padding-left: 22px;
}
.c-sub-header__link--login {
  background-image: url("/assets/images/common/icon_login.svg");
  background-size: 18px 18px;
  padding-left: 22px;
}

@media print, screen and (min-width: 741px) {
  .footer-top-button::before {
    display: none;
  }
}
.c-rounded-button {
  border-radius: 100px;
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
}
@media screen and (max-width : 740.98px) {
  .c-rounded-button {
    padding: 9px 14px;
    font-size: 0.875rem;
  }
}
@media print, screen and (min-width: 741px) {
  .c-rounded-button {
    padding: 11px 16px;
    font-size: 1rem;
  }
}
.c-rounded-button {
  background-color: #10069f;
  color: #fff;
  border: 1px solid transparent;
}
@media (hover: hover) {
  .c-rounded-button:not(.is-disabled-hover):hover {
    background-color: #140d77;
    color: #fff;
  }
}
.c-rounded-button:visited:not(:focus-visible) {
  color: #fff;
}
.c-rounded-button {
  width: auto;
  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);
  display: inline-block;
  border-radius: 100px;
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
}
.c-rounded-button:focus-visible {
  outline: 1px solid #3064d5;
  outline-offset: 2px;
  background-color: #140d77;
  color: #fff;
}
.c-rounded-button--bg-white {
  background-color: #fff;
  color: #2c2a29;
  border: 1px solid #939dad;
}
@media (hover: hover) {
  .c-rounded-button--bg-white:not(.is-disabled-hover):hover {
    background-color: #f0f7ff;
    color: #140d77;
    border-color: #99c4fd;
  }
}
.c-rounded-button--bg-white:visited:not(:focus-visible) {
  color: #2c2a29;
}
.c-rounded-button--bg-white:focus-visible {
  background-color: #f0f7ff;
  color: #140d77;
  border-color: #99c4fd;
}
.c-rounded-button__sub-text {
  font-size: 0.75rem;
  line-height: 1.3;
}

.c-section {
  width: 100%;
  padding: 40px 20px 62px;
}
.c-section__inner {
  max-width: 1200px;
  margin-inline: auto;
}
.c-section__title {
  text-align: center;
}

.c-calendar {
  position: relative;
  z-index: 2;
  margin-top: 40px;
}
@media screen and (max-width : 740.98px) {
  .c-calendar {
    margin-top: 24px;
  }
}
.c-calendar__month {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media print, screen and (min-width: 741px) {
  .c-calendar__month {
    width: 100%;
    max-width: 660px;
    margin: 0 auto;
  }
}
.c-calendar__month-btn {
  position: relative;
  display: block;
  border: none;
  cursor: pointer;
  padding: 0;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  opacity: 1;
  font-size: 0;
  width: 24px;
  height: 24px;
}
.c-calendar__month-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: #697180;
  z-index: -1;
}
@media (hover: hover) {
  .c-calendar__month-btn:not(.is-disabled-hover):hover {
    opacity: 0.7;
  }
}
.c-calendar__month-btn:disabled {
  pointer-events: none;
}
.c-calendar__month-btn:disabled::before {
  background-color: #acb5bf;
}
.c-calendar__month-btn--prev::before {
  mask-image: url(/assets/images/tour-detail/icon_calendar_arrow_left.svg);
}
.c-calendar__month-btn--next::before {
  mask-image: url(/assets/images/tour-detail/icon_calendar_arrow_right.svg);
}
.c-calendar__month-select {
  position: relative;
}
.c-calendar__month-select::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-block: auto;
  mask-image: url(/assets/images/tour-detail/icon_calendar_arrow_bottom.svg);
  mask-position: right center;
  mask-repeat: no-repeat;
  mask-size: 24px 24px;
  background-color: #697180;
}
@media screen and (max-width : 740.98px) {
  .c-calendar__month-select::after {
    mask-size: 16px 16px;
  }
}
.c-calendar__month-select .select-month {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  display: block;
  border: none;
  border-radius: 0;
  background-color: transparent;
  color: #2c2a29;
  padding: 8px 28px 8px 8px;
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: bold;
}
@media screen and (max-width : 740.98px) {
  .c-calendar__month-select .select-month {
    font-size: 1rem;
  }
}
@media (hover: hover) {
  .c-calendar__month-select:not(.is-disabled-hover):hover .select-month {
    color: #140d77;
  }
  .c-calendar__month-select:not(.is-disabled-hover):hover::after {
    background-color: #140d77;
  }
}
.c-calendar__weekdays {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 16px;
}
.c-calendar__weekdays-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 14.2857142857%;
  background-color: #f5f7fa;
  padding-block: 5px;
  font-size: 0.75rem;
  line-height: 1.3;
  font-weight: bold;
}
.c-calendar__weekdays-day:first-child {
  color: #df0d00;
}
.c-calendar__weekdays-day:last-child {
  color: #007cdd;
}
.c-calendar__week-row {
  display: flex;
  color: #2c2a29;
}
.c-calendar__week-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  position: relative;
  background: #fff;
  border: 0;
  border-radius: 0;
  color: #2c2a29;
}
@media print, screen and (min-width: 741px) {
  .c-calendar__week-col {
    width: 96px;
    height: 69px;
    padding: 16px 4px 8px;
  }
}
@media screen and (max-width : 740.98px) {
  .c-calendar__week-col {
    width: 14.2857142857%;
    height: 53px;
    padding: 6px 6px 4px;
  }
}
.c-calendar__week-col:focus-visible {
  outline-offset: -2px;
}
.c-calendar__week-col:first-child {
  color: #df0d00;
}
.c-calendar__week-col:last-child {
  color: #007cdd;
}
.c-calendar__week-col.is-empty {
  background: transparent !important;
  box-shadow: none;
  pointer-events: none;
}
.c-calendar__week-col.is-disabled {
  pointer-events: none;
  color: #c0c5cc !important;
}
.c-calendar__week-col::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  right: 8px;
}
@media print, screen and (min-width: 741px) {
  .c-calendar__week-col::after {
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width : 740.98px) {
  .c-calendar__week-col::after {
    width: 6px;
    height: 6px;
  }
}
@media (hover: hover) {
  .c-calendar__week-col:not(.is-disabled-hover):hover {
    background-color: #f0f7ff;
  }
}
.c-calendar__week-col.status-confirm::after {
  background: #14e3c7;
}
.c-calendar__week-col.status-soon::after {
  background: #fcc452;
}
.c-calendar__week-col.status-answer::after, .c-calendar__week-col.status-before::after {
  background-size: contain;
  background-repeat: no-repeat;
}
@media print, screen and (min-width: 741px) {
  .c-calendar__week-col.status-answer::after, .c-calendar__week-col.status-before::after {
    top: 6px;
    width: 16px;
    height: 16px;
  }
}
@media screen and (max-width : 740.98px) {
  .c-calendar__week-col.status-answer::after, .c-calendar__week-col.status-before::after {
    top: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
  }
}
.c-calendar__week-col.status-answer::after {
  background-image: url("/assets/images/tour-detail/icon_diamond.svg");
}
.c-calendar__week-col.status-before::after {
  background-image: url("/assets/images/tour-detail/icon_circle_dashed.svg");
}
.c-calendar__text {
  display: none;
  text-align: right;
  margin-top: 8px;
  font-size: 0.75rem;
  color: #697180;
}
@media screen and (max-width : 740.98px) {
  .c-calendar__text {
    padding-inline: 20px;
  }
}
.c-calendar__text.is-show {
  display: block;
}
.c-calendar__status-group {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 12px;
  margin-top: 16px;
}
@media screen and (max-width : 740.98px) {
  .c-calendar__status-group {
    padding-inline: 20px;
  }
}
.c-calendar__status-group .tooltip {
  position: static;
}
.c-calendar__status {
  display: flex;
  align-items: center;
  text-decoration: underline;
  font-size: 0.75rem;
}
.c-calendar__status::before {
  content: "";
  display: block;
  margin-right: 4px;
  width: 16px;
  height: 16px;
}
.c-calendar__status.status-accepting::before, .c-calendar__status.status-answer::before, .c-calendar__status.status-before::before, .c-calendar__status.status-closed::before {
  background-repeat: no-repeat;
  background-size: contain;
}
.c-calendar__status.status-confirm::before, .c-calendar__status.status-soon::before {
  border-radius: 50%;
}
.c-calendar__status.status-accepting::before {
  background-image: url("/assets/images/tour-detail/icon_circle.svg");
}
.c-calendar__status.status-confirm::before {
  background: #14e3c7;
}
.c-calendar__status.status-soon::before {
  background: #fcc452;
}
.c-calendar__status.status-closed::before {
  background-image: url("/assets/images/tour-detail/icon_cross-gray.svg");
}
.c-calendar__status.status-before::before {
  background-image: url("/assets/images/tour-detail/icon_circle_dashed.svg");
}
.c-calendar__status.status-answer::before {
  background-image: url("/assets/images/tour-detail/icon_diamond.svg");
}
.c-calendar__notes {
  width: 100%;
}
.c-calendar__note {
  font-size: 0.75rem;
  text-indent: -1em;
  padding-left: 1em;
}
.c-calendar__note::before {
  content: "※";
}
.c-calendar__note + .c-calendar__note {
  margin-top: 4px;
}
.c-calendar__attention {
  font-size: 0.75rem;
  margin-top: -32px;
  padding: 0 5.33333% 16px;
  background-color: #fff;
}
.c-calendar__attention::before {
  content: "※";
}
@media screen and (max-width : 740.98px) {
  .c-calendar__contents {
    width: calc(100% + 40px);
    transform: translateX(-20px);
  }
}
.c-calendar__content {
  width: 100%;
  max-width: 672px;
  margin-inline: auto;
  display: none;
}
.c-calendar__content.is-show {
  display: block;
}
.c-calendar__week {
  display: none;
  width: 100%;
  max-width: 672px;
  margin-inline: auto;
}
.c-calendar__week.is-active {
  display: block;
}
@media print, screen and (min-width: 741px) {
  .c-calendar__notes {
    width: 100%;
    max-width: 660px;
    margin: 10px auto 0;
  }
}
@media screen and (max-width : 740.98px) {
  .c-calendar__notes {
    padding: 16px 5.33333% 0;
    background-color: #f2f2f2;
  }
}
.c-calendar__day {
  font-size: 0.875rem;
}
.c-calendar__price {
  font-size: 0.875rem;
  color: #2c2a29;
  letter-spacing: -0.06em;
  margin-top: 10px;
}
@media screen and (max-width : 740.98px) {
  .c-calendar__price {
    font-size: 0.75rem;
    color: #697180;
    margin-top: 5px;
  }
}
@media screen and (max-width : 740.98px) {
  .c-calendar__price > span {
    display: none;
  }
}
.c-calendar__price-yen {
  font-size: 0.75rem;
  line-height: 1.3;
  letter-spacing: -0.06em;
}
.c-calendar__list {
  margin-top: 16px;
  border-top: 1px solid #c0c5cc;
  border-bottom: 1px solid #c0c5cc;
}
.c-calendar__list-item {
  display: flex;
  width: 100%;
  min-height: 51px;
  cursor: pointer;
}
.c-calendar__list-item:not(:first-of-type) {
  border-top: 1px dashed #c0c5cc;
}
.c-calendar__list-item.is-disabled {
  pointer-events: none;
}
.c-calendar__list-item.is-disabled .c-calendar__list-price p, .c-calendar__list-item.is-disabled .c-calendar__list-price span, .c-calendar__list-item.is-disabled .c-calendar__list-text {
  color: #c0c5cc;
}
.c-calendar__list-item.is-disabled .c-calendar__list-text {
  color: #c0c5cc;
}
.c-calendar__list-item.is-disabled .c-calendar__list-text::after {
  background-color: #acb5bf;
}
@media (hover: hover) {
  .c-calendar__list-item:not(.is-disabled-hover):hover .c-calendar__list-contents {
    background-color: #f0f7ff;
  }
  .c-calendar__list-item:not(.is-disabled-hover):hover .c-calendar__list-text {
    color: #140d77;
  }
  .c-calendar__list-item:not(.is-disabled-hover):hover .c-calendar__list-text::after {
    background-color: #140d77;
  }
}
.c-calendar__list-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  background-color: #f5f7fa;
  padding: 8px;
}
@media screen and (max-width : 740.98px) {
  .c-calendar__list-head {
    width: 56px;
  }
}
.c-calendar__list-item.is-sat .c-calendar__list-head {
  color: #007cdd;
}
.c-calendar__list-item.is-holiday .c-calendar__list-head {
  color: #df0d00;
}
.c-calendar__list-day {
  font-size: 0.875rem;
  line-height: 1.3;
}
.c-calendar__list-weekday {
  font-size: 0.75rem;
  line-height: 1.3;
  font-weight: bold;
}
.c-calendar__list-contents {
  position: relative;
  width: calc(100% - 80px);
  padding: 16px 68px 16px 16px;
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (max-width : 740.98px) {
  .c-calendar__list-contents {
    width: calc(100% - 56px);
  }
}
.c-calendar__list-status {
  font-size: 0.75rem;
  min-height: 1.125rem;
}
.c-calendar__list-status > span {
  color: #555;
  border-radius: 9px;
  padding: 0 8px;
  margin-left: 6px;
}
.c-calendar__list-status > span.status-accepting {
  background: #14e3c7;
}
.c-calendar__list-status > span.status-soon {
  background: #fcc452;
}
.c-calendar__list-detail {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}
.c-calendar__status + .c-calendar__list-detail {
  margin-top: 4px;
}
.c-calendar__list-price {
  display: flex;
  align-items: center;
  gap: 12px;
}
.c-calendar__list-price-text {
  font-size: 0.75rem;
}
.c-calendar__list-price-amount, .c-calendar__list-price-yen {
  display: inline-block;
  font-weight: bold;
  color: #df0d00;
  line-height: 1.3;
}
.c-calendar__list-price-amount {
  margin-left: 4px;
  font-size: 1rem;
}
.c-calendar__list-button {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% + 80px);
  height: 100%;
  padding-right: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
  padding: 0;
  font-size: 0.875rem;
  color: #3064d5;
  text-align: right;
}
.c-calendar__list-button::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  width: 16px;
  height: 16px;
  mask-image: url(/assets/images/tour-detail/icon_calendar_arrow_right.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #3064d5;
}

@keyframes favoriteTextShow {
  0% {
    display: block;
    opacity: 0;
  }
  30% {
    display: block;
    opacity: 1;
  }
  70% {
    display: block;
    opacity: 1;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
.c-feature-favorite {
  position: relative;
}
.c-feature-favorite__radio {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
}
.c-feature-favorite__label {
  display: inline-block;
  position: absolute;
  content: "";
  width: 44px;
  height: 44px;
  bottom: 16px;
  right: 16px;
  border-radius: 50%;
  background-color: #f5f7fa;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2244%22%20height%3D%2244%22%20viewBox%3D%220%200%2044%2044%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M21.9912%2032.375C21.6819%2032.375%2021.3713%2032.3191%2021.0594%2032.2074C20.7474%2032.0956%2020.4702%2031.9207%2020.2275%2031.6826L18.2322%2029.8597C16.212%2028.0163%2014.3811%2026.1724%2012.7396%2024.328C11.0981%2022.4836%2010.2773%2020.4354%2010.2773%2018.1833C10.2773%2016.3152%2010.901%2014.7551%2012.1484%2013.5031C13.3958%2012.251%2014.9536%2011.625%2016.8219%2011.625C17.8275%2011.625%2018.7779%2011.8301%2019.6731%2012.2403C20.5684%2012.6504%2021.341%2013.2197%2021.9912%2013.948C22.6413%2013.2197%2023.4139%2012.6504%2024.3092%2012.2403C25.2044%2011.8301%2026.1548%2011.625%2027.1604%2011.625C29.0305%2011.625%2030.5922%2012.251%2031.8455%2013.5031C33.0989%2014.7551%2033.7256%2016.3152%2033.7256%2018.1833C33.7256%2020.4354%2032.9062%2022.4884%2031.2674%2024.3424C29.6286%2026.1963%2027.7799%2028.0473%2025.7214%2029.8953L23.7617%2031.6895C23.5191%2031.9275%2023.2406%2032.1013%2022.9264%2032.2108C22.6121%2032.3203%2022.3004%2032.375%2021.9912%2032.375ZM20.8518%2016.6095C20.3241%2015.852%2019.7409%2015.2674%2019.1022%2014.8558C18.4635%2014.4442%2017.7041%2014.2383%2016.8238%2014.2383C15.7%2014.2383%2014.7636%2014.6132%2014.0144%2015.363C13.2653%2016.1128%2012.8907%2017.0529%2012.8907%2018.1833C12.8907%2019.1701%2013.2415%2020.2185%2013.9429%2021.3286C14.6444%2022.4387%2015.4834%2023.5156%2016.4598%2024.5593C17.4362%2025.603%2018.441%2026.5803%2019.4743%2027.4911C20.5076%2028.402%2021.3466%2029.1515%2021.9912%2029.7398C22.6375%2029.1463%2023.4783%2028.3943%2024.5134%2027.4839C25.5487%2026.5735%2026.5553%2025.5966%2027.5335%2024.5534C28.5118%2023.5102%2029.3527%2022.4355%2030.0565%2021.3291C30.7603%2020.2229%2031.1122%2019.1743%2031.1122%2018.1833C31.1122%2017.0529%2030.7362%2016.1128%2029.9841%2015.363C29.232%2014.6132%2028.2918%2014.2383%2027.1637%2014.2383C26.28%2014.2383%2025.5199%2014.4442%2024.8836%2014.8558C24.2472%2015.2674%2023.6651%2015.852%2023.1374%2016.6095C22.9974%2016.8146%2022.8275%2016.9685%2022.6276%2017.0711C22.4276%2017.1737%2022.2155%2017.225%2021.9912%2017.225C21.7668%2017.225%2021.5555%2017.1737%2021.3573%2017.0711C21.1591%2016.9685%2020.9906%2016.8146%2020.8518%2016.6095Z%22%20fill%3D%22%23C0C5CC%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  cursor: pointer;
  position: static;
  display: block;
  cursor: pointer;
}
@media (hover: hover) {
  .c-feature-favorite__label:hover {
    opacity: 0.4;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2244%22%20height%3D%2244%22%20viewBox%3D%220%200%2044%2044%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M21.9912%2032.375C21.6819%2032.375%2021.3713%2032.3191%2021.0594%2032.2074C20.7474%2032.0956%2020.4702%2031.9207%2020.2275%2031.6826L18.2322%2029.8597C16.212%2028.0163%2014.3811%2026.1724%2012.7396%2024.328C11.0981%2022.4836%2010.2773%2020.4354%2010.2773%2018.1833C10.2773%2016.3152%2010.901%2014.7551%2012.1484%2013.5031C13.3958%2012.251%2014.9536%2011.625%2016.8219%2011.625C17.8275%2011.625%2018.7779%2011.8301%2019.6731%2012.2403C20.5684%2012.6504%2021.341%2013.2197%2021.9912%2013.948C22.6413%2013.2197%2023.4139%2012.6504%2024.3092%2012.2403C25.2044%2011.8301%2026.1548%2011.625%2027.1604%2011.625C29.0305%2011.625%2030.5922%2012.251%2031.8455%2013.5031C33.0989%2014.7551%2033.7256%2016.3152%2033.7256%2018.1833C33.7256%2020.4354%2032.9062%2022.4884%2031.2674%2024.3424C29.6286%2026.1963%2027.7799%2028.0473%2025.7214%2029.8953L23.7617%2031.6895C23.5191%2031.9275%2023.2406%2032.1013%2022.9264%2032.2108C22.6121%2032.3203%2022.3004%2032.375%2021.9912%2032.375ZM20.8518%2016.6095C20.3241%2015.852%2019.7409%2015.2674%2019.1022%2014.8558C18.4635%2014.4442%2017.7041%2014.2383%2016.8238%2014.2383C15.7%2014.2383%2014.7636%2014.6132%2014.0144%2015.363C13.2653%2016.1128%2012.8907%2017.0529%2012.8907%2018.1833C12.8907%2019.1701%2013.2415%2020.2185%2013.9429%2021.3286C14.6444%2022.4387%2015.4834%2023.5156%2016.4598%2024.5593C17.4362%2025.603%2018.441%2026.5803%2019.4743%2027.4911C20.5076%2028.402%2021.3466%2029.1515%2021.9912%2029.7398C22.6375%2029.1463%2023.4783%2028.3943%2024.5134%2027.4839C25.5487%2026.5735%2026.5553%2025.5966%2027.5335%2024.5534C28.5118%2023.5102%2029.3527%2022.4355%2030.0565%2021.3291C30.7603%2020.2229%2031.1122%2019.1743%2031.1122%2018.1833C31.1122%2017.0529%2030.7362%2016.1128%2029.9841%2015.363C29.232%2014.6132%2028.2918%2014.2383%2027.1637%2014.2383C26.28%2014.2383%2025.5199%2014.4442%2024.8836%2014.8558C24.2472%2015.2674%2023.6651%2015.852%2023.1374%2016.6095C22.9974%2016.8146%2022.8275%2016.9685%2022.6276%2017.0711C22.4276%2017.1737%2022.2155%2017.225%2021.9912%2017.225C21.7668%2017.225%2021.5555%2017.1737%2021.3573%2017.0711C21.1591%2016.9685%2020.9906%2016.8146%2020.8518%2016.6095Z%22%20fill%3D%22%23E73562%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  }
}
.c-feature-favorite__radio:checked + .c-feature-favorite__label {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2244%22%20height%3D%2244%22%20viewBox%3D%220%200%2044%2044%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M21.9912%2032.375C21.6819%2032.375%2021.3713%2032.3191%2021.0594%2032.2074C20.7474%2032.0956%2020.4702%2031.9207%2020.2275%2031.6826L18.2322%2029.8597C16.212%2028.0163%2014.3811%2026.1724%2012.7396%2024.328C11.0981%2022.4836%2010.2773%2020.4354%2010.2773%2018.1833C10.2773%2016.315%2010.901%2014.7548%2012.1484%2013.5029C13.3958%2012.251%2014.9536%2011.625%2016.8219%2011.625C17.8275%2011.625%2018.7779%2011.8301%2019.6731%2012.2403C20.5684%2012.6504%2021.341%2013.2197%2021.9912%2013.948C22.6413%2013.2197%2023.4139%2012.6504%2024.3092%2012.2403C25.2044%2011.8301%2026.1548%2011.625%2027.1604%2011.625C29.0287%2011.625%2030.59%2012.251%2031.8442%2013.5029C33.0985%2014.7548%2033.7256%2016.315%2033.7256%2018.1833C33.7256%2020.4354%2032.9062%2022.4884%2031.2674%2024.3424C29.6286%2026.1963%2027.7799%2028.0473%2025.7214%2029.8953L23.7617%2031.6895C23.5191%2031.9275%2023.2406%2032.1013%2022.9264%2032.2108C22.6121%2032.3203%2022.3004%2032.375%2021.9912%2032.375Z%22%20fill%3D%22%23E73562%22%2F%3E%0A%3C%2Fsvg%3E%0A");
}
@media (hover: hover) {
  .c-feature-favorite__radio:checked + .c-feature-favorite__label:hover {
    opacity: 0.7;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2244%22%20height%3D%2244%22%20viewBox%3D%220%200%2044%2044%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M21.9912%2032.375C21.6819%2032.375%2021.3713%2032.3191%2021.0594%2032.2074C20.7474%2032.0956%2020.4702%2031.9207%2020.2275%2031.6826L18.2322%2029.8597C16.212%2028.0163%2014.3811%2026.1724%2012.7396%2024.328C11.0981%2022.4836%2010.2773%2020.4354%2010.2773%2018.1833C10.2773%2016.315%2010.901%2014.7548%2012.1484%2013.5029C13.3958%2012.251%2014.9536%2011.625%2016.8219%2011.625C17.8275%2011.625%2018.7779%2011.8301%2019.6731%2012.2403C20.5684%2012.6504%2021.341%2013.2197%2021.9912%2013.948C22.6413%2013.2197%2023.4139%2012.6504%2024.3092%2012.2403C25.2044%2011.8301%2026.1548%2011.625%2027.1604%2011.625C29.0287%2011.625%2030.59%2012.251%2031.8442%2013.5029C33.0985%2014.7548%2033.7256%2016.315%2033.7256%2018.1833C33.7256%2020.4354%2032.9062%2022.4884%2031.2674%2024.3424C29.6286%2026.1963%2027.7799%2028.0473%2025.7214%2029.8953L23.7617%2031.6895C23.5191%2031.9275%2023.2406%2032.1013%2022.9264%2032.2108C22.6121%2032.3203%2022.3004%2032.375%2021.9912%2032.375Z%22%20fill%3D%22%23E73562%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  }
}
.c-feature-favorite__radio:focus-visible + .c-feature-favorite__label {
  outline: 2px solid #0078d7;
}
.c-feature-favorite__text {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: max-content;
  margin-block: auto;
  padding: 4px 8px 6px;
  transform: translateX(calc(-100% - 2px));
  font-size: 0.875rem;
  background-color: #c0dbff;
  white-space: nowrap;
  opacity: 0;
  transition: 0.2s;
  border-radius: 4px;
}
@media screen and (max-width : 740.98px) {
  .c-feature-favorite__text {
    width: max-content;
    right: 0;
    margin-inline: auto;
    transform: translate(calc(-32% - 2px), calc(-100% - 4px));
  }
}
.c-feature-favorite__text::after {
  content: "";
  position: absolute;
  top: 0;
  right: -8px;
  bottom: 0;
  width: 8px;
  height: 26px;
  margin-block: auto;
  background-image: url("/assets/images/search-result/icon_arrow-right.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width : 740.98px) {
  .c-feature-favorite__text::after {
    top: auto;
    bottom: -15px;
    transform: rotate(90deg);
    background-size: contain;
    right: 0;
    left: 0;
    margin-inline: auto;
  }
}
.c-feature-favorite__text.is-show {
  display: block;
  animation: favoriteTextShow 2s forwards;
}

.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: none;
  z-index: 999;
}
.c-modal.is-show {
  display: block;
}
html:has(.c-modal.is-show:not(.c-modal--scrollable)) {
  scrollbar-gutter: stable;
}
.c-modal.is-show:has(.c-modal.is-show) {
  overflow: hidden;
}
.c-modal__bg {
  background: rgba(44, 42, 41, 0.45);
  height: 100vh;
  width: 100%;
}
.c-modal:not(.c-modal--scrollable) .c-modal__contents {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: calc(100% - 40px);
  height: fit-content;
  max-height: calc(100% - 48px);
  max-width: 736px;
  background-color: #fff;
  border-radius: 8px;
  overflow-y: auto;
  padding: 32px;
}
@media screen and (max-width : 740.98px) {
  .c-modal:not(.c-modal--scrollable) .c-modal__contents {
    padding: 32px 16px 24px;
  }
}
.c-modal__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}
.c-modal__close img {
  width: 100%;
}
.c-modal__close-button {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  margin: 32px auto 0;
  font-size: 0.875rem;
  color: #2c2a29;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}
.c-modal--scrollable {
  width: 100vw;
  height: 100%;
  overflow-y: scroll;
  background-color: #fff;
}

/*# sourceMappingURL=base.css.map */
