@charset "UTF-8";
:root {
  --z-modal-panel: 20000;
}
/* sortable common for ContentEditor */
body.dragging,
body.dragging * {
  cursor: move !important;
}
/* to disable scrolling behind overlay */
body.overflowHidden {
  overflow: hidden;
}
body.overflowHidden.previewMode {
  /* for hp edit mode */
  scrollbar-width: none;
}
body.overflowHidden.previewMode::-webkit-scrollbar {
  display: none;
}
/* flash once animation */
@keyframes flash {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.flashOnce {
  animation: flash 1s ease-out;
}
/* medium editor for ContentEditor */
.medium-editor-anchor-preview {
  border: 1px solid #cdd6e0;
  border-radius: 2px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.45);
}
.medium-editor-anchor-preview a {
  font-size: 11px;
  color: #40648a;
  margin-bottom: 5px;
}
/* remove clear cross icon on ie */
::-ms-clear {
  display: none;
}
#artcEdit {
  /* ------------------------------------------------------------------------------------------
	ArticleEditor common
	------------------------------------------------------------------------------------------ */
  display: inline-block;
  margin: 0px;
  padding: 0px;
  min-width: 970px;
  max-width: 970px;
  position: relative;
  /* add part menu */
  /* control */
  /* remove inter-parts margins overriding article.css */
  /* search marker */
  /* ------------------------------------------------------------------------------------------
	SitePagePanel common
	------------------------------------------------------------------------------------------ */
  /* ------------------------------------------------------------------------------------------
	ContentEditor common
	------------------------------------------------------------------------------------------ */
  /* contentEditable */
  /* part sortable */
  /* item sortable */
  /* table */
  /* link editor */
  /* ------------------------------------------------------------------------------------------
	ImageUploader common
	------------------------------------------------------------------------------------------ */
  /* ------------------------------------------------------------------------------------------
	headerPart
	------------------------------------------------------------------------------------------ */
  /* ------------------------------------------------------------------------------------------
	titlePart
	------------------------------------------------------------------------------------------ */
  /* ------------------------------------------------------------------------------------------
	textPart
	------------------------------------------------------------------------------------------ */
  /* // firefox hack below is valid but not supported by Eclipse plugin for LESS, so we use the workaround above.
	@-moz-document url-prefix() {
		#artcEdit blockquote.aeText::after { bottom: 0px; max-height: ~"calc(1em - 15px)"; overflow: hidden; } // workaround for firefox outline bug
	}
	*/
  /* ------------------------------------------------------------------------------------------
	indexPart
	------------------------------------------------------------------------------------------ */
  /* ------------------------------------------------------------------------------------------
	arrowPart
	------------------------------------------------------------------------------------------ */
  /* ------------------------------------------------------------------------------------------
	imagePart
	------------------------------------------------------------------------------------------ */
  /* ------------------------------------------------------------------------------------------
	listPart
	------------------------------------------------------------------------------------------ */
  /* ------------------------------------------------------------------------------------------
	imageListPart
	------------------------------------------------------------------------------------------ */
  /* ------------------------------------------------------------------------------------------
	pageListPart
	------------------------------------------------------------------------------------------ */
  /* ------------------------------------------------------------------------------------------
	productListPart
	------------------------------------------------------------------------------------------ */
  /* ------------------------------------------------------------------------------------------
	separatorPart
	------------------------------------------------------------------------------------------ */
  /* ------------------------------------------------------------------------------------------
	tablePart
	------------------------------------------------------------------------------------------ */
}
#artcEdit .artcParts {
  display: flex;
  flex-direction: column;
  counter-reset: partCounter;
}
#artcEdit .artcParts .artcPart {
  min-height: 3em;
  background: white;
  box-shadow: 0px 0px 0px 3px #ffffff, 0px 0px 3px 6px #e0e0e0;
}
#artcEdit .artcParts .artcPart:not(.dragged) .aePanel::after {
  content: counter(partCounter);
  counter-increment: partCounter;
  position: absolute;
  right: 0px;
  bottom: 0px;
  color: #808080;
  font-size: 10px;
  line-height: 100%;
}
#artcEdit .artcHeader,
#artcEdit .artcPart,
#artcEdit .artcControl {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin: 10px 0px 10px 0px;
}
#artcEdit .artcHeader .aePanel,
#artcEdit .artcPart .aePanel,
#artcEdit .artcControl .aePanel {
  flex-grow: 2;
  align-self: stretch;
  margin: -3px -3px -3px 10px;
  font-size: 12px;
  position: relative;
}
#artcEdit .artcHeader .aePanel label,
#artcEdit .artcPart .aePanel label,
#artcEdit .artcControl .aePanel label {
  display: block;
  cursor: auto;
}
#artcEdit .artcHeader .aePanel hr,
#artcEdit .artcPart .aePanel hr,
#artcEdit .artcControl .aePanel hr {
  height: 0px;
  margin: 15px 0px !important;
  padding: 0px;
  border: 0px;
  border-top: 1px solid #e0e0e0;
}
#artcEdit .artcHeader .aePanel .headerAuditInfo,
#artcEdit .artcPart .aePanel .headerAuditInfo,
#artcEdit .artcControl .aePanel .headerAuditInfo,
#artcEdit .artcHeader .aePanel .lineAuditInfo,
#artcEdit .artcPart .aePanel .lineAuditInfo,
#artcEdit .artcControl .aePanel .lineAuditInfo {
  position: absolute;
  top: 5px;
  left: calc(100% + 5px);
  white-space: nowrap;
  line-height: 1.2;
}
#artcEdit .artcHeader .aePanel,
#artcEdit .artcPart .aePanel {
  background: #f0f0f0;
  padding: 5px;
}
#artcEdit .artcHeader a,
#artcEdit .artcPart a {
  cursor: default;
}
#artcEdit .artcHeader [contentEditable=true] a,
#artcEdit .artcPart [contentEditable=true] a,
#artcEdit .artcHeader a[contentEditable=true],
#artcEdit .artcPart a[contentEditable=true] {
  cursor: text;
}
#artcEdit .artcHeader .aePanel a,
#artcEdit .artcPart .aePanel a {
  cursor: pointer;
}
#artcEdit .aeAddPartMenuButton {
  color: #0fb41a;
  font-size: 20px;
  cursor: pointer;
}
#artcEdit .aeAddPartMenu :first-child {
  margin-top: 18px;
}
#artcEdit .aeAddPartMenu::before {
  content: "パーツ追加";
  font-size: 12px;
  font-weight: bold;
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  left: 0px;
  padding: 2px;
  background: #dddddd;
}
#artcEdit .artcControl .aeTool {
  width: 725px;
}
#artcEdit .artcControl .aeTool #addPartSelect {
  display: none;
}
#artcEdit .artcControl .aeTool #buttonsForInternal {
  margin-top: 10px;
}
#artcEdit .artcControl .aeTool #buttonsForInternal #saveButton {
  margin-bottom: 10px;
}
#artcEdit .artcControl .aeTool #buttonsForInternal #editArticleSitePagesButton {
  color: #322eea;
  font-size: 10px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}
