.baseFrame {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
}

.menuFrame {
  position: fixed;
  top: 0;
  /* 上下の固定位置を上から0pxにする */
  left: 0;
  /* 左右の固定位置を左から0pxにする */
  width: 100%;
  height: 75px;
  border: solid 0px;
  background-color: honeydew;
}

.mainFrame {
  width: 100%;
  margin: 0 1px;
  padding: 3px;
  padding-top: 80px;
  border: solid 0px;
  overflow: auto;
  background-color: snow;
}

.btnred-push {
  display: inline-block;
  max-width: 300px;
  text-align: left;
  background-color: #dc143c;
  font-size: 16px;
  color: #FFF;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 4px;
  border-bottom: 4px solid #dcdcdc;
}

.btnred-push:active {
  transform: translateY(4px);
  border-bottom: none;
}

.btngray-push {
  display: inline-block;
  max-width: 300px;
  text-align: left;
  background-color: #808080;
  font-size: 16px;
  color: #FFF;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 4px;
  border-bottom: 4px solid #dcdcdc;
}

.btngray-push:active {
  transform: translateY(4px);
  border-bottom: none;
}

.btnblue-push {
  display: inline-block;
  max-width: 300px;
  text-align: left;
  background-color: #0000cd;
  font-size: 16px;
  color: #FFF;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 4px;
  border-bottom: 4px solid #dcdcdc;
}

.btnblue-push:active {
  transform: translateY(4px);
  border-bottom: none;
}

.btnwhite-push {
  display: inline-block;
  max-width: 300px;
  text-align: left;
  background-color: #fffff0;
  font-size: 16px;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 4px;
  border-bottom: 4px solid #dcdcdc;
}

.btnwhite-push:active {
  transform: translateY(4px);
  border-bottom: none;
}

.table2 {
  border-collapse: collapse;
}

.table2 th,
.table2 td {
  border: 1px solid gray;
}


/* === ボタンを表示するエリア ============================== */
.switchArea {
  line-height: 52px;
  /* 1行の高さ          */
  letter-spacing: 0;
  /* 文字間             */
  text-align: center;
  /* 文字位置は中央     */
  font-size: 23px;
  /* 文字サイズ         */

  position: relative;
  /* 親要素が基点       */
  margin: auto;
  /* 中央寄せ           */
  width: 252px;
  /* ボタンの横幅       */
  background: #fff;
  /* デフォルト背景色   */
}

/* === チェックボックス ==================================== */
.switchArea input[type="checkbox"] {
  display: none;
  /* チェックボックス非表示 */
}

/* === チェックボックスのラベル（標準） ==================== */
.switchArea label {
  display: block;
  /* ボックス要素に変更 */
  box-sizing: border-box;
  /* 枠線を含んだサイズ */
  height: 52px;
  /* ボタンの高さ       */
  border: 2px solid #4da6ff;
  /* 未選択タブのの枠線 */
  border-radius: 26px;
  /* 角丸               */
}

/* === チェックボックスのラベル（ONのとき） ================ */
.switchArea input[type="checkbox"]:checked+label {
  border-color: #ff4d4d;
  /* 選択タブの枠線     */
}

/* === 表示する文字（標準） ================================ */
.switchArea label span:after {
  content: "OK";
  /* 表示する文字       */
  padding: 0 0 0 31px;
  /* 表示する位置       */
  color: #4da6ff;
  /* 文字色             */
}

/* === 表示する文字（ONのとき） ============================ */
.switchArea input[type="checkbox"]:checked+label span:after {
  content: "NG";
  /* 表示する文字       */
  padding: 0 31px 0 0;
  /* 表示する位置       */
  color: #ff4d4d;
  /* 文字色             */
}

/* === 丸部分のSTYLE（標準） =============================== */
.switchArea #swImg {
  position: absolute;
  /* 親要素からの相対位置*/
  width: 44px;
  /* 丸の横幅           */
  height: 44px;
  /* 丸の高さ           */
  background: #4da6ff;
  /* カーソルタブの背景 */
  top: 4px;
  /* 親要素からの位置   */
  left: 4px;
  /* 親要素からの位置   */
  border-radius: 22px;
  /* 角丸               */
  transition: .2s;
  /* 滑らか変化         */
}

/* === 丸部分のSTYLE（ONのとき） =========================== */
.switchArea input[type="checkbox"]:checked~#swImg {
  transform: translateX(200px);
  /* 丸も右へ移動       */
  background: #ff4d4d;
  /* カーソルタブの背景 */
}


/* form-nav */

.progressbar {
  display: flex;
  flex-wrap: wrap;
}

.progressbar .item {
  width: 9%;
  text-align: center;
  position: relative;
  align-items: center;
  justify-content: center;
  padding: 13px 0;
  line-height: 1.5;
  background: #F5F5F5;
  color: #999999;
}

.progressbar .item:not(:last-child)::before,
.progressbar .item:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 100%;
  content: '';
  border: 37px solid transparent;
  border-left: 20px solid #F5F5F5;
  margin: auto;
}

.progressbar .item:not(:last-child)::before {
  margin-left: 1px;
  border-left-color: #FFF;
}

@media screen and (max-width: 767px) {
  .progressbar .item {
    font-size: 11px;
    line-height: 1.4;
    padding: 10px 0;
  }

  .progressbar .item:not(:last-child)::before,
  .progressbar .item:not(:last-child)::after {
    border-width: 25px;
    border-left-width: 12px;
  }
}

/* active */

.progressbar .item.active {
  z-index: 1;
  background: #0070BD;
  color: #FFF;
}

.progressbar .item.active:not(:last-child)::after {
  border-left-color: #0070bd;
}

.progressbar .item.active:not(:last-child)::before {
  border-left: none;
}

/* 装飾 */

body {
  margin: 40px;
}

iframe.pview {
  width: 100vw;
  height: 100vh;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.pviewBtn1 {
  position: relative;
}

.pviewBtn1 a {
  position: absolute;

  left: 35%;
  transform: translate(-50%, -50%);
}

.pviewBtn2 {
  position: relative;
}

.pviewBtn2 a {
  position: absolute;

  left: 45%;
  transform: translate(-50%, -50%);
}

.pviewBtn3 {
  position: relative;
}

.pviewBtn3 a {
  position: absolute;

  left: 55%;
  transform: translate(-50%, -50%);
}

.pviewBtn4 {
  position: relative;
}

.pviewBtn4 a {
  position: absolute;

  left: 65%;
  transform: translate(-50%, -50%);
}

.tooltip5 {
  position: relative;
  cursor: pointer;
  display: inline-block;
}

.tooltip5 img {
  width: 20px;
}

.description5 {
  display: none;
  position: absolute;
  padding: 10px;
  font-size: 12px;
  line-height: 1.6em;
  color: #fff;
  border-radius: 5px;
  background: #000;
  width: 300px;
}

.description5:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  border: 15px solid transparent;
  border-top: 15px solid #000;
  margin-left: -15px;
}

.tooltip5:hover .description5 {
  display: inline-block;
  top: -90px;
  left: -140px;
}

/* 点滅 */
.blinking {
  animation: blink 2s ease-in-out infinite alternate;
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* Position */
.popup {
  display: block;
}

.popup__content {
  display: none;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 5%;
  transform: translateX(-50%);
  width: 560px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  background-color: #fefefe;
  border-radius: 10px;
  padding: 10px;
}

.content__image-info::-webkit-scrollbar {
  width: 4px;
  background-color: #F5F5F5;
}

.content__image-info::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-color: #555353;
}

