@charset "UTF-8";
html, body {
  width: 100%;
  min-width: 320px;
  height: 100%;
  min-height: 450px;
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Meiryo", "メイリオ", "sans-serif";
  color: #444444;
  background-repeat: repeat;
}

button {
  cursor: pointer;
  outline: none;
}

.hidden {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

.disable {
  opacity: 0.3 !important;
  pointer-events: none !important;
}

nav {
  transition: 0.25s;
  position: fixed;
  z-index: 300;
  top: 44px;
  right: -200px;
  display: block;
  width: 200px;
  height: -webkit-calc(100% - 44px);
  height: calc(100%- 44px);
  background-color: #fff;
}

nav > ul {
  display: block;
}

nav > ul > li {
  display: block;
  width: 100%;
  height: 28px;
  margin: 9px 0;
  box-sizing: border-box;
}

nav > ul > li > a {
  display: block;
  margin: auto;
  width: 70%;
  height: 100%;
  font-size: 14px;
  color: #000;
  text-decoration: none;
  text-align: left;
  line-height: 20px;
}

nav > ul > li > a:hover {
  font-weight: bold;
}

nav > ul > li .small {
  font-size: 10px;
  line-height: 16px;
}

nav > ul > li .hr {
  border-top: 1px solid #e2e2e2;
  margin: 0;
  height: 0;
}

nav[data-nav-open="open"] {
  right: 0;
}

@media screen and (min-width: 1024px) {
  nav {
    display: none;
  }
  nav[data-nav-open="open"] {
    display: none;
  }
}

.popup-layer {
  visibility: hidden;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all .2s ease;
  z-index: 13000;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.popup-layer.popup-visible {
  opacity: 1;
  visibility: visible;
}

.popupContent {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  width: 94%;
  max-width: 500px;
  min-height: 80px;
  max-height: 100%;
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 4px;
}

.popupContent__title {
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  position: relative;
  width: 100%;
  height: 32px;
  font-size: 14px;
  color: #fff;
  line-height: 32px;
  text-align: center;
  background-color: rgba(113, 168, 9, 0.8);
  border-radius: 3px 3px 0 0 / 3px 3px 0 0;
}

.popupContent__title > span {
  display: none;
}

.popupContent__contentArea {
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-items: stretch;
  justify-items: stretch;
  min-height: 60px;
  max-height: 100%;
  padding: 0 10px;
}

.popupContent__contentArea__topMsg {
  margin: 10px 0;
  font-size: 14px;
  line-height: 16px;
  text-align: left;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.popupContent__contentArea__topMsg .emphasis {
  color: #dd621c;
  font-weight: bold;
}

.popupContent__contentArea__frame {
  pointer-events: none;
  width: 100%;
  text-align: center;
  border: 1px dashed #e2e2e2;
  padding: 10px;
  box-sizing: border-box;
}

.popupContent__contentArea__frame > img {
  display: block;
  max-width: 100%;
  max-height: 160px;
  margin: auto;
}

.popupContent__contentArea__bottomMsg {
  margin: 10px 0 0 0;
  font-size: 13px;
  line-height: 15px;
  text-align: left;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.popupContent__contentArea__iframeFrame {
  width: 100%;
  height: 275px;
  margin: 20px 0 0 0;
  text-align: center;
  border: 1px dashed #e2e2e2;
  padding: 10px;
  box-sizing: border-box;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  display: inline-block;
}

.popupContent__contentArea__iframeFrame > iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.popupContent__contentArea__saveBtnArea {
  text-align: right;
}

.popupContent__contentArea__saveBtnArea > button {
  margin-top: 10px;
  border-radius: 4px;
  background-color: rgba(113, 168, 9, 0.8);
  border: none;
  font-size: 16px;
  width: 160px;
  color: #fff;
}

.popupContent__contentArea__saveBtnArea > button:hover {
  background-color: rgba(80, 120, 6, 0.8);
}

.popupContent__contentArea__buttonArea {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 50px 0 10px;
}

.popupContent__contentArea__buttonArea > button {
  width: 200px;
  height: 70px;
  margin-top: 10px;
  margin-left: 30px;
  margin-right: 30px;
  border-radius: 8px;
  background-color: rgba(113, 168, 9, 0.8);
  border: none;
  font-size: 20px;
  color: #fff;
}

.popupContent__contentArea__buttonArea > button:hover {
  background-color: rgba(80, 120, 6, 0.8);
}

.popupContent__contentArea__buttonArea > button.batchObjectFit_contain, .popupContent__contentArea__buttonArea > button.batchObjectFit_cover {
  background-position: center 10px;
  background-repeat: no-repeat;
  background-size: auto 130px;
  height: 200px;
  box-sizing: border-box;
  padding: 130px 0 0 0;
  line-height: 20px;
}

.popupContent__contentArea__buttonArea > button.batchObjectFit_contain.selected, .popupContent__contentArea__buttonArea > button.batchObjectFit_cover.selected {
  background-color: #dd621c;
}

.popupContent__contentArea__buttonArea > button.batchObjectFit_contain > span, .popupContent__contentArea__buttonArea > button.batchObjectFit_cover > span {
  font-size: 14px;
}

.popupContent__contentArea__buttonArea > button.allEffect_OFF.selected, .popupContent__contentArea__buttonArea > button.allEffect_ON.selected {
  background-color: #dd621c;
}

.popupContent__buttonsArea {
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-top: 20px;
  border-top: 1px solid #eaeaea;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  padding: 14px 0;
}

.popupContent__buttonsArea__button {
  width: 122px;
  height: 40px;
  font-size: 14px;
  background-color: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 3px;
}

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

.popupContent__loginArea {
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-items: stretch;
  justify-items: stretch;
  min-height: 60px;
  max-height: 100%;
  padding: 0 16px;
  overflow-x: hidden;
  overflow-y: auto;
}

.popupContent__loginArea .userAuthenticationOperationArea {
  width: 100%;
  padding: 16px;
  padding-top: 3px;
  margin-top: 5px;
  margin-bottom: 5px;
  background-color: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  box-sizing: border-box;
  box-shadow: 0px 0px 2px 2px #eee;
  display: table;
}

.popupContent__loginArea .userAuthenticationOperationArea .inputLabelText {
  display: inline-block;
  font-size: 11px;
  margin-top: 12px;
}

.popupContent__loginArea .userAuthenticationOperationArea .nomenuHeaderText {
  display: inline-block;
  width: 100%;
  height: 40px;
  padding: 3px 6px;
  margin-top: 3px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-sizing: border-box;
}

.popupContent__loginArea .userAuthenticationOperationArea .forgotPasswordZone {
  margin-top: 16px;
}

.popupContent__loginArea .userAuthenticationOperationArea .forgotPasswordZone #forgotPasswordButton {
  font-size: 11px;
  color: #2271e8;
}

.popupContent__loginArea .userAuthenticationOperationArea .loginButtonZone {
  width: 228px;
  height: 40px;
  margin: 10px auto 0;
}

.popupContent__loginArea .userAuthenticationOperationArea .loginButtonZone .loginButton {
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 16px;
  background-color: #3177E0;
  border-radius: 4px;
}

.popupContent__loginArea .firstUseOperationArea {
  width: 100%;
  padding: 16px;
  padding-top: 3px;
  margin-top: 5px;
  margin-bottom: 5px;
  background-color: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  box-sizing: border-box;
  box-shadow: 0px 0px 2px 2px #eee;
  display: table;
}

.popupContent__loginArea .firstUseOperationArea .firstUseCaptionZone {
  font-size: 13px;
  font-weight: normal;
  text-align: center;
  margin-top: 10px;
}

.popupContent__loginArea .firstUseOperationArea .firstUseMessageZone {
  font-size: 11px;
  margin-top: 10px;
  line-height: 1.4;
}

.popupContent__loginArea .firstUseOperationArea .firstUseMessageZone .firstUseOperationText {
  margin: 14px auto 0;
}

.popupContent__loginArea .firstUseOperationArea .firstUseMessageZone .firstUseOperationText .firstUseOperationButton {
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 16px;
  background-color: #DD621C;
  border-radius: 4px;
}

.popupContent__loginArea .firstUseOperationArea .firstUseButtonZone {
  width: 228px;
  height: 40px;
  margin: 10px auto 0;
}

.popupContent__loginArea .firstUseOperationArea .firstUseButtonZone .firstUseButton {
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 16px;
  background-color: #DD621C;
  border-radius: 4px;
}

.saveDataSelectArea {
  width: 100%;
  max-height: 260px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.saveDataSelectArea > 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;
}

.saveDataSelectArea > ul > li {
  position: relative;
  margin: 5px;
  background-color: #fff;
  width: 270px;
  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;
}

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

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

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

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

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

@media screen and (min-width: 1024px) {
  .popupContent {
    max-width: 800px;
    border-radius: 10px;
  }
  .popupContent__title {
    margin-top: 14px;
    padding: 0 0 0 54px;
    box-sizing: border-box;
    height: 30px;
    line-height: 34px;
    font-size: 24px;
    font-weight: normal;
    color: #444444;
    text-align: left;
    background-color: #fff;
  }
  .popupContent__title > span {
    position: absolute;
    top: 0;
    left: 14px;
    display: block;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
  }
  .popupContent__contentArea {
    width: calc(100% - 68px);
    min-height: 200px;
    margin: 10px 16px;
    background-color: rgba(186, 241, 248, 0.3);
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding-bottom: 8px;
  }
  .popupContent__contentArea__topMsg {
    font-size: 20px;
    line-height: 24px;
    text-align: left;
    margin: 20px 14px 0 14px;
  }
  .popupContent__contentArea__frame {
    margin: 10px 0 10px 14px;
    width: calc(100% - 28px);
    min-height: 150px;
    background-color: white;
  }
  .popupContent__contentArea__frame > img {
    max-height: 200px;
    background-color: white;
  }
  .popupContent__contentArea__bottomMsg {
    font-size: 16px;
    line-height: 20px;
    text-align: left;
    margin: 0px 14px 0 14px;
  }
  .popupContent__contentArea__iframeFrame {
    margin: 10px 0 10px 14px;
    width: calc(100% - 28px);
  }
  .popupContent__contentArea__saveBtnArea {
    margin: 0px 0 0px 14px;
    width: calc(100% - 28px);
  }
  .popupContent__contentArea__saveBtnArea > button {
    border-radius: 8px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    font-size: 20px;
    width: 220px;
  }
  .popupContent__buttonsArea {
    border-radius: 0 0 10px 10px / 0 0 10px 10px;
    background-color: rgba(113, 168, 9, 0.8);
  }
  .popupContent__buttonsArea__button {
    font-size: 20px;
    color: #fff;
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 8px;
  }
  .popupContent__buttonsArea__button:hover {
    background-color: rgba(80, 120, 6, 0.8);
  }
  .popupContent__loginArea {
    width: calc(100% - 68px);
    min-height: 200px;
    margin: 10px 16px;
    background-color: rgba(186, 241, 248, 0.3);
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
  }
  .popupContent__loginArea .userAuthenticationOperationArea .inputLabelText {
    font-size: 16px;
  }
  .popupContent__loginArea .firstUseOperationArea .firstUseCaptionZone {
    font-size: 16px;
    text-align: left;
  }
  .popupContent__loginArea .firstUseOperationArea .firstUseMessageZone {
    font-size: 13px;
  }
  .saveDataSelectArea > ul {
    width: 580px;
  }
}

@media screen and (max-height: 600px) {
  .popupContent__contentArea__iframeFrame {
    height: 275px;
  }
}

@media screen and (min-height: 601px) and (max-height: 700px) {
  .popupContent__contentArea__iframeFrame {
    height: 375px;
  }
}

@media screen and (min-height: 701px) {
  .popupContent__contentArea__iframeFrame {
    height: 475px;
  }
}

.popupContent.typeDesignConfirmPopupContent {
  max-width: 94%;
}

.popupContent__typeDesignConfirmTopArea {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  padding: 16px 16px 10px 16px;
}

.popupContent__typeDesignConfirmTopArea__typeName {
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  display: block;
  width: 100%;
  min-height: 20px;
  height: auto;
  line-height: 20px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}

.popupContent__typeDesignConfirmTopArea__typeName > span {
  font-size: 12px;
  font-weight: normal;
}

.popupContent__typeDesignConfirmTopArea__price {
  display: -webkit-inline-flex;
  display: inline-flex;
  width: auto;
  height: 20px;
  line-height: 20px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  color: #dd621c;
}

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

.popupContent__typeDesignConfirmTopArea__price.discount::after {
  content: "→";
  display: block;
  width: 20px;
  height: 20px;
  font-size: 10px;
}

.popupContent__typeDesignConfirmTopArea__discountPrice {
  display: inline-block;
  width: auto;
  height: 20px;
  line-height: 20px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  color: #dd621c;
}

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

.popupContent__typeDesignConfirmContentArea__designNameArea {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  width: 100%;
  height: 24px;
  line-height: 24px;
}

.popupContent__typeDesignConfirmContentArea__designNameArea__label {
  font-size: 10px;
}

.popupContent__typeDesignConfirmContentArea__designNameArea__designName {
  font-size: 14px;
  font-weight: bold;
}

.popupContent__typeDesignConfirmContentArea__frame {
  position: relative;
  display: block;
  width: 100%;
  height: 320px;
  border: 1px dashed #e2e2e2;
  box-sizing: border-box;
  overflow: hidden;
}

.popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea {
  position: absolute;
  bottom: 5px;
  display: block;
  width: 100%;
  height: 20px;
  pointer-events: none;
}

.popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea__position {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
}

.popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea > ul {
  list-style: none;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea > ul > li {
  display: block;
  width: 16px;
  height: 12px;
  box-sizing: border-box;
  padding: 1px 3px;
}

.popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea > ul > li:first-of-type .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea__position {
  background-color: rgba(113, 168, 9, 0.8);
}

.popupContent__typeDesignConfirmContentArea__frame > ul {
  position: absolute;
  top: 0;
  list-style: none;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  /*スワイプイメージ切替*/
}

.popupContent__typeDesignConfirmContentArea__frame > ul + .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea > ul > li .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea__position {
  background-color: rgba(0, 0, 0, 0.2);
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page1 {
  left: 0%;
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page1 + .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea > ul > li:nth-child(1) .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea__position {
  background-color: rgba(113, 168, 9, 0.8);
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page2 {
  left: -100%;
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page2 + .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea > ul > li:nth-child(2) .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea__position {
  background-color: rgba(113, 168, 9, 0.8);
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page3 {
  left: -200%;
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page3 + .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea > ul > li:nth-child(3) .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea__position {
  background-color: rgba(113, 168, 9, 0.8);
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page4 {
  left: -300%;
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page4 + .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea > ul > li:nth-child(4) .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea__position {
  background-color: rgba(113, 168, 9, 0.8);
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page5 {
  left: -400%;
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page5 + .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea > ul > li:nth-child(5) .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea__position {
  background-color: rgba(113, 168, 9, 0.8);
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page6 {
  left: -500%;
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page6 + .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea > ul > li:nth-child(6) .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea__position {
  background-color: rgba(113, 168, 9, 0.8);
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page7 {
  left: -600%;
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page7 + .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea > ul > li:nth-child(7) .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea__position {
  background-color: rgba(113, 168, 9, 0.8);
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page8 {
  left: -700%;
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page8 + .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea > ul > li:nth-child(8) .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea__position {
  background-color: rgba(113, 168, 9, 0.8);
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page9 {
  left: -800%;
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page9 + .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea > ul > li:nth-child(9) .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea__position {
  background-color: rgba(113, 168, 9, 0.8);
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page10 {
  left: -900%;
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page10 + .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea > ul > li:nth-child(10) .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea__position {
  background-color: rgba(113, 168, 9, 0.8);
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page11 {
  left: -1000%;
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page11 + .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea > ul > li:nth-child(11) .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea__position {
  background-color: rgba(113, 168, 9, 0.8);
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page12 {
  left: -1100%;
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page12 + .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea > ul > li:nth-child(12) .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea__position {
  background-color: rgba(113, 168, 9, 0.8);
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page13 {
  left: -1200%;
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page13 + .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea > ul > li:nth-child(13) .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea__position {
  background-color: rgba(113, 168, 9, 0.8);
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page14 {
  left: -1300%;
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page14 + .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea > ul > li:nth-child(14) .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea__position {
  background-color: rgba(113, 168, 9, 0.8);
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page15 {
  left: -1400%;
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page15 + .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea > ul > li:nth-child(15) .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea__position {
  background-color: rgba(113, 168, 9, 0.8);
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page16 {
  left: -1500%;
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page16 + .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea > ul > li:nth-child(16) .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea__position {
  background-color: rgba(113, 168, 9, 0.8);
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page17 {
  left: -1600%;
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page17 + .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea > ul > li:nth-child(17) .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea__position {
  background-color: rgba(113, 168, 9, 0.8);
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page18 {
  left: -1700%;
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page18 + .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea > ul > li:nth-child(18) .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea__position {
  background-color: rgba(113, 168, 9, 0.8);
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page19 {
  left: -1800%;
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page19 + .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea > ul > li:nth-child(19) .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea__position {
  background-color: rgba(113, 168, 9, 0.8);
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page20 {
  left: -1900%;
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page20 + .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea > ul > li:nth-child(20) .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea__position {
  background-color: rgba(113, 168, 9, 0.8);
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page21 {
  left: -2000%;
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page21 + .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea > ul > li:nth-child(21) .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea__position {
  background-color: rgba(113, 168, 9, 0.8);
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page22 {
  left: -2100%;
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page22 + .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea > ul > li:nth-child(22) .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea__position {
  background-color: rgba(113, 168, 9, 0.8);
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page23 {
  left: -2200%;
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page23 + .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea > ul > li:nth-child(23) .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea__position {
  background-color: rgba(113, 168, 9, 0.8);
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page24 {
  left: -2300%;
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page24 + .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea > ul > li:nth-child(24) .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea__position {
  background-color: rgba(113, 168, 9, 0.8);
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page25 {
  left: -2400%;
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page25 + .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea > ul > li:nth-child(25) .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea__position {
  background-color: rgba(113, 168, 9, 0.8);
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page26 {
  left: -2500%;
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page26 + .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea > ul > li:nth-child(26) .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea__position {
  background-color: rgba(113, 168, 9, 0.8);
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page27 {
  left: -2600%;
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page27 + .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea > ul > li:nth-child(27) .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea__position {
  background-color: rgba(113, 168, 9, 0.8);
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page28 {
  left: -2700%;
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page28 + .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea > ul > li:nth-child(28) .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea__position {
  background-color: rgba(113, 168, 9, 0.8);
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page29 {
  left: -2800%;
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page29 + .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea > ul > li:nth-child(29) .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea__position {
  background-color: rgba(113, 168, 9, 0.8);
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page30 {
  left: -2900%;
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page30 + .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea > ul > li:nth-child(30) .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea__position {
  background-color: rgba(113, 168, 9, 0.8);
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page31 {
  left: -3000%;
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page31 + .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea > ul > li:nth-child(31) .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea__position {
  background-color: rgba(113, 168, 9, 0.8);
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page32 {
  left: -3100%;
}

.popupContent__typeDesignConfirmContentArea__frame > ul.page32 + .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea > ul > li:nth-child(32) .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea__position {
  background-color: rgba(113, 168, 9, 0.8);
}

.popupContent__typeDesignConfirmContentArea__frame > ul > li {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
}

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

.popupContent__typeDesignConfirmContentArea__frameNumberArea {
  -webkit-text-size-adjust: 100%;
  width: 100%;
  text-align: center;
  margin: 3px 0px 0px 0px;
}

@media screen and (max-width: 360px) {
  .popupContent__typeDesignConfirmTopArea {
    padding: 10px 16px 5px 16px;
  }
  .popupContent__typeDesignConfirmTopArea__typeName {
    min-height: 16px;
    height: auto;
    line-height: 16px;
    font-size: 12px;
  }
  .popupContent__typeDesignConfirmTopArea__typeName > span {
    font-size: 10px;
  }
  .popupContent__typeDesignConfirmTopArea__price {
    height: 16px;
    line-height: 16px;
    font-size: 12px;
  }
  .popupContent__typeDesignConfirmTopArea__price.discount {
    font-size: 10px;
  }
  .popupContent__typeDesignConfirmTopArea__price.discount::after {
    height: 16px;
  }
  .popupContent__typeDesignConfirmTopArea__discountPrice {
    height: 16px;
    line-height: 16px;
    font-size: 12px;
  }
  .popupContent__typeDesignConfirmContentArea__designNameArea {
    height: 20px;
    line-height: 20px;
  }
  .popupContent__typeDesignConfirmContentArea__designNameArea__designName {
    font-size: 12px;
  }
  .popupContent__typeDesignConfirmContentArea__frame {
    height: 220px;
  }
  .popupContent__typeDesignConfirmContentArea__frameNumberArea {
    -webkit-text-size-adjust: 100%;
    font-size: 10px;
  }
}

@media screen and (min-device-width: 320px) and (orientation: landscape) {
  .popupContent__typeDesignConfirmContentArea__frame {
    height: 100px;
  }
}

@media screen and (min-width: 1024px) {
  .popupContent.typeDesignConfirmPopupContent {
    width: 80%;
    max-width: 1600px;
  }
  .popupContent__typeDesignConfirmTopArea__typeName {
    height: 24px;
    line-height: 24px;
    font-size: 18px;
  }
  .popupContent__typeDesignConfirmTopArea__typeName > span {
    font-size: 14px;
  }
  .popupContent__typeDesignConfirmTopArea__price {
    height: 24px;
    line-height: 24px;
    font-size: 18px;
  }
  .popupContent__typeDesignConfirmTopArea__price.discount {
    font-size: 14px;
  }
  .popupContent__typeDesignConfirmTopArea__price.discount::after {
    width: 24px;
    height: 24px;
  }
  .popupContent__typeDesignConfirmTopArea__discountPrice {
    height: 24px;
    line-height: 24px;
    font-size: 18px;
  }
  .popupContent__typeDesignConfirmContentArea__designNameArea {
    height: 24px;
    line-height: 24px;
  }
  .popupContent__typeDesignConfirmContentArea__designNameArea__label {
    font-size: 14px;
  }
  .popupContent__typeDesignConfirmContentArea__designNameArea__designName {
    font-size: 18px;
  }
  .popupContent__typeDesignConfirmContentArea__frame {
    overflow-x: hidden;
    overflow-y: auto;
  }
  .popupContent__typeDesignConfirmContentArea__frame__positionDisplayArea {
    display: none;
  }
  .popupContent__typeDesignConfirmContentArea__frame > ul {
    display: block;
  }
  .popupContent__typeDesignConfirmContentArea__frameNumberArea {
    font-size: 14px;
  }
}

@media screen and (min-height: 470px) {
  .popupContent__typeDesignConfirmContentArea__frame {
    height: 220px;
  }
}

@media screen and (min-height: 570px) {
  .popupContent__typeDesignConfirmContentArea__frame {
    height: 320px;
  }
}

@media screen and (min-height: 670px) {
  .popupContent__typeDesignConfirmContentArea__frame {
    height: 420px;
  }
}

@media screen and (min-height: 770px) {
  .popupContent__typeDesignConfirmContentArea__frame {
    height: 520px;
  }
}

@media screen and (min-height: 870px) {
  .popupContent__typeDesignConfirmContentArea__frame {
    height: 620px;
  }
}

@media screen and (min-height: 970px) {
  .popupContent__typeDesignConfirmContentArea__frame {
    height: 720px;
  }
}

@media screen and (min-height: 1070px) {
  .popupContent__typeDesignConfirmContentArea__frame {
    height: 820px;
  }
}

@media screen and (min-height: 1170px) {
  .popupContent__typeDesignConfirmContentArea__frame {
    height: 920px;
  }
}

.waitScreen {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: none;
  z-index: 13000;
}

.waitScreen__loadingArea {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100px;
  height: 100px;
  border-radius: 6px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1%;
  overflow: hidden;
  box-sizing: border-box;
}

.waitScreen__loadingArea__loadingIndicator {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  animation-name: nowLoadingEffect;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@-webkit-keyframes nowLoadingEffect {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  12.5% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  12.6% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  25% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  25.1% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  37.5% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  37.6% {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  50% {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  50.1% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  62.5% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  62.6% {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
  }
  75% {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
  }
  75.1% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
  87.5% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
  87.6% {
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
  }
  100% {
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
  }
}

@keyframes nowLoadingEffect {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  12.5% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  12.6% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  25% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  25.1% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  37.5% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  37.6% {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  50% {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  50.1% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  62.5% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  62.6% {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
  }
  75% {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
  }
  75.1% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
  87.5% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
  87.6% {
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
  }
  100% {
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
  }
}

.landscapeLayer {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 20000;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.progressPop-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  transition: all .2s ease;
  z-index: 2000;
  visibility: hidden;
}

.progressPop-layer.progressPop-visible {
  opacity: 1;
  visibility: visible;
}

.progressDisplay {
  width: 83%;
  max-width: 500px;
  text-align: center;
  position: absolute;
  top: 42%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}

.progressDisplay__text {
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.progressDisplay__value {
  font-size: 16px;
  font-weight: bold;
}

.progressDisplay__barArea {
  position: relative;
  margin: 20px auto;
  width: 100%;
  height: 15px;
  background-color: rgba(0, 0, 0, 0.2);
}

.progressDisplay__barArea__receive {
  background-color: rgba(113, 168, 9, 0.8);
  position: absolute;
  top: 0;
  width: 0;
  height: 15px;
  bottom: 0;
  margin: auto;
  transition: width 100ms;
}

.progressDisplay__uploadCancel {
  margin-top: 50px;
  width: 128px;
  height: 40px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  background-color: #b3b3b3;
  border: none;
  border-radius: 4px;
}

.progressDisplay__uploadCancel:hover {
  background-color: #999999;
}

.uploadCancelDisplay {
  display: none;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

[data-uploading-display="cancel"] .progressDisplay {
  display: none;
}

[data-uploading-display="cancel"] .uploadCancelDisplay {
  display: block;
}

* {
  -webkit-user-select: none;
  user-select: none;
}

input, textarea {
  -webkit-user-select: auto;
}

.header {
  position: fixed;
  z-index: 200;
  top: 0;
  width: 100%;
  height: 44px;
  background-color: rgba(113, 168, 9, 0.8);
  box-shadow: none;
}

.header__button {
  display: block;
  width: 50px;
  height: 44px;
  font-size: 12px;
  white-space: nowrap;
  color: #ffffff;
  padding: 26px 0 0 0;
  box-sizing: border-box;
  border: none;
  position: absolute;
  top: 0;
  background-repeat: no-repeat;
  background-size: 22px;
  background-position: center 5px;
  background-color: transparent;
}

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

.header__title {
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  line-height: 0.8;
  width: 75%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.header__title > span {
  font-size: 10px;
  font-weight: normal;
  color: #ffffff;
}

.prev {
  left: 0;
}

.reEdit {
  left: 50px;
}

.save {
  right: 50px;
}

.menu {
  right: 0;
}

.content {
  position: absolute;
  top: 44px;
  width: 100%;
  height: -webkit-calc(100% - (44px + 0.01px));
  height: calc(100% - (44px + 0.01px));
  background-color: none;
}

.content__breadcrumbArea {
  display: none;
}

.content__contentArea {
  width: 100%;
  height: 100%;
}

.footer {
  position: fixed;
  z-index: 200;
  bottom: 0;
  width: 100%;
  height: 64px;
  background-color: #71a809;
  box-shadow: none;
}

.footer__button {
  display: none;
}

.footer__infoArea {
  position: relative;
  display: block;
  margin: 2px auto;
  width: 300px;
  height: 40px;
  background-color: #fff;
  border-radius: 4px;
}

.footer__infoArea > hr {
  position: absolute;
  top: 19px;
  left: 0;
  margin: 0;
  width: 100%;
  height: 2px;
  background-color: rgba(113, 168, 9, 0.8);
}

.footer__infoArea__text {
  position: absolute;
  display: inline-block;
  word-break: keep-all;
  font-size: 12px;
  line-height: 19px;
  vertical-align: auto;
}

.footer__infoArea__text.pageQty {
  top: 0;
  left: 5px;
}

.footer__infoArea__text.pageQty > span {
  font-weight: bold;
}

.footer__infoArea__text.totalPrice {
  top: 0;
  right: 5px;
}

.footer__infoArea__text.totalPrice > span {
  font-weight: bold;
  color: #dd621c;
}

.footer__infoArea__text.frameQty {
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}

.footer__typeNameArea {
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: 20px;
  line-height: 20px;
  font-size: 10px;
  color: #ffffff;
  text-align: center;
}

.footer .uploadButton {
  display: none;
}

.footer .commonFooter {
  display: none;
}

@media screen and (min-width: 1024px) {
  .header {
    height: 54px;
    background-color: #fff;
    box-shadow: 0px 1px 1px 0px rgba(113, 168, 9, 0.8);
  }
  .header__button {
    display: none;
    background-color: rgba(113, 168, 9, 0.8);
  }
  .header__button:hover {
    background-color: rgba(97, 144, 8, 0.8);
  }
  .header__title {
    display: none;
  }
  .content {
    top: pcHeaderHeight;
    height: calc(100% - (54px + 78px));
  }
  .content__breadcrumbArea {
    display: block;
    background-color: #fff;
    box-shadow: 0 0 6px #cccccc;
    width: 100%;
    height: 50px;
    padding: 10px 0;
    box-sizing: border-box;
  }
  .content__breadcrumbArea__breadcrumb {
    background-color: #fff;
    border: solid 2px #cccccc;
    border-radius: 4px;
    box-sizing: border-box;
    width: 100px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 14px;
    color: #000;
  }
  .content__breadcrumbArea__breadcrumb.location {
    border: solid 2px gray;
    background-color: gray;
    color: #fff;
  }
  .content__breadcrumbArea > ul {
    display: -webkit-flex;
    display: flex;
    justify-content: center;
  }
  .content__breadcrumbArea > ul > li {
    display: -webkit-flex;
    display: flex;
  }
  .content__breadcrumbArea > ul > li::after {
    display: block;
    content: "▶";
    color: #cccccc;
    margin: 9px 5px;
  }
  .content__breadcrumbArea > ul > li:first-of-type > .content__breadcrumbArea__breadcrumb {
    width: 170px;
  }
  .content__breadcrumbArea > ul > li:last-of-type::after {
    content: none;
  }
  .content__breadcrumbArea .contact {
    display: block;
    width: 100px;
    height: 30px;
    border-radius: 8px;
    font-size: 14px;
    color: #ffffff;
    padding: 0 0 0 15px;
    box-sizing: border-box;
    position: absolute;
    top: 10px;
    right: 95px;
    margin: 0 5px;
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 3px center;
  }
  .content__breadcrumbArea .operation {
    display: block;
    width: 90px;
    height: 30px;
    border-radius: 8px;
    font-size: 14px;
    color: #ffffff;
    padding: 0 0 0 15px;
    box-sizing: border-box;
    position: absolute;
    top: 10px;
    right: 0px;
    margin: 0 5px;
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 3px center;
  }
  .content__contentArea {
    width: 100%;
    height: calc(100% - 50px);
    /*breadcrumbのheight50px*/
  }
  .footer {
    height: 78px;
  }
  .footer__button {
    display: block;
    width: 110px;
    height: 34px;
    background-color: transparent;
    border: solid 2px #fff;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    padding: 0 0 0 18px;
    box-sizing: border-box;
    position: absolute;
    top: 10px;
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 5px center;
  }
  .footer__button:hover {
    background-color: rgba(97, 144, 8, 0.8);
  }
  .footer__infoArea {
    margin: 6px auto;
    width: 350px;
    border-radius: 8px;
  }
  .footer__infoArea__text {
    font-size: 14px;
  }
  .footer__infoArea__text.pageQty {
    left: 10px;
  }
  .footer__infoArea__text.totalPrice {
    right: 10px;
  }
  .footer__typeNameArea {
    height: 25px;
    line-height: 24px;
    font-size: 12px;
  }
  .footer .commonFooter {
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 25px;
    background-color: #4b4b4b;
  }
  .footer .footerLinkArea {
    width: 100%;
    height: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-align-items: center;
    align-items: center;
  }
  .footer .osMac .footerLinkArea {
    letter-spacing: -0.7px;
    padding: 0 5px;
  }
  .footer .copyrightText,
  .footer .footerLink {
    display: block;
    font-size: 10px;
    white-space: nowrap;
    line-height: 1;
    color: #ffffff;
    text-decoration: none;
  }
  .footer .copyrightText {
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
  }
  .footer .osMac .copyrightText {
    letter-spacing: 0.025px;
  }
  .footer .footerLink {
    text-decoration: none;
  }
  .footer .footerLink:nth-child(n+3)::before {
    content: "|";
    display: inline-block;
    margin: 0 0.3em;
  }
  .footer .footerLink > span:hover {
    text-decoration: underline;
  }
  .prev {
    left: 40px;
  }
  .next {
    width: 180px;
    right: 40px;
    padding: 0 22px 0 0;
    background-position: 140px center;
    border: solid 3px #fff;
  }
  .reEdit {
    left: 160px;
  }
  .nextPreviw {
    width: 180px;
    right: 40px;
    padding: 0 22px 0 0;
    background-position: 140px center;
    border: solid 3px #fff;
  }
  .save {
    right: 160px;
    width: 90px;
    padding: 0 0 0 20px;
  }
  .logoImg {
    position: absolute;
    display: block;
    top: 0;
    width: 200px;
    height: 40px;
    margin: 5px 5px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../content/commons/img/ffprintlogo_bk.png");
  }
}

.headerDisplayNone_SP > .header {
  display: none;
}

.headerDisplayNone_SP > .content {
  top: 0;
  height: -webkit-calc(100% - (0.01px + 0.01px));
  height: calc(100% - (0.01px + 0.01px));
}

.footerDisplayNone_SP > .content {
  height: -webkit-calc(100% - (44px + 0.01px));
  height: calc(100% - (44px + 0.01px));
}

.footerDisplayNone_SP > .footer {
  display: none;
}

.headerDisplayNone_SP.footerDisplayNone_SP > .content {
  top: 0;
  height: 100%;
}

@media screen and (max-width: 1023px) {
  .footerDisplayMini_SP > .content {
    height: -webkit-calc(100% - (44px));
    height: calc(100% - (44px));
  }
  .footerDisplayMini_SP > .footer {
    height: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .headerDisplayNone_PC > .header {
    display: none;
  }
  .headerDisplayNone_PC > .content {
    top: 0;
    height: calc(100% - (0.01px + 78px));
  }
  .footerDisplayNone_SP > .content {
    top: 54px;
    height: calc(100% - (54px + 78px));
  }
  .footerDisplayNone_SP > .footer {
    display: block;
  }
  .footerDisplayNone_PC > .content {
    top: 54px;
    height: calc(100% - (54px + 0.01px));
  }
  .footerDisplayNone_PC > .footer {
    display: none;
  }
  .headerDisplayNone_PC.footerDisplayNone_SP > .content {
    top: 0;
    height: calc(100% - (0.01px + 78px));
  }
  .headerDisplayNone_PC.footerDisplayNone_SP.footerDisplayNone_PC > .content {
    top: 0;
    height: calc(100% - (0.01px + 0.01px));
  }
}

body.editPCMode {
  min-width: 1024px;
  min-height: 680px;
}

body.editPCMode .header {
  display: none;
}

body.editPCMode .content {
  top: 0;
  height: 100%;
}

body.editPCMode .content__contentArea {
  height: calc(100% - 78px);
  position: relative;
  overflow: hidden;
}

body.editPCMode .footer {
  height: 78px;
  position: absolute;
}

body.editPCMode .footer__button {
  display: block;
  width: 110px;
  height: 34px;
  background-color: transparent;
  border: solid 2px #fff;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  padding: 0 0 0 18px;
  box-sizing: border-box;
  position: absolute;
  top: 10px;
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: 5px center;
}

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

body.editPCMode .footer__infoArea {
  margin: 6px auto;
  width: 350px;
  border-radius: 8px;
}

body.editPCMode .footer__infoArea__text {
  font-size: 14px;
}

body.editPCMode .footer__infoArea__text.pageQty {
  left: 10px;
}

body.editPCMode .footer__infoArea__text.totalPrice {
  right: 10px;
}

body.editPCMode .footer__typeNameArea {
  height: 25px;
  line-height: 24px;
  font-size: 12px;
}

body.editPCMode .footer .commonFooter {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 25px;
  background-color: #4b4b4b;
}

body.editPCMode .footer .footerLinkArea {
  width: 100%;
  height: 100%;
  padding: 0 10px;
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: center;
  align-items: center;
}

body.editPCMode .footer .osMac .footerLinkArea {
  letter-spacing: -0.7px;
  padding: 0 5px;
}

body.editPCMode .footer .copyrightText,
body.editPCMode .footer .footerLink {
  display: block;
  font-size: 10px;
  white-space: nowrap;
  line-height: 1;
  color: #ffffff;
  text-decoration: none;
}

body.editPCMode .footer .copyrightText {
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
}

body.editPCMode .footer .osMac .copyrightText {
  letter-spacing: 0.025px;
}

body.editPCMode .footer .footerLink {
  text-decoration: none;
}

body.editPCMode .footer .footerLink:nth-child(n+3)::before {
  content: "|";
  display: inline-block;
  margin: 0 0.3em;
}

body.editPCMode .footer .footerLink > span:hover {
  text-decoration: underline;
}

body.editPCMode .footer .prev,
body.editPCMode .footer .next,
body.editPCMode .footer .saveOpen {
  display: none;
}

body.editPCMode .footer .save {
  right: 230px;
  width: 90px;
  padding: 0 0 0 20px;
}

body.editPCMode .footer .prevPhotoList {
  left: 40px;
}

body.editPCMode .footer .uploadButton {
  left: 160px;
  padding: 0;
  line-height: 34px;
  text-align: left;
  width: 125px;
  background-repeat: no-repeat;
  background-size: 20px;
  cursor: pointer;
}

body.editPCMode .footer .uploadButton > label {
  position: relative;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 0 0 0 35px;
  cursor: pointer;
}

body.editPCMode .footer .uploadButton > label > input {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

body.editPCMode .footer .reEdit {
  left: 295px;
}

body.editPCMode .footer .nextPreviw {
  width: 180px;
  right: 40px;
  padding: 0 22px 0 0;
  background-position: 140px center;
  border: solid 3px #fff;
}

body.editPCMode .content__breadcrumbArea {
  display: none;
}

@media screen and (max-width: 1160px) {
  body.editPCMode .footer .prevPhotoList {
    left: 10px;
    width: 80px;
  }
  body.editPCMode .footer .uploadButton {
    left: 100px;
  }
  body.editPCMode .footer .reEdit {
    left: 235px;
    width: 95px;
  }
  body.editPCMode .footer .nextPreviw {
    right: 10px;
  }
  body.editPCMode .footer .save {
    right: 200px;
  }
}

body.editSPMode .prev {
  display: none;
}

body.editSPMode .footer {
  display: none;
}

body.editSPMode .content__breadcrumbArea {
  display: none;
}

@media screen and (min-width: 1024px) {
  body.editSPMode .header {
    height: 44px;
    background-color: rgba(113, 168, 9, 0.8);
    box-shadow: none;
  }
  body.editSPMode .header__button {
    display: block;
  }
  body.editSPMode .header__title {
    display: block;
  }
  body.editSPMode .content {
    top: spHeaderHeight;
    height: calc(100% - 44px);
  }
  body.editSPMode .content__breadcrumbArea {
    display: none;
  }
  body.editSPMode .content__contentArea {
    width: 100%;
    height: 100%;
  }
  body.editSPMode .footer {
    display: none;
  }
  body.editSPMode .save {
    right: 40px;
    width: 40px;
    padding: 26px 0 0 0;
  }
  body.editSPMode .prev {
    display: none;
  }
}

body.trimPCMode {
  min-width: 1024px;
  min-height: 680px;
}

body.trimPCMode .header {
  display: none;
}

body.trimPCMode .content {
  top: 0;
  height: 100%;
  background-color: #1d1d1d;
}

body.trimPCMode .content__contentArea {
  height: calc(100% - 78px);
  position: relative;
  overflow: hidden;
}

body.trimPCMode .footer {
  position: absolute;
  height: 78px;
}

body.trimPCMode .footer__button {
  display: block;
  width: 110px;
  height: 34px;
  background-color: transparent;
  border: solid 2px #fff;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  padding: 0 0 0 18px;
  box-sizing: border-box;
  position: absolute;
  top: 10px;
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: 10px center;
}

body.trimPCMode .footer__button:hover {
  background-color: rgba(80, 120, 6, 0.8);
}

body.trimPCMode .footer__infoArea {
  display: none;
}

body.trimPCMode .footer__typeNameArea {
  height: 24px;
  line-height: 24px;
  font-size: 12px;
}

body.trimPCMode .prev,
body.trimPCMode .next,
body.trimPCMode .save,
body.trimPCMode .reEdit {
  display: none;
}

body.trimPCMode .cancel {
  padding: 0;
  width: 160px;
  left: 40%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

body.trimPCMode .ok {
  padding: 0;
  width: 160px;
  left: 60%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

body.trimPCMode .content__breadcrumbArea {
  display: none;
}

body.trimSPMode .header {
  height: 44px;
  background-color: rgba(113, 168, 9, 0.8);
  box-shadow: none;
}

body.trimSPMode .header__button {
  white-space: nowrap;
  font-size: 11px;
  display: inline;
}

body.trimSPMode .header__title {
  display: block;
}

body.trimSPMode .content {
  height: calc(100% - 44px);
  background-color: #1d1d1d;
}

body.trimSPMode .content__contentArea {
  height: 100%;
  position: relative;
  overflow: hidden;
}

body.trimSPMode .prev {
  left: 0px;
}

body.trimSPMode .next,
body.trimSPMode .save,
body.trimSPMode .footer {
  display: none;
}

body.trimSPMode .content__breadcrumbArea {
  display: none;
}
