html {
  overflow-y: scroll;
  font-size: 62.5%;
}

body {
  font-size: 1.5rem;
}

h1 {
  font-size: 2em;
  font-weight: bold;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  background-color: #000;
  font-size: 1rem;
  height: 30px;
  z-index: 10;
}

.header__inner {
  display: flex;
  align-items: center;
  padding: 0 16px;
  height: 70px;
  text-align: left;
}

.header__logo {
  border-right: 1px solid #333;
  padding-right: 10px;
  margin-right: 10px;
}

.header__logo-image {
  max-width: 100%;
}

.header__text {
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 13px;
  font-size: 1.3rem;
}

.header__link {
  /* margin-left: 40px; */
}

.header__link-list {
  display: flex;
  list-style: none;
}

.header__link-list-item {
  margin-left: 2rem;
}

.header__link ul li a:hover {
  transition: opacity 0.3s;
  color: #4a4a4a;
}

.header__navi a:hover {
  transition: opacity 0.3s;
  color: #4a4a4a;
}

.header__navi {
  display: flex;
  margin-left: auto;
}

.header__navi a {
  text-decoration: none;
  color: #222;
}

.header__btn--howto {
  display: inline-block;
  cursor: pointer;
  margin-right: 2rem;
  transition: opacity 0.3s;
}

.header__btn--login {
  display: inline-block;
  cursor: pointer;
  transition: opacity 0.3s;
}

.header__btn--login--mypage {
  display: inline-block;
  cursor: pointer;
  transition: opacity 0.3s;
  font-size: 1.5rem;
  left: calc(100vw);
}

/* custom */
.custom-header {
  background-color: black;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-header__title {
  color: #fff;
  font-size: 3rem;
  margin: auto;
  text-align: center;
}

.custom-body {
  display: flex;
  height: calc(100vh - 150px);
  background-color: #f6f6f6;
  /* opacity: 0; */
}

.custom-body-left {
  flex: 3.5;
  display: flex;
  flex-direction: column;
  max-width: 700px;
  min-width: 487px;
}

.custom-body-center {
  flex: 1;
}

.custom-body-right {
  flex: 5;
}

/* custom Left */
.custom-item {
  display: flex;
  padding: 2rem;
}

.custom-item__type {
  flex: 1;
}

.custom-item__type-content {
  font-size: 3rem;
}

.custom-item__price {
  flex: 4;
  text-align: end;
}

.custom-item__price-content {
  font-size: 3rem;
}

.custom-item__detail {
  flex: 1;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  margin: auto;
  padding: 0.5rem 0;
  border: 1px solid #000;
  color: #000;
  border-radius: 100vh;
}

.custom-btn {
  display: flex;
}

.custom-btn__save,
.custom-btn__share {
  display: inline-block;
  font-size: 1.5rem;
  text-align: center;
  text-decoration: none;
  width: 43%;
  margin: auto;
  padding: 0.5rem 0 0 20px;

  border: 1px solid #000;
  color: #000;
  border-radius: 100vh;
  background-color: #fff;
  cursor: pointer;
}

.custom-btn__save::before {
  content: "\f005";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 8px;
  color: transparent;
  -webkit-text-stroke: 1px black;
}

.custom-btn__share::before {
  content: "\e09a";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 8px;
}

.custom-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 1.5rem 2rem;
}

.custom-menu__item {
  width: 21%;
  max-width: 110px;
  height: 110px;
  color: #fff;
  text-align: center;
  background-color: #404040;
  border-radius: 1vh;

  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px;
}

.custom-step-btn {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  padding: 2rem;
}

.custom-step-btn__back {
  font-size: 2rem;
  width: 49%;
  background-color: #cecece;
  padding: 1rem 2rem;
  text-align: center;
  position: relative;
  color: #000;
  text-decoration: none;
}

.custom-step-btn__back:hover {
  color: #cecece;
  background-color: #000;
}