.content__image-info::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

.popup__content--show {
  display: block;
}


.popup__bg {
  position: fixed;
  display: none;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.popup__bg--show {
  display: block;
}

.content__image-position {
  position: relative;
  height: 60%;
  border: 2px dashed gray;
  border-radius: 5px;
  z-index: 3;
  cursor: pointer;
}

.content__image-info {
  padding: 10px 0;
}

.image-position__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.image-position__btn {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  color: #2f3542;
  border-radius: 50%;
  border: 1px solid #2f3542;
  font-size: 24px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease-in;
  cursor: pointer;
}
.image-position__btn:active,
.image-position__btn:hover {
  color: #ffffff;
  background-color: #2f3542;
}
.image-position__btn--prev {
  left: 2.5%;
}
.image-position__btn--next {
  right: 2.5%;
}
.info__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 5px 0;
  font-size: 12px;
}
.info__item--action {
  margin: 10px 0;
  justify-content: space-evenly;
}
.info__item--flex-start {
  justify-content: flex-start;
}
.info__item--content-center {
  justify-content: center;
}
.memo__btn {
  --bs-btn-color: #2f3542;
  --bs-btn-border-color: #2f3542;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #2f3542;
  --bs-btn-hover-border-color: #2f3542;
  --bs-btn-focus-shadow-rgb: 203, 12, 159;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #2f3542;
  --bs-btn-active-border-color: #2f3542;
  --bs-btn-active-shadow: none;
  --bs-btn-disabled-color: #2f3542;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #2f3542;
  --bs-gradient: none;
  display: inline-block;
  padding: 8px 12px;
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 1px solid var(--bs-btn-border-color);
  border-radius: 10px;
  background-color: #fff;
  transition: all 0.15s ease-in;
}
.memo__btn:hover,
.memo__btn:active {
  --bs-btn-bg-color: #2f3542;
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
}
.memo__btn--add {
  width: auto;
}
.memo__btn--submit {
  width: 48%;
  --bs-btn-bg-color: rgb(255, 153, 255);
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
  border-color: rgb(255, 153, 255);
}
.memo__btn--back {
  width: 48%;
  --bs-btn-bg-color: rgb(217, 217, 217);
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
  border-color: rgb(217, 217, 217);
}
.memo__btn--back:hover,
.memo__btn--back:active {
  --bs-btn-bg-color: rgb(183, 180, 180);
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
}
.memo__btn--submit:hover,
.memo__btn--submit:active {
  --bs-btn-bg-color: rgb(239, 42, 239);
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
}
.memo__number {
  font-size: 16px;
  background-color: #eccc68;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.item__label {
  width: 25%;
  margin-top: 5px;
  font-weight: 400;
  white-space: pre-line;
}
.item__setting {
  width: calc(75% - 120px);
}
.item__setting--line {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 5px 0;
}
.item__setting--line input {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.item__setting--line textarea {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.item__setting--line select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.item__setting--line input,
.item__setting--line select:nth-child(2) {
  margin-left: 5px;
}
.item__intended-date {
  margin-top: 5px;
}
.item__image {
  width: 100px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  cursor: pointer;
  margin-left: 20px;
}
.item__image.hover {
  outline: 2px dashed gray;
}
.image--s48 {
  height: 40px;
  width: 40px;
  z-index: 4;
  transform-origin: center 15px;
}
.pointer-drap {
  display: none;
  z-index: 4;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  background-color: #fefefe;
  border-radius: 10px;
  padding: 10px;
}
.pointer-drap__area {
  border: 2px dashed gray;
  border-radius: 10px;
}
.pointer-drap__area--img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.pointer-drap__area--pointer {
  position: relative;
  width: 40px;
  height: 40px;
}
.pointer-drap--show {
  display: block;
}
.pointer-drap__bg {
  z-index: 3;
  position: fixed;
  display: none;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}
.pointer-drap__bg--show {
  display: block;
}
.pointer-drap__action {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 10px;
}
.memo__btn--edit {
  width: 48%;
  --bs-btn-bg-color: rgb(255, 153, 255);
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
  border-color: rgb(255, 153, 255);
}
.memo__btn--save {
  width: 48%;
  --bs-btn-bg-color: rgb(217, 217, 217);
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
  border-color: rgb(217, 217, 217);
}
.memo__btn--save:hover,
.memo__btn--save:active {
  --bs-btn-bg-color: rgb(183, 180, 180);
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
}
.memo__btn--edit:hover,
.memo__btn--edit:active {
  --bs-btn-bg-color: rgb(239, 42, 239);
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
}

.baseFrame {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
}

.menuFrame {
  position: fixed;
  top: 0;
  /* 上下の固定位置を上から0pxにする */
  left: 0;
  /* 左右の固定位置を左から0pxにする */
  width: 100%;
  height: 75px;
  border: solid 0px;
  background-color: honeydew;
}

.mainFrame {
  width: 100%;
  margin: 0 1px;
  padding: 3px;
  padding-top: 80px;
  border: solid 0px;
  overflow: auto;
  background-color: snow;
}

.btnred-push {
  display: inline-block;
  max-width: 300px;
  text-align: left;
  background-color: #dc143c;
  font-size: 16px;
  color: #FFF;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 4px;
  border-bottom: 4px solid #dcdcdc;
}

.btnred-push:active {
  transform: translateY(4px);
  border-bottom: none;
}

.btngray-push {
  display: inline-block;
  max-width: 300px;
  text-align: left;
  background-color: #808080;
  font-size: 16px;
  color: #FFF;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 4px;
  border-bottom: 4px solid #dcdcdc;
}

.btngray-push:active {
  transform: translateY(4px);
  border-bottom: none;
}

.btnblue-push {
  display: inline-block;
  max-width: 300px;
  text-align: left;
  background-color: #0000cd;
  font-size: 16px;
  color: #FFF;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 4px;
  border-bottom: 4px solid #dcdcdc;
}

.btnblue-push:active {
  transform: translateY(4px);
  border-bottom: none;
}

.btnwhite-push {
  display: inline-block;
  max-width: 300px;
  text-align: left;
  background-color: #fffff0;
  font-size: 16px;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 4px;
  border-bottom: 4px solid #dcdcdc;
}

.btnwhite-push:active {
  transform: translateY(4px);
  border-bottom: none;
}

.table2 {
  border-collapse: collapse;
}

.table2 th,
.table2 td {
  border: 1px solid gray;
}


/* === ボタンを表示するエリア ============================== */
.switchArea {
  line-height: 52px;
  /* 1行の高さ          */
  letter-spacing: 0;
  /* 文字間             */
  text-align: center;
  /* 文字位置は中央     */
  font-size: 23px;
  /* 文字サイズ         */

  position: relative;
  /* 親要素が基点       */
  margin: auto;
  /* 中央寄せ           */
  width: 252px;
  /* ボタンの横幅       */
  background: #fff;
  /* デフォルト背景色   */
}

/* === チェックボックス ==================================== */
.switchArea input[type="checkbox"] {
  display: none;
  /* チェックボックス非表示 */
}

/* === チェックボックスのラベル（標準） ==================== */
.switchArea label {
  display: block;
  /* ボックス要素に変更 */
  box-sizing: border-box;
  /* 枠線を含んだサイズ */
  height: 52px;
  /* ボタンの高さ       */
  border: 2px solid #4da6ff;
  /* 未選択タブのの枠線 */
  border-radius: 26px;
  /* 角丸               */
}

/* === チェックボックスのラベル（ONのとき） ================ */
.switchArea input[type="checkbox"]:checked+label {
  border-color: #ff4d4d;
  /* 選択タブの枠線     */
}

/* === 表示する文字（標準） ================================ */
.switchArea label span:after {
  content: "OK";
  /* 表示する文字       */
  padding: 0 0 0 31px;
  /* 表示する位置       */
  color: #4da6ff;
  /* 文字色             */
}

/* === 表示する文字（ONのとき） ============================ */
.switchArea input[type="checkbox"]:checked+label span:after {
  content: "NG";
  /* 表示する文字       */
  padding: 0 31px 0 0;
  /* 表示する位置       */
  color: #ff4d4d;
  /* 文字色             */
}

/* === 丸部分のSTYLE（標準） =============================== */
.switchArea #swImg {
  position: absolute;
  /* 親要素からの相対位置*/
  width: 44px;
  /* 丸の横幅           */
  height: 44px;
  /* 丸の高さ           */
  background: #4da6ff;
  /* カーソルタブの背景 */
  top: 4px;
  /* 親要素からの位置   */
  left: 4px;
  /* 親要素からの位置   */
  border-radius: 22px;
  /* 角丸               */
  transition: .2s;
  /* 滑らか変化         */
}

/* === 丸部分のSTYLE（ONのとき） =========================== */
.switchArea input[type="checkbox"]:checked~#swImg {
  transform: translateX(200px);
  /* 丸も右へ移動       */
  background: #ff4d4d;
  /* カーソルタブの背景 */
}


