@charset "UTF-8";
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes slide-in {
  0% {
    margin-left: 10px;
    opacity: 0.5;
  }
  1% {
    margin-left: 10px;
    opacity: 0.5;
  }
  100% {
    margin-left: 0;
    opacity: 1;
  }
}
@keyframes modal-slide-up {
  0% {
    transform: translateY(calc(var(--vh, 1vh) * 100));
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes modal-slide-down {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(calc(var(--vh, 1vh) * 100));
    opacity: 1;
  }
}
@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes button-loader {
  0% {
    box-shadow: 8px 0 #FFF, -8px 0 rgba(255, 255, 255, 0.1333333333);
    background: #FFF;
  }
  33% {
    box-shadow: 8px 0 #FFF, -8px 0 rgba(255, 255, 255, 0.1333333333);
    background: rgba(255, 255, 255, 0.1333333333);
  }
  66% {
    box-shadow: 8px 0 rgba(255, 255, 255, 0.1333333333), -8px 0 #FFF;
    background: rgba(255, 255, 255, 0.1333333333);
  }
  100% {
    box-shadow: 8px 0 rgba(255, 255, 255, 0.1333333333), -8px 0 #FFF;
    background: #FFF;
  }
}
.l-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 54px;
  padding: 0;
  border-bottom: 1px solid #E9E9E9;
  border-top: 4px solid #FF9300;
  overflow: hidden;
  z-index: 1;
  background-color: #FFFFFF;
  box-sizing: border-box;
}

#globalHeader.l-header {
  display: flex;
  width: 100%;
  height: 54px;
  padding: 0;
  border-bottom: 1px solid #E9E9E9;
  border-top: 4px solid #FF9300;
  overflow: hidden;
  z-index: 1;
  background-color: #FFFFFF;
  box-sizing: border-box;
}

.l-header__logo {
  margin-left: 10px;
}

.l-header__logo-link {
  display: block;
  position: relative;
  width: 84px;
  height: 33px;
}

.l-header__logo-img {
  position: absolute;
  top: -28px;
  left: -4px;
  width: 89px;
}

.l-header__list {
  display: flex;
  padding-bottom: 2px;
}

.l-header__item {
  display: flex;
  justify-content: center;
  width: 70px;
  height: 38px;
  border-left: 1px solid #E9E9E9;
}
.l-header__item.--favorite .l-header__link:before {
  content: "\e910";
  font-family: "sumaity-icons";
}
.l-header__item.--save .l-header__link:before {
  content: "\e950";
  font-family: "sumaity-icons";
}
.l-header__item.--history .l-header__link:before {
  content: "\e940";
  font-family: "sumaity-icons";
}
.l-header__item .l-header__link {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  color: unset;
  text-decoration: none;
}
.l-header__item .l-header__link::before {
  position: absolute;
  top: 1px;
  width: 25px;
  height: 25px;
  color: #9D8F7E;
  font-size: 25px;
  font-weight: normal;
  line-height: 1;
}
.l-header__item .l-header__link-text {
  font-size: 10px;
  color: #494949;
  align-self: flex-end;
  font-weight: normal;
  line-height: 1;
}
.l-header__item .l-header__link-num {
  position: absolute;
  top: 0px;
  right: 17%;
  font-size: 11px;
  color: #FFFFFF;
  width: 17px;
  height: 17px;
  border: 2px solid #FFFFFF;
  border-radius: 12px;
  background-color: #FF6A30;
  line-height: 18px;
  text-align: center;
  font-weight: bold;
}

.l-header__copy {
  display: none;
}

.l-footer {
  border-top: solid 1px #E9E9E9;
  position: sticky;
  top: 100vh;
  width: 100%;
  background-color: #FFFFFF;
}

.l-footer-terms {
  margin: 0 16vw 0;
  padding: 8px 0;
  min-height: 80px;
  box-sizing: border-box;
}
.l-footer-terms__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.l-footer-terms__item {
  text-align: center;
  padding: 0 8px;
  margin: 4px 0;
}
.l-footer-terms__link {
  font-size: 13px;
  color: #1B1B1B;
  text-decoration: none;
}

.l-footer-bottom {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  background-color: #494949;
  color: #FFFFFF;
  min-height: 44px;
  padding-block-start: 16px;
  padding-block-end: 16px;
  padding-inline-start: 8px;
  box-sizing: border-box;
}
.l-footer-bottom__logo-img {
  width: 90px;
}
.l-footer-bottom__copyright {
  margin-block-start: 4px;
  font-size: 10px;
  font-family: Arial, Helvetica, sans-serif;
}
.l-footer-bottom__copyright a {
  color: #FFFFFF;
}

.l-breadcrumbs {
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  height: 32px;
  white-space: nowrap;
  overflow: auto;
  color: #1B1B1B;
  background: #F4F4F4;
}
.l-breadcrumbs__list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin: 0 auto;
  padding: 0 8px;
}
.l-breadcrumbs__item {
  font-size: 0.75rem;
  display: flex;
  position: relative;
  align-items: center;
  z-index: 3;
  color: #494949;
}
.l-breadcrumbs__item::before {
  content: "\e909";
  font-family: "sumaity-icons";
  color: #A4A4A4;
}
.l-breadcrumbs__item:first-child::before {
  content: "";
}
.l-breadcrumbs__item strong {
  font-weight: normal;
}
.l-breadcrumbs a {
  color: #494949;
  text-decoration: underline;
}

