@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');
body {
	color: #000000;
}

/*===================================================
	検索結果ページ用CSS
===================================================*/
body::-webkit-scrollbar {
	display: none;
}

#resultEmpty {
	min-height: 650px;
}
/* --------------------------------------------------
	header
-------------------------------------------------- */
header .headTop {
	position: relative;
	/* max-width: 1644px; */
	margin: 0 auto;
	padding: 50px 60px 56px;
	text-align: center;
}
header .headTop h1 {
	position: relative;
	top: auto;
	display: inline-block;
	width: 280px;
	height: 73px;
	padding-bottom: 25px;
	line-height: 73px;
	vertical-align: bottom;
}
header .headTop h1 img {
	vertical-align: top;
}
header .headTop h1:before {
	content: '';
	position: absolute;
	top: -15px;
	left: -166px;
	width: 140px;
	height: 90px;
	background: url("../img/result/1x/search_image_dogcat.gif") no-repeat;
	background-size: 140px auto;
}
header .headTop h1:after {
	content: '';
	position: absolute;
	top: -15px;
	right: -137px;
	width: 100px;
	height: 90px;
	background: url("../img/result/1x/search_image_kounotori.gif") no-repeat;
	background-size: 100px auto;
}
header .headTop .btnBack {
	position: absolute;
	top: 50px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
}

/*  検索ボックス
-------------------------------------------------- */
header .searchBox {
	max-width: 960px;
	margin: 0 auto;
	padding: 30px 100px 40px;
}
header .searchBoxBtn {
	display: none;
}

/* アコーディオン(詳細条件を指定して検索) */
header .searchBox > #btnSearchCondAccrd {
	width:240px;
	height: 40px;
	background: #E8E7E3;
	border-radius: 4px;
	border-bottom: 4px solid #D1D0CB;
	text-align: center;
	cursor: pointer;
	line-height: 3.0;
	font-family: 'rounded-mplus';
	font-weight: 500;
	margin: 10px auto;
}
	header .searchBox > #btnSearchCondAccrd:active {
		border-top: 2px solid #FFFFFF;
		border-bottom: 2px solid #FFFFFF;
	}

header .searchBox dl {
	display: flex;
	align-items: center;
	width: 100%;
	margin: 0 auto 21px;
}
	header .searchBox dl dt {
		width: 150px;
		padding-left: 11px;
		font-size: 18px;
		font-family: HiraKakuPro-W3, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック' ,sans-serif;
		letter-spacing: 0.05em;
		text-align: left;
	}
	header .searchBox dl dt:before {
		top: 5px;
		width: 4px;
		height: 20px;
		border-left-width: 4px;
	}
	header .searchBox dl dd {
		flex: 1;
		width: auto;
	}
	header .searchBox dl:last-of-type dd{
		text-align: left;
	}
	header .searchBox dl .radioBox {
		font-size: 15px;
		font-family: HiraKakuPro-W3, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック' ,sans-serif;
	}
	header .searchBox dl .radioBox ul {
		display: flex;
		box-shadow: 0 4px #D1D0CB; /*2px*/
		border-radius: 4px;
	}
	header .searchBox dl .radioBox ul li {
		flex: 1;
		float: none;
		width: auto;
		height: 40px;
	}
	header .searchBox dl .radioBox ul li label {
		height: 40px;
		line-height: 40px;
		background: #E8E7E3;
		border-bottom: none;
		transition: all 0.2s;
	}
	header .searchBox dl .radioBox ul li input:checked + label {
		color: #FFFFFF;
		background: #90C31F;
		transform: translateY(4px);
	}
	header .searchBox dl .radioBox ul li label:hover {
		transform: translateY(4px);
		transition: all 0.2s;
	}
	.modalSelect .modalOpen {
		box-shadow: 0 4px #D1D0CB;
		border-radius: 4px;
	}
	.modalSelect .modalOpen input {
		padding: 9px 0;
		width: 200px;
		letter-spacing: 0.05em;
		font-family: HiraKakuPro-W3, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック' ,sans-serif;
		font-size: 15px;
		border: none;
	}
	.modalSelect .modalOpen input:hover {
		transform: translateY(4px);
		transition: all 0.2s;
	}
	.modalSelect label {
		padding-left: 19px;
		letter-spacing: 0.05em;
		font-size: 15px;
	}
	header .searchBox dl .selectBox > div {
		width: 200px;
		height: 40px;
		line-height: 40px;
		letter-spacing: 0.05em;
		font-size: 15px;
		background: url(../img/result/icon_triangle.png) right 10px center no-repeat #E8E7E3;
		background-size: 10px auto;
		border-bottom: none;
		box-shadow: 0 4px #D1D0CB;
	}
	header .searchBox dl .selectBox > div + span {
		width: 55px;
		font-size: 15px;
		vertical-align: middle;
	}
	.errTxt {
		margin: 15px 0 0;
		font-size: 15px;
	}
	

