#content {
  max-width: 1120px;
  margin: 0 auto 40px;
  padding: 40px;
  background-color: #fff;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#content table th,
#content table td {
  text-align: center;
  padding: 10px;
  border-top: 1px solid #ddd;
}
#content table th.wide,
#content table td.wide {
  display: none;
}
#content table th {
  color: #555;
  padding: 5px 10px;
  background: #f5f5f5;
}
#content table tr:first-child th,
#content table tr:first-child td {
  border-top: none;
}
#searchbox {
  width: 220px;
}
@media (max-width: 768px) {
  #searchbox {
    display: none;
  }
}
#searchbox section {
  margin-bottom: 10px;
  border: 1px solid #cccccc;
}
#searchbox section .title {
  padding: 10px 5px;
  background-color: #eee;
  font-weight: bold;
  text-align: center;
  font-size: 1.6rem;
  color: #555;
}
#searchbox section > .content {
  padding: 10px;
  font-size: 1.2rem;
  position:relative;
}
#searchbox section > .content > dl > dt {
  padding-left: 4px;
}
#searchbox section > .content > dl > dd {
  padding-top: 5px;
  padding-left: 15px;
}

.change a{
    position:absolute;
    border-radius: 20px;		/* CSS3草案 */
    -webkit-border-radius: 20px;	/* Safari,Google Chrome用 */
    -moz-border-radius: 20px;	/* Firefox用 */
    border: 1px solid #999;
    background-color: #F8F8F8;
    width: 50px;
    padding-top: 2px;
    padding-right: 5px;
    padding-bottom: 2px;
    padding-left: 5px;
    left: 153px;
    bottom: 8px;
    text-align: center;
    font-size: 10px;
}
#searchbox .block {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
}
#searchbox .block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
#searchbox .block .label {
  padding-bottom: 10px;
  font-weight: bold;
  font-size: 1.4rem;
}
#searchbox .block > .content {
  font-size: 1.2rem;
}
#searchbox .block > .content > ul > li label {
  display: inline-block;
  width: calc(50% - 35px);
}
#searchbox .block > .content > ul > li label:first-of-type:last-of-type {
  width: auto;
}
#searchbox .block > .content > ul > li select:first-child {
  margin-top: 10px;
}
#searchbox .block > .content > ul > li select:last-child {
  margin-bottom: 10px;
}
.search_btn {
  width: 200px;
  height: 45px;
  margin-top: 18px;
  background-color: #555;
  border-radius: 3px;
  border: none;
  line-height: 45px;
  color: #fff;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: bold;
  font-family: 'NotoSansCJKjp-Regular', Arial, sans-serif;
}
.search_btn:hover {
  text-decoration: underline;
}
.search_btn:before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  margin-left: -4px;
  vertical-align: -2px;
  background-image: url(/images/common/icon_search.png);
}
#searchbox .savebtn a {
  display: inline-block;
  width: 200px;
  height: 45px;
  border-radius: 3px;
  background-color: #6d77ad;
  line-height: 45px;
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
}
#searchbox .savebtn a:before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 21px;
  margin-right: 5px;
  vertical-align: -4px;
  background-image: url(/images/common/icon_list_mini.png);
}
#mainArea {
  width: 780px;
}
@media (max-width: 768px) {
  #mainArea {
    width: auto;
  }
}
#mainArea .pagetitle {
  margin-bottom: 16px;
  font-size: 3.0rem;
  font-weight: bold;
  line-height: 1.2;
}
@media (max-width: 768px) {
  #mainArea .pagetitle {
    font-size: 1.8rem;
  }
}
#mainArea #searchlist {
  display: none;
}
@media (max-width: 768px) {
  #mainArea #searchlist {
    display: block;
    margin-bottom: 23px;
  }
  #mainArea #searchlist ul {
    border: 1px solid #ccc;
  }
  #mainArea #searchlist li {
    border-bottom: 1px solid #ccc;
  }
  #mainArea #searchlist li:last-child {
    border-bottom: none;
  }
  #mainArea #searchlist li a {
    display: block;
    padding: 6px 24px 6px 12px;
    position: relative;
  }
  #mainArea #searchlist li a:after {
    position: absolute;
    top: 0;
    right: 9px;
    bottom: 0;
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-top: auto;
    margin-bottom: auto;
    border-top: 1.5px solid #d0111b;
    border-right: 1.5px solid #d0111b;
    transform: rotate(45deg);
  }
  #mainArea #searchlist li .title {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
  }
  #mainArea #searchlist li .content {
    display: block;
    font-size: 1.2rem;
  }
}
#mainArea .controll {
  font-size: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 10px;
}
#mainArea .controll .count span.building,
#mainArea .controll .count span.floor {
  margin-left: 12px;
}
#mainArea .controll .count span span {
  display: inline-block;
  margin-right: 2px;
  vertical-align: -1px;
  color: #d0111b;
  font-size: 2.0rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  #mainArea .controll .count {
    font-size: 1.2rem;
  }
  #mainArea .controll .count span.label {
    display: block;
  }
  #mainArea .controll .count span.building {
    display: none;
  }
  #mainArea .controll .count span.floor {
    display: block;
    margin-left: 0;
  }
  #mainArea .controll .count span span {
    font-size: 1.8rem;
  }
}
#mainArea .controll .sort select {
  height: 30px;
  margin-left: 8px;
}
#mainArea .result article {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
  border: 3px solid #ccc;
}
#mainArea .result article header {
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 13px 17px;
  background-color: #f5f5f5;
  z-index: 0;
}
#mainArea .result article header .label {
  display: inline-block;
  margin-right: 15px;
  padding: 5px 11px;
  border-radius: 3px;
  background-color: #d0111b;
  color: #fff;
  font-size: 1.2rem;
  white-space: nowrap;
}
#mainArea .result article header .name {
  flex-grow: 1;
  font-size: 1.8rem;
}
#mainArea .result article header .articleid {
  padding-left: 10px;
  font-size: 1.4rem;
  white-space: nowrap;
}
@media (max-width: 768px) {
  #mainArea .result article header {
    margin-bottom: 10px;
    padding: 10px;
    display:block;
  }
  #mainArea .result article header .label {
    margin-right: 8px;
  }
  #mainArea .result article header .name {
    padding-top: 5px;
    font-size: 1.4rem;
  }
  #mainArea .result article header .articleid {
    padding-top: 5px;
    padding-left: 0;
    font-size: 1.3rem;
    position: absolute;
    top: 8px;
    right: 10px;
  }
}
#mainArea .result article .image {
  width: 300px;
  height: 200px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  position: relative;
  overflow: hidden;
}
#mainArea .result article .image li {
  text-align: center;
}
#mainArea .result article .image li img{
  max-width: 100%;
  max-height: 200px;
}
#mainArea .result article .image .slick-arrow {
  width: 25px;
  height: 50px;
}
#mainArea .result article .image .slick-prev {
  left: 0;
  background-image: url(/images/list/prev.png);
}
#mainArea .result article .image .slick-next {
  right: 0;
  background-image: url(/images/list/next.png);
}
@media (max-width: 768px) {
  #mainArea .result article .image {
    width: calc(100vw - 66px);
    margin: 0 auto 10px;
  }
}
#mainArea .result article .detail {
  width: 415px;
  margin-right: 20px;
  margin-bottom: 20px;
}
#mainArea .result article .detail p {
  margin-bottom: 20px;
  font-size: 1.3rem;
}
#mainArea .result article .detail dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
#mainArea .result article .detail dl dt {
  width: 60px;
  margin-bottom: 3px;
  padding: 2px 0;
  background-color: #eee;
  font-size: 1.1rem;
  text-align: center;
}
#mainArea .result article .detail dl dd {
  width: calc(100% - 70px);
  font-size: 1.3rem;
}
#mainArea .result article .detail .btn_map {
  margin-left: 10px;
}
@media (max-width: 768px) {
  #mainArea .result article .detail {
    width: auto;
    margin-right: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
  }
  #mainArea .result article .detail p {
    display: none;
  }
  #mainArea .result article .detail dl {
    width: calc(100vw - 66px);
  }
  #mainArea .result article .detail dl dd:nth-of-type(n+2) {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
