/*===================================
現在の検索条件
===================================*/

.current-conditions {
	border: #efe3f2 15px solid;
	background: #fff;
	padding: 40px;
}

.current-conditions h5 {
	font-size: 1.6rem;
}

.kekkabox01 {
	display: flex;
	justify-content: space-between;
}

.kekka {
	border-top: none;
	width: 49%;
	font-size: 1.4rem;	
}
.kekka02 {
	border-top: none;
	width: 100%;
	font-size: 1.4rem;
	margin-bottom: 20px;	
}

dl.kekka dl,dl.kekka dt,dl.kekka dd,
dl.kekka02 dl,dl.kekka02 dt,dl.kekka02 dd {
	margin: 0;
	padding: 0;
}

dl.kekka dt,dl.kekka dd,
dl.kekka02 dt,dl.kekka02 dd {
	padding: 5px;
}

dl.kekka dt,
dl.kekka02 dt {
	clear: left;
	float: left;
	width: 100px;
	background: #a97cb6;
	text-align: center;
	color:#fff;
}

dl.kekka dd,
dl.kekka02 dd {
	margin-left:120px;
	text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
	color:#999999;

}

/*==================================================
アコーディオンのためのcss
===================================*/

/*アコーディオン全体*/

.accordion-area {
   
}



/*アコーディオンタイトル*/
.henkou {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1rem;
    font-weight: normal;
    padding: 5px;
    transition: all .5s ease;
	background: #e9be54;
	text-align: center;
	color:#fff;
	width: 400px;
	margin: auto;

	border-radius: 20px;
	font-size: 1.6rem;
}

/*アイコンの＋と×*/
.henkou::before,
.henkou::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #fff;
    
}
.henkou::before{
    top:48%;
    right: 15px;
    transform: rotate(0deg);
	color:#fff;
    
}
.henkou::after{    
    top:48%;
    right: 15px;
    transform: rotate(90deg);
	color:#fff;

}
/*　closeというクラスがついたら形状変化　*/
.henkou.close::before{
  transform: rotate(45deg);
}

.henkou.close::after{
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    background: #a97cb6;
    margin:40px 0 0px 0;
    padding: 40px;
}
.inner {
    background: #fff;
    padding: 40px;
	margin-bottom: 20px;
}
.box h5 {
    font-size: 1.6rem;
	color:#fff;
	margin-bottom: 10px;
}
.box .select-money h5 {
	color:#383838;
}


.henkounaiyou {
	border-bottom: 1px dotted #e0e0e0;
	padding-bottom: 20px;
}



dl.henkounaiyou dt,dl.henkounaiyou dd {
	padding: 5px;
}


dl.henkounaiyou dt {
	clear: left;
	float: left;
	width: 100px;
	text-align: left;
	color:#884f9c;
	position: relative;
	padding-left: 50px;
	font-size: 1.4rem;
}
dl.henkounaiyou dt img {
	width: 35px;
	height: auto;
	margin-right: 10px;
	position: absolute;
	left: 0;
	top:0;
}

