@charset "UTF-8";
* {
  box-sizing: border-box;
}
body , html {
  color:#444;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size:100%;
  line-height:160%;
  margin:0;
  padding:0;
  letter-spacing:0.05em;
  overflow-x: hidden;
}

/* header */
header {
  background: #fff;
  overflow: hidden;
  border-bottom: 3px solid #1d2088;
}

.pcHeaderInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 20px;
}

header h1 {
  font-size: 10px;
  font-weight: normal;
  color: #6d6d6d;
}

ul.headerNavi {
  margin: 0 0 0 0;
  font-size: 13px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

ul.headerNavi li {
  float: left;
  text-align: center;
  line-height: 1.5;
  padding-left: 24px;
	margin-top: 6px;
}

ul.headerNavi li:first-child{
	padding-left: 10px;
}

ul.headerNavi li:last-child{
	margin-top: 4px;
}

ul.headerNavi li a {
  color: #444;
  font-weight: 600;
}

ul.headerNavi li a:hover {
  filter:alpha(opacity=50);
  -moz-opacity: 0.5;
  opacity: 0.5;
  transition: .3s;
}

ul.headerNavi li a.favorite{
	color: #000000;
	font-weight: bold;
	padding: 8px 16px;
	display: block;
	transition: all 0.3s;
	border-radius: 24px;
}

ul.headerNavi li .favorite_wrapper{
	border: 2px navy solid;
	border-radius: 24px;
	position: relative;
}

ul.headerNavi li .favorite_wrapper .favorite_heart{
	background:url("../img/favorite_heart.svg") no-repeat;
	position: absolute;
	top: -14px;
	right: -16px;
	width: 36px;
	height: 30px;
	display: table;
}

ul.headerNavi li .favorite_wrapper .favorite_heart span{
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	color: #ffffff;
	font-size: 12px;
	font-weight: bold;
}

ul.headerNavi li a:hover {
  filter:alpha(opacity=50);
  -moz-opacity: 0.5;
  opacity: 0.5;
  transition: .3s;
}

ul.headerNavi li a.favorite:hover{
	opacity: 1;
	color: #ffffff;
	font-weight: bold;
	transition: .3s;
	background-color: navy;
	border-radius: 24px;
}

header img {
  width: 280px;
  height: auto;
  display: block;
  overflow: hidden;
  float: left;
  margin: 8px 0 8px 0;
}

ul.headerIco {
  position: absolute;
  right: 0;
  top:10px;
}

ul.headerIco li a {
  color: #444;
  font-size: 11px;
}

ul.headerIco li a:hover {
  filter:alpha(opacity=50);
  -moz-opacity: 0.5;
  opacity: 0.5;
  transition: .3s;
}

ul.headerIco li {
  float: left;
  padding-left: 25px;
  text-align: center;
  overflow: visible;
}

ul.headerIco i {
  color: #1d2088;
  font-size: 25px;
  display: block;
  font-weight:900;
}

ul.headerIco li a:hover i {
  color: #6e70c2;
  transition: .3s;
}

p.headerIcoNumber {
  background: #009944;
  font-size: 10px;
  position: absolute;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  color: #fff;
  margin: -5px 0 0 0;
  z-index: 5;
  overflow: visible;
  display: block;
  line-height :1.5em;
  padding: 0 2px;
}

.cp_tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.cp_tooltip .cp_tooltiptext {
  position: absolute;
  z-index: 1;
  top: 120%;
  left: 0;
  visibility: hidden;
  width: auto;
  white-space: nowrap;
  padding: 0.3em 0.5em;
  transition: opacity 1s;
  text-align: center;
  opacity: 0;
  color: #ffffff;
  border-radius: 6px;
  background-color: #da3c41;
}
.cp_tooltip .cp_tooltiptext::after {
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  content: ' ';
  border: 5px solid transparent;
  border-bottom-color: #da3c41;
}
.cp_tooltip:hover .cp_tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* wrapper */
.container {
  background:#f1f0f0;
}

.wrapper {
  margin:0 auto 0 auto;
  padding:0;
  position: relative;
  width:1100px;
}

/* main */
.mainBottomContents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
          justify-content: space-between;
}
.main {
  width: 72%;
  margin:20px 0 10px 0;
}

.main2nd, .main2nd_not_favorite {
  float:right;
  width:825px;
  overflow:hidden;
  margin:20px 0 10px 0;
}

.main2nd_not_favorite .not_have_favorite{
	padding-bottom: 24px;
}

.main2nd_not_favorite .not_have_favorite p{
	font-size: 20px;
	font-weight: bold;
	color: #e74c3c;
}

.main2nd_not_favorite .description p{
	font-size: 14px;
	letter-spacing: 0px;
}

.main2nd_not_favorite .description p span{
	color: #e74c3c;
	font-weight: bold;
	font-size: 16px;
}

.topSearchWrapper {
  padding-top: 20px;
}