@font-face {
  font-family: "sumaity-icons";
  src: url("/ui/utility/common/font/sumaity-icons.woff2?20250912") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=c-icon-], [class*=" c-icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "sumaity-icons" !important;
  /*speak: never;*/
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.c-icon-arrow-up:before {
  content: "\e900";
}

.c-icon-arrow-right:before {
  content: "\e901";
}

.c-icon-arrow-down:before {
  content: "\e902";
}

.c-icon-arrow-left:before {
  content: "\e903";
}

.c-icon-small-caret-up:before {
  content: "\e904";
}

.c-icon-small-caret-right:before {
  content: "\e905";
}

.c-icon-small-caret-down:before {
  content: "\e906";
}

.c-icon-small-caret-left:before {
  content: "\e907";
}

.c-icon-caret-up:before {
  content: "\e908";
}

.c-icon-caret-right:before {
  content: "\e909";
}

.c-icon-caret-down:before {
  content: "\e90a";
}

.c-icon-caret-left:before {
  content: "\e90b";
}

.c-icon-circle-arrow-up:before {
  content: "\e90c";
}

.c-icon-circle-arrow-right:before {
  content: "\e90d";
}

.c-icon-circle-arrow-down:before {
  content: "\e90e";
}

.c-icon-circle-arrow-left:before {
  content: "\e90f";
}

.c-icon-heart-fill:before {
  content: "\e910";
}

.c-icon-heart-line:before {
  content: "\e927";
}

.c-icon-house:before {
  content: "\e911";
}

.c-icon-mail:before {
  content: "\e912";
}

.c-icon-mail-open:before {
  content: "\e913";
}

.c-icon-menu:before {
  content: "\e914";
}

.c-icon-map-pin:before {
  content: "\e915";
}

.c-icon-location:before {
  content: "\e916";
}

.c-icon-lock:before {
  content: "\e917";
}

.c-icon-phone:before {
  content: "\e918";
}

.c-icon-star:before {
  content: "\e919";
}

.c-icon-search:before {
  content: "\e91a";
}

.c-icon-zoom-in:before {
  content: "\e91b";
}

.c-icon-zoom-out:before {
  content: "\e91c";
}

.c-icon-yen:before {
  content: "\e936";
}

.c-icon-yen-circle:before {
  content: "\e91e";
}

.c-icon-reheating:before {
  content: "\e91f";
}

.c-icon-drop:before {
  content: "\e920";
}

.c-icon-bath:before {
  content: "\e921";
}

.c-icon-building:before {
  content: "\e922";
}

.c-icon-laundry:before {
  content: "\e923";
}

.c-icon-car:before {
  content: "\e924";
}

.c-icon-animal:before {
  content: "\e925";
}

.c-icon-airconditioner:before {
  content: "\e926";
}

.c-icon-washbasin:before {
  content: "\e928";
}

.c-icon-chat:before {
  content: "\e929";
}

.c-icon-logo-facebook:before {
  content: "\e92a";
}

.c-icon-logo-google:before {
  content: "\e92b";
}

.c-icon-logo-instagram:before {
  content: "\e92c";
}

.c-icon-logo-twitter:before {
  content: "\e92d";
}

.c-icon-logo-line:before {
  content: "\e92e";
}

.c-icon-gallery:before {
  content: "\e92f";
}

.c-icon-star-half:before {
  content: "\e930";
}

.c-icon-close:before {
  content: "\e932";
}

.c-icon-calendar:before {
  content: "\e931";
}

.c-icon-room:before {
  content: "\e933";
}

.c-icon-buildings:before {
  content: "\e934";
}

.c-icon-traffic:before {
  content: "\e935";
}

.c-icon-yen:before {
  content: "\e936";
}

.c-icon-property-manager:before {
  content: "\e938";
}

.c-icon-delivery:before {
  content: "\e937";
}

.c-icon-crown:before {
  content: "\e939";
}

.c-icon-trending-up:before {
  content: "\e93c";
}

.c-icon-external-link:before {
  content: "\e93b";
}

.c-icon-bar-chart:before {
  content: "\e93a";
}

.c-icon-minus:before {
  content: "\e93d";
}

.c-icon-plus:before {
  content: "\e93e";
}

.c-icon-list:before {
  content: "\e93f";
}

.c-icon-clock:before {
  content: "\e940";
}

.c-icon-circle-plus:before {
  content: "\e941";
}

.c-icon-baby:before {
  content: "\e942";
}

.c-icon-milk:before {
  content: "\e943";
}

.c-icon-image:before {
  content: "\e944";
}

.c-icon-double-caret-down:before {
  content: "\e945";
}

.c-icon-history:before {
  content: "\e946";
}

.c-icon-loudspeaker:before {
  content: "\e947";
}

.c-icon-middle-caret-left:before {
  content: "\e94b";
}

.c-icon-middle-caret-down:before {
  content: "\e94a";
}

.c-icon-middle-caret-right:before {
  content: "\e949";
}

.c-icon-middle-caret-up:before {
  content: "\e948";
}

.c-icon-book-open:before {
  content: "\e94d";
}

.c-icon-pencil:before {
  content: "\e94c";
}

.c-icon-close-circle:before {
  content: "\e94e";
}

.c-icon-gift:before {
  content: "\e94f";
}

.c-icon-clip:before {
  content: "\e950";
}

.c-icon-calendar-default:before {
  content: "\e951";
}

.c-icon-directions_walk:before {
  content: "\e952";
}

.c-icon-calculator:before {
  content: "\e953";
}

.c-icon-wrench:before {
  content: "\e954";
}

.c-icon-tag:before {
  content: "\e955";
}

.c-icon-small-check:before {
  content: "\e956";
}

.c-icon-check:before {
  content: "\e957";
}

.c-icon-video-person-call:before {
  content: "\e958";
}

.c-icon-route-map:before {
  content: "\e959";
}

.c-icon-middle-arrow-left-up:before {
  content: "\e95a";
}

.c-icon-briefcase:before {
  content: "\e95b";
}

.c-icon-question:before {
  content: "\e95c";
}

.c-icon-info:before {
  content: "\e95d";
}

.c-icon-bell:before {
  content: "\e95e";
}

.c-icon-check-circle:before {
  content: "\e960";
}

.c-icon-alert:before {
  content: "\e95f";
}

.c-icon-sign-in:before {
  content: "\e962";
}

.c-icon-sign-out:before {
  content: "\e961";
}

.c-icon-edit:before {
  content: "\e963";
}

.c-icon-download:before {
  content: "\e964";
}

.c-icon-send:before {
  content: "\e965";
}

.c-icon-refresh:before {
  content: "\e966";
}

.c-button-group {
  position: relative;
  display: flex;
}
.c-button-group__item {
  box-sizing: border-box;
  display: inline-block;
  border: 1px solid transparent;
  text-align: center;
  text-decoration: none !important;
  line-height: 1;
  cursor: pointer;
  vertical-align: middle;
  color: #767676;
  background: #FFFFFF;
}
.c-button-group__item:hover, .c-button-group__item:active {
  filter: brightness(1.04);
  text-decoration: none;
}
.c-button-group__item:first-child {
  border-radius: 4px 0 0 4px;
}
.c-button-group__item:last-child {
  border-radius: 0 4px 4px 0;
}
.--sm .c-button-group__item {
  padding: 5px;
  min-height: 22px;
  font-size: 12px;
}
.--sm .c-button-group__item i[class^=c-icon] {
  font-size: 16px;
}
.c-button-group__item.--md {
  padding: 12px;
  min-height: 44px;
  font-size: 16px;
}
.c-button-group__item.--md i[class^=c-icon] {
  font-size: 24px;
}
.c-button-group__item.--lg {
  padding: 14px;
  min-height: 52px;
  font-size: 18px;
}
.c-button-group__item.--lg i[class^=c-icon] {
  font-size: 28px;
}
.c-button-group__item.--primary {
  border-color: #FF9300;
  color: #FF9300;
}
.c-button-group__item.--primary.is-active {
  color: #FFFFFF;
  background: #FF9300;
}
.--brown .c-button-group__item {
  border-color: #706457;
  color: #706457;
}
.--brown .c-button-group__item.is-active {
  color: #FFFFFF;
  background: #706457;
}

.c-button {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid transparent;
  background-color: transparent;
  text-align: center;
  text-decoration: none !important;
  line-height: 1;
  cursor: pointer;
  vertical-align: middle;
  font-family: inherit;
}
.c-button.--sm {
  padding: 6px 8px;
  min-height: 28px;
  font-size: 13px;
}
.c-button.--sm i[class^=c-icon], .c-button.--sm::before, .c-button.--sm::after {
  font-size: 16px;
}
.c-button.--md {
  padding: 12px;
  font-size: 14px;
}
.c-button.--md i[class^=c-icon], .c-button.--md::after {
  font-size: 24px;
}
.c-button.--lg {
  font-size: 15px;
  min-height: 48px;
}
.c-button.--lg i[class^=c-icon], .c-button.--lg::after {
  font-size: 24px;
}
.c-button.--default {
  color: #494949;
  font-weight: bold;
  box-shadow: 0 3px 0 #D1D1D1;
  background-color: #FFFFFF;
}
.c-button.--default:visited {
  color: #767676;
}
.c-button.--outline {
  border: 1px solid #D1D1D1;
  background: #FFFFFF;
  color: #494949;
  font-weight: normal;
}
.c-button.--outline:visited {
  color: #494949;
}
.c-button.--primary {
  background-color: #FF9300;
  color: #FFFFFF;
  box-shadow: 0 3px 0 #B36700;
  font-weight: bold;
}
.c-button.--primary:visited {
  color: #FFFFFF;
}
.c-button.--primary:active, .c-button.--primary:hover {
  background-color: #E58400;
}
.c-button.--border {
  border-bottom: 0;
  border-color: #E9E9E9;
  background: #FFFFFF;
  color: #1B1B1B;
  box-shadow: 0 3px 0 #D1D1D1;
}
.c-button.--border:visited {
  color: #1B1B1B;
}
.c-button.--border:active, .c-button.--border:hover {
  background-color: #F4F4F4;
}
.c-button.--border-primary {
  border-bottom: 0;
  border-color: rgba(255, 106, 48, 0.2);
  background: #FFFFFF;
  color: #494949;
  box-shadow: 0 3px 0 #FFC3AC;
  font-weight: bold;
  white-space: nowrap;
}
.c-button.--border-primary:visited {
  color: #494949;
}
.c-button.--border-primary i[class^=c-icon] {
  color: #FF6A30;
}
.c-button.--border-primary:active, .c-button.--border-primary:hover {
  background-color: #F4F4F4;
}
.c-button.--cta {
  border-color: #6FBF08;
  background: #6FBF08;
  color: #FFFFFF;
  box-shadow: 0 3px 0 #4E8606;
  font-weight: bold;
  text-align: left;
  line-height: 1.2;
  white-space: nowrap;
}
.c-button.--cta:visited {
  color: #FFFFFF;
}
.c-button.--border-cta {
  border-bottom: 0;
  border-color: #C5E59C;
  background-color: #FFFFFF;
  color: #494949;
  font-weight: bold;
  box-shadow: 0 3px 0 #A9D96B;
}
.c-button.--border-cta:visited {
  color: #494949;
}
.c-button.--border-cta i[class^=c-icon] {
  color: #6FBF08;
}
.c-button.--border-cta:active, .c-button.--border-cta:hover {
  background-color: #F4F4F4;
}
.c-button.--sell-cta {
  background-color: #FF7171;
  color: #FFFFFF;
  box-shadow: 0 3px 0 #d70000;
  font-weight: bold;
}
.c-button.--sell-cta:visited {
  color: #FFFFFF;
}
.c-button.--link {
  color: #1F7AEE;
}
.c-button.--link .c-button__underline-text {
  text-decoration: underline;
}
.c-button.--more {
  position: relative;
  color: #1F7AEE;
  width: -moz-fit-content;
  width: fit-content;
}
.c-button.--more::after {
  content: "\e909";
  font-family: "sumaity-icons";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -4px;
}
.c-button.--more.--sm {
  padding-right: 10px;
}
.c-button.--more.--md {
  padding-right: 20px;
}
.c-button.--more.--lg {
  padding-right: 28px;
}
.c-button.--back {
  position: relative;
  color: #1F7AEE;
  width: -moz-fit-content;
  width: fit-content;
}
.c-button.--back::before {
  content: "\e90b";
  font-family: "sumaity-icons";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -4px;
}
.c-button.--back.--sm {
  padding-right: 10px;
}
.c-button.--back.--md {
  padding-right: 20px;
}
.c-button.--back.--lg {
  padding-right: 28px;
}
.c-button.--disabled {
  transition: unset;
  opacity: 0.5;
  cursor: default;
}
.c-button.--facebook {
  background-color: #3C5998;
  color: #FFFFFF;
}
.c-button.--facebook:visited {
  color: #FFFFFF;
}
.c-button.--twitter {
  background-color: #1da1f2;
  color: #FFFFFF;
}
.c-button.--twitter:visited {
  color: #FFFFFF;
}
.c-button.--line {
  background-color: #06C755;
  color: #FFFFFF;
}
.c-button.--line:visited {
  color: #FFFFFF;
}
.c-button.--google {
  background-color: #EE3B2C;
  color: #FFFFFF;
}
.c-button.--google:visited {
  color: #FFFFFF;
}
.c-button.--yahoo {
  background-color: #FF0023;
  color: #FFFFFF;
}
.c-button.--yahoo:visited {
  color: #FFFFFF;
}
.c-button.--left {
  justify-content: flex-start;
}
.c-button.--with-icon {
  position: relative;
  padding-left: 30px;
}
.c-button.--with-icon i[class^=c-icon] {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
}
.c-button.--with-icon.--sm {
  padding-left: 24px;
}
.c-button.--with-icon.--lg {
  padding-left: 36px;
}
.c-button.--with-icon.--lg i[class^=c-icon] {
  left: 8px;
}
.c-button.--with-icon-right {
  position: relative;
  padding-right: 30px;
}
.c-button.--with-icon-right i[class^=c-icon] {
  position: absolute;
  top: 50%;
  right: 3px;
  transform: translateY(-50%);
}
.c-button.--with-icon-right.--sm {
  padding-right: 18px;
}
.c-button.--with-icon-right.--lg {
  padding-right: 36px;
}
.c-button.--caret-right, .c-button.--caret-left, .c-button.--caret-up, .c-button.--caret-down {
  position: relative;
  padding-right: 30px;
}
.c-button.--caret-right::after, .c-button.--caret-left::after, .c-button.--caret-up::after, .c-button.--caret-down::after {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
}
.c-button.--caret-right.--sm, .c-button.--caret-left.--sm, .c-button.--caret-up.--sm, .c-button.--caret-down.--sm {
  padding-right: 24px;
}
.c-button.--caret-right.--lg, .c-button.--caret-left.--lg, .c-button.--caret-up.--lg, .c-button.--caret-down.--lg {
  padding-right: 36px;
}
.c-button.--caret-right::after {
  content: "\e949";
  font-family: "sumaity-icons";
}
.c-button.--caret-left::after {
  content: "\e94b";
  font-family: "sumaity-icons";
}
.c-button.--caret-up::after {
  content: "\e948";
  font-family: "sumaity-icons";
}
.c-button.--caret-down::after {
  content: "\e94a";
  font-family: "sumaity-icons";
}
.c-button.--external-link {
  position: relative;
  padding-right: 30px;
}
.c-button.--external-link::after {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  content: "\e93b";
  font-family: "sumaity-icons";
  color: #1F7AEE;
}
.c-button.--external-link.--sm {
  padding-right: 24px;
}
.c-button.--external-link.--lg {
  padding-right: 36px;
}
.c-button.--check {
  position: relative;
}
.c-button.--check .c-checkbox {
  left: 8px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 8px;
}
.c-button.--round {
  border-radius: calc(infinity * 1px);
}
.c-button-container {
  display: flex;
  justify-content: center;
}
.c-button-container.--right {
  justify-content: flex-end;
}
.c-button.--loader::before {
  content: "";
  display: inline-block;
  width: 4px;
  aspect-ratio: 1;
  border-radius: 50%;
  animation-name: button-loader;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-direction: alternate;
}

.c-container {
  padding: 12px;
  background: #FFFFFF;
}
.c-container.--full {
  padding: 12px 0;
}
.c-container a {
  color: #1F7AEE;
  text-decoration: underline;
}

form + .c-container {
  padding: 8px 12px;
}

.c-fixed-bottom-wrapper {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 10px;
  background-color: rgba(27, 27, 27, 0.7);
  z-index: 100;
  text-align: center;
  box-sizing: border-box;
}
.c-fixed-bottom-wrapper.--disable .c-fixed-bottom-container {
  opacity: 0.7;
}
.c-fixed-bottom-wrapper.is-open {
  transform: none;
  transition: all 0.5s;
}
.c-fixed-bottom-wrapper.is-close {
  transform: translate(0, 155px);
  -webkit-transform: translate(0, 155px);
  transition: all 0.5s;
}
.c-fixed-bottom-wrapper__text {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  margin-bottom: 4px;
  margin-top: -2px;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-left: 18px;
}
.c-fixed-bottom-wrapper__text::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -166px;
  right: 0;
  margin: 0 auto;
  width: 5px;
  height: 10px;
  margin-top: -3px;
  transform: rotate(45deg) translateY(-50%);
  transition: opacity 0.2s linear;
  border-right: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  z-index: 2;
}
.tpl_favorite .c-fixed-bottom-wrapper, .history .c-fixed-bottom-wrapper {
  display: none;
}

.c-fixed-bottom {
  box-sizing: border-box;
  display: inline-block;
  border-radius: 4px;
  border: 1px solid transparent;
  text-align: center;
  text-decoration: none !important;
  line-height: 1;
  cursor: pointer;
  vertical-align: middle;
  position: relative;
  color: #FFFFFF;
  border: 0;
  vertical-align: middle;
  width: 100%;
  padding: 4px 10px 4px 28px;
  display: flex;
  align-items: center;
  text-align: left;
  justify-content: center;
  min-height: 40px;
}
.c-fixed-bottom::before {
  content: "無料";
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  padding: 15px 4px;
  background: rgba(27, 27, 27, 0.15);
  color: #FFFFFF;
  font-size: 11px;
  border-radius: 4px 0 0 4px;
}
.c-fixed-bottom.--phone {
  background: #FF9300;
  box-shadow: 0 2px 0 #B36700;
}
.c-fixed-bottom.--phone::before {
  padding: 9px 4px;
  white-space: pre;
  content: "通話\a無料";
  line-height: 1.2;
}
.c-fixed-bottom.--phone:active, .c-fixed-bottom.--phone:hover {
  background-color: #E58400;
}
.c-fixed-bottom.--form {
  background: #6FBF08;
  box-shadow: 0 2px 0 #4E8606;
}
.c-fixed-bottom.--form:active, .c-fixed-bottom.--form:hover {
  background-color: #60A607;
}
.c-fixed-bottom i[class^=c-icon] {
  color: #FFFFFF;
  vertical-align: middle;
  font-size: 22px;
  margin-right: 4px;
}
.c-fixed-bottom-container {
  display: flex;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.c-fixed-bottom-container.--double {
  -moz-column-gap: 6px;
       column-gap: 6px;
}
.c-fixed-bottom-container.--double .c-fixed-bottom__text {
  font-size: 12px;
}
.c-fixed-bottom-container__item {
  width: 100%;
}
.c-fixed-bottom__text {
  font-size: 12px;
  line-height: 1.2;
  color: #FFFFFF;
  font-weight: bold;
}
.c-fixed-bottom__text em {
  font-size: 15px;
}

.c-fixed-bottom-favorite {
  position: relative;
  align-items: center;
  flex: 0 0 44px;
}
.c-fixed-bottom-favorite__button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  background: #FFFFFF;
  text-decoration: none;
}
.c-fixed-bottom-favorite__button::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  content: "\e927";
  font-family: "sumaity-icons";
  color: #D1D1D1;
  font-size: 28px;
  line-height: 1;
  padding-top: 2px;
}
.c-fixed-bottom-favorite__button.--fill::after {
  content: "\e910";
  font-family: "sumaity-icons";
  color: #FF9292;
}
.c-fixed-bottom-favorite__button.--text .c-fixed-bottom-favorite__text {
  display: block;
  padding-top: 24px;
  font-weight: bold;
  font-size: 10px;
  color: #767676;
}
.c-fixed-bottom-favorite__button.--text::after {
  font-size: 22px;
  width: 22px;
  height: 22px;
  margin-top: -6px;
}
.c-fixed-bottom-favorite__button.--text + .c-fixed-bottom-favorite__popup {
  top: -41px;
}
.c-fixed-bottom-favorite__button.--text:link {
  text-decoration: none;
  color: #767676;
  font-size: 10px;
}
.c-fixed-bottom-favorite__text {
  display: none;
}
.c-fixed-bottom-favorite__popup {
  display: none;
  position: absolute;
  top: -17px;
  left: 0;
  transform: translateY(-100%);
  width: 164px;
  padding: 6px;
  border-radius: 2px;
  background: rgba(27, 27, 27, 0.9);
  color: #FFFFFF;
  font-size: 13px;
  line-height: 1;
  text-align: center;
}
.c-fixed-bottom-favorite__popup::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  margin-bottom: -6px;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 6px solid rgba(27, 27, 27, 0.9);
  height: 0;
  width: 0;
}

