@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;
  }
}
/* Reset */
body, div, dl, dt, dd, ul, ol, li,
h1, h2, h3, h4, h5, h6,
object, iframe, pre, code, p, blockquote,
form, fieldset, legend,
table, th, td, caption, tbody, tfoot, thead,
article, aside, figure, footer, header,
hgroup, menu, nav, section, audio, video, canvas {
  margin: 0;
  padding: 0;
}

article, aside, figure, figcaption, footer,
h1, h2, h3, h4, h5, h6, header, hgroup, menu, nav, section {
  display: block;
}

/* 1. HTML, Body, Anchor */
html {
  overflow-y: scroll;
  touch-action: manipulation;
} /* for mozilla: always display scrollbar */
body {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Meiryo", "メイリオ", Verdana, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  zoom: 1;
  height: 100%;
}

a {
  color: #1f7aee;
}

/* 2. Heading */
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}

/* 3. List */
li {
  list-style: none;
}

/* 4. Table */
table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
  font-family: inherit;
}

caption, th, td {
  text-align: left;
  vertical-align: top;
  font-weight: normal;
}

/* 5. Form */
fieldset {
  border: none;
}

input, textarea, select, label {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 100%;
  font-family: inherit;
  vertical-align: middle;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

label {
  cursor: pointer;
}

textarea {
  overflow: auto;
}

legend {
  display: none;
}

input[type$=radio] {
  vertical-align: baseline;
  cursor: pointer;
}

input[type$=checkbox] {
  margin: 0 4px 0 0;
  vertical-align: baseline;
  position: relative;
  top: 2px;
  z-index: 1;
  cursor: pointer;
}

/* 6. Other */
img {
  border: none;
  vertical-align: middle;
}

object {
  vertical-align: middle;
  outline: none;
}

em, strong {
  font-weight: bold;
  font-style: normal;
}

:focus-visible {
  outline: 2px solid #1b1b1b;
  border-radius: 4px;
  outline-offset: 0;
}

a:focus-visible,
input:focus-visible,
button:focus-visible {
  outline: 2px solid #1b1b1b;
  outline-offset: 0;
}

/* 7. button */
button {
  padding: 0;
  margin: 0;
  border: none;
  background-color: transparent;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: inherit;
  font: inherit;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  outline: none;
  cursor: pointer;
}

/* 
[このファイルについて]
旧/ui/tility/sp/css/grobal.cssを一部整理したもの。
デザインが新しくなるタイミングで整理したり、layout以下にsassパーツとして切り分けていく。
 */
/* //////////////////////////////////////////////////
[汎用クラス]
////////////////////////////////////////////////// */
.is-hide {
  display: none !important;
}

.is-show {
  display: block !important;
}

/* //////////////////////////////////////////////////
[common]
////////////////////////////////////////////////// */
.price {
  font-size: 12px;
  font-weight: bold;
  color: #FF4949;
}

/* //////////////////////////////////////////////////
[init]
////////////////////////////////////////////////// */
/*clearfix*/
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-table;
}

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

table {
  width: 100%;
  border: 1px #d6d3c8 solid;
}

caption {
  font-weight: bold;
  border-left: 5px #382c1c solid;
  margin-bottom: 5px;
  padding-left: 5px;
  line-height: 1.2;
}

th {
  font-weight: bold;
  padding: 6px 10px;
  background: #f4f2e9;
  border-bottom: 1px #b2ada4 dotted;
  vertical-align: baseline;
}

td {
  padding: 6px 10px;
  border-bottom: 1px #b2ada4 dotted;
  vertical-align: baseline;
}

table.ui-tableLayout-col th,
table.ui-tableLayout-col td {
  border-right: 1px dotted #b2ada4;
}

/* //////////////////////////////////////////////////
[header]
////////////////////////////////////////////////// */
#globalHeader {
  border-top: 4px #ff9300 solid;
  overflow: hidden;
  z-index: 1;
  background-color: #FFF;
  display: table;
  width: 100%;
  padding: 2px 0;
  border-bottom: 1px solid #d5d5d5;
}

#globalHeader #topHeader {
  margin: 0 auto;
  width: 280px;
  overflow: hidden;
}

#globalHeader #logo {
  display: table-cell;
  vertical-align: middle;
  width: 100px;
  padding: 2px 0 2px 7px;
}

#globalHeader #logo a,
#globalHeader #logo p,
#globalHeader #logo span {
  position: relative;
  display: block;
  height: 33px;
}

#globalHeader #logo img {
  position: absolute;
  top: -28px;
  left: -4px;
  width: 89px;
}

#globalHeader h1.headText {
  width: 54%;
  margin-right: 10px;
  margin-bottom: 6px;
  font-size: 12px;
  line-height: 12px;
  text-align: left;
  float: right;
}

#globalHeader #copy {
  margin: 0 5px 0 0;
  float: right;
}

/*メニュー*/
#globalHeader #naviBtn {
  overflow: hidden;
  display: table-cell;
  width: 190px;
}

#globalHeader #naviBtn ul {
  padding: 0;
  display: table;
  width: 100%;
}

#globalHeader #naviBtn ul li {
  margin: 0;
  position: relative;
  display: table-cell;
  text-align: center;
  width: 22%;
}

#globalHeader #naviBtn ul li span.badge,
nav#footer_migration ul li a span.badge {
  font-size: 0.7rem;
  color: #fff;
  display: none;
  width: 18px;
  height: 18px;
  -webkit-border-radius: 12px;
  border: 2px solid #fff;
  border-radius: 12px;
  background-color: #ff6a30;
  line-height: 19px;
  text-shadow: none;
}

#globalHeader #naviBtn ul li span.badge {
  position: absolute;
  top: 0px;
  right: 48%;
  transform: translateX(26px);
}

/* 検索メニューのアイコンに動きをつける*/
ul li span.badge.iconTrans {
  animation: icontranslate 1.3s;
  animation-iteration-count: 1;
}

@keyframes icontranslate {
  0% {
    transform: translate(27px, 0px);
  }
  8% {
    transform: translate(24px, 0px);
  }
  16% {
    transform: translate(27px, 0px);
  }
  24% {
    transform: translate(24px, 0px);
  }
  32% {
    transform: translate(27px, 0px);
  }
  40% {
    transform: translate(24px, 0px);
  }
  48% {
    transform: translate(27px, 0px);
  }
  56% {
    transform: translate(24px, 0px);
  }
  64% {
    transform: translate(27px, 0px);
  }
  72% {
    transform: translate(24px, 0px);
  }
  100% {
    transform: translate(26px, 0px);
  }
}
/* 検索メニューのアイコンに動きをつける*/
#globalHeader #naviBtn ul li a {
  display: block;
  table-layout: fixed;
  text-decoration: none;
  color: #463820;
  border-left: 1px solid #E3D7C0;
}

#globalHeader #naviBtn ul li a span {
  font-size: 0.6rem;
  letter-spacing: -0.001em;
  font-weight: bold;
}

#globalHeader #naviBtn ul a.fav,
#globalHeader #naviBtn ul a.his,
#globalHeader #naviBtn ul a.menu,
#globalHeader #naviBtn ul a.save {
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center 4px;
  background-size: 22px;
  height: 24px;
  padding-top: 21px;
  min-width: 54px;
}

#globalHeader #naviBtn ul a.fav {
  background-image: url(/ui/utility/common/svg/heart_lightbrown.svg);
  background-position: center 4px;
}

#globalHeader #naviBtn ul a.his {
  background-image: url(/ui/utility/common/svg/iconF_history_brown.svg);
}

#globalHeader #naviBtn ul a.menu {
  background-image: url(/ui/utility/common/svg/search_menu.svg);
  background-size: 32px;
  background-position: center -3px;
}

#globalHeader #naviBtn ul a.save {
  background-image: url(/ui/utility/common/svg/iconF_save_brown.svg);
  background-size: 21px;
}

/*追従ヘッダー*/
#sumaityFixedHeader {
  position: fixed;
  z-index: 400;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0px 1px 2px 0px rgb(183, 183, 183);
  box-sizing: border-box;
  padding: 5px 0;
  will-change: transform;
  animation-name: sumaityFixedHeader;
  animation-duration: 0.4s;
  animation-iteration-count: 1;
  transform: translateY(0px);
}
@keyframes sumaityFixedHeader {
  0% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0px);
  }
}
#sumaityFixedHeader ul {
  display: table;
  width: 100%;
}

#sumaityFixedHeader ul li {
  border-right: 1px solid #E3D7C0;
}

#sumaityFixedHeader ul li:last-child {
  border-right: none;
}

nav#sumaityFixedHeader ul li a {
  position: relative;
}

#sumaityFixedHeader ul li.fav,
#sumaityFixedHeader ul li.menu {
  position: relative;
}

#sumaityFixedHeader ul li > a > span {
  color: #463820;
  font-size: 0.6rem;
  padding-top: 20px;
  display: block;
}

#sumaityFixedHeader .logo {
  display: table-cell;
  width: 123px;
  vertical-align: middle;
  padding-left: 5px;
}

#sumaityFixedHeader .logo a {
  display: block;
  background-image: url(/ui/utility/common/sumaity_logo.svg);
  background-size: 70px;
  background-repeat: no-repeat;
  background-position: 5px center;
  height: 28px;
}

#sumaityFixedHeader .fav,
#sumaityFixedHeader .his,
#sumaityFixedHeader .menu,
#sumaityFixedHeader .save {
  display: table-cell;
  vertical-align: bottom;
}

#sumaityFixedHeader .fav a,
#sumaityFixedHeader .his a,
#sumaityFixedHeader .menu a,
#sumaityFixedHeader .save a {
  display: block;
  background-size: 19px;
  background-repeat: no-repeat;
  background-position: center top;
  text-decoration: none;
  text-align: center;
}

#sumaityFixedHeader .fav a {
  background-image: url(/ui/utility/common/svg/heart_lightbrown.svg);
  background-position: center top;
}

#sumaityFixedHeader .his a {
  background-image: url(/ui/utility/common/svg/iconF_history_brown.svg);
}

#sumaityFixedHeader .menu a {
  background-image: url(/ui/utility/common/svg/search_menu.svg);
  background-size: 30px;
  background-position-y: -5px;
}

#sumaityFixedHeader .save a {
  background-image: url(/ui/utility/common/svg/iconF_save_brown.svg);
  background-size: 19px;
  background-position: center 0;
}

#sumaityFixedHeader ul li.fav,
#sumaityFixedHeader ul li.his,
#sumaityFixedHeader ul li.menu,
#sumaityFixedHeader ul li.save {
  position: relative;
  width: 22%;
}