/* form-nav */

.progressbar {
  display: flex;
  flex-wrap: wrap;
}

.progressbar .item {
  width: 9%;
  text-align: center;
  position: relative;
  align-items: center;
  justify-content: center;
  padding: 13px 0;
  line-height: 1.5;
  background: #F5F5F5;
  color: #999999;
}

.progressbar .item:not(:last-child)::before,
.progressbar .item:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 100%;
  content: '';
  border: 37px solid transparent;
  border-left: 20px solid #F5F5F5;
  margin: auto;
}

.progressbar .item:not(:last-child)::before {
  margin-left: 1px;
  border-left-color: #FFF;
}

@media screen and (max-width: 767px) {
  .progressbar .item {
    font-size: 11px;
    line-height: 1.4;
    padding: 10px 0;
  }

  .progressbar .item:not(:last-child)::before,
  .progressbar .item:not(:last-child)::after {
    border-width: 25px;
    border-left-width: 12px;
  }
}

/* active */

.progressbar .item.active {
  z-index: 1;
  background: #0070BD;
  color: #FFF;
}

.progressbar .item.active:not(:last-child)::after {
  border-left-color: #0070bd;
}

.progressbar .item.active:not(:last-child)::before {
  border-left: none;
}

/* 装飾 */

body {
  margin: 40px;
}

iframe.pview {
  width: 100vw;
  height: 100vh;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.pviewBtn1 {
  position: relative;
}

.pviewBtn1 a {
  position: absolute;

  left: 35%;
  transform: translate(-50%, -50%);
}

.pviewBtn2 {
  position: relative;
}

.pviewBtn2 a {
  position: absolute;

  left: 45%;
  transform: translate(-50%, -50%);
}

.pviewBtn3 {
  position: relative;
}

.pviewBtn3 a {
  position: absolute;

  left: 55%;
  transform: translate(-50%, -50%);
}

.pviewBtn4 {
  position: relative;
}

.pviewBtn4 a {
  position: absolute;

  left: 65%;
  transform: translate(-50%, -50%);
}

.tooltip5 {
  position: relative;
  cursor: pointer;
  display: inline-block;
}

.tooltip5 img {
  width: 20px;
}

.description5 {
  display: none;
  position: absolute;
  padding: 10px;
  font-size: 12px;
  line-height: 1.6em;
  color: #fff;
  border-radius: 5px;
  background: #000;
  width: 300px;
}

.description5:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  border: 15px solid transparent;
  border-top: 15px solid #000;
  margin-left: -15px;
}

.tooltip5:hover .description5 {
  display: inline-block;
  top: -90px;
  left: -140px;
}

/* 点滅 */
.blinking {
  animation: blink 2s ease-in-out infinite alternate;
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* Position */
.popup {
  display: block;
}

.popup__content {
  display: none;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 5%;
  transform: translateX(-50%);
  width: 560px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  background-color: #fefefe;
  border-radius: 10px;
  padding: 10px;
}

.content__image-info::-webkit-scrollbar {
  width: 4px;
  background-color: #F5F5F5;
}

.content__image-info::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-color: #555353;
}

.content__image-info::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

.popup__content--show {
  display: block;
}


