@charset "utf-8";

/* おすすめ情報（回遊ボタン） */
#kaiyu_banner {
	position: fixed;
	left: 10px;
	bottom: 10px;
	z-index: 90;
}

.kaiyu_box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	border: 1px solid #333333;
	border-radius: 10px;
	background: #ffffff;
}

.kaiyu_ttl {
	display: block;
	width: 100px;
}

#btn_kaiyu_open {
	display: block;
	width: 100%;
	-webkit-box-sizing: border-box;
		box-sizing: border-box;
	border: none;
	border-radius: 10px;
	background: url("/img/common/bg-pickup.png") no-repeat center bottom 25px transparent;
	color: #000000;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 2rem;
	text-decoration: none;
	text-align: center;
	padding: 13px 0px 54px;
	position: relative;
	transition: background-color 0.3s ease-in-out;
}
#btn_kaiyu_open:hover {
	opacity: 0.87;
	background-color: #dddddd;
}
#btn_kaiyu_open:before {
	content: "";
	position: absolute;
	z-index: 1;
	bottom: 5px;
	left: calc(50% - 25px);
	width: 51px;
	height: 14px;
	background: url("/img/common/pickup-op.png") no-repeat center;
}
#kaiyu_banner.open #btn_kaiyu_open:before {
	background-image: url("/img/common/pickup-cl.png");
}


.kaiyu_list {
	display: none;
	color: #000000;
	max-width: calc(100vw - 280px);
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
#kaiyu_banner.open .kaiyu_list {
	display: block;
}

.kaiyu_list_box {
	background: #ffffff;
	padding: 0px;
	padding-left: 10px;
	position: relative;
	border-radius: 0px 10px 10px 0px;
}
.kaiyu_list_box2 {
	margin: 0px;
	padding: 0px 0px 9px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.kaiyu_list_box2 a {
	display: inline-block;
	vertical-align: top;
	width: 210px;
	max-width: calc(100% - 10px);
	margin: 10px 10px 0px 0px;
	line-height: 1;
}
.kaiyu_list_box2 img {
	width: 100%;
	height: auto;
}

#btn_kaiyu_close {
	display: none !important;
	width: 20px;
	height: 20px;
	margin: 0px;
	padding: 0px;
	border: none;
	background: url("/img/common/icon_clear.png") no-repeat center center #333333;
	background-size: 10px 10px;
	border-radius: 100%;
	color: #ffffff;
	line-height: 1em;
	text-align: left;
	text-indent: -9999em;
	overflow: hidden;
	cursor: pointer;
	position: absolute;
	bottom: -10px;
	right: -10px;
}

/* 背景色変更時 */
.color_change #kaiyu_banner {
	outline: 1px solid rgba(255, 255, 255, 0.5);
}


/* ==================================================
スマートフォン
================================================== */
@media screen and (max-width: 1080px) {
	.kaiyu_box {
		display: block;
		padding: 10px 20px;
		-webkit-box-sizing: border-box;
			box-sizing: border-box;
		border-radius: 0;
		border-left: 0;
		border-right: 0;
		border-top: 0px;
	}
	#btn_kaiyu_open:before {
		content: none;
	}
	.kaiyu_ttl {
		width: auto;
	}
	#btn_kaiyu_open {
		pointer-events: none;
		padding: 20px 0px 11px 70px;
		text-align: left;
		background-position: center left;
	}
	.kaiyu_list {
		display: block;
		max-width: none;
	}
	.kaiyu_list_box {
		padding-left: 0px;
	}
	.kaiyu_list_box2 a {
		margin: 5px 10px 5px 0px;
	}

	@media screen and (max-width: 670px) {
		.kaiyu_list_box2 a {
			max-width: calc(50% - 10px);
		}
	}

}
/* ==================================================
スマートフォン ここまで
================================================== */