@charset "utf-8";
/* -----------------------------------------
so.css
sp.html用css
----------------------------------------- */

body, html {
	height: 100%;
	box-sizing: border-box;
}

body {
	background-color: #fff;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-touch-callout: none;
	-webkit-touch-action: none;
	-ms-touch-action : none;
	touch-action : none;
	-webkit-text-size-adjust: 100%;
}

#Wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	overflow: hidden;
}
body.openSpMenu #Wrapper {
	overflow: visible;
}

.textbox {
	border: 1px solid #6c6c6c;
	border: 1px solid #888;
	border-radius: 0;
	padding: 3px 6px;
	width: 100%;
	height: 26px;
	box-sizing: border-box;
	box-shadow: 1px 1px 3px rgba(0,0,0,0.2) inset;
}

.cmnBtn {
	display: block;
	border: none;
	border-radius: 4px;
	background-color: #a31039;
	padding: 3px 10px;
	box-sizing: border-box;
	text-align: center;
	color: #fff;
	font-size: 12px;
	cursor: pointer;
}
.cmnBtn.blue {
	background-color: #00b0e5;
}
.cmnBtn.enter {
	display: inline-block;
	width: 56px;
}
.cmnBtn.cancel {
	display: inline-block;
	background-color: #999;
	margin-left: 5px;
}
@media screen and (max-width: 767px){
	.cmnBtn.cancel {
		margin-left: 15px;
	}
}
@media screen and (min-width: 768px){
	.cmnBtn:hover {
		opacity: 0.8;
	}
}

.checkbox input {
	display: none;
}
.checkbox input + span {
	position: relative;
	display: inline-block;
	padding-left: 18px;
	cursor: pointer;
}
.checkbox input + span:before {
	content: "";
	position: absolute;
	top: 2px;
	left: 1px;
	width: 10px;
	height: 10px;
	border: 1px solid #999;
	border-radius: 2px;
}
.checkbox input:checked + span:after {
	content: "";
	position: absolute;
	top: -5px;
	left: 4px;
	width: 6px;
	height: 12px;
	border-right: 3px solid #a31039;
	border-bottom: 3px solid #a31039;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.window {
	position: absolute;
	z-index: 2000;
	border: 2px solid #ddd;
	border-radius: 8px;
	box-shadow: 0 0 6px rgba(0,0,0,0.3), 0 0 0 1px #ccc, 0 0 0 1px #ccc inset;
	background-color: #fff;
	display: none;
}

.scrollArea {
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}

/* ShareMessage
------------------------*/

#ShareMessage {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	display: none;
	background-color: #000;
	padding: 10px;
	color: #fff;
	font-size: 15px;
}
#ShareMessage .pc {
	display: inline;
}
#ShareMessage .sp {
	display: none;
}
#ShareMessage span {
	display: inline-block;
	margin-left: 10px;
	text-decoration: underline;
	cursor: pointer;
}
#ShareMessage span.disabled {
	opacity: 0.5;
	cursor: default;
}
@media screen and (max-width: 1150px){
	#ShareMessage .pc {
		display: none;
	}
	#ShareMessage .sp {
		display: inline;
	}
}
@media screen and (max-width: 767px){
	#ShareMessage {
		padding: 6px;
		font-size: 12px;
	}
	#ShareMessage span {
		margin-left: 10px;
		text-decoration: underline;
		cursor: pointer;
	}
}

/* BtnList
------------------------*/

#BtnList {
	position: absolute;
	top: 5px;
	right: 5px;
	z-index: 1000;
}
#SpMenuBtn {
	display: none;
}
#BtnList li {
	float: left;
	margin-left: 4px;
	padding: 4px 10px;
	box-shadow: 0 0 5px rgba(0,0,0,0.3);
}
#BtnList li:not(:first-child) {
	width: 75px;
	padding-left: 20px;
}
#BtnList li.onlySp {
	display: none;
}
#BtnList #SpUrlCopy {
	background-color: #666;
}
#BtnList #PrintBtn {
	background: url(../img/btn_ico_print.png) no-repeat 10px 50% #666;
}
#BtnList #PdfBtn {
	background: url(../img/btn_ico_pdf.png) no-repeat 10px 50% #666;
}
#BtnList #SettingBtn {
	background: url(../img/btn_ico_setting.png) no-repeat 10px 50% #666;
}
#BtnList #HelpBtn {
	background: url(../img/btn_ico_help.png) no-repeat 6px 50% #666;
	padding-left: 25px;
}
#BtnList #SpTextCopyBtn {
	background: url(../img/btn_ico_text.png) no-repeat 8px 50% #666;
}
#BtnList #SpAutoBtn {
	background: url(../img/btn_ico_auto.png) no-repeat 8px 50% #666;
}
#BtnList #SpBackBtn {
	position: relative;
	background-color: #666;
}
#BtnList #SpBackBtn.disabled {
	display: none;
}
#BtnList #SpBackBtn:before {
	content: "";
	position: absolute;
	top: 0;
	left: 10px;
	bottom: 0;
	width: 14px;
	height: 14px;
	margin: auto 0;
	border-radius: 50%;
	background-color: #fff;
}
#BtnList #SpBackBtn:after {
	content: "";
	position: absolute;
	top: 0;
	left: 14px;
	bottom: 0;
	height: 0;
	margin: auto 0;
	border-right: 5px solid #666;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
}
#BtnList #CloseBtn {
	background: url(../img/btn_ico_close.png) no-repeat 10px 50% #a31039;
	padding-left: 25px;
}
#BtnList #CloseBtn span {
	display: none;
}
@media screen and (max-width: 767px){
	#BtnList {
		top: 0;
		left: 0;
		right: 0;
		background: #fff;
		padding: 5px;
		box-shadow: 0 2px 6px rgba(0,0,0,0.2);
	}
	body.openSpMenu #BtnList {
		overflow: hidden;
	}
	#SpMenuBtn {
		position: relative;
		display: block;
		width: 35px;
		height: 35px;
		border-radius: 3px;
		margin-left: auto;
		background-color: #a31039;
		box-shadow: 0 0 5px rgba(0,0,0,0.3);
		cursor: pointer;
	}
	#SpMenuBtn:after {
		content: "";
		position: absolute;
		top: 10px;
		left: 8px;
		right: 8px;
		height: 2px;
		background-color: #fff;
		box-shadow: 0 7px #fff, 0 14px #fff;
	}
	#BtnList .spScroll {
		position: absolute;
		top: 45px;
		right: -190px;
		width: 180px;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		box-shadow: 0 2px 5px rgba(0,0,0,0.4);
		transition: right 0.5s;
	}
	#BtnList .spScroll.show {
		right: 0;
	}
	#BtnList li {
		float: none;
		margin-left: 0;
		padding: 9px 10px;
		box-shadow: none;
		width: auto !important;
		border-radius: 0;
		text-align: left;
		font-size: 14px;
	}
	#BtnList li:not(:first-child) {
		border-top: 1px solid #fff;
		padding-left: 40px !important;
	}
	#BtnList #SpUrlCopy {
		padding: 0 !important;
	}
	#BtnList #SpUrlCopy button {
		border: none;
		height: 37px;
		background-color: transparent;
		padding: 9px 10px;
		font-size: inherit;
	}
	#BtnList li.onlySp {
		display: block;
	}
	#BtnList #HelpBtn {
		background-position: 8px 50%;
	}
	#BtnList #CloseBtn span {
		display: inline;
	}
}


/* MenuArea
=====================================================*/

#MenuArea {
	position: absolute;
	top: 0;
	left: -240px;
	bottom: 84px;
	z-index: 1000;
	width: 240px;
	transition: left 0.3s;
}
body.openMenu #MenuArea {
	left: 0;
}
#MenuContentArea {
	position: relative;
	background-color: #fff;
	box-shadow: 2px 0 6px rgba(0,0,0,0.4);
	height: 100%;
}
.menuContent {
	display: none;
}
.menuContent .header,
.menuContent .closeBtn {
	display: none;
}
@media screen and (max-width: 1050px){
	#MenuArea {
		left: -200px;
		width: 200px;
	}
}
@media screen and (max-width: 767px){
	#MenuArea {
		top: 0;
		left: 0;
		right: 45px;
		z-index: 1500;
		bottom: auto;
		width: auto;
		transition: none;
	}
	#MenuContentArea {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 500;
	}
	.menuContent .header {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 50;
		display: block;
		background-color: #fff;
		padding: 5px;
		height: 35px;
		border-bottom: 1px solid #ccc;
	}
	.menuContent .header h2 {
		padding: 8px 0 0;
		text-align: center;
		font-size: 18px;
	}
	.menuContent .closeBtn {
		position: absolute;
		top: 5px;
		right: 5px;
		display: block;
		width: 35px;
		height: 35px;
		border-radius: 3px;
		margin-left: auto;
		background-color: #a31039;
		box-shadow: 0 0 5px rgba(0,0,0,0.3);
	}
	.menuContent .closeBtn:before,
	.menuContent .closeBtn:after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 25px;
		height: 2px;
		margin: auto;
		background-color: #fff;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.menuContent .closeBtn:after {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
}

.cmnTitle {
	border-left: 5px solid #666;
	border-bottom: 1px solid #666;
	padding: 1px 0 1px 5px;
	margin-bottom: 8px;
	color: #666;
	font-weight: bold;
}
@media screen and (max-width: 767px){
	.cmnTitle {
		border-left: 5px solid #666;
		padding: 3px 0 3px 5px;
		margin-bottom: 8px;
	}
}