.popup__bg {
  position: fixed;
  display: none;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.popup__bg--show {
  display: block;
}

.content__image-position {
  position: relative;
  height: 60%;
  border: 2px dashed gray;
  border-radius: 5px;
  z-index: 3;
  cursor: pointer;
}

.content__image-info {
  padding: 10px 0;
}

.image-position__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.image-position__btn {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  color: #2f3542;
  border-radius: 50%;
  border: 1px solid #2f3542;
  font-size: 24px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease-in;
  cursor: pointer;
}
.image-position__btn:active,
.image-position__btn:hover {
  color: #ffffff;
  background-color: #2f3542;
}
.image-position__btn--prev {
  left: 2.5%;
}
.image-position__btn--next {
  right: 2.5%;
}
.info__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 5px 0;
  font-size: 12px;
}
.info__item--action {
  margin: 10px 0;
  justify-content: space-evenly;
}
.info__item--flex-start {
  justify-content: flex-start;
}
.info__item--content-center {
  justify-content: center;
}
.memo__btn {
  --bs-btn-color: #2f3542;
  --bs-btn-border-color: #2f3542;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #2f3542;
  --bs-btn-hover-border-color: #2f3542;
  --bs-btn-focus-shadow-rgb: 203, 12, 159;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #2f3542;
  --bs-btn-active-border-color: #2f3542;
  --bs-btn-active-shadow: none;
  --bs-btn-disabled-color: #2f3542;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #2f3542;
  --bs-gradient: none;
  display: inline-block;
  padding: 8px 12px;
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 1px solid var(--bs-btn-border-color);
  border-radius: 10px;
  background-color: #fff;
  transition: all 0.15s ease-in;
}
.memo__btn:hover,
.memo__btn:active {
  --bs-btn-bg-color: #2f3542;
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
}
.memo__btn--add {
  width: auto;
}
.memo__btn--submit {
  width: 48%;
  --bs-btn-bg-color: rgb(255, 153, 255);
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
  border-color: rgb(255, 153, 255);
}
.memo__btn--back {
  width: 48%;
  --bs-btn-bg-color: rgb(217, 217, 217);
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
  border-color: rgb(217, 217, 217);
}
.memo__btn--back:hover,
.memo__btn--back:active {
  --bs-btn-bg-color: rgb(183, 180, 180);
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
}
.memo__btn--submit:hover,
.memo__btn--submit:active {
  --bs-btn-bg-color: rgb(239, 42, 239);
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
}
.memo__number {
  font-size: 16px;
  background-color: #eccc68;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.item__label {
  width: 25%;
  margin-top: 5px;
  font-weight: 400;
  white-space: pre-line;
}
.item__setting {
  width: calc(75% - 120px);
}
.item__setting--line {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 5px 0;
}
.item__setting--line input {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.item__setting--line textarea {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.item__setting--line select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.item__setting--line input,
.item__setting--line select:nth-child(2) {
  margin-left: 5px;
}
.item__intended-date {
  margin-top: 5px;
}
.item__image {
  width: 100px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  cursor: pointer;
  margin-left: 20px;
}
.item__image.hover {
  outline: 2px dashed gray;
}
.image--s48 {
  height: 40px;
  width: 40px;
  z-index: 4;
  transform-origin: center 15px;
}
.pointer-drap {
  display: none;
  z-index: 4;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  background-color: #fefefe;
  border-radius: 10px;
  padding: 10px;
}
.pointer-drap__area {
  border: 2px dashed gray;
  border-radius: 10px;
}
.pointer-drap__area--img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.pointer-drap__area--pointer {
  position: relative;
  width: 40px;
  height: 40px;
}
.pointer-drap--show {
  display: block;
}
.pointer-drap__bg {
  z-index: 3;
  position: fixed;
  display: none;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}
.pointer-drap__bg--show {
  display: block;
}
.pointer-drap__action {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 10px;
}
.memo__btn--edit {
  width: 48%;
  --bs-btn-bg-color: rgb(255, 153, 255);
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
  border-color: rgb(255, 153, 255);
}
.memo__btn--save {
  width: 48%;
  --bs-btn-bg-color: rgb(217, 217, 217);
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
  border-color: rgb(217, 217, 217);
}
.memo__btn--save:hover,
.memo__btn--save:active {
  --bs-btn-bg-color: rgb(183, 180, 180);
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
}
.memo__btn--edit:hover,
.memo__btn--edit:active {
  --bs-btn-bg-color: rgb(239, 42, 239);
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
}

.baseFrame {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
}

.menuFrame {
  position: fixed;
  top: 0;
  /* 上下の固定位置を上から0pxにする */
  left: 0;
  /* 左右の固定位置を左から0pxにする */
  width: 100%;
  height: 75px;
  border: solid 0px;
  background-color: honeydew;
}

.mainFrame {
  width: 100%;
  margin: 0 1px;
  padding: 3px;
  padding-top: 80px;
  border: solid 0px;
  overflow: auto;
  background-color: snow;
}

.btnred-push {
  display: inline-block;
  max-width: 300px;
  text-align: left;
  background-color: #dc143c;
  font-size: 16px;
  color: #FFF;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 4px;
  border-bottom: 4px solid #dcdcdc;
}

.btnred-push:active {
  transform: translateY(4px);
  border-bottom: none;
}

.btngray-push {
  display: inline-block;
  max-width: 300px;
  text-align: left;
  background-color: #808080;
  font-size: 16px;
  color: #FFF;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 4px;
  border-bottom: 4px solid #dcdcdc;
}

.btngray-push:active {
  transform: translateY(4px);
  border-bottom: none;
}

.btnblue-push {
  display: inline-block;
  max-width: 300px;
  text-align: left;
  background-color: #0000cd;
  font-size: 16px;
  color: #FFF;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 4px;
  border-bottom: 4px solid #dcdcdc;
}

.btnblue-push:active {
  transform: translateY(4px);
  border-bottom: none;
}

.btnwhite-push {
  display: inline-block;
  max-width: 300px;
  text-align: left;
  background-color: #fffff0;
  font-size: 16px;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 4px;
  border-bottom: 4px solid #dcdcdc;
}

.btnwhite-push:active {
  transform: translateY(4px);
  border-bottom: none;
}

.table2 {
  border-collapse: collapse;
}

.table2 th,
.table2 td {
  border: 1px solid gray;
}


/* === ボタンを表示するエリア ============================== */
.switchArea {
  line-height: 52px;
  /* 1行の高さ          */
  letter-spacing: 0;
  /* 文字間             */
  text-align: center;
  /* 文字位置は中央     */
  font-size: 23px;
  /* 文字サイズ         */

  position: relative;
  /* 親要素が基点       */
  margin: auto;
  /* 中央寄せ           */
  width: 252px;
  /* ボタンの横幅       */
  background: #fff;
  /* デフォルト背景色   */
}

/* === チェックボックス ==================================== */
.switchArea input[type="checkbox"] {
  display: none;
  /* チェックボックス非表示 */
}

/* === チェックボックスのラベル（標準） ==================== */
.switchArea label {
  display: block;
  /* ボックス要素に変更 */
  box-sizing: border-box;
  /* 枠線を含んだサイズ */
  height: 52px;
  /* ボタンの高さ       */
  border: 2px solid #4da6ff;
  /* 未選択タブのの枠線 */
  border-radius: 26px;
  /* 角丸               */
}

/* === チェックボックスのラベル（ONのとき） ================ */
.switchArea input[type="checkbox"]:checked+label {
  border-color: #ff4d4d;
  /* 選択タブの枠線     */
}

/* === 表示する文字（標準） ================================ */
.switchArea label span:after {
  content: "OK";
  /* 表示する文字       */
  padding: 0 0 0 31px;
  /* 表示する位置       */
  color: #4da6ff;
  /* 文字色             */
}

/* === 表示する文字（ONのとき） ============================ */
.switchArea input[type="checkbox"]:checked+label span:after {
  content: "NG";
  /* 表示する文字       */
  padding: 0 31px 0 0;
  /* 表示する位置       */
  color: #ff4d4d;
  /* 文字色             */
}

/* === 丸部分のSTYLE（標準） =============================== */
.switchArea #swImg {
  position: absolute;
  /* 親要素からの相対位置*/
  width: 44px;
  /* 丸の横幅           */
  height: 44px;
  /* 丸の高さ           */
  background: #4da6ff;
  /* カーソルタブの背景 */
  top: 4px;
  /* 親要素からの位置   */
  left: 4px;
  /* 親要素からの位置   */
  border-radius: 22px;
  /* 角丸               */
  transition: .2s;
  /* 滑らか変化         */
}

/* === 丸部分のSTYLE（ONのとき） =========================== */
.switchArea input[type="checkbox"]:checked~#swImg {
  transform: translateX(200px);
  /* 丸も右へ移動       */
  background: #ff4d4d;
  /* カーソルタブの背景 */
}


/* form-nav */

.progressbar {
  display: flex;
  flex-wrap: wrap;
}

.progressbar .item {
  width: 9%;
  text-align: center;
  position: relative;
  align-items: center;
  justify-content: center;
  padding: 13px 0;
  line-height: 1.5;
  background: #F5F5F5;
  color: #999999;
}

.progressbar .item:not(:last-child)::before,
.progressbar .item:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 100%;
  content: '';
  border: 37px solid transparent;
  border-left: 20px solid #F5F5F5;
  margin: auto;
}

.progressbar .item:not(:last-child)::before {
  margin-left: 1px;
  border-left-color: #FFF;
}

@media screen and (max-width: 767px) {
  .progressbar .item {
    font-size: 11px;
    line-height: 1.4;
    padding: 10px 0;
  }

  .progressbar .item:not(:last-child)::before,
  .progressbar .item:not(:last-child)::after {
    border-width: 25px;
    border-left-width: 12px;
  }
}

/* active */

.progressbar .item.active {
  z-index: 1;
  background: #0070BD;
  color: #FFF;
}

.progressbar .item.active:not(:last-child)::after {
  border-left-color: #0070bd;
}

.progressbar .item.active:not(:last-child)::before {
  border-left: none;
}

/* 装飾 */

body {
  margin: 40px;
}