.topSearchBox {
  padding: 25px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
.topSearchBox form {
  width: 100%;
}

.topSearchBox h4 {
  font-size: 22px;
  font-weight: bold;
  float: left;
}

.topSearchBoxTitleRight{
  position: relative;
  background: #e4e4e4;
  padding: 2px 10px;
  font-size: 13px;
  color: #5d5d5d;
  margin-left: 160px;
  margin-top: -2px;
  }

.topSearchBoxTitleRight:after{
  content: "";
  position: absolute;
  right: 0;
  top: 12%;
  left: -20px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-color:transparent #e4e4e4 transparent transparent;
  border-width: 7px 10px 7px 10px;
}

.topSearchBox span.stepNum {
  display: block;
  margin-top: 15px;
  text-align: left;
  font-weight: 600;
  color: #7274b9;
}
.topSearchBox span.stepNum::first-letter {
  color: #1d2088;
}
select.topSearchTodou {
  width: 100%;
  font-size: 16px;
  border: 1px solid #c6c6c6;
  padding: 10px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  color: #676767;
}

ul.topSearcEkiArea {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
          justify-content: space-between;
}

ul.topSearcEkiArea li {
  width: 100% !important;
  font-size: 16px;
  padding: 10px;
  color: #676767;
  text-align: center;
  display: block;
}

ul.topSearcEkiArea a  {
  color: #676767;
  width: 100%;
  display: block;
}

ul.topSearcEkiArea li.topSearcEki.on a,
ul.topSearcEkiArea li.topSearcEki.on a i,
ul.topSearcEkiArea li.topSearcEki.on + li a,
ul.topSearcEkiArea li.topSearcEki.on + li a i {
  color: #0099df;
}

ul.topSearcEkiArea a:hover {
  filter:alpha(opacity=60);
  -moz-opacity:0.6;
  opacity:0.6;
  transition: .3s;
}

li.topSearcEki  {
  border: 1px solid #c6c6c6;
  -webkit-border-top-left-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
  -moz-border-radius-topleft: 10px;
  -moz-border-radius-bottomleft: 10px;
  border-radius: 10px 0 0 10px;
}

ul.topSearcMony {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

ul.topSearcMony li {
  width: 100%;
}
li.topSearcMonyNami {
  text-align: center;
  width: 90px !important;
  font-size: 20px;
  padding-top: 29px;
  color: #9d9d9d;
  font-weight: bold;
}

select.topSearcMonySelect {
  margin-top: 20px;
  width: 100%;
  font-size: 16px;
  border: 1px solid #c6c6c6;
  padding: 10px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  color: #676767;
}

li.topSearcArea {
  border-top: 1px solid #c6c6c6;
  border-bottom: 1px solid #c6c6c6;
  border-right: 1px solid #c6c6c6;
  -webkit-border-top-right-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
  -moz-border-radius-topright: 10px;
  -moz-border-radius-bottomright: 10px;
  border-radius: 0 10px 10px 0;
}

.topSearcEkiArea i {
  color: #a2a2a2;
  padding-top: 4px;
  font-size: 25px;
  margin-bottom: 5px;
  display: block;
  font-weight:900;
}

ul.topSearcEkiArea li a {
  width: 100%;
  display: block;
}

.topSearchWrapper button {
  width: 100%;
  margin-top: 20px;
  color: #fff;
  padding: 15px;
  font-size: 22px;
  font-weight: bold;
  background: -moz-linear-gradient(top, #018ecd, #065375);
  background: -webkit-linear-gradient(top, #018ecd, #065375);
  background: linear-gradient(to bottom, #018ecd, #065375);
  border: 0;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  cursor: pointer;
}

.topSearchWrapper button:hover {
  background: #ccc;
  color: #676767;
  transition: .3s;
}

ul.topSearchULWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
          justify-content: space-between;
}

ul.topSearchULBa {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
          justify-content: space-between;
}

li.topSearchLiImg {
  position: relative;
  width: 63%;
}

li.topSearchLiSearch {
  background: #fff;
  width: 36%;
  margin-right: 20px;
}

.topSearchLiImg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

.topMeritWrapper h2 {
  font-size: 26px;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
}

.topMeritWrapper {
  margin-bottom: 10px;
}

.topMeritWrapper img {
  display: block;
}

.topMeritWrapper ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
          justify-content: space-between;
}

.topMeritWrapper li {
  width: 33%;
  font-size: 14px;
}

.topMeritWrapper h6 {
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  margin: 5px 0 10px 0;
}

.topConWrapper {
  padding: 20px;
  background:#fff;
  margin-bottom: 20px;
}

.topConWrapper h3 {
  font-size: 140%;
  margin-bottom: 12px;
}

dl.topNewsDl {
  font-size: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

dl.topNewsDl dt {
  border-top:1px solid #f1f1f1;
  width: 15%;
  padding: 10px 0;
  color: #6e6e6e;
}

dl.topNewsDl dd {
  border-top:1px solid #f1f1f1;
  width: 85%;
  padding: 10px 0;
}

dl.topNewsDl dd a{
  color: #31709c;
  text-decoration: underline;
}

dl.topNewsDl dd a:hover{
  text-decoration: none;
}

ul.topAreaUl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
          justify-content: space-between;
  letter-spacing :3px;
  font-size: 22px;
  font-weight: bold;
}

ul.topAreaUl li.topArea_tokyo {background: url(../img/top/top_map_tokyo.jpg) no-repeat;}
ul.topAreaUl li.topArea_kanagawa {background: url(../img/top/top_map_kanagawa.jpg) no-repeat;}
ul.topAreaUl li.topArea_osaka {background: url(../img/top/top_map_osaka.jpg) no-repeat;}
ul.topAreaUl li.topArea_aichi {background: url(../img/top/top_map_aichi.jpg) no-repeat;}
ul.topAreaUl li.topArea_fukuoka {background: url(../img/top/top_map_fukuoka.jpg) no-repeat;}

ul.topAreaUl li.topAreaImg{
  background-size: cover;
  background-position: center;
}

ul.topAreaUl li {
  text-align: center;
  width: 19%;
}

ul.topAreaUl li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
          justify-content: center;
  height: 225px;
  color: #fff;
}

ul.topAreaUl li a:hover {
  color: #111;
  filter:alpha(opacity=40);
  -moz-opacity: 0.4;
  opacity: 0.4;
  transition: .3s;
  background:#fff;
}

ul.topAreaTextUl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
          justify-content: space-between;
}

ul.topAreaTextUl li {
  width: 32%;
  padding: 18px 0 0 0;
}

ul.topAreaTextUl dl dt {
  font-size: 17px;
}

ul.topAreaTextUl dl dd {
  float: left;
  font-size: 12px;
  padding-right: 10px;
  word-break:keep-all;
  margin-bottom: -6px;
}

ul.topAreaTextUl dl dd a {
  color: #31709c;
}

ul.topAreaTextUl dl dd a:hover {
  color: #9c2b80;
  transition: .3s;
}

.info_colona_measures{
  padding: 32px 0;
	width: 70%;
	margin: 0 auto;
}

.info_colona_measures .text_wrapper{
	border: 2px #FF3131 solid;
	background-color: #ffffff;
	transition: 0.4s;
}

.info_colona_measures .text_wrapper:hover{
	background-color: #FF3131;
	transition: 0.4s;
}

.info_colona_measures .text_wrapper a p{
	padding: 24px 8px;
	font-weight: bold;
	transition: 0.4s;
	margin: 0 auto;
	display: table;
}

.info_colona_measures .text_wrapper a p:hover{
	color: #ffffff;
	transition: 0.4s;
}

.info_tokusen_measures{
  padding: 32px 0 0;
	width: 70%;
	margin: 0 auto;
}
@media (min-width: 960px) {
.info_tokusen_measures{
  padding: 32px 0;
	width: 100%;
  max-width: 1200px;
	margin: 0 auto;
}
}

.topWhatsSetUP {
  background: #fff;
  border-top: 3px solid #1d2088;
  border-bottom: 3px solid #1d2088;
  padding: 20px 0;
  margin: 20px 0;
}

.topWhatsSetUP h3 {
  font-size: 24px;
  font-weight: bold;
  word-break:keep-all;
  margin-right: 25px;
  margin-top: 15px;
}

.topWhatsSetUP h6 {
  color: #8a8a8a;
  font-size: 13px;
}

.topWhatsSetUP ul {
  display: -webkit-box;display: -ms-flexbox;display: flex;
}

.topSearchWrapper{
	position: relative;
	/* background-image: url(/img/top/top_mv.jpg); */
  background: url(/img/mv_model.webp), url(/img/top/top_mv.jpg);
  background-size: 270px, cover;
  background-position: bottom right 15%, center;
  height: 470px;
  padding-top: 0;
  background-repeat: no-repeat;
}
.topSearchWrapper .top_main_contents{
	position: absolute;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	max-width: 1100px;
	padding: 0 20px;
	width: 100%;
}


/* メインビジュアル */
.topSearchArea{
	width: calc(45.454vw - 40px);
	min-width: 330px;
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	overflow: hidden;
}
.topSearchBreadcrumbsBg{
	display: flex;
	background-color: #ddd;
	border-top: 4px solid #ddd;
	border-bottom: 4px solid #ddd;

}
.topSearchBreadcrumbsBack{
	width: 15%;
	font-size: 70%;
	text-align: center;
	margin-left: 0.5em;
	padding: 0 0.5em;
	background-color: #999;
	border-radius: 4px;
}
.topSearchBreadcrumbsBack.btnActive{
	background-color: #fff;
	cursor: pointer;
}
.topSearchBreadcrumbs{
	width: 85%;
	display: flex;
	padding: 0 0.5em;
}
.topSearchBreadcrumbs .topSearchBreadcrumbsLi{
	font-size: 70%;
	font-weight: bold;
	text-align: center;
	color: #fff;
	position: relative;
	list-style: none;
	margin-right: 0.8em;
	background-color: #0971D0;
}
.topSearchBreadcrumbs .topSearchBreadcrumbsLi.breadcrumbsNext{
	background-color: #fff;
	color: #777;
}
.topSearchBreadcrumbs .topSearchBreadcrumbsLi.breadcrumbsNext:after{
	border-left-color: #fff;
	color: #777;
}
.topSearchBreadcrumbs .topSearchBreadcrumbsLi + .topSearchBreadcrumbsLi{
	margin-left: 0.20em;
}
.topSearchBreadcrumbs .topSearchBreadcrumbsLi:after{
	content: "";
	position: absolute;
	top: 0;
	left: 100%;
	border-style: solid;
	border-color: transparent;
	border-left-color: #0971D0;
	border-width: 12px 8px;
	width: 0;
	height: 0;
}
.topSearchBreadcrumbs .topSearchBreadcrumbsLi > span{
	display: inline-block;
	padding: 0 3px 0 7px;
	height: 20px;
	line-height: 20px;
	text-decoration: none;
}
.topSearchTabArea{
	display: flex;
	width: 100%;
}
.topSearchTab{
	font-size: 12px;
	width: 50%;
	text-align: center;
	padding: 1em;
	background-color: #ddd;
	cursor: pointer;
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition: 0.2s linear;
	transition: 0.2s linear;
}
.topSearchTab:hover{
	opacity: .7;
}
.topSearchTab.choice{
	color: #0971D0;
	background-color: #fff;
}
.topSearchTab .tabBold{
	font-size: 150%;
	font-weight: bold;
}
.topSearchTab i{
	margin-right: 0.4em;
}
.topSearchListOuter{
	width: 100%;
	overflow: hidden;
}
.listSlideWrap{
	width: 100%;
	min-width: 100%;
	display: flex;
	flex-wrap: nowrap;
	transition-duration: 0.2s;
}
.topSearchList{
	width: 100%;
	min-width: 100%;
}
.topSearchListUl{
	width: 100%;
	min-width: 100%;
	padding: 10px 0;
	display: flex;
	flex-wrap: wrap;
}
.topSearchListUl > li{
	width: 50%;
	text-align: center;
	padding: 0.5em;
}
.topSearchListUl > li i{
	font-size: 50%;
	display: table-cell;
	vertical-align: middle;
	transform: translateX(0.6em);
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition: 0.1s linear;
	transition: 0.1s linear;
}
.areatxtBlock{
	cursor: pointer;
}
.areatxtBlock:hover{
	color: #0971D0;
}
.areatxtBlock:hover i{
	transform: translateX(.9em);
}
.btnListBack:hover i{
	transform: translateX(-.9em);
}
.areaNone{
	display: none;
}
.btnListBack{
	width: 80%;
	font-size: 80%;
	background-color: #eee;
	border: 1px solid #ccc;
	border-radius: 50px;
	text-align: center;
	margin: 1em auto 0;
	padding: 0.5em 1em;
	cursor: pointer;
}
.btnListBack i{
	font-size: 50%;
	transform: translateX(-0.6em);
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition: 0.1s linear;
	transition: 0.1s linear;
}
.tabAction{
	opacity: 0;
}

/* モーダル部分ここから */
.modalNone{
	display: none;
}
#js-modal_overlay{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
}
.listModal{
	position: absolute;
	top: 80px;
	left: 50%;
	right: 50%;
	width: 75%;
	height: 70%;
	max-width: 1140px;
	background-color: #fff;
	opacity: 0;
	-webkit-transform : translate(-50%, 100vh);
	transform : translate(-50%, 100vh);
	transition-duration: .4s;
	transition-delay: .1s;
}
.listModalAction{
	opacity: 1;
	-webkit-transform : translate(-50%,0);
	transform : translate(-50%,0);
}
.listModal .listBox{
	height: 100%;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}