/* MenuList
------------------------*/

#MenuList {
	position: absolute;
	top: 0;
	right: -30px;
}
#MenuList li {
	width: 16px;
	height: 130px;
	margin-top: 2px;
	border-radius: 0 3px 3px 0;
	background-color: #a31039;
	padding: 0 7px;
	box-shadow: 2px 0 6px rgba(0,0,0,0.4);
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	text-align: center;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	cursor: pointer;
}
#MenuList li:hover {
	background-color: #be5774;
}
body.openMenu #MenuList li:not(.current):not(.close):not(:hover) {
	background-color: #fff;
	color: #a31039;
}
#MenuList li.close {
	position: relative;
	height: 70px;
	background-color: #888;
	padding-top: 10px;
	display: none;
}
#MenuList li.close:hover {
	background-color: #ababab;
}
body.openMenu #MenuList li.close {
	display: block;
}
#MenuList li.close:before {
	content: "";
	position: absolute;
	top: 12px;
	left: 12px;
	height: 8px;
	border-left: 1px solid #fff;
}
#MenuList li.close:after {
	content: "";
	position: absolute;
	top: 12px;
	left: 14px;
	border-right: 4px solid #fff;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
}
#MenuList li br {
	display: none;
}
@media screen and (max-height: 700px){
	#MenuList li:nth-child(1),
	#MenuList li:nth-child(3) {
		height: 80px;
	}
	#MenuList li:nth-child(2) {
		height: 100px;
	}
}
@media screen and (max-width: 767px){
	#MenuList {
		top: 5px;
		left: 5px;
		right: 0;
	}
	#MenuList li {
		float: left;
		width: 23%;
		height: 35px !important;
		box-sizing: border-box;
		margin: 0 2% 0 0;
		border: 1px solid #ccc;
		border-radius: 5px;
		padding: 0;
		box-shadow: 0 0 4px rgba(0,0,0,0.2);
		-ms-writing-mode: rl-tb;
		-webkit-writing-mode: horizontal-tb;
		writing-mode: horizontal-tb;
		font-size: 10px;
	}
	#MenuList li:hover {
		background-color: #a31039;
	}
	#MenuList li:before {
		content: "";
		display: inline-block;
		vertical-align: middle;
		height: 100%;
	}
	#MenuList li span {
		display: inline-block;
		vertical-align: middle;
	}
	#MenuList li br {
		display: inline;
	}
	body.openMenu #MenuList li.close {
		display: none;
	}
}

/* IndexList
------------------------*/

#IndexList {
	height: 100%;
}
#IndexList .logo {
	padding: 10px;
	text-align: center;
	cursor: pointer;
}
#IndexList .searchArea {
	padding: 5px 10px 15px;
	overflow: hidden;
}
#IndexSearchForm {
	max-width: 360px;
}
#IndexSearchText {
	float: left;
	width: 67%;
}
#IndexSearchSubmit {
	float: right;
	position: relative;
	width: 30%;
	height: 26px;
	max-width: 100px;
	padding: 4px 10px 4px 25px;
}
#IndexSearchSubmit:before {
	content: "";
	position: absolute;
	top: 5px;
	left: 10px;
	width: 7px;
	height: 7px;
	border: 2px solid #fff;
	border-radius: 50%;
}
#IndexSearchSubmit:after {
	content: "";
	position: absolute;
	top: 14px;
	left: 18px;
	width: 5px;
	border-top: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
#IndexList > ul {
	border-top: 1px dotted #999;
}
#IndexList li {
	position: relative;
	border-bottom: 1px dotted #999;
	padding: 10px;
	font-size: 11px;
	transition: background-color 0.2s;
	cursor: pointer;
}
#IndexList li:hover {
	background-color: #f8edf0;
}
#IndexList li.click {
	background-color: #ddd;
}
#IndexList .color {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 30px;
	z-index: 10;
	cursor: pointer;
}
#IndexList .color:hover {
	opacity: 0.8;
}
#IndexList .color:after {
	content: "＋";
	position: absolute;
	top: 8px;
	left: 0;
	right: 0;
	text-align: center;
	color: #fff;
	font-size: 15px;
}
#IndexList li.folder.open > .color:after {
	content: "－"
}
#IndexList li.folder {
	padding: 0 0 0 30px !important;
	background-color: #fff;
}
#IndexList li.folder:after {
	display: none;
}
#IndexList .folderTit {
	padding: 10px;
	transition: background-color 0.2s;
}
#IndexList .folderTit:hover {
	background-color: #f8edf0;
}
#IndexList li.folder ul {
	-webkit-transition: height 0.5s;
	transition: height 0.5s;
	overflow: hidden;
	display: none;
}
#IndexList li.folder.open > ul {
	display: block;
}
#IndexList li.folder li {
	border-top: 1px dotted #999;
	border-bottom: none;
	padding-left: 18px;
}
@media screen and (max-width: 1050px) and (min-width: 768px){
	#IndexSearchText {
		width: 60%;
	}
	#IndexSearchSubmit {
		width: 37%;
		white-space: nowrap;
	}
}
@media screen and (max-width: 767px){
	#IndexList {
		padding-top: 45px;
		box-sizing: border-box;
	}
}

/* SearchArea
------------------------*/

#SearchArea {
	padding: 15px 12px 0;
	height: 100%;
	box-sizing: border-box;
}
#SearchInputArea {
	margin-bottom: 20px;
}
#SearchText {
	display: block;
	margin-bottom: 8px;
}
#SearchSubmit {
	position: relative;
	margin-left: auto;
	width: 70px;
	padding-left: 20px;
}
#SearchSubmit:before {
	content: "";
	position: absolute;
	top: 5px;
	left: 10px;
	width: 7px;
	height: 7px;
	border: 2px solid #fff;
	border-radius: 50%;
}
#SearchSubmit:after {
	content: "";
	position: absolute;
	top: 14px;
	left: 18px;
	width: 5px;
	border-top: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
#SearchList li {
	border-bottom: 1px dashed #ccc;
	padding: 8px 5px;
	font-size: 12px;
	cursor: pointer;
}
#SearchList li:hover {
	background-color: #f8edf0;
}
#SearchMessage {
	display: none;
	padding: 8px 5px;
}
@media screen and (max-width: 767px){
	#SearchArea {
		padding-top: 60px;
	}
	#SearchInputArea .cmnTitle {
		display: none;
	}
	#SearchForm {
		max-width: 360px;
		overflow: hidden;
	}
	#SearchText {
		float: left;
		width: 67%;
		margin-bottom: 0;
	}
	#SearchSubmit {
		float: right;
		margin-left: 0;
		width: 30%;
		height: 26px;
		padding: 4px 10px 4px 25px;
	}
}

/* TagList
------------------------*/

#TagList {
	height: 100%;
	padding: 40px 0 85px;
	box-sizing: border-box;
}
#TagList .deleteAll {
	position: absolute;
	top: 10px;
	right: 10px;
}
#TagList > ul {
	height: 100%;
	padding: 0 8px 0 10px;
}
#TagList .tag {
	position: relative;
	margin-bottom: 10px;
	padding: 1px;
}
#TagList .tag .date {
	position: relative;
	padding: 4px 5px 5px 20px;
	color: #fff;
	font-size: 11px;
}
#TagList .tag.fontblack .date{
	color:#000;
}
#TagList .tag.personal .date:before {
	content: "";
	position: absolute;
	top: 4px;
	left: 7px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: #fff;
}
#TagList .tag.personal .date:after {
	content: "";
	position: absolute;
	top: 12px;
	left: 5px;
	width: 5px;
	border-bottom: 6px solid #fff;
	border-left: 3px solid transparent;
	border-right: 3px solid transparent;
}
#TagList .tag.share .date:before {
	content: "";
	position: absolute;
	top: 5px;
	left: 9px;
	width: 10px;
	height: 10px;
	border-left: 1px solid #fff;
	border-bottom: 1px solid #fff;
	-webkit-transform: rotate(45deg) skewX(-10deg) skewY(-10deg);
	transform: rotate(45deg) skewX(-10deg) skewY(-10deg);
}
#TagList .tag.share .date:after {
	content: "";
	position: absolute;
	top: 8px;
	left: 3px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: #fff;
	box-shadow: 8px -5px #fff, 8px 5px #fff;
}
#TagList .tag.error:before {
	content: "";
	position: absolute;
	top: 3px;
	right: 24px;
	width: 11px;
	height: 11px;
	border: 3px solid #f00;
	border-radius: 50%;
}
#TagList .tag.error:after {
	content: "";
	position: absolute;
	top: 10px;
	right: 24px;
	width: 17px;
	height: 3px;
	background-color: #f00;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
