@charset "UTF-8";
.l-dashboard {
  background-color: #de3341;
  color: #ffffff;
  pointer-events: auto;
  flex-shrink: 0;
  width: 300px;
  position: fixed;
  z-index: 2;
  height: 100%;
  left: 0;
  overflow-y: scroll;
  padding: 80px 0 100px 0;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .l-dashboard {
    display: none;
  }
}
.l-dashboard__wrapper {
  display: flex;
  justify-content: start;
}
.l-dashboard__menu {
  font-family: "Oswald", sans-serif;
  margin: 20px 0 50px 0;
}
.l-dashboard__menu--list {
  transition: all 0.3s;
  pointer-events: none;
  border-top: solid 1px #fff;
}
.l-dashboard__menu--list:first-child {
  border-top: none;
}
.l-dashboard__menu--list:last-child {
  border-bottom: solid 1px #fff;
}
.l-dashboard__menu--list a:hover,
.l-dashboard__menu--list .is-active {
  background-color: #ed515e;
}
.l-dashboard__menu--list__single {
  cursor: pointer;
  display: block;
  color: #ffffff;
  padding: 0.5em 50px;
  pointer-events: auto;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.84px;
}
.l-dashboard__menu--list__child {
  padding-bottom: 20px;
}
.l-dashboard__menu--list__child li a {
  pointer-events: auto;
  font-size: 18px;
  display: block;
  color: #fff;
  padding: 5px 65px;
  font-weight: 800;
  letter-spacing: 0.84px;
}
.l-dashboard__logout {
  text-align: center;
  padding-bottom: 20px;
  margin: 0 50px;
  font-family: "Oswald", sans-serif;
}
.l-dashboard__logout a {
  display: block;
  background-color: #262626;
  color: #fff;
  width: min(280px, 100%);
  margin: 0 auto;
  padding: 16px 0;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
  cursor: pointer;
}
.l-dashboard__logout a:hover {
  opacity: 0.8;
}
.l-dashboard__logout a span {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}

.l-distributor {
  min-height: auto;
}
.l-distributor__contents {
  width: min(100%, 100vw);
  padding-left: 300px;
}
@media screen and (max-width: 768px) {
  .l-distributor__contents {
    padding: 0;
  }
}
.l-distributor__contents--container {
  padding: 0 50px;
  margin: 130px auto 100px;
  max-width: 1000px;
  min-height: calc(100vh - 310px);
}
@media screen and (max-width: 768px) {
  .l-distributor__contents--container {
    padding: 0 12px;
    margin-top: 110px;
  }
}
.l-distributor__contents .event__preview {
  margin-bottom: 100px;
}
.l-distributor .l-footer {
  padding-left: 300px;
}
@media screen and (max-width: 768px) {
  .l-distributor .l-footer {
    padding: 0;
  }
}
.l-distributor .l-footer.non-login-footer {
  padding-left: 0;
}
.l-distributor .p-profile__instance--row .c-button__small {
  top: 0;
  right: auto;
}

.l-nav {
  position: fixed;
  width: 75vw;
  height: calc(100vh + 60px);
  top: 0;
  right: 0;
  background-color: #de3341;
  color: #ffffff;
  transition: all 0.5s;
  pointer-events: none;
  overflow-y: scroll;
  z-index: 400;
  visibility: hidden;
  opacity: 0;
}
.l-nav .l-dashboard__menu {
  margin-top: 50px;
}
.l-nav__wrapper .hamburger {
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 405;
  position: relative;
  display: none;
}
@media screen and (max-width: 768px) {
  .l-nav__wrapper .hamburger {
    display: block;
  }
}
.l-nav__wrapper .hamburger__line {
  position: absolute;
  width: 35px;
  height: 2px;
  right: 0;
  background-color: #000000;
  transition: all 0.5s;
}
.l-nav__wrapper .hamburger__line--1 {
  top: 3px;
}
.l-nav__wrapper .hamburger__line--2 {
  top: 13px;
}
.l-nav__wrapper .hamburger__line--3 {
  top: 23px;
}