dl.henkounaiyou dd {
	margin-left:120px;
	position: relative;
	padding-top: 8px;
}
dl.henkounaiyou dd p {
	text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
	margin: 0;
	padding: 0;
	font-size: 1.4rem;
	color: #999999;
	width: 80%;
}
dl.henkounaiyou dd .henkou-button {
	position: absolute;
	right:0;
	top:5px;
	background: #7d7d7d;
	color:#fff;
	font-size: 1.2rem;
	padding: 0 10px;
	border-radius: 15px;
	text-align: center;
}
dl.henkounaiyou dd .henkou-button.active {
	background: #e9be54;
}
@media screen and (max-width: 834px) {
	
	
.current-conditions {
	border: #efe3f2 10px solid;
	background: #fff;
	padding: 10px;
}

.current-conditions h5 {
	font-size: 1.4rem;
	margin-bottom: 5px;
}

	
.kekkabox01 {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.kekka {
	border-top: none;
	width: auto;
	font-size: 1.2rem;
	margin: 0;
	
}
.kekka02 {
	border-top: none;
	width: 100%;
	font-size: 1.2rem;
	margin: 0;
	margin-bottom: 20px;	
	
}

dl.kekka dl,dl.kekka dt,dl.kekka dd,
dl.kekka02 dl,dl.kekka02 dt,dl.kekka02 dd {
	margin: 0;
	padding: 0;
}

dl.kekka dt,dl.kekka dd,
dl.kekka02 dt,dl.kekka02 dd {
	padding: 5px;
	box-sizing: border-box;
}

dl.kekka dt,
dl.kekka02 dt {
	clear: left;
	float: none;
	width: 100%;
	text-align: center;
	color:#fff;
}

dl.kekka dd,
dl.kekka02 dd {
	margin-left:auto;
	text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
	color:#999999;

}

/*==================================================
アコーディオンのためのcss
===================================*/

/*アコーディオン全体*/

.accordion-area {
   
}



/*アコーディオンタイトル*/
.henkou {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1rem;
    font-weight: normal;
    padding: 5px;
    transition: all .5s ease;
	text-align: center;
	color:#fff;
	width: 100%;
	margin: auto;
box-sizing: border-box;
	border-radius: 20px;
	font-size: 1.3rem;
}

/*アイコンの＋と×*/
.henkou::before,
.henkou::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #fff;
    
}
.henkou::before{
    top:48%;
    right: 15px;
    transform: rotate(0deg);
	color:#fff;
    
}
.henkou::after{    
    top:48%;
    right: 15px;
    transform: rotate(90deg);
	color:#fff;

}
/*　closeというクラスがついたら形状変化　*/
.henkou.close::before{
  transform: rotate(45deg);
}

.henkou.close::after{
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    margin:20px 0 0px 0;
    padding: 15px;
}
.inner {
    background: #fff;
    padding: 15px;
	margin-bottom: 20px;
}
.box h5 {
    font-size: 1.4rem;
	color:#fff;
	margin-bottom: 10px;
}



.henkounaiyou {
	border-bottom: 1px dotted #e0e0e0;
	padding-bottom: 10px;
}



dl.henkounaiyou dt,dl.henkounaiyou dd {
	padding: 5px;
}


dl.henkounaiyou dt {
	clear: left;
	float: none;
	width: auto;
	text-align: left;
	position: relative;
	padding-left: 30px;
	font-size: 1.3rem;
}
dl.henkounaiyou dt img {
	width: 25px;
	height: auto;
	margin-right: 10px;
	position: absolute;
	left: 0;
	top:5px;
}

dl.henkounaiyou dd {
	margin-left:auto;
	position: relative;
	padding-top: 8px;
}
dl.henkounaiyou dd p {
	text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
	margin: 0;
	padding: 0;
	font-size: 1.2rem;
	color: #999999;
	width: 95%;
}
dl.henkounaiyou dd .henkou-button {
	position: absolute;
	right:0;
	top:-30px;
	background: #7d7d7d;
	color:#fff;
	font-size: 1rem;
	padding: 0 10px;
	border-radius: 15px;
	text-align: center;
}
	
	
.accordion-area .buttonbox {
	display: flex;
	justify-content:space-between;
	padding: 0px;
}
	
.accordion-area .buttonbox .button-clear {
		font-size: 1.2rem;
	border-radius: 10px;
}
.accordion-area .buttonbox .button-go {
		font-size: 1.2rem;
	border-radius: 10px;
}
.accordion-area .buttonbox .button-go a:after {
  display: none;
}

	
	
}



/*===================================
検索結果一覧
===================================*/

.search-result {
	padding: 60px 0;
}
.search-result .head {
	margin-bottom: 40px;
}
.search-result .head .count {
	text-align: right;
	font-family: 'Noto Serif JP', serif;
	font-size: 1.8rem;
}
.search-result .head .count span {
	font-size: 3rem;
	color:#e9be54;
	margin: 0 10px;
}