#TagList .tag.share.error:before,
#TagList .tag.share.error:after {
	right: 3px;
}
#TagList .tag .delete {
	position: absolute;
	top: 3px;
	right: 3px;
	width: 18px;
	height: 18px;
	background-color: #fff;
	text-align: center;
	font-size: 18px;
	line-height: 18px;
	cursor: pointer;
}
#TagList .tag .content {
	background-color: #fff;
	padding: 10px;
	font-size: 12px;
}
#TagList .tag.old .content {
	background-color: #efefef;
}
#TagList .tag.em .content {
	margin: 0 3px 3px;
	padding: 10px 7px 7px;
}
#TagList .tag .textArea {
	overflow: hidden;
	margin-bottom: 10px;
}
#TagList .tag .img {
	float: left;
	width: 58px;
	height: 58px;
	border: 1px solid #ccc;
	margin-right: 5px;
}
#TagList .tag .img:empty {
	position: relative;
	background-color: #ccc;
}
#TagList .tag .img:empty:after {
	content: "No Image";
	position: absolute;
	top: 25px;
	left: 0;
	right: 0;
	text-align: center;
	font-size: 10px;
	line-height: 1;
	color: #666;
}
#TagList .tag .text.empty {
	color: #aaa;
}
#TagList .tag .categ {
	margin: 10px 0;
	color: #aaa;
	display: none;
}
#TagList .tag .name {
	margin: 10px 0 8px;
	display: none;
}
#TagList .tag .name div {
	background-color: rgba(255,255,255,0.8);
	padding: 5px;
}
#TagList .tag .other {
	display: none;
	margin: 5px 0;
	background-color: #eee;
	padding: 6px 10px;
	font-size: 11px;
}
#TagList .tag .otherTitle {
	text-align: center;
	cursor: pointer;
}
#TagList .tag .otherTitle:before {
	content: "▼";
}
#TagList .tag .otherTitle.open:before {
	content: "▲";
}
#TagList .tag .other ul {
	display: none;
	margin-top: 5px;
	border-top: 1px solid #999;
}
#TagList .tag .other li {
	padding: 5px 8px;
	border-bottom: 1px solid #999;
	cursor: pointer;
}
#TagList .tag .errorTxt {
	display: none;
	margin: 5px 0 10px;
	color: #e60000;
}
#TagList .tag .errorTxt .link {
	text-decoration: underline;
	cursor: pointer;
}
#TagList .tag .move {
	padding: 7px 0;
	text-align: center;
	font-size: 13px;
	color: #fff;
	cursor: pointer;
	display: none;
}
#TagList .tag.fontblack .move{
	color:#000;
}
#TagList .tag .move:hover {
	opacity: 0.8;
}
#TagList .tag .open .categ,
#TagList .tag .open .name,
#TagList .tag .open .other,
#TagList .tag .open .errorTxt,
#TagList .tag .open .move {
	display: block;
}
#TagList .tag .toggle {
	margin-top: 10px;
	text-align: right;
}
#TagList .tag .toggle li {
	display: inline-block;
	cursor: pointer;
}
#TagList .tag .toggle li span {
	margin-right: 2px;
	font-weight: bold;
}
#TagList .tag .toggle li:last-child {
	display: none;
}
#TagList .tag .open .toggle li:first-child {
	display: none;
}
#TagList .tag .open .toggle li:last-child {
	display: inline-block;
}
#TagList > .share {
	position: absolute;
	left: 10px;
	right: 10px;
	bottom: 46px;
	padding: 6px 10px;
}
#TagList > .hidden,
#TagList > .show {
	position: absolute;
	left: 10px;
	right: 10px;
	bottom: 10px;
	padding: 6px 10px;
}
#TagList > .show {
	display: none;
}
body.hideTag #TagList > .hidden {
	display: none;
}
body.hideTag #TagList > .show {
	display: block;
}
@media screen and (max-width: 1050px) and (min-width: 768px){
	#TagList .tag .date {
		font-size: 10px;
		letter-spacing: -0.05em;
	}
	#TagList .tag .content {
		padding: 8px 6px;
		font-size: 11px;
	}
	#TagList .tag .other {
		padding: 6px 5px;
	}
	#TagList .tag .otherTitle {
		font-size: 10px;
	}
	#TagList .tag .move {
		font-size: 11px;
	}
}
@media screen and (max-width: 767px){
	#TagList {
		padding: 95px 0 52px;
	}
	#TagList .deleteAll {
		top: 56px;
		padding: 7px 15px;
	}
	#TagList .tag .toggle {
		text-align: center;
	}
	#TagList .tag .toggle li {
		border: 1px solid #999;
		border-radius: 4px;
		padding: 5px 10px;
	}
	#TagList > .share {
		right: 51%;
		bottom: 10px;
		padding: 8px 0;
	}
	#TagList > .hidden,
	#TagList > .show {
		left: 51%;
		padding: 8px 0;
	}
}

/* VisualMenu
------------------------*/

#VisualMenu {
	height: 100%;
}
#VisualMenu ul {
	padding: 15px 20px;
}
#VisualMenu li {
	border-bottom: 1px dashed #ccc;
	padding: 10px 10px 8px;
}
#VisualMenu .img {
	position: relative;
	margin: 0 0 5px;
	border: 1px solid #aaa;
	background-color: #eee;
	padding-top: 70.37%;
	overflow: hidden;
	cursor: pointer;
}
#VisualMenu .img:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255,0,0,0);
	transition: all 0.3s;
}
#VisualMenu .img:hover:after {
	background-color: rgba(255,0,0,0.2);
}
#VisualMenu .img img {
	position: absolute;
	top: 0;
	width: 50%;
}
#VisualMenu .imgL {
	left: 0;
}
#VisualMenu .imgR {
	right: 0;
}
@media screen and (max-width: 1050px){
	#VisualMenu ul {
		padding: 15px;
	}
}
@media screen and (max-width: 767px){
	#VisualMenu {
		padding-top: 60px;
		box-sizing: border-box;
	}
	#VisualMenu ul {
		overflow: hidden;
		padding: 0 10px 20px;
	}
	#VisualMenu li {
		float: left;
		width: 42%;
		padding: 10px 4% 8px;
	}
	#VisualMenu .page {
		height: 1.3em;
	}
}


/* SliderArea
=====================================================*/

#SliderArea {
	height: 100%;
	margin: 0;
	padding: 40px 55px 100px 90px;
	box-sizing: border-box;
	overflow: hidden;
	cursor: zoom-in;
	/*background:#EAF6FD;*/
	background:#e7f4fc;
}
#SliderArea.max {
	cursor: zoom-out;
}
body.penMode #SliderArea {
	cursor: default !important;
}
body.openMenu #SliderArea {
	padding-left: 325px;
}
#SliderArea ul {
	position: relative;
	height: 100%;
}
#SliderArea ul.move {
	-webkit-transition: left 0.5s;
	transition: left 0.5s;
}
#SliderArea li {
	position: relative;
	float: left;
	height: 100%;
	border-right: 2px solid transparent;
}
.pageArea {
	position: absolute;
	/* box-shadow: 0 0 15px rgba(0,0,0,0.3);*/
	box-shadow: none;
}
.pageArea.empty {
	box-shadow: none;
}
.pageAreaInner {
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
}
.mainImg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.pageL,
.pageR {
	position: absolute;
	top: 0;
	height: 100%;
	white-space: nowrap;
}
.pageL {
	right: 50%;
}
.single .pageL {
	right: 0;
}
.pageR {
	left: 50%;
}
.single .pageR {
	left: 0;
}
.canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.canvas canvas {
	width: 100%;
	height: 100%;
	opacity:0.999;
}
.linkLayer {
	position: absolute;
	top: 0;
	left: 0;
}
.linkArea {
	position: absolute;
	border: 1px solid #f00;
	cursor: pointer;
	background-color: rgba(237,23,31,0.1);
	border-color: rgba(237,23,31,0.3);
}
.linkArea:hover {
	background-color: rgba(237,23,31,0.6);
}
.pageArea.emLink .linkArea {
	animation: emLink 1s;
}
body.autoMode .pageArea.emLink .linkArea {
	animation: none;
}
@-webkit-keyframes emLink {
	0% { background-color: rgba(237,23,31,0.4); }
	20% { background-color: rgba(237,23,31,0.6); }
	100% { background-color: rgba(237,23,31,0.1); }
}
@keyframes emLink {
	0% { background-color: rgba(237,23,31,0.4); }
	20% { background-color: rgba(237,23,31,0.6); }
	100% { background-color: rgba(237,23,31,0.1); }
}
.linkArea.strong {
	border-width: 2px;
	border-color: #f00 !important;
	-webkit-animation: searchLink 1s;
	animation: searchLink 1s;
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
}
.linkArea.strong span {
	display: block;
	position: absolute;
	left: -31px;
	top: -31px;
	width: 30px;
	height: 30px;
	background: url(../img/search_arrow.png) no-repeat 0 0;
	background-size: 30px 30px;
	-webkit-animation: searchLink 1s;
	animation: searchLink 1s;
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
}
.linkArea.strong span.move {
	-webkit-animation: searchArrow 2s forwards;
	animation: searchArrow 2s forwards;
}
.linkCheck {
	position: absolute;
	color: black;
	background-color: rgb(255, 204, 204);
	cursor: pointer;
	font-size: 8px;
	z-index: 1;
	border-width: 1px;
	border-style: solid;
	border-color: black;
	border-image: initial;
}
.linkCheck:hover{
	color: transparent;
	background-color: transparent;
	border-color: transparent;
}