#sumaityFixedHeader ul li.fav span.badge,
#sumaityFixedHeader ul li.his span.badge,
#sumaityFixedHeader ul li.menu span.badge,
#sumaityFixedHeader ul li.save span.badge {
  text-align: center;
  font-size: 0.7rem;
  color: #fff;
  display: none;
  width: 18px;
  height: 18px;
  padding-top: 0;
  -webkit-border-radius: 12px;
  border: 2px solid #fff;
  border-radius: 12px;
  background-color: #ff5e1f;
  line-height: 19px;
  text-shadow: none;
  position: absolute;
  top: -5px;
  right: 50%;
  transform: translateX(26px);
}

/* //////////////////////////////////////////////////
[パンくずリスト]
////////////////////////////////////////////////// */
/* ↓↓旧パンくず↓↓ */
.breadCrumbsWrap {
  width: 100%;
  border-top: 1px solid #d5d5d5;
  border-bottom: 1px solid #d5d5d5;
  position: relative;
  clear: both;
  background-color: #FFF;
}

.breadCrumbsWrap a.breadCrumbsHome {
  display: block;
  width: 38px;
  height: 44px;
  background-color: #FFF;
  background-image: url(/ui/utility/common/svg/home.svg);
  background-repeat: no-repeat;
  background-position: 16px 12px;
  background-size: 16px;
  position: absolute;
  top: 4px;
  left: 0px;
  z-index: 1;
}

.breadCrumbsWrap a.breadCrumbsHome::before,
.breadCrumbsWrap a.breadCrumbsHome::after {
  display: block;
  margin-left: auto;
  margin-right: -8px;
  height: 22px;
  width: 16px;
  content: " ";
  background: #ffffff;
  border-right: 1px solid #d5d5d5;
}

.breadCrumbsWrap a.breadCrumbsHome::before {
  float: right;
  margin-top: 22px;
  -webkit-transform: skew(-35deg);
  -moz-transform: skew(-35deg);
}

.breadCrumbsWrap a.breadCrumbsHome::after {
  position: relative;
  -webkit-transform: skew(35deg);
  -moz-transform: skew(35deg);
}

.breadCrumbsWrapBtm {
  border-bottom: none;
}

.breadCrumbsInner {
  margin: 0;
  background: #f8f8f8;
  border-top: 1px solid #d5d5d5;
  border-bottom: 1px solid #d5d5d5;
  height: 44px;
  overflow: hidden;
  position: relative;
  text-align: left;
  margin: 3px 0;
}

.breadCrumbsInner ol {
  overflow: hidden;
  display: table;
}

.breadCrumbsInner ol li {
  text-align: center;
  margin-left: -5px;
  /*line-height: 40px;*/
  display: table-cell;
}

.breadCrumbsInner ol li:first-child {
  padding-left: 40px;
}

.breadCrumbsInner ol li span {
  white-space: nowrap;
}

.breadCrumbsInner ol li:last-child {
  line-height: 40px;
}

.breadCrumbsInner ol li:last-child span {
  white-space: nowrap;
  font-size: 0.7rem;
  font-weight: bold;
  color: #FFF;
  background-color: #000;
  margin-left: 24px;
  margin-right: 12px;
  padding: 2px 6px;
  border-radius: 3px;
}

.breadCrumbsInner ol li a {
  text-decoration: none;
  color: #FFF;
}

.breadCrumbsInner ol li a:visited {
  text-decoration: none;
  color: #FFF;
}

.breadCrumbsInner ol li a.breadCrumbs {
  white-space: nowrap;
  line-height: 44px;
  font-size: 0.7rem;
  /*float: left;*/
  display: block;
  padding: 0 11px 0 23px;
  min-width: 1.2em;
  color: #333;
  text-decoration: none;
  background: #f8f8f8;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.breadCrumbsInner ol li a.breadCrumbs::before,
.breadCrumbsInner ol li a.breadCrumbs::after {
  display: block;
  margin-left: auto;
  margin-right: -16px;
  height: 22px;
  width: 12px;
  content: " ";
  background: #f8f8f8;
  border-right: 1px solid #d5d5d5;
}

.breadCrumbsInner ol li a.breadCrumbs::before {
  float: right;
  margin-bottom: -22px;
  -webkit-transform: skew(35deg);
  -moz-transform: skew(35deg);
}

.breadCrumbsInner ol li a.breadCrumbs::after {
  position: relative;
  margin-top: -22px;
  -webkit-transform: skew(-35deg);
  -moz-transform: skew(-35deg);
}

/* ↑↑旧パンくず↑↑ */
/* ↑↑新パンくず↑↑ */
.breadCrumbsBox {
  width: 100%;
  position: relative;
  clear: both;
  background-color: #FFF;
}

.breadCrumbsBox .breadCrumbsWrapBtm {
  border-bottom: none;
}

.breadCrumbsBox .breadCrumbsInner {
  margin: 0;
  border-bottom: 1px solid #d5d5d5;
  height: 38px;
  overflow: hidden;
  position: relative;
  text-align: left;
  border-top: none;
  background: #fff;
}

.breadCrumbsBox .breadCrumbsInner ol {
  overflow: hidden;
  display: table;
  background: #fff;
}

.breadCrumbsBox .breadCrumbsInner ol li {
  text-align: center;
  margin-left: -5px;
  display: table-cell;
  line-height: 30px;
  background: #fff;
  padding-left: 0;
}

.breadCrumbsBox .breadCrumbsInner ol li span {
  white-space: nowrap;
}

.breadCrumbsBox .breadCrumbsInner ol li:last-child span {
  white-space: nowrap;
  font-size: 0.7rem;
  font-weight: bold;
  color: #000;
  margin-left: 24px;
  margin-right: 12px;
  padding: 2px 6px;
  border-radius: 3px;
  background: none;
}

.breadCrumbsBox .breadCrumbsInner ol li a {
  text-decoration: none;
  color: #FFF;
}

.breadCrumbsBox .breadCrumbsInner ol li a:visited {
  text-decoration: none;
  color: #FFF;
}

.breadCrumbsBox .breadCrumbsInner ol li a.breadCrumbs {
  white-space: nowrap;
  line-height: 40px;
  font-size: 0.7rem;
  display: block;
  padding: 0 11px 0 23px;
  min-width: 1.2em;
  color: #333;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background: #fff;
}

.breadCrumbsBox .breadCrumbsInner ol li a.breadCrumbs::before,
.breadCrumbsBox .breadCrumbsInner ol li a.breadCrumbs::after {
  display: block;
  margin-left: auto;
  margin-right: -16px;
  height: 20px;
  width: 12px;
  content: " ";
  border-right: 1px solid #d5d5d5;
  background: #fff;
}

.breadCrumbsBox .breadCrumbsInner ol li a.breadCrumbs::before {
  float: right;
  margin-top: -1px;
  -webkit-transform: skew(35deg);
  -moz-transform: skew(35deg);
}

.breadCrumbsBox .breadCrumbsInner ol li a.breadCrumbs::after {
  position: relative;
  margin-top: -21px;
  -webkit-transform: skew(-35deg);
  -moz-transform: skew(-35deg);
}

/* //////////////////////////////////////////////////
[content]
////////////////////////////////////////////////// */
h2.title span.subTitle {
  font-size: 12px;
  display: block;
}

/* 市区郡・市区町村選択 */
/* title */
.prefhead {
  text-align: left;
}

.prefhead .prefhead-line-icon {
  background: url(/ui/utility/common/svg/iconT_route_white.svg) #ff6a30 left 7px center/16px no-repeat;
  color: #FFFFFF;
  padding: 6px 8px 4px 28px;
}

.prefhead .prefhead-area-icon {
  background: url(/ui/utility/common/svg/iconT_area_white.svg) #ff6a30 left 7px center/16px no-repeat;
  color: #FFFFFF;
  padding: 6px 8px 4px 28px;
}

.leadBox {
  padding: 7px 8px 6px;
  background-color: #F8F8F8;
  border-bottom: 1px solid #d5d5d5;
  line-height: 18px;
  font-size: 0.9rem;
  font-weight: bold;
}

/* //////////////////////////////////////////////////
[トップ　各カテゴリーメニュー]
////////////////////////////////////////////////// */
h2.topTitle {
  background: none repeat scroll 0 0 #45371f;
  text-align: left;
  color: #FFFFFF;
  font-size: 93%;
  font-weight: bold;
  height: 35px;
  line-height: 35px;
  text-indent: 14px;
}

#categoryNav {
  font-size: 16px;
  margin: auto;
  padding: 10px 0 0 0;
}

#categoryNav ul {
  overflow: hidden;
  background: #ffffff;
  border-top: 1px solid #D4D4D4;
}

#categoryNav li {
  padding: 0;
  border-bottom: 1px solid #D4D4D4;
  border-top: 1px solid #FFFFFF;
}

#categoryNav li a {
  background-color: #ffffff;
  padding: 0;
  color: #333;
  letter-spacing: -0.05px;
  display: block;
  font-size: 100%;
  text-align: left;
  background-image: url(/ui/utility/common/svg/iconAS_arrow_right_orange.svg);
  background-position: 97% center;
  background-repeat: no-repeat;
  background-size: 11px;
  background-color: #ffffff;
  text-decoration: none;
  line-height: 3.2;
}

#categoryNav strong {
  display: block;
  padding: 0;
  color: #000000;
}

#categoryNav #groupHikkoshi strong {
  line-height: 2.2;
}

#categoryNav span {
  color: #555;
  font-size: 10px;
  display: block;
  padding: 0;
}

#categoryNav #groupHikkoshi span {
  line-height: 1.6;
}

#groupRent li {
  background-image: url(/ui/utility/common/svg/iconC_chintai.svg);
  background-position: 5px center;
  background-repeat: no-repeat;
  background-size: 32px;
  background-color: #ffffff;
  border-top: 1px solid #fff;
  text-align: left;
  padding: 3px 0 3px 45px;
}

#groupBuy li.nm {
  background-image: url(/ui/utility/common/svg/iconC_mansionNew.svg);
  background-position: 8px center;
  background-repeat: no-repeat;
  background-size: 28px;
  background-color: #ffffff;
  border-top: 1px solid #fff;
  text-align: left;
  padding: 3px 0 3px 45px;
}

#groupBuy li.hn {
  background-image: url(/ui/utility/common/svg/iconC_houseNew.svg);
  background-position: 8px center;
  background-repeat: no-repeat;
  background-size: 28px;
  background-color: #ffffff;
  border-top: 1px solid #fff;
  text-align: left;
  padding: 3px 0 3px 45px;
}

#groupBuy li.um {
  background-image: url(/ui/utility/common/svg/iconC_mansionUsed.svg);
  background-position: 8px center;
  background-repeat: no-repeat;
  background-size: 28px;
  background-color: #ffffff;
  border-top: 1px solid #fff;
  text-align: left;
  padding: 3px 0 3px 45px;
}