/* 探すボタン・条件クリアボタン */
header .btnBox {
	position: relative;
	overflow: visible;
	padding: 0;
	width: 100%;
	max-width: 100%;
	margin: 44px auto 0;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: flex-end;
	align-items: flex-end;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
	header #btnSearch,
	header #btnReset {
		padding: 0;
		height: 60px;
		line-height: 60px;
		font-family: HiraKakuPro-W3, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック' ,sans-serif;
		font-weight: bold;
		border-bottom: none;
		border-radius: 4px;
		box-shadow: 0 4px #89AF33;
		transition: all 0.2s;
	}
	header #btnSearch:hover,
	header #btnReset:hover {
		box-shadow: 0 0 #89AF33;
		transform: translateY(4px);
		transition: all 0.2s;
	}
	header #btnSearch {
		-webkit-order: 2;
		order: 2;
		margin: 0 auto;
		width: 280px;
		letter-spacing: 0.05em;
		font-size: 24px;
	}
	header #btnSearch span {
		padding: 1px 0 1px 30px;
		background: url(../img/result/icon_search.png) left center no-repeat;
		background-size: 24px auto;
	}
	header #btnReset {
		-webkit-order: 1;
		order: 1;
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100px;
		height: 40px;
		line-height: 40px;
		letter-spacing: 0.05em;
		font-size: 15px;
		box-shadow: 0 4px #D0D2DF;
	}
	header #btnReset:hover {
		box-shadow: 0 0 #D0D2DF;
	}
	header #btnPetShopSearch {
		margin-left: 20px;
		-webkit-order: 3;
		order: 3;
	}
	header #btnPetShopSearch a {
		display: block;
		font-size: 12px;
		color: #FFFFFF;
		text-align: center;
		line-height: 30px;
		position: relative;
		width: 70px;
		height: 30px;
		background-color: #5CB0E3;
		border: none;
		border-bottom: solid 4px #529AC6;
		border-radius: 4px;
		cursor: pointer;
	}

	header #btnPetShopSearch a:active {
		border-top: 2px solid #FFFFFF;
		border-bottom: none;
	}

/* ヘッダー下部の影 */
header > *:last-child{
	margin-bottom: 5px;
}

header .headBtm {
	border-top: none;
	box-shadow: none;
}

header .headBtm .headBox > dl {
	font-family: 'Roboto', HiraKakuPro-W3, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック' ,sans-serif;
}

/* --------------------------------------------------
	パンくずリスト
-------------------------------------------------- */
.topicPath {
	max-width: 1644px;
}
/* --------------------------------------------------
	main
-------------------------------------------------- */
/* 検索結果 */
.searchCnt {
	padding: 0 20px 120px;
	font-family: 'Roboto', HiraKakuPro-W3, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック' ,sans-serif;
}
.searchCnt .ttl {
	margin: 0 auto 12px;
	width: 156px;
	height: auto;
	line-height: normal;
	font-size: 0;
	background: none;
}
	.searchCnt .ttl + p {
		margin: 0 0 20px;
		letter-spacing: normal;
	}
		.searchCnt .ttl + p strong {
			padding-right: 18px;
			color: #000000;
			letter-spacing: 0.1em;
		}
	.searchCnt .sort {
		display: flex;
		justify-content: center;
		margin: 0 auto 30px;
		max-width: 720px;
		width: 100%;
		letter-spacing: 0.1em;
		border-radius: 4px;
		box-shadow: 0 4px #D1D0CB;
	}

	.searchCnt .sort li {
		flex: 1;
	}

	.searchCnt .sort li:not(:first-child) {
		border-left: 1px solid #D1D0CB;
	}

	.searchCnt .sort li:first-child span {
		border-radius: 4px 0 0 4px;
	}

	.searchCnt .sort li:last-child span {
		border-radius: 0 4px 4px 0;
	}

	.searchCnt .sort span {
		display: block;
		height: 40px;
		line-height: 40px;
	}

	.searchCnt .sort span {
		color: #000000;
		background: #E8E7E3;
		transition: all 0.2s;
	}

	.searchCnt .sort span:not(.current):hover {
		transform: translateY(4px);
		transition: all 0.2s;
	}

	.searchCnt .sort span.current {
		color: #FFFFFF;
		background: #90C31F;
		transform: translateY(4px);
	}
	.searchCnt .txtAttention {
		margin-bottom: 27px;
		padding: 0;
		font-size: 13px;
		background: none;
	}