@-webkit-keyframes searchLink {
	0% { opacity: 1; }
	17% { opacity: 0; }
	33% { opacity: 1; }
	50% { opacity: 0; }
	67% { opacity: 1; }
	83% { opacity: 0; }
	100% { opacity: 1; }
}
@keyframes searchLink {
	0% { opacity: 1; }
	17% { opacity: 0; }
	33% { opacity: 1; }
	50% { opacity: 0; }
	67% { opacity: 1; }
	83% { opacity: 0; }
	100% { opacity: 1; }
}
@-webkit-keyframes searchArrow {
	0% { top: -35px; left: -35px; }
	12% { top: -25px; left: -25px; }
	25% { top: -35px; left: -35px; }
	37% { top: -25px; left: -25px; }
	50% { top: -35px; left: -35px; opacity: 1; }
	100% {top: -35px; left: -35px; opacity: 0; visibility:hidden;}
}
@keyframes searchArrow {
	0% { top: -35px; left: -35px; }
	12% { top: -25px; left: -25px; }
	25% { top: -35px; left: -35px; }
	37% { top: -25px; left: -25px; }
	50% { top: -35px; left: -35px; opacity: 1; }
	100% {top: -35px; left: -35px; opacity: 0; visibility:hidden;}
}
.tagLayer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
body.hideTag .tagLayer {
	display: none;
}
.tagLayer .tag {
	position: absolute;
	z-index: 20;
	border: 2px solid #999;
	background-color: #fff;
	padding: 5px;
	width: 260px;
	box-shadow: 0 0 5px rgba(0,0,0,0.4);
	cursor: default;
}
.tagLayer .tag.left {
	border-left-width: 20px;
}
.tagLayer .tag.right {
	border-right-width: 20px;
}
.tagLayer .tag .header {
	position: relative;
	padding: 3px 0 6px 24px;
	border-bottom: 1px solid #999;
}
.tagLayer .tag.personal .header:before {
	content: "";
	position: absolute;
	top: 1px;
	left: 7px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background-color: #333;
}
.tagLayer .tag.personal .header:after {
	content: "";
	position: absolute;
	top: 11px;
	left: 5px;
	width: 5px;
	border-bottom: 8px solid #333;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
}
.tagLayer .tag.share .header:before {
	content: "";
	position: absolute;
	top: 5px;
	left: 10px;
	width: 10px;
	height: 10px;
	border-left: 1px solid #333;
	border-bottom: 1px solid #333;
	-webkit-transform: rotate(45deg) skewX(-10deg) skewY(-10deg);
	transform: rotate(45deg) skewX(-10deg) skewY(-10deg);
}
.tagLayer .tag.share .header:after {
	content: "";
	position: absolute;
	top: 7px;
	left: 3px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: #333;
	box-shadow: 10px -6px #333, 10px 6px #333;
}
.tagLayer .tag .btnList {
	position: absolute;
	top: 5px;
	right: 5px;
}
.tagLayer .tag .btnList div {
	position: relative;
	float: left;
	width: 20px;
	height: 20px;
	background-color: #333;
	margin-left: 3px;
	cursor: pointer;
}
.tagLayer .tag .color:after {
	content: "";
	position: absolute;
	top: 2px;
	left: 6px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #a31039;
	box-shadow: -4px 7px #00b0e5, 4px 7px #fabe00;
}
.tagLayer .tag .close:after {
	content: "";
	position: absolute;
	left: 3px;
	right: 3px;
	bottom: 3px;
	border-bottom: 2px solid #fff;
}
.tagLayer .tag .delete {
	color: #fff;
	text-align: center;
	font-size: 18px;
	line-height: 20px;
}
.tagLayer .tag .copy:before,
.tagLayer .tag .copy:after {
	content: "";
	position: absolute;
	top: 4px;
	left: 4px;
	width: 8px;
	height: 8px;
	border: 1px solid #fff;
	background-color: #333;
}
.tagLayer .tag .copy:after {
	top: 7px;
	left: 7px;
}
.tagLayer .tag .text {
	padding: 8px 8px 2px;
}
.tagLayer .tag .text {
	height: 3.9em;
	font-size: 12px;
}
.tagLayer .tag textarea {
	display: block;
	border: none;
	width: 100%;
	height: 3.9em;
	font-size: inherit;
	line-height: 1.3;
	overflow: hidden;
	resize: none;
}
.tagLayer .tag.close {
	z-index: 10;
	width: 40px;
	height: 18px;
	-webkit-user-select: none;
}
.tagLayer .tag.close.left {
	border-width: 0 0 0 20px;
}
.tagLayer .tag.close.right {
	border-width: 0 20px 0 0;
}
.tagLayer .tag.close .header,
.tagLayer .tag.close .btnList,
.tagLayer .tag.close .text {
	display: none;
}
@media screen and (max-width: 1050px){
	body.openMenu #SliderArea {
		padding-left: 285px;
	}
}
@media screen and (max-width: 767px){
	#SliderArea {
		padding: 55px 15px 92px;
	}
	.tagLayer .tag.left {
		border-left-width: 15px;
	}
	.tagLayer .tag.right {
		border-right-width: 15px;
	}
	.tagLayer .tag.close.left {
		border-width: 0 0 0 15px;
	}
	.tagLayer .tag.close.right {
		border-width: 0 15px 0 0;
	}
}

/* PageBtn
------------------------*/

#PageBtnLeft,
#PageBtnRight {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 100;
	width: 36px;
	height: 36px;
	margin: auto 0;
	border-radius: 4px;
	background-color: #a31039;
	box-shadow: 0 0 5px rgba(0,0,0,0.3);
	cursor: pointer;
	display: none;
}
#PageBtnLeft {
	left: 35px;
}
body.openMenu #PageBtnLeft {
	left: 275px;
}
#PageBtnRight {
	right: 0;
}
#PageBtnLeft:hover,
#PageBtnRight:hover {
	background-color: #be5774;
}
#PageBtnLeft:before,
#PageBtnRight:before {
	content: "";
	position: absolute;
	top: 0;
	left: 8px;
	bottom: 0;
	height: 0;
	margin: auto 0;
	border-right: 10px solid #fff;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
}
#PageBtnLeft:after,
#PageBtnRight:after {
	content: "";
	position: absolute;
	top: 0;
	left: 18px;
	bottom: 0;
	width: 8px;
	height: 8px;
	margin: auto 0;
	background-color: #fff;
}
#PageBtnRight:before {
	left: 18px;
	border-left: 10px solid #fff;
	border-right: none;
}
#PageBtnRight:after {
	left: 10px;
}
@media screen and (max-width: 1050px){
	body.openMenu #PageBtnLeft {
		left: 235px;
	}
}
@media screen and (max-width: 767px){
	#PageBtnLeft,
	#PageBtnRight {
		top: auto;
		bottom: 48px;
		z-index: 1100;
		height: 30px;
	}
	#PageBtnLeft {
		left: 5px;
	}
	#PageBtnRight {
		right: 5px;
	}
	#PageBtnLeft:hover,
	#PageBtnRight:hover {
		background-color: #a31039;
	}
}

/* AreaNavi
------------------------*/

#AreaNavi {
	position: absolute;
	left: 290px;
	top: 100px;
	z-index: 1000;
	background-color: #a31039;
	padding: 2px;
	width: 190px;
	cursor: pointer;
	display: none;
}
#AreaNavi.single {
	width: 95px;
}
#AreaNavi h2 {
	padding: 0 2px 2px;
	color: #fff;
	font-size: 10px;
	line-height: 12px;
}
#AreaNavi .toggleBtn {
	position: absolute;
	top: 0;
	right: 0;
	width: 10px;
	height: 10px;
	background-color: #fff;
	border: 3px solid #a31039;
}
#AreaNavi .toggleBtn:after {
	content: "";
	position: absolute;
	left: 2px;
	right: 2px;
	bottom: 2px;
	border-bottom: 1px solid #a31039;
}
#AreaNavi .imgArea {
	position: relative;
	overflow: hidden;
}
#AreaNavi .img {
	background-color: #fff;
	overflow: hidden;
}
#AreaNavi .img .pageL {
	position: static;
	float: left;
}
#AreaNavi .img .pageR {
	position: static;
	float: right;
}
#AreaNavi .img img {
	width: 95px;
	height: 135px;
}
#AreaNavi .bg {
	position: absolute;
	background-color: rgba(0,0,0,0.3);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
#AreaNavi .area {
	position: absolute;
	border: 1px solid #a31039;
	box-sizing: border-box;
}
#AreaNavi.close {
	padding: 2px 2px 0;
}
#AreaNavi.close .toggleBtn:after {
	top: 2px;
	border: 1px solid #a31039;
}
#AreaNavi.close .imgArea {
	display: none;
}

/* BtmArea
=====================================================*/

#BtmArea {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background-color: #fff;
	box-shadow: 0 -2px 6px rgba(0,0,0,0.2);
}

#PageSliderArea {
	position: relative;
	width: 960px;
	height: 36px;
	margin: 0 auto;
}
#PageSliderArea:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 20px;
	border-radius: 8px;
	margin: auto 0;
	background: -webkit-linear-gradient(top, #c6c6c6 0%,#e6e6e6 100%);
	background: linear-gradient(to bottom, #c6c6c6 0%,#e6e6e6 100%);
}
#PageSlider {
	position: absolute;
	top: 0;
	width: 36px;
	height: 36px;
	cursor: pointer;
}
#PageSlider:before {
	content: "";
	position: absolute;
	top: 8px;
	left: 0;
	width: 36px;
	height: 20px;
	border-radius: 8px;
	background-color: #a31039;
}
#PageSlider:after {
	content: "";
	position: absolute;
	top: 14px;
	left: 0;
	right: 0;
	bottom: 14px;
	width: 2px;
	margin: 0 auto;
	background-color: #fff;
	box-shadow: -5px 0 #fff, 5px 0 #fff;
}
@media screen and (max-width: 980px){
	#PageSliderArea {
		width: 710px;
	}
}
@media screen and (max-width: 767px){
	#PageSliderArea {
		width: auto;
		margin: 0 46px;
	}
}