.listModal .listBox .listWrapper{
	padding: 20px;
}
.listModal ul.todouTabUl{
	margin-top: 8px;
}
.listModal .fixedBtn{
	height: 80px;
	background-color: #eee;
	padding: 15px;
}
.listModal .fixedBtn a{
	width: 60%;
	margin: 0 auto;
	height: 50px;
	padding: 0;
	line-height: 50px;
}
.listModal .closeBtn{
	position: absolute;
	top: -55px;
	right: 0;
}
.listModal .closeBtn>div{
	position: relative;
	display: inline-block;
	width: 50px;
	height: 50px;
	cursor: pointer;
}
.listModal .closeBtn span::before,
.listModal .closeBtn span::after{
	position: absolute;
	display: block;
	content: "";
	top: 50%;
	left: 10%;
	background-color: #fff;
	width: 84%;
	height: 14%;
	border-radius: 40px;
}
.listModal .closeBtn span::before{
	transform: rotate(-45deg);
}
.listModal .closeBtn span::after{
	transform: rotate(45deg);
}

.is_locked{
	position: fixed;
	width: 100%;
	overflow: hidden;
}
.topSearchWrapper .top_main_contents .site_title{
	width: calc(100vw - 45.454vw);
	color: #fff;
	margin-left: 5.454%;
}
.topSearchWrapper .top_main_contents .site_title p{
	font-size: 300%;
	font-weight: bold;
	text-shadow: 0 0 11px rgba(0,0,10,0.95);
	line-height: 114%;
	margin-bottom: 15px;
	letter-spacing: 0.05em;
	white-space: nowrap;
}
.topSearchWrapper .top_main_contents .site_title .site_subTitle{
	font-size: 18px;
	font-weight: 500;
	text-shadow: 0 2px 4px rgba(0,0,10,0.95);
	margin-bottom: .4em;
	letter-spacing: 0.15em;
}
.top_keyword_search .top_keyword_box{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.top_keyword_search .top_keyword_box input{
	font-size: 14px;
	border: 1px solid #868686;
	width: 60%;
	border-radius: 4px 0 0 4px;
	padding-left: 10px;
}
.top_keyword_search .top_keyword_box .top_keyword_btn a{
	display: block;
	text-align: center;
	width: 70px;
	color: #fff;
	background: linear-gradient(#36BAFF,#0668CD);
	line-height: 40px;
	border-radius: 0 4px 4px 0;
	transition: all .5s;
}
.top_keyword_search .top_keyword_box .top_keyword_btn a:hover{
	background: linear-gradient(#0668CD,#36BAFF);
}
.topSearchWrapper .mainTyukai{
	position: absolute;
	right: 20px;
	bottom: 23px;
}
.topSearchWrapper .mainTyukai a{
	font-size: 24px;
  font-weight: bold;
	color: #000;
  background: rgb(254,214,0);
  background: linear-gradient(149deg, rgba(254,214,0,1) 0%, rgba(253,186,0,1) 36%, rgba(254,251,0,1) 66%, rgba(241,136,3,1) 100%);
	text-align: center;
	border-radius: 50px;
	transition: all .4s;
	padding: 16px 60px;
}
.topSearchWrapper .mainTyukai a:after{
	padding-left: 5px;
	font-family: 'Font Awesome 5 Free';
	content: '\f35d';
	color: #000;
	font-size: 110%;
	font-weight: 900;
}
.topSearchWrapper .mainTyukai a:hover{
	box-shadow: 0 5px 8px rgba(0,0,0,0.6);
}
/* セットアップ賃貸とは？ */
.topWhatsSetUP{
	position: relative;
	overflow: hidden;
}
.topWhatsSetUP ul{
	padding: 0 20px 0 130px;
}
.topWhatsSetUP .model_top img{
	position: absolute;
	top: -18px;
	width: 135px;
}
.topWhatsSetUP .model_top img:last-of-type{
	left: 0;
	width: 123px;
}
.wrapper .contactBtn {
  padding: 0;
  margin: 40px auto;
}

.wrapper .contactBtn a {
	font-size: 30px;
  font-weight: bold;
	color: #FFF;
  background: rgb(33, 63, 117);
  background: linear-gradient(149deg, rgba(33, 63, 117, 1) 0%, rgba(44, 85, 155, 1) 36%, rgba(26, 50, 94, 1) 66%, rgba(15, 35, 75, 1) 100%);
	text-align: center;
	border-radius: 50px;
	transition: all .4s;
	padding: 30px 60px;
  margin: auto;
  display: block;
  width: 60%;
  line-height: 1.1;
}

.wrapper .contactBtn a::before {
  padding-right: 5px;
  font-family: 'Font Awesome 5 Free';
  content: '\f0e0';
  color: #FFF;
  font-size: 110%;
  font-weight: 900;
}


/* 物件一覧 */
.buildListBox {
  border: 1px solid #dfe0e1;
  margin-top: 20px;
}

a:hover .buildListBox {
  filter:alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
  transition: .3s;
}

.buildListBox h2 {
  padding: 10px;
  font-size: 20px;
  border-top: solid 4px #213f75;
  border-bottom: solid 1px #aaafb9;
}
.buildListBox h2 a {
  color: #213f75;
  font-weight: bold;
}
.buildListBox h2 a:hover {
  opacity: .8;
}
.buildListBox h6 {
  font-size: 29px;
  color: #ef6055;
  padding: 5px 0;
  font-weight: bold;
}

.buildListBox dt {
  padding: 10px;
}

.buildListBox dd {
  padding: 10px;
  width: 100%;
}
.buildListBox dl {
  display: -webkit-box;display: -ms-flexbox;display: flex;

}
.buildListBox table {
  font-size: 13px;
  width: 100%;
  border-top:  1px solid #dedede;
  border-left: 1px solid #dedede;
  margin: 10px 0;
}

.buildListBox td {
  padding: 3px 5px;
  color: #444;
  font-weight: normal;
  border-right:  1px solid #dedede;
  border-bottom: 1px solid #dedede;
}

.buildListBox th {
  width: 80px;
  border-bottom: 1px solid #dedede;
  padding: 3px 0;
  background: #f2f2f2;
  color: #878787;
  font-weight: normal;
}

.buildListBox ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.buildListBox li {
  float: left;
  font-size: 12px;
  color: #444;
  background: #f2f2f2;
  padding: 0 5px;
  margin-right: 5px;
}

.buildListBtnWrapper {
  margin-bottom: 0;
}
.buildListBtnWrapper + .buildListBtnWrapper {
  margin-bottom: 25px;
}

.buildListBtn {
  background: #eaf0f8;
  text-align: center;
  padding: 10px;
  cursor: pointer;
  color: #457ab5;
  font-size: 16px;
  font-weight: bold;
}
.buildListBtn:hover {
  background: #c1d0e5;
}

.buildListBtn::after {
  font-family: 'Font Awesome 5 Free';
  content:'件を表示する' '\f358';
  color: #457ab5;
  font-size: 18px;
  margin-left: 3px;
  font-weight: bold;
}

.buildListBtn.buildListBtnActive::after {
  font-family: 'Font Awesome 5 Free';
  content: '件を非表示にする''\f35b';
  color: #ef6055;
  font-size: 18px;
  margin-left: 3px;
  font-weight: bold;
}

.buildListBtn.buildListBtnActive {
  color: #ef6055;
  background: #f6d6d3;
}

.buildListBtn.buildListBtnActive:hover {
  color: #ef6055;
  background: #ecbfbb;
}

.buildListBtn span {
  font-size: 25px;
}

.buildListBtnIn {
  display: none;
  width: 100%;
}
.buildListBtnIn.firstBukken {
  display: block;
}

.buildListShousai .doFavoriteEvent59558 .buildList_favorite p{
	font-weight: bold;
}

.seriesLabel span {
  display: inline-block;
  font-size: 11px;
  padding: 0 .5em;
  border-radius: 20px;
  line-height: 1.8;
}

/* 一覧キーワード */
.mainCol .key_search_box{
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
	background-color: #eaf0f8;
	border-radius: 5px;
	padding: 15px;
	margin: 0 auto 20px;
}
.mainCol .key_search_box input{
	font-size: 14px;
    border: solid 1px #868686;
    border-radius: 4px 0 0 4px;
	padding: 0 8px;
	width: 60%;
}
.mainCol .key_search_box .key_search_btn{
	width: 80px;
	transition: .3s;
}
.mainCol .key_search_box .key_search_btn:hover{
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    -moz-opacity: 0.6;
    opacity: 0.6;
    transition: .3s;
}
.mainCol .key_search_box .key_search_btn a{
	display: block;
    background-color: #0a599c;
    color: #fff;
    line-height: 38px;
    text-align: center;
    font-weight: 900;
    height: 100%;
    border-radius: 0 4px 4px 0;
}
/* スタンダード */
.seriesLabel span.std {
  color: #f08300;
  border: solid 1px #f08300;
}
/* スマート */
.seriesLabel span.smt {
  color: #e2bf00;
  border: solid 1px #e2bf00;
}
/* エクセレント */
.seriesLabel span.hg {
  color: #93be00;
  border: solid 1px #93be00;
}
/* プレミア */
.seriesLabel span.prm {
  color: #7500C6;
  border: solid 1px #7500C6;
}
/* ラグジュアリー */
.seriesLabel span.lux {
  color: #656565;
  border: solid 1px #656565;
}

/* トップ シリーズタイプ */
#seriesGroup {
  position: relative;
}
.seriesType {
  padding: 40px 0 20px 0;
}
.seriesType h2 {
  font-size: 26px;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}
.seriesType img {
  display: block;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  width: 100%;
}
.seriesListWrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height:0;
  visibility:hidden;
}
.seriesListWrap.is-show {
  position: relative;
  display: -webkit-box;display: -ms-flexbox;display: flex;
  visibility: visible;
  height: auto;
}
.seriesMainImage {
  position: relative;
  width: 65%;
}
.seriesMainImage .bgImg {
  height: 380px;
}
.aboutSeries {
  width: 35%;
  padding: 20px 15px;
  background: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
          justify-content: center;
}
.seriesListWrap.luxury {
  border-bottom: solid 4px #000;
}
.seriesListWrap.premium {
  border-bottom: solid 4px #440074;
}
.seriesListWrap.excellent {
  border-bottom: solid 4px #93BE00;
}
.seriesListWrap.standard {
  border-bottom: solid 4px #F08300;
}
.seriesListWrap.smart {
  border-bottom: solid 4px #E2BF01;
}
.tabGroup {
  display: -webkit-box;display: -ms-flexbox;display: flex;
  position: relative;
  z-index: 1;
}
.tabGroup li {
  flex: 1;
  text-align: center;
}
.tabGroup .tab {
  color: #fff;
  cursor: pointer;
  padding: .4em 0;
}
.tab.luxury {
  background: #000;
}
.premium .aboutSeries,
.tab.premium {
  background: #440074;
}
.excellent .aboutSeries,
.tab.excellent {
  background: #93BE00;
}
.standard .aboutSeries,
.tab.standard {
  background: #F08300;
}
.smart .aboutSeries,
.tab.smart {
  background: #E2BF01;
}
.aboutSeries h3 {
  font-size: 26px;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}
.aboutSeries h3 span {
  display: block;
  font-size: 14px;
  font-weight: 300;
}
.aboutSeries p {
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
}
.aboutSeries a {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
          align-items: center;
  padding: .5em;
  margin: 10px 0;
  font-size: 14px;
  border: solid 1px #fff;
  border-radius: 10px;
}
.icon360::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 20px;
  background: url(../img/top/icon360.png) no-repeat;
  background-size: contain;
}
.chair_icon::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 20px;
  background: url(../img/top/chair_icon.png) no-repeat;
  background-position: center;
  background-size: contain;
}