#mainArea .result article .compartments {
  width: 100%;
  word-break: break-all;
}
#mainArea .result article .compartments table {
  width: 100%;
  border-top: 1px solid #ccc;
}
#mainArea .result article .compartments table th br.sp {
  display: none;
}
#mainArea .result article .compartments table td {
  vertical-align: middle;
}
#mainArea .result article .compartments table td a {
  text-decoration: underline;
  color: #369;
}
#mainArea .result article .compartments table td a.red {
  color: #d0111b;
}
#mainArea .result article .compartments table td a.red .num {
  font-weight: bold;
  font-size: 2rem;
}
#mainArea .result article .compartments table td a:hover {
  text-decoration: none;
}
@media (max-width: 768px) {
  #mainArea .result article .compartments table th,
  #mainArea .result article .compartments table td {
    padding-right: 5px;
    padding-left: 5px;
    vertical-align: middle;
    font-size: 1.16rem;
  }
  #mainArea .result article .compartments table th:nth-child(5),
  #mainArea .result article .compartments table td:nth-child(5),
  #mainArea .result article .compartments table th:last-child,
  #mainArea .result article .compartments table td:last-child {
    display: none;
  }
  #mainArea .result article .compartments table th span,
  #mainArea .result article .compartments table td span {
    display: block;
    text-indent: -9999px;
    font-size: 0;
  }
  #mainArea .result article .compartments table th br.sp {
    display: inline;
  }
  #mainArea .result article .compartments table td a.red .num {
    font-size: 1.6rem;
  }
}
#mainArea .result .banner {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  #mainArea .result .banner img {
    max-width: 100%;
  }
}
#mainArea .pager {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px 17px;
  background-color: #eee;
  font-size: 1.4rem;
}
#mainArea .pager a {
  display: inline-block;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: #fff;
  font-size: 1.3rem;
}
#mainArea .pager .pre a {
  padding: 5px 17px 5px 2px;
}
#mainArea .pager .pre a:before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 14px;
  margin-left: 5px;
  border-top: 1px solid #555;
  border-left: 1px solid #555;
  vertical-align: 1px;
  transform: rotate(-45deg);
}
#mainArea .pager .next a {
  padding: 5px 2px 5px 17px;
}
#mainArea .pager .next a:after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 5px;
  margin-left: 14px;
  border-top: 1px solid #555;
  border-right: 1px solid #555;
  vertical-align: 1px;
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  #mainArea .pager {
    padding: 15px 11px;
    font-size: 1.3rem;
  }
  #mainArea .pager .pre a {
    padding-right: 13px;
    font-size: 1.2rem;
  }
  #mainArea .pager .pre a:before {
    margin-right: 13px;
  }
  #mainArea .pager .next a {
    padding-left: 13px;
    font-size: 1.2rem;
  }
  #mainArea .pager .next a:after {
    margin-left: 13px;
  }
}
#mainArea > section {
  margin-bottom: 20px;
  border: 1px solid #ccc;
}
#mainArea > section#about {
  margin-bottom: 26px;
  border: none;
}
#mainArea > section#about .title {
  margin-bottom: 13px;
  padding: 0;
  background-color: transparent;
  text-align: left;
  font-size: 2.4rem;
}
#mainArea > section#about p {
  font-size: 1.3rem;
  line-height: 1.84615385;
}
@media (max-width: 768px) {
  #mainArea > section#about .title {
    margin-bottom: 10px;
    font-size: 2.0rem;
  }
}
#mainArea > section a {
  color: #336699;
}
#mainArea > section > .title {
  padding: 10px 5px;
  background-color: #f5f5f5;
  font-weight: bold;
  text-align: center;
  font-size: 1.6rem;
}
#mainArea > section .tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  list-style: none;
  width: 100%;
  padding: 0;
  font-size: 1.2rem;
}
#mainArea > section .tabs li {
  margin: 0 5px 5px 0;
}
#mainArea > section .tabs li a {
  display: inline-block;
  padding: 5px;
  border-radius: 3px;
  background: #eee;
  color: #555;
  white-space: nowrap;
  text-decoration: none;
  text-align: center;
}
#mainArea > section .content {
  padding: 15px 15px 10px;
}
#mainArea > section .wrap .block {
  padding: 13px 15px;
  border-bottom: 1px solid #ccc;
}
#mainArea > section .wrap .block:last-child {
  border-bottom: none;
}
#mainArea > section .wrap .block .title {
  font-size: 1.6rem;
  font-weight: bold;
}
#mainArea > section .wrap .block p {
  font-size: 1.3rem;
}
@media (max-width: 768px) {
  #mainArea > section .wrap .block .title {
    overflow: hidden;
    width: calc(100vw - 72px);
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  #mainArea > section .wrap .block p {
    overflow: hidden;
    width: calc(100vw - 72px);
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
#mainArea > section .more {
  padding: 8px 12px;
  background-color: #f5f5f5;
  font-size: 1.3rem;
  text-align: right;
  font-weight: bold;
}
#mainArea > section .more a:after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 2px;
  margin-left: 8px;
  border-top: 1px solid #336699;
  border-right: 1px solid #336699;
  vertical-align: 1px;
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  #mainArea > section .more {
    text-align: center;
  }
}
#contact {
  flex-basis: 69.64285714%;
  margin-bottom: 40px;
  padding: 30px 40px;
  border: 3px solid #D0111B;
  box-sizing: border-box;
  background-color: #fff;
}
#contact section {
  display: flex;
  justify-content: space-between;
  margin-top: 35px;
  padding-top: 35px;
  border-top: 2px solid #D0111B;
}
#contact section:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
#contact section .texts {
  flex-basis: 56.48414986%;
}
#contact section .texts .title {
  font-size: 2.2rem;
  font-weight: bold;
}
#contact section .texts p {
  margin-top: 15px;
}
#contact section .texts p:first-child {
  margin-top: 0;
}
#contact section .images {
  flex-basis: 37.46397695%;
  text-align: center;
}
#contact .web .title {
  padding-left: 45px;
  background-image: url(/images/top/icon_title6.gif);
  background-position: 0 0;
  background-repeat: no-repeat;
}
#contact .web .info {
  margin-bottom: 10px;
  font-size: 1.2rem;
  text-align: center;
}
#contact .web .info .tel {
  color: #555;
  font-size: 2.6rem;
  font-weight: bold;
}
#contact .web .info .tel span {
  display: inline-block;
  padding-left: 45px;
  background-image: url(/images/common/icon_tel2.gif);
  background-position: 0 6px;
  background-repeat: no-repeat;
}
#contact .office .title {
  padding-left: 45px;
  background-image: url(/images/top/icon_title7.gif);
  background-position: 0 3px;
  background-repeat: no-repeat;
}
#contact .office .note {
  /*padding-left: 1em;
  color: #D0111B;
  text-indent: -1em;*/
	padding-left: 1em;
	margin-top:15px;
  color: #D0111B;
  text-indent: -1em;
	font-size: 85%;
	text-align: left;
}
@media (max-width: 768px) {
  #content {
    padding: 20px;
  }
  #contact {
    margin-bottom: 20px;
    padding: 20px;
  }
  #contact section {
    display: block;
    margin-top: 20px;
    padding-top: 20px;
  }
  #contact section .texts .title {
    font-size: 1.8rem;
  }
  #contact section .texts p {
    font-size: 1.3rem;
  }
  #contact section .images {
    margin-top: 15px;
  }
  #contact .web .title {
    padding: 2px 0 2px 45px;
    background-position: 0 0;
  }
  #contact .web .info {
    font-size: 1.2rem;
  }
  #contact .web .info .tel {
    font-size: 2.6rem;
  }
  #contact .web .info .tel span {
    background-position: 0 6px;
  }
  #contact .office .title {
    padding-left: 45px;
    background-position: 0 1px;
  }
}