/* 検索結果なし */
#resultEmpty h2 + p {
margin: 20px 0 0;
letter-spacing: 0;
}
#resultEmpty h2 + p + p {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0;
}
/* ページャー */
#pagingBox {
	margin: 40px 0 70px;
	padding: 0 40px;
	text-align: center;
	font-family: 'Roboto', HiraKakuPro-W3, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック' ,sans-serif;
}
#pagingBox ul {
	display: flex;
	justify-content: center;
}

#pagingBox li {
	margin: 0 10px;
	width: 60px;
}

#pagingBox li#prev,
#pagingBox li#next {
	width: 200px;
}

#pagingBox a,
#pagingBox span {
	display: block;
	width: 100%;
    height: 60px;
	line-height: 60px;
	color: #000000;
	font-size: 20px;
	font-weight: bold;
	border-radius: 6px;
	box-shadow: 0 4px #D1D0CB;
}

#pagingBox a {
	background: #E8E7E3;
	transition: all 0.2s;
}

#pagingBox a:hover {
	box-shadow: 0 0 #D1D0CB;
	transform: translateY(4px);
	transition: all 0.2s;
}

#pagingBox span {
	background: rgba(232, 231, 227, 0.4);
	box-shadow: none;
}

#pagingBox li#prev a,
#pagingBox li#next a,
#pagingBox li#prev span,
#pagingBox li#next span {
	font-size: 18px;
	letter-spacing: 0.1em;
}

#pagingBox li#prev a,
#pagingBox li#next a {
	color: #FFFFFF;
	background: #90C31F;
	box-shadow: 0 4px #89AF33;
}

#pagingBox li#prev a:hover,
#pagingBox li#next a:hover {
	box-shadow: 0 0 #89AF33;
}

#pagingBox li#prev span,
#pagingBox li#next span {
	background: #E8E7E3;
	box-shadow: 0 4px #D1D0CB;
	opacity: 0.4;
}

#pagingBox li#prev a:before,
#pagingBox li#next a:after,
#pagingBox li#prev span:before,
#pagingBox li#next span:after {
	content: "";
	position: relative;
	top: 1px;
	display: inline-block;
	margin: 0 0 0 12px;
	width: 10px;
	height: 15px;
	background: 
		url(../img/result/icon_arrow_white.png) no-repeat 50% 50%, 
		url(../img/result/icon_arrow_black.png) no-repeat 50% 50%;
	background-size: contain, 0 0;
}

#pagingBox li#prev a:before,
#pagingBox li#prev span:before {
	margin: 0 12px 0 0;
	transform: rotate(180deg);
}

#pagingBox li#prev span:before,
#pagingBox li#next span:after {
	background-size: 0 0, contain;
}

#pagingBox li.current span {
	color: #FFFFFF;
	background: #90C31F;
	box-shadow: none;
}

/* footer */
footer {
	position: relative;
	margin: 35px 0 0;
}
/*
footer {
	position: relative;
	bottom: auto;
	margin: 35px 0 0;
	padding: 0;
	background: none;
	opacity: 1 !important;
	pointer-events: auto !important;
}

footer p {
	float: none;
}

footer > div.lead {
	padding: 0;
	background: #F0F2F8;
}

footer > div.lead p {
	padding: 9px;
	line-height: normal;
	font-family: HiraKakuPro-W3, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック' ,sans-serif;
	font-size: 15px;
	font-weight: bold;
}

footer .footWrap {
	max-width: 100%;
	padding: 0;
	overflow: hidden;
	background-color: #fff;
}

footer .footWrap > img {
	height: 40px;
	width: auto;
	display: block;
	margin: 0 auto;
	text-align: center;
}
*/

/* 戻るボタン */
.btnBack {
	margin: 0 auto;
	padding: 0 60px;
}

.btnBack a {
	display: block;
	padding: 0 6px 0 0;
	width: 160px;
	height: 40px;
	letter-spacing: 0.05em;
	line-height: 40px;
	font-size: 15px;
	font-weight: bold;
	text-align: center;
	background: #FFFFFF;
	border-radius: 20px;
	box-shadow: 0 4px #E8E7E3;
	transition: all 0.2s;
}

.btnBack a:before {
	content: "";
	position: relative;
	top: 1px;
	display: inline-block;
	margin: 0 14px 0 0;
	width: 8px;
	height: 13px;
	background: url(../img/result/icon_arrow_back.png) no-repeat 50% 50%;
	background-size: contain;
}

.btnBack a:hover {
	box-shadow: 0 0 #E8E7E3;
	transform: translateY(4px);
	transition: all 0.2s;
}

#pagingBox + .btnBack {
	margin-top: 44px;
}