.buildListBtnIn table {
  width: 100%;
  border-right:  1px solid #dedede;
  border-left:  1px solid #dedede;
  border-bottom: 1px solid #dedede;
}

.buildListBtnIn:not(.firstBukken) tr:not(.buildListTrBoNo) {
  border-top: 1px solid #dedede;
}

tr.buildListTrBoNo {
  border: none;
}

.buildListBtnIn th {
  border-bottom: 1px solid #dedede;
  background: #f4f4f5;
  font-size: 13px;
  vertical-align: middle;
  font-weight: normal;
  text-align: center;
}

.buildListBtnIn td {
  font-size: 13px;
  padding: 5px;
  vertical-align: middle;
  font-weight: normal;
  text-align: center;
}

span.buildListPrise {
  color: #ef6055;
  font-size: 23px;
  font-weight: bold;
}

a.buildListSyousaiBtn {
	border-radius: 6px;
	padding: 10px 8px;
	text-decoration: none !important;
	color: #ffffff;
	background-color: #213f75;
}

a.buildListSyousaiBtn span{
	font-size: 14px;
}

a.buildListSyousaiBtn:hover {
  color: #7699c0;
}

a.buildListKiniiriBtn {
  border: 1px solid #457ab5;
  color: #457ab5;
  padding: 10px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}

a.buildListKiniiriBtn::before {
  font-family: 'Font Awesome 5 Free';
  content: '\f005';
  color: #457ab5;
  font-size: 15px;
  margin-right: 2px;
  margin-left: 3px;
  font-weight: 300;
}

a.buildListKiniiriBtn:hover {
  background: #eaf0f8;
}

ul.buildListSmallUl {
  display: flex;
  flex-wrap: wrap;
}

ul.buildListSmallUl li {
  color: #326695;
  background: #eaf0f8;
  border: 1px solid #c1dbf2;
  padding: 0 6px;
  font-size: 11px;
}

.paging  {
  padding: 0 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
          align-items: center;
}
.paging.pagingBottom {
  padding-top: 10px;
}
.paging ul {
  margin-left: auto;
}
.paging ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
          justify-content: flex-end;
}
.paging ul li {
  background: #f2f2f2;
  border: solid 1px #ccc;;
  padding: 2px 7px;
  margin-left: 5px;
}
.paging ul li a {
  color: #444;
}
.paging ul li.active {
  background: #213f75;
  border: solid 1px #213f75;
  color: #fff;
}

