@charset "utf-8";

/* あしあと機能 */
#footstep_wrap {
	width: auto;
	height: auto;
	margin: 0px;
	padding: 0px;
}

#footstep {
	margin: 0px;
	padding: 0px;
	position: relative;
}

#footstep_detail {
	margin-top: 10px;
	margin-bottom: 5px;
	padding: 3px 30px 3px 8.5rem;
	position: relative;
}
#footstep_detail:before {
	content: '足跡';
	display: block;
	width: 7rem;
	height: auto;
	background: url(/img/common/icon_footstep.png) no-repeat 90% center #000000;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	color: #ffffff;
	font-size: 1.3rem;
	line-height: 1.2;
	padding: 8px 1em 7px 0px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: absolute;
	top: 0px;
	left: 0px;
	text-align: center;
}

#clear_footstep {
	display: block;
	width: 23px;
	height: 23px;
	margin: 0px;
	padding: 0px;
	background: url(/img/common/icon_keep_clear.png) no-repeat center center #000000;
	background-size: 11px 11px;
	color: #ffffff;
	line-height: 1;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	cursor: pointer;
	position: absolute;
	top: 4px;
	right: 0px;
}
#clear_footstep:hover, #clear_footstep:focus {
	opacity: 0.8;
}
#footstep_detail:empty,
#footstep_detail:empty + #clear_footstep {
	display: none;
}

.fs_rireki {
	display: inline;
}
.fs_rireki:before {
	content: '>';
	padding: 0px 0.4em;
}
.fs_rireki:first-child:before {
	display: none;
}
.fs_rireki:last-child a {
	text-decoration: none !important;
	color: inherit !important;
	cursor: default;
}
/* あしあと機能 ここまで */


/* ページ記憶 */
#keep_page {
	width: auto;
	min-height: 5em;
	margin: 0px auto;
	position: fixed;
	top: 150px;
	right: 0px;
	z-index: 90;
	background: #dfccf1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
}

#ktp_viewsw {
	display: inline-block;
	vertical-align: top;
	width: 6rem;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: url(/img/common/bg_ttl_keep.png) repeat left top #6927b2;
	color: #ffffff;
	font-size: 1.6rem;
	font-weight: normal;
	letter-spacing: 1px;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	line-height: 2rem;
	padding: 60px 10px 88px;
	position: relative;
	cursor: pointer;
	-webkit-transition: background 0.15s ease-in-out;
	-o-transition: background 0.15s ease-in-out;
	transition: background 0.15s ease-in-out;
}
#ktp_viewsw:hover {
	background: #6927b2;
}
#ktp_viewsw:after {
	content: '';
	display: block;
	width: 36px;
	height: 47px;
	background: url(/img/common/btn_keep_open.png) no-repeat center center;
	position: absolute;
	bottom: 20px;
	left: 12px;
}
#ktp_viewsw.open:after {
	background-image: url(/img/common/btn_keep_close.png);
}

#ktp_list_wrap2 {
	padding: 20px;
}
#ktp_list_wrap2 .btn_func {
	display: block;
	border: 3px solid #5e00bb;
	color: #000099;
	font-size: 1.5rem;
	margin: 0px 0px 10px;
	padding: 6px 10px 6px 30px;
	text-align: center;
	cursor: pointer;
	-webkit-transition: background-color 0.15s ease-in-out;
	-o-transition: background-color 0.15s ease-in-out;
	transition: background-color 0.15s ease-in-out;
}
#ktp_list_wrap2 #ktp_save.btn_func {
	background: url(/img/common/icon_keep_btn.png) no-repeat 10px top #ffffff;
}
#ktp_list_wrap2 #ktp_del_all.btn_func {
	background: url(/img/common/icon_keep_btn2.png) no-repeat 10px center #ffffff;
}
#ktp_list_wrap2 #ktp_save.btn_func:hover,
#ktp_list_wrap2 #ktp_del_all.btn_func:hover {
	background-color: rgba(255, 255, 255, 0.5);
}

#ktp_item_list {
	display: block;
	width: 18em;
	height: auto;
	max-height: calc(100vh - 300px);
	overflow-y: auto;
	margin: 0px;
	padding: 0px;
	list-style: none;
	text-align: left;
}
#ktp_item_list:empty:before {
	content: '登録がありません。'
}

.ktp_item {
	display: block;
	margin: 0px 0px 3px;
	padding: 10px 35px 10px 10px;
	background: #ffffff;
	position: relative;
	overflow: visible;
}

.ktp_item_del {
	display: block;
	width: 23px;
	height: 23px;
	margin: 0px;
	padding: 0px;
	background: url(/img/common/icon_keep_clear.png) no-repeat center center #000000;
	background-size: 11px 11px;
	color: #ffffff;
	line-height: 1;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	cursor: pointer;
	position: absolute;
	right: 10px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.ktp_item_del:hover,.ktp_item_del:focus {
	opacity: 0.8;
}
/* ページ記憶ここまで */