/* モーダル */
.conBreed .breedList dt {
	color: #000000;
	background: #E2E3EA;
	border-bottom: none;
}

.conBreed .breedList dd ul li span {
	color: #000000;
}

/* 詳細アイテム */
.infoBox dl dt {
	font-weight: bold;
}
.checkCount > span {
	font-weight: bold;
}

/*===================================================
	Retina対応
===================================================*/

@media only screen and (-webkit-min-device-pixel-ratio: 2),only screen and (min--moz-device-pixel-ratio: 2),only screen and (-o-min-device-pixel-ratio: 2/1),only screen and (min-device-pixel-ratio: 2),only screen and (min-resolution: 192dpi),only screen and ( min-resolution: 2dppx){

	/* 犬猫 */
	header .headTop h2:before {
		background: url("../img/result/2x/search_image_dogcat.gif") no-repeat;
		background-size: 140px auto;
	}

	/* コウノトリ */
	header .headTop h2:after {
		background: url("../img/result/2x/search_image_kounotori.gif") no-repeat;
		background-size: 100px auto;
	}


	/* アコーディオン(詳細条件を指定して検索) */
	header .searchBox .btnAccrd {
		/* background: url("../../common/img/2x/icon_plus.png") 1em center no-repeat #E8E7E3;
		background-size: 14px auto; */
	}
		header .searchBox .btnAccrd.active {
			/* background: url("../../common/img/2x/icon_minus.png") 1em center no-repeat #E8E7E3;
			background-size: 14px auto; */
		}
}

/*===================================================
	サイネージ対応
===================================================*/
@media screen and (min-width: 720px) and (max-width: 1080px) and (min-height: 1280px) and (max-height: 1920px) and (orientation: portrait) {
	body {
		display: flex;
		flex-direction: column;
		min-height: 100vh;
	}
	body > form {
		flex: 1 0 auto;
	}

	/* header */
	header .searchBoxBtn {
		display: block;
		margin: 0 auto;
		padding: 0;
		width: 600px;
		height: 40px;
		line-height: 40px;
		letter-spacing: 0.1em;
		font-size: 18px;
		font-weight: bold;
		background: #E2E3EA;
		box-shadow: 0 4px #D0D2DF;
		border: none;
		border-radius: 20px;
	}
	header .searchBoxBtnTxt[data-type="open"] {
		display: none;
	}
	.seachBoxOpen header .searchBoxBtnTxt[data-type="open"] {
		display: inline;
	}
	.seachBoxOpen header .searchBoxBtnTxt[data-type="close"] {
		display: none;
	}
	header .searchBoxBtnIcon {
		position: relative;
		top: -2px;
		display: inline-block;
		margin: 0 15px 0 0;
		width: 20px;
		height: 20px;
		vertical-align: middle;
	}
	.seachBoxOpen header .searchBoxBtnIcon {
		margin: 0 9px 0 0;
	}
	header .searchBoxBtnIcon span {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 100%;
		height: 2px;
		background: #000000;
		border-radius: 3px;
		transition: all 1s;
	}
	header .searchBoxBtnIcon span:nth-child(1) {
		transform: translate(-50%, -7px);
	}
	header .searchBoxBtnIcon span:nth-child(2) {
		transform: translate(-50%, -1px);
	}
	header .searchBoxBtnIcon span:nth-child(3) {
		transform: translate(-50%, 5px);
	}
	.seachBoxOpen header .searchBoxBtnIcon span:nth-child(1) {
		transform: translate(-50%, -1px) rotate(45deg);
	}
	.seachBoxOpen header .searchBoxBtnIcon span:nth-child(2) {
		opacity: 0;
	}
	.seachBoxOpen header .searchBoxBtnIcon span:nth-child(3) {
		transform: translate(-50%, -1px) rotate(-45deg);
	}
	header .searchBoxInner {
		max-height: 0;
		overflow: hidden;
		transition: all 1s;
	}
	.seachBoxOpen header .searchBoxInner {
		margin: 34px 0 0;
		padding: 0 0 4px;
		max-height: 1000px;
	}
	header .headBtm .headBox {
		padding: 6px 0;
		max-width: 960px;
	}
	header .headBtm .headBox > dl {
		font-size: 15px;
	}
	header .headBtm .headBox > dl * {
		vertical-align: middle;
	}
	header .headBtm .headBox > dl > dd dl dd {
		font-size: 20px;
	}

	/* 検索結果 */
	.searchCnt {
		padding-top: 39px;
		padding-bottom: 0;
	}
	.searchCnt .ttl + p {
		font-size: 15px;
	}
	.searchCnt .ttl + p strong {
		font-size: 20px;
	}
	.searchCnt .sort {
		font-size: 15px;
	}
	.searchCnt .txtAttention {
		font-size: 13px;
	}

	/* ページャー */
	#pagingBox {
		margin: 10px auto 0;
		padding: 0;
		max-width: 990px;
	}

	/* 戻るボタン */
	.btnBack {
		padding: 0;
		max-width: 960px;
	}

	/* モーダル */
	.modalContent {
		max-width: 880px;
		border-radius: 6px;
	}

	.conBreed .breedList dt {
		height: 60px;
		min-height: 60px;
		line-height: 60px;
		font-size: 24px;
		border-radius: 6px 6px 0 0;
	}

	.conBreed .breedList dd {
		font-size: 15px;
	}

	.conBreed .breedList dd ul li {
		padding: 13px 0 12px;
	}

	.modalContent p.modalClose {
		width: 62px;
		height: 62px;
		line-height: 62px;
	}

	/* パンくずリスト */
	.topicPath {
		display: none;
	}

	/* 詳細アイテム */
	.result > ul > li {
		height: 480px;
	}
	.photoBox ul {
		top: 220px;
		right: 15px;
		height: 20px;
	}
	.photoBox ul li {
		height: 20px;
		line-height: 20px;
		font-size: 12px;
		border-radius: 4px 4px 0 0;
	}
	.photoBox ul .dispGender {
		margin-left: 10px;
	}
	.photoBox dl dt {
		min-height: 54px;
		line-height: 1.5;
		font-size: 18px;
	}
	.photoBox dl dd {
		font-size: 15px;
	}
	.photoBox dl dd em {
		font-size: 28px;
	}
	.infoBox dl {
		font-size: 15px;
	}
	.checkCount {
		height: 30px;
	}
	.checkCount > span {
		padding-left: 1.6em;
		font-size: 15px;
		background: url(../img/icon_paw.png) no-repeat left 50%;
		background-size: 18px auto;
	}
}