.selectForm {
  overflow: hidden;
  width: 200px;
  text-align: center;
}
.selectForm select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}
.selectForm select::-ms-expand {
  display: none;
}
.selectForm.sort {
  position: relative;
  border: 1px solid #bbbbbb;
  border-radius: 2px;
  background: #ffffff;
}
.selectForm.sort::before {
  position: absolute;
  top: 12px;
  right: 0.9em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666666;
  pointer-events: none;
}
.selectForm.sort:after {
  position: absolute;
  top: 0;
  right: 2.5em;
  bottom: 0;
  width: 1px;
  content: '';
  border-left: 1px solid #bbbbbb;
}
.selectForm.sort select {
  padding: 4px 38px 4px 8px;
  color: #666666;
}

/* side */
.side {
  width: 26%;
  margin:20px 0 10px 0;
}

.side2nd {
  float:left;
  width:250px;
  margin:20px 0 10px 0;
}

.side2nd.spSearch {
  display: none;
}

.sideTyukaiWrapper {
  border-top:2px solid #213f75;
  background: #fff;
  padding: 10px;
  font-size: 12px;
  line-height: 160%;
}

.sideTyukaiWrapper h4 {
  font-size: 16px;
  border-bottom: 2px solid #ebebeb;
  padding-bottom: 6px;
  margin-bottom: 10px;
}

.sideTyukaiWrapper img {
  display: block;
  margin: 0 auto;
}

.sideTyukaiWrapper dl {
  margin-top: 10px;
}


.sideTyukaiWrapper dl dt {
  background: #c7d6e0;
  padding: 3px 5px;
  color: #203376;
  font-weight: bold;
}

.sideTyukaiWrapper dl dd {
  background: #f0f6fa;
  padding: 3px 5px;
  color: #203376;
}

/*.sideTyukaiWrapper a {
  background: #213f75;
  color: #fff;
  text-align: center;
  font-size: 13px;
  padding: 8px;
  margin-top: 10px;
  overflow: hidden;
  display: block;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
}*/
.mainTyukaiWrapper a {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #f08300;
  border: solid 1px #fff;
  color: #fff;
  text-align: center;
  font-size: 13px;
  padding: 8px 1.5em;
  margin-top: 10px;
  overflow: hidden;
  display: block;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
}

/*.sideTyukaiWrapper a:after{
  padding-left: 5px;
  font-family: 'Font Awesome 5 Free';
  content: '\f35d';
  color: #a2c0f5;
  font-size: 110%;
  font-weight:900;
}*/

.sideGuestWrapper{
	border-top:2px solid #0C9E4D;
	background: #fff;
	margin-top: 15px;
	padding: 10px;
	font-size: 12px;
	line-height: 160%;
}
.sideGuestWrapper h4{
	font-size: 16px;
	color: #fff;
	background: #0C9E4D;
	padding: 16px 6px;
	text-align: center;
}
.sideGuestWrapper p{
	margin-top: 0.5em;
}
sideGuestWrapper a {
  /*background: #213f75;*/
  color: #fff;
  text-align: center;
  font-size: 13px;
  padding: 8px;
  margin-top: 10px;
  overflow: hidden;
  display: block;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
}

.mainTyukaiWrapper a:after {
  padding-left: 5px;
  font-family: 'Font Awesome 5 Free';
  content: '\f35d';
  color: #fff;
  font-size: 110%;
  font-weight:900;
}


.sideTyukaiWrapper a:hover,
.sideGuestWrapper a:hover,
.mainTyukaiWrapper a:hover {
  opacity: .9;
  transition: .3s;
}

.sideLinkWrapper {
  margin: 10px 0;
}

.sideLinkWrapper img {
  display: block;
}

.sideLinkWrapper ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 481px) and (max-width: 900px) {
  .sideLinkWrapper ul {
    flex-flow: row wrap;
    justify-content: center;
  }
  .sideLinkWrapper ul li {
    flex-basis: calc(100% / 2 - 10px);
  }
}

.sideLinkWrapper {
  text-align: center;
}

.sideLinkWrapper a:hover {
  background: #fff;
  filter:alpha(opacity=60);
  -moz-opacity:0.6;
  opacity:0.6;
  transition: .3s;
}

.sideLinkWrapper a {
  display: block;
  overflow: hidden;
}

.sideLinkWrapper dl {
  padding: 10px 0;
}

.sideLinkWrapper dd {
  border-top:1px solid #d4d4d4;
  padding: 10px;
}

.sideLinkWrapper h5 {
  font-size: 13px;
  color: #31709c;
  line-height:120%;
}

.sideLinkWrapper p {
  color: #444;
  line-height:165%;
  font-size: 11px;
}


.sideKodawariListBtn {
  background: #fff;
  text-align: center;
  padding: 10px;
  border-top:  1px solid #dedede;
  border-right:  1px solid #dedede;
  border-left:  1px solid #dedede;
  border-bottom: 5px solid #dedede;
  cursor: pointer;
  color: #457ab5;
  font-size: 16px;
  color: #666;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  font-weight: bold;
}
.sideKodawariListBtn:hover {
  background: #f0f6fa;
}

.sideKodawariListBtn::before {
  font-family: 'Font Awesome 5 Free';
  content:'\f055';
  color: #457ab5;
  font-size: 18px;
  margin-right: 3px;
  font-weight: bold;
}

.sideKodawariListBtn.sideKodawariListBtnActive::before {
  font-family: 'Font Awesome 5 Free';
  content:'\f056';
  color: #ef6055;
  font-size: 18px;
  margin-left: 3px;
  font-weight: bold;
}

.sideKodawariListBtn.sideKodawariListBtnActive {
  color: #ef6055;
  background: #f6d6d3;
}

.sideKodawariListBtn.sideKodawariListBtnActive:hover {
  color: #ef6055;
  background: #ecbfbb;
}

.sideKodawariListBtnIn {
  display: none;
  width: 100%;
}

p.sideBtn {
  text-align: center;
  display: block;
  margin: 0 auto;
}

p.sideBtn a {
  background: #0a599c;
  display: block;
  width: 100%;
  margin-top:7px;
  padding: 10px 0;
  font-size: 17px;
  font-weight: bold;
  color: #fff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-bottom: 5px solid #14456e;
}

p.sideBtn a::before {
  font-family: 'Font Awesome 5 Free';
  content: '\f002';
  color: #fff;
  font-weight:900;
  margin-right: 4px;
}

p.sideBtn a:hover {
  filter:alpha(opacity=50);
  -moz-opacity: 0.5;
  opacity: 0.5;
  transition: .3s;
}

.sideTyukaiWrapper .sideTyukaiIssue{
  padding-top: 15px;
}

.sideTyukaiWrapper .sideTyukaiIssue a::after{
  content: none;
}

#loadingWrap.active {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
#loading.active {
  width: 5em;
  height: 5em;
  border-top: 1em solid rgba(255, 255, 255, 0.2);
  border-right: 1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1em solid rgba(255, 255, 255, 0.2);
  border-left: 1em solid rgba(255, 255, 255, 1);
  animation: loaderAnime 1s infinite linear;
  border-radius: 50%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 11;
}
@keyframes loaderAnime {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loadingNone {
  animation: loadingAnime 1s forwards;
}
@keyframes loadingAnime {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    display: none;
  }
}

/* パンくず */
.panWrapper {
  background: #f4f4f5;
  border-bottom: 1px solid #dfe0e1;
}

.panWrapper li {
  float: left;
  font-size: 12px;
  color:#868686;
}

.panWrapper li a {
  color: #333;
}

.panWrapper li a:hover {
  filter:alpha(opacity=60);
  -moz-opacity:0.6;
  opacity:0.6;
  transition: .3s;
}

.panWrapper li a:after {
  padding: 0 10px;
  font-family: 'Font Awesome 5 Free';
  content: '\f105';
  color: #868686;
  font-size: 12px;
  font-weight:900;
}
/* 物件一覧 */
.title2ndWrapper {
  background: #f9f9f9;
  border-bottom: 1px solid #dfe0e1;
}

.title2ndWrapper h2 {
  font-size: 23px;
  padding: 18px 20px 8px 0;
  float: left;
}
ul.title2ndUl li:last-child {
  border-top: 1px solid #dfe0e1;
}

ul.title2ndUl li {
  width: 100%;
  display: block;
  overflow: hidden;
}

.title2ndWrapper h2 span  {
  font-size: 33px;
}

.title2ndWrapper h5 {
  font-size: 16px;
  color: #3c3c3c;
  font-weight: normal;
  padding: 18px 0 8px 0;
}