#groupBuy li.uh {
  background-image: url(/ui/utility/common/svg/iconC_houseUsed.svg);
  background-position: 8px center;
  background-repeat: no-repeat;
  background-size: 28px;
  background-color: #ffffff;
  border-top: 1px solid #fff;
  text-align: left;
  padding: 3px 0 3px 45px;
}

#groupHikkoshi li {
  background-image: url(/ui/utility/common/svg/iconC_k-hikkoshi.svg);
  background-position: 8px center;
  background-repeat: no-repeat;
  background-size: 30px;
  background-color: #ffffff;
  border-top: none;
  text-align: left;
  padding: 3px 0 3px 45px;
}

#groupWord li.town {
  background-image: url(/ui/utility/common/svg/iconC_town.svg);
  background-position: 8px center;
  background-repeat: no-repeat;
  background-size: 28px;
  background-color: #ffffff;
  border-top: 1px solid #fff;
  text-align: left;
  padding: 3px 0 3px 45px;
}

#groupWord li.press {
  background: url(/ui/utility/common/svg/iconC_press.svg);
  background-position: 8px center;
  background-repeat: no-repeat;
  background-size: 28px;
  background-color: #ffffff;
  border-top: 1px solid #fff;
  text-align: left;
  padding: 3px 0 3px 45px;
}

#groupWord li.word {
  background: url(/ui/utility/common/svg/iconC_glossary.svg) 17px center transparent no-repeat;
  background-position: 8px center;
  background-repeat: no-repeat;
  background-size: 28px;
  background-color: #ffffff;
  border-top: 1px solid #fff;
  text-align: left;
  padding: 3px 0 3px 45px;
}

/* modal フロートボタン */
/* 路線選択 */
#nextBtnFixed,
#nextBtnRelative {
  z-index: 1010;
}

#nextBtnFixed {
  position: fixed;
  bottom: 0;
}

.nextBtn,
.nextBtn {
  width: 100%;
  z-index: 600;
  margin: 0px 0 0 0;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.8);
}

.nextBtn ul,
.nextBtn ul {
  display: table;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 8px 8px;
}

.nextBtn.w50 ul,
.nextBtn.w50 ul {
  padding: 5px 5px;
}

.nextBtn ul li.searchResult,
.nextBtn ul li.searchResult {
  width: 100px;
  display: table-cell;
  vertical-align: middle;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  font-size: 0.9rem;
}

.nextBtn ul li.ui-btn-submitWrap {
  display: table-cell;
  vertical-align: middle;
  box-sizing: border-box;
  padding: 3px;
}

.nextBtn.w50 ul li.ui-btn-submitWrap.layout_2col {
  width: 80%;
}

.nextBtn.w50 ul li.ui-btn-submitWrap.layout_3col {
  width: 40%;
}

.nextBtn a.ui-btn-submit {
  box-sizing: border-box;
  border: 2px #FFFFFF solid;
  padding: 14px 0;
  font-size: 0.95rem;
  box-shadow: inset 0px -4px 0px 0px rgba(255, 72, 0, 1);
}

.nextBtn a.ui-btn-submit.is-disabled {
  box-shadow: inset 0px -4px 0px 0px rgba(152, 152, 152, 1);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.nextBtn a.ui-btn-search {
  box-sizing: border-box;
  border: 2px #FFFFFF solid;
  padding: 7px 0 11px;
  display: table;
  color: #505050;
  font-size: 88%;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  margin: 0px 0 0 0;
  text-decoration: none;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: inset 0px -4px 0px 0px rgba(213, 213, 213, 1);
}

.nextBtn a.ui-btn-search span.ui-btn-searchIn {
  display: table-cell;
  vertical-align: middle;
  line-height: 16px;
}

.nextBtn a.ui-btn-search span.ui-btn-searchIn span {
  background-image: url(/ui/utility/common/svg/iconI_search_orange.svg);
  background-position: 0 center;
  background-size: 20px;
  padding-left: 22px;
  background-repeat: no-repeat;
  display: block;
  width: 88px;
  margin: 0 auto;
  text-align: left;
}

.nextBtn a.ui-btn-search.is-disabled {
  color: #989898;
  background-color: #dddddd;
  box-shadow: inset 0px -4px 0px 0px rgba(152, 152, 152, 1);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.nextBtn a.ui-btn-search.is-disabled span.ui-btn-searchIn {
  border: none;
}

.nextBtn a.ui-btn-search.is-disabled span.ui-btn-searchIn span {
  background-image: none;
  background-image: url(/ui/utility/common/svg/iconI_search_gray.svg);
}

.nextBtn.w50 a.ui-btn-submit,
.nextBtn a.ui-btn-search {
  width: 100%;
}

.areaConditionsBtn .ui-btn-doubleLayout-wrapper {
  padding: 5px;
  box-sizing: border-box;
  line-height: 1.2;
}

.areaConditionsBtn .ui-btn-doubleLayout-wrapper a.ui-btn-common.btn-conditionChange {
  padding: 3px 0;
}

.areaConditionsBtn .ui-btn-doubleLayout-wrapper a.ui-btn-common.btn-areaChange {
  padding: 12px 0;
}

.areaConditionsBtn .ui-btn-doubleLayout-wrapper a.ui-btn-common span.icn-location {
  background-image: url(/ui/utility/common/svg/location.svg);
  background-size: 20px;
  background-position: 0 center;
  padding-left: 21px;
  background-repeat: no-repeat;
  display: inline-block;
}

.areaConditionsBtn .ui-btn-doubleLayout-wrapper a.ui-btn-common span.icn-edit {
  text-align: left;
  padding-left: 24px;
}

/* //////////////////////////////////////////////////
[footer]
////////////////////////////////////////////////// */
#share {
  padding: 10px 0;
  background: #d3cdc6;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #d3cdc6 1%, #ece7e0 14%, #f8f5f0 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d3cdc6", endColorstr="#f8f5f0", GradientType=0);
  /* IE6-9 */
}

#shareLink {
  margin: 5px 0 0 0;
  text-align: center;
}

#shareLink dt {
  display: inline-block;
  vertical-align: middle;
}

#shareLink dd {
  display: inline-block;
  vertical-align: middle;
  height: 20px;
  overflow: hidden;
  width: 20px;
  margin: 0 10px 0 0;
  border-radius: 2px 2px 2px 2px;
}

#shareLink dd a {
  background-image: url(/ui/utility/sp/images/png/icon_footer.png);
  background-repeat: no-repeat;
  background-size: 20px;
  /*box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.55) inset;*/
  display: block;
  font-size: 22px;
  text-indent: -500px;
}

#shareLink dd.twitter a {
  background-position: 0 0;
}

#shareLink dd.facebook a {
  background-position: 0px -22px;
}

#shareLink dd.line a {
  background-position: 0px -66px;
}

#shareLink dd.htb a {
  background-position: 0px -44px;
}

#shareLink dd.mail a {
  background-position: 0px -88px;
  background-color: #CCC;
}

#displayStatus {
  margin: 13px 0 0 0;
  text-align: center;
}

#displayStatus dt,
#displayStatus dd {
  display: inline-block;
  vertical-align: middle;
}

#displayStatus dd + dd {
  margin-left: 5px;
  padding-left: 10px;
  border-left: 1px solid #CFDAEB;
}

#displayStatus a {
  text-decoration: none;
}

/*フッターメニュー*/
#footer {
  background: none repeat scroll 0 0 #FFF;
  font-size: 13px;
}

#footer ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 10px 40px;
}

#footer ul li {
  text-align: center;
  padding: 0 8px;
  margin: 4px 0;
}

#footer ul li a {
  text-decoration: none;
  color: #1B1B1B;
}

#footer address {
  background: url(/ui/utility/sp/images/png/copyrightBg.png) repeat-x;
  background-size: 3px auto;
  height: 42px;
  font-family: Arial, Helvetica, sans-serif;
  color: white;
  font-size: 10px;
  line-height: 42px;
  font-weight: bold;
  text-align: center;
  text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.3);
  font-style: normal;
}

#footer_operator {
  background-color: #F4F4F4;
  border-top: 1px solid #d5d5d5;
  border-bottom: 1px solid #d5d5d5;
  height: 55px;
  padding: 10px;
}

#footer_operator ul li a {
  line-height: 50px;
  text-align: center;
  float: left;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-size: 16px;
  text-decoration: none;
  color: #505050;
  display: block;
  background-color: #FFF;
  box-shadow: 0px 2px 0px 0px rgba(213, 213, 213, 1);
}

#footer_operator ul li a:active,
#footer_operator ul li a:hover {
  background-color: #F4F4F4;
}

#footer_operator ul li:first-child a {
  border: 1px solid #c0c0c0;
  width: 35%;
  background-image: url(/ui/utility/common/svg/iconAS_arrow_goleft_brown.svg);
  background-position: 12% center;
  border-radius: 5px 0px 0px 5px;
}

#footer_operator ul li:nth-child(2) a {
  border-right: 1px solid #c0c0c0;
  border-top: 1px solid #c0c0c0;
  border-bottom: 1px solid #c0c0c0;
  width: 65%;
  background-image: url(/ui/utility/common/svg/iconAS_arrow_goup_brown.svg);
  background-position: 94% center;
  border-radius: 0px 5px 5px 0px;
}

#footer_operator.w100 ul li a {
  border: 1px solid #c0c0c0;
  width: 100%;
  background-image: url(/ui/utility/common/svg/iconAS_arrow_goup_brown.svg);
  background-position: 7% center;
  border-radius: 5px;
}

nav#footer_migration ul li a {
  position: relative;
  padding-right: 20px;
  display: block;
  font-size: 0.9rem;
  text-decoration: none;
  color: #756447;
  background-color: #F4F0EA;
  line-height: 50px;
  height: 50px;
  padding-left: 18px;
  border-bottom: 1px solid #cec6b9;
}

nav#footer_migration ul li a:active,
nav#footer_migration ul li a:hover {
  /* hover前の色を明度-5 */
  background-color: #E8E4DF;
}

#footer_migration ul li a:after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: url(/ui/utility/common/svg/iconAP_arrow_right_white.svg) #756447 4px center/12px no-repeat;
}

#footer_migration .beginner a {
  font-weight: bold;
  padding-left: 46px;
  position: relative;
}

#footer_migration .beginner a::before {
  content: "";
  width: 20px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  background: url(/ui/utility/common/svg/iconI_beginner.svg) center/20px no-repeat;
}

#footer_migration ul li a span.badge {
  position: absolute;
  text-align: center;
}

#footer_migration ul li.save a span.badge {
  top: 13px;
  left: 152px;
}

#footer_migration ul li.fav a span.badge {
  top: 13px;
  left: 95px;
}

#footer_migration ul li.his a span.badge {
  top: 13px;
  left: 83px;
}