#PageNum {
	position: absolute;
	top: -28px;
	left: 50%;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px 5px;
	box-shadow: 0 0 5px rgba(0,0,0,0.2);
	font-size: 12px;
	white-space: nowrap;
	transform: translateX(-50%);
	display: none;
}
#PageNum:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -9px;
	width: 0;
	margin: 0 auto;
	border-top: 8px solid #ccc;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
}
#PageNum:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -8px;
	width: 0;
	margin: 0 auto;
	border-top: 8px solid #fff;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
}
#PageNum.show {
	display: block;
}
#PageNum.hide {
	display: none;
}

#Footer {
	padding: 5px 0;
	width: 960px;
	margin: 0 auto;
}
#Footer .btnList {
	float: left;
}
#Footer .btnList li {
	float: left;
	background-color: #666;
	width: 56px;
	margin-left: 3px;
	border-radius: 5px;
	padding: 22px 0 2px;
	box-sizing: border-box;
	box-shadow: 0 2px 4px rgba(0,0,0,0.2);
	color: #fff;
	text-align: center;
	font-size: 11px;
	font-weight: bold;
	cursor: pointer;
}
#Footer .btnList li:first-child {
	margin-left: 0;
}
#Footer .btnList li:hover {
	opacity: 0.8;
}
#TextCopyBtn { background: url(../img/btn_ico_text.png) no-repeat 50% 4px; }
#AutoBtn { background: url(../img/btn_ico_auto.png) no-repeat 50% 4px; }
#TagBtn { background: url(../img/btn_ico_tag.png) no-repeat 50% 5px; }
#PenBtn { background: url(../img/btn_ico_pen.png) no-repeat 50% 4px; }

#Footer #BackBtn {
	position: relative;
	padding: 11px 0 11px 20px;
	font-size: 13px;
}
#Footer #BackBtn.disabled {
	opacity: 0.4;
	cursor: default;
}
#Footer #BackBtn:before {
	content: "";
	position: absolute;
	top: 0;
	left: 8px;
	bottom: 0;
	width: 12px;
	height: 12px;
	margin: auto 0;
	border-radius: 50%;
	background-color: #fff;
}
#Footer #BackBtn:after {
	content: "";
	position: absolute;
	top: 0;
	left: 11px;
	bottom: 0;
	height: 0;
	margin: auto 0;
	border-right: 5px solid #666;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
}
#Footer #UrlCopyBtn {
	position: relative;
	width: 85px;
	padding: 0;
}
#Footer #UrlCopyBtn button {
	height: 38px;
	padding: 5px;
	border: none;
	background-color: transparent;
	font-size: inherit;
	line-height: 1.3;
	cursor: pointer;
}
#Footer #UrlCopyBtn .text {
	position: absolute;
	right: -10px;
	bottom: 48px;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
	background-color: #fff;
	box-shadow: 0 0 5px rgba(0,0,0,0.2);
	color: #333;
	font-weight: normal;
	white-space: nowrap;
	display: none;
	opacity: 0;
	transition: opacity 0.3s;
}
#Footer #UrlCopyBtn .text.show {
	opacity: 1;
}
#Footer #UrlCopyBtn .text:before {
	content: "";
	position: absolute;
	right: 45px;
	bottom: -9px;
	border-top: 8px solid #ccc;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
}
#Footer #UrlCopyBtn .text:after {
	content: "";
	position: absolute;
	right: 45px;
	bottom: -7px;
	border-top: 8px solid #fff;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
}
#Footer .page {
	position: relative;
	float: left;
	border-left: 1px solid #ccc;
	border-right: 1px dashed #ccc;
	padding-left: 10px;
	margin-left: 8px;
	width: 155px;
}
#Footer .page .text {
	font-size: 11px;
}
#PageInput {
	width: 60px;
	height: 22px;
	text-align: right;
}
#Footer .page .cmnBtn {
	position: absolute;
	bottom: 0;
	right: 9px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
#PageBtn {
	float: left;
	padding: 0 7px 0 10px;
	border-right: 1px solid #ccc;
	margin-right: 9px;
}
#PageBtn li {
	position: relative;
	float: left;
	margin-right: 3px;
	background-color: #a31039;
	border-radius: 5px;
	padding: 6px 0;
	width: 48px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.2);
	text-align: center;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	cursor: pointer;
}
#PageBtn li:hover {
	opacity: 0.8;
}
#PageBtn li:before,
#PageBtn li:after {
	content: "";
	position: absolute;
}
#PageBtn .prev,
#PageBtn .next {
	padding: 10px 0;
	width: 100px;
	font-size: 14px;
}
#PageBtn .top {
	margin-top: 5px;
	padding-left: 14px;
}
#PageBtn .top:before {
	top: 8px;
	left: 8px;
	border-right: 5px solid #fff;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	box-shadow: -2px 0 #fff;
}
#PageBtn .top:after {
	top: 11px;
	left: 13px;
	width: 4px;
	height: 4px;
	background: #fff;
}
#PageBtn .prev {
	padding-left: 22px;
}
#PageBtn .prev:before {
	top: 11px;
	left: 10px;
	border-right: 7px solid #fff;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
}
#PageBtn .prev:after {
	top: 15px;
	left: 17px;
	width: 6px;
	height: 6px;
	background-color: #fff;
}
#PageBtn .next {
	padding-right: 22px;
}
#PageBtn .next:before {
	top: 11px;
	right: 10px;
	border-left: 7px solid #fff;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
}
#PageBtn .next:after {
	top: 15px;
	right: 17px;
	width: 6px;
	height: 6px;
	background-color: #fff;
}
#PageBtn .last {
	margin-top: 5px;
	padding-right: 14px;
}
#PageBtn .last:before {
	top: 8px;
	right: 8px;
	border-left: 5px solid #fff;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	box-shadow: 2px 0 #fff;
}
#PageBtn .last:after {
	top: 11px;
	right: 13px;
	width: 4px;
	height: 4px;
	background: #fff;
}
#PageBtn li br {
	display: none;
}
@media screen and (max-width: 980px){
	#Footer {
		width: 710px;
	}
	#PageBtn .prev,
	#PageBtn .next {
		display: none;
	}
}
@media screen and (max-width: 767px){
	#Footer {
		padding: 3px 5px 5px 10px;
		width: 295px;
	}
	#Footer .btnList li:hover {
		opacity: 1;
	}
	#Footer #TextCopyBtn,
	#Footer #AutoBtn,
	#Footer #BackBtn,
	#Footer #UrlCopyBtn {
		display: none;
	}
	#Footer .page {
		border-right: none;
	}
	#Footer .page .cmnBtn {
		position: absolute;
		bottom: 0;
		right: 5px;
		box-shadow: 0 2px 4px rgba(0,0,0,0.2);
	}
	#PageBtn {
		display: none;
	}
}

/* TextCopyArea
------------------------*/

.cutArea {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2000;
	display: none;
}
.cutArea .bg {
	position: absolute;
	background-color: rgba(0,0,0,0.5);
}
.cutArea .bgT { top: 0; left: 0; right: 0; }
.cutArea .bgL { left: 0; }
.cutArea .bgR { right: 0; }
.cutArea .bgB { left: 0; right: 0; bottom: 0; }

.cutArea .area {
	position: absolute;
	background-color: rgba(0,0,0,0);
	cursor: move;
}
.cutArea .area > div {
	position: absolute;
	border-radius: 5px;
	background-color: #a31039;
	box-shadow: 1px 1px 2px rgba(0,0,0,0.5);
	cursor: pointer;
}
.cutArea .closeBtn {
	top: -26px;
	right: -26px;
	width: 36px;
	height: 36px;
}
.cutArea .closeBtn::before,
.cutArea .closeBtn::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 3px;
	height: 25px;
	margin: auto;
	background-color: #fff;
	-webkit-transform: rotateZ(45deg);
	transform: rotateZ(45deg);
}
.cutArea .closeBtn::after {
	-webkit-transform: rotateZ(-45deg);
	transform: rotateZ(-45deg);
}
.cutArea .resizeBtn {
	right: -22px;
	bottom: -22px;
	width: 30px;
	height: 30px;
	background: url(../img/btn_ico_resize.png) no-repeat 50% 50% #a31039;
	-webkit-background-size: 20px 20px;
	background-size: 20px 20px;
	cursor: nw-resize;
}
.cutArea .execBtn {
	left: -20px;
	bottom: -25px;
	padding: 8px 10px;
	color: #fff;
}
.cutArea .closeBtn:hover,
.cutArea .execBtn:hover {
	background-color: #b53f60;
}

#TextCopyResult .result p {
	-webkit-user-select: auto;
	user-select: auto;
}
#TextCopyResult .textArea {
	margin-top: 15px;
	display: block;
	width: 100%;
	height: 300px;
	border: 1px solid #ccc;
	padding: 10px;
	box-sizing: border-box;
	resize: none;
}
@media screen and (max-width: 600px){
	#TextCopyResult .textArea {
		height: 250px;
	}
}

/* AutoMenu
------------------------*/

body.autoMode #BtnList,
body.autoMode #MenuArea,
body.autoMode #PageBtnLeft,
body.autoMode #PageBtnRight,
body.autoMode #BtmArea {
	display: none !important;
}
body.autoMode #SliderArea {
	padding: 20px 40px 50px;
	cursor: default !important;
}
@media screen and (max-width: 767px){
	body.autoMode #SliderArea {
		padding: 0 15px 50px;
	}
}