.c-heading-md {
  position: relative;
  color: #1B1B1B;
  padding-left: 10px;
  line-height: 1.4;
  font-size: 16px;
  text-align: left;
  display: block;
}
.c-heading-md::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  display: block;
  width: 5px;
  height: calc(100% - 4px);
  border-radius: 1px;
  background-color: #FF9300;
}

.c-heading {
  display: block;
  position: relative;
  color: #1B1B1B;
  line-height: 1.4;
  font-size: 16px;
}
.c-heading.--h3 {
  margin: 8px 0 12px;
  padding-left: 6px;
  border-left: 6px solid #706457;
  border-radius: 1px;
  color: #706457;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
}
.c-heading__medium {
  margin: 24px 0 12px;
  padding-left: 6px;
  border-left: 6px solid #706457;
  border-radius: 1px;
  color: #706457;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
  background: none;
  border-top: none;
  border-bottom: none;
  text-shadow: none;
  padding: 0 0 0 6px;
  text-align: left;
}
.c-heading.--xxsmall {
  font-size: 12px;
  font-weight: bold;
  color: #494949;
  text-align: left;
}
.c-heading.--medium {
  padding-left: 10px;
}
.c-heading.--medium::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 6px;
  height: calc(100% - 4px);
  border-radius: 1px;
  background-color: #FF9300;
}
.c-heading.--brown::before {
  background-color: #706457;
}
.c-heading.--bg-gray {
  padding: 4px 8px;
  border-radius: 2px;
  box-sizing: border-box;
  background-color: #F4F4F4;
}

.c-heading-text {
  font-size: 13px;
  color: #1B1B1B;
}

.c-radio {
  display: inline-block;
  color: #494949;
  font-size: 14px;
}
.c-radio.--full {
  display: block;
}
.c-radio__inner input[type=radio] {
  display: none;
}
.c-radio__label {
  display: flex;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  margin-right: 5px;
  padding: 16px 12px 16px 40px;
  cursor: inherit;
  line-height: 1;
  vertical-align: middle;
}
.c-radio__label:hover {
  cursor: pointer;
}
.--border .c-radio__label:hover {
  border-color: #FF9300;
}
.--cta .c-radio__label:hover {
  border-color: #6FBF08;
}
[type=radio]:checked + .c-radio__label {
  border-color: #FF9300;
}
.--cta [type=radio]:checked + .c-radio__label {
  border-color: #6FBF08;
}
.--border [type=radio]:checked + .c-radio__label {
  padding: 14px 10px 14px 38px;
  border-width: 2px;
}
[type=radio]:checked + .c-radio__label::before {
  border-color: #FF9300;
  background-color: #FF9300;
  background-clip: content-box;
}
.--cta [type=radio]:checked + .c-radio__label::before {
  border-color: #6FBF08;
  background-color: #6FBF08;
}
.--border [type=radio]:checked + .c-radio__label::before {
  left: 7px;
}
.c-radio__label::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  display: block;
  width: 24px;
  height: 24px;
  padding: 4px;
  border: 2px solid #D1D1D1;
  border-radius: 50%;
}
input[type=checkbox]:checked + .c-radio__label::before {
  opacity: 1;
}

.c-radio.--border .c-radio__label {
  width: 100%;
  margin-right: 0;
  padding: 15px 11px 15px 39px;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  background: #FFFFFF;
  font-weight: bold;
}
.c-radio.--border + .c-radio.--border {
  margin-top: 10px;
}

.c-recommend-card {
  display: flex;
  align-items: stretch;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
}
.c-recommend-card__item {
  position: relative;
  overflow: hidden;
  flex: 0 0 200px;
  margin: 8px 0 16px 8px;
  border: 1px solid #E9E9E9;
  border-radius: 4px;
  background: #FFFFFF;
  box-shadow: 0 2px 0 rgba(73, 73, 73, 0.2);
}
.c-recommend-card__item:first-child {
  margin-left: 12px;
}
.c-recommend-card__item:last-child {
  margin-right: 12px;
}
.c-recommend-card__item.--narrow {
  flex: 0 0 150px;
}
.c-recommend-card__check {
  position: absolute;
  padding: 8px;
  z-index: 2;
}
.c-recommend-card__check .c-checkbox__inner {
  margin: 0;
  padding: 0;
  width: 36px;
  height: 36px;
}
.c-recommend-card__check .c-checkbox__label::before {
  left: 0;
}
.c-recommend-card__check .c-checkbox__label::after {
  left: 6px;
}
.c-recommend-card__selected {
  position: absolute;
  right: 4px;
  top: 4px;
  width: 100px;
  padding: 6px 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.8);
  color: #767676;
  font-size: 12px;
  line-height: 1;
  z-index: 2;
}
.c-recommend-card__link {
  display: block;
  text-decoration: none !important;
}
.c-recommend-card__link:hover, .c-recommend-card__link:active {
  background-color: #F4F4F4;
}
.c-recommend-card__frame {
  position: relative;
  width: 100%;
  height: 124px;
}
.c-recommend-card__frame.is-layout .--layout img {
  display: block;
}
.c-recommend-card__frame.is-layout .--exterior {
  display: none;
}
.c-recommend-card__frame.is-exterior .--exterior img {
  display: block;
}
.c-recommend-card__frame.is-exterior .--layout {
  display: none;
}
.c-recommend-card__image {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.c-recommend-card__image::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.025);
  position: absolute;
  left: 0;
  top: 0;
}
.c-recommend-card__image img {
  display: none;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.9;
}
.c-recommend-card__image img.is-vertical {
  -o-object-fit: contain;
     object-fit: contain;
}
.c-recommend-card__image.--only img {
  display: block;
}
.c-recommend-card__content {
  padding: 12px 8px;
}
.c-recommend-card__floor {
  margin-right: 2px;
  padding: 4px;
  border-radius: 2px;
  background: #FBFAF7;
  color: #494949;
  font-size: 13px;
  line-height: 1;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 5px;
}
.c-recommend-card__price {
  color: #FF4949;
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
}
.c-recommend-card__price-wrapper {
  display: flex;
  justify-content: space-between;
}
.c-recommend-card__price-title {
  color: #494949;
  font-weight: bold;
  font-size: 12px;
}
.c-recommend-card__price em {
  font-size: 16px;
}
.c-recommend-card__management, .c-recommend-card__deposit, .c-recommend-card__layout, .c-recommend-card__buildingarea, .c-recommend-card__landarea, .c-recommend-card__station, .c-recommend-card__age, .c-recommend-card__estatage, .c-recommend-card__transaction, .c-recommend-card__company {
  margin: 4px 0;
  color: #1B1B1B;
  font-size: 13px;
  line-height: 1.2;
}
.c-recommend-card__management {
  margin: 6px 0;
  font-weight: bold;
  color: #FF4949;
}
.c-recommend-card__deposit {
  line-height: 1.6;
}
.c-recommend-card__deposit span {
  margin-right: 4px;
  padding: 3px;
  border-radius: 2px;
  background: #E9E9E9;
  font-weight: bold;
  line-height: 1.5;
  color: #494949;
  font-size: 12px;
}
.c-recommend-card__deposit span:nth-of-type(2) {
  margin-left: 4px;
}
.c-recommend-card__buildingarea, .c-recommend-card__landarea {
  color: #767676;
}
.c-recommend-card__buildingarea span, .c-recommend-card__landarea span {
  display: inline-block;
  margin-left: 4px;
  color: #1B1B1B;
}
.c-recommend-card__buildingarea sup, .c-recommend-card__landarea sup {
  vertical-align: top;
}
.c-recommend-card__footprint::before {
  content: "|";
  margin: 0 4px;
  color: #D1D1D1;
}
.c-recommend-card__station {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.2;
}
.c-recommend-card__walk {
  margin-left: 4px;
}
.c-recommend-card__transaction {
  border-top: 1px dotted #D1D1D1;
  margin-top: 8px;
  padding-top: 8px;
  font-size: 12px;
}
.c-recommend-card__company {
  margin-bottom: 0;
  font-size: 12px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.c-recommend-card__caption {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: #FFFFFF;
  font-size: 11px;
  color: #494949;
  padding: 5px 10px;
  border-radius: 3px;
  display: flex;
  align-items: center;
}
.c-recommend-card__caption .c-icon-image {
  font-size: 16px;
}
.c-recommend-card__building-name {
  display: flex;
  padding: 0px 6px 10px;
  color: #A4A4A4;
  font-size: 12px;
  text-decoration: none;
  gap: 0 2px;
}
.c-recommend-card__building-name span {
  text-decoration: underline;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.c-recommend-card__building-name span.--no-link {
  text-decoration: none;
}
.c-recommend-card__building-name i::before {
  font-size: 18px;
  vertical-align: middle;
}

a.c-recommend-card__building-name {
  color: #A4A4A4;
  text-decoration: none;
}

.p-building-recommend .c-recommend-card__item {
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}
.p-building-recommend .c-recommend-card__link {
  width: 200px;
}
.p-building-recommend .c-recommend-card__link:active, .p-building-recommend .c-recommend-card__link:hover {
  filter: none;
}
.p-building-recommend .c-recommend-card__content {
  padding: 12px 8px 0;
}

.c-recommend-card-payment {
  padding: 8px;
  margin: 8px 0;
  background: #FBFAF7;
}
.c-recommend-card-payment__indication {
  display: flex;
  justify-content: space-between;
  border-bottom: #D1D1D1 dotted 1px;
  padding-bottom: 4px;
  margin-bottom: 6px;
}
.c-recommend-card-payment__indication-price {
  color: #FF4949;
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
}
.c-recommend-card-payment__indication-price em {
  font-size: 16px;
}
.c-recommend-card-payment__indication-title {
  font-size: 12px;
  color: #706457;
  font-weight: bold;
}
.c-recommend-card-payment__detail {
  font-size: 11px;
}
.c-recommend-card-payment__detail-list {
  display: flex;
  justify-content: space-between;
}
.c-recommend-card-payment__detail-price {
  color: #494949;
}
.c-recommend-card-payment__detail-title {
  color: #706457;
}

.c-share {
  padding: 16px 12px;
  background: #F4F0E8;
  margin-top: 20px;
}
.c-share__heading {
  margin-bottom: 10px;
  color: #706457;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
}
.c-share__inner {
  display: flex;
  justify-content: center;
  -moz-column-gap: 8px;
  column-gap: 8px;
}
.c-share__item {
  width: 100%;
}
.c-share__button {
  box-sizing: border-box;
  display: inline-block;
  border-radius: 4px;
  border: 1px solid transparent;
  text-align: center;
  text-decoration: none !important;
  line-height: 1;
  cursor: pointer;
  vertical-align: middle;
  position: relative;
  width: 100%;
  padding: 14px 8px 14px 40px;
  border-color: #E9E9E9;
  color: #767676 !important;
  background: #FFFFFF;
  box-shadow: 0 2px 0 #D1D1D1;
}
.c-share__button span {
  font-size: 14px;
  font-weight: bold;
  color: #494949;
}
.c-share__button [class^=c-icon] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
  box-sizing: border-box;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: transparent;
  padding: 6px;
  color: #FFFFFF;
  font-size: 20px;
}
.c-share__button.--mail [class^=c-icon] {
  background: #FF4949;
}
.c-share__button.--line [class^=c-icon] {
  background: #06C755;
}

.c-share-estate-info {
  padding: 16px;
  background: #FFFFFF;
}
.c-share-estate-info__content {
  padding: 12px;
  background: #F4F4F4;
  border-radius: 4px;
}
.c-share-estate-info__heading {
  margin-bottom: 10px;
  color: #1B1B1B;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
}
.c-share-estate-info__inner {
  display: flex;
  justify-content: center;
  -moz-column-gap: 8px;
  column-gap: 24px;
}
.c-share-estate-info__button {
  display: block;
  position: relative;
  text-decoration: none !important;
}
.c-share-estate-info__button span {
  font-size: 14px;
  font-weight: bold;
  color: #494949;
}
.c-share-estate-info__button [class^=c-icon] {
  display: block;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: transparent;
  padding: 6px;
  color: #FFFFFF;
  font-size: 26px;
  box-sizing: border-box;
}
.c-share-estate-info__button.--mail [class^=c-icon] {
  background: #FF4949;
}
.c-share-estate-info__button.--mail [class^=c-icon]::before {
  font-size: 24px;
}
.c-share-estate-info__button.--line [class^=c-icon] {
  background: #06C755;
}
.c-share-estate-info__button.--line [class^=c-icon]::before {
  position: absolute;
  top: 8px;
  left: 8px;
}

.c-site-notice {
  margin: 12px;
}
.c-site-notice__toggle {
  display: none;
}
.c-site-notice__title {
  display: block;
  position: relative;
  color: #1B1B1B;
  border: 2px solid #D1D1D1;
  border-bottom: none;
  font-size: 14px;
  font-weight: bold;
  padding: 10px 25px 10px 32px;
}
.c-site-notice__title::before {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  background-image: url(/ui/utility/common/svg/iconI_caution.svg);
  background-size: 18px;
  background-repeat: no-repeat;
}
.c-site-notice__title::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #494949;
  border-right: 2px solid #494949;
  top: calc(50% - 6px);
  right: 12px;
  transform: rotate(135deg);
  transition: all 0.3s;
}
.c-site-notice__title, .c-site-notice__content {
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
  text-align: left;
}
.c-site-notice__content {
  height: 0;
  margin-bottom: 10px;
  padding: 0 10px;
  overflow: hidden;
  font-size: 13px;
  color: #1B1B1B;
  border: 2px solid #D1D1D1;
  border-top: none;
}
.c-site-notice__toggle:checked + .c-site-notice__title + .c-site-notice__content {
  height: auto;
  padding: 0 10px 10px;
  transition: all 0.3s;
}
.c-site-notice__toggle:checked + .c-site-notice__title::after {
  transform: rotate(-45deg) !important;
  top: calc(50% - 2px);
}