/*計測タグの高さをなくす*/
iframe[name=google_conversion_frame] {
  position: absolute;
  top: 0;
}

/* //////////////////////////////////////////////////
[2014-2015年末年始のお知らせ]
////////////////////////////////////////////////// */
#holidayClsNtc {
  margin: 0;
  background-color: #FFFAC0;
}

#holidayClsNtc a {
  text-align: center;
  display: block;
  width: 100%;
  line-height: 30px;
  color: #1F7AEE;
  text-decoration: underline;
}

#holidayClsNtc a:hover,
#holidayClsNtc a:visited {
  color: #1F7AEE;
}

#holidayClsNtc a span {
  display: inline-block;
  background: url(/ui/chintai/sp/images/common/icn_hc_ntc.png) no-repeat 2px 5px;
  background-size: 20px;
  padding-left: 26px;
  margin: 0 auto;
  font-weight: bold;
  font-size: 12px;
}

#town #holidayClsNtc {
  display: none;
}

#town.top #holidayClsNtc {
  display: block;
}

/* //////////////////////////////////////////////////
[擬似セレクトボックス]
////////////////////////////////////////////////// */
.s2s {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 120;
  display: table;
}

.s2s:not(.multiple) .s2sTail {
  display: none;
}

.s2s .s2sContentWrapper {
  display: table-cell;
  width: 100%;
  height: inherit;
  vertical-align: middle;
}

.s2s .s2sContent {
  position: relative;
  width: 90%;
  max-height: 94vh;
  border-radius: 4px;
  margin: 0 auto;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.s2s .s2sHead {
  display: none;
}

.s2s .s2sBody {
  background: #fff;
  box-sizing: border-box;
}

.s2s .s2sList dt {
  background: #ff6a30;
  color: #fff;
  padding: 6px 14px;
}

.s2s .s2sList dd {
  position: relative;
  border-top: 1px solid #ccc;
}

.s2s .s2sList dd.active span {
  font-weight: bold;
}

.s2s .s2sList dd:first-child,
.s2s .s2sList dt + dd {
  border-top: none;
}

.s2s .s2sList dd label {
  display: block;
  padding: 14px 40px 14px 14px;
}

.s2s .s2sList dd input {
  -webkit-appearance: none;
  position: absolute;
  top: 16px;
  right: 14px;
  width: 20px;
  height: 20px;
  margin-right: 0;
  border: 1px solid #ccc;
  outline: none;
}

.s2s .s2sList dd input[type=radio] {
  border-radius: 50%;
  background: #ccc;
  box-shadow: 0 0 0 4px #fff inset;
}

.s2s .s2sList dd input[type=radio]:checked {
  background: #ff6a30;
}

/* マルチプルセレクト */
.s2s .s2sList dd input[type=checkbox] {
  background-image: url(/ui/utility/common/svg/iconI_checkbox.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  border-radius: 2px;
}

.s2s .s2sList dd input[type=checkbox]:checked {
  background-image: url(/ui/utility/common/svg/iconI_checkbox_checked.svg);
}

.s2s.multiple .s2sTail {
  position: sticky;
  position: -webkit-sticky;
  /* Safari */
  bottom: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #ccc;
  border-radius: 0 0 5px 5px;
  z-index: 100;
}

.s2s.multiple .s2sControl {
  padding: 10px;
  box-sizing: border-box;
  overflow: hidden;
}

.s2s.multiple .s2sControl .ui-btn-common {
  float: left;
  width: 48%;
}

.s2s.multiple .s2sControl .s2sDecide {
  margin-right: 2%;
  color: #ff6a30;
}

.s2s.multiple .s2sControl .s2sCancel {
  margin-left: 2%;
}

/* //////////////////////////////////////////////////
ネットワーク広告タグ位置調整
////////////////////////////////////////////////// */
#div-gpt-ad-under_center {
  margin: 20px auto;
}

/* //////////////////////////////////////////////////
新着アラート
////////////////////////////////////////////////// */
.new-alert {
  background-color: #FFFDE7;
  position: relative;
  text-align: left;
}

.new-alert a {
  display: block;
  padding: 5px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.new-alert a.icon-notice {
  background-image: url(/ui/utility/common/svg/iconI_notice_orange.svg);
  background-position: 7px 50%;
  background-size: 21px;
  padding-left: 37px;
  padding-right: 30px;
  background-repeat: no-repeat;
}

.new-alert a.icon-notice:after {
  content: " ";
  position: absolute;
  width: 18px;
  height: 18px;
  right: 10px;
  top: 50%;
  background: url(/ui/utility/common/svg/iconAS_arrowThin_right_orange.svg) center center/18px no-repeat;
  transform: translateY(-50%);
}

.new-alert a.icon-notice .is-bold {
  font-weight: bold;
}

.new-alert a.icon-notice .is-bold.num {
  color: #ff6a30;
}

@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-animation-right-to-left {
  opacity: 0;
  transform: translateX(50px);
  transition: 0.6s;
}
.c-animation-right-to-left.is-show {
  opacity: 1;
  transform: translateY(0);
}

.c-animation-left-to-right {
  opacity: 0;
  transform: translateX(-50px);
  transition: 0.6s;
}
.c-animation-left-to-right.is-show {
  opacity: 1;
  transform: translateY(0);
}

.c-select-wrapper {
  position: relative;
}
.c-select-wrapper::after {
  content: "\e94a";
  font-family: "sumaity-icons";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 6px;
  font-size: 24px;
  color: #767676;
  pointer-events: none;
  width: 24px;
  height: 24px;
  z-index: 1;
  line-height: 1;
}
.c-select-wrapper.is-complete .c-select {
  background-color: #FFFFFF;
  padding: 8px 60px 8px 10px;
}
.c-select-wrapper.is-complete::before {
  content: "\e960";
  font-family: "sumaity-icons";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  font-size: 24px;
  width: 24px;
  height: 24px;
  color: #6FBF08;
  z-index: 1;
  line-height: 1;
  pointer-events: none;
}
.c-select-wrapper.is-error .c-select {
  background-color: #FFFFFF;
  border-color: #E51515;
}
.c-select-wrapper:has(:disabled)::after {
  opacity: 0.3;
}

.c-select {
  color: #1B1B1B;
  border: solid 1px #767676;
  border-radius: 4px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.c-select.--md {
  min-height: 44px;
  padding: 8px 10px;
}
.c-select:disabled {
  pointer-events: none !important;
  background-color: #FFFFFF !important;
  opacity: 0.3;
}

.c-textarea {
  color: #1B1B1B;
  border: solid 1px #767676;
  border-radius: 4px;
}

.c-form-item-title {
  font-weight: bold;
  color: #1B1B1B;
  font-size: 15px;
  display: block;
  pointer-events: none;
}
.c-form-item-title__status {
  display: inline-block;
  font-size: 12px;
  padding: 4px;
  line-height: 1;
  border-radius: 2px;
  margin-left: 4px;
}
.c-form-item-title__status.--required {
  background-color: #E51515;
  color: #FFFFFF;
}
.c-form-item-title__status.--optional {
  color: #494949;
  background-color: #E9E9E9;
}
.c-form-item-title__sub {
  font-size: 14px;
}

.c-form-item-hint {
  font-size: 13px;
  color: #494949;
}

.c-form-item-error {
  position: relative;
  display: flex;
  gap: 2px;
  min-height: 20px;
  margin-top: 4px;
  font-size: 14px;
  color: #E51515;
}
.c-form-item-error i[class^=c-icon] {
  font-size: 20px;
}
.c-form-item-error i[class^=c-icon]::after {
  font-size: 20px;
}

.c-chatform-radio-list {
  display: flex;
  gap: 8px;
}
.c-chatform-radio-list.--columns {
  flex-wrap: wrap;
}
.c-chatform-radio-list.--columns .c-chatform-radio-list__item {
  width: calc(50% - 4px);
}
.c-chatform-radio-list.--responsive-columns {
  flex-direction: column;
}
.c-chatform-radio-list.--responsive-row {
  flex-direction: column;
}
.c-chatform-radio-list__item {
  width: 100%;
}

.c-chatform-radio-label {
  width: 100%;
  min-height: 44px;
  display: inline-block;
  padding: 8px 8px 8px 34px;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  border-radius: 4px;
  box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.15);
  border: 1px solid #767676;
  box-sizing: border-box;
  color: #1B1B1B;
  background: #FFFBD8;
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s, border 0s;
  position: relative;
  cursor: pointer;
}
.c-chatform-radio-label::before, .c-chatform-radio-label::after {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8px;
  padding: 4px;
  box-sizing: border-box;
  border-radius: 50%;
}
.c-chatform-radio-label::before {
  border: 1px solid #767676;
  z-index: 1;
}
.c-chatform-radio-label::after {
  background-color: #FFFFFF;
}
.c-chatform-radio-label:has(:checked)::before {
  border-color: #FF9300;
  background-color: #FF9300;
  background-clip: content-box;
}
.c-chatform-radio-label.is-complete {
  background-color: #FFFFFF;
}
.c-chatform-radio-label:has(:checked), .c-chatform-radio-label:hover {
  border: 2px solid #FF9300;
  box-shadow: none;
  background-color: #FFF4E6;
  box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.15);
}
.c-chatform-radio-label:has(:disabled) {
  opacity: 0.3;
}
.c-chatform-radio-label__text {
  line-height: 1.2;
}
.c-chatform-radio-label__img {
  width: 56px;
  display: flex;
  justify-content: center;
}
.c-chatform-radio-label.--img {
  height: 52px;
}
.c-chatform-radio-label.--img .c-chatform-radio-label__text {
  padding-left: 6px;
}

.c-chatform-radio-list-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.c-chatform-radio-list-text.--row {
  flex-direction: row;
  gap: 8px;
}
.c-chatform-radio-list-text__item {
  display: flex;
  gap: 4px;
}
.c-chatform-radio-list-text__item .c-radio-label {
  position: relative;
  cursor: pointer;
  padding-left: 24px;
  color: #1B1B1B;
  font-size: 15px;
}
.c-chatform-radio-list-text__item .c-radio-label::before, .c-chatform-radio-list-text__item .c-radio-label::after {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  padding: 4px;
  box-sizing: border-box;
  border-radius: 50%;
}
.c-chatform-radio-list-text__item .c-radio-label::before {
  border: 1px solid #767676;
  z-index: 1;
}
.c-chatform-radio-list-text__item .c-radio-label::after {
  background-color: #FFFFFF;
}
.c-chatform-radio-list-text__item .c-radio-label:has(:checked)::before {
  border-color: #FF9300;
  background-color: #FF9300;
  background-clip: content-box;
}

@media screen and (min-width: 780px) {
  .c-chatform-radio-label.--img {
    height: 60px;
  }
}
.c-chatform-checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.c-chatform-checkbox-list.--columns {
  flex-wrap: wrap;
  flex-direction: row;
}
.c-chatform-checkbox-list.--columns .c-chatform-checkbox-list__item {
  width: calc(50% - 4px);
}
.c-chatform-checkbox-list__item {
  width: 100%;
}

.c-chatform-checkbox-label {
  width: 100%;
  height: 44px;
  display: inline-block;
  padding: 6px 8px;
  gap: 6px;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  border-radius: 4px;
  box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.15);
  border: 1px solid #767676;
  box-sizing: border-box;
  background-color: #FFFBD8;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: box-shadow 0.3s, border 0s;
}
.c-chatform-checkbox-label.is-complete {
  background-color: #FFFFFF;
}
.c-chatform-checkbox-label:has(:checked) {
  border: 2px solid #FF9300;
  box-shadow: none;
  background-color: #FFF4E6;
  box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.15);
}
.c-chatform-checkbox-label__text {
  line-height: 1.2;
}