#AutoMenu {
	right: 5px;
	bottom: 5px;
	z-index: 2000;
	padding: 3px 8px;
	overflow: hidden;
	color: #666;
	font-size: 12px;
}
body.autoMode #AutoMenu {
	display: block;
}
#AutoInterval {
	float: left;
	padding-right: 3px;
	border-right: 1px solid #ccc;
	margin-right: 8px;
}
#AutoInterval .label {
	float: left;
	padding: 4px 10px 4px 0;
	font-weight: bold;
}
#AutoInterval ul {
	float: left;
}
#AutoInterval li {
	float: left;
	margin-right: 5px;
	background-color: #afafaf;
	padding: 2px 0;
	border-radius: 4px;
	width: 40px;
	text-align: center;
	color: #fff;
	font-size: 10px;
	cursor: pointer;
}
#AutoInterval li.current {
	background-color: #a31039;
}
#AutoInterval li span {
	margin-right: 1px;
	font-size: 14px;
}
#AutoDirection {
	float: left;
}
#AutoDirection li {
	position: relative;
	display: none;
	background-color: #a31039;
	padding: 3px 5px 3px 20px;
	border-radius: 4px;
	color: #fff;
	font-size: 12px;
	cursor: pointer;
}
#AutoDirection li.current {
	display: block;
}
#AutoDirection li:before {
	content: "";
	position: absolute;
	top: 2px;
	left: -1px;
	width: 5px;
	border-right: 6px solid #fff;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	box-shadow: 8px 0 0 -2px #fff;
}
#AutoDirection li:after {
	content: "";
	position: absolute;
	top: 10px;
	left: 12px;
	width: 5px;
	border-left: 6px solid #fff;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	box-shadow: -8px 0 0 -2px #fff;
}
#AutoDirection li:first-child:before,
#AutoDirection li:last-child:after {
	opacity: 0.5;
}
@media screen and (max-width: 767px){
	#AutoMenu {
		left: 5px;
		width: 331px;
		margin: 0 auto;
	}
	#AutoInterval .label {
		width: 60px;
		padding-right: 0;
	}
}
@media screen and (max-width: 350px){
	#AutoMenu {
		width: 271px;
	}
	#AutoInterval .label {
		display: none;
	}
}

/* Tag
------------------------*/

body.tagMode #BtnList,
body.tagMode .linkLayer,
body.tagMode .tagLayer,
body.tagMode #AreaNavi {
	display: none !important;
}

#TagAppend {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2000;
	display: none;
}
body.tagMode #TagAppend {
	display: block;
}
#TagAppend .links li {
	position: absolute;
	box-sizing: border-box;
	border: 1px solid #a31039;
}
#TagAppend .links li.over {
	border-width: 3px;
}
#TagAppend .tag,
#TagAppend .moveTag {
	position: absolute;
	top: 40px;
	left: 10px;
	border: 1px solid #a31039;
	border-top-width: 20px;
	background-color: #fff;
	padding: 8px 10px 5px 75px;
	height: 97px;
	box-sizing: border-box;
	font-size: 12px;
	cursor: pointer;
}
#TagAppend .tag:after {
	content: "";
	position: absolute;
	left: 7px;
	bottom: 7px;
	width: 60px;
	height: 60px;
	border: 1px solid #ccc;
}
#TagAppend.move .tag {
	display: none;
}
#TagAppend .moveTag {
	display: none;
	border-top-width: 24px;
	padding: 8px 10px 10px;
	height: auto;
	min-height: 80px;
}
#TagAppend.move .moveTag {
	display: block;
}
#TagAppend .moveTag .header {
	position: absolute;
	top: -22px;
	left: 0;
	padding: 4px 5px 5px 20px;
	color: #fff;
	font-size: 11px;
}
#TagAppend .moveTag .header:before {
	content: "";
	position: absolute;
	top: 3px;
	left: 7px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: #fff;
}
#TagAppend .moveTag .header:after {
	content: "";
	position: absolute;
	top: 11px;
	left: 5px;
	width: 5px;
	border-bottom: 6px solid #fff;
	border-left: 3px solid transparent;
	border-right: 3px solid transparent;
}
#TagAppend .moveTag .img {
	float: left;
}
#TagAppend .moveTag .img img {
	width: 58px;
	border: 1px solid #ccc;
	margin-right: 5px;
}
#TagAppend .moveTag .text {
	overflow: hidden;
}
#TagAppend .leftBtn,
#TagAppend .rightBtn {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 36px;
	height: 36px;
	margin: auto 0;
	border-radius: 4px;
	background-color: rgba(255,255,255,0);
	cursor: pointer;
}
#TagAppend .leftBtn {
	left: 275px;
}
#TagAppend .rightBtn {
	right: 0;
}
#TagAppend .leftBtn:hover,
#TagAppend .rightBtn:hover {
	background-color: rgba(255,255,255,0.3);
}
#TagAppend .textBox {
	position: absolute;
	top: 10px;
	left: 0;
	right: 0;
	background-color: #fff;
	width: 650px;
	padding: 15px 0;
	margin: 0 auto;
	box-shadow: 0 0 8px rgba(0,0,0,0.3);
	text-align: center;
	font-size: 16px;
	display: none;
}
#TagAppend .textBox p {
	display: inline;
}
#TagAppend .textBox span {
	margin-left: 15px;
	text-decoration: underline;
	cursor: pointer;
}
#TagAppend .detail {
	position: absolute;
	top: 45px;
	left: 250px;
	background-color: #fff;
	border-radius: 8px;
	padding: 16px 16px 10px;
}
#TagAppend .detail:before {
	content: "";
	position: absolute;
	top: 15px;
	left: -25px;
	border-top: 14px solid #fff;
	border-left: 25px solid transparent;
}
#TagAppend .detail p {
	font-size: 12px;
}
#TagAppend .msg02 {
	display: none;
}
#TagAppend.move .msg01 {
	display: none;
}
#TagAppend.move .msg02 {
	display: inline;
}
#TagAppend .animation {
	position: relative;
	margin: 5px 0 15px;
}
#TagAppend .animation .move {
	display: none;
}
#TagAppend.move .animation .add {
	display: none;
}
#TagAppend.move .animation .move {
	display: inline;
}
#TagAppend .mouse {
	position: absolute;
	animation: mouse01 7s infinite;
}
#TagAppend .mouse li {
	position: absolute;
	top: 0;
	left: 0;
	width: 143px;
	opacity: 0;
}
#TagAppend .mouse li.show {
	opacity: 1;
}
#TagAppend .detail .btnArea {
	margin-bottom: 10px;
}
#TagAppend .detail .cmnBtn {
	padding: 6px 10px;
}
#TagAppend .detail .enter {
	width: 300px;
}
#TagAppend .detail .cancel {
	width: 175px;
}
#TagAppend .drag {
	position: fixed;
	display: none;
	width: 30px;
	height: 15px;
	background-color: #fff;
	border-left: 10px solid #a31039;
	box-shadow: 0 0 5px rgba(0,0,0,0.3);
}
#TagAppend .drag .code {
	position: absolute;
	top: -32px;
	left: -20px;
	padding: 5px;
	background-color: #a31039;
	color: #fff;
	display: none;
}
#TagAppend .drag .code:after {
	content: "";
	position: absolute;
	left: 19px;
	bottom: -8px;
	border-top: 8px solid #a31039;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
}
#TagAppend .drag .message {
	position: absolute;
	display: none;
	top: 20px;
	left: 25px;
	padding: 5px;
	background-color: #a31039;
	color: #fff;
	font-size: 11px;
	white-space: nowrap;
}
#TagAppend .drag .message02 {
	background-color: #666;
}
@media screen and (max-width: 1250px){
	#TagAppend .text {
		left: 300px;
		right: auto;
	}
}
@media screen and (max-width: 1050px){
	#TagAppend .leftBtn {
		left: 235px;
	}
	#TagAppend .textBox {
		left: 210px;
		width: 550px;
		font-size: 13px;
	}
	#TagAppend .detail {
		left: 220px;
	}
}
@media screen and (max-width: 767px){
	body.tagMode #BtnList {
		display: block !important;
	}
	#TagAppend .tag,
	#TagAppend .textBox p,
	#TagAppend .detail,
	#TagAppendDetail {
		display: none !important;
	}
	#TagAppend .leftBtn,
	#TagAppend .rightBtn {
		top: auto;
		bottom: 48px;
		z-index: 1100;
		height: 30px;
	}
	#TagAppend .leftBtn {
		left: 5px;
	}
	#TagAppend .rightBtn {
		right: 5px;
	}
	#TagAppend .leftBtn:hover,
	#TagAppend .rightBtn:hover {
		background-color: rgba(255,255,255,0);
	}
	#TagAppend .textBox {
		display: block;
		top: auto;
		left: 0;
		right: 0;
		bottom: 20px;
		width: 200px;
		padding: 0;
		border-radius: 4px;
		font-size: 16px;
	}
	#TagAppend .textBox span {
		display: block;
		margin-left: 0;
		padding: 10px 0;
		text-decoration: none;
	}
}

#TagColor .window {
	position: fixed;
	width: 185px;
	padding: 8px 7px 8px 10px;
	font-size: 12px;
}
#TagColor ul {
	overflow: hidden;
	margin-top: 5px;
}
#TagColor li {
	float: left;
	width: 32px;
	height: 32px;
	margin-right: 3px;
	border: 1px solid #aaa;
	cursor: pointer;
}
#TagColor li:hover {
	opacity: 0.7;
}
#TagColor .color1 { background-color: #a31039; }
#TagColor .color2 { background-color: #00b0e5; }
#TagColor .color3 { background-color: #faeb00; }
#TagColor .color4 { background-color: #3eb134; }
#TagColor .color5 { background-color: #999; }