.c-text {
  margin: 12px 0;
  color: #1B1B1B;
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;
}
.c-text.--xl {
  margin: 16px 0;
  font-size: 20px;
  line-height: 1.5;
}
.c-text.--lg {
  margin: 16px 0;
  font-size: 18px;
  line-height: 1.5;
}
.c-text.--sm {
  margin: 8px 0;
  font-size: 14px;
  line-height: 1.5;
}
.c-text.--xs {
  margin: 8px 0;
  font-size: 13px;
  line-height: 1.5;
}
.c-text.--xxs {
  margin: 5px 0;
  font-size: 12px;
  line-height: 1.3;
}
.c-text.--xxxs {
  margin: 5px 0;
  font-size: 10px;
  line-height: 1.2;
}

.c-text-note {
  margin: 5px 0;
  color: #767676;
  font-size: 12px;
  line-height: 1.3;
}
.c-text-note a {
  color: #1F7AEE;
  text-decoration: underline;
}

.c-checkbox[type=checkbox] {
  flex-shrink: 0;
  position: relative;
  top: 0;
  width: 24px;
  height: 24px;
  margin: 0;
  border: 1px solid #767676;
  border-radius: 4px;
  background: #FFFFFF;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: border-color 0.2s linear;
}
.c-checkbox[type=checkbox]::before {
  display: block;
  position: absolute;
  top: 2px;
  left: 7px;
  z-index: 2;
  transform: rotate(40deg);
  width: 8px;
  height: 14px;
  border-right: 2px solid #E9E9E9;
  border-bottom: 2px solid #E9E9E9;
  box-sizing: border-box;
  content: "";
  transition: border-color 0.2s linear;
}
.c-checkbox[type=checkbox]:checked {
  border-color: #FF9300;
  background-color: #FF9300;
}
.c-checkbox[type=checkbox]:checked::before {
  border-color: #FFFFFF;
}
.c-checkbox.--sm {
  width: 20px;
  height: 20px;
}
.c-checkbox.--sm::before {
  left: 6px;
  width: 6px;
  height: 11px;
}
.c-checkbox.--full {
  display: block;
}
.c-checkbox.--border {
  background: #FFFFFF;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  transition: all 0.2s linear;
}
.c-checkbox.--border + .c-checkbox.--border {
  margin-top: 10px;
}
.c-checkbox.--border:hover {
  border-color: #FF9300;
}
.c-checkbox__inner {
  display: flex;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  margin-right: 5px;
  padding: 16px 12px 16px 40px;
  cursor: inherit;
  line-height: 1.2;
}
.c-checkbox__label {
  display: flex;
  align-items: center;
  position: relative;
}
.c-checkbox__label:hover {
  cursor: pointer;
}
.c-checkbox__text {
  margin-left: 4px;
  font-size: 12px;
  color: #1F7AEE;
  text-shadow: none;
  text-align: left;
}
.c-checkbox[type=checkbox]:disabled {
  border-color: #E9E9E9;
  background-color: #F4F4F4;
}
.c-checkbox[type=checkbox]:checked + .c-checkbox::before {
  border-color: #FF9300;
  background: #FF9300;
}
.c-checkbox[type=checkbox]:checked + .c-checkbox::after {
  border-color: #FFFFFF;
}
.c-checkbox[type=checkbox]:disabled + .c-checkbox::before {
  background: rgba(209, 209, 209, 0.6);
}
.c-checkbox[type=checkbox]:disabled + .c-checkbox::after {
  border-color: #E9E9E9;
}
.c-checkbox[type=checkbox]:checked:disabled + .c-checkbox::before {
  border-color: #D1D1D1;
  background: rgba(118, 118, 118, 0.4);
}
.c-checkbox[type=checkbox]:checked:disabled + .c-checkbox::after {
  border-color: #FFFFFF;
}

.c-checkbox-label:has(.c-checkbox.--sm) {
  display: inline-flex;
  gap: 4px;
  padding: 8px 8px 8px 0;
  margin: 0;
  cursor: pointer;
}
.c-checkbox-label:has(.c-checkbox.--sm) .c-checkbox-label__text {
  color: #1B1B1B;
  font-size: 15px;
}

/* カセットのお気に入りボタン */
.c-favorite-casette,
.c-favorite-cassette {
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px;
  box-sizing: border-box;
  z-index: 1;
}
.c-favorite-casette.--upper-right,
.c-favorite-cassette.--upper-right {
  top: 25px;
  right: -1px;
}
.c-favorite-casette__button,
.c-favorite-cassette__button {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0;
  padding: 0;
  border: 1px solid #D1D1D1;
  border-radius: 50%;
  box-sizing: border-box;
  background: #FFFFFF;
}
.c-favorite-casette__button::after,
.c-favorite-cassette__button::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  content: "\e927";
  font-family: "sumaity-icons";
  font-size: 21px;
  color: #A4A4A4;
}
.c-favorite-casette.--is-active .c-favorite-casette::after, .c-favorite-casette.--is-active .c-favorite-cassette__button::after,
.c-favorite-casette.--is-active .c-favorite-casette__button::after,
.c-favorite-cassette.--is-active .c-favorite-casette::after,
.c-favorite-cassette.--is-active .c-favorite-cassette__button::after,
.c-favorite-cassette.--is-active .c-favorite-casette__button::after {
  color: #FF9292;
  content: "\e910";
  animation: favoriteActive 0.3s ease-in-out;
}
.c-favorite-casette.--is-cancel .c-favorite-casette::after, .c-favorite-casette.--is-cancel .c-favorite-cassette__button::after,
.c-favorite-casette.--is-cancel .c-favorite-casette__button::after,
.c-favorite-cassette.--is-cancel .c-favorite-casette::after,
.c-favorite-cassette.--is-cancel .c-favorite-cassette__button::after,
.c-favorite-cassette.--is-cancel .c-favorite-casette__button::after {
  animation: favoriteCancel 0.3s ease-in-out;
}

/* お気に入り追加/解除時のアニメーション */
@keyframes favoriteActive {
  50% {
    font-size: 25px;
  }
  100% {
    font-size: 21px;
  }
}
@keyframes favoriteCancel {
  0% {
    color: #FF9292;
    font-size: 25px;
    content: "\e910";
  }
  50% {
    font-size: 18px;
  }
  100% {
    font-size: 21px;
  }
}
.c-fixed-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: -55px;
  width: 100%;
  height: 51px;
  padding: 0;
  background-color: #FFFFFF;
  border-bottom: 1px solid #E9E9E9;
  overflow: hidden;
  z-index: 1000;
  background-color: #FFFFFF;
  box-sizing: border-box;
  box-shadow: 0 2px 2px rgba(0, 0, 11, 0.1);
  transition: all 0.3s ease;
}
.c-fixed-header__logo {
  margin-left: 10px;
}
.c-fixed-header__logo-link {
  display: block;
  position: relative;
  width: 70px;
  height: 30px;
}
.c-fixed-header__logo-img {
  position: absolute;
  top: -30px;
  left: -4px;
  width: 89px;
}
.c-fixed-header__list {
  display: flex;
  padding-bottom: 2px;
}
.c-fixed-header__item {
  display: flex;
  justify-content: center;
  width: 70px;
  height: 38px;
  border-left: 1px solid #E9E9E9;
}
.c-fixed-header__item.--favorite .c-fixed-header__link:before {
  content: "\e910";
  font-family: "sumaity-icons";
}
.c-fixed-header__item.--save .c-fixed-header__link:before {
  content: "\e950";
  font-family: "sumaity-icons";
}
.c-fixed-header__item.--history .c-fixed-header__link:before {
  content: "\e940";
  font-family: "sumaity-icons";
}
.c-fixed-header__item .c-fixed-header__link {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  color: unset;
  text-decoration: none;
}
.c-fixed-header__item .c-fixed-header__link::before {
  position: absolute;
  top: 1px;
  width: 25px;
  height: 25px;
  color: #9D8F7E;
  font-size: 25px;
  font-weight: normal;
  line-height: 1;
}
.c-fixed-header__item .c-fixed-header__link-text {
  font-size: 10px;
  color: #494949;
  align-self: flex-end;
  line-height: 1;
}
.c-fixed-header__item .c-fixed-header__link-num {
  position: absolute;
  top: 0px;
  right: 19%;
  font-size: 10px;
  color: #FFFFFF;
  width: 16px;
  height: 16px;
  border: 2px solid #FFFFFF;
  border-radius: 12px;
  background-color: #FF6A30;
  line-height: 17px;
  text-align: center;
}
.c-fixed-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
}

.c-loading-spinner-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  height: 64px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}

.c-loading-spinner {
  font-size: 10px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  animation: loading-spinner 1.1s infinite ease;
  transform: translateZ(0);
}

@keyframes loading-spinner {
  0%, 100% {
    box-shadow: 0em -2.6em 0em 0em #A4A4A4, 1.8em -1.8em 0 0em rgba(164, 164, 164, 0.2), 2.5em 0em 0 0em rgba(164, 164, 164, 0.2), 1.75em 1.75em 0 0em rgba(164, 164, 164, 0.2), 0em 2.5em 0 0em rgba(164, 164, 164, 0.2), -1.8em 1.8em 0 0em rgba(164, 164, 164, 0.2), -2.6em 0em 0 0em rgba(164, 164, 164, 0.5), -1.8em -1.8em 0 0em rgba(164, 164, 164, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(164, 164, 164, 0.7), 1.8em -1.8em 0 0em #A4A4A4, 2.5em 0em 0 0em rgba(164, 164, 164, 0.2), 1.75em 1.75em 0 0em rgba(164, 164, 164, 0.2), 0em 2.5em 0 0em rgba(164, 164, 164, 0.2), -1.8em 1.8em 0 0em rgba(164, 164, 164, 0.2), -2.6em 0em 0 0em rgba(164, 164, 164, 0.2), -1.8em -1.8em 0 0em rgba(164, 164, 164, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(164, 164, 164, 0.5), 1.8em -1.8em 0 0em rgba(164, 164, 164, 0.7), 2.5em 0em 0 0em #A4A4A4, 1.75em 1.75em 0 0em rgba(164, 164, 164, 0.2), 0em 2.5em 0 0em rgba(164, 164, 164, 0.2), -1.8em 1.8em 0 0em rgba(164, 164, 164, 0.2), -2.6em 0em 0 0em rgba(164, 164, 164, 0.2), -1.8em -1.8em 0 0em rgba(164, 164, 164, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(164, 164, 164, 0.2), 1.8em -1.8em 0 0em rgba(164, 164, 164, 0.5), 2.5em 0em 0 0em rgba(164, 164, 164, 0.7), 1.75em 1.75em 0 0em #A4A4A4, 0em 2.5em 0 0em rgba(164, 164, 164, 0.2), -1.8em 1.8em 0 0em rgba(164, 164, 164, 0.2), -2.6em 0em 0 0em rgba(164, 164, 164, 0.2), -1.8em -1.8em 0 0em rgba(164, 164, 164, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(164, 164, 164, 0.2), 1.8em -1.8em 0 0em rgba(164, 164, 164, 0.2), 2.5em 0em 0 0em rgba(164, 164, 164, 0.5), 1.75em 1.75em 0 0em rgba(164, 164, 164, 0.7), 0em 2.5em 0 0em #A4A4A4, -1.8em 1.8em 0 0em rgba(164, 164, 164, 0.2), -2.6em 0em 0 0em rgba(164, 164, 164, 0.2), -1.8em -1.8em 0 0em rgba(164, 164, 164, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(164, 164, 164, 0.2), 1.8em -1.8em 0 0em rgba(164, 164, 164, 0.2), 2.5em 0em 0 0em rgba(164, 164, 164, 0.2), 1.75em 1.75em 0 0em rgba(164, 164, 164, 0.5), 0em 2.5em 0 0em rgba(164, 164, 164, 0.7), -1.8em 1.8em 0 0em #A4A4A4, -2.6em 0em 0 0em rgba(164, 164, 164, 0.2), -1.8em -1.8em 0 0em rgba(164, 164, 164, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(164, 164, 164, 0.2), 1.8em -1.8em 0 0em rgba(164, 164, 164, 0.2), 2.5em 0em 0 0em rgba(164, 164, 164, 0.2), 1.75em 1.75em 0 0em rgba(164, 164, 164, 0.2), 0em 2.5em 0 0em rgba(164, 164, 164, 0.5), -1.8em 1.8em 0 0em rgba(164, 164, 164, 0.7), -2.6em 0em 0 0em #A4A4A4, -1.8em -1.8em 0 0em rgba(164, 164, 164, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(164, 164, 164, 0.2), 1.8em -1.8em 0 0em rgba(164, 164, 164, 0.2), 2.5em 0em 0 0em rgba(164, 164, 164, 0.2), 1.75em 1.75em 0 0em rgba(164, 164, 164, 0.2), 0em 2.5em 0 0em rgba(164, 164, 164, 0.2), -1.8em 1.8em 0 0em rgba(164, 164, 164, 0.5), -2.6em 0em 0 0em rgba(164, 164, 164, 0.7), -1.8em -1.8em 0 0em #A4A4A4;
  }
}
.c-modal-fixed-bottom {
  overflow-y: scroll;
  position: fixed;
  bottom: -80px;
  width: 100%;
  z-index: 999;
  padding: 8px;
  box-sizing: border-box;
  background-color: #FFFFFF;
  box-shadow: 0px -2px 6px -2px rgba(204, 204, 204, 0.4);
}
.c-modal-fixed-bottom.is-show {
  bottom: 0;
}
.c-modal-fixed-bottom .c-modal-fixed-bottom__inner {
  display: flex;
  align-items: center;
  gap: 6px;
}
.c-modal-fixed-bottom .c-modal-fixed-bottom__inner.is-disabled {
  opacity: 0.5;
}