.c-chatform-input-list {
  display: flex;
  gap: 8px;
}
.c-chatform-input-list__item {
  width: 100%;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 780px) {
  .c-chatform-input-list {
    gap: 10px;
  }
}
.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;
  }
}
.pc-hidden {
  display: block;
}

.p-sell-chatform {
  background-color: #F4F4F4 !important;
  background-image: url(/ui/sell/common/images/chatform/bg_cityscape.png);
  background-position: center bottom -10px;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 2110px;
  min-height: 100vh;
  overflow-x: hidden;
}
.p-sell-chatform__inner {
  padding: 0 16px 24px;
}
.p-sell-chatform .c-button.--more {
  font-size: 13px;
  font-weight: bold;
  pointer-events: none;
}
.p-sell-chatform .c-button.--more::after {
  font-size: 22px;
  font-weight: normal;
}
.p-sell-chatform .c-heading-md {
  margin: 30px auto 12px;
}
.p-sell-chatform .c-input {
  color: #1B1B1B;
  border: solid 1px #767676;
  border-radius: 4px;
  box-sizing: border-box;
  border-width: 2px;
}
.p-sell-chatform .c-input.--md {
  padding: 8px 10px;
  min-height: 44px;
  width: 100%;
}
.p-sell-chatform .c-input[type=number] {
  -moz-appearance: textfield;
}
.p-sell-chatform .c-input[type=number]::-webkit-inner-spin-button, .p-sell-chatform .c-input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.p-sell-chatform .c-input.--md {
  background-color: #FFFBD8;
  font-size: 16px;
}
.p-sell-chatform .c-input.--md:disabled {
  pointer-events: none !important;
  background-color: #FFFFFF !important;
  opacity: 0.3;
}
.p-sell-chatform .c-input.--md:-webkit-autofill {
  box-shadow: 0 0 0 1000px #FFFFFF inset;
}
.p-sell-chatform .c-input-wrapper.is-complete {
  position: relative;
}
.p-sell-chatform .c-input-wrapper.is-complete::before {
  content: "\e960";
  font-family: "sumaity-icons";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  font-size: 24px;
  width: 24px;
  height: 24px;
  z-index: 1;
  line-height: 1;
  color: #6FBF08;
}
.p-sell-chatform .c-input-wrapper.is-complete:has(:disabled)::before {
  content: "";
}
.p-sell-chatform .c-input-wrapper.is-complete .c-input {
  background-color: #FFFFFF;
  padding: 8px 38px 8px 10px;
}
.p-sell-chatform .c-input-wrapper.is-disabled {
  transition: unset;
  background: #E9E9E9;
  cursor: default;
}
.p-sell-chatform .c-input-wrapper.is-error .c-input {
  background-color: #FFFFFF;
  border-color: #E51515;
}
.p-sell-chatform .c-select {
  background-color: #FFFBD8;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 16px;
  border-width: 2px;
}
.p-sell-chatform .c-radio[type=radio] {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
}
.p-sell-chatform .c-textarea {
  padding: 8px 10px;
  width: 100%;
  box-sizing: border-box;
  resize: vertical;
  font-size: 16px;
  background-color: #FFFBD8;
  border-width: 2px;
}
.p-sell-chatform .c-chatform-radio-label,
.p-sell-chatform .c-chatform-checkbox-label {
  border-width: 2px;
}
.p-sell-chatform .c-form-item-title {
  margin-bottom: 6px;
  line-height: 1.4;
}
.p-sell-chatform .c-form-item-error {
  margin-top: 4px;
}
.p-sell-chatform .c-form-item-hint {
  margin-bottom: 4px;
}
.p-sell-chatform .p-sell-chatform-block {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.p-sell-chatform .p-sell-chatform-block:has(.c-search__suggest-link) {
  z-index: 10;
}
.p-sell-chatform .p-sell-chatform-block:has(.c-search__suggest-link) .p-sell-chatform-answer__item {
  position: relative;
  min-height: 71.5px;
}
.p-sell-chatform .p-sell-chatform-block:has(.c-search__suggest-link) .p-sell-chatform-answer__item .c-search-box {
  position: absolute;
  width: 100%;
  z-index: 2;
}
.p-sell-chatform .p-sell-chatform-block:has(.c-search__suggest-link) .sumaityfws {
  display: block;
  position: relative;
  z-index: 10;
}
.p-sell-chatform .p-sell-chatform-block .c-animation-left-to-right {
  padding-top: 16px;
}
.p-sell-chatform .p-sell-chatform-block:first-child .c-animation-left-to-right {
  padding-top: 24px;
}
.p-sell-chatform .c-search-box {
  overflow: hidden;
  border: 2px solid #767676;
  border-radius: 4px;
}
.p-sell-chatform .c-search-box:focus-within {
  outline: 2px solid #1B1B1B;
  utline-offset: 0;
}
.p-sell-chatform .c-search-inner {
  height: 40px;
}
.p-sell-chatform .c-search-inner:has(.c-search-freeword-textarea.is-disabled)::before {
  filter: saturate(0%);
}
.p-sell-chatform .c-search-inner .c-search-freeword-textarea {
  height: 40px;
  padding: 8px 10px 8px 36px;
}
.p-sell-chatform .c-search-inner .c-search-freeword-textarea.is-disabled {
  transition: unset;
  background-color: #E9E9E9;
  opacity: 0.5;
  cursor: default;
}
.p-sell-chatform .c-search__suggest {
  overflow-y: auto;
  max-height: 320px;
}
.p-sell-chatform .c-search__suggest-item.--error span {
  border-radius: 0;
}
.p-sell-chatform .c-search__suggest-link {
  flex-wrap: wrap;
  min-height: 44px;
  padding: 8px 8px 4px 36px;
  gap: 4px 8px;
}
.p-sell-chatform .c-search__suggest-link-postal {
  flex: 0 0 auto;
  font-size: 13px;
  line-height: 1;
}
.p-sell-chatform .c-search__suggest-link-postal b {
  padding: 4px 0;
  background-color: #FFF4E6;
}
.p-sell-chatform .c-search__suggest-link-prefecture {
  flex: 1 1 auto;
  font-size: 13px;
  line-height: 1;
}
.p-sell-chatform .c-search__suggest-link-address {
  flex: 0 0 100%;
  font-size: 14px;
}
.p-sell-chatform .c-chatform-input-list__item .c-button.--md {
  min-height: 44px;
}
.p-sell-chatform .c-chatform-input-list__item .c-button.--border {
  font-weight: bold;
  box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.15);
  border-color: #767676;
  border-width: 2px;
  border-bottom: 2px solid #767676;
}
.p-sell-chatform .c-animation-left-to-right:has(+ .c-animation-left-to-right) .p-sell-chatform-operator__img {
  height: 0;
  overflow: visible;
}
.p-sell-chatform .c-animation-left-to-right + .c-animation-left-to-right {
  padding-top: 0 !important;
}

.p-sell-chatform-input-flex {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}
.p-sell-chatform-input-flex__text {
  font-size: 15px;
  color: #1B1B1B;
}

.p-sell-chatform-error-text {
  color: #E51515;
  font-size: 14px;
  padding: 10px;
  background-color: #FFFFFF;
  border: 1px solid #E51515;
  border-radius: 2px;
  margin-bottom: 12px;
}

.p-sell-chatform-selling-point {
  display: none;
}

.p-sell-chatform-header {
  position: relative;
  height: 54px;
  box-sizing: border-box;
}
.p-sell-chatform-header__sub {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100px;
  color: #1B1B1B;
  font-weight: bold;
}
.p-sell-chatform-header__sub-text {
  font-size: 12px;
  background-color: #FFF4E6;
  padding: 8px 6px;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  gap: 4px;
}
.p-sell-chatform-header__sub-text em {
  background-color: #FF9300;
  color: #FFFFFF;
  font-size: 11px;
  display: flex;
  align-items: center;
  padding: 2px 4px;
  border-radius: 2px;
}
.p-sell-chatform-header__img {
  position: absolute;
  right: 10px;
  width: 90px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  align-items: center;
  gap: 1px;
}
.p-sell-chatform-header__img img {
  width: 80px;
}
.p-sell-chatform-header__img-note {
  font-size: 6px;
  color: #767676;
}

.c-fixed-bottom-wrapper .p-sell-chatform-policy,
.c-fixed-bottom-wrapper a {
  margin-bottom: 4px;
  color: #FFFFFF;
}
.c-fixed-bottom-wrapper .p-sell-chatform-policy:visited, .c-fixed-bottom-wrapper .p-sell-chatform-policy:link,
.c-fixed-bottom-wrapper a:visited,
.c-fixed-bottom-wrapper a:link {
  color: #FFFFFF;
}
.c-fixed-bottom-wrapper.is-open {
  position: sticky;
}