/*===================================================
    720*1280〜1080*1920対応
===================================================*/
@media screen and (min-width: 720px) and (max-width: 1000px) and (min-height: 1280px) and (orientation: portrait) {

	/* header */
	header .headTop {
		padding: 20px 20px 15px;
	}
	header .headTop h1 {
		width: 190px;
		height: 50px;
		padding-bottom: 0;
		line-height: 50px;
	}
	header .headTop h1:before {
		top: -12px;
		left: -115px;
		width: 100px;
		height: 70px;
		background-size: 100px auto;
	}
	header .headTop h1:after {
		top: -10px;
		right: -90px;
		width: 70px;
		height: 60px;
		background-size: 70px auto;
	}
	header .headTop .btnBack {
		top: 25px;
		left: 20px;
		width: 110px;
		transform: translateX(0);
	}
	header .headTop .btnBack a {
		padding: 0 6px 0 0;
		width: 110px;
		height: 30px;
		line-height: 30px;
		font-size: 12px;
	}
	.btnBack a:before {
		top: 1px;
		left: 2px;
		margin: 0 10px 0 0;
		width: 6px;
		height: 11px;
		background: url(../img/result/icon_arrow_back.png) no-repeat 50% 50%;
		background-size: contain;
	}
	/* 検索ボックス */
	header .searchBox {
		padding: 10px 100px 15px;
	}
	header .searchBoxBtn {
		width: 100%;
		height: 30px;
		line-height: 30px;
		letter-spacing: 0.1em;
		font-size: 15px;
		font-weight: bold;
		background: #E2E3EA;
		box-shadow: 0 4px #D0D2DF;
		border: none;
		border-radius: 20px;
	}
	header .searchBox dl dt {
		width: 100px;
	}
	header .searchBox dl .selectBox > div + span {
		width: 40px;
	}
	header .searchBox dl .selectBox > div {
		width: 170px;
	}
	/* 探すボタン・条件クリアボタン */
	header .btnBox {
		margin: 30px auto 0;
	}
	header #btnSearch {
		width: 200px;
		height: 40px;
		line-height: 40px;
		font-size: 20px;
	}
	header #btnSearch span {
		background-size: 20px auto;
	}
	header #btnReset {
		height: 30px;
		line-height: 30px;
		font-size: 12px;
	}
	header .headBtm {
		padding: 0 20px;
	}
	header .headBtm .headBox {
		padding: 0;
	}
	header .headBtm .headBox > dl {
		font-size: 11px;
	}
	header .headBtm .headBox > dl dt {
		padding: 2px 0 0;
	}
	header .headBtm .headBox > dl > dd dl dd {
		font-size: 16px;
	}
	header .headBtm .headBox > p {
		width: 65px;
		padding: 2px 0;
	}
	/* 検索結果 */
	.searchCnt {
		margin-top: 15px;
		padding: 0 20px;
	}
	.searchCnt .ttl {
		width: 120px;	
	}
	.searchCnt .ttl + p {
		margin: 0 0 10px;
		font-size: 13px;
	}
	.searchCnt .ttl + p strong {
		font-size: 16px;
	}
	.searchCnt .sort {
		max-width: 540px;
		margin: 0 auto 15px;
		font-size: 12px;
	}
	.searchCnt .sort span {
		height: 30px;
		line-height: 30px;
	}
	.searchCnt .txtAttention {
		margin-bottom: 15px;
		font-size: 12px;
	}
	/* 詳細アイテム */
	.result > ul {
		margin: 0 0 0 -20px;
	}
	.result > ul > li {
		width: 210px;
		height: 380px;
		margin: 0 0 15px 20px;
	}
	.result > ul > li > a {
		padding: 10px 10px 0;
	}
	.photoBox {
		margin-bottom: 0;
	}
	.photoBox > p {
		height: 190px;
		line-height: 190px;
		margin-bottom: 5px;
	}
	.result > ul > li:hover .photoBox > p:before {
		line-height: 190px;
	}
	.photoBox > p img {
		max-width: 190px;
    	max-height: 190px;
	}
	.photoBox ul {
		top: 170px;
	}
	.infoBox dl {
		font-size: 12px;
	}
	.photoBox dl dt {
		min-height: 30px;
		font-size: 14px;
		line-height: 1.2;
	}
	.photoBox dl dd {
		font-size: 12px;
	}
	.photoBox dl dd em {
		font-size: 19px;
	}
	.searchCnt .result > ul .badgeBox {
		top: 3px;
		left: 95px;
	}
	.checkCount {
		height: 20px;
	}
	.checkCount > span {
		margin-left: 10px;
		padding-left: 1.5em;
		font-size: 12px;
		background: url(../img/icon_paw.png) left center no-repeat;
		background-size: 13px auto;
	}
	/* ページャー */
	#pagingBox {
		margin: 0;
		padding: 0 20px;
	}
	#pagingBox li {
		width: 30px;
		margin: 0 5px;
	}
	#pagingBox li#prev,
	#pagingBox li#next {
		width: 150px;
	}
	#pagingBox a,
	#pagingBox span {
	    height: 30px;
		line-height: 30px;
		font-size: 13px;
	}
	#pagingBox li#prev a,
	#pagingBox li#next a,
	#pagingBox li#prev span,
	#pagingBox li#next span {
		font-size: 14px;
	}
	#pagingBox li#prev a:before,
	#pagingBox li#next a:after,
	#pagingBox li#prev span:before,
	#pagingBox li#next span:after {
		width: 8px;
		height: 13px;
	}
	#pagingBox + .btnBack {
		margin: 20px auto 0;
		padding: 0 20px;
	}
	#pagingBox + .btnBack a {
		padding: 0 6px 0 0;
		width: 110px;
		height: 30px;
		line-height: 30px;
		font-size: 12px;
	}
	/* footer */
	footer {
		margin: 15px 0 0;
	}
	footer > div.lead p {
		padding: 4px;
		font-size: 12px;
	}
	footer .footWrap > img {
		height: 30px;
	}

}

