.editSP__commentPop {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10px 20px;
  background-color: #fff;
  box-sizing: border-box;
  z-index: 201;
}

.editSP__commentPop__headBtns {
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  width: 100%;
  min-width: 280px;
  max-width: 420px;
  height: 34px;
  margin: 0 auto 5px;
}

.editSP__commentPop__headBtns__btn {
  width: 34px;
  height: 34px;
  border: solid 1px #cccccc;
  border-radius: 3px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center;
}

.editSP__commentPop__headBtns__btn:hover {
  background-color: #f2f2f2;
}

.editSP__commentPop__textArea {
  width: 100%;
  min-width: 280px;
  max-width: 420px;
  margin: auto;
}

.editSP__commentPop__textArea > textarea {
  width: 100%;
  padding: 4px;
  font-size: 14px;
  box-sizing: border-box;
  resize: none;
  border: 1px solid #cccccc;
}

.editSP__commentPop__textArea__msg {
  display: block;
  font-size: 12px;
  color: #000000;
  line-height: 1.2;
}

.editSP__commentPop__settings {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  min-width: 280px;
  max-width: 420px;
  margin: 10px auto 20px;
}

.editSP__commentPop__settings > div {
  padding: 5px;
}

.editSP__commentPop__settings > div > label {
  display: block;
  font-size: 12px;
  margin: 0 0 4px 0;
}

.editSP__commentPop__settings input[type=radio],
.editSP__commentPop__settings input[type=checkbox] {
  display: none;
}

.editSP__commentPop__settings__font > select {
  width: 200px;
  height: 32px;
  font-size: 14px;
  border: solid 1px #cccccc;
  border-radius: 4px;
  background-color: #fff;
}

.editSP__commentPop__settings__color > div > button {
  width: 32px;
  height: 32px;
  border: solid 1px #cccccc;
  border-radius: 4px;
  margin: 1px;
}

.editSP__commentPop__settings__bold__btn {
  display: block;
  width: 32px;
  height: 32px;
  box-sizing: border-box;
  border: solid 1px #cccccc;
  border-radius: 4px;
  background-color: #fff;
}

.editSP__commentPop__settings__bold__btn > span {
  display: none;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px;
}

.editSP__commentPop__settings__bold__btn:hover {
  background-color: #f2f2f2;
}

input[type=checkbox] + .editSP__commentPop__settings__bold__btn > .bold {
  display: block;
}

input[type=checkbox]:checked + .editSP__commentPop__settings__bold__btn > .bold {
  display: none;
}

input[type=checkbox]:checked + .editSP__commentPop__settings__bold__btn > .boldSelected {
  display: block;
}

.editSP__commentPop__settings__italic__btn {
  display: block;
  width: 32px;
  height: 32px;
  box-sizing: border-box;
  border: solid 1px #cccccc;
  border-radius: 4px;
  background-color: #fff;
}

.editSP__commentPop__settings__italic__btn > span {
  display: none;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px;
}

.editSP__commentPop__settings__italic__btn:hover {
  background-color: #f2f2f2;
}

input[type=checkbox] + .editSP__commentPop__settings__italic__btn > .italic {
  display: block;
}

input[type=checkbox]:checked + .editSP__commentPop__settings__italic__btn > .italic {
  display: none;
}

input[type=checkbox]:checked + .editSP__commentPop__settings__italic__btn > .italicSelected {
  display: block;
}

.editSP__commentPop__settings__size > select {
  width: 160px;
  height: 32px;
  font-size: 14px;
  border: solid 1px #cccccc;
  border-radius: 4px;
  background-color: #fff;
}

.editSP__commentPop__settings__direction__radioGroup {
  display: -webkit-flex;
  display: flex;
}

.editSP__commentPop__settings__direction__radioGroup__btn {
  display: block;
  width: 44px;
  height: 32px;
  box-sizing: border-box;
  border: solid 1px #cccccc;
  background-color: #fff;
}

.editSP__commentPop__settings__direction__radioGroup__btn > span {
  display: none;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px;
}

.editSP__commentPop__settings__direction__radioGroup__btn:first-of-type {
  border-radius: 4px 0 0 4px;
}

.editSP__commentPop__settings__direction__radioGroup__btn:last-of-type {
  border-radius: 0 4px 4px 0;
}

.editSP__commentPop__settings__direction__radioGroup__btn:hover {
  background-color: #f2f2f2;
}

input[type=radio] + .editSP__commentPop__settings__direction__radioGroup__btn > .writeHorizontally {
  display: block;
}

input[type=radio]:checked + .editSP__commentPop__settings__direction__radioGroup__btn > .writeHorizontally {
  display: none;
}

input[type=radio]:checked + .editSP__commentPop__settings__direction__radioGroup__btn > .writeHorizontallySelected {
  display: block;
}

input[type=radio] + .editSP__commentPop__settings__direction__radioGroup__btn > .writeVertically {
  display: block;
}

input[type=radio]:checked + .editSP__commentPop__settings__direction__radioGroup__btn > .writeVertically {
  display: none;
}

input[type=radio]:checked + .editSP__commentPop__settings__direction__radioGroup__btn > .writeVerticallySelected {
  display: block;
}

.editSP__commentPop__settings__align-h {
  display: none;
}

.editSP__commentPop__settings__align-h__radioGroup {
  display: -webkit-flex;
  display: flex;
}

.editSP__commentPop__settings__align-h__radioGroup__btn {
  display: block;
  width: 44px;
  height: 32px;
  box-sizing: border-box;
  border: solid 1px #cccccc;
  background-color: #fff;
}

.editSP__commentPop__settings__align-h__radioGroup__btn > span {
  display: none;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px;
}

.editSP__commentPop__settings__align-h__radioGroup__btn:first-of-type {
  border-radius: 4px 0 0 4px;
}

.editSP__commentPop__settings__align-h__radioGroup__btn:last-of-type {
  border-radius: 0 4px 4px 0;
}

.editSP__commentPop__settings__align-h__radioGroup__btn:hover {
  background-color: #f2f2f2;
}

input[type=radio] + .editSP__commentPop__settings__align-h__radioGroup__btn > .wordAlignHorizontallyLeft {
  display: block;
}

input[type=radio]:checked + .editSP__commentPop__settings__align-h__radioGroup__btn > .wordAlignHorizontallyLeft {
  display: none;
}

input[type=radio]:checked + .editSP__commentPop__settings__align-h__radioGroup__btn > .wordAlignHorizontallyLeftSelected {
  display: block;
}

input[type=radio] + .editSP__commentPop__settings__align-h__radioGroup__btn > .wordAlignHorizontallyCenter {
  display: block;
}

input[type=radio]:checked + .editSP__commentPop__settings__align-h__radioGroup__btn > .wordAlignHorizontallyCenter {
  display: none;
}

input[type=radio]:checked + .editSP__commentPop__settings__align-h__radioGroup__btn > .wordAlignHorizontallyCenterSelected {
  display: block;
}

input[type=radio] + .editSP__commentPop__settings__align-h__radioGroup__btn > .wordAlignHorizontallyRight {
  display: block;
}

input[type=radio]:checked + .editSP__commentPop__settings__align-h__radioGroup__btn > .wordAlignHorizontallyRight {
  display: none;
}

input[type=radio]:checked + .editSP__commentPop__settings__align-h__radioGroup__btn > .wordAlignHorizontallyRightSelected {
  display: block;
}

.editSP__commentPop__settings__align-v {
  display: none;
}

.editSP__commentPop__settings__align-v__radioGroup {
  display: -webkit-flex;
  display: flex;
}

.editSP__commentPop__settings__align-v__radioGroup__btn {
  display: block;
  width: 44px;
  height: 32px;
  box-sizing: border-box;
  border: solid 1px #cccccc;
  background-color: #fff;
}

.editSP__commentPop__settings__align-v__radioGroup__btn > span {
  display: none;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px;
}

.editSP__commentPop__settings__align-v__radioGroup__btn:first-of-type {
  border-radius: 4px 0 0 4px;
}

.editSP__commentPop__settings__align-v__radioGroup__btn:last-of-type {
  border-radius: 0 4px 4px 0;
}

.editSP__commentPop__settings__align-v__radioGroup__btn:hover {
  background-color: #f2f2f2;
}

input[type=radio] + .editSP__commentPop__settings__align-v__radioGroup__btn > .wordAlignVerticalTop {
  display: block;
}

input[type=radio]:checked + .editSP__commentPop__settings__align-v__radioGroup__btn > .wordAlignVerticalTop {
  display: none;
}

input[type=radio]:checked + .editSP__commentPop__settings__align-v__radioGroup__btn > .wordAlignVerticalTopSelected {
  display: block;
}

input[type=radio] + .editSP__commentPop__settings__align-v__radioGroup__btn > .wordAlignVerticalCenter {
  display: block;
}

input[type=radio]:checked + .editSP__commentPop__settings__align-v__radioGroup__btn > .wordAlignVerticalCenter {
  display: none;
}

input[type=radio]:checked + .editSP__commentPop__settings__align-v__radioGroup__btn > .wordAlignVerticalCenterSelected {
  display: block;
}

input[type=radio] + .editSP__commentPop__settings__align-v__radioGroup__btn > .wordAlignVerticalBottom {
  display: block;
}

input[type=radio]:checked + .editSP__commentPop__settings__align-v__radioGroup__btn > .wordAlignVerticalBottom {
  display: none;
}

input[type=radio]:checked + .editSP__commentPop__settings__align-v__radioGroup__btn > .wordAlignVerticalBottomSelected {
  display: block;
}

[data-text-direction="vertical"] .editSP__commentPop__settings__align-v {
  display: block;
}

[data-text-direction="horizontal"] .editSP__commentPop__settings__align-h {
  display: block;
}

.editSP__commentPop__footBtns {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
  min-width: 280px;
  max-width: 420px;
  margin: auto;
}

.editSP__commentPop__footBtns__btn {
  background-color: rgba(113, 168, 9, 0.8);
  width: 118px;
  height: 40px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  color: #ffffff;
}

.editSP__commentPop__footBtns__btn:hover {
  background-color: rgba(97, 144, 8, 0.8);
}

.editSP__commentPop__colors {
  display: none;
  position: fixed;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 82%;
  height: calc(100% - 180px);
  padding: 10px;
  box-sizing: border-box;
  background-color: #fff;
  box-shadow: 0px 0px 6px 3px #cccccc;
}

.editSP__commentPop__colors.colorSelect {
  display: block;
}