.title2ndWrapper h5 span  {
  font-size: 30px;
  color: #ee6055;
  font-weight: bold;
}

.title2ndWrapper dl {
  font-size: 12px;
  padding: 5px 0;
  overflow: hidden;
  display: inline-block;
}

.title2ndWrapper dt {
  float: left;
  color: #999;
}

.title2ndWrapper dd {
  float: left;
}

.title2ndWrapper dd a {
  background: #fff;
  padding: 4px 5px 3px 8px;
  color: #444;
  border: 1px solid #dfe0e1;
  margin-right: 7px;
}

.title2ndWrapper dd a:after {
  padding-left: 3px;
  content: '×';
  color: #ee6055;
  font-size: 12px;
  font-weight:900;
}

.title2ndWrapper dd a:hover {
  filter:alpha(opacity=60);
  -moz-opacity:0.6;
  opacity:0.6;
  transition: .3s;
}
/* 物件一覧 サイド　*/
.sideList {
  border: 1px solid #dfe0e1;
  padding: 15px 13px;
}

.sideList h3 {
  font-size: 19px;
  font-weight: bold;
  margin-bottom: 5px;
}

.sideList h3:before {
  margin-right: 5px;
  font-family: 'Font Awesome 5 Free';
  color: #0a599c;
  font-size: 23px;
  font-weight:900;
}

.sideList h3.sideListTitle01:before {content: '\f3c5';}
.sideList h3.sideListTitle02:before {content: '\f46c';}


.sideList h4 {
  background: #f4f4f5;
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
  padding: 4px 10px;
}

.sideListCheckBox.sideListCheckBoxMadori ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sideListCheckBox.sideListCheckBoxMadori ul li {
  width: 50%;
}

.sideListCheckBox {
  width: 100%;
}
.sideListCheckBox ul {
  list-style: none;
  width: 100%;
  margin-bottom: 15px;
}
.sideListCheckBox li {
  display: block;
}
.sideListCheckBox label ,
table.todouTable label ,
table.mailTable label {
  vertical-align: middle;
  width: 100%;
  cursor: pointer;
  font-size: 13px;
  display: block;
  padding: 5px 10px 5px 0;
  position: relative;
}

.sideListCheckBox input[type="checkbox"],
table.todouTable input[type="checkbox"],
table.mailTable input[type="checkbox"] {
  display: none;
}
.sideListCheckBox .inputParts,
table.todouTable .inputParts,
table.mailTable .inputParts {
  position:relative;
  display: flex;
  cursor: pointer;
  line-height: 1.6;
}
.sideListCheckBox .inputParts::before,
table.todouTable .inputParts::before,
table.mailTable .inputParts::before {
  content: "";
  display: inline-block;
  width: 20px;
  min-width: 20px;
  height: 20px;
  border: 1px solid #999;
  border-radius: 4px;
  margin-right: 5px;
}
.sideListCheckBox input[type="checkbox"]:checked + .inputParts::after,
table.todouTable input[type="checkbox"]:checked + .inputParts::after,
table.mailTable input[type="checkbox"]:checked + .inputParts::after {
  content: "";
  display: block;
  position: absolute;
  top: -5px;
  left: 5px;
  width: 12px;
  height: 19px;
  transform: rotate(40deg);
  border-bottom: 4px solid #ef6055;
  border-right: 4px solid #ef6055;
}

/* エリア */
.sideList h3.sideListTitleTodou::before,
.sideList h3.sideListTitleArea::before{
	content: '\f279';
}
.sideListSelectTodou{
	margin-bottom: 18px;
}
.sideListSelectTodou .sideListSelectUl{
	display: block;
}
/* 沿線・エリア*/
.sideList .sideListArea{
	margin-bottom: 18px;
}
.sideList .sideListArea h4{
	background: none;
	padding: 0;
	margin-bottom: 0;
}
.sideList .sideListArea dl{
	font-size: 13px;
	padding-left: 10px;
	margin-bottom: 10px;
}
.sideList .sideListArea dt,
.sideList .sideListArea dd{
	text-indent: -1em;
	padding-left: 1em;
	word-break: break-all
}
.sideList .sideListArea dd{
	padding-left: 2em;
}
.sideList .sideListArea .area_change{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 12px;
	margin-left: -0.5em;
}
.sideList .sideListArea .area_change li{
	display: block;
	color: #fff;
	background-color: #009944;
	width: 100%;
	text-align: center;
	border-radius: 4px;
	margin-left: 0.5em;
	padding: 3px 0;
	transition: all .3s;
	cursor: pointer;
}
.sideList .sideListArea .area_change li:hover{
	opacity: 0.8;
}

/* セレクト */
ul.sideListSelectUl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 10px 0;
}

li.sideListSelectUlLi {
  padding: 5px 3px 0 3px;
}

.sideListSelectBox {
  overflow: hidden;
  width: 100%;
  text-align: center;
}

.sideListSelectBox select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  border-right: 15px solid #009944;
  border-radius: 5px;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: inset 0 0 0px 1px #e1e1e1;
  min-height: 2.1em;
}

.sideListSelectBox select::-ms-expand {
  display: none;
}

.sideListSelectBox.sideListSelect {
  position: relative;
}

.sideListSelectBox.sideListSelect::before {
  position: absolute;
  bottom: 6px;
  right: 0.25em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #fff;
  pointer-events: none;
}
.sideListSelectBox.sideListSelect:after {
  position: absolute;
  top: 6px;
  right: 0.25em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 6px solid #fff;
  pointer-events: none;
}
.sideListSelectBox.sideListSelect select {
  padding: 5px 20px 5px 5px;
}


/* footer */

.omakaseBtnWrapper {
  background: #f1f0f0 ;
  z-index: 0;
}

.omakaseBtn {
  background-image: url('../img/footer_rikuest_btn_bg2.png');
  background-repeat: repeat-y;
}

.omakaseBtn a:hover img {
  filter:alpha(opacity=10);
  -moz-opacity:1.0;
  opacity:1.0;
}

.omakaseBtn img {
  float: right;
}

.footerTop {
  position: relative;
  border-top: 1px solid #213f75;
  background: #ffffff;
}

.footerTelWrapper {
  position: relative;
  padding-top: 6px;
  overflow: visible;
}

ul.footerTelBox {
  position: relative;
  float: right;
  display: flex;
  -ms-flex-wrap: wrap;flex-wrap: wrap;
  overflow: visible;
  z-index: 1;
}

.footerTelMain > div::before {
  content: "";
  display: inline-block;
  background: url(../img/footer_tel.png) no-repeat;
  background-size: contain;
  vertical-align: middle;
  width: 65px;
  height: 51px;
}

.footerTelMain > div {
  font-size: 35px;
  font-weight: bold;
  color: #1d2088;
  letter-spacing: 0;
  margin-top: 6px;
}

ul.footerTelTouzai {
  font-size: 23px;
  font-weight: bold;
  color: #222;
  margin-left: 20px;
  letter-spacing:-0.03em;
  margin-top: 7px;
  z-index: 99999;
}

li.footerTelHigashi::before {
  content: '東日本';
  background: #eaeaea;
  font-size: 11px;
  padding: 4px;
  margin-right: 5px;
  vertical-align: top;
}

.footerTelTouzai i {
  color: #a1bfdd;
  margin-left: 6px;
  font-size: 18px;
  vertical-align: 2px;
  font-weight:900;
}

li.footerTelNishi::before {
  content: '西日本';
  background: #eaeaea;
  font-size: 11px;
  padding: 4px;
  margin-right: 5px;
  margin-top: -5px;
  vertical-align: top;
}

li.footerTelHigashi {
  display: inline-block;
}

.footerMainWrapper {
  position: relative;
  background: #f1f0f0;
  padding: 15px 0;
}

ul.footerMainUl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
          justify-content: space-between;
}

ul.footerMainUl li.footerBtnLi {
  width: 49%;
}

ul.footerMainUl li.footerMainTodouLi {
  width: 100%;
}

dl.footerMainTodou dd {
  margin-left: 110px;
  word-break: keep-all;
}