@media screen and (min-width: 730px) and (max-width: 1000px) and (min-height: 1280px) and (orientation: portrait) {

	#pagingBox {
		margin: 10px auto 0;
	}
	#pagingBox li {
		width: 35px;
		margin: 0 10px;
	}
	#pagingBox li#prev,
	#pagingBox li#next {
		width: 160px;
	}
	#pagingBox a,
	#pagingBox span {
	    height: 35px;
		line-height: 35px;
	}

	#pagingBox + .btnBack a {
		width: 120px;
		height: 35px;
		line-height: 35px;
		font-size: 13px;
	}

}

@media screen and (min-width: 750px) and (max-width: 1000px) and (min-height: 1280px) and (orientation: portrait) {

	header .headTop {
		padding: 30px 30px 25px;
	}

	header .searchBox {
		padding: 20px 100px 25px;
	}

}

@media screen and (min-width: 780px) and (max-width: 1000px) and (min-height: 1280px) and (orientation: portrait) {

	.searchCnt {
		padding-top: 30px;
	}

}

@media screen and (min-width: 800px) and (max-width: 1000px) and (min-height: 1280px) and (orientation: portrait) {

	header .headTop {
		padding: 40px 30px 35px;
	}

	.searchCnt .ttl {
		width: 135px;
	}

	.result > ul > li {
		height: 390px;
	}

}