#TagDelete .window,
#TagDeleteAll .window,
#PdfCollectDeleteAll .window {
	position: fixed;
	padding: 8px 10px;
}
#TagDelete p,
#TagDeleteAll p,
#PdfCollectDeleteAll p {
	margin-bottom: 5px;
	font-size: 12px;
}
@media screen and (max-width: 767px){
	#TagDelete .window,
	#TagDeleteAll .window,
	#PdfCollectDeleteAll .window {
		width: 180px;
		padding: 12px;
	}
	#TagDelete p,
	#TagDeleteAll p,
	#PdfCollectDeleteAll p {
		margin-bottom: 10px;
	}
}

/* PenTool
------------------------*/

body.penMode .linkLayer {
	display: none !important;
}

#PenTool {
	z-index: 2000;
	color: #666;
	font-size: 12px;
	font-weight: bold;
}
#PenTool .title {
	border-bottom: 1px solid #ccc;
	padding: 5px 7px;
	margin-bottom: 8px;
}
#PenTool .closeBtn {
	position: absolute;
	top: 0;
	right: 2px;
	padding: 2px 5px;
	cursor: pointer;
}
#PenTool .closeBtn:after {
	content: "×";
	font-size: 16px;
	font-weight: bold;
}
#PenTool .content {
	padding: 0 2px 8px 12px;
	width: 250px;
}
#PenTool .block {
	float: left;
	padding: 0 8px 4px;
	font-size: 11px;
}
#PenTool .block:nth-child(1) {
	border-right: 1px solid #ccc;
}
#PenTool .block:nth-child(2) {
	margin-bottom: 10px;
}
#PenTool .block:nth-child(3) {
	border-right: 1px solid #ccc;
}
#PenTool .block:nth-child(4) {
	padding-right: 0;
}
#PenTool .block p {
	margin-bottom: 3px;
}
#PenTool .spSelect {
	display: none;
}
#PenTool .select {
	height: 25px;
}
#PenTool .selectList li {
	position: relative;
	float: left;
	width: 23px;
	height: 23px;
	border: 1px solid #bbb;
	margin-left: 2px;
	cursor: pointer;
}
#PenTool .selectList li:first-child {
	margin-left: 0;
}
#PenTool .selectList.width li:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	border-radius: 50%;
	background-color: #666;
}
#PenTool .selectList.width li.width1:before {
	width: 5px;
	height: 5px;
}
#PenTool .selectList.width li.width2:before {
	width: 11px;
	height: 11px;
}
#PenTool .selectList.width li.width3:before {
	width: 15px;
	height: 15px;
}
#PenTool .selectList li.color1 { background-color: #d30036; }
#PenTool .selectList li.color2 { background-color: #342aff; }
#PenTool .selectList li.color3 { background-color: #e4ed00; }
#PenTool .selectList li.color4 { background-color: #1a6c00; }
#PenTool .selectList li.color5 { background-color: #000; }

#PenTool .selectList.style li:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
#PenTool .selectList.style li.style1 {
	background: url(../img/pen_ico_free.png) no-repeat 50% 50%;
}
#PenTool .selectList.style li.style2:before {
	width: 2px;
	height: 20px;
	background-color: #666;
	transform: rotate(45deg);
}
#PenTool .selectList.style li.style3:before {
	width: 14px;
	height: 12px;
	border: 2px solid #666;
}
#PenTool .selectList.style li.style4:before {
	width: 14px;
	height: 14px;
	border: 2px solid #666;
	border-radius: 50%;
}
#PenTool .select li.selected:after {
	content: "";
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	border: 2px solid #a31039;
	box-shadow: 0 0 0 2px #fff inset;
}
#PenTool .back {
	position: relative;
	width: 23px;
	height: 23px;
	border: 1px solid #bbb;
	background: url(../img/pen_ico_back.png) no-repeat 50% 50%;
	cursor: pointer;
}
#PenTool .clear {
	position: relative;
	width: 23px;
	height: 23px;
	border: 1px solid #bbb;
	background: url(../img/pen_ico_clear.png) no-repeat 50% 50%;
	cursor: pointer;
}
@media screen and (max-width: 767px){
	#PenTool .title {
		display: none;
	}
	#PenTool .closeBtn {
		padding: 2px 5px;
	}
	#PenTool .closeBtn:after {
		font-size: 24px;
	}
	#PenTool .content {
		padding: 6px 36px 5px 10px;
	}
	#PenTool .block {
		text-align: center;
	}
	#PenTool .block:nth-child(1),
	#PenTool .block:nth-child(3) {
		border-right: none;
	}
	#PenTool .block:nth-child(4) {
		padding-right: 8px;
	}
	#PenTool .selectList {
		position: relative;
	}
	#PenTool .selectList li {
		width: 32px;
		height: 32px;
		margin-left: 6px;
	}
	#PenTool .spSelect {
		display: block;
	}
	#PenTool .select {
		position: absolute;
		top: -65px;
		background-color: #fff;
		border: 1px solid #999;
		border-radius: 5px;
		padding: 10px;
		height: auto;
		display: none;
	}
	#PenTool .select:before,
	#PenTool .select:after {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		bottom: -10px;
		width: 0;
		margin: 0 auto;
		border-top: 10px solid #999;
		border-left: 8px solid transparent;
		border-right: 8px solid transparent;
	}
	#PenTool .select:after {
		bottom: -9px;
		border-top-color: #fff;
	}
	#PenTool #PenToolSelectWidth {
		left: -25px;
		width: 114px;
	}
	#PenTool #PenToolSelectWidth:before,
	#PenTool #PenToolSelectWidth:after {
		right: 52px;
	}
	#PenTool #PenToolSelectColor {
		left: -71px;
		width: 194px;
	}
	#PenTool #PenToolSelectColor:before,
	#PenTool #PenToolSelectColor:after {
		right: 40px;
	}
	#PenTool #PenToolSelectStyle {
		left: -71px;
		width: 154px;
	}
	#PenTool .back {
		width: 32px;
		height: 32px;
	}
	#PenTool .clear {
		width: 32px;
		height: 32px;
	}
}
@media screen and (min-width: 768px){
	#PenTool .select {
		display: block !important;
	}
}


/* その他
=====================================================*/

/* dialog
------------------------*/

.dialog {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2000;
	background-color: rgba(0,0,0,0.3);
	display: none;
}
.dialog .window {
	display: block;
	top: 50%;
	left: 0;
	right: 0;
	max-width: 93.75%;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	width: 500px;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 10px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.dialog .window.sizeS {
	width: 300px;
}
.dialog .btnArea {
	margin-top: 10px;
	text-align: center;
}
.dialog .btn {
	display: inline-block;
	width: 100%;
	max-width: 200px;
	border: none;
	border-radius: 4px;
	background-color: #a31039;
	padding: 8px;
	box-sizing: border-box;
	text-align: center;
	color: #fff;
	font-size: 14px;
	line-height: inherit;
	text-decoration: none;
	cursor: pointer;
}
.dialog .btn:hover {
	opacity: 0.8;
}
.dialog .btn.cancel {
	max-width: 120px;
	margin-left: 10px;
	background-color: #999;
}
.dialog .iconTitle {
	padding-left: 40px;
	margin-bottom: 10px;
	color: #666;
	font-size: 16px;
	font-weight: bold;
}
.dialog .iconTitle span {
	display: block;
	font-size: 10px;
	font-weight: normal;
}
.dialog .pageSelect {
	margin-top: 8px;
}
.dialog .pageSelect li {
	border-top: 1px dashed #999;
}
.dialog .pageSelect li div {
	position: relative;
	padding: 10px 10px 10px 60px;
	font-size: 14px;
	cursor: pointer;
}
.dialog .pageSelect li div:hover {
	background-color: #f4e2e7;
}
.dialog .pageSelect li div:before,
.dialog .pageSelect li div:after {
	content: "";
	position: absolute;
	top: 4px;
	left: 10px;
	bottom: 4px;
	width: 20px;
	border: 1px solid #999;
	background-color: #f7d0db;
}
.dialog .pageSelect li div:after {
	left: 31px;
}
.dialog .pageSelect li.right div:before {
	background-color: #fff;
}
.dialog .pageSelect li.left div:after {
	background-color: #fff;
}
.dialog .pageSelect li.disabled div {
	opacity: 0.4;
	cursor: default;
}
.dialog .pageSelect li.disabled div:hover {
	background-color: #fff;
}
.dialog .pageSelect strong {
	color: #a31039;
	font-weight: bold;
}
.dialog .menuList li {
	border-top: 1px dashed #999;
	padding: 10px;
	font-size: 14px;
	cursor: pointer;
}
.dialog .menuList li:hover {
	background-color: #f4e2e7;
}
.dialog br.sp {
	display: none;
}
.spDialog {
	display: none;
}
.spDialog .window {
	display: block;
}
@media screen and (max-width: 767px){
	.dialog br.sp {
		display: inline;
	}
	.spDialog {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 2000;
		background-color: rgba(0,0,0,0.3);
		display: none;
	}
	.spDialog .window {
		display: block;
		top: 50%;
		left: 0;
		right: 0;
		margin: 0 auto;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}
}

#PrintDialog .window {
	width: 240px;
}
#PrintDialog .iconTitle {
	background: url(../img/title_ico_print.png) no-repeat 3px 0;
}
#PrintDialog .btnArea.print {
	margin-top: 20px;
}