.editSP__commentPop__colors > ul {
  list-style: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

.editSP__commentPop__colors > ul > li {
  display: inline-block;
  width: 36px;
  height: 36px;
  margin: 2px;
  background-color: #cccccc;
  border: 1px solid #cccccc;
  box-sizing: border-box;
}

.editSP__commentPop__colors__closeBtn {
  display: block;
  position: absolute;
  right: -20px;
  top: -20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: gray;
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: center;
}

.editSP__commentPop__colors__closeBtn:hover {
  background-color: #737373;
}

@charset "UTF-8";
.confirm__messageArea {
  display: block;
  width: 100%;
  height: 50px;
}

.confirm__messageArea > p {
  padding: 20px 10px 0;
  box-sizing: border-box;
  font-size: 14px;
  text-align: left;
}

.confirm__contentArea {
  width: 100%;
  height: calc(100% - 50px - 45px - 64px);
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-content: flex-start;
  align-content: flex-start;
}

.confirm__contentArea__previewArea {
  position: relative;
  width: 100%;
  height: calc(100% - 50px);
}

.confirm__contentArea__previewArea__leftArea {
  position: absolute;
  top: 0;
  left: 0;
  width: 10%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.confirm__contentArea__previewArea__imageArea {
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 100%;
  filter: drop-shadow(0px 5px 4px rgba(0, 0, 0, 0.4));
}

.confirm__contentArea__previewArea__imageArea .confirm_spaceSim {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  height: 100%;
}

.confirm__contentArea__previewArea__rightArea {
  position: absolute;
  top: 0;
  right: 0;
  width: 10%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.confirm__contentArea__previewArea__scrollButton {
  width: 32px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  border: 0;
  z-index: 1;
}

.confirm__contentArea__previewArea__scrollButton.confirm_prevPageButton {
  margin-right: auto;
}

.confirm__contentArea__previewArea__scrollButton.confirm_nextPageButton {
  margin-left: auto;
}

.confirm__contentArea__infoArea {
  -webkit-flex: 0 0 40px;
  flex: 0 0 40px;
  width: 100%;
  height: 40px;
  z-index: 1;
}

.confirm__contentArea__infoArea > p {
  padding-top: 10px;
  font-size: 16px;
  text-align: center;
}

.confirm__contentArea__previewButtonArea {
  position: absolute;
  top: 0px;
  right: 0px;
}

.confirm__contentArea__previewButtonArea__previewButton {
  display: block;
  margin: 10px;
  width: 110px;
  height: 30px;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.7);
  border: 0px;
  border-radius: 4px;
  font-size: 12px;
  text-align: center;
  vertical-align: middle;
}

.confirm__contentArea__previewButtonArea__previewButton:hover {
  background-color: rgba(0, 0, 0, 0.75);
}

.confirm__contentArea__previewButtonArea__previewButton.selected {
  background-color: #dd621c;
}

.confirm__contentArea__previewButtonArea__previewButton.selected:hover {
  background-color: #c65819;
}

.confirm__cartButtonArea {
  display: block;
  position: fixed;
  z-index: 200;
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 45px;
  bottom: 64px;
  box-shadow: 0px -1px 6px rgba(0, 0, 0, 0.2);
}

.confirm__cartButtonArea__cartButton {
  display: block;
  margin: 5px auto;
  width: 200px;
  height: 30px;
  font-size: 14px;
  color: #ffffff;
  background-color: rgba(113, 168, 9, 0.8);
  border: 0px;
  border-radius: 4px;
}

.confirm__cartButtonArea__cartButton:hover {
  background-color: rgba(97, 144, 8, 0.8);
}

.coverSelectArea {
  width: 100%;
  max-height: 260px;
  overflow-x: hidden;
  overflow-y: auto;
}

.coverSelectArea > ul {
  margin: auto;
  width: 280px;
  list-style: none;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.coverSelectArea > ul > li {
  position: relative;
  margin: 5px;
  background-color: #fff;
  width: 130px;
  height: 120px;
  box-sizing: border-box;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  border: solid 1px #cccccc;
  border-radius: 4px;
  cursor: pointer;
}

.coverSelectArea > ul > li:hover {
  background-color: #e6e6e6;
}

.coverSelectArea__tmbArea {
  width: 100px;
  height: 80px;
  margin: 5px auto 5px;
}

.coverSelectArea__tmbArea__tmb {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.coverSelectArea__name {
  display: block;
  width: 100%;
  margin: 5px auto;
  height: 30px;
}

.coverSelectArea__name > p {
  text-align: center;
  font-size: 12px;
}

@media screen and (min-width: 1024px) {
  .confirm__messageArea {
    height: 50px;
  }
  .confirm__messageArea > p {
    padding: 20px 0 0 40px;
    font-size: 22px;
    text-align: left;
  }
  .confirm__messageArea > p::before {
    display: inline;
    content: "▶";
    color: #999999;
    margin: 15px 5px;
  }
  .confirm__contentArea {
    height: calc(100% - 50px);
  }
  .confirm__contentArea__previewArea {
    height: calc(100% - 50px);
  }
  .confirm__contentArea__previewArea__leftArea {
    width: 20%;
  }
  .confirm__contentArea__previewArea__imageArea {
    left: 20%;
    width: 60%;
  }
  .confirm__contentArea__previewArea__rightArea {
    width: 20%;
  }
  .confirm__contentArea__previewArea__scrollButton {
    width: 56px;
    height: 56px;
    background-color: rgba(255, 255, 255, 0.8);
    background-size: 56%;
    border: 1px solid #e2e2e2;
    border-radius: 4px;
    transition: all 200ms ease;
  }
  .confirm__contentArea__previewArea__scrollButton:hover {
    background-color: rgba(242, 242, 242, 0.8);
  }
  .confirm__contentArea__previewArea__scrollButton.confirm_prevPageButton {
    margin-left: auto;
    margin-right: 30px;
  }
  .confirm__contentArea__previewArea__scrollButton.confirm_nextPageButton {
    margin-left: 30px;
    margin-right: auto;
  }
  .confirm__contentArea__infoArea > p {
    font-size: 20px;
  }
  .confirm__contentArea__previewButtonArea {
    height: 60px;
    top: 55px;
    right: 20px;
  }
  .confirm__contentArea__previewButtonArea__previewButton {
    margin: 5px auto;
    width: 165px;
    height: 40px;
    font-size: 18px;
  }
  .confirm__cartButtonArea {
    display: none;
  }
  .coverSelectArea {
    max-height: 460px;
  }
  .coverSelectArea > ul {
    width: 711px;
  }
  .coverSelectArea > ul > li {
    width: 217px;
    height: 200px;
    margin: 10px;
  }
  .coverSelectArea__tmbArea {
    width: 180px;
    height: 145px;
    margin: 10px auto 0px;
  }
  .coverSelectArea__name {
    height: 35px;
  }
  .coverSelectArea__name > p {
    font-size: 16px;
  }
}

@charset "UTF-8";
.coverSelect__messageArea {
  display: block;
  width: 100%;
  height: 50px;
}

.coverSelect__messageArea > p {
  padding: 20px 0 0;
  box-sizing: border-box;
  font-size: 16px;
  text-align: center;
}

.coverSelect__contentArea {
  display: block;
  width: 100%;
  height: calc(100% - 50px);
}

.coverSelect__contentArea > ul {
  margin: auto;
  padding-bottom: 65px;
  width: 310px;
  list-style: none;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.coverSelect__contentArea > ul > li {
  position: relative;
  margin: 5px;
  background-color: #fff;
  width: 140px;
  height: 120px;
  box-sizing: border-box;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  border: solid 1px #cccccc;
  border-radius: 4px;
  cursor: pointer;
}

.coverSelect__contentArea > ul > li:hover {
  background-color: #e6e6e6;
}

.coverSelect__contentArea__tmbArea {
  width: 100px;
  height: 80px;
  margin: 5px auto 5px;
}

.coverSelect__contentArea__tmbArea__tmb {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.coverSelect__contentArea__name {
  display: block;
  width: 100%;
  margin: 5px auto;
  height: 30px;
}

.coverSelect__contentArea__name > p {
  text-align: center;
  font-size: 12px;
}

@media screen and (min-width: 1024px) {
  .coverSelect__messageArea {
    height: 100px;
  }
  .coverSelect__messageArea > p {
    padding: 40px 0 0 40px;
    font-size: 22px;
    text-align: left;
  }
  .coverSelect__messageArea > p::before {
    display: inline;
    content: "▶";
    color: #999999;
    margin: 15px 5px;
  }
  .coverSelect__contentArea {
    height: calc(100% - 100px);
    overflow: auto;
  }
  .coverSelect__contentArea > ul {
    padding-bottom: 0px;
    width: 900px;
  }
  .coverSelect__contentArea > ul > li {
    margin: 10px;
    width: 280px;
    height: 200px;
  }
  .coverSelect__contentArea__tmbArea {
    width: 180px;
    height: 145px;
    margin: 10px auto 0px;
  }
  .coverSelect__contentArea__name {
    height: 35px;
  }
  .coverSelect__contentArea__name > p {
    font-size: 16px;
  }
}

@media screen and (min-width: 1024px) {
  .designSelect__contentArea > ul {
    width: 900px;
  }
}

@media screen and (min-width: 1324px) {
  .designSelect__contentArea > ul {
    width: 1200px;
  }
}

@media screen and (min-width: 1624px) {
  .designSelect__contentArea > ul {
    width: 1500px;
  }
}

@media screen and (min-width: 1924px) {
  .designSelect__contentArea > ul {
    width: 1800px;
  }
}

@charset "UTF-8";
.footer .save {
  right: 230px;
  width: 90px;
  padding: 0 0 0 20px;
}

.editPreview__messageArea {
  display: block;
  width: 100%;
  height: 50px;
}

.editPreview__messageArea__PC {
  display: none;
}

.editPreview__messageArea__SP {
  display: block;
}

.editPreview__messageArea__SP__switchArea {
  position: absolute;
  top: 5px;
  left: 5px;
  display: block;
  width: 125px;
  height: 30px;
  border-radius: 4px;
  background-color: #999999;
  text-align: center;
  line-height: 30px;
}

.editPreview__messageArea__SP__switchArea__btn {
  width: 57px;
  height: 25px;
  border: none;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.7);
  font-size: 14px;
  color: #ffffff;
  text-align: center;
}

.editPreview__messageArea__SP__switchArea__btn:hover {
  background-color: #000;
}

.editPreview__messageArea__SP__nextBtn {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  width: 150px;
  height: 30px;
  border: none;
  border-radius: 4px;
  background-color: rgba(113, 168, 9, 0.8);
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  line-height: 30px;
}

.editPreview__messageArea__SP__nextBtn:hover {
  background-color: rgba(97, 144, 8, 0.8);
}

.editPreview__messageArea > p {
  padding: 20px 0 0;
  box-sizing: border-box;
  font-size: 16px;
  text-align: center;
}

.editPreview__contentArea {
  display: block;
  width: 100%;
  height: calc(100% - 50px - 45px);
}

.editPreview__contentArea > ul {
  margin: auto;
  width: 310px;
  padding-bottom: 110px;
  list-style: none;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.editPreview__contentArea > ul > li {
  position: relative;
  margin: 5px;
  background-color: transparent;
  width: 140px;
  height: 150px;
  box-sizing: border-box;
  cursor: pointer;
}

.editPreview__contentArea__tmbArea {
  display: -webkit-flex;
  display: flex;
  width: 120px;
  height: 120px;
  margin: 5px auto 5px;
  justify-content: center;
  align-items: center;
}

.editPreview__contentArea__tmbArea:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.editPreview__contentArea__tmbArea__tmb {
  max-width: 120px;
  max-height: 100%;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.editPreview__contentArea__name {
  display: block;
  width: 100%;
  margin: 5px auto;
  height: 30px;
}

.editPreview__contentArea__name > p {
  text-align: center;
  font-size: 12px;
}

@media screen and (min-width: 1024px) {
  .editPreview__messageArea {
    height: 100px;
  }
  .editPreview__messageArea__PC {
    display: block;
  }
  .editPreview__messageArea__SP {
    display: none;
  }
  .editPreview__messageArea > p {
    padding: 40px 0 0 40px;
    font-size: 22px;
    text-align: left;
  }
  .editPreview__messageArea > p::before {
    display: inline;
    content: "▶";
    color: #999999;
    margin: 15px 5px;
  }
  .editPreview__contentArea {
    height: calc(100% - 100px);
    overflow: auto;
  }
  .editPreview__contentArea > ul {
    width: 1000px;
    padding-bottom: 0px;
  }
  .editPreview__contentArea > ul > li {
    margin: 0px;
    width: 140px;
    height: 210px;
  }
  .editPreview__contentArea__tmbArea {
    width: 130px;
    height: 165px;
    margin: 10px auto 0px;
  }
  .editPreview__contentArea__tmbArea__tmb {
    max-width: 130px;
  }
  .editPreview__contentArea__name {
    height: 30px;
  }
  .editPreview__contentArea__name > p {
    font-size: 16px;
  }
  .editPreview__confirmButtonArea {
    display: none;
  }
}

@media screen and (min-width: 1150px) {
  .editPreview__contentArea > ul {
    width: 1126px;
  }
  .editPreview__contentArea > ul > li {
    width: 158px;
    height: 228px;
  }
  .editPreview__contentArea__tmbArea {
    width: 148px;
    height: 183px;
  }
  .editPreview__contentArea__tmbArea__tmb {
    max-width: 148px;
  }
}

@media screen and (min-width: 1280px) {
  .editPreview__contentArea > ul {
    width: 1252px;
  }
  .editPreview__contentArea > ul > li {
    width: 176px;
    height: 246px;
  }
  .editPreview__contentArea__tmbArea {
    width: 166px;
    height: 201px;
  }
  .editPreview__contentArea__tmbArea__tmb {
    max-width: 166px;
  }
}

@charset "UTF-8";
.editPC__contentArea {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.editPC__contentArea__leftTab {
  transition: 0.3s;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: -160px;
  display: block;
  width: 260px;
  height: 100%;
}

.editPC__contentArea__leftTab__posArea {
  position: relative;
  width: 100%;
  height: 100%;
}

.editPC__contentArea__leftTab__posArea__label {
  position: absolute;
  top: 10px;
  right: -100px;
  display: block;
  width: 100px;
  height: 80px;
  line-height: 44px;
  margin: 0 0 5px 0;
  border: none;
  border-radius: 0 45% 45% 0;
  background-color: rgba(113, 168, 9, 0.8);
  text-align: left;
  font-size: 14px;
  color: #ffffff;
  background-position: 20px 5px;
  background-repeat: no-repeat;
  background-size: 45px;
  padding: 40px 0 0 10px;
  box-sizing: border-box;
  z-index: 5;
}

.editPC__contentArea__leftTab__posArea__label:hover {
  background-color: rgba(97, 144, 8, 0.8);
}

.editPC__contentArea__leftTab__posArea__label.openLabel {
  display: block;
}

.editPC__contentArea__leftTab__posArea__label.closeLabel {
  display: none;
}

.editPC__contentArea__leftTab__posArea__msgArea {
  opacity: 0.5;
  position: relative;
  display: block;
  width: 100%;
  height: 90px;
  pointer-events: none;
}

.editPC__contentArea__leftTab__posArea__msgArea__btn {
  position: absolute;
  top: 10px;
  display: block;
  width: auto;
  min-width: 50px;
  height: 50px;
  margin: 0 5px;
  border: none;
  border-radius: 8px;
  background-color: #dd621c;
  text-align: center;
  font-size: 12px;
  color: #ffffff;
  background-position: center 5px;
  background-repeat: no-repeat;
  background-size: 24px;
  padding: 26px 5px 0;
  box-sizing: border-box;
}

.editPC__contentArea__leftTab__posArea__msgArea__btn:hover {
  background-color: #c65819;
}

.editPC__contentArea__leftTab__posArea__msgArea__btn.zoomout {
  right: 10px;
}

.editPC__contentArea__leftTab__posArea__msgArea__btn.zoomin {
  right: 70px;
}

.editPC__contentArea__leftTab__posArea__tmbArea {
  opacity: 0.5;
  display: block;
  width: 100%;
  height: calc(100% - 90px);
  pointer-events: none;
}

.editPC__contentArea__leftTab__posArea__tmbArea__ul {
  list-style: none;
  display: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-content: flex-start;
  align-content: flex-start;
  width: calc(100% - 20px);
  height: 100%;
  margin: 0 10px;
  overflow-x: hidden;
  overflow-y: auto;
}

.editPC__contentArea__leftTab__posArea__tmbArea__ul > li {
  position: relative;
  display: block;
  width: 108px;
  height: 108px;
}

.editPC__contentArea__leftTab__posArea__tmbArea__item {
  display: block;
  width: 88px;
  height: 88px;
  margin: 10px;
  border: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.editPC__contentArea__leftTab__posArea__tmbArea__item.rotate90deg {
  animation: photoRotate-90deg 0.3s ease-in-out;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.editPC__contentArea__leftTab__posArea__tmbArea__item.rotate180deg {
  animation: photoRotate-180deg 0.3s ease-in-out;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.editPC__contentArea__leftTab__posArea__tmbArea__item.rotate270deg {
  animation: photoRotate-270deg 0.3s ease-in-out;
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.editPC__contentArea__leftTab__posArea__tmbArea__item.rotate360deg {
  animation: photoRotate-360deg 0.3s ease-in-out;
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.editPC__contentArea__leftTab__posArea__tmbArea__counter {
  position: absolute;
  top: 5px;
  left: 5px;
  display: block;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  transition: ease-in-out 0.2s;
  font-size: 1px;
  width: 1px;
  height: 1px;
  color: RGBA(255, 255, 255, 0);
  background-color: RGBA(221, 98, 28, 0);
}

.editPC__contentArea__leftTab__posArea__tmbArea__counter.counterVisible {
  font-size: 16px;
  width: 28px;
  height: 28px;
  color: RGBA(255, 255, 255, 1);
  background-color: RGBA(221, 98, 28, 1);
  transition: ease-in-out 0.2s;
}

.editPC__contentArea__leftTab__posArea__tmbArea__rightTurn {
  position: absolute;
  bottom: 5px;
  left: 5px;
  display: block;
  width: 28px;
  height: 28px;
  border: solid 2px #dd621c;
  border-radius: 50%;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
}

.editPC__contentArea__leftTab__posArea__tmbArea__DDArea {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: calc(100% - 40px);
  height: calc(100% - 20px);
  margin: 0 20px 20px;
  padding: 10px;
  box-sizing: border-box;
  border: dashed 2px #fff;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.3);
  text-align: center;
  line-height: 24px;
  font-size: 16px;
  color: #ffffff;
}

.editPC__contentArea__leftTab__posArea__tmbArea__DDArea:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.editPC__contentArea__leftTab__posArea__tmbArea__DDArea.hidden + .editPC__contentArea__leftTab__posArea__tmbArea__ul {
  display: -webkit-flex;
  display: flex;
}

.editPC__contentArea__content {
  transition: 0.3s;
  position: absolute;
  top: 0;
  left: 100px;
  display: block;
  width: calc(100% - (100px + 150px));
  height: 100%;
}

.editPC__contentArea__content__tmbArea {
  display: block;
  margin: 0 60px 0 40px;
  width: calc(100% - (40px + 60px));
  height: calc(100% - 100px);
}

.editPC__contentArea__content__tmbArea__warnArea {
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 0 0 10px;
  box-sizing: border-box;
}

.editPC__contentArea__content__tmbArea__warnArea__warn {
  display: block;
  margin: auto;
  width: 330px;
  height: 100%;
  line-height: 40px;
  background-position: left;
  background-repeat: no-repeat;
  background-size: 18px;
  font-size: 14px;
  text-align: left;
  padding: 0 0 0 22px;
  box-sizing: border-box;
}

.editPC__contentArea__content__tmbArea__editArea {
  display: block;
  width: 100%;
  max-width: 1000px;
  height: calc(100% - 40px);
  position: relative;
  overflow: hidden;
  margin: auto;
}

.editPC__contentArea__content__tmbArea__editArea__tmbArea {
  display: block;
  width: calc(100% - 180px);
  height: calc(100% - 60px);
  margin: 30px auto;
  position: relative;
}

.editPC__contentArea__content__tmbArea__editArea__tmbArea__tmb {
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.editPC__contentArea__content__tmbArea__editArea__tmbArea__selectedFrame {
  position: absolute;
  z-index: 3;
  display: none;
  background-color: transparent;
  outline: dashed 4px #dd621c;
}

.editPC__contentArea__content__tmbArea__editArea__tmbArea__selectedFrame__posArea {
  position: relative;
  width: 100%;
  height: 100%;
}

.editPC__contentArea__content__tmbArea__editArea__tmbArea__selectedFrame__posArea__btn {
  position: absolute;
  display: none;
  /*テキスト機能ボタン*/
  /*アイコン機能ボタン*/
}

.editPC__contentArea__content__tmbArea__editArea__tmbArea__selectedFrame__posArea__btn.replace {
  bottom: -14px;
  right: -30px;
  width: auto;
  min-width: 60px;
  height: 28px;
  border: solid 2px #fff;
  background-color: #dd621c;
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  line-height: 24px;
  bottom: auto;
  right: auto;
  top: -14px;
  left: -30px;
  background-color: #ff0;
  color: #000000;
}

.editPC__contentArea__content__tmbArea__editArea__tmbArea__selectedFrame__posArea__btn.replace:hover {
  background-color: #c65819;
}

.editPC__contentArea__content__tmbArea__editArea__tmbArea__selectedFrame__posArea__btn.replace:hover {
  background-color: #e6e600;
}

.editPC__contentArea__content__tmbArea__editArea__tmbArea__selectedFrame__posArea__btn.edit {
  bottom: -14px;
  right: -30px;
  width: auto;
  min-width: 60px;
  height: 28px;
  border: solid 2px #fff;
  background-color: #dd621c;
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  line-height: 24px;
  right: -45px;
  min-width: 90px;
}

.editPC__contentArea__content__tmbArea__editArea__tmbArea__selectedFrame__posArea__btn.edit:hover {
  background-color: #c65819;
}

.editPC__contentArea__content__tmbArea__editArea__tmbArea__selectedFrame__posArea__btn.editComment {
  bottom: -14px;
  right: -30px;
  width: auto;
  min-width: 60px;
  height: 28px;
  border: solid 2px #fff;
  background-color: #dd621c;
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  line-height: 24px;
  bottom: -29px;
}

.editPC__contentArea__content__tmbArea__editArea__tmbArea__selectedFrame__posArea__btn.editComment:hover {
  background-color: #c65819;
}

.editPC__contentArea__content__tmbArea__editArea__tmbArea__selectedFrame__posArea__btn.delete {
  top: -14px;
  right: -14px;
  width: 28px;
  height: 28px;
  border: solid 2px #dd621c;
  border-radius: 50%;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
}

.editPC__contentArea__content__tmbArea__editArea__tmbArea__selectedFrame__posArea__btn.delete:hover {
  background-color: #f2f2f2;
}

.editPC__contentArea__content__tmbArea__editArea__tmbArea__selectedFrame__posArea__btn.rightTurn {
  top: -14px;
  right: -14px;
  width: 28px;
  height: 28px;
  border: solid 2px #dd621c;
  border-radius: 50%;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
  top: auto;
  right: auto;
  bottom: -14px;
  left: -14px;
}

.editPC__contentArea__content__tmbArea__editArea__tmbArea__selectedFrame__posArea__btn.rightTurn:hover {
  background-color: #f2f2f2;
}

.editPC__contentArea__content__tmbArea__editArea__tmbArea__selectedFrame__posArea__btn.draggable {
  top: -14px;
  right: -14px;
  width: 28px;
  height: 28px;
  border: solid 2px #dd621c;
  border-radius: 50%;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
  top: auto;
  bottom: -14px;
  right: -14px;
}

.editPC__contentArea__content__tmbArea__editArea__tmbArea__selectedFrame__posArea__btn.draggable:hover {
  background-color: #f2f2f2;
}

.editPC__contentArea__content__tmbArea__editArea__tmbArea__selectedFrame__posArea__btn.deleteStamp {
  top: -14px;
  right: -14px;
  width: 28px;
  height: 28px;
  border: solid 2px #dd621c;
  border-radius: 50%;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
}

.editPC__contentArea__content__tmbArea__editArea__tmbArea__selectedFrame__posArea__btn.deleteStamp:hover {
  background-color: #f2f2f2;
}

.editPC__contentArea__content__tmbArea__editArea__tmbArea__selectedFrame__posArea__btn.deleteComment {
  top: -14px;
  right: -14px;
  width: 28px;
  height: 28px;
  border: solid 2px #dd621c;
  border-radius: 50%;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
  top: -29px;
}

.editPC__contentArea__content__tmbArea__editArea__tmbArea__selectedFrame__posArea__btn.deleteComment:hover {
  background-color: #f2f2f2;
}

.editPC__contentArea__content__tmbArea__editArea__prevBtn {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 40px;
  height: 40px;
  border: solid 2px #cccccc;
  border-radius: 6px;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
}

.editPC__contentArea__content__tmbArea__editArea__prevBtn:hover {
  background-color: #f2f2f2;
}

.editPC__contentArea__content__tmbArea__editArea__nextBtn {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 40px;
  height: 40px;
  border: solid 2px #cccccc;
  border-radius: 6px;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
}

.editPC__contentArea__content__tmbArea__editArea__nextBtn:hover {
  background-color: #f2f2f2;
}

.editPC__contentArea__content__tmbArea__editArea__pageNumber {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 20px;
  line-height: 20px;
  font-size: 12px;
  text-align: center;
}

.editPC__contentArea__content__tmbArea__editArea__editBox {
  position: absolute;
  display: none;
  background-color: #F9D401;
  padding: 1px;
}

.editPC__contentArea__content__tmbArea__editArea__editBox__btn {
  margin: 2px;
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background-color: #fff;
  background-position: center 5px;
  background-repeat: no-repeat;
  background-size: 20px;
  font-size: 11px;
  text-align: center;
  padding: 24px 0 0;
  box-sizing: border-box;
}

.editPC__contentArea__content__tmbListArea {
  display: block;
  width: 100%;
  height: 100px;
  background-color: rgba(0, 0, 0, 0.5);
}

.editPC__contentArea__content__tmbListArea > ul {
  list-style: none;
  display: -webkit-flex;
  display: flex;
  -webkit-align-content: flex-start;
  align-content: flex-start;
  width: 100%;
  height: 100%;
  overflow: auto;
}

.editPC__contentArea__content__tmbListArea > ul > li {
  position: relative;
  display: block;
  height: 76px;
  border: solid 2px transparent;
}

.editPC__contentArea__content__tmbListArea > ul > li.selected {
  border: solid 2px #dd621c;
}

.editPC__contentArea__content__tmbListArea__item {
  display: block;
  width: 70px;
  height: 70px;
  margin: 3px;
  border: none;
  background-color: #cccccc;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.editPC__contentArea__content__tmbListArea__label {
  position: absolute;
  bottom: 10px;
  left: 3px;
  display: block;
  width: 70px;
  height: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  line-height: 20px;
}

.editPC__contentArea__rightTab {
  transition: 0.3s;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  right: 0px;
  display: block;
  width: 150px;
  height: 100%;
}

.editPC__contentArea__rightTab__posArea {
  position: relative;
  width: 100%;
  height: 100%;
}

.editPC__contentArea__rightTab__posArea__btnArea {
  position: absolute;
  top: 40px;
  display: block;
  width: 100%;
  height: auto;
}

.editPC__contentArea__rightTab__posArea__btnArea__btn {
  display: none;
  width: 120px;
  height: 90px;
  margin: 0 auto 10px;
  border: none;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.7);
  text-align: center;
  font-size: 14px;
  color: #ffffff;
  background-position: center 3px;
  background-repeat: no-repeat;
  background-size: 60px;
  padding: 55px 0 0;
  box-sizing: border-box;
}

.editPC__contentArea__rightTab__posArea__btnArea__btn.layout {
  display: block;
}

.editPC__contentArea__rightTab__posArea__btnArea__btn.comment {
  display: block;
}

.editPC__contentArea__rightTab__posArea__btnArea__btn.stamp {
  display: block;
}

.editPC__contentArea__rightTab__posArea__btnArea__btn.mySticker {
  display: block;
}

.editPC__contentArea__rightTab__posArea__btnArea__btn:hover {
  background-color: #000;
}

@media screen and (max-height: 730px) {
  .editPC__contentArea__rightTab__posArea__btnArea__btn {
    height: 78px;
    background-size: 48px;
    padding: 43px 0 0;
  }
}

.editPC__contentArea__rightTab__posArea__btns {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 150px;
  height: auto;
  position: absolute;
  bottom: 4px;
  right: 0;
  padding: 0px 10px;
  box-sizing: border-box;
}

.editPC__contentArea__rightTab__posArea__btns__btn {
  z-index: 1;
  display: block;
  width: 55px;
  height: 50px;
  margin: 5px;
  border: none;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.7);
  text-align: center;
  font-size: 12px;
  color: #ffffff;
  background-position: center 5px;
  background-repeat: no-repeat;
  background-size: 24px;
  padding: 26px 0 0;
  box-sizing: border-box;
}

.editPC__contentArea__rightTab__posArea__btns__btn.bundleObjectFit, .editPC__contentArea__rightTab__posArea__btns__btn.bundleEffect {
  width: 120px;
  height: 34px;
  padding: 0;
  font-size: 14px;
}

.editPC__contentArea__rightTab__posArea__btns__btn:hover {
  background-color: #000;
}

.editPC__contentArea__rightTab__posArea__functionTabArea {
  position: absolute;
  top: 20px;
  right: 170px;
  display: none;
  width: 256px;
  height: calc(100% - 140px);
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.5);
}

.editPC__contentArea__rightTab__posArea__functionTabArea__close {
  position: absolute;
  top: 50%;
  left: -20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 20px;
  height: 150px;
  border: none;
  border-radius: 10px 0 0 10px;
  background-color: rgba(0, 0, 0, 0.5);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab {
  display: none;
  width: 100%;
  height: 100%;
  padding: 10px;
  box-sizing: border-box;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__categoryArea {
  display: block;
  width: 100%;
  height: 65px;
  box-sizing: border-box;
  padding: 10px 0 0 0;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__categoryArea__stampPulldown {
  position: relative;
  display: block;
  width: 100%;
  height: 40px;
  box-sizing: border-box;
  border: solid 1px #fff;
  border-radius: 8px;
  background-color: #fff;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__categoryArea__stampPulldown__selectName {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 40px;
  box-sizing: border-box;
  padding: 0 20px 0 0;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__categoryArea__stampPulldown__btn {
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 40px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px;
  box-sizing: border-box;
  border-radius: 0 8px 8px 0;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__categoryArea__stampPulldown__list {
  z-index: 1;
  position: absolute;
  top: 45px;
  left: 0;
  display: none;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  border: solid 1px #999999;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  background-color: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  cursor: pointer;
}

@media screen and (max-height: 680px) {
  .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__categoryArea__stampPulldown__list {
    max-height: 360px;
  }
}

@media screen and (min-height: 680px) {
  .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__categoryArea__stampPulldown__list {
    max-height: 360px;
  }
}

@media screen and (min-height: 740px) {
  .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__categoryArea__stampPulldown__list {
    max-height: 420px;
  }
}

@media screen and (min-height: 800px) {
  .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__categoryArea__stampPulldown__list {
    max-height: 480px;
  }
}

@media screen and (min-height: 860px) {
  .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__categoryArea__stampPulldown__list {
    max-height: 540px;
  }
}

@media screen and (min-height: 920px) {
  .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__categoryArea__stampPulldown__list {
    max-height: 600px;
  }
}

@media screen and (min-height: 980px) {
  .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__categoryArea__stampPulldown__list {
    max-height: 660px;
  }
}

@media screen and (min-height: 1040px) {
  .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__categoryArea__stampPulldown__list {
    max-height: 720px;
  }
}

@media screen and (min-height: 1100px) {
  .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__categoryArea__stampPulldown__list {
    max-height: 780px;
  }
}

@media screen and (min-height: 1160px) {
  .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__categoryArea__stampPulldown__list {
    max-height: 840px;
  }
}

@media screen and (min-height: 1220px) {
  .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__categoryArea__stampPulldown__list {
    max-height: 900px;
  }
}

@media screen and (min-height: 1280px) {
  .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__categoryArea__stampPulldown__list {
    max-height: 960px;
  }
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__categoryArea__stampPulldown__list__item {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  height: 100%;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__categoryArea__stampPulldown__list__item__img {
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  display: block;
  width: 90px;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 80%;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__categoryArea__stampPulldown__list__item__text {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 60px;
  font-size: 14px;
  box-sizing: border-box;
  padding: 0 0 0 10px;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__categoryArea__stampPulldown__list > ul {
  list-style: none;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__categoryArea__stampPulldown__list > ul > li {
  display: block;
  width: 100%;
  height: 60px;
  box-sizing: border-box;
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__categoryArea__stampPulldown.-modifier-open .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__categoryArea__stampPulldown__btn {
  transform: rotateZ(180deg);
  border-radius: 8px 0 0 8px;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__categoryArea__stampPulldown.-modifier-open .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__categoryArea__stampPulldown__list {
  display: block;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__categoryArea > ul {
  list-style: none;
  display: -webkit-flex;
  display: flex;
  -webkit-align-content: flex-start;
  align-content: flex-start;
  width: 100%;
  height: 100%;
  overflow: auto;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__categoryArea > ul > li {
  position: relative;
  display: block;
  height: 45px;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__categoryArea > ul > li.selected .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__categoryArea__category {
  border: solid 2px transparent;
  background-color: rgba(0, 0, 0, 0.7);
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__categoryArea > ul > li.selected .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__categoryArea__checked {
  display: block;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__categoryArea__category {
  display: block;
  min-width: 90px;
  height: 30px;
  margin: 10px 2px 5px 10px;
  box-sizing: border-box;
  border: solid 2px #fff;
  border-radius: 8px;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  font-size: 14px;
  color: #ffffff;
  white-space: nowrap;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__categoryArea__checked {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: 20px;
  height: 20px;
  border: solid 2px #fff;
  border-radius: 50%;
  background-color: #dd621c;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__buttonArea {
  display: block;
  width: 100%;
  height: 65px;
  box-sizing: border-box;
  padding: 12px 0 0 0;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__buttonArea__myStickerUpload {
  pointer-events: auto;
  position: relative;
  display: block;
  width: 200px;
  height: 40px;
  box-sizing: border-box;
  border: 2px solid #fff;
  border-radius: 10px;
  background-color: #dd621c;
  background-position: 20px;
  background-repeat: no-repeat;
  background-size: 26px;
  margin: auto;
  cursor: pointer;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__buttonArea__myStickerUpload > span {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 36px;
  text-align: center;
  font-size: 14px;
  color: #ffffff;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__buttonArea__myStickerUpload > input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__itemArea {
  display: block;
  width: 100%;
  height: calc(100% - 65px);
  overflow-x: hidden;
  overflow-y: auto;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__itemArea > ul {
  list-style: none;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-content: flex-start;
  align-content: flex-start;
  width: 100%;
  height: auto;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__itemArea > ul > li {
  position: relative;
  display: block;
  width: 108px;
  height: 108px;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__itemArea > ul > li.editPC_stampListLabel {
  margin: 10px auto;
  width: calc(100% - 20px);
  height: 50px;
  line-height: 46px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  box-sizing: border-box;
  border-top: solid 4px #fff;
  border-bottom: solid 4px #fff;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__itemArea > ul > li.selected .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__itemArea__item {
  border: solid 2px #dd621c;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__itemArea > ul > li.selected .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__itemArea__checked {
  display: block;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__itemArea__item {
  display: block;
  width: 88px;
  height: 88px;
  margin: 10px;
  border: solid 2px transparent;
  border-radius: 8px;
  background-color: #c4c4c4;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__itemArea__checked {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: 20px;
  height: 20px;
  border: solid 2px #fff;
  border-radius: 50%;
  background-color: #dd621c;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab.layout .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__itemArea {
  height: 100%;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab.effect .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__itemArea {
  height: 100%;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab.effect .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__itemArea > ul > li {
  height: 148px;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea {
  display: block;
  width: 100%;
  height: 100%;
  overflow: auto;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea > hr {
  width: 100%;
  height: 1px;
  border: none;
  background-color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea label {
  position: absolute;
  top: 0;
  left: 5px;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea input[type=radio] {
  display: none;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__inputBtnArea {
  display: block;
  width: 100%;
  height: auto;
  margin: 10px 0;
  box-sizing: border-box;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__inputBtnArea__btn {
  display: block;
  margin: auto;
  width: 200px;
  height: 40px;
  line-height: 36px;
  padding: 0 0 0 30px;
  border: 2px solid #fff;
  border-radius: 10px;
  font-size: 14px;
  color: #ffffff;
  background-color: #dd621c;
  background-position: 10px;
  background-repeat: no-repeat;
  background-size: 26px;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__fontArea {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  margin: 10px 0;
  padding: 16px 0 0 0;
  box-sizing: border-box;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__fontArea > select {
  margin: 5px;
  width: 100%;
  height: 36px;
  border: solid 2px #cccccc;
  border-radius: 10px;
  background-color: #fff;
  font-size: 14px;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__fontArea > button {
  display: block;
  margin: 5px;
  width: 99px;
  height: 36px;
  line-height: 36px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  color: #000000;
  background-color: #fff;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__fontArea > button:hover {
  background-color: #f2f2f2;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__fontArea > button.selected {
  background-color: #000;
  color: #ffffff;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__fontArea > button.selected:hover {
  background-color: #000;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__sizeArea {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: 10px 0;
  padding: 16px 0 0 0;
  box-sizing: border-box;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__sizeArea > select {
  margin: 5px;
  width: calc(100% - 10px);
  height: 36px;
  border: solid 2px #cccccc;
  border-radius: 10px;
  background-color: #fff;
  font-size: 14px;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__directionArea {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: 10px 0;
  padding: 16px 0 0 0;
  box-sizing: border-box;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__directionArea__radioGroup {
  margin: 5px auto;
  display: -webkit-flex;
  display: flex;
  width: 106px;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__directionArea__radioGroup label {
  position: relative;
  left: 0;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__directionArea__radioGroup__btn {
  display: block;
  width: 53px;
  height: 36px;
  box-sizing: border-box;
  border: solid 1px #cccccc;
  background-color: #fff;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__directionArea__radioGroup__btn > span {
  display: none;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 36px;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__directionArea__radioGroup__btn:first-of-type {
  border-radius: 4px 0 0 4px;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__directionArea__radioGroup__btn:last-of-type {
  border-radius: 0 4px 4px 0;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__directionArea__radioGroup__btn:hover {
  background-color: #f2f2f2;
}

input[type=radio] + .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__directionArea__radioGroup__btn > .writeHorizontally {
  display: block;
}

input[type=radio]:checked + .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__directionArea__radioGroup__btn > .writeHorizontally {
  display: none;
}

input[type=radio]:checked + .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__directionArea__radioGroup__btn > .writeHorizontallySelected {
  display: block;
}

input[type=radio] + .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__directionArea__radioGroup__btn > .writeVertically {
  display: block;
}

input[type=radio]:checked + .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__directionArea__radioGroup__btn > .writeVertically {
  display: none;
}

input[type=radio]:checked + .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__directionArea__radioGroup__btn > .writeVerticallySelected {
  display: block;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__alignHArea {
  position: relative;
  display: none;
  width: 100%;
  height: auto;
  margin: 10px 0;
  padding: 16px 0 0 0;
  box-sizing: border-box;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__alignHArea input[type=radio] {
  display: none;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__alignHArea__radioGroup {
  margin: 5px auto;
  display: -webkit-flex;
  display: flex;
  width: 160px;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__alignHArea__radioGroup label {
  position: relative;
  left: 0;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__alignHArea__radioGroup__btn {
  display: block;
  width: 53px;
  height: 36px;
  box-sizing: border-box;
  border: solid 1px #cccccc;
  background-color: #fff;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__alignHArea__radioGroup__btn > span {
  display: none;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 36px;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__alignHArea__radioGroup__btn:first-of-type {
  border-radius: 4px 0 0 4px;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__alignHArea__radioGroup__btn:last-of-type {
  border-radius: 0 4px 4px 0;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__alignHArea__radioGroup__btn:hover {
  background-color: #f2f2f2;
}

input[type=radio] + .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__alignHArea__radioGroup__btn > .wordAlignHorizontallyLeft {
  display: block;
}

input[type=radio]:checked + .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__alignHArea__radioGroup__btn > .wordAlignHorizontallyLeft {
  display: none;
}

input[type=radio]:checked + .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__alignHArea__radioGroup__btn > .wordAlignHorizontallyLeftSelected {
  display: block;
}

input[type=radio] + .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__alignHArea__radioGroup__btn > .wordAlignHorizontallyCenter {
  display: block;
}

input[type=radio]:checked + .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__alignHArea__radioGroup__btn > .wordAlignHorizontallyCenter {
  display: none;
}

input[type=radio]:checked + .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__alignHArea__radioGroup__btn > .wordAlignHorizontallyCenterSelected {
  display: block;
}

input[type=radio] + .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__alignHArea__radioGroup__btn > .wordAlignHorizontallyRight {
  display: block;
}

input[type=radio]:checked + .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__alignHArea__radioGroup__btn > .wordAlignHorizontallyRight {
  display: none;
}

input[type=radio]:checked + .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__alignHArea__radioGroup__btn > .wordAlignHorizontallyRightSelected {
  display: block;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__alignVArea {
  position: relative;
  display: none;
  width: 100%;
  height: auto;
  margin: 10px 0;
  padding: 16px 0 0 0;
  box-sizing: border-box;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__alignVArea input[type=radio] {
  display: none;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__alignVArea__radioGroup {
  margin: 5px auto;
  display: -webkit-flex;
  display: flex;
  width: 160px;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__alignVArea__radioGroup label {
  position: relative;
  left: 0;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__alignVArea__radioGroup__btn {
  display: block;
  width: 53px;
  height: 36px;
  box-sizing: border-box;
  border: solid 1px #cccccc;
  background-color: #fff;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__alignVArea__radioGroup__btn > span {
  display: none;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 36px;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__alignVArea__radioGroup__btn:first-of-type {
  border-radius: 4px 0 0 4px;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__alignVArea__radioGroup__btn:last-of-type {
  border-radius: 0 4px 4px 0;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__alignVArea__radioGroup__btn:hover {
  background-color: #f2f2f2;
}

input[type=radio] + .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__alignVArea__radioGroup__btn > .wordAlignVerticalTop {
  display: block;
}

input[type=radio]:checked + .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__alignVArea__radioGroup__btn > .wordAlignVerticalTop {
  display: none;
}

input[type=radio]:checked + .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__alignVArea__radioGroup__btn > .wordAlignVerticalTopSelected {
  display: block;
}

input[type=radio] + .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__alignVArea__radioGroup__btn > .wordAlignVerticalCenter {
  display: block;
}

input[type=radio]:checked + .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__alignVArea__radioGroup__btn > .wordAlignVerticalCenter {
  display: none;
}

input[type=radio]:checked + .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__alignVArea__radioGroup__btn > .wordAlignVerticalCenterSelected {
  display: block;
}

input[type=radio] + .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__alignVArea__radioGroup__btn > .wordAlignVerticalBottom {
  display: block;
}

input[type=radio]:checked + .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__alignVArea__radioGroup__btn > .wordAlignVerticalBottom {
  display: none;
}

input[type=radio]:checked + .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__alignVArea__radioGroup__btn > .wordAlignVerticalBottomSelected {
  display: block;
}

[data-text-direction="vertical"] .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__alignVArea {
  display: block;
}

[data-text-direction="horizontal"] .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__alignHArea {
  display: block;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__colorArea {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: 10px 0;
  padding: 16px 0 0 0;
  box-sizing: border-box;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__colorArea > ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__colorArea > ul > li {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  position: relative;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__colorArea > ul > li > button {
  display: block;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 8px;
  box-sizing: border-box;
  margin: 3px;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__colorArea > ul > li:hover > button {
  border: solid 1px #cccccc;
}

.editPC__contentArea__rightTab__posArea__functionTabArea__functionTab__scrollArea__colorArea > ul > li.selected > button {
  border: solid 2px #fff;
}

.popupContent__contentArea > textarea {
  width: 100%;
  height: 180px;
  margin: 20px 0 10px 0;
  padding: 10px;
  font-size: 16px;
  box-sizing: border-box;
  resize: none;
  border: 1px solid #cccccc;
  border-radius: 10px;
}

/*フレームタイプ*/
[data-Frame-type="noBtn"] .editPC__contentArea__content__tmbArea__editArea__tmbArea__selectedFrame {
  display: block;
}

[data-Frame-type="photo"] .editPC__contentArea__content__tmbArea__editArea__tmbArea__selectedFrame {
  display: block;
}

[data-Frame-type="photo"] .replace, [data-Frame-type="photo"] .delete, [data-Frame-type="photo"] .rightTurn, [data-Frame-type="photo"] .edit {
  display: block;
}

[data-Frame-type="stamp"] .editPC__contentArea__content__tmbArea__editArea__tmbArea__selectedFrame {
  display: block;
}

[data-Frame-type="stamp"] .deleteStamp, [data-Frame-type="stamp"] .draggable {
  display: block;
}

[data-Frame-type="comment"] .editPC__contentArea__content__tmbArea__editArea__tmbArea__selectedFrame {
  display: block;
}

[data-Frame-type="comment"] .deleteComment, [data-Frame-type="comment"] .editComment {
  display: block;
}

[data-Frame-type="mySticker"] .editPC__contentArea__content__tmbArea__editArea__tmbArea__selectedFrame {
  display: block;
}

[data-Frame-type="mySticker"] .deleteStamp, [data-Frame-type="mySticker"] .draggable {
  display: block;
}

/*機能タブ調整*/
[data-function-tab-open="layout"] .editPC__contentArea__content__tmbArea {
  margin: 0 300px 0 30px;
  width: calc(100% - (300px + 30px));
}

[data-function-tab-open="layout"] .editPC__contentArea__rightTab__posArea__btnArea__btn.layout {
  background-color: #dd621c;
}

[data-function-tab-open="layout"] .editPC__contentArea__rightTab__posArea__functionTabArea {
  display: block;
}

[data-function-tab-open="layout"] .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab.layout {
  display: block;
}

[data-function-tab-open="comment"] .editPC__contentArea__content__tmbArea {
  margin: 0 300px 0 30px;
  width: calc(100% - (300px + 30px));
}

[data-function-tab-open="comment"] .editPC__contentArea__rightTab__posArea__btnArea__btn.comment {
  background-color: #dd621c;
}

[data-function-tab-open="comment"] .editPC__contentArea__rightTab__posArea__functionTabArea {
  display: block;
}

[data-function-tab-open="comment"] .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab.comment {
  display: block;
}

[data-function-tab-open="stamp"] .editPC__contentArea__content__tmbArea {
  margin: 0 300px 0 30px;
  width: calc(100% - (300px + 30px));
}

[data-function-tab-open="stamp"] .editPC__contentArea__rightTab__posArea__btnArea__btn.stamp {
  background-color: #dd621c;
}

[data-function-tab-open="stamp"] .editPC__contentArea__rightTab__posArea__functionTabArea {
  display: block;
}

[data-function-tab-open="stamp"] .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab.stamp {
  display: block;
}

[data-function-tab-open="mySticker"] .editPC__contentArea__content__tmbArea {
  margin: 0 300px 0 30px;
  width: calc(100% - (300px + 30px));
}

[data-function-tab-open="mySticker"] .editPC__contentArea__rightTab__posArea__btnArea__btn.mySticker {
  background-color: #dd621c;
}

[data-function-tab-open="mySticker"] .editPC__contentArea__rightTab__posArea__functionTabArea {
  display: block;
}

[data-function-tab-open="mySticker"] .editPC__contentArea__rightTab__posArea__functionTabArea__functionTab.mySticker {
  display: block;
}

/*タブ調整*/
[data-tab-open="photolist"] .editPC__contentArea__leftTab {
  left: 0;
}

[data-tab-open="photolist"] .editPC__contentArea__leftTab__posArea__label.openLabel {
  display: none;
}

[data-tab-open="photolist"] .editPC__contentArea__leftTab__posArea__label.closeLabel {
  display: block;
}

[data-tab-open="photolist"] .editPC__contentArea__leftTab__posArea__msgArea {
  opacity: 1;
  pointer-events: auto;
}

[data-tab-open="photolist"] .editPC__contentArea__leftTab__posArea__tmbArea {
  opacity: 1;
  pointer-events: auto;
}

[data-tab-open="photolist"] .editPC__contentArea__content {
  left: 260px;
  width: calc(100% - (260px + 150px));
}

@media screen and (min-width: 1132px) {
  .editPC__contentArea__leftTab {
    left: -268px;
    width: 368px;
  }
  .editPC__contentArea__leftTab__posArea__tmbArea__DDArea {
    padding: 40px;
  }
  /*タブ調整*/
  [data-tab-open="photolist"] .editPC__contentArea__content {
    left: 368px;
    width: calc(100% - (368px + 150px));
  }
}

.zoomViewMode .editPC__contentArea__leftTab__posArea__tmbArea__ul > li {
  width: 210px;
  height: 210px;
}

.zoomViewMode .editPC__contentArea__leftTab__posArea__tmbArea__item {
  width: 190px;
  height: 190px;
}

.zoomViewMode .editPC__contentArea__leftTab__posArea__tmbArea__counter {
  width: 48px;
  height: 48px;
  line-height: 48px;
  font-size: 18px;
}

.zoomViewMode .editPC__contentArea__leftTab__posArea__tmbArea__rightTurn {
  width: 48px;
  height: 48px;
  background-size: 26px;
}

@media screen and (min-width: 1132px) {
  .zoomViewMode .editPC__contentArea__leftTab__posArea__tmbArea__ul > li {
    width: 320px;
    height: 320px;
  }
  .zoomViewMode .editPC__contentArea__leftTab__posArea__tmbArea__item {
    width: 280px;
    height: 280px;
  }
  .zoomViewMode .editPC__contentArea__leftTab__posArea__tmbArea__counter {
    width: 68px;
    height: 68px;
    line-height: 68px;
    font-size: 28px;
  }
  .zoomViewMode .editPC__contentArea__leftTab__posArea__tmbArea__rightTurn {
    width: 68px;
    height: 68px;
    background-size: 38px;
  }
}

/*入替モード*/
.replaceMode .editPC__contentArea__leftTab__posArea__tmbArea__item {
  outline: solid 3px yellow;
}

.replaceMode .editArea_ReplaceLine > div {
  outline: solid 3px yellow;
  z-index: 1;
}

.dragDropReplace .editPC__contentArea__leftTab__posArea__tmbArea__item {
  outline: none;
}

@keyframes photoRotate-90deg {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

@keyframes photoRotate-180deg {
  0% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  100% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

@keyframes photoRotate-270deg {
  0% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}

@keyframes photoRotate-360deg {
  0% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@charset "UTF-8";
.editSP__messageArea {
  display: block;
  width: 100%;
  height: 40px;
  position: relative;
}

.editSP__messageArea__switchArea {
  position: absolute;
  top: 5px;
  left: 5px;
  display: block;
  width: 125px;
  height: 30px;
  border-radius: 4px;
  background-color: #999999;
  text-align: center;
  line-height: 30px;
}

.editSP__messageArea__switchArea__btn {
  width: 57px;
  height: 25px;
  border: none;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.7);
  font-size: 14px;
  color: #ffffff;
  text-align: center;
}

.editSP__messageArea__switchArea__btn:hover {
  background-color: #000;
}

.editSP__messageArea__nextBtn {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  width: 150px;
  height: 30px;
  border: none;
  border-radius: 4px;
  background-color: rgba(113, 168, 9, 0.8);
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  line-height: 30px;
}

.editSP__messageArea__nextBtn:hover {
  background-color: rgba(97, 144, 8, 0.8);
}

.editSP__warnArea {
  display: block;
  width: 100%;
  height: 20px;
  padding: 0 0 0 10px;
  box-sizing: border-box;
}

.editSP__warnArea__warn {
  display: block;
  height: 100%;
  line-height: 20px;
  background-position: left;
  background-repeat: no-repeat;
  background-size: 16px;
  font-size: 12px;
  text-align: left;
  padding: 0 0 0 20px;
  box-sizing: border-box;
}

.editSP__editArea {
  display: block;
  width: 100%;
  height: calc(100% - (40px + 20px + 48px));
  position: relative;
  overflow: hidden;
}

.editSP__editArea__tmbArea {
  display: block;
  width: calc(100% - 60px);
  height: calc(100% - 65px);
  margin: 15px auto 50px;
  position: relative;
}

.editSP__editArea__tmbArea__tmb {
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.editSP__editArea__prevBtn {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 30px;
  height: 60px;
  border: none;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
}

.editSP__editArea__nextBtn {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 30px;
  height: 60px;
  border: none;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
}

.editSP__editArea__pageNumber {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 30px;
  line-height: 30px;
  font-size: 12px;
  text-align: center;
  z-index: -1;
}

.editSP__editArea__selectedFrame {
  position: absolute;
  display: none;
  outline: dashed 3px #dd621c;
}

.editSP__editArea__selectedFrame__pos {
  pointer-events: none;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.editSP__editArea__selectedFrame__pos__dustBtn {
  pointer-events: auto;
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 10;
  display: none;
  width: 28px;
  height: 28px;
  box-sizing: border-box;
  border: solid 2px #dd621c;
  border-radius: 50%;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 70%;
}

.editSP__editArea__selectedFrame__posArea {
  display: none;
  position: relative;
  width: 100%;
  height: 100%;
}

.editSP__editArea__selectedFrame__posArea__editBox {
  position: absolute;
  display: none;
  background-color: #F9D401;
  padding: 1px;
}

.editSP__editArea__selectedFrame__posArea__editBox__btn {
  margin: 2px;
  display: none;
  width: auto;
  min-width: 40px;
  height: 40px;
  border: none;
  background-color: #fff;
  background-position: center 5px;
  background-repeat: no-repeat;
  background-size: 20px;
  font-size: 11px;
  text-align: center;
  padding: 24px 5px 0;
  box-sizing: border-box;
}

.editSP__functionArea {
  display: block;
  width: 100%;
  height: 48px;
}

.editSP__functionArea__default {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  height: 100%;
}

.editSP__functionArea__default__btn {
  display: block;
  width: 33%;
  height: 100%;
  border: none;
  background-color: transparent;
  background-position: center 5px;
  background-repeat: no-repeat;
  background-size: 25px;
  font-size: 10px;
  text-align: center;
  padding: 25px 0 0;
  box-sizing: border-box;
  letter-spacing: -1px;
}

.editSP__functionArea__tab {
  position: relative;
  display: none;
  width: 100%;
  height: 100%;
}

.editSP__functionArea__tab__tabDisplayRangeChangeBtn {
  position: absolute;
  top: 0;
  right: 40px;
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background-color: #e6e6e6;
  padding: 0;
}

.editSP__functionArea__tab__tabDisplayRangeChangeBtn__icn {
  display: none;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
}

.editSP__functionArea__tab__tabDisplayRangeChangeBtn__icn.-modifier-tabExpand {
  display: block;
}

.editSP__functionArea__tab__closeBtn {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 40px;
  height: 40px;
  border: none;
  background-color: #e6e6e6;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
}

.editSP__functionArea__tab__categoryArea {
  background-color: #e6e6e6;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: calc(100% - 40px);
  height: 40px;
}

.editSP__functionArea__tab__categoryArea > ul {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.editSP__functionArea__tab__categoryArea > ul > li {
  display: block;
  min-width: 70px;
  height: 100%;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  padding: 5px;
  box-sizing: border-box;
}

.editSP__functionArea__tab__categoryArea__btn {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 4px;
  background-color: #fff;
  font-size: 12px;
  text-align: center;
  line-height: 30px;
}

.editSP__functionArea__tab__categoryArea__btn.selected {
  background-color: #dd621c;
  color: #ffffff;
}

.editSP__functionArea__tab__contentArea {
  background-color: #e6e6e6;
  position: absolute;
  top: 40px;
  left: 0;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  height: calc(100% - 40px);
}

.editSP__functionArea__tab__contentArea__uploadArea {
  display: none;
  width: 50px;
  height: 100%;
}

.editSP__functionArea__tab__contentArea__uploadArea > label {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  font-size: 12px;
  color: #444444;
  text-align: center;
  padding: 45px 0 0;
  box-sizing: border-box;
  box-shadow: 0 0 3px #cccccc;
  background-repeat: no-repeat;
  background-position: center 15px;
  background-size: 30px;
}

.editSP__functionArea__tab__contentArea__uploadArea > label > input {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.editSP__functionArea__tab__contentArea__selectBtnArea {
  display: none;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.editSP__functionArea__tab__contentArea__selectBtnArea__btn {
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  display: block;
  width: 100px;
  height: calc(100% - 10px);
  margin: 5px 10px;
  box-sizing: border-box;
  padding: 40px 0 0 0;
  border: solid 2px #444;
  background-color: #fff;
  background-position: center 2px;
  background-repeat: no-repeat;
  background-size: auto 36px;
  text-align: center;
  font-size: 12px;
}

.editSP__functionArea__tab__contentArea__selectBtnArea__btn.selected {
  border: solid 3px #dd621c;
}

.editSP__functionArea__tab__contentArea > ul {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.editSP__functionArea__tab__contentArea > ul > li {
  display: block;
  width: 70px;
  height: 70px;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  padding: 5px;
  box-sizing: border-box;
}

.editSP__functionArea__tab__contentArea > ul > li.selected {
  opacity: 0.5;
}

.editSP__functionArea__tab__contentArea__tmb {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #e6e6e6;
}

.editSP__commentPop {
  overflow-x: hidden;
  overflow-y: auto;
}

.editSP__commentPop__settings__color > div > button.selected {
  border: solid 2px #000;
}

/*フレーム調整*/
[data-box-display="noBtn"] .editSP__editArea__selectedFrame {
  display: block;
}

[data-box-display="noBtn"] .editSP__editArea__selectedFrame__posArea {
  display: block;
  pointer-events: none;
}

[data-box-display="noBtn"] .editSP__editArea__selectedFrame__posArea__editBox {
  display: -webkit-flex;
  display: flex;
}

[data-box-display="noBtn"] .editSP__editArea__selectedFrame__posArea__editBox {
  display: none;
}

[data-box-display="picture"] .editSP__editArea__selectedFrame {
  display: block;
}

[data-box-display="picture"] .editSP__editArea__selectedFrame__posArea {
  display: block;
  pointer-events: none;
}

[data-box-display="picture"] .editSP__editArea__selectedFrame__posArea__editBox {
  display: -webkit-flex;
  display: flex;
}

[data-box-display="picture"] .editSP__editArea__selectedFrame__pos__dustBtn {
  display: block;
}

[data-box-display="picture"] .trimming, [data-box-display="picture"] .effect, [data-box-display="picture"] .replace, [data-box-display="picture"] .rightTurn {
  display: block;
}

[data-box-display="comment"] .editSP__editArea__selectedFrame {
  display: block;
}

[data-box-display="comment"] .editSP__editArea__selectedFrame__posArea {
  display: block;
  pointer-events: none;
}

[data-box-display="comment"] .editSP__editArea__selectedFrame__posArea__editBox {
  display: -webkit-flex;
  display: flex;
}

[data-box-display="comment"] .editSP__editArea__selectedFrame__pos__dustBtn {
  display: block;
  top: -29px;
}

[data-box-display="comment"] .commentEdit {
  display: block;
}

[data-box-display="fixComment"] .editSP__editArea__selectedFrame {
  display: block;
}

[data-box-display="fixComment"] .editSP__editArea__selectedFrame__posArea {
  display: block;
  pointer-events: none;
}

[data-box-display="fixComment"] .editSP__editArea__selectedFrame__posArea__editBox {
  display: -webkit-flex;
  display: flex;
}

[data-box-display="fixComment"] .commentEdit {
  display: block;
}

[data-box-display="stamp"] .editSP__editArea__selectedFrame {
  display: block;
}

[data-box-display="stamp"] .editSP__editArea__selectedFrame__posArea {
  display: block;
  pointer-events: none;
}

[data-box-display="stamp"] .editSP__editArea__selectedFrame__posArea__editBox {
  display: -webkit-flex;
  display: flex;
}

[data-box-display="stamp"] .editSP__editArea__selectedFrame__pos__dustBtn {
  display: block;
}

[data-box-display="stamp"] .rightTurn, [data-box-display="stamp"] .zoomout, [data-box-display="stamp"] .zoomin {
  display: block;
}

[data-box-display="mySticker"] .editSP__editArea__selectedFrame {
  display: block;
}

[data-box-display="mySticker"] .editSP__editArea__selectedFrame__posArea {
  display: block;
  pointer-events: none;
}

[data-box-display="mySticker"] .editSP__editArea__selectedFrame__posArea__editBox {
  display: -webkit-flex;
  display: flex;
}

[data-box-display="mySticker"] .editSP__editArea__selectedFrame__pos__dustBtn {
  display: block;
}

[data-box-display="mySticker"] .rightTurn, [data-box-display="mySticker"] .zoomout, [data-box-display="mySticker"] .zoomin {
  display: block;
}

/*タブ調整*/
[data-function-open="layout"] .editSP__editArea {
  height: calc(100% - (40px + 20px + 110px));
}

[data-function-open="layout"] .editSP__functionArea {
  height: 110px;
}

[data-function-open="layout"] .editSP__functionArea__default {
  display: none;
}

[data-function-open="layout"] .editSP__functionArea__tab {
  display: block;
}

[data-function-open="photoList"] .editSP__editArea {
  height: calc(100% - (40px + 20px + 110px));
}

[data-function-open="photoList"] .editSP__functionArea {
  height: 110px;
}

[data-function-open="photoList"] .editSP__functionArea__default {
  display: none;
}

[data-function-open="photoList"] .editSP__functionArea__tab {
  display: block;
}

[data-function-open="photoList"] .editSP__functionArea__tab .photo {
  display: block;
}

[data-function-open="photoList"] .editSP__functionArea__tab__contentArea > ul {
  width: calc(100% - 50px);
}

[data-function-open="stamp"] .editSP__editArea {
  height: calc(100% - (40px + 20px + 110px));
}

[data-function-open="stamp"] .editSP__functionArea {
  height: 110px;
}

[data-function-open="stamp"] .editSP__functionArea__default {
  display: none;
}

[data-function-open="stamp"] .editSP__functionArea__tab {
  display: block;
}

[data-function-open="stamp"] .editSP__functionArea__tab__tabDisplayRangeChangeBtn {
  display: block;
}

[data-function-open="stamp"] .editSP__functionArea__tab__categoryArea {
  display: block;
  width: calc(100% - 40px - 40px);
}

[data-function-open="stamp"] .editSP__functionArea__tab__contentArea {
  overflow-x: auto;
  overflow-y: hidden;
}

[data-function-open="stamp"] .editSP__functionArea__tab__contentArea > ul {
  overflow: hidden;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  padding: 0 5px;
}

[data-function-open="stamp"] .editSP__functionArea__tab__contentArea > ul:nth-child(even) {
  background-color: #fff;
}

[data-function-open="stamp"] .editSP__functionArea__tab__contentArea > ul:last-of-type {
  /* ALL属性のために余分にサイズ設定されるため幅を追加 */
  min-width: calc(100% + 2px);
}

[data-function-open="stamp"] .editSP__functionArea.-modifier-expandDisplay {
  position: relative;
}

[data-function-open="stamp"] .editSP__functionArea.-modifier-expandDisplay .editSP__functionArea__tab {
  position: absolute;
  bottom: 0;
  height: 320px;
}

[data-function-open="stamp"] .editSP__functionArea.-modifier-expandDisplay .editSP__functionArea__tab__tabDisplayRangeChangeBtn__icn.-modifier-tabExpand {
  display: none;
}

[data-function-open="stamp"] .editSP__functionArea.-modifier-expandDisplay .editSP__functionArea__tab__tabDisplayRangeChangeBtn__icn.-modifier-tabNarrow {
  display: block;
}

[data-function-open="stamp"] .editSP__functionArea.-modifier-expandDisplay .editSP__functionArea__tab__contentArea > ul {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-content: flex-start;
  align-content: flex-start;
}

[data-function-open="mySticker"] .editSP__editArea {
  height: calc(100% - (40px + 20px + 110px));
}

[data-function-open="mySticker"] .editSP__functionArea {
  height: 110px;
}

[data-function-open="mySticker"] .editSP__functionArea__default {
  display: none;
}

[data-function-open="mySticker"] .editSP__functionArea__tab {
  display: block;
}

[data-function-open="mySticker"] .editSP__functionArea__tab .mySticker {
  display: block;
}

[data-function-open="mySticker"] .editSP__functionArea__tab__contentArea > ul {
  width: calc(100% - 50px);
}

[data-function-open="decoration"] .editSP__editArea {
  height: calc(100% - (40px + 20px + 110px));
}

[data-function-open="decoration"] .editSP__functionArea {
  height: 110px;
}

[data-function-open="decoration"] .editSP__functionArea__default {
  display: none;
}

[data-function-open="decoration"] .editSP__functionArea__tab {
  display: block;
}

[data-function-open="decoration"] .editSP__functionArea__tab .decoration {
  display: -webkit-flex;
  display: flex;
}

[data-function-open="decoration"] .editSP__functionArea__tab__contentArea > ul {
  display: none;
}

[data-function-open="batchChange"] .editSP__editArea {
  height: calc(100% - (40px + 20px + 110px));
}

[data-function-open="batchChange"] .editSP__functionArea {
  height: 110px;
}

[data-function-open="batchChange"] .editSP__functionArea__default {
  display: none;
}

[data-function-open="batchChange"] .editSP__functionArea__tab {
  display: block;
}

[data-function-open="batchChange"] .editSP__functionArea__tab .batchChange {
  display: -webkit-flex;
  display: flex;
}

[data-function-open="batchChange"] .editSP__functionArea__tab__contentArea > ul {
  display: none;
}

[data-function-open="batchEffect"] .editSP__editArea {
  height: calc(100% - (40px + 20px + 110px));
}

[data-function-open="batchEffect"] .editSP__functionArea {
  height: 110px;
}

[data-function-open="batchEffect"] .editSP__functionArea__default {
  display: none;
}

[data-function-open="batchEffect"] .editSP__functionArea__tab {
  display: block;
}

[data-function-open="batchEffect"] .editSP__functionArea__tab .batchEffect {
  display: -webkit-flex;
  display: flex;
}

[data-function-open="batchEffect"] .editSP__functionArea__tab__contentArea > ul {
  display: none;
}

[data-function-open="batchObjectFit"] .editSP__editArea {
  height: calc(100% - (40px + 20px + 110px));
}

[data-function-open="batchObjectFit"] .editSP__functionArea {
  height: 110px;
}

[data-function-open="batchObjectFit"] .editSP__functionArea__default {
  display: none;
}

[data-function-open="batchObjectFit"] .editSP__functionArea__tab {
  display: block;
}

[data-function-open="batchObjectFit"] .editSP__functionArea__tab .batchObjectFit {
  display: -webkit-flex;
  display: flex;
}

[data-function-open="batchObjectFit"] .editSP__functionArea__tab__contentArea > ul {
  display: none;
}

/*入替モード*/
.replaceMode .editSP__functionArea__tab__contentArea__tmb.photoTmb {
  outline: solid 3px yellow;
}

.replaceMode .editArea_ReplaceLine > div {
  outline: solid 3px yellow;
}

@charset "UTF-8";
.trimmingPC__tmbArea {
  display: block;
  width: calc(100% - 446px);
  height: 100%;
}

.trimmingPC__tmbArea__warnArea {
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 0 0 40px;
  box-sizing: border-box;
}

.trimmingPC__tmbArea__warnArea__warn {
  display: block;
  height: 100%;
  line-height: 40px;
  background-position: left;
  background-repeat: no-repeat;
  background-size: 18px;
  font-size: 14px;
  color: #ffffff;
  text-align: left;
  padding: 0 0 0 24px;
  box-sizing: border-box;
}

.trimmingPC__tmbArea__editArea {
  display: block;
  width: 100%;
  height: calc(100% - 40px);
  position: relative;
  overflow: hidden;
}

.trimmingPC__tmbArea__editArea__tmbArea {
  display: block;
  width: calc(100% - 80px);
  height: calc(100% - 20px);
  margin: 0 40px 20px;
  position: relative;
}

.trimmingPC__tmbArea__editArea__tmbArea__tmb {
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.trimmingPC__tmbArea__editArea__tmbArea__tmb__warn {
  position: absolute;
  top: 10px;
  width: 32px;
  height: 32px;
}

.trimmingPC__tabArea {
  transition: 0.3s;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 0;
  right: -140px;
  display: block;
  width: 150px;
  height: 100%;
}

.trimmingPC__tabArea__posArea {
  position: relative;
  width: 100%;
  height: 100%;
}

.trimmingPC__tabArea__posArea__btnArea {
  position: absolute;
  top: 40px;
  display: block;
  width: 100%;
  height: auto;
}

.trimmingPC__tabArea__posArea__btnArea__btn {
  display: block;
  width: 120px;
  height: 90px;
  margin: 0 auto 10px;
  border: none;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.7);
  text-align: center;
  font-size: 14px;
  color: #ffffff;
  background-position: center 10px;
  background-repeat: no-repeat;
  background-size: 50px;
  padding: 55px 0 0;
  box-sizing: border-box;
}

.trimmingPC__tabArea__posArea__btnArea__btn:hover {
  background-color: #000;
}

.trimmingPC__tabArea__posArea__functionTabArea {
  position: absolute;
  top: 20px;
  right: 170px;
  display: none;
  width: 256px;
  height: auto;
  min-height: 140px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.5);
}

.trimmingPC__tabArea__posArea__functionTabArea__close {
  position: absolute;
  top: 50%;
  left: -20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 20px;
  height: 150px;
  border: none;
  border-radius: 10px 0 0 10px;
  background-color: rgba(255, 255, 255, 0.5);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab {
  display: none;
  width: 100%;
  height: 100%;
  min-height: 360px;
  padding: 10px;
  box-sizing: border-box;
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea {
  display: block;
  width: 100%;
  height: 100%;
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea > hr {
  margin: 10px 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea__turnArea__label {
  width: 100%;
  height: 20px;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  line-height: 20px;
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea__turnArea > ul {
  list-style: none;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  height: auto;
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea__turnArea > ul > li {
  display: block;
  width: 59px;
  height: 70px;
  font-size: 14px;
  color: #ffffff;
  text-align: center;
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea__turnArea > ul > li > button {
  display: block;
  width: 40px;
  height: 40px;
  margin: 5px 10px;
  border: none;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.7);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea__turnArea > ul > li > button:hover {
  background-color: #000;
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea__zoomArea__label {
  width: 100%;
  height: 20px;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  line-height: 20px;
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea__zoomArea > ul {
  list-style: none;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  height: auto;
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea__zoomArea > ul > li {
  display: block;
  width: 50%;
  height: 50px;
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea__zoomArea > ul > li > button {
  display: block;
  width: 40px;
  height: 40px;
  margin: 5px auto;
  border: none;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.7);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea__zoomArea > ul > li > button:hover {
  background-color: #000;
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea__shiftGuideArea {
  list-style: none;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  height: auto;
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea__shiftGuideArea__shiftArea {
  position: relative;
  list-style: none;
  display: block;
  width: 50%;
  height: 120px;
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea__shiftGuideArea__shiftArea__label {
  position: absolute;
  top: 40px;
  left: 40px;
  display: block;
  width: 40px;
  height: 40px;
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  line-height: 40px;
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea__shiftGuideArea__shiftArea__btn {
  position: absolute;
  display: block;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.7);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 22px;
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea__shiftGuideArea__shiftArea__btn:hover {
  background-color: #000;
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea__shiftGuideArea__shiftArea__btn.up {
  top: 0;
  left: 40px;
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea__shiftGuideArea__shiftArea__btn.right {
  top: 40px;
  left: 80px;
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea__shiftGuideArea__shiftArea__btn.down {
  top: 80px;
  left: 40px;
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea__shiftGuideArea__shiftArea__btn.left {
  top: 40px;
  left: 0;
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea__shiftGuideArea__guideArea {
  list-style: none;
  display: block;
  width: 50%;
  height: auto;
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea__shiftGuideArea__guideArea__label {
  width: 100%;
  height: 20px;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  line-height: 20px;
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea__shiftGuideArea__guideArea > button {
  display: block;
  width: 80px;
  height: 80px;
  margin: 5px auto;
  border: none;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 60px;
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea__shiftGuideArea__guideArea > button:hover {
  background-color: #000;
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea__brightnessArea {
  display: block;
  width: 100%;
  height: 100px;
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea__brightnessArea__label {
  display: block;
  width: 100%;
  height: 20px;
  line-height: 20px;
  font-size: 16px;
  text-align: left;
  color: #ffffff;
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea__brightnessArea__content {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  box-sizing: border-box;
  padding: 20px 0 0 0;
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea__brightnessArea__content__value {
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  display: block;
  width: 44px;
  height: 34px;
  line-height: 34px;
  box-sizing: border-box;
  border-radius: 2px;
  background-color: #fff;
  font-size: 16px;
  text-align: center;
  margin: 0 20px;
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea__brightnessArea__content__btn {
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  display: block;
  width: 34px;
  height: 34px;
  box-sizing: border-box;
  border: solid 1px #fff;
  border-radius: 50%;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 80%;
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea__brightnessArea__content__btn:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea > ul {
  list-style: none;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-content: flex-start;
  align-content: flex-start;
  width: 100%;
  height: calc(100% - 100px);
  overflow-x: hidden;
  overflow-y: auto;
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea > ul > li {
  position: relative;
  display: block;
  width: 108px;
  height: 148px;
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea > ul > li.selected .trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea__item {
  border: solid 2px #dd621c;
  background-color: #000;
  color: #ffffff;
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea > ul > li.selected .trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea__checked {
  display: block;
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea__item {
  display: block;
  width: 88px;
  height: 88px;
  margin: 10px;
  border: solid 2px transparent;
  border-radius: 8px;
  background-color: #cccccc;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea__item.effect {
  position: relative;
  display: block;
  width: 98px;
  height: 138px;
  margin: 5px;
  border: solid 2px transparent;
  border-radius: 8px;
  background-color: #cccccc;
  text-align: center;
  font-size: 14px;
  color: #000000;
  padding: 90px 0 0 0;
  box-sizing: border-box;
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea__item.effect > span {
  position: absolute;
  top: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: block;
  width: 78px;
  height: 78px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea__item.effect:hover {
  background-color: #bfbfbf;
}

.trimmingPC__tabArea__posArea__functionTabArea__functionTab__itemArea__checked {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: 20px;
  height: 20px;
  border: solid 2px #fff;
  border-radius: 50%;
  background-color: #dd621c;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
}

.trimmingPC__tabArea__posArea__labelArea {
  width: 140px;
  height: auto;
  position: absolute;
  top: 40px;
  left: -140px;
  padding: 0 0 0 15px;
  box-sizing: border-box;
}

.trimmingPC__tabArea__posArea__labelArea__label {
  display: block;
  width: 100%;
  height: 90px;
  line-height: 44px;
  margin: 0 0 5px 0;
  border: none;
  border-radius: 8px 0 0 8px;
  background-color: rgba(255, 255, 255, 0.4);
  text-align: center;
  font-size: 14px;
  color: #ffffff;
  background-position: center 10px;
  background-repeat: no-repeat;
  background-size: 40px;
  padding: 50px 0 0 0;
  box-sizing: border-box;
}

.trimmingPC__tabArea__posArea__labelArea__label:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.trimmingPC__btnArea {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 140px;
  height: auto;
  position: absolute;
  bottom: 60px;
  right: 0;
}

.trimmingPC__btnArea__btn {
  display: block;
  width: 55px;
  height: 55px;
  margin: 5px;
  border: none;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  background-position: center 5px;
  background-repeat: no-repeat;
  background-size: 26px;
  font-size: 12px;
  color: #ffffff;
  padding: 30px 0 0 0;
  box-sizing: border-box;
}

.trimmingPC__btnArea__btn:hover {
  background-color: #000;
}

.trimmingPC__resetArea {
  width: 120px;
  height: auto;
  position: absolute;
  bottom: 20px;
  right: 15px;
}

.trimmingPC__resetArea > button {
  display: block;
  width: 100%;
  height: 36px;
  border: none;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  background-position: center 5px;
  font-size: 14px;
  color: #ffffff;
  box-sizing: border-box;
}

.trimmingPC__resetArea > button:hover {
  background-color: #000;
}

/*機能タブ調整*/
[data-trim-function-tab-open="trimming"] .trimmingPC__tabArea__posArea__btnArea__btn.trimming {
  background-color: #dd621c;
}

[data-trim-function-tab-open="trimming"] .trimmingPC__tabArea__posArea__functionTabArea {
  display: block;
}

[data-trim-function-tab-open="trimming"] .trimmingPC__tabArea__posArea__functionTabArea__functionTab.trimming {
  display: block;
}

[data-trim-function-tab-open="trimming"] .trimmingPC__tabArea__posArea__labelArea {
  display: none;
}

[data-trim-function-tab-open="effect"] .trimmingPC__tabArea__posArea__btnArea__btn.effect {
  background-color: #dd621c;
}

[data-trim-function-tab-open="effect"] .trimmingPC__tabArea__posArea__functionTabArea {
  display: block;
  height: calc(100% - 40px);
}

[data-trim-function-tab-open="effect"] .trimmingPC__tabArea__posArea__functionTabArea__functionTab.effect {
  display: block;
}

[data-trim-function-tab-open="effect"] .trimmingPC__tabArea__posArea__labelArea {
  display: none;
}

/*タブ調整*/
[data-trim-tab-open="open"] .trimmingPC__tabArea {
  right: 0;
}

@charset "UTF-8";
.trimmingSP__topArea {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding: 10px 10px 10px 2px;
}

.trimmingSP__topArea__button {
  width: 100px;
  height: 30px;
  margin-left: 8px;
  color: #fff;
  font-size: 12px;
  line-height: 1.2;
  background-color: transparent;
  border: 1px solid #e2e2e2;
  white-space: nowrap;
}

.trimmingSP__imgArea {
  width: 96%;
  height: calc(100% - 280px);
  position: relative;
  margin: auto;
  pointer-events: auto;
  background: none;
  background-color: transparent;
  /*警告アイコン*/
  /*ガイドエリア*/
  /*選択エフェクト名エリア*/
}

.trimmingSP__imgArea__imageCanvas {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  background-color: #fff;
  /*画像表示エリア*/
}

.trimmingSP__imgArea__imageCanvas .trimmingAreaRotateA {
  right: auto;
  left: 10px;
  transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
}

.trimmingSP__imgArea__imageCanvas .trimmingAreaRotateB {
  top: auto;
  right: auto;
  bottom: 10px;
  left: 10px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

.trimmingSP__imgArea__imageCanvas .trimmingAreaRotateC {
  top: auto;
  bottom: 10px;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}

.trimmingSP__imgArea__CautionIconArea {
  position: absolute;
  top: 10px;
  width: 24px;
  height: 24px;
}

.trimmingSP__imgArea__CautionIconArea > span.cautionIcon {
  display: block;
  width: inherit;
  height: inherit;
  background-size: contain;
  background-repeat: no-repeat;
}

.trimmingSP__imgArea__guideArea {
  pointer-events: none;
  position: absolute;
  background: none;
  top: 0;
  left: 0;
}

.trimmingSP__imgArea__guideArea > canvas {
  pointer-events: none;
}

.trimmingSP__imgArea__selectEffectNameArea {
  position: absolute;
  top: -50px;
  left: 0;
  display: none;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 12px;
  color: #ffffff;
  text-align: left;
  letter-spacing: -1px;
  white-space: nowrap;
}

.trimmingSP__bottomArea {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  margin-top: 13px;
}

.trimmingSP__tabArea {
  position: relative;
  display: none;
  width: 100%;
  height: 60px;
}

.trimmingSP__tabArea__line {
  position: absolute;
  bottom: 10px;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
}

.trimmingSP__tabArea__btn {
  position: absolute;
  bottom: 10px;
  display: block;
  width: 100px;
  height: 30px;
  line-height: 30px;
  box-sizing: border-box;
  border: solid 1px transparent;
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 14px;
  text-align: center;
}

.trimmingSP__tabArea__btn.effect {
  left: 10px;
}

.trimmingSP__tabArea__btn.brightness {
  left: 115px;
}

.trimmingSP__moveArea {
  width: 42%;
}

.trimmingSP__moveArea__container {
  margin: auto;
}

.trimmingSP__moveArea__container td {
  width: 40px;
  height: 40px;
  padding: 0;
  vertical-align: middle;
  text-align: center;
  box-sizing: border-box;
}

.trimmingSP__moveArea__container td.b-top {
  border-top: 1px solid #303030;
}

.trimmingSP__moveArea__container td.b-bottom {
  border-bottom: 1px solid #303030;
}

.trimmingSP__moveArea__container td.b-left {
  border-left: 1px solid #303030;
}

.trimmingSP__moveArea__container td.b-right {
  border-right: 1px solid #303030;
}

.trimmingSP__moveArea__container__button {
  width: 38px;
  height: 38px;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
  border: none;
}

.trimmingSP__moveArea__container__caption {
  font-size: 12px;
  line-height: 1;
  color: #e2e2e2;
}

.trimmingSP__trimArea {
  width: 58%;
}

.trimmingSP__trimArea__item {
  padding: 5px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.trimmingSP__trimArea__item__button {
  width: 80px;
  height: 36px;
  font-size: 12px;
  border: none;
  background-color: #f2f2f2;
  background-repeat: no-repeat;
}

.trimmingSP__trimArea__item__button:first-of-type {
  border-right: 1px solid #c7c7c7;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.trimmingSP__trimArea__item__button:last-of-type {
  border-left: 1px solid #c7c7c7;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.trimmingSP__trimArea__item__button[name="add1DegBtn"] {
  background-position: -4px center;
  background-size: 26px;
  padding-left: 20px;
}

.trimmingSP__trimArea__item__button[name="sub1DegBtn"] {
  background-position: 9px center;
  background-size: 26px;
  padding-left: 20px;
}

.trimmingSP__trimArea__item__button[name="add90DegBtn"] {
  background-position: -4px center;
  background-size: 32px;
  padding-left: 26px;
}

.trimmingSP__trimArea__item__button[name="sub90DegBtn"] {
  background-position: 9px center;
  background-size: 32px;
  padding-left: 26px;
}

.trimmingSP__trimArea__item__button[name="TrimTab_Zoomout"] {
  background-position: center;
  background-size: 32px;
  padding-left: 26px;
}

.trimmingSP__trimArea__item__button[name="TrimTab_Zoomin"] {
  background-position: center;
  background-size: 32px;
  padding-left: 26px;
}

.trimmingSP__brightnessArea {
  position: relative;
  display: none;
  width: 100%;
  height: 157px;
}

.trimmingSP__brightnessArea__content {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 50px 0 0 0;
}

.trimmingSP__brightnessArea__content__value {
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  display: block;
  width: 44px;
  height: 34px;
  line-height: 34px;
  box-sizing: border-box;
  border-radius: 2px;
  background-color: #fff;
  font-size: 16px;
  text-align: center;
  margin: 0 20px;
}

.trimmingSP__brightnessArea__content__btn {
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  display: block;
  width: 34px;
  height: 34px;
  box-sizing: border-box;
  border: solid 1px #fff;
  border-radius: 50%;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 80%;
}

.trimmingSP__brightnessArea__msg {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  white-space: pre;
  font-size: 10px;
  color: #ffffff;
}

.trimmingSP__effectArea {
  display: none;
  width: 100%;
  height: 157px;
  overflow: auto;
}

.trimmingSP__effectArea__list {
  display: -webkit-flex;
  display: flex;
  float: left;
  width: auto;
  height: 100%;
  padding: 0 6px;
}

.trimmingSP__effectArea__list__item {
  display: block;
  width: auto;
  height: 100%;
  margin: 0 6px;
}

.trimmingSP__effectArea__list__item__imgArea {
  margin: auto;
  display: block;
  width: 90px;
  height: 90px;
  box-sizing: border-box;
  position: relative;
}

.trimmingSP__effectArea__list__item__imgArea > img {
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.trimmingSP__effectArea__list__item__effectName {
  display: block;
  width: 100%;
  height: 20px;
  margin: 7px 0 0 0;
  font-size: 10px;
  text-align: center;
  letter-spacing: -1px;
  color: #ffffff;
}

.trimmingSP__effectArea__list__item.selected .trimmingSP__effectArea__list__item__imgArea {
  border: solid 2px #dd621c;
}

.trimmingSP__decideArea {
  width: 100%;
  margin: 20px 0 16px;
}

.trimmingSP__decideArea__button {
  display: block;
  width: 228px;
  height: 40px;
  margin: auto;
  color: #fff;
  font-size: 16px;
  background-color: rgba(113, 168, 9, 0.8);
  border: 1px solid #fff;
  border-radius: 4px;
}

.trimmingSP__decideArea__button:hover {
  background-color: rgba(80, 120, 6, 0.8);
}

@charset "UTF-8";
/*エフェクト編集画面のcssです。必ずtrimmingSP.cssより後に読み込んでください。*/
.header__effectEditTitle {
  display: none;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  line-height: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.effectEditMode .header__title {
  display: none !important;
}

.effectEditMode .header__effectEditTitle {
  display: block;
}

.effectEditMode .trimmingSP__topArea {
  height: 50px;
  box-sizing: border-box;
}

.effectEditMode .trimmingSP__topArea__button {
  display: none;
}

.effectEditMode .trimmingSP__imgArea {
  height: -webkit-calc(100% - 320px);
  height: calc(100% - 320px);
}

.effectEditMode .trimmingSP__imgArea__selectEffectNameArea {
  display: block;
}

.effectEditMode .trimmingSP__bottomArea {
  margin-top: 0;
  display: -webkit-flex;
  display: flex;
}

.effectEditMode .trimmingSP__bottomArea[data-effect-tab="effect"] .trimmingSP__tabArea__btn.effect {
  border: solid 1px #fff;
  border-bottom: solid 1px #1d1d1d;
  background-color: transparent;
}

.effectEditMode .trimmingSP__bottomArea[data-effect-tab="effect"] .trimmingSP__tabArea, .effectEditMode .trimmingSP__bottomArea[data-effect-tab="effect"] .trimmingSP__effectArea {
  display: block;
}

.effectEditMode .trimmingSP__bottomArea[data-effect-tab="brightness"] .trimmingSP__tabArea__btn.brightness {
  border: solid 1px #fff;
  border-bottom: solid 1px #1d1d1d;
  background-color: transparent;
}

.effectEditMode .trimmingSP__bottomArea[data-effect-tab="brightness"] .trimmingSP__tabArea, .effectEditMode .trimmingSP__bottomArea[data-effect-tab="brightness"] .trimmingSP__brightnessArea {
  display: block;
}

.effectEditMode .trimmingSP__moveArea, .effectEditMode .trimmingSP__trimArea {
  display: none;
}

.effectEditMode .trimmingSP__decideArea {
  margin: 0;
}

@media screen and (max-width: 360px) {
  .effectEditMode .trimmingSP__topArea {
    height: 40px;
  }
  .effectEditMode .trimmingSP__imgArea {
    height: -webkit-calc(100% - 305px);
    height: calc(100% - 305px);
  }
  .effectEditMode .trimmingSP__imgArea__selectEffectNameArea {
    top: -40px;
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
  .effectEditMode .trimmingSP__brightnessArea {
    height: 145px;
  }
  .effectEditMode .trimmingSP__effectArea {
    height: 145px;
  }
  .effectEditMode .trimmingSP__effectArea__list__item__imgArea {
    width: 80px;
    height: 80px;
  }
}

@charset "UTF-8";
.monthSelect__messageArea {
  display: flex;
  width: 100%;
  height: 50px;
  justify-content: center;
  align-items: center;
}

.monthSelect__messageArea > p {
  box-sizing: border-box;
  font-size: 16px;
  text-align: center;
}

.monthSelect__messageArea > p > span {
  font-size: 14px;
}

.monthSelect__contentArea {
  display: block;
  width: 100%;
  height: calc(100% - 50px);
}

.monthSelect__contentArea > ul {
  display: block;
  margin: auto;
  padding-bottom: 70px;
  width: 310px;
  list-style: none;
}

.monthSelect__contentArea > ul > li {
  position: relative;
  background-color: #fff;
  width: 300px;
  height: 60px;
  margin: 0px auto 10px;
  box-sizing: border-box;
  border: solid 1px #cccccc;
  border-radius: 4px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-content: flex-start;
  align-content: flex-start;
  cursor: pointer;
}

.monthSelect__contentArea > ul > li:hover {
  background-color: #e6e6e6;
}

.monthSelect__contentArea > ul > li > p {
  margin: auto;
  vertical-align: middle;
  line-height: 60px;
}

.monthSelect__contentArea .accentuation {
  border: solid 3px #dd621c;
}

@media screen and (min-width: 1024px) {
  .monthSelect__messageArea {
    height: 100px;
    justify-content: flex-start;
  }
  .monthSelect__messageArea > p {
    padding: 0 0 0 40px;
    font-size: 22px;
    text-align: left;
  }
  .monthSelect__messageArea > p::before {
    display: inline;
    content: "▶";
    color: #999999;
    margin: 15px 5px;
  }
  .monthSelect__messageArea > p > span {
    font-size: 16px;
  }
  .monthSelect__contentArea {
    height: calc(100% - 100px);
  }
  .monthSelect__contentArea > ul {
    padding-bottom: 0px;
    width: 600px;
    height: 100%;
    overflow-y: auto;
  }
  .monthSelect__contentArea > ul > li {
    width: 500px;
  }
  .monthSelect__contentArea > ul > li > p {
    font-size: 18px;
  }
}

@charset "UTF-8";
.typeDesignSelect__categoryListArea {
  display: block;
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 100px;
  overflow-x: auto;
  overflow-y: hidden;
  background-color: white;
}

.typeDesignSelect__categoryListArea > ul {
  list-style: none;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  height: 100%;
}

.typeDesignSelect__categoryListArea > ul > li {
  display: block;
  width: 80px;
  height: 100%;
  min-width: 16.66%;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
  background-color: #dee7d1;
}

.typeDesignSelect__categoryListArea > ul > li:first-of-type {
  display: none;
}

.typeDesignSelect__categoryListArea > ul > li.selected {
  background-color: rgba(113, 168, 9, 0.8);
  color: #ffffff;
}

.typeDesignSelect__categoryListArea__category {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.typeDesignSelect__categoryListArea__category__img {
  position: absolute;
  top: 4px;
  left: 10%;
  display: block;
  width: 80%;
  height: -webkit-calc(100% - 45px);
  height: calc(100% - 45px);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.typeDesignSelect__categoryListArea__category__categoryNameArea {
  position: absolute;
  bottom: 5px;
  right: 5%;
  display: block;
  width: 90%;
  height: 34px;
}

.typeDesignSelect__categoryListArea__category__categoryNameArea__pos {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.typeDesignSelect__categoryListArea__category__categoryNameArea__pos__categoryName {
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: inline-block;
  width: 100%;
  height: auto;
  line-height: 16px;
  font-size: 12px;
  text-align: center;
  text-decoration: underline;
}

.typeDesignSelect__contentArea {
  display: block;
  position: absolute;
  top: 100px;
  width: 100%;
  height: calc(100% - 100px);
  box-sizing: border-box;
  padding: 5px 0;
  -webkit-overflow-scrolling: touch;
  overflow: scroll;
}

.typeDesignSelect__contentArea > ul {
  list-style: none;
  display: block;
  width: 100%;
  height: auto;
}

.typeDesignSelect__contentArea > ul > li {
  display: block;
  width: 100%;
  height: auto;
}

.typeDesignSelect__contentArea__categoryLabelArea {
  display: none;
  width: 100%;
  height: 50px;
}

.typeDesignSelect__contentArea__categoryLabelArea__categoryName {
  display: block;
  width: 190px;
  height: 100%;
  line-height: 50px;
  font-size: 18px;
  font-weight: bold;
  box-sizing: border-box;
  padding: 0 0 0 20px;
}

.typeDesignSelect__contentArea__categoryLabelArea__hr {
  display: block;
  width: calc(100% - (190px + 20px));
  height: 2px;
  background-color: rgba(113, 168, 9, 0.8);
  margin: 24px 0 0 0;
}

.typeDesignSelect__contentArea__categorySeparatorArea {
  display: none;
  width: 100%;
  height: 20px;
}

.typeDesignSelect__contentArea__categorySeparatorArea__hr {
  display: block;
  width: calc(100% - (112px));
  height: 1px;
  background-color: rgba(113, 168, 9, 0.8);
  margin: 0 0 0 56px;
}

.typeDesignSelect__contentArea__categoryItemArea {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.typeDesignSelect__contentArea__categoryItemArea__typeLabelArea {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  padding-bottom: 5px;
}

.typeDesignSelect__contentArea__categoryItemArea__typeLabelArea__hr {
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: rgba(113, 168, 9, 0.8);
  margin: 10px 20px;
}

.typeDesignSelect__contentArea__categoryItemArea__typeLabelArea__img {
  display: block;
  width: 130px;
  height: 90px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.typeDesignSelect__contentArea__categoryItemArea__typeLabelArea__textArea {
  display: -webkit-flex;
  display: flex;
  width: calc(100% - 150px);
  height: 100%;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin: 15px 0 0 0;
}

.typeDesignSelect__contentArea__categoryItemArea__typeLabelArea__textArea__typeNameArea {
  display: block;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  padding: 0 10px 0 0;
}

.typeDesignSelect__contentArea__categoryItemArea__typeLabelArea__textArea__typeNameArea__typeName {
  display: inline-block;
  width: 100%;
  height: auto;
  font-size: 14px;
  font-weight: bold;
}

.typeDesignSelect__contentArea__categoryItemArea__typeLabelArea__textArea__typeNameArea__subTypeName {
  display: -webkit-inline-flex;
  display: inline-flex;
  width: 100%;
  height: auto;
  font-size: 10px;
  word-break: keep-all;
  white-space: nowrap;
  box-sizing: border-box;
  padding: 0 0 0 5px;
}

.typeDesignSelect__contentArea__categoryItemArea__typeLabelArea__textArea__typeNameArea__subTypeName::before {
  content: attr(delimiter-before);
  display: block;
  width: 5px;
  height: 100%;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.typeDesignSelect__contentArea__categoryItemArea__typeLabelArea__textArea__typeNameArea__subTypeName::after {
  content: attr(delimiter-after);
  display: block;
  width: 5px;
  height: 100%;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.typeDesignSelect__contentArea__categoryItemArea__typeLabelArea__textArea__price {
  display: -webkit-inline-flex;
  display: inline-flex;
  width: auto;
  height: 20px;
  line-height: 20px;
  font-size: 14px;
  font-weight: bold;
  text-align: right;
  word-break: keep-all;
  box-sizing: border-box;
  padding: 0 0 0 10px;
  color: #dd621c;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-self: flex-end;
  align-self: flex-end;
}

.typeDesignSelect__contentArea__categoryItemArea__typeLabelArea__textArea__price.discount {
  text-decoration: line-through;
  padding: 0 5px;
  color: #444444;
  font-size: 12px;
  font-weight: normal;
}

.typeDesignSelect__contentArea__categoryItemArea__typeLabelArea__textArea__price.discount::after {
  content: "→";
  display: block;
  width: 16px;
  height: 100%;
  text-align: right;
  color: #444444;
  font-size: 10px;
  font-weight: normal;
}

.typeDesignSelect__contentArea__categoryItemArea__typeLabelArea__textArea__discountPrice {
  display: -webkit-inline-flex;
  display: inline-flex;
  width: auto;
  height: auto;
  font-size: 14px;
  font-weight: bold;
  text-align: right;
  word-break: keep-all;
  box-sizing: border-box;
  padding: 10px 10px 0 0;
  color: #dd621c;
}

.typeDesignSelect__contentArea__categoryItemArea > ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-content: flex-start;
  align-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: auto;
  width: 350px;
  list-style: none;
}

.typeDesignSelect__contentArea__categoryItemArea > ul > li {
  display: block;
  width: 175px;
  height: 175px;
  box-sizing: border-box;
  padding: 5px;
}

.typeDesignSelect__contentArea__categoryItemArea__item {
  position: relative;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  border: solid 1px #cccccc;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
}

.typeDesignSelect__contentArea__categoryItemArea__item:hover {
  background-color: #e6e6e6;
}

.typeDesignSelect__contentArea__categoryItemArea__item__img {
  position: absolute;
  top: 7px;
  left: 10%;
  display: block;
  width: 80%;
  height: -webkit-calc(100% - 54px);
  height: calc(100% - 54px);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.typeDesignSelect__contentArea__categoryItemArea__item__itemNameArea {
  position: absolute;
  bottom: 7px;
  left: 10%;
  display: block;
  width: 80%;
  height: 34px;
}

.typeDesignSelect__contentArea__categoryItemArea__item__itemNameArea__pos {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.typeDesignSelect__contentArea__categoryItemArea__item__itemNameArea__pos__itemName {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: inline-block;
  width: 100%;
  height: auto;
  line-height: 16px;
  font-size: 12px;
  text-align: center;
}

.typeDesignSelect__contentArea__categoryItemArea__item__multiplePhotoIcn {
  position: absolute;
  top: 1px;
  right: 1px;
  display: block;
  width: 36px;
  height: 36px;
  background-image: url("../content/commons/img/icon_ Multipics_jp.png");
  background-size: cover;
}

.typeDesignSelect__contentArea__scrollTopArea {
  height: 100px;
}

.typeDesignSelect__scrollTopArea {
  width: 100%;
  height: 50px;
  position: fixed;
  bottom: 60px;
  pointer-events: none;
}

.typeDesignSelect__scrollTopArea a {
  background: no-repeat center;
  position: absolute;
  width: 50px;
  height: 100%;
  right: 30px;
  background-color: rgba(113, 168, 9, 0.8);
  pointer-events: auto;
}

@media screen and (max-width: 360px) {
  .typeDesignSelect__categoryListArea {
    height: 80px;
  }
  .typeDesignSelect__categoryListArea > ul > li {
    width: 50px;
  }
  .typeDesignSelect__categoryListArea__category__img {
    height: -webkit-calc(100% - 40px);
    height: calc(100% - 40px);
  }
  .typeDesignSelect__categoryListArea__category__categoryNameArea {
    height: 26px;
  }
  .typeDesignSelect__categoryListArea__category__categoryNameArea__pos__categoryName {
    line-height: 12px;
    font-size: 10px;
  }
  .typeDesignSelect__contentArea {
    top: 80px;
    height: calc(100% - 80px);
  }
  .typeDesignSelect__contentArea__categoryItemArea__typeLabelArea__textArea__typeNameArea__typeName {
    font-size: 12px;
  }
  .typeDesignSelect__contentArea__categoryItemArea__typeLabelArea__textArea__price {
    font-size: 12px;
  }
  .typeDesignSelect__contentArea__categoryItemArea__typeLabelArea__textArea__price.discount {
    font-size: 10px;
  }
  .typeDesignSelect__contentArea__categoryItemArea__typeLabelArea__textArea__price.discount::after {
    width: 16px;
  }
  .typeDesignSelect__contentArea__categoryItemArea__typeLabelArea__textArea__discountPrice {
    font-size: 12px;
  }
  .typeDesignSelect__contentArea__categoryItemArea > ul {
    width: 310px;
  }
  .typeDesignSelect__contentArea__categoryItemArea > ul > li {
    width: 155px;
    height: 155px;
  }
  .typeDesignSelect__contentArea__categoryItemArea__item__img {
    height: calc(100% - 46px);
  }
  .typeDesignSelect__contentArea__categoryItemArea__item__itemNameArea {
    height: 26px;
  }
  .typeDesignSelect__contentArea__categoryItemArea__item__itemNameArea__pos__itemName {
    line-height: 12px;
    font-size: 10px;
  }
}

@media screen and (min-width: 720px) {
  .typeDesignSelect__categoryListArea {
    height: 140px;
  }
  .typeDesignSelect__categoryListArea__category__img {
    top: 10px;
    left: 10%;
    width: 80%;
    height: calc(100% - 65px);
  }
  .typeDesignSelect__categoryListArea__category__categoryNameArea {
    bottom: 10px;
    height: 40px;
  }
  .typeDesignSelect__categoryListArea__category__categoryNameArea__pos__categoryName {
    line-height: 18px;
    font-size: 14px;
  }
  .typeDesignSelect__contentArea {
    top: 140px;
    height: calc(100% - 140px);
    padding: 10px 0;
  }
  .typeDesignSelect__contentArea__categoryItemArea__item__img {
    height: -webkit-calc(100% - 60px);
    height: calc(100% - 60px);
  }
  .typeDesignSelect__contentArea__categoryItemArea__item__itemNameArea {
    height: 40px;
  }
  .typeDesignSelect__contentArea__categoryItemArea__item__itemNameArea__pos__itemName {
    line-height: 18px;
    font-size: 14px;
  }
}

@media screen and (min-width: 535px) {
  .typeDesignSelect__contentArea__categoryItemArea > ul {
    width: 525px;
  }
}

@media screen and (min-width: 710px) {
  .typeDesignSelect__contentArea__categoryItemArea > ul {
    width: 700px;
  }
}

@media screen and (min-width: 885px) {
  .typeDesignSelect__contentArea__categoryItemArea > ul {
    width: 875px;
  }
}

@media screen and (min-width: 1024px) {
  .content__contentArea.typeDesignSelect {
    display: -webkit-flex;
    display: flex;
  }
  .typeDesignSelect__categoryListArea {
    position: relative;
    width: 300px;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .typeDesignSelect__categoryListArea > ul {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: 100%;
  }
  .typeDesignSelect__categoryListArea > ul > li {
    width: 100%;
    height: 80px;
    cursor: pointer;
    -webkit-flex: 1;
    flex: 1;
  }
  .typeDesignSelect__categoryListArea > ul > li:first-of-type {
    display: block;
  }
  .typeDesignSelect__categoryListArea > ul > li:nth-of-type(odd) {
    background-color: #dee7d1;
  }
  .typeDesignSelect__categoryListArea > ul > li:nth-of-type(odd).selected {
    background-color: rgba(113, 168, 9, 0.8);
  }
  .typeDesignSelect__categoryListArea > ul > li:nth-of-type(even) {
    background-color: #eef3ea;
  }
  .typeDesignSelect__categoryListArea > ul > li:nth-of-type(even).selected {
    background-color: rgba(113, 168, 9, 0.8);
  }
  .typeDesignSelect__categoryListArea > ul > li:hover {
    background-color: rgba(113, 168, 9, 0.3);
  }
  .typeDesignSelect__categoryListArea__category__img {
    top: 10px;
    left: 20px;
    width: calc(40% - 10px);
    height: calc(100% - 20px);
  }
  .typeDesignSelect__categoryListArea__category__categoryNameArea {
    bottom: 10px;
    right: 10px;
    width: calc(60% - 30px);
    height: calc(100% - 20px);
  }
  .typeDesignSelect__categoryListArea__category__categoryNameArea__pos__categoryName {
    line-height: 22px;
    font-size: 18px;
    text-align: left;
  }
  .typeDesignSelect__contentArea {
    position: relative;
    top: 0;
    width: calc(100% - 300px);
    height: 100%;
    padding: 10px 0;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .typeDesignSelect__contentArea__categoryLabelArea {
    display: -webkit-flex;
    display: flex;
  }
  .typeDesignSelect__contentArea__categorySeparatorArea {
    display: -webkit-flex;
    display: flex;
  }
  .typeDesignSelect__contentArea__categorySeparatorArea:last-child {
    display: none;
  }
  .typeDesignSelect__contentArea__categoryItemArea {
    display: -webkit-flex;
    display: flex;
  }
  .typeDesignSelect__contentArea__categoryItemArea__typeLabelArea {
    width: 270px;
    height: 175px;
    flex-wrap: nowrap;
  }
  .typeDesignSelect__contentArea__categoryItemArea__typeLabelArea__hr {
    display: none;
  }
  .typeDesignSelect__contentArea__categoryItemArea__typeLabelArea__img {
    width: calc(100% - 150px);
    height: calc(100% - 40px);
    margin: 20px 0 20px 30px;
  }
  .typeDesignSelect__contentArea__categoryItemArea__typeLabelArea__textArea {
    display: block;
    width: 150px;
    height: 100%;
    box-sizing: border-box;
    padding: 45px 0 0 0;
    margin: 0;
  }
  .typeDesignSelect__contentArea__categoryItemArea__typeLabelArea__textArea__typeNameArea {
    display: block;
    width: 100%;
    height: auto;
    line-height: normal;
    padding: 0;
    text-align: center;
  }
  .typeDesignSelect__contentArea__categoryItemArea__typeLabelArea__textArea__typeNameArea__typeName {
    font-size: 18px;
  }
  .typeDesignSelect__contentArea__categoryItemArea__typeLabelArea__textArea__typeNameArea__subTypeName {
    display: block;
    width: 100%;
    height: 40px;
    font-size: 14px;
    padding: 0;
    word-break: break-word;
    white-space: normal;
  }
  .typeDesignSelect__contentArea__categoryItemArea__typeLabelArea__textArea__typeNameArea__subTypeName::before, .typeDesignSelect__contentArea__categoryItemArea__typeLabelArea__textArea__typeNameArea__subTypeName::after {
    display: none;
  }
  .typeDesignSelect__contentArea__categoryItemArea__typeLabelArea__textArea__price {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    height: 24px;
    line-height: 28px;
    padding: 0;
    font-size: 18px;
    text-align: center;
  }
  .typeDesignSelect__contentArea__categoryItemArea__typeLabelArea__textArea__price.discount {
    padding: 0;
    font-size: 14px;
  }
  .typeDesignSelect__contentArea__categoryItemArea__typeLabelArea__textArea__discountPrice {
    display: block;
    width: 100%;
    height: 24px;
    line-height: 24px;
    padding: 0;
    font-size: 18px;
    text-align: center;
  }
  .typeDesignSelect__contentArea__categoryItemArea > ul {
    width: calc(100% - 270px);
  }
  .typeDesignSelect__scrollTopArea {
    bottom: 138px;
  }
}

@charset "UTF-8";
/*説明エリア*/
.description-area {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: fixed;
  top: 44px;
  width: 100%;
  height: 60px;
  background-color: transparent;
  z-index: 1;
}

.select-description {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  height: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

.select-description > p {
  font-size: .8rem;
  line-height: 1.4;
}

.select-info {
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  height: 100%;
  padding-right: 10px;
  box-sizing: border-box;
}

.select-info-counts {
  text-align: center;
  font-size: 1.0rem;
  line-height: 1.4;
  white-space: nowrap;
}

.select-info-namelabel {
  text-align: center;
  font-size: .8rem;
  line-height: 1.4;
  white-space: nowrap;
}

@media screen and (max-width: 320px) {
  body.osMac .select-info {
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  body.osMac .select-description > p {
    font-size: .7rem;
  }
  body.osMac .select-info-counts {
    font-size: .9rem;
  }
  body.osMac .select-info-namelabel {
    font-size: .7rem;
  }
}

.select-buttons {
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 0 0 175px;
  flex: 0 0 175px;
  width: 100%;
  height: 100%;
  padding: 8px 3px;
  box-sizing: border-box;
}

.select-buttons-area {
  display: block;
  width: 100%;
}

.allselect-button,
.allcancel-button {
  width: 50px;
  height: 44px;
  font-size: 8px;
  padding: 27px 2px 2px;
  background-color: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  background-position: center 16%;
  background-repeat: no-repeat;
  background-size: 27px;
}

/*.allselect-button {
    background-image: url('../Content/commons/svg/icon_selectpage.svg');
}

.allcancel-button {
    background-image: url('../Content/commons/svg/icon_cancelpage.svg');
}*/
.addpicture-button-area {
  display: inline-block;
  position: relative;
}

.addpicture-button-area > input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.addpicture-button,
.displayallselect-button,
.displayallcancel-button {
  width: 50px;
  height: 44px;
  font-size: 8px;
  padding: 27px 2px 2px;
  background-color: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  background-position: center 16%;
  background-repeat: no-repeat;
  background-size: 27px;
}

/*.addpicture-button {
    background-image: url('../Content/commons/svg/icon_addNewPicture.svg');
}

.displayallselect-button {
    background-image: url('../Content/commons/svg/icon_selectpage.svg');
}

.displayallcancel-button {
    background-image: url('../Content/commons/svg/icon_cancelpage.svg');
}*/
/* 画像エリア */
.imageselect-contents {
  display: block;
  position: absolute;
  top: 60px;
  width: 100%;
  height: -webkit-calc(100% - 60px);
  height: calc(100% - 60px);
}

/*すすむボタンエリア*/
.next-area {
  display: block;
  position: fixed;
  z-index: 200;
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 45px;
  bottom: 64px;
  box-shadow: 0px -1px 6px rgba(0, 0, 0, 0.2);
}

.next-button {
  display: block;
  margin: 5px auto;
  width: 200px;
  height: 30px;
  font-size: 16px;
  color: #fff;
  background-color: #ccc;
  background-position: 96% center;
  background-repeat: no-repeat;
  background-size: 15px;
  border: 0px;
  border-radius: 4px;
}

.next-button {
  background-color: rgba(113, 168, 9, 0.8);
}

.next-button:disabled {
  background-color: rgba(149, 152, 154, 0.5);
}

.next-button:hover {
  background-color: rgba(97, 144, 8, 0.8);
}

/* Uploading */
.uploading-indicator-layer {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 13000;
}

.uploading-indicator-count {
  color: #fff;
  font-size: 17px;
  line-height: 2;
  font-weight: 600;
  text-align: center;
}

.uploading-indicator-cancel {
  width: 128px;
  height: 32px;
  margin-top: 44px;
  color: #fff;
  font-size: 13px;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 4px;
}

@media screen and (min-width: 1024px) {
  .description-area {
    top: 50px;
  }
  .select-description {
    padding-left: 24px;
    padding-top: 24px;
    -webkit-align-items: flex-end;
    align-items: flex-end;
  }
  .select-description > p::before {
    display: inline;
    content: "▶";
    color: #999999;
    margin: 15px 5px;
  }
  .select-description > p {
    font-size: 18px;
  }
  .select-info {
    -webkit-align-items: flex-end;
    align-items: flex-end;
    padding-right: 24px;
  }
  .select-info-counts {
    font-size: 18px;
  }
  .select-info-namelabel {
    font-size: 14px;
  }
  .select-buttons {
    -webkit-flex: 0 0 209px;
    flex: 0 0 209px;
    margin-right: 24px;
    padding: 8px 0 8px 3px;
  }
  .addpicture-button,
  .displayallselect-button,
  .displayallcancel-button {
    width: 65px;
    height: 52px;
    font-size: 12px;
    padding: 31px 2px 2px;
    background-size: 30px;
  }
  .next-area {
    display: none;
  }
  .imageselect-contents {
    top: 110px;
    height: -webkit-calc(100% - 110px);
    height: calc(100% - 110px);
  }
}