#artcEdit .artcControl .aePanel #artcEditImageUploadForm {
  display: none;
}
#artcEdit #article-main {
  margin-bottom: 0px;
}
#artcEdit #article-main .artcPart > h2,
#artcEdit #article-main .artcPart > h3,
#artcEdit #article-main .artcPart > p,
#artcEdit #article-main .artcPart > blockquote,
#artcEdit #article-main .artcPart > ul,
#artcEdit #article-main .artcPart > ol,
#artcEdit #article-main .artcPart > div:not(.aePanel),
#artcEdit #article-main .artcPart > nav {
  margin-top: 0px;
  margin-bottom: 0px;
}
#artcEdit .searchMarker {
  outline: 5px #ff8080 dashed !important;
}
#artcEdit .artcHeader.searchMarker,
#artcEdit .artcPart.searchMarker {
  outline-offset: 5px;
}
#artcEdit [contentEditable=true] {
  outline: 2px dashed #ff8080;
}
#artcEdit [contentEditable=true]:not(.aeQuoteText)[placeholder]:empty::after {
  content: attr(placeholder);
  color: gray;
  white-space: pre;
}
#artcEdit .artcPart .aePanel .aeDeletePart,
#artcEdit .artcPart .aePanel .aeDragPartHandle,
#artcEdit .artcPart .aePanel .aeAddPartMenuButton {
  display: none;
  position: absolute;
  width: 18px;
  height: 18px;
  padding: 0px;
  line-height: 1;
  cursor: pointer;
}
#artcEdit .artcPart .aePanel .aeDeletePart {
  top: 0px;
  right: 0px;
  font-size: 12px;
}
#artcEdit .artcPart .aePanel .aeDragPartHandle {
  top: 0px;
  right: 21px;
  font-size: 18px;
}
#artcEdit .artcPart .aePanel .aeAddPartMenuButton {
  top: -16px;
  left: -735px;
  font-size: 20px;
}
#artcEdit .artcPart:hover .aePanel .aeDeletePart,
#artcEdit .artcPart:hover .aePanel .aeDragPartHandle,
#artcEdit .artcPart:hover .aePanel .aeAddPartMenuButton {
  display: block;
}
#artcEdit .artcPart.dragged {
  position: absolute !important;
  box-shadow: 0px 0px 3px 3px #808080;
  z-index: 100;
}
#artcEdit .artcPart.dragged .aePanel {
  margin: 0px;
}
#artcEdit .artcPart.dragged .aePanel .aeDeletePart,
#artcEdit .artcPart.dragged .aePanel .aeDragPartHandle,
#artcEdit .artcPart.dragged .aePanel .aeAddPartMenuButton {
  display: none;
}
#artcEdit .partPlaceholder {
  border: 7px solid transparent;
  border-left-color: #ff8080;
}
#artcEdit .partPlaceholder hr {
  border: none;
  border-top: 1px dashed #ff8080;
  margin: 0px 0px 0px 3px;
  padding: 0px;
  height: 0px;
}
#artcEdit .artcPart .itemList .item .aeDeleteItem,
#artcEdit .artcPart .itemList .item .aeDragItemHandle {
  display: none;
  position: absolute;
  width: 15px;
  height: 15px;
  padding: 0px;
  line-height: 1;
  cursor: pointer;
}
#artcEdit .artcPart .itemList .item .aeDeleteItem {
  top: 0px;
  right: 0px;
  font-size: 10px;
}
#artcEdit .artcPart .itemList .item .aeDragItemHandle {
  top: 0px;
  right: 20px;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.8);
}
#artcEdit .artcPart .itemList .item:hover .aeDeleteItem,
#artcEdit .artcPart .itemList .item:hover .aeDragItemHandle {
  display: block;
}
#artcEdit .artcPart .itemList .item.dragged {
  position: absolute !important;
  background: #ffffff;
  box-shadow: 0px 0px 3px 3px #808080;
  list-style: none !important;
  z-index: 100;
}
#artcEdit .artcPart .itemList .item.dragged .aeDeleteItem,
#artcEdit .artcPart .itemList .item.dragged .aeDragItemHandle {
  display: none;
}
#artcEdit .artcPart .itemList li.item .aeDeleteItem,
#artcEdit .artcPart .itemList li.item .aeDragItemHandle {
  top: 50%;
  margin-top: -7.5px;
}
#artcEdit .artcPart .itemList div.itemPlaceholder {
  border: 1px dashed #ff8080;
  background: #ffe0e0;
}
#artcEdit .artcPart .itemList li.itemPlaceholder {
  border: 7px solid transparent;
  border-left-color: #ff8080;
  /* override li styles */
  list-style: none !important;
  margin-left: 0px !important;
}
#artcEdit .artcPart .itemList li.itemPlaceholder hr {
  border: none;
  border-top: 1px dashed #ff8080;
  margin: 0px 0px 0px 3px;
  padding: 0px;
  width: 100%;
  height: 0px;
}
#artcEdit .artcPart .itemList li.itemPlaceholder::before {
  display: none !important;
}
#artcEdit .artcPart .itemList .aePageList.col1 li.item .aeDeleteItem,
#artcEdit .artcPart .itemList .aeProductList.col1 li.item .aeDeleteItem,
#artcEdit .artcPart .itemList .aePageList.col1 li.item .aeDragItemHandle,
#artcEdit .artcPart .itemList .aeProductList.col1 li.item .aeDragItemHandle {
  top: 0px;
  margin-top: 0px;
}
#artcEdit .artcPart tbody.itemList {
  position: relative;
}
#artcEdit .artcPart tbody.itemList tr.item td.control {
  width: 0px;
  position: relative;
}
#artcEdit .artcPart tbody.itemList tr.item td.control .aeDeleteItem,
#artcEdit .artcPart tbody.itemList tr.item td.control .aeDragItemHandle {
  top: 50%;
  margin-top: -7.5px;
}
#artcEdit .artcPart tbody.itemList tr.item.dragged {
  display: flex;
  justify-content: space-between;
}
#artcEdit .artcPart tbody.itemList tr.item.dragged td {
  flex-grow: 1;
}
#artcEdit .artcPart tbody.itemList tr.item.dragged td.control {
  display: none;
}
#artcEdit .artcPart tbody.itemList tr.itemPlaceholder div {
  margin: 10px 0px;
  border: 7px solid transparent;
  border-left-color: #ff8080;
}
#artcEdit .artcPart tbody.itemList tr.itemPlaceholder div hr {
  border: none;
  border-top: 1px dashed #ff8080;
  margin: 0px 0px 0px 3px;
  padding: 0px;
  width: 100%;
  height: 0px;
}
#artcEdit .artcPart table.editable {
  height: 1px;
  /* https://stackoverflow.com/a/46110096 */
}
#artcEdit .artcPart table.editable thead {
  height: 100%;
}
#artcEdit .artcPart table.editable thead th {
  position: relative;
}
#artcEdit .artcPart table.editable thead th p {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#artcEdit .artcPart table.editable thead th .aeDeleteColumn,
#artcEdit .artcPart table.editable thead th .aeAddColumn {
  display: none;
  position: absolute;
  top: -18px;
  width: 18px;
  height: 18px;
  padding: 0px;
  line-height: 1;
  cursor: pointer;
}
#artcEdit .artcPart table.editable thead th .aeDeleteColumn {
  left: calc(50% - 9px);
}
#artcEdit .artcPart table.editable thead th .aeAddColumn {
  right: -9px;
}
#artcEdit .artcPart table.editable.noMoreColumns thead th .aeAddColumn {
  display: none !important;
}
#artcEdit .artcPart table.editable.noLessColumns thead th .aeDeleteColumn {
  display: none !important;
}
#artcEdit .artcPart table.editable tbody {
  height: 100%;
}
#artcEdit .artcPart table.editable tbody td .column1Image:empty,
#artcEdit .artcPart table.editable tbody td .column1Image.loading {
  min-width: 150px;
  min-height: 100px;
}
#artcEdit .artcPart table.editable tbody td p {
  height: 100%;
  align-items: center;
  justify-content: center;
}
#artcEdit .artcPart table.editable.col1Image thead th:first-child .aeDeleteColumn {
  display: none !important;
}
#artcEdit .artcPart table.editable.col1Image tbody td:first-child p {
  height: auto;
}
#artcEdit .artcPart:hover table.editable thead th .aeDeleteColumn,
#artcEdit .artcPart:hover table.editable thead th .aeAddColumn {
  display: block;
}
#artcEdit .linkEditor {
  position: absolute;
  font-size: 10px;
  padding: 2px 3px;
  background: #ffffff;
  box-shadow: 0px 0px 3px 3px #808080;
  z-index: 100;
  min-width: 300px;
}
#artcEdit .linkEditor span {
  width: 3em;
}
#artcEdit .linkEditor input {
  width: calc(100% - 3em - 3em - 9em);
}
#artcEdit .linkEditor button.setUrl {
  width: 3em;
  padding: 0px;
}
#artcEdit .linkEditor button.setArticleInquiry {
  width: 9em;
  padding: 0px;
}
#artcEdit [ondrop] {
  outline: 2px dashed #ff8080;
  position: relative;
}
#artcEdit [ondrop]:empty {
  background: rgba(200, 200, 200, 0.5);
}
#artcEdit [ondrop]:empty[placeholder]::before {
  content: attr(placeholder);
  color: gray;
  white-space: pre;
}
#artcEdit [ondrop]:empty::after {
  content: "画像検索";
  display: none;
  width: 68px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 20px;
  text-align: center;
  background-color: #ffffff;
  border: 2px outset black;
}
#artcEdit [ondrop]:empty:hover::after {
  display: block;
}
#artcEdit [ondrop].dragOver {
  outline-style: solid;
}
#artcEdit [ondrop] .aeProgressBar {
  display: none;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  background: #ffe0e0;
}
#artcEdit [ondrop] .aeIndicator {
  display: none;
  position: absolute;
  top: calc(50% - 8px);
  left: calc(50% - 8px);
}
#artcEdit [ondrop].loading .aeProgressBar,
#artcEdit [ondrop].loading .aeIndicator {
  display: block;
}
#artcEdit [ondrop] .aeDeleteImage {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5em;
  height: 1.6em;
  margin: -0.8em 0px 0px -2.5em;
  padding: 0px;
  line-height: 1;
}
#artcEdit [ondrop]:not(.loading):not([data-keyName=""]):hover .aeDeleteImage {
  display: block;
}
#artcEdit .artcHeader .aeHeader #artcEditTitle {
  width: 725px;
  margin-top: 0px;
}
#artcEdit .artcHeader .aeHeader #artcEditTime {
  width: 725px;
}
#artcEdit .artcHeader .aeHeader #artcEditTopImage {
  width: 725px;
  height: 403px;
}
#artcEdit .artcHeader .aeHeader #artcEditTopImageLinkDiv a {
  display: inline-block;
  width: 40%;
}
#artcEdit .artcHeader .aePanel a.blueSmallLink {
  color: #322eea;
  font-size: 10px;
  text-decoration: none;
}
#artcEdit .artcHeader .aePanel #artcEditSpecialPageText {
  color: #ffffff;
  background: #808080;
}
#artcEdit .artcHeader .aePanel #artcEditSummary {
  width: 100%;
  height: 12em;
}
#artcEdit .artcHeader .aePanel #artcEditGroupingTags {
  width: calc(100% - 4em);
  height: 6em;
}
#artcEdit .artcHeader .aePanel .stringListPanelButton {
  vertical-align: top;
  margin-left: 5px;
}
#artcEdit .artcHeader .aePanel .excludeFromExternalListingFlagNote,
#artcEdit .artcHeader .aePanel .excludeFromInternalListingFlagNote {
  margin-left: 1em;
  font-size: 10px;
  line-height: 1.2;
}
#artcEdit .artcHeader .aePanel #artcEditMemo {
  width: 100%;
  height: 6em;
}
#artcEdit .artcHeader .aePanel #sitePageUrlText {
  background-color: #ebebe4;
  border: 1px solid #7f9db9;
}
#artcEdit .artcHeader .aePanel .misc {
  font-size: 10px;
}
#artcEdit .artcHeader .aePanel .misc #sitePageUrlPreviewLink,
#artcEdit .artcHeader .aePanel .misc #sitePageUrlLink,
#artcEdit .artcHeader .aePanel .misc #mailDocumentPreviewLinkPC,
#artcEdit .artcHeader .aePanel .misc #mailDocumentPreviewLinkPCSendLink,
#artcEdit .artcHeader .aePanel .misc #mailDocumentPreviewLinkMobile,
#artcEdit .artcHeader .aePanel .misc #mailDocumentPreviewLinkLine,
#artcEdit .artcHeader .aePanel .misc #mailDocumentPreviewLinkTwitter,
#artcEdit .artcHeader .aePanel .misc #textPartMmSimpleNoteToggle {
  color: #0000ff;
}
#artcEdit .artcHeader .aePanel .misc #sitePageUrlPreviewLink[target]::after,
#artcEdit .artcHeader .aePanel .misc #sitePageUrlLink[target]::after,
#artcEdit .artcHeader .aePanel .misc #mailDocumentPreviewLinkPC[target]::after,
#artcEdit .artcHeader .aePanel .misc #mailDocumentPreviewLinkPCSendLink[target]::after,
#artcEdit .artcHeader .aePanel .misc #mailDocumentPreviewLinkMobile[target]::after,
#artcEdit .artcHeader .aePanel .misc #mailDocumentPreviewLinkLine[target]::after,
#artcEdit .artcHeader .aePanel .misc #mailDocumentPreviewLinkTwitter[target]::after,
#artcEdit .artcHeader .aePanel .misc #textPartMmSimpleNoteToggle[target]::after {
  content: url(/_resource/apps-image/new-win-link.png);
  border: 0px;
  vertical-align: middle;
}
#artcEdit .artcHeader .aePanel .misc #textPartMmSimpleNote {
  display: none;
  list-style: none outside none;
  margin: 3px 3px 3px 1em;
  padding: 3px 5px;
  border: 1px solid lightgray;
  border-radius: 5px;
}
#artcEdit .artcHeader .aePanel .misc #textPartMmSimpleNote li {
  padding-left: 1em;
  text-indent: -1em;
}
#artcEdit .artcHeader .aePanel .misc #artcEditSpNaviSiteStringCode,
#artcEdit .artcHeader .aePanel .misc #artcEditSpSideNaviLbiFileName,
#artcEdit .artcHeader .aePanel .misc #artcEditSpSideNaviCurrentSetting {
  width: 100%;
  border: solid 1px;
}
#artcEdit .artcHeader .aePanel .misc #artcEditAppendingArticleId {
  width: 6em;
  border: solid 1px;
}
#artcEdit .aeTitle {
  width: 725px;
}
#artcEdit .aeTitle.style-border {
  width: 725px !important;
  position: relative;
}
#artcEdit .aeTitle.style-border::after {
  content: "←枠線はタイトルにフィット";
  font-size: 60%;
  font-weight: normal;
  color: #808080;
  position: absolute;
  top: 0px;
  right: 0px;
}
#artcEdit .aeText {
  width: 725px;
  min-width: 725px;
  /* somehow this is needed to avoid layout corruption in page edit mode*/
}
#artcEdit.isFirefox blockquote.aeText::after {
  bottom: 0px;
  max-height: calc(1em - 15px);
  overflow: hidden;
}
#artcEdit .aeIndex {
  width: 725px;
}
#artcEdit .aeArrow {
  width: 725px;
}
#artcEdit .aeImage {
  width: 725px;
}
#artcEdit .aeImage .image:empty,
#artcEdit .aeImage .image.loading {
  min-width: 200px;
  min-height: 100px;
}
#artcEdit .aeImage .layoutDiv .textDiv .title {
  overflow: hidden;
}
#artcEdit .aeImage .layoutDiv .textDiv .title:empty {
  display: block !important;
}
#artcEdit .aeImage .layoutDiv .textDiv .html {
  overflow: hidden;
}
#artcEdit .aeImage .layoutDiv .textDiv .linkDiv a,
#artcEdit .aeImage .layoutDiv .textDiv .link2Div a,
#artcEdit .aeImage .layoutDiv .textDiv .link3Div a {
  display: block;
  overflow: hidden;
  /* avoid button hover */
}
#artcEdit .aeImage .layoutDiv .textDiv .linkDiv a:hover,
#artcEdit .aeImage .layoutDiv .textDiv .link2Div a:hover,
#artcEdit .aeImage .layoutDiv .textDiv .link3Div a:hover {
  opacity: 1 !important;
}
#artcEdit .aeList {
  width: 725px;
}
#artcEdit .aeList .title:empty {
  display: block !important;
}
#artcEdit .aeList ul .item > p,
#artcEdit .aeList ol .item > p {
  min-height: 1em;
}
#artcEdit .aeList ul .item > p {
  width: calc(100% - 10px - 14px);
}
#artcEdit .aeList ol .item > p {
  width: calc(100% - 1em - 14px);
}
#artcEdit .aeImageList {
  width: 725px;
}
#artcEdit .aeImageList .itemList .item {
  position: relative;
}
#artcEdit .aeImageList .itemList .item .imageDiv .image:empty {
  display: block;
}
#artcEdit .aeImageList .itemList .item .imageDiv .image:empty,
#artcEdit .aeImageList .itemList .item .imageDiv .image.loading {
  min-height: 60px;
}
#artcEdit .aeImageList .itemList .item .textDiv .title {
  overflow: hidden;
}
#artcEdit .aeImageList .itemList .item .textDiv .title:empty {
  display: block !important;
}
#artcEdit .aeImageList .itemList .item .textDiv .html {
  overflow: hidden;
}
#artcEdit .aeImageList .itemList .item .textDiv .linkDiv a {
  display: block;
  overflow: hidden;
  /* avoid button hover */
}
#artcEdit .aeImageList .itemList .item .textDiv .linkDiv a:hover {
  opacity: 1 !important;
}
#artcEdit .aePageList {
  width: 725px;
}
#artcEdit .aePageList .item {
  position: relative;
}
#artcEdit .aePageList .item .search {
  margin-top: 20px;
  font-size: 12px;
}
#artcEdit .aeProductList {
  width: 725px;
}
#artcEdit .aeProductList .item {
  position: relative;
}
#artcEdit .aeProductList .item .search {
  margin-top: 20px;
  font-size: 12px;
}
#artcEdit .aeProductList .item .textDiv .imageName {
  width: 140px;
}
#artcEdit .aeSeparator {
  width: 725px;
  margin: 20px 0px 0px 0px !important;
}
#artcEdit .aeTable {
  width: 725px;
}
#artcEdit .aeTable table {
  width: 100%;
}
/* ------------------------------------------------------------------------------------------
outlineInputPanel
------------------------------------------------------------------------------------------ */
.outlineInputPanel {
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: var(--z-modal-panel);
}
.outlineInputPanel .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}
.outlineInputPanel .outer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: fit-content;
  background-color: #ffffff;
}
.outlineInputPanel .inner {
  margin: 10px;
}
.outlineInputPanel em {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}
.outlineInputPanel textarea {
  display: block;
  width: 500px;
  height: 300px;
  background-color: #ffffff;
  margin-bottom: 5px;
}
.outlineInputPanel textarea::placeholder::before {
  content: "123";
}
.outlineInputPanel .ok {
  margin-right: 5px;
}
.outlineInputPanel .ok::before {
  content: "アウトラインを作成する";
}
.outlineInputPanel .cancel::before {
  content: "キャンセル";
}
/* ------------------------------------------------------------------------------------------
floatingPanel, textGeneratorPanel, proofreaderPanel, partsMoverPanel, partsCopierPanel, partsDeleterPanel
------------------------------------------------------------------------------------------ */
.floatingPanel {
  position: fixed;
  width: 400px;
  height: 500px;
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #ffffff;
  box-shadow: 0px 0px 5px gray;
  z-index: 201;
}
.floatingPanel .header {
  background-color: #e0e0e0;
  padding: 5px;
  text-align: center;
  cursor: move;
}
.floatingPanel .content {
  box-sizing: border-box;
  height: calc(100% - 30px);
}
.floatingPanel .resizer {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 20px;
  height: 20px;
  background: url(/_resource/apps-image/resize-handle.gif);
  cursor: se-resize;
}
.floatingPanel .minimizer {
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 5px 10px;
  cursor: pointer;
}
.floatingPanel .minimizer::before {
  content: "━";
}
.floatingPanel.textGeneratorPanel .content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
}
.floatingPanel.textGeneratorPanel .content .help {
  font-size: 10px;
  text-align: right;
}
.floatingPanel.textGeneratorPanel .content .help a {
  display: block;
  color: #322eea;
}
.floatingPanel.textGeneratorPanel .content .help a img {
  vertical-align: middle;
  margin-left: 1px;
}
.floatingPanel.textGeneratorPanel .content .help span {
  display: block;
}
.floatingPanel.textGeneratorPanel .content .main {
  flex-grow: 2;
  position: relative;
}
.floatingPanel.textGeneratorPanel .content .main .output {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  resize: none;
}
.floatingPanel.textGeneratorPanel .content .main::after {
  content: "Ctrl+Zで元に戻す、Ctrl+Yでやり直す";
  font-size: 10px;
  color: #ffffff;
  background-color: #ff8080;
  padding: 2px;
  position: absolute;
  bottom: 1px;
  right: 1px;
}
.floatingPanel.textGeneratorPanel .content .inputs {
  display: flex;
  gap: 8px;
  max-height: 50%;
}
.floatingPanel.textGeneratorPanel .content .inputs .input {
  flex-grow: 1;
  resize: none;
  overflow-x: hidden;
  /* firefox workaround : https://stackoverflow.com/a/22700700 */
  max-height: 100%;
  position: relative;
}
.floatingPanel.textGeneratorPanel .content .inputs .input::after {
  content: "aaa";
  font-size: 10px;
}
.floatingPanel.textGeneratorPanel .content .inputs .generate {
  align-self: flex-start;
}
.floatingPanel.textGeneratorPanel .content .inputs .generate.loading::after {
  content: url(/_resource/apps-image/indicator.gif);
}
.floatingPanel.textGeneratorPanel .content .overwrite {
  align-self: center;
  background-color: #e0e0ff;
}
.floatingPanel.textGeneratorPanel .content .overwrite.hide {
  display: none;
}
.floatingPanel.proofreaderPanel .content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
}
.floatingPanel.proofreaderPanel .content .buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.floatingPanel.proofreaderPanel .content .buttons .proofread.loading::after {
  content: url(/_resource/apps-image/indicator.gif);
}
.floatingPanel.proofreaderPanel .content .buttons .help {
  position: absolute;
  right: 10px;
  font-size: 10px;
  text-align: right;
}
.floatingPanel.proofreaderPanel .content .buttons .help a {
  display: block;
  color: #322eea;
}
.floatingPanel.proofreaderPanel .content .buttons .help a img {
  vertical-align: middle;
  margin-left: 1px;
}
.floatingPanel.proofreaderPanel .content .buttons .help span {
  display: block;
}
.floatingPanel.proofreaderPanel .content .output {
  flex-grow: 1;
  line-height: 1.8;
  border: 1px solid #767676;
  overflow-y: auto;
}
.floatingPanel.proofreaderPanel .content .output .diffDiv {
  margin: 5px;
  border: 1px solid gray;
  display: flex;
}
.floatingPanel.proofreaderPanel .content .output .diffDiv .diff {
  flex-grow: 1;
}
.floatingPanel.proofreaderPanel .content .output .diffDiv .diff ins {
  color: #0b8604;
  background-color: #d4e7d3;
  text-decoration: underline;
  cursor: pointer;
}
.floatingPanel.proofreaderPanel .content .output .diffDiv .diff del {
  color: #fb0605;
  background-color: #fce6e5;
  text-decoration: line-through;
  cursor: pointer;
}
.floatingPanel.proofreaderPanel .content .output .diffDiv .diff ins.hover,
.floatingPanel.proofreaderPanel .content .output .diffDiv .diff del.hover {
  outline: 1px solid #0000ff;
}
.floatingPanel.proofreaderPanel .content .output .diffDiv .buttons {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  visibility: hidden;
}
.floatingPanel.proofreaderPanel .content .output .diffDiv .buttons .remove,
.floatingPanel.proofreaderPanel .content .output .diffDiv .buttons .apply {
  align-self: flex-end;
  font-size: 10px;
  line-height: 1;
  padding: 1px 2px;
  white-space: nowrap;
}
.floatingPanel.proofreaderPanel .content .output .diffDiv .buttons .remove::before {
  content: "×";
}
.floatingPanel.proofreaderPanel .content .output .diffDiv .buttons .apply::before {
  content: "反映";
}
.floatingPanel.proofreaderPanel .content .output .diffDiv:hover {
  background-color: #ececfd;
}
.floatingPanel.proofreaderPanel .content .output .diffDiv.selected {
  background-color: #e0e0ff;
  outline: 2px solid #b7b7ff;
}
.floatingPanel.proofreaderPanel .content .output .diffDiv.selected .buttons {
  visibility: visible;
}
.floatingPanel.proofreaderPanel .content .note {
  font-size: 10px;
}
.floatingPanel.partsMoverPanel,
.floatingPanel.partsCopierPanel,
.floatingPanel.partsDeleterPanel {
  width: 250px;
  height: 150px;
}
.floatingPanel.partsMoverPanel .content .inputs,
.floatingPanel.partsCopierPanel .content .inputs,
.floatingPanel.partsDeleterPanel .content .inputs {
  margin: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.floatingPanel.partsMoverPanel .content .inputs input,
.floatingPanel.partsCopierPanel .content .inputs input,
.floatingPanel.partsDeleterPanel .content .inputs input {
  width: 3em;
  margin: 3px;
}
.floatingPanel.partsMoverPanel .content .inputs select,
.floatingPanel.partsCopierPanel .content .inputs select,
.floatingPanel.partsDeleterPanel .content .inputs select {
  margin: 3px;
}
.floatingPanel.minimized {
  width: auto !important;
  height: auto !important;
  top: auto !important;
  left: auto !important;
  z-index: 200;
}
.floatingPanel.minimized.textGeneratorPanel {
  bottom: 100px !important;
  right: 10px !important;
}
.floatingPanel.minimized.proofreaderPanel {
  bottom: 130px !important;
  right: 10px !important;
}
.floatingPanel.minimized.partsMoverPanel {
  bottom: 70px !important;
  right: 10px !important;
}
.floatingPanel.minimized.partsCopierPanel {
  bottom: 40px !important;
  right: 10px !important;
}
.floatingPanel.minimized.partsDeleterPanel {
  bottom: 10px !important;
  right: 10px !important;
}
.floatingPanel.minimized .header {
  pointer-events: none;
  padding-right: 30px;
}
.floatingPanel.minimized .content {
  display: none;
}
.floatingPanel.minimized .resizer {
  display: none;
}
.floatingPanel.minimized .minimizer::before {
  content: "╋";
}
.linkedToTextGeneratorPanel,
.linkedToProofreaderPanel {
  background-color: #e0e0ff;
}
/* ------------------------------------------------------------------------------------------
stringListPanel (copied from apps.css)
------------------------------------------------------------------------------------------ */
.stringListPanel {
  display: none;
  background-color: #ffffff;
  border: 1px solid #000000;
  padding: 5px;
}
.stringListPanel a {
  color: #000000;
  text-decoration: none;
}
.stringListPanel a:hover {
  color: #ff0000;
}
.stringListPanelButton {
  font-size: 10px;
}
/* ------------------------------------------------------------------------------------------
ImageSearcher common
------------------------------------------------------------------------------------------ */
.imageSearcher {
  display: none;
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: var(--z-modal-panel);
}
.imageSearcher .close {
  position: fixed;
  top: 20px;
  right: 20px;
  transform: translate(50%, -50%);
  display: block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #808080;
  border-radius: 5px;
  z-index: 1;
  cursor: pointer;
}
.imageSearcher > div {
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  background-color: #ffffff;
  box-shadow: 10px 10px 10px;
}
.imageSearcher > div iframe {
  width: 100%;
  height: 100%;
  border: none;
}
body.previewMode .imageSearcher {
  /* for hp edit mode */
  top: 50px;
}
body.previewMode .imageSearcher .close {
  top: 70px;
  text-decoration: none;
  font-family: "Meiryo UI";
}