iframe.pview {
  width: 100vw;
  height: 100vh;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.pviewBtn1 {
  position: relative;
}

.pviewBtn1 a {
  position: absolute;

  left: 35%;
  transform: translate(-50%, -50%);
}

.pviewBtn2 {
  position: relative;
}

.pviewBtn2 a {
  position: absolute;

  left: 45%;
  transform: translate(-50%, -50%);
}

.pviewBtn3 {
  position: relative;
}

.pviewBtn3 a {
  position: absolute;

  left: 55%;
  transform: translate(-50%, -50%);
}

.pviewBtn4 {
  position: relative;
}

.pviewBtn4 a {
  position: absolute;

  left: 65%;
  transform: translate(-50%, -50%);
}

.tooltip5 {
  position: relative;
  cursor: pointer;
  display: inline-block;
}

.tooltip5 img {
  width: 20px;
}

.description5 {
  display: none;
  position: absolute;
  padding: 10px;
  font-size: 12px;
  line-height: 1.6em;
  color: #fff;
  border-radius: 5px;
  background: #000;
  width: 300px;
}

.description5:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  border: 15px solid transparent;
  border-top: 15px solid #000;
  margin-left: -15px;
}

.tooltip5:hover .description5 {
  display: inline-block;
  top: -90px;
  left: -140px;
}

/* 点滅 */
.blinking {
  animation: blink 2s ease-in-out infinite alternate;
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* Position */
.popup {
  display: block;
}

.popup__content {
  display: none;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 5%;
  transform: translateX(-50%);
  width: 560px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  background-color: #fefefe;
  border-radius: 10px;
  padding: 10px;
}

.content__image-info::-webkit-scrollbar {
  width: 4px;
  background-color: #F5F5F5;
}

.content__image-info::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-color: #555353;
}

.content__image-info::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

.popup__content--show {
  display: block;
}


.popup__bg {
  position: fixed;
  display: none;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.popup__bg--show {
  display: block;
}

.content__image-position {
  position: relative;
  height: 60%;
  border: 2px dashed gray;
  border-radius: 5px;
  z-index: 3;
  cursor: pointer;
}

.content__image-info {
  padding: 10px 0;
}

.image-position__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.image-position__btn {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  color: #2f3542;
  border-radius: 50%;
  border: 1px solid #2f3542;
  font-size: 24px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease-in;
  cursor: pointer;
}
.image-position__btn:active,
.image-position__btn:hover {
  color: #ffffff;
  background-color: #2f3542;
}
.image-position__btn--prev {
  left: 2.5%;
}
.image-position__btn--next {
  right: 2.5%;
}
.info__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 5px 0;
  font-size: 12px;
}
.info__item--action {
  margin: 10px 0;
  justify-content: space-evenly;
}
.info__item--flex-start {
  justify-content: flex-start;
}
.info__item--content-center {
  justify-content: center;
}
.memo__btn {
  --bs-btn-color: #2f3542;
  --bs-btn-border-color: #2f3542;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #2f3542;
  --bs-btn-hover-border-color: #2f3542;
  --bs-btn-focus-shadow-rgb: 203, 12, 159;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #2f3542;
  --bs-btn-active-border-color: #2f3542;
  --bs-btn-active-shadow: none;
  --bs-btn-disabled-color: #2f3542;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #2f3542;
  --bs-gradient: none;
  display: inline-block;
  padding: 8px 12px;
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 1px solid var(--bs-btn-border-color);
  border-radius: 10px;
  background-color: #fff;
  transition: all 0.15s ease-in;
}
.memo__btn:hover,
.memo__btn:active {
  --bs-btn-bg-color: #2f3542;
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
}
.memo__btn--add {
  width: auto;
}
.memo__btn--submit {
  width: 48%;
  --bs-btn-bg-color: rgb(255, 153, 255);
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
  border-color: rgb(255, 153, 255);
}
.memo__btn--back {
  width: 48%;
  --bs-btn-bg-color: rgb(217, 217, 217);
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
  border-color: rgb(217, 217, 217);
}
.memo__btn--back:hover,
.memo__btn--back:active {
  --bs-btn-bg-color: rgb(183, 180, 180);
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
}
.memo__btn--submit:hover,
.memo__btn--submit:active {
  --bs-btn-bg-color: rgb(239, 42, 239);
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
}
.memo__number {
  font-size: 16px;
  background-color: #eccc68;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.item__label {
  width: 25%;
  margin-top: 5px;
  font-weight: 400;
  white-space: pre-line;
}
.item__setting {
  width: calc(75% - 120px);
}
.item__setting--line {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 5px 0;
}
.item__setting--line input {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.item__setting--line textarea {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.item__setting--line select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.item__setting--line input,
.item__setting--line select:nth-child(2) {
  margin-left: 5px;
}
.item__intended-date {
  margin-top: 5px;
}
.item__image {
  width: 100px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  cursor: pointer;
  margin-left: 20px;
}
.item__image.hover {
  outline: 2px dashed gray;
}
.image--s48 {
  height: 40px;
  width: 40px;
  z-index: 4;
  transform-origin: center 15px;
}
.pointer-drap {
  display: none;
  z-index: 4;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  background-color: #fefefe;
  border-radius: 10px;
  padding: 10px;
}
.pointer-drap__area {
  border: 2px dashed gray;
  border-radius: 10px;
}
.pointer-drap__area--img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.pointer-drap__area--pointer {
  position: relative;
  width: 40px;
  height: 40px;
}
.pointer-drap--show {
  display: block;
}
.pointer-drap__bg {
  z-index: 3;
  position: fixed;
  display: none;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}
.pointer-drap__bg--show {
  display: block;
}
.pointer-drap__action {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 10px;
}
.memo__btn--edit {
  width: 48%;
  --bs-btn-bg-color: rgb(255, 153, 255);
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
  border-color: rgb(255, 153, 255);
}
.memo__btn--save {
  width: 48%;
  --bs-btn-bg-color: rgb(217, 217, 217);
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
  border-color: rgb(217, 217, 217);
}
.memo__btn--save:hover,
.memo__btn--save:active {
  --bs-btn-bg-color: rgb(183, 180, 180);
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
}
.memo__btn--edit:hover,
.memo__btn--edit:active {
  --bs-btn-bg-color: rgb(239, 42, 239);
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
}

.baseFrame {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
}

.menuFrame {
  position: fixed;
  top: 0;
  /* 上下の固定位置を上から0pxにする */
  left: 0;
  /* 左右の固定位置を左から0pxにする */
  width: 100%;
  height: 75px;
  border: solid 0px;
  background-color: honeydew;
}

.mainFrame {
  width: 100%;
  margin: 0 1px;
  padding: 3px;
  padding-top: 80px;
  border: solid 0px;
  overflow: auto;
  background-color: snow;
}

.btnred-push {
  display: inline-block;
  max-width: 300px;
  text-align: left;
  background-color: #dc143c;
  font-size: 16px;
  color: #FFF;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 4px;
  border-bottom: 4px solid #dcdcdc;
}

.btnred-push:active {
  transform: translateY(4px);
  border-bottom: none;
}

.btngray-push {
  display: inline-block;
  max-width: 300px;
  text-align: left;
  background-color: #808080;
  font-size: 16px;
  color: #FFF;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 4px;
  border-bottom: 4px solid #dcdcdc;
}

.btngray-push:active {
  transform: translateY(4px);
  border-bottom: none;
}

.btnblue-push {
  display: inline-block;
  max-width: 300px;
  text-align: left;
  background-color: #0000cd;
  font-size: 16px;
  color: #FFF;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 4px;
  border-bottom: 4px solid #dcdcdc;
}

.btnblue-push:active {
  transform: translateY(4px);
  border-bottom: none;
}

.btnwhite-push {
  display: inline-block;
  max-width: 300px;
  text-align: left;
  background-color: #fffff0;
  font-size: 16px;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 4px;
  border-bottom: 4px solid #dcdcdc;
}

.btnwhite-push:active {
  transform: translateY(4px);
  border-bottom: none;
}

.table2 {
  border-collapse: collapse;
}

.table2 th,
.table2 td {
  border: 1px solid gray;
}


/* === ボタンを表示するエリア ============================== */
.switchArea {
  line-height: 52px;
  /* 1行の高さ          */
  letter-spacing: 0;
  /* 文字間             */
  text-align: center;
  /* 文字位置は中央     */
  font-size: 23px;
  /* 文字サイズ         */

  position: relative;
  /* 親要素が基点       */
  margin: auto;
  /* 中央寄せ           */
  width: 252px;
  /* ボタンの横幅       */
  background: #fff;
  /* デフォルト背景色   */
}

/* === チェックボックス ==================================== */
.switchArea input[type="checkbox"] {
  display: none;
  /* チェックボックス非表示 */
}

/* === チェックボックスのラベル（標準） ==================== */
.switchArea label {
  display: block;
  /* ボックス要素に変更 */
  box-sizing: border-box;
  /* 枠線を含んだサイズ */
  height: 52px;
  /* ボタンの高さ       */
  border: 2px solid #4da6ff;
  /* 未選択タブのの枠線 */
  border-radius: 26px;
  /* 角丸               */
}

/* === チェックボックスのラベル（ONのとき） ================ */
.switchArea input[type="checkbox"]:checked+label {
  border-color: #ff4d4d;
  /* 選択タブの枠線     */
}

/* === 表示する文字（標準） ================================ */
.switchArea label span:after {
  content: "OK";
  /* 表示する文字       */
  padding: 0 0 0 31px;
  /* 表示する位置       */
  color: #4da6ff;
  /* 文字色             */
}

/* === 表示する文字（ONのとき） ============================ */
.switchArea input[type="checkbox"]:checked+label span:after {
  content: "NG";
  /* 表示する文字       */
  padding: 0 31px 0 0;
  /* 表示する位置       */
  color: #ff4d4d;
  /* 文字色             */
}

/* === 丸部分のSTYLE（標準） =============================== */
.switchArea #swImg {
  position: absolute;
  /* 親要素からの相対位置*/
  width: 44px;
  /* 丸の横幅           */
  height: 44px;
  /* 丸の高さ           */
  background: #4da6ff;
  /* カーソルタブの背景 */
  top: 4px;
  /* 親要素からの位置   */
  left: 4px;
  /* 親要素からの位置   */
  border-radius: 22px;
  /* 角丸               */
  transition: .2s;
  /* 滑らか変化         */
}

/* === 丸部分のSTYLE（ONのとき） =========================== */
.switchArea input[type="checkbox"]:checked~#swImg {
  transform: translateX(200px);
  /* 丸も右へ移動       */
  background: #ff4d4d;
  /* カーソルタブの背景 */
}