.Pagination {
  display: flex;
	justify-content: flex-end;
  margin: 0 0 0 auto;
}
.Pagination-Item-Link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 30px;
  height: 30px;
  background: #ededed;
  font-size: 1.2rem;
  color: #383838;
  font-weight: bold;
}
.Pagination-Item-Link-Icon {
  width: 10px;
}
.Pagination-Item-Link.isActive {
  background: #884f9c;
  color: #fff;
  pointer-events: none;
}
.Pagination-Item-Link:not(.isActive):hover {
  background: #884f9c;
  color: #fff;
}
.Pagination > * + * {
  margin-left: 5px;
}


.resultlist {
	background: #efe3f2;
	padding: 20px 20px 5px 20px;
	margin-bottom: 30px;
}
.resultlist.rank-diamond {
	background: #fecfcf !important;
	padding: 20px 20px 5px 20px;
	margin-bottom: 30px;
}
.resultlist .inner {
	background: #fff;
	padding: 20px;
}
.resultlist .head  {
	position: relative;
	border-bottom: 1px solid #e0e0e0;
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.resultlist .pickupicon {
	position: relative;
	width: 200px;
	top:-10px;
	left: -55px;
}
.resultlist .pickupicon img {
	width: 100%;
	height: auto;
	
}

.resultlist .head .keisai  {
	position: absolute;
	right: 0;
	top:0;
	line-height: 1.4;
}
.resultlist .head .keisai li:first-child  {
	font-size: 1.4rem;
}
.resultlist .head .keisai li:first-child span  {
	font-size: 2rem;
	color:#e9be54;
}
.resultlist .head .keisai li:last-child  {
	font-size: 1.2rem;
	color:#999999;
}


.resultlist .head .area  {
	font-size: 1.4rem;
	color:#999999;
}
.resultlist .head h3  {
	font-size: 3rem;
	color:#e9be54;
	margin-bottom: 10px;
}
.resultlist .head .tag  {
	display: flex;
}
.resultlist .head .tag li  {
	background: #e9be54;
	text-align: center;
	color:#fff;
	font-size: 1.2rem;
	margin-right: 10px;
	padding: 0 10px;
	border-radius: 3px;
}


.listmain {
	display: flex;
	justify-content: space-between;
}
.listmain_l {
	width: 55%;
}
.listmain_r {
	width: 40%;
}
.listmain_l h4 {
	font-size: 2rem;
}


.listmain.richplanlist {
	display: flex;
	flex-direction: column-reverse;
	justify-content: space-between;
}
.listmain.richplanlist .listmain_l {
	width: auto;
}
.listmain.richplanlist .listmain_r {
	width: auto;
	margin-bottom: 20px;
}

dl.listdeta dt{
	padding: 3px 10px;
}
dl.listdeta dd{
	padding: 3px;
}


dl.listdeta dt {
	clear: left;
	float: left;
	width: 80px;
	color:#fff;
	text-align: center;
	position: relative;
	font-size: 1.2rem;
	background: #a97cb6;
	line-height: 1.5;
	margin-bottom: 5px;
	border-radius: 3px;
}


dl.listdeta dd {
	margin-left:110px;
	position: relative;
	font-size: 1.2rem;
	line-height: 1.5;
	margin-bottom: 5px;
	
}


.listmain .tag {
	display: flex;
	flex-wrap: wrap;
}

.listmain .tag li {
	color:#999999;
	border: 1px solid #999;
	border-radius: 20px;
	font-size: 1rem;
	padding: 0 10px;
	margin-left: 5px;
	margin-bottom: 5px;
	
}

.listmain_r img {
width: 100%;
	height: 280px;
object-fit: contain;
}

.bottom {
	background: #a97cb6;
	padding: 20px;
	margin-top: 40px;
}

.resultlist .buttonbox .button-clear i {
	color:#a97cb6;
	margin-right: 10px;
}



@media screen and (max-width: 834px) {
	
/*===================================
検索結果一覧
===================================*/

.search-result {
	padding: 30px 0;
}
.search-result .head {
	margin-bottom: 20px;
}
.search-result .head .count {
	text-align: right;
	font-family: 'Noto Serif JP', serif;
	font-size: 1.2rem;
}
.search-result .head .count span {
	font-size: 2.4rem;
	margin: 0 10px;
}

.Pagination {
  display: flex;
	justify-content: flex-end;
  margin: 0 0 0 auto;
}
.Pagination-Item-Link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 25px;
  height: 25px;
  background: #ededed;
  font-size: 1.2rem;
  color: #383838;
  font-weight: bold;
}
.Pagination-Item-Link-Icon {
  width: 10px;
}
.Pagination-Item-Link.isActive {
  color: #fff;
  pointer-events: none;
}
.Pagination-Item-Link:not(.isActive):hover {
  color: #fff;
}
.Pagination > * + * {
  margin-left: 3px;
}


.resultlist {
	padding: 10px 10px 5px 10px;
	margin-bottom: 15px;
}
.resultlist.rank-diamond {
	background: #fecfcf !important;
	padding: 10px 10px 5px 10px;
	margin-bottom: 15px;
}
.resultlist .inner {
	background: #fff;
	padding: 10px;
}
.resultlist .head  {
	position: relative;
	border-bottom: 1px solid #e0e0e0;
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.resultlist .pickupicon {
	position: absolute;
	width: 120px;
	top:-0px;
	left: auto;
	right:-20px;
}
.resultlist .pickupicon img {
	width: 100%;
	height: auto;
}

.resultlist .head .keisai  {
	position: relative;
	text-align: left;
	right: auto;
	left:0 !important;
	top:0;
	line-height: 1.4;
}
.resultlist .head .keisai li:first-child  {
	font-size: 1rem;
}
.resultlist .head .keisai li:first-child span  {
	font-size: 1.5rem;
}
.resultlist .head .keisai li:last-child  {
	font-size: 1rem;
	color:#999999;
	position: relative;
}


.resultlist .head .area  {
	font-size: 1.2rem;
	color:#999999;
}
.resultlist .head h3  {
	font-size: 1.8rem;
	margin-bottom: 10px;
}
.resultlist .head .tag  {
	display: flex;
	flex-wrap: wrap;
}
.resultlist .head .tag li  {
	text-align: center;
	color:#fff;
	font-size: 1rem;
	margin-right: 5px;
	padding: 0 10px;
	border-radius: 3px;
}


.listmain {
	display: flex;
	flex-direction: column-reverse;
	justify-content: space-between;
}
.listmain_l {
	width: 100%;
}
.listmain_r {
	width: 100%;
	margin-bottom: 10px;
}
.listmain_l h4 {
	font-size: 1.6rem;
}


dl.listdeta dt{
	padding: 3px 10px;
}
dl.listdeta dd{
	padding: 3px;
}


dl.listdeta dt {
	clear: left;
	float: left;
	width: 15%;
	color:#fff;
	text-align: center;
	position: relative;
	font-size: 1rem;
	line-height: 1.5;
	margin-bottom: 5px;
	border-radius: 3px;
}


dl.listdeta dd {
	margin-left:23%;
	position: relative;
	font-size: 1rem;
	line-height: 1.5;
	margin-bottom: 5px;
	
}


.listmain .tag {
	display: flex;
	flex-wrap: wrap;
}

.listmain .tag li {
	color:#999999;
	border: 1px solid #999;
	border-radius: 20px;
	font-size: 1rem;
	padding: 0 10px;
	margin-left: 5px;
	margin-bottom: 5px;
	
}

.listmain_r img {
width: 100%;
	height: 240px;
object-fit: contain;
}

.bottom {
	padding: 20px;
	margin-top: 20px;
}

.resultlist .buttonbox .button-clear i {
	margin-right: 10px;
}
	
	
.resultlist .buttonbox {
	display: flex;
	justify-content:space-between;
	padding: 0px;
}
	
.resultlist .buttonbox .button-clear {
		font-size: 1.1rem;
	border-radius: 10px;
}
.resultlist .buttonbox .button-go {
		font-size: 1.2rem;
	border-radius: 10px;
}
.resultlist .buttonbox .button-go a:after {
  display: none;
}

	
}


.tabs {
  display: flex;
  flex-wrap: wrap;
	margin-bottom: 20px;
}

.tab_label {
  color: #222;
	background: #ededed;
  font-weight: bold;
  border: solid 2px #ededed;
  position: relative;
  z-index: 1;
  cursor: pointer;
  flex: 1;
  padding: 5px 0;
  margin: 0; 
	text-align: center;
}

.tab_label:hover {
  opacity: 0.75;
}

.tab_content {
  flex: 100%;
  display: none;
  overflow: hidden;
}

.tabs input {
  display: none;
}

.tabs input:checked + .tab_label {
  color: #fff;
  background-color: #884f9c;
	border: solid 2px #884f9c;
}
.tabs input:checked + .tab_label::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #884f9c transparent transparent transparent;
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  transition: all 0.3s ease 0s;
}