.open .l-nav {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
.open .hamburger__line--1 {
  transform: rotate(-45deg);
  top: 14px;
  background-color: #fff;
}
.open .hamburger__line--2 {
  opacity: 0;
}
.open .hamburger__line--3 {
  transform: rotate(45deg);
  top: 14px;
  background-color: #fff;
}

/* お知らせのスタイル */
.p-information {
  margin: 20px 0 50px 0;
}
.p-information__list {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}
.p-information__list--title {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #d9d9d9;
  padding: 20px 10px;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .p-information__list--title {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.p-information__list--datewrap {
  display: flex;
  gap: 20px;
  align-items: center;
  cursor: default;
}
.p-information__list--datewrap .news-data {
  font-size: 12px;
}
.p-information__list--datewrap .news-category {
  font-size: 10px;
  color: #f23041;
  padding: 3px 10px;
  text-align: center;
  border: 1px solid #f23041;
  font-weight: normal;
  width: 82px;
}
.p-information__list--link {
  flex: 1;
  color: inherit;
  transition: 0.2s;
  text-decoration: inherit;
}
.p-information__list--link:hover {
  opacity: 0.7;
}
.p-information-show.p-information {
  margin: 0;
}
.p-information-show__header {
  border-left: solid 3px #f23041;
  padding-left: 17px;
}
.p-information-show__title {
  margin: 1em 0;
  letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  .p-information-show__title {
    letter-spacing: 0.5px;
  }
}
@media screen and (max-width: 768px) {
  .p-information-show__title h1 {
    font-size: 18px;
  }
}
.p-information-show__content--text {
  line-height: 2;
  margin: 30px 0;
}
.p-information-show__content--text a {
  text-decoration: underline;
}
.p-information-show__content--image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-information-show__content--image {
    height: auto;
    max-height: 300px;
  }
}
.p-information-show__content--image img {
  position: relative;
  height: 100%;
  width: min(1000px, 100%);
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .p-information-show__content--image img {
    max-height: 300px;
  }
}

.p-profile__wrapper {
  margin: 50px auto;
}
@media screen and (max-width: 768px) {
  .p-profile__wrapper {
    margin: 25px auto;
  }
}
@media screen and (max-width: 768px) {
  .p-profile__wrapper .c-button__small {
    width: 100px;
  }
}
.p-profile__names {
  flex: 1;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-profile__names {
    gap: 10px;
    align-items: center !important;
  }
}
.p-profile__names p {
  word-break: break-all;
  flex: 1;
}
.p-profile__names--box {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-profile__names--box {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.p-profile__names--box p {
  flex: 1;
  display: inline-block;
}
.p-profile__names--box span {
  color: #f23041;
  font-size: 12px;
  display: inline-block;
}
.p-profile__icon {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-right: 44px;
}
@media screen and (max-width: 768px) {
  .p-profile__icon {
    gap: 15px;
    margin: 0;
    width: 100%;
    justify-content: center;
  }
}
.p-profile__icon img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #d9d9d9;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-profile__icon img {
    width: 80px;
    height: 80px;
  }
}
.p-profile__icon--edit {
  position: relative;
}
.p-profile__icon--edit::before {
  content: "";
  background-color: #000;
  width: 100px;
  height: 100px;
  display: block;
  position: absolute;
  border-radius: 50%;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .p-profile__icon--edit::before {
    width: 80px;
    height: 80px;
  }
}
.p-profile__icon--edit::after {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  width: 100%;
  text-align: center;
  line-height: 100px;
}
@media screen and (max-width: 768px) {
  .p-profile__icon--edit::after {
    line-height: 80px;
  }
}
.p-profile__icon--edit:hover::before {
  opacity: 0.4;
}
.p-profile__icon--edit:hover::after {
  content: "変更";
}
.p-profile__icon--fix {
  position: relative;
  gap: 15px;
}
.p-profile__icon--upload {
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-profile__icon--upload {
    font-size: 15px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-profile__icon--upload__btn {
    display: flex;
  }
}
.p-profile__icon--message {
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .p-profile__icon--message {
    margin: 4px 0 0 0;
    font-size: 12px;
    display: block;
  }
}
.p-profile__icon--fiximage {
  margin: 0px 15px 15px 0px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-profile__instance {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-profile__instance {
    margin: 1rem;
  }
}
.p-profile__instance--header {
  background-color: #8c8c8c;
  padding: 0;
  margin: 16px 0 8px;
}
@media screen and (max-width: 768px) {
  .p-profile__instance--header {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
  }
}
.p-profile__instance--header h4 {
  color: #fff;
  margin: 8px 0;
}
@media screen and (max-width: 768px) {
  .p-profile__instance--header h4 {
    margin: 0;
    font-size: 14px;
  }
}
.p-profile__instance--row {
  padding: 8px 0;
  border-bottom: solid 1px #eee;
}
@media screen and (max-width: 768px) {
  .p-profile__instance--row {
    padding: 0;
    height: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-profile__instance--row .c-button__small {
    position: relative;
    top: -16px;
    right: 26px;
  }
}
.p-profile__instance--item {
  display: flex;
  text-align: center;
  justify-content: center;
  width: 25%;
}
@media screen and (max-width: 768px) {
  .p-profile__instance--item {
    display: none;
  }
}
.p-profile__instance--item__sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-profile__instance--item__sp {
    display: block;
    font-size: 14px;
  }
}
.p-profile__instance--item .c-button__small {
  width: 60px;
}
.p-profile__instance--text {
  word-break: auto-phrase;
  text-align: center;
  width: 150px;
}
@media screen and (max-width: 768px) {
  .p-profile__instance--text {
    position: relative;
    top: -16px;
  }
}
.p-profile__unsubscribe {
  text-align: right;
  margin-bottom: 100px;
}
.p-profile__unsubscribe button {
  background: none;
  border: none;
  color: #f23041;
  padding: 10px;
  cursor: pointer;
  font-size: 20px;
}

.p-buyer__detail {
  display: flex;
  gap: 15px;
  margin: 20px 0;
}
.p-buyer__detail--box {
  border: solid 1px #ddd;
  width: 50%;
  padding: 20px;
  border-radius: 10px;
}
.p-buyer__detail--box h4 {
  margin-top: 0;
}
.p-buyer__detail--box span {
  font-size: 30px;
}
.p-buyer__detail--box p {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
}
.p-buyer__list {
  display: flex;
  align-items: center;
  border-bottom: solid 1px #ddd;
  padding: 10px 0;
}
.p-buyer__list.total {
  background-color: #fff6f7;
  font-weight: bold;
  margin: 0 0 50px;
  padding-left: 5px;
}
.p-buyer__list--header {
  background-color: #ffe2e5;
  font-weight: bold;
  border-bottom: none;
  clear: both;
  margin-top: 8px;
}
.p-buyer__list--header p {
  font-size: 14px;
}
.p-buyer__list--inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 10px;
}
.p-buyer__list--inner .total_revenue_price {
  color: #1f8236;
  font-weight: bold;
}
.p-buyer__list--cell {
  width: 25%;
  text-align: center;
  word-wrap: break-word;
  word-break: break-word;
}
@media screen and (max-width: 768px) {
  .p-buyer__list--cell {
    width: 50%;
  }
}
.p-buyer__list--cell span {
  font-size: 12px;
  font-weight: normal;
  padding: 3px 5px;
  border-radius: 4px;
}
.p-buyer__list--cell span.broadcaster-burden {
  color: #fff;
  background-color: #dd3340;
}
.p-buyer__list--cell span.viewer-burden {
  color: #000;
  background-color: #ddd;
}
.p-buyer__list--btn.c-button__red {
  float: right;
  margin-left: 10px;
}
.p-buyer__list--btn__csv {
  margin: 10px 0 20px;
  text-align: right;
}
.p-buyer__list--box {
  width: 100%;
  display: flex;
  align-items: center;
}
.p-buyer__list .buyer-list__checkbox {
  width: 5%;
  text-align: center;
}
.p-buyer__header--select {
  gap: 10px;
}
.p-buyer__header--select select {
  border: 1px solid gray;
  padding: 4px 8px;
  border-radius: 5px;
}
.p-buyer__status {
  margin-bottom: 30px;
  border-bottom: solid 1px #aaa;
}
.p-buyer__status--inner {
  display: flex;
  gap: 20px;
  margin: 10px 0;
}
.p-buyer__cast {
  border-top: solid 1px #ddd;
  padding: 20px 0;
}
.p-buyer__cast--inner {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.p-buyer .buyer-list__refund .c-button__red {
  margin-bottom: 16px;
}

.p-commissionBox:last-child {
  margin-top: 30px;
}
.p-commissionBox label {
  font-size: 14px;
}
.p-commissionBox__element {
  display: flex;
  margin-top: 10px;
}
.p-commissionBox__element p {
  font-size: 14px;
}
.p-commissionBox__element--num {
  margin-right: 10px;
  margin-left: auto;
}
.p-commissionBox__element--num p {
  font-weight: bold;
}
.p-commissionBox__element__txt p {
  font-size: 10px;
  text-align: right;
  font-weight: normal;
}
.p-commissionBox__element.object-line {
  padding: 0 5px 5px;
  border-bottom: 1px solid #8c8c8c;
}
.p-commissionBox__element.object-green {
  padding: 5px;
  background-color: #ffe7c7;
  border-radius: 5px;
}
.p-commissionBox__element.object-blue {
  padding: 5px;
  background-color: #fcd4d4;
  border-radius: 5px;
}

.c-detailChannel {
  padding: 0;
  align-items: center;
}
.c-detailChannel h4 {
  margin: 0;
}
.c-detailChannel__block {
  width: 100%;
  border-left: solid 1px #ddd;
  padding: 16px 0;
}
.c-detailChannel__block .p-buyer__list--inner {
  padding: 0 8px;
}
.c-detailChannel__block .p-buyer__list--inner:nth-child(2) {
  border-top: solid 1px #ddd;
  margin-top: 16px;
  padding-top: 16px;
}

.c-invitation__note {
  font-size: 11px !important;
}
.c-invitation__copy {
  border-radius: 5px;
  padding: 8px;
  border-width: 1px;
  cursor: pointer;
}
.c-invitation__copy img {
  width: 30px;
  height: 24px;
}

.pg-ticket__buy select {
  width: 100%;
}
.pg-ticket__ticketInfo {
  flex: 1;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .pg-ticket__ticketInfo {
    margin: 0 0 10px;
  }
}
.pg-ticket__ticketInfo p {
  font-size: 14px;
  margin-top: 5px;
}
.pg-ticket__count span {
  font-size: 20px;
  font-weight: bold;
}

.pg-list__head {
  border: none;
}
.pg-list__sale-type label {
  display: block;
  font-size: 16px;
  margin: 4px 0;
}
.pg-list__sale-type--check label {
  display: flex;
  gap: 5px;
}
.pg-list__sale-type--check input {
  width: auto;
}
.pg-list .p-channel__subscription input {
  width: 250px;
}
.pg-list__select.checked {
  background-color: #ffe8e8;
}
.pg-list__select span {
  color: #8c8c8c;
  display: inline-block;
}
.pg-list__contentList--title {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .pg-list__contentList--title {
    flex-direction: column;
  }
}
.pg-list__contentList--title .thumbnail {
  width: 90px;
  aspect-ratio: 16/9;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 5px;
  flex-shrink: 0;
}
.pg-list__contentList--date {
  font-size: 14px;
  color: #8c8c8c;
}
@media screen and (max-width: 768px) {
  .pg-list__contentList--pc {
    display: none;
  }
}
.pg-list__contentList--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .pg-list__contentList--sp {
    display: block;
  }
}
.pg-list__contentList .p-profile__instance--header {
  padding: 0 16px;
}
@media screen and (max-width: 768px) {
  .pg-list__contentList .p-profile__instance--header {
    justify-content: space-around;
  }
}
.pg-list__sort select {
  padding: 5px 10px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  font-size: 14px;
}

.pg-archive__discription span {
  font-size: 12px;
  color: #333;
}
.pg-archive__input {
  margin-top: 8px;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .pg-archive__input {
    flex-direction: column;
    align-items: flex-start;
  }
}
.pg-archive__input p {
  word-break: break-all;
}
.pg-archive__select {
  padding: 4px 16px;
  border: solid 1px #2f2f2f;
  background-color: #eee;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 8px;
  width: 132px;
  font-size: 14px;
  display: block;
}
@media screen and (max-width: 768px) {
  .pg-archive__select {
    margin: 0;
  }
}
.pg-archive__download p {
  word-break: break-all;
}