/* form-nav */

.progressbar {
  display: flex;
  flex-wrap: wrap;
}

.progressbar .item {
  width: 9%;
  text-align: center;
  position: relative;
  align-items: center;
  justify-content: center;
  padding: 13px 0;
  line-height: 1.5;
  background: #F5F5F5;
  color: #999999;
}

.progressbar .item:not(:last-child)::before,
.progressbar .item:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 100%;
  content: '';
  border: 37px solid transparent;
  border-left: 20px solid #F5F5F5;
  margin: auto;
}

.progressbar .item:not(:last-child)::before {
  margin-left: 1px;
  border-left-color: #FFF;
}

@media screen and (max-width: 767px) {
  .progressbar .item {
    font-size: 11px;
    line-height: 1.4;
    padding: 10px 0;
  }

  .progressbar .item:not(:last-child)::before,
  .progressbar .item:not(:last-child)::after {
    border-width: 25px;
    border-left-width: 12px;
  }
}

/* active */

.progressbar .item.active {
  z-index: 1;
  background: #0070BD;
  color: #FFF;
}

.progressbar .item.active:not(:last-child)::after {
  border-left-color: #0070bd;
}

.progressbar .item.active:not(:last-child)::before {
  border-left: none;
}

/* 装飾 */

body {
  margin: 40px;
}

iframe.pview {
  width: 100vw;
  height: 100vh;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.pviewBtn1 {
  position: relative;
}

.pviewBtn1 a {
  position: absolute;

  left: 35%;
  transform: translate(-50%, -50%);
}

.pviewBtn2 {
  position: relative;
}

.pviewBtn2 a {
  position: absolute;

  left: 45%;
  transform: translate(-50%, -50%);
}

.pviewBtn3 {
  position: relative;
}

.pviewBtn3 a {
  position: absolute;

  left: 55%;
  transform: translate(-50%, -50%);
}

.pviewBtn4 {
  position: relative;
}

.pviewBtn4 a {
  position: absolute;

  left: 65%;
  transform: translate(-50%, -50%);
}

.tooltip5 {
  position: relative;
  cursor: pointer;
  display: inline-block;
}

.tooltip5 img {
  width: 20px;
}

.description5 {
  display: none;
  position: absolute;
  padding: 10px;
  font-size: 12px;
  line-height: 1.6em;
  color: #fff;
  border-radius: 5px;
  background: #000;
  width: 300px;
}

.description5:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  border: 15px solid transparent;
  border-top: 15px solid #000;
  margin-left: -15px;
}

.tooltip5:hover .description5 {
  display: inline-block;
  top: -90px;
  left: -140px;
}

/* 点滅 */
.blinking {
  animation: blink 2s ease-in-out infinite alternate;
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* Position */
.popup {
  display: block;
}

.popup__content {
  display: none;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 5%;
  transform: translateX(-50%);
  width: 560px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  background-color: #fefefe;
  border-radius: 10px;
  padding: 10px;
}

.content__image-info::-webkit-scrollbar {
  width: 4px;
  background-color: #F5F5F5;
}

.content__image-info::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-color: #555353;
}

.content__image-info::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

.popup__content--show {
  display: block;
}