@media screen and (min-width: 830px) and (max-width: 1000px) and (min-height: 1280px) and (orientation: portrait) {

	.searchCnt .sort {
		max-width: 610px;
		margin: 0 auto 20px;
		font-size: 14px;
	}
	.searchCnt .sort span {
		height: 40px;
		line-height: 40px;
	}

	.result > ul > li {
		margin: 0 0 25px 20px;
	}

	#pagingBox {
		margin: 15px auto 0;
	}

}

@media screen and (min-width: 860px) and (max-width: 1000px) and (min-height: 1280px) and (orientation: portrait) {

	header .searchBoxBtn {
		height: 40px;
		line-height: 40px;
		font-size: 18px;
	}

	header .headBtm {
		padding: 5px 20px;
	}
	
	header .headBtm .headBox > dl {
		font-size: 14px;
	}

	header .headBtm .headBox > dl > dd dl dd {
		font-size: 18px;
	}

	header .headBtm .headBox > p {
		width: 75px;
	}

	.searchCnt .ttl + p {
		margin: 0 0 20px;
		font-size: 14px;
	}

	.searchCnt .ttl + p strong {
		font-size: 20px;
	}

	.searchCnt .txtAttention {
		margin-bottom: 25px;
		font-size: 14px;
	}

	#pagingBox li {
		width: 40px;
	}

	#pagingBox li#prev,
	#pagingBox li#next {
		width: 180px;
	}

	#pagingBox a,
	#pagingBox span {
	    height: 40px;
		line-height: 40px;
	}

	#pagingBox + .btnBack {
		margin: 40px auto 0;
	}

	footer > div.lead p {
		padding: 6px;
		font-size: 14px;
	}

}

@media screen and (min-width: 890px) and (max-width: 1000px) and (min-height: 1280px) and (orientation: portrait) {

	.result > ul > li {
		width: 260px;
		height: 420px;
	}
	.result > ul > li > a {
		padding: 15px 15px 0;
	}

	.photoBox > p {
		height: 230px;
		line-height: 230px;
	}
	.result > ul > li:hover .photoBox > p:before {
		line-height: 230px;
	}
	.photoBox > p img {
		max-width: 230px;
    	max-height: 230px;
	}
	.photoBox ul {
		top: 210px;
	}
	.infoBox dl {
		font-size: 14px;
	}
	.photoBox dl dt {
		font-size: 16px;
	}
	.photoBox dl dd {
		font-size: 14px;
	}
	.photoBox dl dd em {
		font-size: 22px;
	}
	.searchCnt .result > ul .badgeBox {
		top: 5px;
		left: 140px;
	}
	.checkCount {
		height: 25px;
	}
	.checkCount > span {
		font-size: 13px;
	}

}

@media screen and (min-width: 920px) and (max-width: 1000px) and (min-height: 1280px) and (orientation: portrait) {

	header .headTop h1 {
		width: 240px;
		height: 60px;
		line-height: 60px;
	}
	header .headTop h1:before {
		top: -4px;
	}
	header .headTop h1:after {
		top: 0;
	}
	.btnBack a:before {
		left: -2px;
	}

	header .headTop .btnBack a {
	    width: 150px;
	    height: 40px;
	    line-height: 40px;
	    font-size: 14px;
	}

	#pagingBox + .btnBack a {
		width: 150px;
	    height: 40px;
	    line-height: 40px;
	    font-size: 14px;
	}

	footer .footWrap > img {
		height: 40px;
	}

}

@media screen and (min-width: 940px) and (max-width: 1000px) and (min-height: 1280px) and (orientation: portrait) {

	header .headTop {
		padding: 50px 60px 56px;
	}

	header .headTop .btnBack {
		left: 60px;
	}

	.searchCnt .ttl {
		width: 150px;
	}

	#pagingBox li {
		width: 60px;
	}

	#pagingBox li#prev,
	#pagingBox li#next {
		width: 200px;
	}

	#pagingBox a,
	#pagingBox span {
	    height: 60px;
		line-height: 60px;
		font-size: 20px;
	}

	#pagingBox li#prev a, 
	#pagingBox li#next a,
	#pagingBox li#prev span,
	#pagingBox li#next span {
		font-size: 20px;
	}

	#pagingBox + .btnBack {
		padding: 0 60px;
	}

}

@media screen and (min-width: 980px) and (max-width: 1000px) and (min-height: 1280px) and (orientation: portrait) {

	header .searchBox {
		padding: 30px 100px 40px;
	}

	.result > ul > li {
		margin: 0 0 30px 20px;
	}

}

@media screen and (min-width: 1001px) and (max-width: 1040px) and (min-height: 1280px) and (orientation: portrait) {

	header .headTop {
		padding: 30px 60px 25px;
	}

	header .searchBox {
		padding: 15px 100px 25px;
	}

	.searchCnt {
		margin-top: 15px;
		padding-top: 30px;
	}

	.result > ul {
		margin: 0 0 0 -30px;
	}

	.result > ul > li {
		margin: 0 0 15px 30px;
	}

}