.c-modal-fixed-bottom__btn-wrap {
  width: 100%;
}

.c-modal-fixed-bottom__btn-normal {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  height: 48px;
  width: 100%;
  border: 1px solid #E9E9E9;
  background-color: #FFFFFF;
  box-shadow: inset 0 -2px 0 #D1D1D1;
  color: #1B1B1B;
  font-weight: bold;
  font-family: inherit;
  text-align: center;
  margin-left: auto;
  box-sizing: border-box;
  flex-direction: column;
  line-height: 1.3;
  padding: 0;
}
.c-modal-fixed-bottom__btn-normal:active, .c-modal-fixed-bottom__btn-normal:hover {
  background: #F4F4F4;
}
.c-modal-fixed-bottom__btn-normal i {
  font-size: 24px;
  padding-right: 2px;
  color: #FF9300;
}

.c-modal-fixed-bottom__btn-primary {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  height: 48px;
  width: 100%;
  background-color: #FF9300;
  box-shadow: inset 0 -2px 0 #B36700;
  color: #FFFFFF;
  font-weight: bold;
  font-family: inherit;
  text-align: center;
  border: none;
  margin-left: auto;
  box-sizing: border-box;
  flex-direction: column;
  line-height: 1.3;
  padding: 0;
}
.c-modal-fixed-bottom__btn-primary:active, .c-modal-fixed-bottom__btn-primary:hover {
  background: #E58400;
}

.c-modal-fixed-bottom__btn-text-main {
  display: flex;
  align-items: center;
}
.c-modal-fixed-bottom__btn-text-main i {
  font-size: 24px;
  padding-right: 2px;
  color: #FF9300;
}

.c-modal-fixed-bottom__btn-text-sub {
  font-size: 13px;
  font-weight: normal;
}

.c-modal-select-lists__item {
  display: flex;
  align-items: center;
}
.c-modal-select-lists__item:last-of-type .c-modal-select-lists-label {
  border-radius: 0 0 4px 4px;
}
.c-modal-select-lists__item.is-disabled .c-modal-select-lists-label,
.c-modal-select-lists__item.is-disabled .c-modal-select-lists-link {
  background: #F4F4F4;
  pointer-events: none;
}
.c-modal-select-lists__item.is-disabled .c-modal-select-lists-label::after,
.c-modal-select-lists__item.is-disabled .c-modal-select-lists-link::after {
  color: #D1D1D1;
}
.c-modal-select-lists__item.is-disabled .c-modal-select-lists-label .c-modal-select-lists-name,
.c-modal-select-lists__item.is-disabled .c-modal-select-lists-label .c-modal-select-lists-count,
.c-modal-select-lists__item.is-disabled .c-modal-select-lists-link .c-modal-select-lists-name,
.c-modal-select-lists__item.is-disabled .c-modal-select-lists-link .c-modal-select-lists-count {
  color: #A4A4A4;
}

.c-modal-select-lists-label {
  display: flex;
  align-items: center;
  height: 48px;
  width: 100%;
  padding: 12px 12px 12px 20px;
  box-sizing: border-box;
  align-items: center;
  border-top: 1px dashed #E9E9E9;
}
.c-modal-select-lists-label:has(input:checked) {
  background-color: #FFF4E6;
}
.c-modal-select-lists-label:has(input:disabled) {
  background-color: #F4F4F4;
}

.c-modal-checkbox[type=checkbox] {
  margin: 0;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  top: 0;
  border: 1px solid #D1D1D1;
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 4px;
  margin-right: 6px;
}
.c-modal-checkbox[type=checkbox]::before {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 7px;
  width: 8px;
  height: 14px;
  transform: rotate(40deg);
  border-right: 2px solid #E9E9E9;
  border-bottom: 2px solid #E9E9E9;
  z-index: 2;
  box-sizing: border-box;
}
.c-modal-checkbox[type=checkbox]:checked {
  border-color: #FF9300;
  background-color: #FF9300;
}
.c-modal-checkbox[type=checkbox]:checked::before {
  border-color: #FFFFFF;
}
.c-modal-checkbox[type=checkbox]:disabled {
  border-color: #E9E9E9;
  background-color: #F4F4F4;
}
.c-modal-checkbox[type=checkbox]:disabled::before {
  border-color: #E9E9E9;
  background-color: #F4F4F4;
}
.c-modal-checkbox[type=checkbox]:disabled::after {
  border: none;
}
.c-modal-checkbox[type=checkbox] + .c-modal-select-lists-label {
  pointer-events: none;
}

.c-modal-select-toggle__parent .c-modal-checkbox[type=checkbox]::after {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  position: absolute;
  top: -13px;
  left: -12px;
}

.c-modal-select-toggle__child .c-modal-checkbox[type=checkbox] {
  width: 20px;
  height: 20px;
}
.c-modal-select-toggle__child .c-modal-checkbox[type=checkbox]::before {
  top: 1.5px;
  left: 6px;
  width: 6px;
  height: 12px;
}

.c-modal-select-lists-name {
  font-size: 15px;
  color: #1B1B1B;
  width: 100%;
  line-height: 1.2;
  margin-right: 4px;
}

.c-modal-select-lists-count {
  font-size: 11px;
  color: #767676;
  display: flex;
  align-items: baseline;
}

.c-modal-select-lists-count__num {
  font-size: 13px;
}

.c-modal-select-lists-link {
  height: 48px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 32px 10px 16px;
  box-sizing: border-box;
  border: none;
  text-align: left;
  font-family: inherit;
  background: none;
  border-top: 1px dashed #E9E9E9;
}
.c-modal-select-lists-link:link {
  text-decoration: none;
}
.c-modal-select-lists-link::after {
  position: absolute;
  content: "\e905";
  font-family: "sumaity-icons";
  color: #FF9300;
  right: 4px;
  font-size: 24px;
  font-weight: normal;
}

.c-modal-select-toggle {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E9E9E9;
}
.c-modal-select-toggle:first-child {
  border-top: 1px solid #E9E9E9;
}
.c-modal-select-toggle.--group-check .c-modal-select-toggle__parent {
  padding: 12px;
}

.c-modal-select-toggle__parent {
  height: 48px;
  position: relative;
  font-size: 15px;
  color: #1B1B1B;
  font-weight: bold;
  display: flex;
  align-items: center;
  line-height: 1;
  padding-left: 10px;
  box-sizing: border-box;
}
.c-modal-select-toggle__parent::before {
  position: absolute;
  content: "";
  border-top: 2px solid rgba(0, 0, 0, 0);
  display: block;
  width: 100%;
  top: 0;
  left: 0;
  border-radius: 3px 3px 0 0;
}
.c-modal-select-toggle__parent::after {
  content: "\e94a";
  font-family: "sumaity-icons";
  position: absolute;
  right: 10px;
  font-size: 24px;
  font-weight: normal;
  color: #767676;
}
.c-modal-select-toggle__parent.is-open::after {
  transform: rotate(-180deg);
}
.c-modal-select-toggle__parent:has(input:checked) {
  background-color: #FFF4E6;
}
.c-modal-select-toggle__parent .c-modal-select-lists-label {
  width: auto;
  height: auto;
  padding: 0;
}

.c-modal-select-toggle__child .c-modal-select-lists__item {
  height: 0;
  width: 100%;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
}
.c-modal-select-toggle__child .c-modal-select-lists__item .c-modal-select-lists-label > *,
.c-modal-select-toggle__child .c-modal-select-lists__item .c-modal-select-lists-link {
  opacity: 0;
  visibility: hidden;
}
.c-modal-select-toggle__child.is-open .c-modal-select-lists__item {
  height: 48px;
  width: 100%;
  padding: 0px;
}
.c-modal-select-toggle__child.is-open .c-modal-select-lists__item .c-modal-select-lists-label > *,
.c-modal-select-toggle__child.is-open .c-modal-select-lists__item .c-modal-select-lists-link {
  opacity: 1;
  visibility: visible;
}

html.is-half-modal {
  overscroll-behavior-y: none;
}
html.is-half-modal body {
  overscroll-behavior-y: none;
}

body {
  width: 100%;
}

.c-modal {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: calc(100% - 30px);
}
.c-modal::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(27, 27, 27, 0.7);
  z-index: -1;
}
.c-modal.is-open {
  display: flex;
  align-items: center;
}
.c-modal.is-open::before {
  animation-name: fade-in;
  animation-duration: 0.3s;
  animation-timing-function: ease;
}
.c-modal.is-close::before {
  animation-name: fade-out;
  animation-duration: 0.3s;
  animation-timing-function: ease;
}
.c-modal.is-close .c-modal__container,
.c-modal.is-close .c-modal__inner {
  animation-name: modal-slide-down;
  animation-duration: 0.3s;
  animation-timing-function: ease;
}
.is-pc .c-modal {
  height: 100%;
}
.is-pc .c-modal.is-close .c-modal__container,
.is-pc .c-modal.is-close .c-modal__inner {
  animation-name: fade-out;
  animation-duration: 0.3s;
  animation-timing-function: ease;
}

.c-modal__inner {
  overflow: hidden;
  display: none;
  width: 100%;
  height: 100%;
  border-radius: 16px 16px 0 0;
  background: #FFFFFF;
}
.c-modal__inner.is-open {
  display: block;
  animation-name: modal-slide-up;
  animation-duration: 0.3s;
  animation-timing-function: ease;
}
.is-pc .c-modal__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 640px;
  max-height: 88vh;
  min-height: 320px;
  border-radius: 16px;
}
.is-pc .c-modal__inner.is-open {
  animation-name: fade-in;
  animation-duration: 0.3s;
  animation-timing-function: ease;
}

.c-modal-header {
  position: sticky;
  display: flex;
  align-items: center;
  width: 100%;
  height: 40px;
}
.c-modal-header.--close-only {
  justify-content: flex-end;
}
.c-modal-header.--simple {
  height: 50px;
  border-bottom: 1px solid #D1D1D1;
}

.c-modal-header__button {
  flex: 0 0 40px;
  height: 40px;
  position: relative;
}
.c-modal-header__button:has(.c-modal-header__button-back) + .c-modal-header__title {
  padding-right: 20px;
}

.c-modal-header__button-back {
  width: 60px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-family: inherit;
  padding: revert;
}
.c-modal-header__button-back::before {
  font-size: 24px;
  color: #767676;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 4px;
  content: "\e90b";
  font-family: "sumaity-icons";
}
.c-modal-header__button-back .c-modal-header__button-back-text {
  padding-left: 18px;
  white-space: nowrap;
  color: #494949;
  font-size: 13px;
}

.c-modal-header__button-close {
  width: 100%;
  height: 100%;
  display: block;
  background: none;
  border: none;
  font-family: inherit;
}
.c-modal-header__button-close::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "\e932";
  font-family: "sumaity-icons";
  color: #767676;
  font-size: 24px;
  line-height: 1;
}

.c-modal-header__title {
  width: 100%;
}

.c-modal-header__title-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #1B1B1B;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
}