/*---- MouseOver 吹き出し（検索結果メイン部分）----------------*/

.red_price{
	position: relative;
}
@media (min-width: 769px) {
.tooltipBody {  
  border: solid 2px #DD0000;  
  -moz-border-radius: 7px;  
  -webkit-border-radius: 7px;  
  border-radius: 7px;  
  position: absolute;  
  left: 30px;
  top: -55px;
  font-weight:normal;
  font-size:75%;
  line-height:1.4em;
  color:#0066CC;
  text-decoration: none;
  visibility: hidden;
  padding: 4px 2px 4px 8px;
  width: 265px;
  text-align:left;
  zoom: 1;
}  

a:hover .tooltipBody {  
  background-color: white;  
  visibility: visible;  
  z-index: 10;  
}  

.tooltipBody .tooltipAngle {  
  border-left: solid 12px #DD0000;  
  border-top-width: 0;  
  border-bottom: solid 12px transparent;  
  position: absolute;  
  left: 40px;
  top: 36px;  
}  

.tooltipBody .tooltipAngle .tooltipAngleInner {  
  border-left: solid 8px #FFF;  
  border-top-width: 0;  
  border-bottom: solid 8px transparent;  
  position: absolute;  
  left: -10px;
  top: 0;  
}  

/*  not supported tanseparent for border by IE6. */  
* html .tooltipBody .tooltipAngle {  
  border-right-color: white;  
  bottom: 0;  
}  

* html .tooltipBody .tooltipAngle .tooltipAngleInner {  
  border-right-color: #DD0000;  
}
}

@media (max-width: 768px) {

.tooltipBody {
display:none;
}
}
/*---- MouseOver 吹き出しEND ----------------*/