.popup__bg {
  position: fixed;
  display: none;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.popup__bg--show {
  display: block;
}

.content__image-position {
  position: relative;
  height: 60%;
  border: 2px dashed gray;
  border-radius: 5px;
  z-index: 3;
  cursor: pointer;
}

.content__image-info {
  padding: 10px 0;
}

.image-position__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.image-position__btn {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  color: #2f3542;
  border-radius: 50%;
  border: 1px solid #2f3542;
  font-size: 24px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease-in;
  cursor: pointer;
}
.image-position__btn:active,
.image-position__btn:hover {
  color: #ffffff;
  background-color: #2f3542;
}
.image-position__btn--prev {
  left: 2.5%;
}
.image-position__btn--next {
  right: 2.5%;
}
.info__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 5px 0;
  font-size: 12px;
}
.info__item--action {
  margin: 10px 0;
  justify-content: space-evenly;
}
.info__item--flex-start {
  justify-content: flex-start;
}
.info__item--content-center {
  justify-content: center;
}
.memo__btn {
  --bs-btn-color: #2f3542;
  --bs-btn-border-color: #2f3542;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #2f3542;
  --bs-btn-hover-border-color: #2f3542;
  --bs-btn-focus-shadow-rgb: 203, 12, 159;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #2f3542;
  --bs-btn-active-border-color: #2f3542;
  --bs-btn-active-shadow: none;
  --bs-btn-disabled-color: #2f3542;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #2f3542;
  --bs-gradient: none;
  display: inline-block;
  padding: 8px 12px;
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 1px solid var(--bs-btn-border-color);
  border-radius: 10px;
  background-color: #fff;
  transition: all 0.15s ease-in;
}
.memo__btn:hover,
.memo__btn:active {
  --bs-btn-bg-color: #2f3542;
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
}
.memo__btn--add {
  width: auto;
}
.memo__btn--submit {
  width: 48%;
  --bs-btn-bg-color: rgb(255, 153, 255);
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
  border-color: rgb(255, 153, 255);
}
.memo__btn--back {
  width: 48%;
  --bs-btn-bg-color: rgb(217, 217, 217);
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
  border-color: rgb(217, 217, 217);
}
.memo__btn--back:hover,
.memo__btn--back:active {
  --bs-btn-bg-color: rgb(183, 180, 180);
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
}
.memo__btn--submit:hover,
.memo__btn--submit:active {
  --bs-btn-bg-color: rgb(239, 42, 239);
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
}
.memo__number {
  font-size: 16px;
  background-color: #eccc68;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.item__label {
  width: 25%;
  margin-top: 5px;
  font-weight: 400;
  white-space: pre-line;
}
.item__setting {
  width: calc(75% - 120px);
}
.item__setting--line {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 5px 0;
}
.item__setting--line input {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.item__setting--line textarea {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.item__setting--line select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.item__setting--line input,
.item__setting--line select:nth-child(2) {
  margin-left: 5px;
}
.item__intended-date {
  margin-top: 5px;
}
.item__image {
  width: 100px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  cursor: pointer;
  margin-left: 20px;
}
.item__image.hover {
  outline: 2px dashed gray;
}
.image--s48 {
  height: 40px;
  width: 40px;
  z-index: 4;
  transform-origin: center 15px;
}
.pointer-drap {
  display: none;
  z-index: 4;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  background-color: #fefefe;
  border-radius: 10px;
  padding: 10px;
}
.pointer-drap__area {
  border: 2px dashed gray;
  border-radius: 10px;
}
.pointer-drap__area--img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.pointer-drap__area--pointer {
  position: relative;
  width: 40px;
  height: 40px;
}
.pointer-drap--show {
  display: block;
}
.pointer-drap__bg {
  z-index: 3;
  position: fixed;
  display: none;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}
.pointer-drap__bg--show {
  display: block;
}
.pointer-drap__action {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 10px;
}
.memo__btn--edit {
  width: 48%;
  --bs-btn-bg-color: rgb(255, 153, 255);
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
  border-color: rgb(255, 153, 255);
}
.memo__btn--save {
  width: 48%;
  --bs-btn-bg-color: rgb(217, 217, 217);
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
  border-color: rgb(217, 217, 217);
}
.memo__btn--save:hover,
.memo__btn--save:active {
  --bs-btn-bg-color: rgb(183, 180, 180);
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
}
.memo__btn--edit:hover,
.memo__btn--edit:active {
  --bs-btn-bg-color: rgb(239, 42, 239);
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
}

.baseFrame {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
}

.menuFrame {
  position: fixed;
  top: 0;
  /* 上下の固定位置を上から0pxにする */
  left: 0;
  /* 左右の固定位置を左から0pxにする */
  width: 100%;
  height: 75px;
  border: solid 0px;
  background-color: honeydew;
}

.mainFrame {
  width: 100%;
  margin: 0 1px;
  padding: 3px;
  padding-top: 80px;
  border: solid 0px;
  overflow: auto;
  background-color: snow;
}

.btnred-push {
  display: inline-block;
  max-width: 300px;
  text-align: left;
  background-color: #dc143c;
  font-size: 16px;
  color: #FFF;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 4px;
  border-bottom: 4px solid #dcdcdc;
}

.btnred-push:active {
  transform: translateY(4px);
  border-bottom: none;
}

.btngray-push {
  display: inline-block;
  max-width: 300px;
  text-align: left;
  background-color: #808080;
  font-size: 16px;
  color: #FFF;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 4px;
  border-bottom: 4px solid #dcdcdc;
}

.btngray-push:active {
  transform: translateY(4px);
  border-bottom: none;
}

.btnblue-push {
  display: inline-block;
  max-width: 300px;
  text-align: left;
  background-color: #0000cd;
  font-size: 16px;
  color: #FFF;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 4px;
  border-bottom: 4px solid #dcdcdc;
}

.btnblue-push:active {
  transform: translateY(4px);
  border-bottom: none;
}

.btnwhite-push {
  display: inline-block;
  max-width: 300px;
  text-align: left;
  background-color: #fffff0;
  font-size: 16px;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 4px;
  border-bottom: 4px solid #dcdcdc;
}

.btnwhite-push:active {
  transform: translateY(4px);
  border-bottom: none;
}

.table2 {
  border-collapse: collapse;
}

.table2 th,
.table2 td {
  border: 1px solid gray;
}


/* === ボタンを表示するエリア ============================== */
.switchArea {
  line-height: 52px;
  /* 1行の高さ          */
  letter-spacing: 0;
  /* 文字間             */
  text-align: center;
  /* 文字位置は中央     */
  font-size: 23px;
  /* 文字サイズ         */

  position: relative;
  /* 親要素が基点       */
  margin: auto;
  /* 中央寄せ           */
  width: 252px;
  /* ボタンの横幅       */
  background: #fff;
  /* デフォルト背景色   */
}

/* === チェックボックス ==================================== */
.switchArea input[type="checkbox"] {
  display: none;
  /* チェックボックス非表示 */
}

/* === チェックボックスのラベル（標準） ==================== */
.switchArea label {
  display: block;
  /* ボックス要素に変更 */
  box-sizing: border-box;
  /* 枠線を含んだサイズ */
  height: 52px;
  /* ボタンの高さ       */
  border: 2px solid #4da6ff;
  /* 未選択タブのの枠線 */
  border-radius: 26px;
  /* 角丸               */
}

/* === チェックボックスのラベル（ONのとき） ================ */
.switchArea input[type="checkbox"]:checked+label {
  border-color: #ff4d4d;
  /* 選択タブの枠線     */
}

/* === 表示する文字（標準） ================================ */
.switchArea label span:after {
  content: "OK";
  /* 表示する文字       */
  padding: 0 0 0 31px;
  /* 表示する位置       */
  color: #4da6ff;
  /* 文字色             */
}

/* === 表示する文字（ONのとき） ============================ */
.switchArea input[type="checkbox"]:checked+label span:after {
  content: "NG";
  /* 表示する文字       */
  padding: 0 31px 0 0;
  /* 表示する位置       */
  color: #ff4d4d;
  /* 文字色             */
}

/* === 丸部分のSTYLE（標準） =============================== */
.switchArea #swImg {
  position: absolute;
  /* 親要素からの相対位置*/
  width: 44px;
  /* 丸の横幅           */
  height: 44px;
  /* 丸の高さ           */
  background: #4da6ff;
  /* カーソルタブの背景 */
  top: 4px;
  /* 親要素からの位置   */
  left: 4px;
  /* 親要素からの位置   */
  border-radius: 22px;
  /* 角丸               */
  transition: .2s;
  /* 滑らか変化         */
}

/* === 丸部分のSTYLE（ONのとき） =========================== */
.switchArea input[type="checkbox"]:checked~#swImg {
  transform: translateX(200px);
  /* 丸も右へ移動       */
  background: #ff4d4d;
  /* カーソルタブの背景 */
}


/* form-nav */

.progressbar {
  display: flex;
  flex-wrap: wrap;
}