.c-modal-body {
  overflow-y: scroll;
  height: calc(100% - 92px);
}
.c-modal-body.is-iphone {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.c-modal-body.is-iphone::-webkit-scrollbar {
  display: none;
}
.c-modal-body:has(+ .c-modal-bottom.is-show) {
  height: calc(100% - 158px);
}
.c-modal-header + .c-modal-body {
  height: calc(100% - var(--sibling-heights));
}
.c-modal-header + .c-modal-body:has(+ .c-modal-bottom.is-show) {
  height: calc(100% - var(--sibling-heights));
}

.p-modal-tab-list + .c-modal-body {
  height: calc(100% - 145px);
}

.c-loading-spinner-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c-modal-heading {
  font-size: 14px;
  font-weight: bold;
  text-align: left;
  margin: 24px auto 8px;
  color: #1B1B1B;
}

.c-modal-container {
  padding: 0 12px 20px;
}

.c-modal-container-full {
  padding: 0;
}

.c-modal-bottom {
  position: fixed;
  bottom: -80px;
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
  background-color: #FFFFFF;
  box-shadow: 0px -2px 6px -2px rgba(204, 204, 204, 0.4);
}
.c-modal-bottom.is-show {
  bottom: 0;
}
.c-modal-bottom__inner {
  display: flex;
  align-items: center;
  gap: 6px;
}
.c-modal-bottom__inner.is-disabled {
  opacity: 0.5;
}
.c-modal-bottom__btn-wrap {
  width: 100%;
}
.c-modal-bottom__btn-normal {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  height: 48px;
  width: 100%;
  border: 1px solid #E9E9E9;
  background-color: #FFFFFF;
  box-shadow: inset 0 -2px 0 #D1D1D1;
  color: #1B1B1B;
  font-weight: bold;
  font-family: inherit;
  text-align: center;
  margin-left: auto;
  box-sizing: border-box;
  flex-direction: column;
  line-height: 1.3;
  padding: 0;
}
.c-modal-bottom__btn-normal:active, .c-modal-bottom__btn-normal:hover {
  background: #F4F4F4;
}
.c-modal-bottom__btn-normal i {
  font-size: 24px;
  padding-right: 2px;
  color: #FF9300;
}
.c-modal-bottom__btn-primary {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  height: 48px;
  width: 100%;
  background-color: #FF9300;
  box-shadow: inset 0 -2px 0 #B36700;
  color: #FFFFFF;
  font-weight: bold;
  font-family: inherit;
  text-align: center;
  border: none;
  margin-left: auto;
  box-sizing: border-box;
  flex-direction: column;
  line-height: 1.3;
  padding: 0;
}
.c-modal-bottom__btn-primary:active, .c-modal-bottom__btn-primary:hover {
  background: #E58400;
}
.c-modal-bottom__btn-text-main {
  display: flex;
  align-items: center;
}
.c-modal-bottom__btn-text-main i {
  font-size: 24px;
  padding-right: 2px;
  color: #FF9300;
}
.c-modal-bottom__btn-text-sub {
  font-size: 13px;
  font-weight: normal;
}

.c-modal-button-list {
  color: #494949;
  text-align: left;
  width: 100%;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  box-sizing: border-box;
}
.c-modal-button-list.--flex {
  display: flex;
  gap: 8px;
  border: none;
}
.c-modal-button-list.--flex .c-modal-button-list__item {
  width: 100%;
  height: 80px;
  border: 1px solid #D1D1D1;
}
.c-modal-button-list.--flex .c-modal-button-list__item:first-child, .c-modal-button-list.--flex .c-modal-button-list__item:last-child {
  border-radius: 4px;
}
.c-modal-button-list.--flex .c-modal-button-list__link-text {
  font-weight: bold;
  color: #494949;
  padding-bottom: 8px;
  text-decoration: none;
  font-size: 14px;
}
.c-modal-button-list.--flex .c-modal-button-list__link-station {
  background-image: url(/ui/utility/common/svg/iconT_route.svg);
  background-size: 38px;
  background-repeat: no-repeat;
  background-position: center 8px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  text-decoration: none;
}
.c-modal-button-list.--flex .c-modal-button-list__link-route {
  background-image: url(/ui/utility/common/svg/iconT_line.svg);
  background-size: 48px;
  background-repeat: no-repeat;
  background-position: center 8px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  text-decoration: none;
}
.c-modal-button-list.--flex .c-modal-button-list__link-city {
  background-image: url(/ui/utility/common/svg/iconT_mappin.svg);
  background-size: 40px;
  background-repeat: no-repeat;
  background-position: center 8px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  text-decoration: none;
}
.c-modal-button-list.--flex .c-modal-button-list__link-town {
  background-image: url(/ui/utility/common/svg/iconT_pin.svg);
  background-size: 23px;
  background-repeat: no-repeat;
  background-position: center 8px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  text-decoration: none;
}

.c-modal-button-list__item {
  background: #FFFFFF;
  border-bottom: 1px solid #E9E9E9;
}
.c-modal-button-list__item:first-child {
  border-radius: 4px 4px 0 0;
}
.c-modal-button-list__item:last-child {
  border: none;
  border-radius: 0 0 4px 4px;
}
.c-modal-button-list__item:active {
  background: #F4F4F4;
}

.c-modal-button-list__link {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  color: #1B1B1B;
  text-decoration: none;
  width: 100%;
  min-height: 40px;
  padding: 12px;
  line-height: 1;
}
.c-modal-button-list__link i[class^=c-icon] {
  color: #767676;
}
.c-modal-button-list__link.--md {
  padding: 12px;
  font-size: 14px;
  min-height: 40px;
}
.c-modal-button-list__link.--md i[class^=c-icon] {
  font-size: 20px;
}
.c-modal-button-list__link.--md::after {
  font-size: 24px;
}
.c-modal-button-list__link.--caret-right, .c-modal-button-list__link.--caret-left, .c-modal-button-list__link.--caret-up, .c-modal-button-list__link.--caret-down {
  position: relative;
}
.c-modal-button-list__link.--caret-right::after, .c-modal-button-list__link.--caret-left::after, .c-modal-button-list__link.--caret-up::after, .c-modal-button-list__link.--caret-down::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #494949;
}
.c-modal-button-list__link.--caret-right.--sm, .c-modal-button-list__link.--caret-left.--sm, .c-modal-button-list__link.--caret-up.--sm, .c-modal-button-list__link.--caret-down.--sm {
  padding-right: 24px;
}
.c-modal-button-list__link.--caret-right.--md, .c-modal-button-list__link.--caret-left.--md, .c-modal-button-list__link.--caret-up.--md, .c-modal-button-list__link.--caret-down.--md {
  padding-right: 30px;
}
.c-modal-button-list__link.--caret-right.--md::after, .c-modal-button-list__link.--caret-left.--md::after, .c-modal-button-list__link.--caret-up.--md::after, .c-modal-button-list__link.--caret-down.--md::after {
  right: 4px;
}
.c-modal-button-list__link.--caret-right.--lg, .c-modal-button-list__link.--caret-left.--lg, .c-modal-button-list__link.--caret-up.--lg, .c-modal-button-list__link.--caret-down.--lg {
  padding-right: 36px;
}
.c-modal-button-list__link.--caret-right::after {
  content: "\e949";
  font-family: "sumaity-icons";
}
.c-modal-button-list__link.--caret-left::after {
  content: "\e94b";
  font-family: "sumaity-icons";
}
.c-modal-button-list__link.--caret-up::after {
  content: "\e948";
  font-family: "sumaity-icons";
}
.c-modal-button-list__link.--caret-down::after {
  content: "\e94a";
  font-family: "sumaity-icons";
}
.c-modal-button-list__link.--with-icon {
  position: relative;
}
.c-modal-button-list__link.--with-icon i[class^=c-icon] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.c-modal-button-list__link.--with-icon.--sm {
  padding-left: 24px;
}
.c-modal-button-list__link.--with-icon.--md {
  padding-left: 30px;
}
.c-modal-button-list__link.--with-icon.--md i[class^=c-icon] {
  left: 8px;
}
.c-modal-button-list__link.--with-icon.--lg {
  padding-left: 36px;
}
.c-modal-button-list__link.--with-icon.--lg i[class^=c-icon] {
  left: 8px;
}

.c-modal-reload {
  margin-top: 18vh;
}

.c-modal-reload-notice {
  margin-bottom: 20px;
}

.c-modal-reload-notice__title {
  color: #1B1B1B;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding-top: 80px;
  background-image: url(/ui/utility/common/svg/iconT_attention.svg);
  background-size: 64px;
  background-repeat: no-repeat;
  background-position: center 8px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: auto;
  text-decoration: none;
}

.c-modal-reload-notice__subtext {
  color: #767676;
  font-size: 14px;
  text-align: center;
}

.c-modal-reload-button {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  height: 48px;
  width: 100%;
  background: #FF9300;
  box-shadow: inset 0 -2px 0 #B36700;
  color: #FFFFFF;
  font-weight: bold;
  text-align: center;
  box-sizing: border-box;
  flex-direction: column;
  line-height: 1.3;
  padding: 0;
}
.c-modal-reload-button:active, .c-modal-reload-button:hover {
  background: #E58400;
}

.c-modal-balloon-error {
  position: fixed;
  left: 50%;
  bottom: 88px;
  transform: translate(-50%);
  width: 62%;
  padding: 10px;
  background: #FFFFFF;
  border: 2px solid #FF4949;
  border-radius: 5px;
  text-align: center;
  z-index: 1001;
}
.c-modal-balloon-error__text {
  font-size: 13px;
  margin: 0;
}
.c-modal-balloon-error__text strong {
  font-weight: bold;
  color: #FF4949;
}
.c-modal-balloon-error.is-hide-alert {
  opacity: 0 !important;
}
.c-modal-balloon-error.is-show-alert {
  opacity: 1 !important;
}

.c-modal-button-list__item.--research {
  position: relative;
  padding: 10px 36px 10px 12px;
}
.c-modal-button-list__item.--research::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  content: "\e91a";
  font-family: "sumaity-icons";
  right: 8px;
  color: #494949;
  font-size: 20px;
  line-height: 1;
}

.c-modal-button-list__research-wrap {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.2;
  padding: 4px 6px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.05);
  color: #494949;
}

.c-modal-button-list__research-list {
  display: inline;
  line-height: 1;
}

.c-modal-button-list__research-item {
  display: inline;
  color: #494949;
  font-size: 13px;
  line-height: 1;
  word-break: break-all;
}

.c-modal-button-list__research-list:not(:last-child)::after {
  content: "|";
  margin: 0 4px;
  color: #A4A4A4;
}

.c-modal-button-list__research-list.--line .c-modal-button-list__research-item:not(:last-child)::after, .c-modal-button-list__research-list.--area .c-modal-button-list__research-item:not(:last-child)::after, .c-modal-button-list__research-list.--conditions .c-modal-button-list__research-item:not(:last-child)::after, .c-modal-button-list__research-list.--commute .c-modal-button-list__research-item:not(:last-child)::after, .c-modal-button-list__research-list.--map .c-modal-button-list__research-item:not(:last-child)::after {
  content: "-";
  margin: 0 4px;
  color: #A4A4A4;
}

.c-modal-area-list-wrap {
  border: 1px solid #D1D1D1;
  border-radius: 4px;
}

.c-modal-area-list-title {
  background-color: #F4F4F4;
  color: #494949;
  font-size: 12px;
  font-weight: bold;
  padding: 6px 8px;
  line-height: 1;
}

.c-modal-area-list-wrap p:first-child {
  border-radius: 3px 3px 0 0;
}

.c-modal-area-link-list {
  display: flex;
  gap: 10px 12px;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 12px;
}

.c-modal-area-list__item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.c-modal-area-list__item-link {
  color: #1B1B1B;
  text-decoration: underline;
  font-size: 13px;
  line-height: 1;
}
.c-modal-area-list__item-link:active {
  text-decoration: none;
}

.c-modal-area-list__item-text {
  color: #767676;
  font-size: 12px;
  line-height: 1;
}

.c-modal-area-list__item-text-sm {
  font-size: 11px;
}

.c-button-loader {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  height: 48px;
  width: 100%;
  background: #FF9300;
  box-shadow: inset 0 -2px 0 #B36700;
  color: #FFFFFF;
  font-weight: bold;
  text-align: center;
  border: none;
  margin-left: auto;
  box-sizing: border-box;
}

.p-loader {
  width: 4px;
  aspect-ratio: 1;
  border-radius: 50%;
  animation: l5 1s infinite linear alternate;
}