#tab01:checked ~ #tab01_content,
#tab02:checked ~ #tab02_content,
#tab03:checked ~ #tab03_content {
  display: block;
}

.tab_content{
  position: relative;
  animation: fadeIn 1s ease;
}


@media screen and (max-width: 834px) {
	
.tabs {
  display: flex;
  flex-wrap: wrap;
	margin-bottom: 20px;
}

.tab_label {
  color: #222;
	background: #ededed;
  font-weight: bold;
  border: solid 1px #ededed;
  position: relative;
  z-index: 1;
  cursor: pointer;
  flex: 1;
  padding: 2px 0;
  margin: 0; 
	text-align: center;
	font-size: 1.4rem;
}

.tab_label:hover {
  opacity: 0.75;
}

.tab_content {
  flex: 100%;
  display: none;
  overflow: hidden;
}

input[name="tab_switch"] {
  display: none;
}

.tabs input:checked + .tab_label {
  color: #fff;
}
.tabs input:checked + .tab_label::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  transition: all 0.3s ease 0s;
}

#tab01:checked ~ #tab01_content,
#tab02:checked ~ #tab02_content,
#tab03:checked ~ #tab03_content {
  display: block;
}

.tab_content{
  position: relative;
  animation: fadeIn 1s ease;
}

	
}



