@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;
}

.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: 0;
	background: #cccccc;
	color: #000000;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 2rem;
	text-decoration: none;
	text-align: center;
	padding: 30px 0px;
	-webkit-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	transition: opacity 0.5s;
}
#btn_kaiyu_open:hover {
	opacity: 0.75;
}

.kaiyu_list {
	display: none;
	background: #cccccc;
	color: #000000;
	padding: 10px;
	max-width: calc(100vw - 140px);
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
#kaiyu_banner.open .kaiyu_list {
	display: block;
}

.kaiyu_list_box {
	background: #ffffff;
	padding: 5px;
	position: relative;
}
.kaiyu_list_box2 {
	margin: 0px;
	padding: 0px;
	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: 200px;
	max-width: calc(100% - 10px);
	margin: 5px;
}
.kaiyu_list_box2 img {
	width: 100%;
	height: auto;
}

#btn_kaiyu_close {
	display: block;
	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 (max-width: 1100px) {

	.kaiyu_ttl {
		width: 60px;
	}

	#btn_kaiyu_open {
		font-size: 1.2rem;
		line-height: 1.6rem;
		padding: 14px 0px;
	}

	.kaiyu_list {
		max-width: calc(100vw - 80px);
	}

}
/* ==================================================
スマートフォン ここまで
================================================== */