@charset "utf-8";

/* あしあと機能 */

#footstep_wrap {
    /*
	width: 1080px;
	margin: 0 auto;
*/
    position: relative;
}

#footstep_wrap {
    clear: both;
    font-size: 80%;
    padding: 4px 15px;
    margin: 0 auto;
    text-align: left;
    background-color: #f8f7f5;
    border: 1px solid #CCC;
    border-top: 0;
    word-break: break-all;
    letter-spacing: 0.02em;
    max-width: 1160px;
    box-sizing: border-box;
}

#footstep_detail {
    display: inline-block;
    margin: 0;
    padding: 3px 2em 0px 65px;
    background: url(/img/common/icon_footstep.png) no-repeat left 0;
    min-height: 24px;
}

#clear_footstep {
    display: inline-block;
    vertical-align: middle;
    width: 1em;
    height: 1em;
    margin-left: 1em;
    padding: 0.2em;
    background: url(/img/common/icon_clear_footstep.png) no-repeat center center #222222;
    border-radius: 1em;
    cursor: pointer;
    position: absolute;
    top: 8px;
    right: 10px;
}

#clear_footstep:hover,
#clear_footstep:focus {
    opacity: 0.5;
}

#footstep_detail:empty,
#footstep_detail:empty + #clear_footstep {
    display: none;
}

.fs_rireki {
    display: inline;
    line-height: 1.6;
}

.fs_rireki:before {
    content: '>';
    padding: 0 0.5em;
}

.fs_rireki:first-child:before {
    /*content: '';*/
    display: none;
}

.fs_rireki:last-child a {
    text-decoration: none;
    cursor: default;
    color: inherit;
}

/* あしあとここまで */


/* ページ記憶 */
#keep_page {
    display: table;
    width: auto;
    margin: 0 auto;
    min-height: 5em;
    position: fixed;
    right: 0;
    z-index: 110;
    top: 93px;
    border-radius: 10px 0 0 10px;
}

#keep_page > * {
    display: table-cell;
    vertical-align: top;
}

#ktp_viewsw {
    display: block;
    width: 60px;
    height: 340px;
    background: url(/img/common/title_keepthispage.png) no-repeat center 12px #6666CC;
    position: relative;
    border: 1px solid #fff;
    cursor: pointer;
}

#ktp_viewsw:after {
    content: '';
    display: block;
    width: 100%;
    height: 60px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-color: transparent;
    background-position: center center;
    background-image: url(/img/common/ktp_icon_open.png);
    box-sizing: border-box;
}

#ktp_viewsw.open:after {
    background-image: url(/img/common/ktp_icon_close.png);
}

#ktp_list_wrap {
    background: #E2E2F5;
}

#ktp_list_wrap2 {
    padding: 20px 20px;
}

#ktp_list_wrap2 .btn_func {
    display: block;
    margin: 10px 0 20px;
    padding: 4px 16px;
    background: #eee;
    border: 1px solid #333;
    border-radius: 10px;
    cursor: pointer;
}

#ktp_list_wrap2 .btn_func:hover {
    background: #333;
    color: #fff;
}

#ktp_item_list {
    display: block;
    width: 20em;
    height: auto;
    margin: 10px 0;
    padding: 0;
    padding-right: 10px;
    list-style: none;
    text-align: left;
    max-height: -webkit-calc(100vh - 200px);
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

#ktp_item_list:empty:before {
    content: '登録がありません。'
}

.ktp_item {
    display: block;
    margin: 0;
    padding: 10px 32px 10px 0px;
    border-bottom: 1px dashed #6666CC;
    position: relative;
}

.ktp_item:first-child {
    border-top: 1px dashed #6666CC;
}

.ktp_item_del {
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(/img/common/icon_clear_footstep.png) no-repeat center center #666666;
    border-radius: 12px;
    cursor: pointer;
}

.ktp_item_del:hover,
.ktp_item_del:focus {
    opacity: 0.5;
}


/* ページ記憶ここまで */