@charset 'UTF-8';

/* modal */

.white-popup {
  background-color: #fff;
  margin: 0 auto;
  padding: 1rem;
  position: relative;
  width: 90%;
}

.mfp-bg {
  position: fixed !important;
}

.mfp-bg.-hide {
  opacity: 0;
}

.mfp-wrap {
  top: 0 !important;
}

.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  -webkit-transform: scale(.8);
  -ms-transform: scale(.8);
  transform: scale(.8);
}

.mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: .8;
}

.mfp-zoom-in.mfp-removing .mfp-with-anim {
  opacity: 0;
  -webkit-transform: scale(.8);
  -ms-transform: scale(.8);
  transform: scale(.8);
}

.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

.mfp-zoom-out .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
}

.mfp-zoom-out.mfp-bg {
  opacity: 0;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.mfp-zoom-out.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.mfp-zoom-out.mfp-ready.mfp-bg {
  opacity: .8;
}

.mfp-zoom-out.mfp-removing .mfp-with-anim {
  opacity: 0;
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
}

.mfp-zoom-out.mfp-removing.mfp-bg {
  opacity: 0;
}

.mfp-move-from-top .mfp-content {
  vertical-align: top;
}

.mfp-move-from-top .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all .2s;
  transition: all .2s;
  -webkit-transform: translateY(-100px);
  -ms-transform: translateY(-100px);
  transform: translateY(-100px);
}