#PdfCollectDialog .window {
	width: 650px;
}
#PdfCollectDialog .closeBtn {
	position: relative;
	float: right;
	margin-left: 10px;
	border-radius: 5px;
	background-color: #a31039;
	width: 30px;
	height: 30px;
	cursor: pointer;
}
#PdfCollectDialog .closeBtn::before,
#PdfCollectDialog .closeBtn::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 3px;
	height: 22px;
	margin: auto;
	background-color: #fff;
	-webkit-transform: rotateZ(45deg);
	transform: rotateZ(45deg);
}
#PdfCollectDialog .closeBtn::after {
	-webkit-transform: rotateZ(-45deg);
	transform: rotateZ(-45deg);
}
#PdfCollectDialog h2 {
	overflow: hidden;
	margin-bottom: 15px;
	border-radius: 2px;
	background-color: #666;
	padding: 5px 15px;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
}
#PdfCollectDialog.sort .topArea {
	display: none;
}
#PdfCollectDialog .main {
	margin: 10px 0 15px;
	background-color: #f5f5f5;
	padding: 10px 15px;
	display: flex;
	align-items: center;
}
#PdfCollectDialog .main p {
	flex-grow: 1;
	padding-right: 15px;
	font-size: 14px;
}
#PdfCollectDialog .main .btn {
	display: none;
	width: 150px;
	padding: 0;
	height: 34px;
}
#PdfCollectDialog .main .btn span {
	display: table-cell;
	padding: 4px 8px;
	vertical-align: middle;
	line-height: 1.2;
}
#PdfCollectDialog .main .btn.show {
	display: table;
}
#PdfCollectDialog.noList .main .btn {
	visibility: hidden;
}
#PdfCollectDialog.noList .listArea {
	display: none;
}
#PdfCollectDialog .checkbox {
	display: inline-block;
	margin: 4px 10px 4px 0;
}
#PdfCollectDialog .sortText {
	margin-top: 4px;
	display: none;
}
#PdfCollectDialog.sort .sortText {
	display: inline-block;
}
#PdfCollectDialog .list {
	position: relative;
	margin-top: 10px;
	overflow: hidden;
}
#PdfCollectDialog .list .inner {
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
#PdfCollectDialog .item {
	display: inline-block;
	vertical-align: top;
	width: 18%;
	padding: 0 1% 15px;
	text-align: center;
}
#PdfCollectDialog.sort .item {
	cursor: move;
}
#PdfCollectDialog .item.move {
	opacity: 0;
}
#PdfCollectDialog .item.dummy {
	position: absolute;
}
#PdfCollectDialog .item img {
	display: block;
	box-sizing: border-box;
	border: 1px solid #aaa;
	margin: 0 auto;
}
#PdfCollectDialog .item ul {
	margin: 8px -6px 0;
}
#PdfCollectDialog .item li {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	width: 24px;
	height: 24px;
	background-color: #666;
	margin: 0 5px;
	cursor: pointer;
}
#PdfCollectDialog .item li:hover {
	opacity: 0.8;
}
#PdfCollectDialog .item .download {
	background: url(../img/btn_download.png) no-repeat 50% 50% #666;
	background-size: 20px 20px;
}
#PdfCollectDialog .item .digicata {
	background: url(../img/btn_digicata.png) no-repeat 50% 50% #666;
	background-size: 20px 20px;
}
#PdfCollectDialog .item .delete {
	background: url(../img/btn_delete.png) no-repeat 50% 50% #666;
	background-size: 20px 20px;
}
#PdfCollectDialog .item .page {
	display: none;
}
#PdfCollectDialog.sort .item ul {
	display: none;
}
#PdfCollectDialog.sort .item .page {
	display: block;
	margin-top: 5px;
	height: 15px;
}
@media screen and (max-width: 700px){
	#PdfCollectDialog .item {
		width: 22%;
		padding: 0 1.5% 15px;
	}
}
@media screen and (max-width: 550px){
	#PdfCollectDialog .item {
		width: 29.33%;
		padding: 0 2% 15px;
	}
	#PdfCollectDialog .main {
		display: block;
		padding: 10px 5px;
		text-align: center;
	}
	#PdfCollectDialog .main p {
		padding: 0;
	}
	#PdfCollectDialog .main .btn {
		margin-top: 10px;
	}
	#PdfCollectDialog.noList .main .btn {
		display: none;
	}
}
@media screen and (max-width: 350px){
	#PdfCollectDialog .item li {
		margin: 0 2px;
	}
}
#PdfCollectDialog #PdfCollectEnd{
	margin-right:5px;
	display:none;
}
#PdfCollectDialog.sort #PdfCollectEnd{
	display:block;
}
.ExcerptArea{
	text-align:right;
}
.ExcerptArea input{
	margin-right:5px;
}
.ExcerptArea p{
	margin-top:10px;
}
.ExcerptArea a{
	text-decoration: none;
}
.ExcerptArea img{
	margin-left:5px;
	width:15px;
}
#SettingDialog .window {
	width: 300px;
	padding: 10px 15px;
}
#SettingDialog .iconTitle {
	margin-left: -5px;
	background: url(../img/title_ico_setting.png) no-repeat 0 0;
}
#SettingDialog .lead {
	margin: 20px 0;
	font-size: 12px;
}
#SettingDialog h3 {
	margin: 20px 0 0;
	font-size: 14px;
	font-weight: bold;
}
#SettingDialog .wheel {
	background: url(../img/img_scroll.png) no-repeat 100% 0;
}
#SettingDialog .radioList {
	overflow: hidden;
}
#SettingDialog .radioList li {
	float: left;
	margin: 10px 20px 0 0;
}
#SettingDialog .inherit {
	overflow: hidden;
	margin: 10px 0 25px;
}
#SettingDialog .inherit h3 {
	float: left;
}
#SettingDialog .inherit .btn {
	float: right;
	margin: 15px 0 0;
	width: 120px;
	padding: 5px 0;
}

#OldTagDialog .window ,#AppleDialog .window{
	width: 400px;
	padding: 15px;
}
#OldTagDialog .title , #AppleDialog .title{
	font-size: 18px;
	font-weight: bold;
	border-bottom: 1px solid #999;
	padding-bottom: 5px;
	margin-bottom: 10px;
}
#OldTagDialog p ,#AppleDialog p{
	font-size: 16px;
}
#OldTagDialog .btn, #AppleDialog .btn{
	max-width: 120px;
}

#ShareDialog .window {
	width: 370px;
	padding: 15px;
}
#ShareDialog p {
	text-align: center;
	font-size: 16px;
}
#ShareDialog .textArea {
	border: 1px solid #999;
	padding: 10px;
	margin: 10px 0;
	word-break: break-all;
}
#ShareDialog textarea {
	display: block;
	border: none;
	width: 100%;
	resize: none;
}
@media screen and (max-width: 400px){
	#ShareDialog .btn.cancel,
	#TextCopyResult .btn.cancel {
		display: block;
		margin: 10px auto 0;
	}
}

#PageUrlDialog textarea {
	display: block;
	width: 100%;
	resize: none;
	padding: 8px;
	margin: 10px 0;
	box-sizing: border-box;
}
#PageUrlDialog p, 
#TextCopyResult p{
	text-align: center;
	font-size: 16px;
}

#MessageDialog .window {
	max-width: 85%;
	text-align: center;
}
#MessageDialog .btnArea {
	display: none;
}
#MessageDialog.hasOK .window {
	max-width: 85%;
	width: 360px;
	padding: 20px 15px;
}
#MessageDialog.hasOK .text {
	margin-bottom: 15px;
	font-size: 15px;
}
#MessageDialog.hasOK .btnArea {
	display: block;
}
#MessageDialog.hasOK .btn {
	width: 150px;
}

/* Tooltip
------------------------*/

#Tooltip {
	position: fixed;
	z-index: 2000;
	background-color: #a31039;
	padding: 4px;
	color: #fff;
	font-size: 11px;
	white-space: nowrap;
	transform: translateX(-50%);
	display: none;
}
#Tooltip:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -5px;
	width: 0;
	margin: 0 auto;
	border-top: 5px solid #a31039;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
}

/* Loading
------------------------*/

#Loading {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2000;
	background-color: rgba(0,0,0,0.3);
	display: none;
}
#Loading img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 47px;
	height: 47px;
	margin: auto;
	-webkit-animation: loading 1.5s infinite linear;
	animation: loading 1.5s infinite linear;
}
@-webkit-keyframes loading {
	0%   { -webkit-transform: rotateZ(0deg); }
	100% { -webkit-transform: rotateZ(360deg); }
}
@keyframes loading {
	0%   { transform: rotateZ(0deg); }
	100% { transform: rotateZ(360deg); }
}


/* 印刷
=====================================================*/

#PrintArea {
	display: none;
	margin: 0 auto;
	padding: 0 40px;
}
#PrintArea.single {
	padding: 30px 20px;
}
#PrintArea .inner {
	position: relative;
	border: 1px solid #ccc;
	height: 100%;
}
#PrintArea .mainImg {
	position: relative;
	overflow: hidden;
}
#PrintArea .canvas canvas {
	height: auto;
}
#PrintArea .tagLayer .tag .btnList {
	display: none;
}
@media print {
	body {
		padding-top: 0 !important;
	}
	#ShareMessage,
	#Wrapper {
		display: none !important;
	}
	#PrintArea {
		display: block;
	}
}