.pickup-tag {
	display: flex;
	flex-wrap: wrap;
	margin-top: 10px;
}

.pickup-tag li {
  display: inline-block;
  position: relative;
  height: 40px;/*リボンの高さ*/
  line-height: 40px;/*リボンの高さ*/
  text-align: center;
  padding: 0 30px;/*横の大きさ*/
  font-size: 1.4rem;/*文字の大きさ*/
  background: #f57a78;/*塗りつぶし色*/
  color: #FFF;/*文字色*/
  box-sizing: border-box;
  margin-right: 10px;
	margin-bottom: 10px;
}

.pickup-tag li:before, .pickup-tag li:after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 1;
}

.pickup-tag li:before {
  top: 0;
  left: 0;
  border-width: 20px 0px 20px 15px;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
}

.pickup-tag li:after {
  top: 0;
  right: 0;
  border-width: 20px 15px 20px 0px;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}


@media screen and (max-width: 834px) {
.pickup-tag {
	display: flex;
	flex-wrap: wrap;
	margin-top: 10px;
}

.pickup-tag li {
  display: inline-block;
  position: relative;
  height: 30px;/*リボンの高さ*/
  line-height: 30px;/*リボンの高さ*/
  text-align: center;
  padding: 0 30px;/*横の大きさ*/
  font-size: 1.2rem;/*文字の大きさ*/
  background: #f57a78;/*塗りつぶし色*/
  color: #FFF;/*文字色*/
  box-sizing: border-box;
  margin-right: 10px;
	margin-bottom: 10px;
}

.pickup-tag li:before, .pickup-tag li:after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 1;
}

.pickup-tag li:before {
  top: 0;
  left: 0;
  border-width: 15px 0px 15px 15px;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
}

.pickup-tag li:after {
  top: 0;
  right: 0;
  border-width: 15px 15px 15px 0px;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}
	
	
}


/*===================================
サイドピックアップ
===================================*/

.top-03_r {
	
}

.top-03_r .resultlist.rank-diamond {
	background: #fecfcf !important;
	padding: 10px 10px 5px 10px;
	margin-bottom: 20px;
	box-sizing: border-box;
}
.top-03_r .resultlist .inner {
	background: #fff;
	padding: 10px;
	margin: 0 0 6px 0;
}
.resultlist .head  {
	position: relative;
	border-bottom: 1px solid #e0e0e0;
	padding-bottom: 10px;
	margin-bottom: 10px;
}