.mfp-move-from-top.mfp-bg {
  opacity: 0;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.mfp-move-from-top.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.mfp-move-from-top.mfp-ready.mfp-bg {
  opacity: .8;
}

.mfp-move-from-top.mfp-removing .mfp-with-anim {
  opacity: 0;
  -webkit-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  transform: translateY(-50px);
}

.mfp-move-from-top.mfp-removing.mfp-bg {
  opacity: 0;
}

.modal {
  background-color: #fff;
  border: 1px solid #d0cad6;
  border-radius: 6px;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  padding: 1.5rem 1rem;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
  -webkit-transform: scale(.5);
  -ms-transform: scale(.5);
  transform: scale(.5);
  max-width: 600px;
}

@media only screen and (min-width: 600px) {
  .modal {
    margin-bottom: 2rem;
  }
}

.modal.-active {
  opacity: 1;
  display: block; /* マイナーチェンジで表示崩れるので暫定対応 */
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

@media only screen and (min-width: 600px) {
  .modal {
    margin-top: 2rem;
    padding: 1.5rem;
  }
}

.modal.modal__notice {
  max-width: 800px;
}

.modal__title__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.modal__title__wrap a {
  color: #7500ee;
  font-size: 12px;
  line-height: 22px;
}

@media only screen and (min-width: 1024px) {
  .modal__title__wrap a {
    font-size: 14px;
    line-height: 24px;
  }
}

.modal__title__wrap a::before {
  content: '\f304';
  display: inline-block;
  font-family: 'Font Awesome 5 Pro';
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  padding-right: .5rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: auto;
}

.modal__title {
  font-size: 20px;
  line-height: 30px;
  padding: .5rem 0;
}

@media only screen and (min-width: 1024px) {
  .modal__title {
    font-size: 28px;
    line-height: 38px;
  }
}

.modal__sub-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  padding: .5rem 0;
}

.modal__sub-title a {
  color: #7500ee;
}

.modal__sub-title__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.modal__detail {
  background-color: #fff;
  border: 1px solid #d0cad6;
  border-radius: 6px;
  font-size: 12px;
  line-height: 22px;
  line-height: 1.25rem;
  margin-bottom: .2rem;
  padding: .5rem;
}

.modal__content {
  margin-bottom: 1rem;
}

@media only screen and (min-width: 600px) {
  .modal__content {
    margin-bottom: 2rem;
  }
}

@media only screen and (min-width: 1024px) {
  .modal__detail {
    font-size: 14px;
    line-height: 24px;
  }
}

.modal__detail2 {
  padding: 0;
}

.modal__detail2 .report__table {
  margin: 0 0 1rem;
}

@media only screen and (min-width: 600px) {
  .modal__detail2 .report__table {
    margin-bottom: 2rem;
  }
}

.modal__scroll__content {
  overflow-x: hidden;
	overflow-y: scroll;
  max-height: 30rem;
  border: 1px solid #d0cad6;
  border-radius: 6px;
}

.modal__checkbox {
  padding: .5rem .5rem .5rem 2rem;
}
.modal__checkbox input {
  display: none;
}
.modal__checkbox input:checked+p::before {
  background-color: #7500ee;
}
.modal__checkbox input:checked+p::after {
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  content: '';
  display: block;
  position: absolute;
  -webkit-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  transform: rotate(40deg);
  top: 4px;
  left: -19px;
  width: 6px;
  height: 10px;
}
.modal__checkbox__text {
  cursor: pointer;
  position: relative;
}
.modal__checkbox__text::before {
  border: 1px solid #7500ee;
  border-radius: 2px;
  content: '';
  display: block;
  position: absolute;
  top: 2px;
  left: -1.5rem;
  width: 1rem;
  height: 1rem;
}

.modal__search{
  box-sizing: border-box;
  position: relative;
  border: 1px solid #d0cad6;
  display: block;
  padding: 3px 10px;
  border-radius: 20px;
  height: 2.5rem;
  width: 100%;
  overflow: hidden;
}
.modal__search__input{
  background-color: #fff;
  box-shadow: none;
  border: none;
  height: 2.0em;
  width: 95%;
  color: #322341;
  font-size: 16px;
  line-height: 26px;
  line-height: 2.5rem;
  padding: 0 0 0 .5rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.modal__search__input:focus, .modal__search__input:hover {
  outline: 0;
  box-shadow: none;
  border: none;
}
.modal__search__btn{
  cursor: pointer;
  font-family: FontAwesome;
  font-size: 1.3em;
  border: none;
  background: none;
  color: #7500ee;
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  right: 10px;
  top: 0;
  outline : none;
}

.modal__result {
  padding: .2rem;
  text-align: right;
}

.modal__list {
  padding: .25rem 0;
}

.modal__list dt {
  font-weight: 500;
}

.modal__list dd {
  color: #9d97a3;
}

.modal__list2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: .25rem 0;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.modal__list2 dt {
  font-weight: 500;
  width: 40%;
}

.modal__list2 dd {
  width: 60%;
}

.modal__list3 li {
  border-bottom: 1px solid #e0e0e0;
  padding: 1rem 0;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

.modal__list3 li:last-child {
  border: none;
}

@media only screen and (min-width: 1024px) {
  .modal__list3 li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
  }
}

.modal__list3 span {
  color: #322341;
  display: block;
}

@media only screen and (min-width: 1024px) {
  .modal__list3 span {
    display: inline;
    padding-right: 1rem;
  }
}

.modal__list3 a {
  display: block;
  width: 100%;
  position: relative;
  padding: 0 1rem;
}

.modal__list3 a::after {
  content: '\f105';
  display: inline-block;
  font-family: 'Font Awesome 5 Pro';
  font-weight: 300;
  font-style: normal;
  font-variant: normal;
  position: absolute;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
  right: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: auto;
}

@media only screen and (min-width: 1024px) {
  .modal__list3 a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .modal__list3 a:hover {
    color: #7500ee;
  }
}

.modal__list4 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: .25rem 0;

  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.modal__list4 dt {
  font-weight: 500;
  width: 2rem;
}
.modal__list4 dd {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;

  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.modal__list4 a {
  color: #7500ee;
}

.modal__date {
  color: #9d97a3;
  font-size: 12px;
  line-height: 22px;
}

@media only screen and (min-width: 1024px) {
  .modal__date {
    font-size: 14px;
    line-height: 24px;
  }
}

.modal__text {
  padding: .5rem 0;
}

.modal__text.-alt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.modal__text.-bold {
  color: #c51d86;
  font-weight: 500;
}

.modal__cap {
  color: #9d97a3;
  font-size: 10px;
  line-height: 20px;
  line-height: 1rem;
}

@media only screen and (min-width: 1024px) {
  .modal__footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}

.modal__footer div {
  margin: 0 auto;
  padding: .5rem;
}

@media only screen and (min-width: 1024px) {
  .modal__footer div {
    margin: 0 1rem;
    padding: .5rem 0;
    width: 50%;
  }
  .modal__footer div.-auto {
    width: auto;
  }
}

.modal input[type=submit].modal__btn,
.modal__btn {
  background-color: #7500ee;
  border: 1px solid #7500ee;
  border-radius: 20px;
  color: #fff;
  display: block;
  font-size: 14px;
  line-height: 24px;
  line-height: 2rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
  width: 100%;
  max-width: 19em;
  height: 2rem;
}

@media only screen and (min-width: 600px) {
  .modal input[type=submit].modal__btn,
  .modal__btn {
    font-size: 16px;
    line-height: 26px;
    line-height: 2.375rem;
    height: 2.5rem;
  }
}

@media only screen and (min-width: 1024px) {
  .modal input[type=submit].modal__btn,
  .modal__btn {
    padding: 0 2rem;
    width: auto;
  }
}

.modal input[type=submit].modal__btn:hover,
.modal__btn:hover {
  text-decoration: none;
}

@media only screen and (min-width: 1024px) {
  .modal input[type=submit].modal__btn:hover,
  .modal__btn:hover {
    cursor: pointer;
  }
}

@media only screen and (min-width: 1024px) {
  .modal input[type=submit].modal__btn:hover,
  .modal__btn:hover {
    background-color: #8f22ff;
    border-color: #7500ee;
  }
}

.modal input[type=submit].modal__btn:disabled,
.modal__btn:disabled,
.modal__btn.-disabled {
    cursor: default;

    color: #c8ced4;
    border: 1px solid #e9ecef;
    background-color: #e9ecef;
}
@media only screen and (min-width: 960px) {
    .modal input[type=submit].modal__btn:disabled:hover,
    .modal__btn:disabled:hover {
        color: #c8ced4;
        border: 1px solid #e9ecef;
        background-color: #e9ecef;
    }
}

.modal input[type=submit].modal__btn.-alt,
.modal__btn.-alt {
  background-color: #9d97a3;
  border: 1px solid #9d97a3;
  border-radius: 20px;
  color: #fff;
  display: block;
  font-size: 14px;
  line-height: 24px;
  line-height: 2rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
  width: 100%;
  max-width: 19em;
  height: 2rem;
}

@media only screen and (min-width: 600px) {
  .modal input[type=submit].modal__btn.-alt,
  .modal__btn.-alt {
    font-size: 16px;
    line-height: 26px;
    line-height: 2.375rem;
    height: 2.5rem;
  }
}

@media only screen and (min-width: 1024px) {
  .modal input[type=submit].modal__btn.-alt,
  .modal__btn.-alt {
    padding: 0 2rem;
    /* width: auto; */
  }
}

.modal input[type=submit].modal__btn.-alt:hover,
.modal__btn.-alt:hover {
  text-decoration: none;
}

@media only screen and (min-width: 1024px) {
  .modal input[type=submit].modal__btn.-alt:hover,
  .modal__btn.-alt:hover {
    cursor: pointer;
  }
}

@media only screen and (min-width: 1024px) {
  .modal input[type=submit].modal__btn.-alt:hover,
  .modal__btn.-alt:hover {
    background-color: #d0cad6;
    border-color: #d0cad6;
  }
}


/* @media only screen and (min-width: 1024px) {
  .modal input[type=submit].modal__btn,
  .modal__btn {
    margin: 0 1rem;
  }
} */

.modal__close,
.modal__outer {
  background-color: #fff;
  border: 1px solid #7500ee;
  border-radius: 20px;
  color: #7500ee;
  display: block;
  font-size: 14px;
  line-height: 24px;
  line-height: 2rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
  width: 100%;
  max-width: 19em;
  height: 2rem;
}

@media only screen and (min-width: 600px) {
  .modal__close,
  .modal__outer {
    font-size: 16px;
    line-height: 26px;
    line-height: 2.375rem;
    height: 2.5rem;
  }
}

@media only screen and (min-width: 1024px) {
  .modal__close,
  .modal__outer {
    padding: 0 2rem;
    width: auto;
  }
}

.modal__close:hover,
.modal__outer:hover {
  text-decoration: none;
}

@media only screen and (min-width: 1024px) {
  .modal__close:hover,
  .modal__outer:hover {
    cursor: pointer;
  }
}

@media only screen and (min-width: 1024px) {
  .modal__close:hover,
  .modal__outer:hover {
    background-color: #7500ee;
    color: #fff;
  }
}

.modal__link {
  background-color: #7500ee;
  border: 1px solid #7500ee;
  border-radius: 20px;
  color: #fff;
  display: block;
  font-size: 14px;
  line-height: 24px;
  line-height: 2rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
  width: 100%;
  max-width: 19em;
  height: 2rem;
}

@media only screen and (min-width: 600px) {
  .modal__link {
    font-size: 16px;
    line-height: 26px;
    line-height: 2.375rem;
    height: 2.5rem;
  }
}

@media only screen and (min-width: 1024px) {
  .modal__link {
    padding: 0 2rem;
    width: auto;
  }
}

.modal__link:hover {
  text-decoration: none;
}

@media only screen and (min-width: 1024px) {
  .modal__link:hover {
    cursor: pointer;
  }
}

@media only screen and (min-width: 1024px) {
  .modal__link:hover {
    background-color: #cbafe9;
    border-color: #cbafe9;
  }
}

/* @media only screen and (min-width: 1024px) {
  .modal__close,
  .modal__outer {
    margin: 0 1rem;
  }
} */

.modal input[type=submit].modal__btn {
  display: block;
  margin: 0 auto;
  width: 100%;
}

.modal .form {
  border: none;
  margin-top: 2rem;
  padding: 0;
  width: auto;
}

.modal .form textarea {
  height: 15rem;
}

.modal .form__content__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 0;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.modal .form__content__item dt {
  padding-right: .5rem;
}

.modal .form__content__item dd {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -ms-flex-positive: 1;
}

.modal__sales__amount {
  font-size: 20px;
  line-height: 30px;
  text-align: right;
}

@media only screen and (min-width: 1024px) {
  .modal__sales__amount {
    font-size: 28px;
    line-height: 38px;
  }
}

.modal__sales__sub {
  color: #9d97a3;
}

.modal__sales__fee {
  text-align: right;
}

.modal__sales__footer {
  border-top: 1px solid #d0cad6;
  margin-top: .75rem;
  padding-top: .75rem;
}

.modal__sales__footer dd {
  color: #7500ee;
}

.modal__product {
  border-bottom: 1px solid #e0e0e0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem 0;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.modal__product__btn {
  border: 1px solid #7500ee;
  border-radius: 4px;
  color: #7500ee;
  display: block;
  line-height: 1.875rem;
  padding: 0 1rem;
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

@media only screen and (min-width: 1024px) {
  .modal__product__btn:hover {
    background-color: #7500ee;
    color: #fff;
  }
}

.modal__product__track {
  padding: 1rem 0 2rem;
}

.modal__product__track ol {
  counter-reset: num;
  padding-top: .5rem;
}

.modal__product__track li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: .5rem 0;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.modal__product__track li::before {
  content: counter(num);
  counter-increment: num;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 24px;
  font-weight: bold;
  line-height: 34px;
}

.modal__product__track p {
  display: block;
  overflow: hidden;
  padding: 0 1rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -ms-flex-positive: 1;
}