ul.footerBtnUl {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

ul.footerBtnUl li {
  width:49%;
  background: #fff;
  display: block;
  text-align: center;
  margin-bottom: 10px;
}
ul.footerBtnUl li:not(:nth-child(even)) {
  margin-right: 2%;
}

ul.footerBtnUl li a {
  padding: 13px 0 5px 0;
  display: block;
  color: #444;
  font-size: 12px;
}

ul.footerBtnUl li a:hover {
  background: #213f75;
  transition: .3s;
  color: #fff;
}

ul.footerBtnUl li a:hover i {
  color: #ffffff;
  transition: .3s;
}

ul.footerBtnUl i {
  color: #1d2088;
  font-weight: 900;
  font-size: 38px;
  display: block;
  margin-bottom: 5px;
}
.footerMainTodouLi h5 {
  color: #213f75;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 4px;
}

dl.footerMainTodou {
  font-size: 12px;
}

dl.footerMainTodou dt {
  float: left;
  color: #888;
  font-weight: bold;
  width: 110px;
  background-color: #e8e8e8;
}

dl.footerMainTodou dt:not(:last-of-type),
dl.footerMainTodou dd:not(:last-of-type) {
  border-bottom: solid 1px #ccc;
}

dl.footerMainTodou dt,
dl.footerMainTodou dd {
  padding: 5px 0 5px 1em;
}

dl.footerMainTodou dd a {
  padding-right: 15px;
  color: #444;
  text-decoration: underline;
}
dl.footerMainTodou dd a:hover {
  text-decoration: none;
}

.footerTelText {
  cursor: pointer;
}

.footerTelText:hover{
  color: #999;
  transition: .3s;
}

dl.footerTelFukiDl dt {
  float: left;
  width: 45px;
  font-size: 15px;
  padding-top: 9px;
  font-weight: bold;
}

dl.footerTelFukiDl dd {
  border-left: 1px solid #ccc;
  margin-left: 60px;
  padding-left: 15px;
}

.footerTelFukidashi {
  display: none;
  line-height: 160%;
  width: 550px;
  position: absolute;
  font-weight: normal;
  top: 10px;
  right: 210px;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 5px;
  background: #444;
  color: #fff;
  filter:alpha(opacity=90);
  -moz-opacity:0.9;
  opacity:0.9;
  z-index: 999;
}
.footerTelText:hover + .footerTelFukidashi {
  display: block;
}

p.footerLogo {
  float: left;
  margin-top: 12px;
}

.footerLogo a {
  width: 280px;
  display: block;
  margin: 0 auto;
}

.footerLogo img {
  width: 100%;
}

.wrapper.footerCenter {
  text-align: center;
  margin: 0 auto;
}

.wrapper.footerNavi {
  text-align: center;
  padding: 10px 0;
  word-break: keep-all;
}

.wrapper.footerNavi a {
  color: #393c43;
  font-size: 13px;
  padding-left: 18px;
}

.wrapper.footerNavi a:hover {
  text-decoration: underline;
  transition: .3s;
}

p.footerShouText {
  background: #213f75;
  color: #fff;
  text-align: center;
  font-size: 12px;
  margin-top: 8px;
  position: relative;
}

p.footerCoppy {
  background: #213f75;
  color: #b3b9c6;
  text-align: center;
  font-size: 12px;
}

/* 検索結果 Not found */
.notFound h3 {
  font-size: 26px;
  text-align: center;
  padding: 20px 0;
}
.notFoundWrap {
  background: #f1f0f0;
  padding: 15px;
  font-size: 14px;
}
.notFoundWrap > p:first-of-type {
  text-align: center;
  font-weight: 600;
}
.notFoundWrap > div {
  background: #fff;
  margin-top: 10px;
  padding: 15px;
}
.notFoundWrap .tel {
  padding-top: 10px;
}
.notFoundWrap .tel dt {
  font-weight: 600;
}
.notFoundWrap .tel dd {
  font-size: 28px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.notFoundWrap .tel dd::before {
  content: "";
  display: inline-block;
  background: url(../img/free_dial.png) no-repeat;
  background-size: contain;
  width: 36px;
  height: 30px;
}
.notFoundWrap .tel dd span {
  font-size: 12px;
}
.requestBtn {
  text-align: center;
  padding: 10px 0 0 0;
}
.requestBtn a {
  display: inline-block;
  padding: .5em 1em;
  border-radius: 4px;
  border-bottom: 2px solid #e87e11;
  background-color: #ff9a44;
  color: #fff;
  font-weight: 600;
}
.requestBtn a:hover {
  opacity: .8;
}

/* 404 */
#notFoundBox {
  padding: 40px 0 20px 0;
}
#notFoundBox h2 {
  font-size: 40px;
  text-align: center;
  color: #1d2088;
  margin-bottom: 20px;
}
#notFoundBox h2 + p {
  text-align: center;
}

/* メンテナンス中 */
#maintenance {
  border-top: solid 10px #1d2088;
  text-align: center;
  padding: 10% 0 0 0;
}
#maintenance h1 + p {
  color: #1d2088;
  font-weight: 600;
  margin-top: 10px;
}
.maintenanceMs {
  background: #fff;
  margin: 20px auto;
  padding: 25px 10px;
  width: 80%;
}
.maintenanceMs p {
  font-size: 14px;
}

/* TOP アメニティ バナー */
.banner_sp {
  display: none;
}

.liveclub_bnr {
  max-width: 100%;
}

.liveclub_bnr img {
  width: 100%;
}

/* etc */
.clear {
  clear: both;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

a:hover img {
  filter:alpha(opacity=60);
  -moz-opacity:0.6;
  opacity:0.6;
  transition: .3s;
}

a {
  cursor: pointer;
  color: #021567;
}

a, a:link, a:active, a:visited {
  text-decoration:none;
}

br.clear {
  clear:both;
}

p.text-center {
  text-align: center;
}

.phot-center {
  text-align: center;
  margin: 15px;
}

.mt5 {
  margin-top:5px;
}
.mt10 {
  margin-top:10px;
}
.mt20 {
  margin-top:20px;
}
.mt30 {
  margin-top:30px;
}

.pt5 {
  padding-top: 5px;
}

.pt10 {
  padding-top: 10px;
}

.pt20 {
  padding-top: 20px;
}

.pt25 {
  padding-top: 25px;
}

.pt30 {
  padding-top: 30px;
}

.ofi {
  object-fit: cover;
  object-position: 50% 50%;
  font-family: 'object-fit: cover; object-position: 50% 50%;';
}

	.buildListShousai .check_box input{
		display: none;
	}

	.buildListShousai .check_box .inputParts{
		position: relative;
    width: 20px;
    height: 20px;
    display: block;
    cursor: pointer;
	}

	.buildListShousai .check_box .inputParts::before{
		content: "";
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid #999;
    border-radius: 4px;
	}

	.checkboxInput:checked + .inputParts::after{
		content: "";
    display: block;
    position: absolute;
    top: -5px;
    left: 5px;
    width: 12px;
    height: 19px;
    transform: rotate(40deg);
    border-bottom: 4px solid #ef6055;
    border-right: 4px solid #ef6055;
	}


.flat_inquiry_area{
	position: fixed;
	width: 100%;
	bottom: 0;
	z-index: 999;
}

.flat_inquiry_area .float_inquiry_wrapper{
	height: 60px;
	background-color:rgba(0,0,0,0.8);
	padding: 20px 0;
}

.flat_inquiry_area .float_inquiry_wrapper ul li{
	color: #ffffff;
	text-align: center;
}

.flat_inquiry_area .float_inquiry_wrapper ul li a{
	color: #ffffff;
	background-color: #ef6055;
	padding: 12px 16px;
	border-radius: 6px;
	font-weight: bold;
	font-size: 12px;
	transition: 0.3s;
}

.flat_inquiry_area .float_inquiry_wrapper ul li a:hover{
	background-color:#F38981;
	transition: 0.3s;
}

/*レコメンド物件*/

#near_bukken_list{
	padding-top: 24px;
}
table.near_bukken_area{
	display: block;
	width: 100%;
	margin-bottom: 40px;
}

tbody.near_bukken_inner{
	width:100%;
  display:flex;
  justify-content: center;
	flex-wrap:wrap;
}

tr.near_bukken_wrapper{
  display: block;
	width: 19%;
	border: 1px #cccccc solid;
	border-radius: 6px 6px 0 0;
}

tr.near_bukken_wrapper + tr.near_bukken_wrapper{
	margin-left: 1.25%;
}