.top-03_r .resultlist .pickupicon {
	position: relative;
	width: 120px;
	top:-10px;
	left: -20px;
}
.top-03_r .resultlist .pickupicon img {
	width: 100%;
	height: auto;
}

.top-03_r .resultlist .head .area  {
	font-size: 1.2rem;
	color:#999999;
	margin-top: -10px;
}
.top-03_r .resultlist .head h3  {
	font-size: 1.8rem;
	color:#884f9c;
	margin-bottom: 5px;
}
.top-03_r .resultlist .head .tag  {
	display: flex;
	flex-wrap: wrap;
}
.top-03_r .resultlist .head .tag li  {
	background: #ffc737;
	text-align: center;
	color:#fff;
	font-size: 1rem;
	margin-right: 10px;
	padding: 0 10px;
	border-radius: 3px;
}

.top-03_r .listmain {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.top-03_r .listmain_l {
	width: auto;
	margin-bottom: 10px;
}
.top-03_r .listmain_r {
	width: auto;
}

.top-03_r .listmain_l h4 {
	font-size: 1.5rem;
}

.top-03_r .listmain_r img {
	width: 100%;
	height: 130px;
	object-fit: cover;
}
.top-03_r .buttonbox {
	font-size: 1.4rem;
	line-height: 1.4;
}
.top-03_r .button-go {
padding: 10px;
  position: relative;
	color:#fff;
}
.top-03_r .button-go:after {
	content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background:url("../../images/top/icon08.png") no-repeat;
	background-position:  center right;
  background-size: 20px;
	top:10px;
  right: 5px;
	margin-right: 10px;
  position: absolute;
}

@media screen and (max-width: 834px) {
	
.top-03_r {
	
}

.top-03_r .resultlist.rank-diamond {
	background: #fecfcf !important;
	padding: 10px 10px 5px 10px;
	margin-bottom: 20px;
	box-sizing: border-box;
}
.top-03_r .resultlist .inner {
	background: #fff;
	padding: 10px;
	margin: 0 0 6px 0;
}
.resultlist .head  {
	position: relative;
	border-bottom: 1px solid #e0e0e0;
	padding-bottom: 10px;
	margin-bottom: 10px;
}

.top-03_r .resultlist .pickupicon {
	position: relative;
	width: 120px;
	top:-10px;
	left: -20px;
}
.top-03_r .resultlist .pickupicon img {
	width: 100%;
	height: auto;
}

.top-03_r .resultlist .head .area  {
	font-size: 1rem;
	color:#999999;
	margin-top: -10px;
}
.top-03_r .resultlist .head h3  {
	font-size: 1.6rem;
	margin-bottom: 5px;
	color:#884f9c;
}
.top-03_r .resultlist .head .tag  {
	display: flex;
	flex-wrap: wrap;
}
.top-03_r .resultlist .head .tag li  {
	background: #ffc737;
	text-align: center;
	color:#fff;
	font-size: 1rem;
	margin-right: 10px;
	padding: 0 10px;
	border-radius: 3px;
}

.top-03_r .listmain {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.top-03_r .listmain_l {
	width: auto;
	margin-bottom: 10px;
}
.top-03_r .listmain_r {
	width: auto;
}

.top-03_r .listmain_l h4 {
	font-size: 1.4rem;
}

.top-03_r .listmain_r img {
	width: 100%;
	height: 150px;
	object-fit: cover;
}
.top-03_r .buttonbox {
	font-size: 1.4rem;
	line-height: 1.4;
}
.top-03_r .button-go {
padding: 10px;
  position: relative;
	color:#fff;
	width: 80%;
	margin: auto;
}
.top-03_r .button-go:after {
	content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background:url("../../images/top/icon08.png") no-repeat;
	background-position:  center right;
  background-size: 20px;
	top:10px;
  right: 5px;
	margin-right: 10px;
  position: absolute;
}
	
}