@keyframes l5 {
  0% {
    box-shadow: 8px 0 #FFF, -8px 0 rgba(255, 255, 255, 0.1333333333);
    background: #FFF;
  }
  33% {
    box-shadow: 8px 0 #FFF, -8px 0 rgba(255, 255, 255, 0.1333333333);
    background: rgba(255, 255, 255, 0.1333333333);
  }
  66% {
    box-shadow: 8px 0 rgba(255, 255, 255, 0.1333333333), -8px 0 #FFF;
    background: rgba(255, 255, 255, 0.1333333333);
  }
  100% {
    box-shadow: 8px 0 rgba(255, 255, 255, 0.1333333333), -8px 0 #FFF;
    background: #FFF;
  }
}
.c-prev-condition__item {
  background: #FFFFFF;
  border-bottom: 1px solid #E9E9E9;
}
.c-prev-condition__item:first-child {
  border-radius: 4px 4px 0 0;
}
.c-prev-condition__item:last-child {
  border-radius: 0 0 4px 4px;
  border-bottom: none;
  box-shadow: 0px 2px #D1D1D1;
}
.c-prev-condition__link {
  display: flex;
  align-items: center;
  min-height: 40px;
  position: relative;
  padding: 9px 8px 10px 8px;
  font-weight: bold;
  color: #1B1B1B;
  text-decoration: none !important;
  font-size: 13px;
  color: #1B1B1B;
  line-height: 1;
  box-sizing: border-box;
}
.c-prev-condition__link:link {
  color: #1B1B1B;
}
.c-prev-condition__link::after {
  content: "\e949";
  font-family: "sumaity-icons";
  color: #FF9300;
  font-weight: normal;
  font-size: 24px;
  position: absolute;
  right: 2px;
}
.c-prev-condition__link-highlight {
  color: #FF6A30;
}
.c-prev-condition__link-num {
  font-size: 14px;
}
.c-prev-condition__link.--search {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-right: 26px;
}
.c-prev-condition__link.--search .c-prev-condition__item-header {
  font-size: 14px;
  display: flex;
  align-items: center;
  line-height: 1;
  margin-bottom: 8px;
}
.c-prev-condition__link.--search .c-prev-condition__item-header::before {
  content: "\e91a";
  font-family: "sumaity-icons";
  color: #FF9300;
  font-weight: normal;
  font-size: 20px;
}
.c-prev-condition__link.--search .c-prev-condition__item-list {
  display: flex;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.1;
  width: 100%;
}
.c-prev-condition__link.--search .c-prev-condition__item-list.--area {
  margin-bottom: 6px;
}
.c-prev-condition__link.--search .c-prev-condition__item-list.--area dt {
  max-width: 40px;
  background-image: url(/ui/utility/common/svg/iconT_area_black.svg);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: 14px auto;
}
.c-prev-condition__link.--search .c-prev-condition__item-list.--conditions dt {
  max-width: 50px;
  background-image: url(/ui/utility/common/svg/icon_document_black.svg);
  background-repeat: no-repeat;
  background-position: center left 1px;
  background-size: 11px auto;
}
.c-prev-condition__link.--search .c-prev-condition__item-list dt {
  width: 100%;
  font-weight: bold;
  border-right: 1px solid #D8CBB2;
  margin-right: 5px;
  padding-right: 3px;
  padding-left: 16px;
}
.c-prev-condition__link.--search .c-prev-condition__item-list dd {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.c-prev-condition__link.--new-arrivals::before {
  content: "\e947";
  font-family: "sumaity-icons";
  color: #FF9300;
  font-weight: normal;
  font-size: 18px;
  padding-right: 4px;
}
.c-prev-condition__link.--mail::before {
  content: "\e912";
  font-family: "sumaity-icons";
  color: #FF9300;
  font-weight: normal;
  font-size: 18px;
  padding-right: 4px;
}
.c-prev-condition__item.--columns {
  display: flex;
}
.c-prev-condition__item.--columns .c-prev-condition__link {
  width: 100%;
  justify-content: center;
  padding: 4px 8px;
  min-height: 48px;
  line-height: 1.3;
  box-sizing: border-box;
}
.c-prev-condition__item.--columns .c-prev-condition__link:not(:first-child) {
  border-left: 1px dashed #E9E9E9;
}
.c-prev-condition__item.--columns .c-prev-condition__link.--no-caret::after {
  content: none;
}
.c-prev-condition__item.--columns .c-prev-condition__link.--line::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(/ui/utility/common/sns/share_line_roundedSquare_Color_new.svg) center center/24px no-repeat;
  padding-right: 12px;
}
.c-prev-condition__item.--columns .c-prev-condition__link.--mail::before {
  font-size: 24px;
}
.c-prev-condition__item:has(+ .c-prev-condition__item.--columns) {
  border-bottom: 1px dashed #E9E9E9;
}

.c-related-search {
  padding-top: 10px;
  background: #F4F4F4;
}
.c-related-search__link {
  color: #1F7AEE;
  display: inline-block;
}

.c-related-search-list {
  margin: 8px;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  overflow: hidden;
  box-sizing: border-box;
  color: #494949;
  text-align: left;
}
.c-related-search-list__item {
  border-bottom: 1px solid #E9E9E9;
  background: #FFFFFF;
}
.c-related-search-list__item:first-child {
  border-top: none;
  border-radius: 4px 4px 0 0;
}
.c-related-search-list__item:last-child {
  border: none;
  border-radius: 0 0 4px 4px;
}
.c-related-search-list a,
.c-related-search-list div {
  display: block;
  position: relative;
  padding: 12px 30px;
  color: #1B1B1B;
  font-size: 13px;
  text-decoration: none;
}
.c-related-search-list a::before,
.c-related-search-list div::before {
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #767676;
  font-size: 20px;
  line-height: 1;
  content: "\e91a";
  font-family: "sumaity-icons";
}
.c-related-search-list a::after,
.c-related-search-list div::after {
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  color: #494949;
  font-size: 24px;
  content: "\e949";
  font-family: "sumaity-icons";
}

.c-related-search-toggle {
  display: block;
  clear: both;
  padding: 0;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  background: #FFFFFF;
  text-align: left;
}
.c-related-search-toggle dt {
  display: block;
  position: relative;
  padding: 5px 5px 5px 8px;
  border-radius: 4px;
  box-sizing: border-box;
  background: #FFFFFF;
  line-height: 30px;
  cursor: pointer;
}
.c-related-search-toggle dt::after {
  position: absolute;
  right: 4px;
  width: 24px;
  height: 24px;
  color: #494949;
  font-size: 24px;
  vertical-align: bottom;
  content: "\e906";
  font-family: "sumaity-icons";
  transition: all 0.3s ease;
}
.c-related-search-toggle dt.is-deployed {
  border-bottom: solid 1px #E9E9E9;
  border-radius: 4px 4px 0 0;
  box-shadow: none;
}
.c-related-search-toggle dt.is-deployed::after {
  transform: rotate(-180deg);
  top: 30%;
}
.c-related-search-toggle dt span {
  color: #1B1B1B;
  font-size: 12px;
}
.c-related-search-toggle dd {
  display: none;
}
.c-related-search-toggle ul {
  overflow: hidden;
  padding: 8px;
}
.c-related-search-toggle li {
  float: left;
  padding-right: 10px;
  font-size: 12px;
  text-shadow: none;
  line-height: 1.7;
}
.c-related-search-toggle li a {
  display: inline;
  text-decoration: none;
}
.c-heading + .c-related-search-toggle {
  margin: 8px 0 0;
}
.c-related-search-toggle.neighbor-station li {
  padding-right: 0;
}
.c-related-search-toggle.neighbor-station li::after {
  float: right;
  width: 10px;
  height: 3px;
  margin: 8px 6px 0 6px;
  background: #E9E9E9;
  content: "";
}
.c-related-search-toggle.neighbor-station li:last-child::after {
  content: none;
}

.p-pref-repeater-search-wrapper + .c-repeater-box-wrap {
  padding-top: 12px;
}

.c-repeater-box-wrap {
  padding: 0 10px 3px;
}

.c-repeater-box {
  display: flex;
  border-radius: 4px;
  background-color: #FFFFFF;
  box-shadow: 0px 2px #D1D1D1;
}
.c-repeater-box__btn {
  display: flex;
  align-items: center;
  height: 50px;
  padding: 8px 0 7px 10px;
  color: #1B1B1B;
  box-sizing: border-box;
  font-weight: bold;
  text-decoration: none !important;
  line-height: 17px;
}
.c-repeater-box__btn:link, .c-repeater-box__btn:visited {
  color: #1B1B1B;
}
.c-repeater-box__item {
  width: 100%;
}
.c-repeater-box__item.--favorite {
  display: none;
}
.c-repeater-box__item.--favorite .c-icon-heart-fill {
  color: #FF9292;
  font-size: 22px;
}
.c-repeater-box__item.--history {
  display: none;
}
.c-repeater-box__item.--history .c-icon-clock {
  color: #706457;
  font-size: 22px;
}
.c-repeater-box__item + .c-repeater-box__item {
  border-left: 1px solid #E9E9E9;
}
.c-repeater-box__text {
  margin-left: 4px;
  font-size: 14px;
}
.c-repeater-box__text-num {
  color: #FF6A30;
  font-size: 16px;
  vertical-align: bottom;
}
.c-repeater-box__text-unit {
  margin-left: -3px;
  font-size: 16px;
  color: #FF6A30;
}

.c-search-box {
  border-radius: 19px;
  background: #FFFFFF;
}
.c-search-inner {
  position: relative;
  height: 36px;
}
.c-search-inner::before {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  content: "\e91a";
  font-family: "sumaity-icons";
  color: #FF9300;
  font-size: 22px;
  line-height: 1;
  z-index: 100;
}
.c-search-inner #freeword,
.c-search-inner .c-search-freeword-textarea {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 36px;
  padding: 0 0 0 36px;
  outline: none;
  box-sizing: border-box;
  border: none;
  background: none;
  font-size: 14px;
}
.c-search-inner #freeword::-moz-placeholder, .c-search-inner .c-search-freeword-textarea::-moz-placeholder {
  font-size: 14px;
  color: #767676;
}
.c-search-inner #freeword::placeholder,
.c-search-inner .c-search-freeword-textarea::placeholder {
  font-size: 14px;
  color: #767676;
}
.c-search-inner .c-search-freeword-textarea {
  padding: 7px 0 0 36px;
}
.c-search__suggest-item {
  display: flex;
  align-items: center;
  border-top: 1px solid #E9E9E9;
  box-sizing: border-box;
}
.c-search__suggest-item.--line .c-search__suggest-link::before {
  content: "\e935";
  font-family: "sumaity-icons";
  color: #6FBF08;
}
.c-search__suggest-item.--station .c-search__suggest-link::before {
  content: "\e935";
  font-family: "sumaity-icons";
}
.c-search__suggest-item.--area .c-search__suggest-link::before {
  content: "\e915";
  font-family: "sumaity-icons";
}
.c-search__suggest-item.--town .c-search__suggest-link::before {
  content: "\e915";
  font-family: "sumaity-icons";
  color: #79AFF5;
}
.c-search__suggest-item.--error span {
  width: 100%;
  min-height: 40px;
  padding: 8px;
  line-height: 1.4;
  border-radius: 0 0 19px 19px;
  box-sizing: border-box;
  font-size: 15px;
  word-break: break-all;
  color: #FF4949;
  background: #FFEDED;
}
.c-search__suggest-item.is-active {
  background: #FFF4E6;
}
.c-search__suggest-item.is-active::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 44px;
  background: #FF9300;
}
.c-search__suggest-link {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  min-height: 40px;
  padding: 8px 8px 8px 36px;
  line-height: 1.4;
  font-size: 15px;
  color: #1B1B1B !important;
  box-sizing: border-box;
  text-decoration: none !important;
}
.c-search__suggest-link::before {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  color: #FF9300;
  font-size: 20px;
  line-height: 1;
  z-index: 100;
}

.c-select-box {
  display: flex;
  align-items: center;
  width: 100%;
  height: 32px;
  padding: 5px 24px 6px 8px;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid #A4A4A4;
  background-color: #FFFFFF;
  color: #1B1B1B;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-sizing: border-box;
}
.c-select-box-wrap {
  position: relative;
}
.c-select-box-wrap::before {
  position: absolute;
  content: "";
  right: 1px;
  top: 1px;
  width: 24px;
  height: 30px;
  background: #FF9300;
  border-radius: 0 3px 3px 0;
  pointer-events: none;
  z-index: 2;
}
.c-select-box-wrap::after {
  position: absolute;
  width: 22px;
  height: 22px;
  content: "\e90a";
  font-family: "sumaity-icons";
  right: 1px;
  top: 2px;
  color: #FFFFFF;
  font-size: 20px;
  pointer-events: none;
  z-index: 2;
}
.c-select-box-label.is-hide {
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

.c-suggest {
  height: 52px;
}

.c-suggest-input-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  position: fixed;
  width: 100%;
  left: 0;
  padding: 4px 12px 12px;
  box-sizing: border-box;
  z-index: 10;
  background: #FFFFFF;
  border-bottom: 1px solid #E9E9E9;
}

.c-suggest-input {
  position: relative;
  width: 100%;
  transition: all 300ms 0s ease;
  flex-shrink: 0;
}
.c-suggest-input::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  content: "\e91a";
  font-family: "sumaity-icons";
  left: 10px;
  color: #FF9300;
  font-size: 20px;
  line-height: 1;
  z-index: 100;
}
.c-suggest-input.is-narrow {
  width: calc(100% - 80px);
}
.c-suggest-input__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #767676;
  font-size: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 4px;
}
.c-suggest-input__close.is-hide {
  display: none;
}

.c-suggest-input-text-button {
  width: 70px;
  font-size: 14px;
  color: #1F7AEE;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: none;
  padding: 0;
  font-family: inherit;
  line-height: 1;
  white-space: nowrap;
}

.c-suggest-result__list-title {
  background: #F4F4F4;
  line-height: 1;
  height: 24px;
  font-size: 12px;
  font-weight: bold;
  padding-left: 24px;
  box-sizing: border-box;
  color: #494949;
  position: relative;
  display: flex;
  align-items: center;
}
.c-suggest-result__list-title::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #767676;
  line-height: 1;
  font-size: 14px;
  font-weight: normal;
  left: 8px;
}
.c-suggest-result__list-title.--city::before {
  content: "\e915";
  font-family: "sumaity-icons";
}
.c-suggest-result__list-title.--town::before {
  content: "\e916";
  font-family: "sumaity-icons";
}
.c-suggest-result__list-title.--station::before {
  padding-top: 1px;
  content: "\e935";
  font-family: "sumaity-icons";
}

.c-suggest-result__text {
  font-size: 13px;
  color: #1B1B1B;
  line-height: 1.5;
  margin: 8px 12px;
}

.react-autosuggest__container {
  position: relative;
}

.react-autosuggest__input {
  box-sizing: border-box;
  border: none;
  border-radius: 20px;
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 36px;
  padding: 0 0 0 32px;
  outline: none;
  box-sizing: border-box;
  background-color: #F4F4F4;
  font-size: 14px;
  font-family: inherit;
  color: #1B1B1B;
}
.react-autosuggest__input::-moz-placeholder {
  font-size: 14px;
  color: #767676;
}
.react-autosuggest__input::placeholder {
  font-size: 14px;
  color: #767676;
}
.react-autosuggest__input:disabled {
  color: #1B1B1B;
  background-color: #F4F4F4;
  -webkit-text-fill-color: #1B1B1B;
  opacity: 1;
}
.react-autosuggest__input.is-default {
  color: #767676;
}
.react-autosuggest__input.is-default:disabled {
  -webkit-text-fill-color: #767676;
}