.custom-step-btn__back::before {
  content: "\2190";
  margin-right: 10px;
  font-size: 3rem;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.custom-step-btn__next__disabled {
  font-size: 2rem;
  width: 49%;
  background-color: #a4a4a42e;
  padding: 1rem 2rem;
  text-align: center;
  position: relative;
  color: #b2b1b1;
  text-decoration: none;
  cursor: not-allowed;
}

.custom-step-btn__next__disabled::after {
  content: "\2192";
  margin-left: 10px;
  font-size: 3rem;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.custom-step-btn__next {
  font-size: 2rem;
  width: 49%;
  background-color: #cecece;
  padding: 1rem 2rem;
  text-align: center;
  position: relative;
  color: #000;
  text-decoration: none;
  display: none;
}

.custom-step-btn__next:hover {
  color: #cecece;
  background-color: #000;
}

.custom-step-btn__next::after {
  content: "\2192";
  margin-left: 10px;
  font-size: 3rem;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* custom Center */
.custom-image__list {
  padding: 2rem;
}

.custom-image__item {
  width: 100%;
  margin-bottom: 1rem;
}

/* custom Left */
.custom-preview {
  padding: 2rem;
}

.custom-preview__image {
  /* object-fit: cover; 
  width: 100%; 
  height: 100%;
  */
  height: calc(100vh - 180px);
}

/* drawer */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  padding: 20px;
  overflow-y: auto;
}

.menu-button {
  background-color: #4a4a4a;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
  height: 100px;
  position: relative;
}

.menu-button--blue {
  /* background-color: #4a4a4a; */
  background-color: #015490;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
  height: 100px;
}

.custom-drawer,
.onname-drawer {
  position: fixed;
  bottom: 0;
  /* left: -40%; */
  left: -80%;
  /* width: 40%; */
  width: 526px;
  height: calc(100vh - 120px);
  background-color: #fff;
  color: #333;
  z-index: 90;

  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
  transition: left 0.23s ease;
  top: 170px;
}

.custom-drawer-contents {
  overflow-y: auto;
  height: calc(100vh - 215px);
}

.onname-drawer-contents {
  overflow-y: scroll;
  height: calc(100vh - 270px);
  margin-left: 20px;
}

.custom-drawer.open {
  left: 0;
}
.onname-drawer.open {
  left: 0;
}

.custom-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #404040;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
}

.onname-drawer__item-body {
  margin-right: 20px;
}

.onname-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #015490;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
}

.onname-drawer__radio-btn {
  margin: 0 20px;
  border-bottom: 1px #c1c1c1 solid;
  margin-bottom: 2rem;
}

.custom-drawer__title,
.onname-drawer__title {
  margin-left: auto;
}

.custom-drawer__close,
.onname-drawer__close {
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
  margin-right: 5px;
  margin-left: auto;
}

.custom-drawer-attention {
  display: flex;
  justify-content: end;
}

.custom-drawer-attention__wrap {
  padding: 10px 20px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
}

.onname-drawer-attention__wrap {
  padding: 15px 20px 10px;
  font-size: 1.5rem;
  width: 100%;
  text-align: right;
  align-items: center;
}

.icon__info {
  color: #fff;
  background-color: #000;
  width: 18px;
  height: 18px;
  text-align: center;
  font-weight: bold;
  border-radius: 50%;
  margin-right: 5px;
}

.custom-drawer__item {
  /* margin-top: 20px; */
}

.custom-drawer__item-header {
  font-size: 1.8rem;
  font-weight: bold;
  background: #e3e3e3;
  padding: 13px 20px;
  height: 40px;
}

.custom-drawer__item-body {
  padding: 0 20px;
}

.custom-drawer__item-attention {
  text-align: right;
  padding: 10px 20px 30px 0;
  display: flex;
  justify-content: end;
}

.custom-drawer-sub-item {
  display: flex;
  padding: 20px 0;
}

.custom-drawer-sub-item__title {
  flex: 1;
  font-weight: bold;
  padding-top: 13px;
}

.custom-drawer-sub-item__content {
  flex: 4;
  width: 100%;
}

.custom-drawer-sub-item__content--color {
  flex: 4;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  /* gap: 20px; */
}

.custom-drawer-sub-item__btn {
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  margin: 0 auto 2rem;
  padding: 0.5rem 0;
  border: 1px solid #000;
  color: #000;
  border-radius: 100vh;
  max-width: 200px;
  cursor: pointer;
}

.color-palette {
  text-align: center;
}