@media screen and (min-width: 1041px) and (max-width: 1079px) and (min-height: 1280px) and (orientation: portrait) {

	header .searchBox {
		padding: 15px 100px 25px;
	}

	.searchCnt {
		margin-top: 15px;
		padding-top: 30px;
	}

}

/*===================================================
	SMT対応
===================================================*/
@media only screen and (min-width: 0px) and (max-width: 600px) {
	body > form {
		padding: 0 0 4px;
		overflow: hidden;
		
	}

	/* header */
	header .headTop {
		padding: 10px;
	}
	header .headTop h1 {
		padding-bottom: 10px;
		width: 180px;
		height: auto;
		line-height: normal;
	}
	header .headTop h1:before,
	header .headTop h1:after {
		display: none;
	}
	header .headTop .btnBack {
		display: none;
	}
	header .searchBox {
		padding: 20px 10px;
	}
	header .searchBox dl {
		display: table;
	}
	header .searchBox dl > dt {
		width: 15%;
		line-height: 34px;
		padding-left: 2%;
		font-size: 13px;
	}
	header .searchBox dl dt:before {
		top: 8px;
		width: 3px;
		height: 15px;
		border-left-width: 3px;
	}
	header .searchBox dl .radioBox  {
		font-size: 12px;
	}
	header .searchBox dl .radioBox ul li {
		height: 34px;
	}
	header .searchBox dl .radioBox ul li label {
		height: 34px;
		line-height: 34px;
	}
	.modalSelect .modalOpen input {
		padding: 8px 0;
		width: 100%;
		font-size: 12px;
	}
	header .searchBox dl .selectBox > div {
		width: 100px;
		height: 34px;
		line-height: 34px;
		font-size: 12px;
		background: url(../../../common/img/2x/icon_triangle.png) right 4% center no-repeat #E8E7E3;
		background-size: 8px auto;
	}
	header .searchBox dl .selectBox > div + span {
		width: 10%;
	}
	header .btnBox {
		margin: 33px auto 0;
	}
	header #btnSearch {
		width: 100%;
		height: 40px;
		line-height: 40px;
		font-size: 16px;
	}
	header #btnSearch span {
		padding: 2px 0 2px 30px;
		background: url(../../../common/img/2x/icon_search.png) left center no-repeat;
		background-size: 20px auto;
	}
	header #btnReset {
		order: 3;
		position: relative;
		bottom: auto;
		left: auto;
		margin-top: 15px;
		width: 100%;
	}

	/* 検索結果 */
	.searchCnt .ttl {
		width: 100px;
	}
	.searchCnt .sort {
		flex-wrap: wrap;
	}
	.searchCnt .sort li {
		width: 50%;
		flex: 0 0 auto;
	}
	.searchCnt .sort li:nth-child(3) {
		border-left: none
	}
	.searchCnt .sort li:nth-child(3),
	.searchCnt .sort li:nth-child(4) {
		background: #D1D0CB;
		border-top: 1px solid #D1D0CB;
	}
	.searchCnt .sort li:first-child a,
	.searchCnt .sort li:first-child span {
		border-radius: 4px 0 0 0;
	}
	.searchCnt .sort li:nth-child(2) a,
	.searchCnt .sort li:nth-child(2) span {
		border-radius: 0 4px 0 0;
	}
	.searchCnt .sort li:nth-child(3) a,
	.searchCnt .sort li:nth-child(3) span {
		border-radius: 0 0 4px 0;
	}
	.searchCnt .sort li:last-child a,
	.searchCnt .sort li:last-child span {
		border-radius: 0 0 0 4px;
	}

	/* 戻るボタン */
	.btnBack {
		padding: 0 10px;
	}

	/* ページャー */
	#pagingBox {
		margin: 40px -5px 100px;
		padding: 0;
	}
	#pagingBox ul {
		flex-wrap: wrap;
	}
	#pagingBox li {
		margin: 0 2px;
		width: 40px;
	}
	#pagingBox li#prev,
	#pagingBox li#next {
		order: -1;
		margin: 0 2px 8px;
		width: calc(50% - 15px);
	}
	#pagingBox a,
	#pagingBox span {
		height: 40px;
		line-height: 40px;
		font-size: 14px;
	}
	#pagingBox li#prev a,
	#pagingBox li#next a,
	#pagingBox li#prev span,
	#pagingBox li#next span {
		font-size: 16px;
	}

	/* footer */
	footer {
		margin: 26px 0 0;
	}
	footer > div.lead p {
		padding: 10px;
		font-size: 10px;
	}
}