@media screen and (min-width: 780px) {
  #globalHeader {
    position: static;
    height: 68px;
    padding: 0 calc((100% - 960px) / 2);
    border-top: solid 3px #FF9300;
    border-bottom: solid 1px #D1D1D1;
    background: none;
    margin-bottom: 0;
    box-sizing: border-box;
  }
  #globalHeader #logo {
    width: 122px;
    padding: 10px 0;
  }
  #globalHeader #logo a {
    height: 42px;
  }
  #globalHeader #logo img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 122px;
  }
  .pc-hidden {
    display: none;
  }
  .p-sell-chatform {
    background-position: center bottom 0px;
    padding-bottom: 20px;
  }
  .p-sell-chatform__inner {
    width: 680px;
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
  }
  .p-sell-chatform .c-chatform-input-list__item .c-button.--md {
    width: 60%;
  }
  .c-form-item-title {
    margin-bottom: 8px;
  }
  .c-chatform-radio-label,
  .c-chatform-checkbox-label {
    height: 52px;
  }
  .c-chatform-radio-list,
  .c-chatform-checkbox-list {
    gap: 10px;
  }
  .c-chatform-radio-list.--columns .c-chatform-radio-list__item,
  .c-chatform-checkbox-list.--columns .c-chatform-checkbox-list__item {
    width: calc(50% - 5px);
  }
  .c-chatform-radio-list.--responsive-columns {
    flex-wrap: wrap;
    flex-direction: row !important;
  }
  .c-chatform-radio-list.--responsive-columns .c-chatform-radio-list__item {
    width: calc(50% - 5px);
  }
  .c-chatform-radio-list.--responsive-row {
    flex-direction: row;
  }
  #footer {
    padding: 16px 0;
    font-size: 12px;
    background: #333;
    color: #FFFFFF;
  }
  #footer ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 10px 40px;
  }
  #footer ul li {
    text-align: center;
    padding: 0 8px;
    margin: 4px 0;
  }
  #footer ul li a {
    color: #FFFFFF;
  }
  #footer address {
    font-style: normal;
    background: none;
    height: auto;
    line-height: 1.2;
  }
  .p-sell-chatform-error-text {
    text-align: center;
    width: 100%;
    margin-bottom: 16px;
    box-sizing: border-box;
  }
  .p-sell-chatform-block:first-child .c-chatform-radio-list__item:first-child .c-chatform-radio-label.--img .c-chatform-radio-label__img {
    width: 33px;
  }
  .p-sell-chatform .c-button.--more {
    font-size: 14px;
  }
  .p-sell-chatform-selling-point {
    position: fixed;
    display: flex;
    flex-direction: column;
    top: -27px;
    margin-left: -200px;
    z-index: 1;
  }
  .p-sell-chatform-selling-point__logo-link {
    margin-bottom: -8px;
  }
  .p-sell-chatform-selling-point__img {
    margin-bottom: 12px;
  }
  .p-sell-chatform-header {
    height: 68px;
    box-sizing: border-box;
  }
  .p-sell-chatform-header #logo {
    display: none !important;
  }
  .p-sell-chatform-header__sub {
    width: 680px;
    margin: 0 auto;
    position: unset;
    transform: unset;
    margin-top: 10px;
  }
  .p-sell-chatform-header__sub-text {
    font-size: 17px;
    display: flex;
    gap: 6px;
    margin-left: -56px;
    padding: 6px;
  }
  .p-sell-chatform-header__sub-text em {
    font-size: 15px;
  }
  .c-fixed-bottom-wrapper .p-sell-chatform-button {
    margin: 0 auto;
  }
}
.p-sell-chatform-answer {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  display: flex !important;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.p-sell-chatform-answer::before, .p-sell-chatform-answer::after {
  left: 100%;
  top: 22px;
  border: solid transparent;
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  pointer-events: none;
}
.p-sell-chatform-answer::before {
  border-color: rgba(255, 255, 255, 0);
  border-left-color: #FFFFFF;
  border-width: 9px;
  margin-top: -9px;
}
.p-sell-chatform-answer::after {
  border-color: rgba(255, 255, 255, 0);
  border-left-color: #FFFFFF;
  border-width: 6px;
  margin-top: -6px;
}
.p-sell-chatform-answer__item:has(.--optional) .c-input, .p-sell-chatform-answer__item:has(.--optional) .c-select, .p-sell-chatform-answer__item:has(.--optional) .c-textarea, .p-sell-chatform-answer__item:has(.--optional) .c-chatform-radio-label, .p-sell-chatform-answer__item:has(.--optional) .c-chatform-checkbox-label {
  background-color: #FFFFFF;
}

@media screen and (min-width: 780px) {
  .p-sell-chatform-answer {
    padding: 30px 36px;
    gap: 30px;
  }
}
.p-sell-chatform-button-wrap {
  margin: 40px auto 24px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.p-sell-chatform-button-wrap .p-sell-chatform-policy {
  margin: 12px 0;
  display: block;
}

.p-sell-chatform-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  box-sizing: border-box;
  width: 100%;
  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;
}
.p-sell-chatform-button:disabled {
  background-color: #E9E9E9 !important;
  color: #A4A4A4 !important;
  box-shadow: 0 2px 0 #D1D1D1 !important;
  cursor: default;
  pointer-events: none;
}
.p-sell-chatform-button.--primary {
  min-height: 52px;
  background-color: #FF7171;
  color: #FFFFFF;
  box-shadow: 0 2px 0 #B33333;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  opacity: 0;
  transition: 0.3s;
}
.p-sell-chatform-button.--primary.is-show {
  opacity: 1;
  display: flex !important;
}
.p-sell-chatform-button.--caret-right::after {
  content: "\e949";
  font-family: "sumaity-icons";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  font-size: 24px;
  font-weight: normal;
}
.p-sell-chatform-button.--primary:hover {
  background-color: #E56666;
}
.p-sell-chatform-button.--primary__balloon {
  color: #FF7171;
  border: 2px solid #FF7171;
  background-color: #FFFFFF;
  font-size: 13px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -15px;
  width: -moz-max-content;
  width: max-content;
  border-radius: 100px;
  padding: 4px 6px;
  line-height: 1;
}
.p-sell-chatform-button:has(.p-sell-chatform-button__balloon) {
  margin-top: 16px;
}
.p-sell-chatform-button.--secondary {
  min-height: 44px;
  background-color: #FFFFFF;
  border: 2px solid #FF7171;
  color: #FF7171;
  font-size: 15px;
  font-weight: bold;
  position: relative;
}
.p-sell-chatform-button.--secondary.--caret-down::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "\e94a";
  font-family: "sumaity-icons";
  right: 12px;
  font-size: 24px;
  font-weight: normal;
  transition: 0.3s;
}
.p-sell-chatform-button.--secondary:hover {
  background-color: #F4F4F4;
}
.p-sell-chatform-button.--tertiary {
  min-height: 44px;
  background-color: #FFFFFF;
  border: 1px solid #A4A4A4;
  color: #1B1B1B;
  font-size: 15px;
  font-weight: bold;
  position: relative;
}
.p-sell-chatform-button.--tertiary:hover {
  background-color: #F4F4F4;
}