.react-autosuggest__suggestions-container {
  display: none;
}
.react-autosuggest__suggestions-container.react-autosuggest__suggestions-container--open {
  display: block;
  position: absolute;
  background-color: #FFFFFF;
  font-weight: 300;
  font-size: 16px;
  z-index: 2;
  top: 53px;
  width: 100%;
}

.react-autosuggest__suggestions-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.react-autosuggest__suggestion {
  cursor: pointer;
  font-size: 13px;
  background: #FFFFFF;
  padding: 10px 16px;
  position: relative;
  height: 40px;
  box-sizing: border-box;
}
.react-autosuggest__suggestion::after {
  right: 12px;
  top: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  content: "\e95a";
  font-family: "sumaity-icons";
  color: #767676;
  font-size: 22px;
  line-height: 1;
}
.react-autosuggest__suggestion:active {
  background: #F4F4F4;
}

.react-area-select-modal-open {
  position: relative;
  z-index: 2;
  width: -moz-fit-content;
  width: fit-content;
}

.c-table {
  min-width: 100%;
}
.c-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.c-table tr {
  display: flex;
  align-items: stretch;
}
.c-table tr:first-child > * {
  border-top-width: 1px;
  border-top-color: #E0D5C1;
}
.c-table tr:first-child > *:first-child {
  border-top-left-radius: 4px;
}
.c-table tr:first-child > *:last-child {
  border-top-right-radius: 4px;
}
.c-table tr:last-child > * {
  border-bottom-width: 1px;
  border-bottom-color: #E0D5C1;
}
.c-table tr:last-child > *:first-child {
  border-bottom-left-radius: 4px;
}
.c-table tr:last-child > *:last-child {
  border-bottom-right-radius: 4px;
}
.c-table tr > * {
  padding: 8px;
  border-width: 0 1px 1px 0;
  border-style: solid;
  border-color: #E0D5C1;
  font-size: 13px;
  border-color: rgba(224, 213, 193, 0.6);
}
.c-table tr > *:first-child {
  border-right-width: 0;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-left-color: #E0D5C1;
}
.c-table tr > *:last-child {
  border-right-color: #E0D5C1;
}
.c-table tr > *.--full {
  padding: 0;
}
.c-table th {
  width: 88px;
  min-width: 88px;
  background: #F4F0E8;
  color: #494949;
  font-weight: normal;
  text-align: left;
  font-size: 12px;
  display: flex;
  align-items: center;
  line-height: 1.3;
}
.c-table th[colspan] {
  width: 100%;
}
.c-table td {
  width: 100%;
  color: #1B1B1B;
  position: relative;
  line-height: 1.5;
}
.c-table td.--thin {
  color: #A4A4A4;
  font-size: 11px;
}
.c-table a {
  color: #1F7AEE;
  text-decoration: underline;
}
.c-table a:hover {
  text-decoration: none;
}
.c-table a:link, .c-table a:visited {
  color: #1F7AEE;
}
.c-table-container {
  overflow: hidden;
  border-radius: 4px 0 0 4px;
}
.c-table-container.--swipe {
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  width: calc(100vw - 12px);
}
.c-table-container.--swipe .c-table {
  min-width: 100%;
  margin-right: 12px;
}
.c-table-container.--swipe .c-table tr {
  display: flex;
  align-items: stretch;
}
.c-table-container.--swipe .c-table th {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 2;
}
.c-table-container.--swipe .c-table td {
  width: 200px;
  min-width: 200px;
  box-sizing: border-box;
}

#content {
  background: #F4F4F4;
  text-align: left;
  padding: 6px 10px 20px;
}

/*一旦非表示対応、ネクストアクションにてソース事消す[#25815]*/
.commuteWrap, #commuteRouteResult {
  display: none;
}

.disclaimer {
  font-size: 12px;
  padding: 10px;
}

/*関連リンク*/
.relatedNeighbor {
  margin: 0;
  border: 1px solid #d1d1d1;
  color: #1b1b1b;
}

.relatedNeighbor dt span {
  font-size: 14px;
}

.relatedNeighbor dt {
  height: 48px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  padding: 10px;
  font-weight: bold;
}

.relatedNeighbor dt:active {
  background-color: #F4F4F4;
}

.relatedNeighbor dt::after {
  content: "\e90a";
  font-family: "sumaity-icons";
  position: absolute;
  right: 10px;
  font-size: 24px;
  font-weight: normal;
  transition: 0.2s;
  color: #494949;
  top: auto;
  float: none;
  width: auto;
  height: auto;
  transform: none;
  background: none;
}

.relatedNeighbor dt.is-deployed::after {
  transform: rotate(-180deg);
  background: none;
}

.p-select-heading-container {
  display: flex;
  justify-content: space-between;
}
.p-select-heading-container .c-heading__medium {
  margin: 4px 0;
}
.p-select-heading-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 82px;
  height: 42px;
  padding: 0;
  border: 1px solid #E9E9E9;
  box-shadow: inset 0px -1px #D1D1D1;
  background: #FFFFFF;
  color: #494949;
  text-decoration: none;
  line-height: 1.2;
  font-weight: bold;
  font-size: 13px;
  border-radius: 4px;
  box-sizing: border-box;
  padding-left: 8px;
}
.p-select-heading-btn:link, .p-select-heading-btn:visited {
  color: #494949;
  text-decoration: none;
}
.p-select-heading-btn:active, .p-select-heading-btn:hover {
  background-color: #F4F4F4;
}
.p-select-heading-btn.--caret-left::before {
  content: "\e90b";
  font-family: "sumaity-icons";
  font-size: 20px;
  font-weight: normal;
  position: absolute;
  left: 0;
}
.p-select-heading-text {
  font-size: 13px;
  color: #1B1B1B;
}

.tpl_selectStation .headding-themeLabel {
  border-left: 6px solid #706457;
  border-radius: 1px;
  color: #706457;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.2;
  background: none;
  border-top: none;
  border-bottom: none;
  text-shadow: none;
  padding: 0 0 0 6px;
  text-align: left;
}

.tpl_selectStation .headding-themeLabel + .c-heading__medium {
  margin: 0 0 4px;
}

.p-select-toggle {
  background: #FFFFFF;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  margin-bottom: 15px;
}
.p-select-toggle-wrap {
  margin-top: 10px;
}
.p-select-toggle__parent {
  height: 48px;
  position: relative;
  font-size: 15px;
  color: #1B1B1B;
  font-weight: bold;
  display: flex;
  align-items: center;
  line-height: 1;
  padding-left: 10px;
  box-sizing: border-box;
}
.p-select-toggle__parent::before {
  position: absolute;
  content: "";
  border-top: 2px solid rgba(0, 0, 0, 0);
  display: block;
  width: 100%;
  top: 0;
  left: 0;
  border-radius: 3px 3px 0 0;
  transition: 0.2s;
}
.p-select-toggle__parent::after {
  content: "\e90a";
  font-family: "sumaity-icons";
  position: absolute;
  right: 10px;
  font-size: 24px;
  font-weight: normal;
  transition: 0.3s;
  color: #494949;
}
.p-select-toggle__parent.is-open::before {
  border-top: 2px solid #767676;
}
.p-select-toggle__parent.is-open::after {
  transform: rotate(-180deg);
}
.p-select-toggle.--group-check .p-select-toggle__parent {
  padding: 0;
}
.p-select-toggle.--group-check .p-select-toggle__child .p-select-lists-label {
  padding: 10px 10px 10px 20px;
}

.p-select-lists__item {
  display: flex;
  align-items: center;
  border-top: 1px solid #E9E9E9;
}
.p-select-lists__item.is-selected .p-select-lists-label {
  background: #FFF4E6;
}
.p-select-lists__item:last-of-type .p-select-lists-label {
  border-radius: 0 0 4px 4px;
}
.p-select-lists__item.is-disabled .p-select-lists-label,
.p-select-lists__item.is-disabled .p-select-lists-link {
  background: #F4F4F4;
  pointer-events: none;
}
.p-select-lists__item.is-disabled .p-select-lists-label::after,
.p-select-lists__item.is-disabled .p-select-lists-link::after {
  color: #D1D1D1;
}
.p-select-lists__item.is-disabled .p-select-lists-label .p-select-lists-name,
.p-select-lists__item.is-disabled .p-select-lists-label .p-select-lists-count,
.p-select-lists__item.is-disabled .p-select-lists-link .p-select-lists-name,
.p-select-lists__item.is-disabled .p-select-lists-link .p-select-lists-count {
  color: #A4A4A4;
}
.p-select-lists-label {
  display: flex;
  align-items: center;
  height: 48px;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  align-items: center;
}
.p-select-lists-label input[type=checkbox] {
  margin: 0;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  top: 0;
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-right: 6px;
}
.p-select-lists-label input[type=checkbox]::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 26px;
  height: 26px;
  transform: translateY(-50%);
  transition: border-color 0.2s linear;
  border: 2px solid #D1D1D1;
  border-radius: 4px;
  box-sizing: border-box;
  background: #FFFFFF;
}
.p-select-lists-label input[type=checkbox]::after {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  left: 3.5px;
  width: 9px;
  height: 16px;
  transform: rotate(40deg) translateY(-50%);
  transition: opacity 0.2s linear;
  border-right: 3px solid #D1D1D1;
  border-bottom: 3px solid #D1D1D1;
  z-index: 2;
  box-sizing: border-box;
}
.p-select-lists-label input[type=checkbox]:checked::before {
  border-color: #FF9300;
  background: #FF9300;
}
.p-select-lists-label input[type=checkbox]:checked::after {
  border-color: #FFFFFF;
}
.p-select-lists-label input[type=checkbox]:disabled::before {
  border-color: #E9E9E9;
  background: #F4F4F4;
}
.p-select-lists-label input[type=checkbox]:disabled::after {
  border: none;
}
.p-select-lists-name {
  font-size: 15px;
  color: #1B1B1B;
  width: 100%;
  line-height: 1.2;
  margin-right: 4px;
}
.p-select-lists-count {
  font-size: 11px;
  color: #767676;
  display: flex;
  align-items: baseline;
}
.p-select-lists-count__num {
  font-size: 13px;
}
.p-select-lists-link {
  height: 48px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 36px 10px 20px;
  box-sizing: border-box;
}
.p-select-lists-link:link {
  text-decoration: none;
}
.p-select-lists-link::after {
  position: absolute;
  content: "\e909";
  font-family: "sumaity-icons";
  color: #FF9300;
  right: 8px;
  font-size: 24px;
  font-weight: normal;
}

.p-select-fixed-bottom {
  width: 100%;
  z-index: 600;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.7);
  bottom: -80px;
  left: 0;
  position: fixed;
  transition: 0.5s;
}
.p-select-fixed-bottom.is-show {
  bottom: 0px !important;
}
.p-select-fixed-bottom.is-show .p-select-fixed-bottom-btn {
  opacity: 1;
}
.p-select-fixed-bottom__inner {
  padding: 10px;
  display: flex;
  gap: 8px;
}
.p-select-fixed-bottom-btn {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  height: 48px;
  width: 100%;
  background: #FF9300;
  box-shadow: inset 0 -2px 0 #B36700;
  color: #FFFFFF;
  font-weight: bold;
  text-align: center;
  opacity: 0.4;
  transition: 0.2s;
}
.p-select-fixed-bottom-btn:link {
  text-decoration: none;
  color: #FFFFFF;
}
.p-select-fixed-bottom-btn:active, .p-select-fixed-bottom-btn:hover {
  background-color: #E58400;
}
.p-select-fixed-bottom-btn.--terms {
  background: #FFFFFF;
  box-shadow: inset 0 -2px 0 #D1D1D1;
  color: #1B1B1B;
  position: relative;
}
.p-select-fixed-bottom-btn.--terms:active, .p-select-fixed-bottom-btn.--terms:hover {
  background-color: #F4F4F4;
}
.p-select-fixed-bottom-btn.--terms::before {
  content: "\e941";
  font-family: "sumaity-icons";
  color: #FF9300;
  font-weight: normal;
  font-size: 24px;
  padding-right: 2px;
}
.p-select-fixed-bottom-btn.is-disabled {
  opacity: 0.6 !important;
}

.p-select-btn-common {
  height: 48px;
  display: flex;
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #D1D1D1;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: bold;
  color: #1B1B1B;
  position: relative;
}
.p-select-btn-common:link {
  text-decoration: none;
  color: #1B1B1B;
}
.p-select-btn-common:active, .p-select-btn-common:hover {
  background-color: #F4F4F4;
}
.p-select-btn-common::after {
  content: "\e909";
  font-family: "sumaity-icons";
  position: absolute;
  right: 10px;
  font-size: 24px;
  font-weight: normal;
}

.p-select-term {
  display: flex;
  align-items: center;
  background: #FFFBD8;
  line-height: 1;
  font-size: 13px;
  padding: 6px;
  position: relative;
}
.p-select-term dt {
  display: flex;
  color: #706457;
  align-items: center;
  font-weight: bold;
  text-wrap: nowrap;
}
.p-select-term dd {
  line-height: 1.2;
  border-left: 1px solid #706457;
  color: #706457;
  margin-left: 5px;
  padding-left: 5px;
}
.p-select-term-wrap {
  margin-top: 10px;
}

.p-search-wrap {
  margin: 12px 0;
}

.c-search-box {
  border: 1px solid #E9E9E9;
}