.progressbar .item {
  width: 9%;
  text-align: center;
  position: relative;
  align-items: center;
  justify-content: center;
  padding: 13px 0;
  line-height: 1.5;
  background: #F5F5F5;
  color: #999999;
}

.progressbar .item:not(:last-child)::before,
.progressbar .item:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 100%;
  content: '';
  border: 37px solid transparent;
  border-left: 20px solid #F5F5F5;
  margin: auto;
}

.progressbar .item:not(:last-child)::before {
  margin-left: 1px;
  border-left-color: #FFF;
}

@media screen and (max-width: 767px) {
  .progressbar .item {
    font-size: 11px;
    line-height: 1.4;
    padding: 10px 0;
  }

  .progressbar .item:not(:last-child)::before,
  .progressbar .item:not(:last-child)::after {
    border-width: 25px;
    border-left-width: 12px;
  }
}

/* active */

.progressbar .item.active {
  z-index: 1;
  background: #0070BD;
  color: #FFF;
}

.progressbar .item.active:not(:last-child)::after {
  border-left-color: #0070bd;
}

.progressbar .item.active:not(:last-child)::before {
  border-left: none;
}

/* 装飾 */

body {
  margin: 40px;
}

iframe.pview {
  width: 100vw;
  height: 100vh;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.pviewBtn1 {
  position: relative;
}

.pviewBtn1 a {
  position: absolute;

  left: 35%;
  transform: translate(-50%, -50%);
}

.pviewBtn2 {
  position: relative;
}

.pviewBtn2 a {
  position: absolute;

  left: 45%;
  transform: translate(-50%, -50%);
}

.pviewBtn3 {
  position: relative;
}

.pviewBtn3 a {
  position: absolute;

  left: 55%;
  transform: translate(-50%, -50%);
}

.pviewBtn4 {
  position: relative;
}

.pviewBtn4 a {
  position: absolute;

  left: 65%;
  transform: translate(-50%, -50%);
}

.tooltip5 {
  position: relative;
  cursor: pointer;
  display: inline-block;
}

.tooltip5 img {
  width: 20px;
}

.description5 {
  display: none;
  position: absolute;
  padding: 10px;
  font-size: 12px;
  line-height: 1.6em;
  color: #fff;
  border-radius: 5px;
  background: #000;
  width: 300px;
}

.description5:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  border: 15px solid transparent;
  border-top: 15px solid #000;
  margin-left: -15px;
}

.tooltip5:hover .description5 {
  display: inline-block;
  top: -90px;
  left: -140px;
}

/* 点滅 */
.blinking {
  animation: blink 2s ease-in-out infinite alternate;
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* Position */
.popup {
  display: block;
}

.popup__content {
  display: none;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 5%;
  transform: translateX(-50%);
  width: 560px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  background-color: #fefefe;
  border-radius: 10px;
  padding: 10px;
}

.content__image-info::-webkit-scrollbar {
  width: 4px;
  background-color: #F5F5F5;
}

.content__image-info::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-color: #555353;
}

.content__image-info::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

.popup__content--show {
  display: block;
}


.popup__bg {
  position: fixed;
  display: none;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.popup__bg--show {
  display: block;
}

.content__image-position {
  position: relative;
  height: 60%;
  border: 2px dashed gray;
  border-radius: 5px;
  z-index: 3;
  cursor: pointer;
}

.content__image-info {
  padding: 10px 0;
}

.image-position__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.image-position__btn {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  color: #2f3542;
  border-radius: 50%;
  border: 1px solid #2f3542;
  font-size: 24px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease-in;
  cursor: pointer;
}
.image-position__btn:active,
.image-position__btn:hover {
  color: #ffffff;
  background-color: #2f3542;
}
.image-position__btn--prev {
  left: 2.5%;
}
.image-position__btn--next {
  right: 2.5%;
}
.info__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 5px 0;
  font-size: 12px;
}
.info__item--action {
  margin: 10px 0;
  justify-content: space-evenly;
}
.info__item--flex-start {
  justify-content: flex-start;
}
.info__item--content-center {
  justify-content: center;
}
.memo__btn {
  --bs-btn-color: #2f3542;
  --bs-btn-border-color: #2f3542;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #2f3542;
  --bs-btn-hover-border-color: #2f3542;
  --bs-btn-focus-shadow-rgb: 203, 12, 159;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #2f3542;
  --bs-btn-active-border-color: #2f3542;
  --bs-btn-active-shadow: none;
  --bs-btn-disabled-color: #2f3542;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #2f3542;
  --bs-gradient: none;
  display: inline-block;
  padding: 8px 12px;
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 1px solid var(--bs-btn-border-color);
  border-radius: 10px;
  background-color: #fff;
  transition: all 0.15s ease-in;
}
.memo__btn:hover,
.memo__btn:active {
  --bs-btn-bg-color: #2f3542;
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
}
.memo__btn--add {
  width: auto;
}
.memo__btn--submit {
  width: 48%;
  --bs-btn-bg-color: rgb(255, 153, 255);
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
  border-color: rgb(255, 153, 255);
}
.memo__btn--back {
  width: 48%;
  --bs-btn-bg-color: rgb(217, 217, 217);
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
  border-color: rgb(217, 217, 217);
}
.memo__btn--back:hover,
.memo__btn--back:active {
  --bs-btn-bg-color: rgb(183, 180, 180);
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
}
.memo__btn--submit:hover,
.memo__btn--submit:active {
  --bs-btn-bg-color: rgb(239, 42, 239);
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
}
.memo__number {
  font-size: 16px;
  background-color: #eccc68;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.item__label {
  width: 25%;
  margin-top: 5px;
  font-weight: 400;
  white-space: pre-line;
}
.item__setting {
  width: calc(75% - 120px);
}
.item__setting--line {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 5px 0;
}
.item__setting--line input {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.item__setting--line textarea {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.item__setting--line select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.item__setting--line input,
.item__setting--line select:nth-child(2) {
  margin-left: 5px;
}
.item__intended-date {
  margin-top: 5px;
}
.item__image {
  width: 100px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  cursor: pointer;
  margin-left: 20px;
}
.item__image.hover {
  outline: 2px dashed gray;
}
.image--s48 {
  height: 40px;
  width: 40px;
  z-index: 4;
  transform-origin: center 15px;
}
.pointer-drap {
  display: none;
  z-index: 4;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  background-color: #fefefe;
  border-radius: 10px;
  padding: 10px;
}
.pointer-drap__area {
  border: 2px dashed gray;
  border-radius: 10px;
}
.pointer-drap__area--img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.pointer-drap__area--pointer {
  position: relative;
  width: 40px;
  height: 40px;
}
.pointer-drap--show {
  display: block;
}
.pointer-drap__bg {
  z-index: 3;
  position: fixed;
  display: none;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}
.pointer-drap__bg--show {
  display: block;
}
.pointer-drap__action {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 10px;
}
.memo__btn--edit {
  width: 48%;
  --bs-btn-bg-color: rgb(255, 153, 255);
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
  border-color: rgb(255, 153, 255);
}
.memo__btn--save {
  width: 48%;
  --bs-btn-bg-color: rgb(217, 217, 217);
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
  border-color: rgb(217, 217, 217);
}
.memo__btn--save:hover,
.memo__btn--save:active {
  --bs-btn-bg-color: rgb(183, 180, 180);
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
}
.memo__btn--edit:hover,
.memo__btn--edit:active {
  --bs-btn-bg-color: rgb(239, 42, 239);
  --bs-btn-hover-color: #fff;
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-bg-color);
}