@media screen and (min-width: 780px) {
  .p-sell-chatform-button {
    width: 360px;
  }
}
.p-sell-chatform-company {
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.p-sell-chatform-company__item {
  background-color: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0 2px 0 #D1D1D1;
  box-sizing: border-box;
  border: 1px solid #D1D1D1;
}
.p-sell-chatform-company__item:has(:checked) {
  border: 2px solid #FF9300;
}
.p-sell-chatform-company + .p-sell-chatform-error-text {
  margin-top: 20px;
}

.p-sell-chatform-company-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-bottom: 1px dashed #D1D1D1;
}
.p-sell-chatform-company-header__checkbox {
  width: 20px;
  height: 20px;
}
.p-sell-chatform-company-header__text {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.p-sell-chatform-company-body {
  display: flex;
  padding: 12px;
  gap: 6px;
}
.p-sell-chatform-company-body__detail {
  position: relative;
  height: 60px;
  overflow: hidden;
}
.p-sell-chatform-company-body__detail[open] {
  height: auto;
  pointer-events: none;
}
.p-sell-chatform-company-body__detail[open] .p-sell-chatform-company-body__showmore {
  display: none;
}
.p-sell-chatform-company-body__summary {
  font-size: 13px;
  color: #494949;
  text-align: left;
  display: block;
}
.p-sell-chatform-company-body__summary::-webkit-details-marker {
  display: none;
}
.p-sell-chatform-company-body__showmore {
  position: absolute;
  right: 0;
  bottom: -4px;
  padding: 2px 8px 2px 64px;
  background: linear-gradient(270deg, #FFFFFF 60%, rgba(255, 255, 255, 0.1) 100%);
  font-weight: 600;
  color: #1F7AEE;
  z-index: 1;
}
.p-sell-chatform-company-body__img {
  width: 86px;
  display: flex;
  align-items: center;
}

@media screen and (min-width: 780px) {
  .p-sell-chatform-company-body__showmore {
    display: none;
  }
  .p-sell-chatform-company__item:hover {
    background-color: #FFF4E6;
  }
}
.p-sell-chatform-complete {
  background-color: #F4F4F4 !important;
  padding: 20px 16px;
}

.p-sell-chatform-complete-note {
  background-color: #FFFFFF;
  border-radius: 2px;
  padding: 20px;
}
.p-sell-chatform-complete-note__title {
  color: #FF9300;
  font-weight: bold;
  text-align: center;
  font-size: 16px;
  margin-bottom: 16px;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.p-sell-chatform-complete-note__text {
  text-align: left;
  color: #1B1B1B;
  font-size: 13px;
  margin: 20px auto 12px;
}
.p-sell-chatform-complete-note__text:last-child {
  margin-bottom: 0;
}
.p-sell-chatform-complete-note__step {
  text-align: left;
  color: #1B1B1B;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  margin: 20px auto 12px;
}
.p-sell-chatform-complete-note__step em {
  position: relative;
  display: inline-block;
  width: 20px;
  margin-right: 8px;
  padding: 6px 4px;
  border-radius: 2px;
  background-color: #FF9300;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
.p-sell-chatform-complete-note__step em::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-bottom: 5px solid transparent;
  border-left: 5px solid #FF9300;
  border-top: 5px solid transparent;
  height: 0;
  width: 0;
}
.p-sell-chatform-complete-note hr {
  border: none;
  border-top: 1px solid #D1D1D1;
  margin: 20px 0;
}
.p-sell-chatform-complete-note__phone {
  text-align: left;
  color: #1B1B1B;
  font-size: 13px;
  padding: 12px 16px;
  margin: 20px auto 12px;
  border-radius: 4px;
  border: 1px solid #D1D1D1;
}
.p-sell-chatform-complete-note__guide {
  background: #FFEDED;
  font-size: 13px;
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.p-sell-chatform-complete-note__link {
  color: #1F7AEE;
  text-decoration: underline;
  font-size: 13px;
}
.p-sell-chatform-complete-note__link:visited, .p-sell-chatform-complete-note__link:link {
  color: #1F7AEE;
  text-decoration: underline;
  font-size: 13px;
}
.p-sell-chatform-complete-note__link:hover {
  text-decoration: none;
}

.p-sell-chatform-complete .p-sell-chatform-table th, .p-sell-chatform-complete .p-sell-chatform-table td {
  background-color: #FFF4E6;
}
.p-sell-chatform-complete .p-sell-chatform-table tr {
  display: flex;
  flex-direction: column;
  border-color: #FFDFB3;
}
.p-sell-chatform-complete .p-sell-chatform-table tr:last-child {
  border: none;
}
.p-sell-chatform-complete .p-sell-chatform-table th {
  width: 100%;
  padding: 4px 10px;
  border-radius: 4px 4px 0 0 !important;
  background-color: #FFDFB3;
}
.p-sell-chatform-complete .p-sell-chatform-table td {
  border-radius: 0 0 4px 4px !important;
}

@media screen and (min-width: 780px) {
  .p-sell-chatform-complete {
    padding: 32px 0;
  }
  .p-sell-chatform-complete__inner {
    width: 680px;
    margin: 0 auto;
    padding: 0 16px;
  }
  .p-sell-chatform-complete .p-sell-chatform-table tr {
    display: table-row;
    border-bottom: solid 1px rgba(255, 147, 0, 0.4);
  }
  .p-sell-chatform-complete .p-sell-chatform-table th {
    background-color: #FFDFB3;
    width: 200px;
    padding: 10px 16px;
    border-radius: 4px 0 0 4px !important;
  }
  .p-sell-chatform-complete .p-sell-chatform-table td {
    border-radius: 0 4px 4px 0 !important;
  }
}
.p-sell-chatform-details .c-button.--more::after {
  transform: translateY(-50%);
  transition: 0.3s;
}
.p-sell-chatform-details.is-opened .p-sell-chatform-details__summary {
  margin-bottom: 20px;
}
.p-sell-chatform-details.is-opened .c-button.--more::after {
  transform: translateY(-50%) rotate(-180deg);
}
.p-sell-chatform-details:has(.c-button.--more) + .p-sell-chatform-button-wrap {
  margin: 12px auto 24px;
}
.p-sell-chatform-details__content {
  position: relative;
  overflow: hidden;
  height: auto;
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}
.p-sell-chatform-details__content .p-sell-chatform-table:last-child {
  margin-bottom: 8px;
}
.p-sell-chatform-details:not(.is-opened) > .p-sell-chatform-details__content {
  height: 0;
  opacity: 0;
  margin-top: 0;
  overflow: hidden;
}
.p-sell-chatform-details.is-opened .p-sell-chatform-button.--secondary.--caret-down::after {
  transform: translateY(-50%) rotate(-180deg);
}
.p-sell-chatform-details__summary {
  position: relative;
  display: block;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}
.p-sell-chatform-details__summary::-webkit-details-marker {
  display: none;
}
.p-sell-chatform-details__summary:has(.c-button) {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}
.p-sell-chatform-details__summary:has(.c-button.--more) {
  margin-top: 16px;
}

.p-sell-chatform-modal {
  background-color: rgba(27, 27, 27, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
}
.p-sell-chatform-modal__content {
  background-color: #FFFFFF;
  border-radius: 8px;
  margin: 36px;
  width: 100%;
  padding: 24px;
  text-align: center;
}
.p-sell-chatform-modal__figure {
  margin-top: 24px;
  margin: 12px auto 0;
}
.p-sell-chatform-modal__title {
  font-size: 18px;
  font-weight: bold;
  color: #1B1B1B;
  margin: 24px auto 10px;
}
.p-sell-chatform-modal__text {
  font-size: 13px;
  color: #1B1B1B;
}
.p-sell-chatform-modal__button {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #A4A4A4;
  background-color: transparent;
  text-align: center;
  text-decoration: none !important;
  line-height: 1;
  cursor: pointer;
  vertical-align: middle;
  font-family: inherit;
  color: #1B1B1B;
  font-size: 14px;
  font-weight: bold;
  min-height: 44px;
}

@media screen and (min-width: 780px) {
  .p-sell-chatform-modal__content {
    width: 460px;
  }
}
.p-sell-chatform-note {
  margin-top: 16px;
  color: #494949;
  font-size: 12px;
}
.p-sell-chatform-note__title {
  font-weight: bold;
}
.p-sell-chatform-note__text {
  margin-bottom: 10px;
}
.p-sell-chatform-note__text:last-child {
  margin-bottom: 0;
}

.p-sell-chatform-notice {
  background-color: #FFFFFF;
  padding: 16px;
  text-align: center;
}
.p-sell-chatform-notice__title {
  color: #FF9300;
  font-weight: bold;
  margin-bottom: 8px;
}
.p-sell-chatform-notice__text {
  font-size: 13px;
  color: #1B1B1B;
}
.p-sell-chatform-notice__text em {
  color: #FF9300;
  font-weight: bold;
  text-align: left;
}
.p-sell-chatform-notice__list {
  padding-left: 20px;
  color: #1B1B1B;
  text-align: left;
  font-size: 13px;
}
.p-sell-chatform-notice__list-item {
  margin: 5px 0;
  list-style-type: disc;
  margin-bottom: 5px;
}

.p-sell-chatform-operator {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.p-sell-chatform-operator:not(:has(.p-sell-chatform-operator__img)) {
  margin-left: 76px;
}

.p-sell-chatform-operator__balloon {
  position: relative;
  background-color: #FFFFFF;
  border: 2px solid #D1D1D1;
  border-radius: 12px;
  padding: 12px;
  min-width: 240px;
  box-sizing: border-box;
}
.p-sell-chatform-operator__balloon::before, .p-sell-chatform-operator__balloon::after {
  right: 100%;
  top: 22px;
  border: solid transparent;
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  pointer-events: none;
}
.p-sell-chatform-operator__balloon::before {
  border-color: rgba(209, 209, 209, 0);
  border-right-color: #D1D1D1;
  border-width: 9px;
  margin-top: -9px;
}
.p-sell-chatform-operator__balloon::after {
  border-color: rgba(255, 255, 255, 0);
  border-right-color: #FFFFFF;
  border-width: 6px;
  margin-top: -6px;
}

.p-sell-chatform-operator__balloon-text {
  color: #1B1B1B;
  font-size: 14px;
  text-align: left;
  word-wrap: break-word;
}

.p-sell-chatform-operator__balloon-loading-wrap {
  display: flex;
  height: 24px;
  padding-left: 10px;
  align-items: center;
  justify-content: flex-start;
}

.p-sell-chatform-operator__balloon-loading {
  width: 8px;
  border-radius: 50%;
  aspect-ratio: 1;
  animation: dot-loading 1s infinite linear alternate;
}

@keyframes dot-loading {
  0% {
    box-shadow: 12px 0 #FF9300, -12px 0 #FFDFB3;
    background: #FF9300;
  }
  33% {
    box-shadow: 12px 0 #FF9300, -12px 0 #FFDFB3;
    background: #FFDFB3;
  }
  66% {
    box-shadow: 12px 0 #FFDFB3, -12px 0 #FF9300;
    background: #FFDFB3;
  }
  100% {
    box-shadow: 12px 0 #FFDFB3, -12px 0 #FF9300;
    background: #FF9300;
  }
}
.p-sell-chatform-policy {
  font-size: 13px;
  color: #494949;
}
.p-sell-chatform-policy__link {
  display: inline-block;
  color: #1F7AEE;
  text-decoration: underline;
  font-size: 13px;
}
.p-sell-chatform-policy__link:visited, .p-sell-chatform-policy__link:link {
  color: #1F7AEE;
  text-decoration: underline;
  font-size: 13px;
}
.p-sell-chatform-policy__link:hover {
  text-decoration: none;
}

@media screen and (min-width: 780px) {
  .p-sell-chatform-policy__link {
    display: inline;
  }
}
.p-sell-chatform-table__inner {
  border: none;
}
.p-sell-chatform-table th, .p-sell-chatform-table td {
  background-color: #FFFFFF;
  border: none;
  font-size: 13px;
  box-sizing: border-box;
  padding: 8px 10px;
}
.p-sell-chatform-table th {
  font-weight: bold;
  color: #494949;
  width: 160px;
}
.p-sell-chatform-table td {
  color: #1B1B1B;
  white-space: pre-wrap;
  word-break: break-all;
}
.p-sell-chatform-table tr {
  border-bottom: dashed 1px #E9E9E9;
}
.p-sell-chatform-table tr.is-error th,
.p-sell-chatform-table tr.is-error td {
  color: #E51515;
}
.p-sell-chatform-table tr:last-child {
  border: none;
}
.p-sell-chatform-table tr:first-child > *:first-child {
  border-top-left-radius: 4px;
}
.p-sell-chatform-table tr:first-child > *:last-child {
  border-top-right-radius: 4px;
}
.p-sell-chatform-table tr:last-child > *:first-child {
  border-bottom-left-radius: 4px;
}
.p-sell-chatform-table tr:last-child > *:last-child {
  border-bottom-right-radius: 4px;
}

@media screen and (min-width: 780px) {
  .p-sell-chatform-table__inner {
    border: none;
  }
  .p-sell-chatform-table tr {
    border-bottom: dashed 1px rgba(0, 0, 0, 0.2);
  }
  .p-sell-chatform-table th,
  .p-sell-chatform-table td {
    padding: 10px;
  }
  .p-sell-chatform-table th {
    background-color: #E9E9E9;
    width: 190px;
  }
}
.p-sell-chatform-message {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #83CCE3;
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 16px;
}
.p-sell-chatform-message__img {
  width: 40px;
}
.p-sell-chatform-message__text {
  color: #1B1B1B;
  font-size: 14px;
  font-weight: bold;
  text-align: left;
}

.p-sell-chatform-flow {
  background-color: #FFFFFF;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 8px;
  box-sizing: border-box;
  border-top: 1px solid #FFDFB3;
  border-bottom: 1px solid #FFDFB3;
}
.p-sell-chatform-flow__title {
  color: #1B1B1B;
  font-size: 12px;
  font-weight: bold;
  position: relative;
  text-align: center;
  margin-bottom: 16px;
}
.p-sell-chatform-flow__title::after {
  position: absolute;
  bottom: -6px;
  left: calc(50% - 30px);
  width: 40px;
  height: 2px;
  content: "";
  background: #FFBE66;
}

.p-sell-chatform-flow-list {
  display: flex;
  gap: 6px;
}
.p-sell-chatform-flow-list__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #F4F4F4;
  border-radius: 4px;
  position: relative;
  width: 100%;
  padding: 6px 2px;
  box-sizing: border-box;
}
.p-sell-chatform-flow-list__item::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 17px solid #FFDFB3;
  border-right: 0;
  right: -14px;
  z-index: 1;
}
.p-sell-chatform-flow-list__item:last-child .p-sell-chatform-flow-list__item-img {
  width: 50px;
}
.p-sell-chatform-flow-list__item:last-child .p-sell-chatform-flow-list__item-img img {
  width: 50px;
  margin-top: -3px;
}
.p-sell-chatform-flow-list__item:last-child::after {
  display: none;
}
.p-sell-chatform-flow-list__item:nth-child(3) .p-sell-chatform-flow-list__item-img img {
  width: 38px;
}
.p-sell-chatform-flow-list__item-label {
  background-color: #FF9300;
  color: #FFFFFF;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 300px;
  padding: 2px 6px;
  line-height: 1;
  font-size: 10px;
  font-weight: bold;
}
.p-sell-chatform-flow-list__item-label em {
  padding-left: 2px;
}
.p-sell-chatform-flow-list__item-body {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-sell-chatform-flow-list__item-img {
  width: 36px;
  height: 36px;
  justify-content: center;
  align-items: center;
}
.p-sell-chatform-flow-list__item-img img {
  width: 36px;
}
.p-sell-chatform-flow-list__item-title {
  text-align: center;
  color: #1B1B1B;
  font-size: 10px;
  font-weight: bold;
  margin-top: 4px;
}

@media screen and (min-width: 780px) {
  .p-sell-chatform-flow {
    width: auto;
    margin: 24px 0;
    padding: 12px 20px 16px;
    border-radius: 4px;
    border: 2px solid #FFDFB3;
  }
  .p-sell-chatform-flow__title {
    font-size: 14px;
  }
  .p-sell-chatform-flow-list {
    gap: 8px;
  }
  .p-sell-chatform-flow-list__item {
    padding: 8px 12px;
  }
  .p-sell-chatform-flow-list__item:nth-child(3) .p-sell-chatform-flow-list__item-img {
    margin-left: 0px;
    margin-right: -5px;
  }
  .p-sell-chatform-flow-list__item:nth-child(3) .p-sell-chatform-flow-list__item-title {
    white-space: nowrap;
  }
  .p-sell-chatform-flow-list__item:last-child .p-sell-chatform-flow-list__item-img {
    width: 45px;
    margin-left: -10px;
  }
  .p-sell-chatform-flow-list__item:last-child .p-sell-chatform-flow-list__item-img img {
    width: 50px;
    margin-top: -5px;
  }
  .p-sell-chatform-flow-list__item-body {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 6px;
    margin-top: 18px;
  }
  .p-sell-chatform-flow-list__item-title {
    font-size: 13px;
    margin-top: 0;
  }
}
.p-sell-chatform-progress-message {
  display: flex;
  justify-content: center;
  background-color: #FFF4E6;
  border-radius: 8px;
  padding: 12px;
  position: relative;
}
.p-sell-chatform-progress-message__img {
  width: 70px;
  display: flex;
  position: absolute;
  right: 8px;
  bottom: 0;
}
.p-sell-chatform-progress-message__img img {
  width: 70px;
  height: 66px;
}
.p-sell-chatform-progress-message__text {
  display: flex;
  align-items: baseline;
  color: #494949;
  font-size: 15px;
  padding-right: 40px;
  font-weight: bold;
  text-align: left;
}
.p-sell-chatform-progress-message__text strong {
  font-size: 18px;
  color: #FF9300;
}

@media screen and (min-width: 780px) {
  .p-sell-chatform-progress-message {
    padding: 0;
  }
  .p-sell-chatform-progress-message__inner {
    padding: 12px;
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
  }
  .p-sell-chatform-progress-message__img {
    width: 80px;
    right: -10px;
  }
  .p-sell-chatform-progress-message__img img {
    width: 80px;
    height: 74px;
  }
  .p-sell-chatform-progress-message__text {
    padding-right: 70px;
  }
}
.p-sell-chatform-exit-intent-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
}
.p-sell-chatform-exit-intent-modal::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(27, 27, 27, 0.7);
  z-index: -1;
}
.p-sell-chatform-exit-intent-modal__inner {
  box-sizing: border-box;
  background-color: #FFFFFF;
  margin-left: auto;
  margin-right: auto;
  width: 84vw;
  max-width: 360px;
  border-radius: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-sell-chatform-exit-intent-modal__header {
  display: flex;
  justify-content: space-between;
  background-color: #FFDFB3;
  border-radius: 8px 8px 0 0;
}
.p-sell-chatform-exit-intent-modal__header img {
  padding: 8px 0 8px 8px;
}
.p-sell-chatform-exit-intent-modal__title {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
}
.p-sell-chatform-exit-intent-modal__close {
  position: relative;
}
.p-sell-chatform-exit-intent-modal__close::before {
  position: absolute;
  top: 20px;
  left: -20px;
  transform: translate(-50%, -50%);
  content: "\e932";
  font-family: "sumaity-icons";
  color: #767676;
  font-size: 24px;
  line-height: 1;
}
.p-sell-chatform-exit-intent-modal__content {
  display: flex;
  justify-content: center;
  background-color: #FFDFB3;
}
.p-sell-chatform-exit-intent-modal__button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1000px;
  background-color: #06C755;
  color: #FFFFFF !important;
  text-align: center;
  text-decoration: none !important;
  line-height: 1;
  cursor: pointer;
  vertical-align: middle;
  font-size: 22px;
  font-family: inherit;
  box-sizing: border-box;
  min-height: 60px;
  margin: 22px 16px 10px 16px;
  box-shadow: inset 0 -3px 0 #059441;
  font-weight: bold;
  position: relative;
}
.p-sell-chatform-exit-intent-modal__button::after {
  right: 12px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "\e905";
  font-family: "sumaity-icons";
  font-size: 28px;
  font-weight: normal;
  padding-left: 1px;
  box-sizing: border-box;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #FFFFFF;
  color: #06C755;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 26px;
  text-align: center;
}
.p-sell-chatform-exit-intent-modal__button-subtext {
  position: absolute;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -15px;
  width: -moz-max-content;
  width: max-content;
  padding: 4px 12px;
  border: 2px solid #06C755;
  border-radius: 1000px;
  background: #FFFFFF;
  color: #494949;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
}
.p-sell-chatform-exit-intent-modal__button-subtext span {
  color: #06C755;
}

.u-w10 {
  width: 10%;
}

.u-w20 {
  width: 20%;
}

.u-w30 {
  width: 30%;
}

.u-w40 {
  width: 40%;
}

.u-w50 {
  width: 50%;
}

.u-w60 {
  width: 60%;
}

.u-w70 {
  width: 70%;
}

.u-w80 {
  width: 80%;
}

.u-w90 {
  width: 90%;
}

.u-w100 {
  width: 100%;
}

.u-h50 {
  height: 50px;
}

.u-h100 {
  height: 100px;
}

.u-h150 {
  height: 150px;
}

.u-h200 {
  height: 200px;
}

.u-h250 {
  height: 250px;
}

.u-h300 {
  height: 300px;
}

.u-h350 {
  height: 350px;
}

.u-h400 {
  height: 400px;
}

.u-h450 {
  height: 450px;
}

.u-h500 {
  height: 500px;
}

.u-mb0 {
  margin-bottom: 0px;
}

.u-mb4 {
  margin-bottom: 4px;
}

.u-mb8 {
  margin-bottom: 8px;
}

.u-mb12 {
  margin-bottom: 12px;
}

.u-mb16 {
  margin-bottom: 16px;
}

.u-mb20 {
  margin-bottom: 20px;
}

.u-mb24 {
  margin-bottom: 24px;
}

.u-mb28 {
  margin-bottom: 28px;
}

.u-mb32 {
  margin-bottom: 32px;
}

.u-mb36 {
  margin-bottom: 36px;
}

.u-mb40 {
  margin-bottom: 40px;
}

.u-mt0 {
  margin-top: 0px;
}

.u-mt4 {
  margin-top: 4px;
}

.u-mt8 {
  margin-top: 8px;
}

.u-mt12 {
  margin-top: 12px;
}

.u-mt16 {
  margin-top: 16px;
}

.u-mt20 {
  margin-top: 20px;
}

.u-mt24 {
  margin-top: 24px;
}

.u-mt28 {
  margin-top: 28px;
}

.u-mt32 {
  margin-top: 32px;
}

.u-mt36 {
  margin-top: 36px;
}

.u-mt40 {
  margin-top: 40px;
}

.u-mr0 {
  margin-right: 0px;
}

.u-mr4 {
  margin-right: 4px;
}

.u-mr8 {
  margin-right: 8px;
}

.u-mr12 {
  margin-right: 12px;
}

.u-mr16 {
  margin-right: 16px;
}

.u-mr20 {
  margin-right: 20px;
}

.u-mr24 {
  margin-right: 24px;
}

.u-mr28 {
  margin-right: 28px;
}

.u-mr32 {
  margin-right: 32px;
}

.u-mr36 {
  margin-right: 36px;
}

.u-mr40 {
  margin-right: 40px;
}

.u-ml0 {
  margin-left: 0px;
}

.u-ml4 {
  margin-left: 4px;
}

.u-ml8 {
  margin-left: 8px;
}

.u-ml12 {
  margin-left: 12px;
}

.u-ml16 {
  margin-left: 16px;
}

.u-ml20 {
  margin-left: 20px;
}

.u-ml24 {
  margin-left: 24px;
}

.u-ml28 {
  margin-left: 28px;
}

.u-ml32 {
  margin-left: 32px;
}

.u-ml36 {
  margin-left: 36px;
}

.u-ml40 {
  margin-left: 40px;
}

.u-with-gutter {
  margin-left: 12px !important;
  margin-right: 12px !important;
}

.u-block-center {
  margin: 0 auto;
}

.u-valign-md {
  vertical-align: middle;
}

.u-text-link {
  cursor: pointer;
  text-decoration: underline;
  color: #1F7AEE;
}
.u-text-link:visited {
  color: #1655A7;
}

.u-text-left {
  text-align: left;
}

.u-text-center {
  text-align: center;
}

.u-text-right {
  text-align: right;
}

.u-text-bold {
  font-weight: bold;
}

.u-text-xxs {
  font-size: 12px;
}

.u-text-xs {
  font-size: 13px;
}

.u-text-sm {
  font-size: 14px;
}

.u-text-md {
  font-size: 16px;
}

.u-text-lg {
  font-size: 18px;
}

.u-text-xl {
  font-size: 20px;
}

.u-text-xxl {
  font-size: 24px;
}

.u-text-pre {
  white-space: pre-wrap;
}

.u-color-attention {
  color: #FF4949;
  border-color: #FF4949;
}

.u-sp-show {
  display: none;
}

/* SP */
@media screen and (max-width: 320px) {
  .u-sp-w300 {
    width: 300px;
  }
  .u-sp-w100 {
    width: 100%;
  }
  .u-sp-mb0 {
    margin-bottom: 0;
  }
  .u-sp-pb5 {
    padding-bottom: 5px !important;
  }
  .u-sp-p-def {
    padding: 12px;
  }
  .u-sp-bb1 {
    border-bottom: 1px solid #D1D1D1;
  }
  .u-text-sm {
    font-size: 12px;
  }
  .u-text-md {
    font-size: 13px;
  }
  .u-text-lg {
    font-size: 14px;
  }
  .u-text-xl {
    font-size: 16px;
  }
  .u-text-xxl {
    font-size: 18px;
  }
  .u-sp-show {
    display: block;
  }
  .u-sp-hidden {
    display: none;
  }
}