tr.near_bukken_wrapper td{
	width: 218px;
}

.near_bukken_wrapper td .area{
	background-color: #0A599C;
	border-radius: 4px 4px 0 0;
	padding: 4px 6px;
	width: calc(100% + 2px);
	margin-left: -1px;
	margin-top: -1px;
}

.near_bukken_wrapper td .area p{
	color: #ffffff;
}

.near_bukken_wrapper td .td_list_img .img_wrapper{
	position: relative;
	overflow: hidden;
	padding-top: 100%;
	border-bottom: 1px #cccccc solid;
}

.near_bukken_wrapper td .td_list_img img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	object-fit: cover;
}

.near_bukken_wrapper td .other ul{
	padding: 8px 4px;
}

.near_bukken_wrapper td .other li:nth-last-child(2){
	padding-bottom: 8px;
}

.near_bukken_wrapper td .other li p{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	word-break: break-all;
	line-height: 1.5;
}

.near_bukken_wrapper td .other li .txt_st{
	font-size: 80%;
}

.near_bukken_wrapper td .other li .txt_or{
	color: #FF785B;
}

.near_bukken_wrapper td .other li .txt_or .txt_price{
	font-weight: bold;
}

.near_bukken_wrapper td .other li .txt_or .txt_rev{
	color: #021567;
}

@media (max-width: 1099px) {
  .wrapper {
    width: 100%;
    padding: 0 5px;
  }
  .main2nd ,.main2nd_not_favorite{
    width: 72%;
  }

  .side2nd {
    width: 25%;
  }
}

@media (max-width: 900px){
a.buildListSyousaiBtn {
	border-radius: 0;
	border: none;
	padding: 0;
	text-decoration: none !important;
	color: #ffffff;
	background-color:transparent;
}
.mainCol .key_search_box input{
	width: 90%;
}
.mainCol .key_search_box .key_search_btn{
	width: 70px;
}

/*レコメンド物件*/
	.near_bukken_wrapper td .other li .txt_st{
		font-size: 100%;
	}

	.near_bukken_wrapper td .other li .txt_or .txt_price{
		font-size: 18px;
	}
}

@media(min-width:901px) {

	header .header_band_area{
		background-color: #213f75;
		margin-bottom: 20px;
	}

	header .header_band_area h1{
		color: #ffffff;
		width: 1100px;
		margin: 0 auto;
		padding-left: 8px;
	}

  #nav-input {
    display: none;
  }
  .searchListControl {
    display: none;
  }
  .tableHeader {
    background: #f4f4f5;
    padding: 5px 0;
  }
  .tableHeader ul {
    display: flex;
    align-items: center;
    font-size: 12px;
  }
  .tableHeader ul li {
    text-align: center;
    line-height: 1.4;
  }
  .tableHeader > ul > li:first-of-type,
  .buildListShousai .madoriImage {
    width: 18%;
  }
  .tableHeader > ul > li:nth-of-type(2),
  .buildListShousai .buildShousai {
    width: 58%;
  }
  .shousaiHeyaBox .tableHeader > ul > li:nth-of-type(2),
  .shousaiHeyaBox .buildListShousai .buildShousai {
    width: 74%;
  }
  .buildListShousai .SyousaiLink {
    width: 16%;
    /**text-align: center;**/
  }

	/**お気に入り登録・解除**/
	.doFavoriteEvent, .doFavoriteEvent_active{
		margin-bottom: 38px;
		transition:0.3s;
	}

	.doFavoriteEvent:hover, .doFavoriteEvent_active:hover{
		opacity: 0.5;
		transition:0.3s;
	}
	.doFavoriteEvent a .buildList_favorite{
		width: 78px;
		height: 26px;
		background: url("../img/heart_before.svg") no-repeat;
		background-position-x:22px;
		background-position-y:6px;
		transition: 0.3s;
		background-size: 22px;
	}
  /* IE10 11ハック */
  _:-ms-input-placeholder, :root .doFavoriteEvent a .buildList_favorite {
    background-position-x: 14px;
    background-size: 50px;
  }
	.doFavoriteEvent_active a .buildList_favorite{
		width: 78px;
		height: 26px;
		background: url("../img/heart_after.svg") no-repeat;
		background-position-x:22px;
		background-position-y:6px;
		transition: 0.3s;
		background-size: 22px;
  }
  _:-ms-input-placeholder, :root .doFavoriteEvent_active a .buildList_favorite {
    background-position-x: 14px;
    background-size: 50px;
  }

	.doFavoriteEvent .favorite_before, .doFavoriteEvent_active .favorite_after{
		font-size: 12px;
		letter-spacing: -1px;
		padding-top: 25px;
	}

	.doFavoriteEvent .favorite_after, .doFavoriteEvent_active .favorite_before{
		display: none;
	}

	.favorite_before_mobile, .favorite_after_mobile, .favorite_before_mobile_small, .favorite_after_mobile_small{
		display: none;
	}
	/**お気に入り登録・解除ここまで**/

  .tableHeader > ul li ul li:first-of-type,
  .buildShousai .floor {
    width: 18%;
  }
  .tableHeader > ul li ul li:nth-of-type(2),
  .buildShousai .price {
    width: 52%;
  }
  .shousaiHeyaBox .buildShousai ul li.shikiRei,
  .shousaiHeyaBox .tableHeader > ul li ul li:nth-of-type(5),
  .tableHeader > ul li ul li:nth-of-type(3),
  .tableHeader > ul li ul li:nth-of-type(4),
  .buildShousai .floorDetail,
  .buildShousai .state {
    width: 22%;
  }
  .tableHeader > ul::after {
    content: "";
    display: inline-block;
    width: 14%;
  }
  .shousaiHeyaBox .tableHeader > ul::after {
    display: none;
  }

  .buildListShousai,
  .buildListShousai .madoriImage {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }

  .buildListShousai .madoriImage img {
    display: block;
  }
  .seriesLabel {
    text-align: center;
  }
  .buildShousai ul {
    display: flex;
    align-items: center;
    padding: 10px 0;
  }
  .buildShousai ul li {
    text-align: center;
    font-size: 13px;
  }
  ul.buildListSmallUl {
    display: flex;
  }

  ul.buildListSmallUl li {
    float: left;
    padding: 0 6px;
    margin: 0 0 7px 5px;
    font-size: 11px;
  }
  .buildListBtnIn.firstBukken .buildListShousai {
    padding: 10px 0;
  }
  .buildListBtnWrapper .buildListShousai:not(:last-of-type),
  .shousaiHeyaList .buildListShousai:not(:last-of-type) {
    border-bottom: solid 1px #dedede;
    padding: 10px 0 10px 0;
  }
  .nav_drawer_mobile{
  display: none;
}


}

@media(min-width:601px){

.flat_inquiry_area .float_inquiry_wrapper ul li a{
	font-size: 16px;
}
}

@media(max-width:601px){

/*レコメンド物件*/
	table.near_bukken_area{
			display: flex;
		}

	tbody.near_bukken_inner{
		display: flex;
		overflow-x: scroll;
		flex-wrap: nowrap;
    padding-bottom: 6px;
    justify-content: normal;
	}

	tbody.near_bukken_inner::-webkit-scrollbar{
	height: 8px;
	}

	tbody.near_bukken_inner::-webkit-scrollbar-track{
		background: #cccccc;
		border-radius: 4px;
	}

	tbody.near_bukken_inner::-webkit-scrollbar-thumb{
		border-radius: 4px;
		background: #666666;
	}

	tr.near_bukken_wrapper{
		display: flex;
    width: auto;
    min-width: 242px;
    margin: 0 auto;
  }

	tr.near_bukken_wrapper + tr.near_bukken_wrapper{
		margin-left: 8px;
	}

	tr.near_bukken_wrapper td{
		width: 240px;
	}

  /*バナー*/
  .bannerBox .banner_sp{
    margin-bottom: 10px;
  }
}

.pageup {
  display: block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: url(../img/pagetop.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 768px), print { 
  #pageup {
    position: fixed;
    z-index: 1030;
    margin: 0;
    width: auto;
    right: 8px;
    bottom: 30px;
  }
  .pageup {
    width: 41px;
    height: 38px;
  }
}
@media (max-width: 767px) {
  .pageup {
    width: 30px;
    height: 28px;
    margin: 12px auto 10px;
  }
}