.color-palette__circle {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: auto;
}
/* 
.color-palette__circle--eorange {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #db0f07;
  margin: auto;
}

.color-palette__circle--ltan {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #fbc639;
  margin: auto;
}

.color-palette__circle--black {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #000;
  margin: auto;
}

.color-palette__circle--blue {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #0014d0;
  margin: auto;
}

.color-palette__circle--red {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #b2000c;
  margin: auto;
}

.color-palette__circle--navy {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #00023b;
  margin: auto;
}

.color-palette__circle--orange {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #ff4d00;
  margin: auto;
}

.color-palette__circle--lime {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #f8ec50;
  margin: auto;
}

.color-palette__circle--brick {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #7d1e21;
  margin: auto;
} */

.color-palette__text {
  margin-top: 5px;
  font-size: 1rem;
}

.custom-drawer-accordion {
  background-color: #fff;
  cursor: pointer;
  padding: 1rem;
  border: none;
  width: 100%;
  text-align: left;
  border-top: 1px solid #dfe6ec;
  border-bottom: 1px solid #dfe6ec;
  outline: none;
  transition: 0.4s;
  display: flex;
  box-shadow: 1px 1px 1px #333;
  /* border-right: 4px solid red; */
}

.panel {
  padding: 0 20px;
  display: none;
  overflow: hidden;
}

.active {
  display: block;
}
.custom-drawer-accordion.active {
  background-color: #efefef;
}

.modal-container-movie {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 50%);
  padding: 40px 20px;
  overflow: auto;
  transition: 0.3s;
  box-sizing: border-box;
}

/*モーダル本体の擬似要素の指定*/
.modal-container-movie:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container-movie.active {
  opacity: 1;
  visibility: visible;
}

/*モーダル枠の指定*/
.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 500px;
  width: 90%;
}

/*モーダルを閉じるボタンの指定*/
.modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -40px;
  right: -40px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/*モーダル内のコンテンツの指定*/
.modal-content {
  background: #fff;
  text-align: left;
  padding: 30px;
}

.el-collapse-item__header_inactive {
  color: #222;
  background-color: #e8e8e8;
  font-size: 30px;
  font-size: 3rem;
  text-align: center;
  padding: 2rem;
  border-bottom: 1px solid #fff;
  height: auto;
  line-height: inherit;
}

.is-tab-active {
  color: #222;
  font-weight: 700;
  border-bottom: 5px solid #000;
}

.custom-drawer-attention__text {
  cursor: pointer;
}

#lockedScreen {
  z-index: 99999;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-image: url("/img/loading.gif");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
  background-color: black;
  opacity: 0.6;
}

.web-thumbnail,
.option-thumbnail {
  width: 100%;
}

.selectWeb {
  display: inline-block;
  width: 150px;
  position: relative;
  cursor: pointer;
  margin-right: 10px;
}
.custom-drawer-sub-item__content--label {
  flex: 4;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.custom-drawer-sub-item__content--web {
  flex: 3;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.custom-drawer-sub-item__content--option {
  flex: 2;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.option_discription {
  text-align: left;
  padding-bottom: 20px;
}

.option_discription label {
  font-size: 13px;
}

.modal-back {
  display: none;
  background-color: #000000b5;
}
.modal-back-no-close {
  display: none;
  background-color: #000000b5;
}

.modal-open {
  cursor: pointer;
}

.input-error {
  color: red;
  font-weight: bold;
}

.oyaweb-panel {
  padding-top: 20px;
}

.ui-dialog .ui-dialog-titlebar {
  display: none;
}

.top10 {
  font-size: 13px;
}

.thumbnail-preview {
  width: 480px;
  height: 480px;
  background-color: white;
}

.thumbnail-preview-front {
  top: 0;
}

.thumbnail-preview-back {
  top: 480px;
}

.thumbnail-preview-side {
  top: 960px;
}

.pdf_label {
  font-weight: bold;
}

.pdf_input {
  margin: 10px 0 20px;
}

.inputError {
  background-color: #ffe7e7 !important;
}

@media (max-width: 1919px) {
  .custom-image__item {
    min-width: 130px;
  }

  .custom-body-right {
    min-width: 600px;
  }
}
