@charset "UTF-8";
/* お知らせのスタイル */
.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-faq__container {
  max-width: 800px;
  margin: 50px auto 0;
  padding: 0; /* paddingを0に変更してh2の背景を端まで表示 */
  border: solid 1px #ddd;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden; /* 角の丸みを保持するため */
}
.p-faq__container a {
  text-decoration: underline;
}
.p-faq__head {
  background: linear-gradient(to bottom right, #f23041, #d42232);
  color: #fff;
  padding: 20px 30px;
  font-weight: bold;
  font-size: 18px;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.p-faq__question {
  font-weight: 600;
  padding: 1rem 4rem 1rem 1rem;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-faq__question {
    font-size: 14px;
    padding-right: 2.5rem;
  }
}
.p-faq__question:hover {
  color: #d42232;
}
.p-faq__question:before, .p-faq__question::after {
  content: "";
  position: absolute;
  top: 50%;
  background-color: #666;
  transform: translateY(-50%);
}
.p-faq__question::before {
  right: 23px; /* 中央に配置するよう調整 */
  width: 16px;
  height: 2px;
}
@media screen and (max-width: 768px) {
  .p-faq__question::before {
    right: 14px;
    width: 12px;
  }
}
.p-faq__question::after {
  right: 30px; /* 水平線の中央に配置するため移動 */
  width: 2px;
  height: 16px;
  transition: transform 0.3s ease; /* アニメーションを追加 */
}
@media screen and (max-width: 768px) {
  .p-faq__question::after {
    right: 19px;
    height: 12px;
  }
}
.p-faq__question.active::after {
  transform: translateY(-50%) rotate(-90deg);
}
.p-faq__answer {
  padding: 0 2rem;
  line-height: 150%;
  overflow: hidden;
  max-height: 0; /* JavaScriptで制御するため、初期状態では高さを0にする */
  transition: max-height 0.3s ease, padding 0.3s ease;
}
@media screen and (max-width: 768px) {
  .p-faq__answer {
    font-size: 14px;
  }
}
.p-faq__answer.open {
  max-height: 500px; /* 十分な高さを設定して内容を表示 */
  padding: 1rem 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .p-faq__answer.open {
    margin-bottom: 0;
  }
}
.p-faq__contact {
  background-color: lightgray;
  max-width: 800px;
  margin: 50px auto 0;
  padding: 20px 20px 30px 20px;
  border: solid 1px #ddd;
  border-radius: 10px;
  overflow: hidden; /* 角の丸みを保持するため */
}
.p-faq__contact h3 {
  padding-bottom: 12px;
}

.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-subscription__wrap {
  text-align: center;
}
.p-subscription__price {
  padding: 16px 0;
  background-color: #f6e5e6;
  margin: 50px 0 20px;
}
@media screen and (max-width: 768px) {
  .p-subscription__price {
    margin: 30px 0 10px;
  }
}
.p-subscription__price p {
  font-size: 32px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-subscription__price p {
    font-size: 24px;
  }
}
.p-subscription__status {
  font-weight: bold;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-subscription__status {
    margin-bottom: 30px;
  }
}
.p-subscription__notice {
  display: block;
}

.list-container .container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.p-listTicket__empty {
  text-align: center;
  background: #fff;
  padding: 80px 24px;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}
.p-listTicket__empty h1 {
  font-size: 32px;
  margin-bottom: 16px;
}
.p-listTicket__empty p {
  color: #555;
  margin-bottom: 32px;
  line-height: 1.6;
}
.p-listTicket__hero--image img {
  width: 320px;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  -o-object-fit: cover;
     object-fit: cover;
}
.p-listTicket__hero--info h1 {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 10px;
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-listTicket__hero--info h1 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.p-listTicket__hero--info__badge {
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgb(212, 34, 50);
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgb(253, 230, 232);
}
.p-listTicket__hero--info__wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .p-listTicket__hero--info__wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.p-listTicket__hero--info__price {
  font-size: 32px;
  font-weight: 700;
  color: #d42232;
}
.p-listTicket__hero--info__note {
  font-size: 14px;
  font-weight: bold;
  color: #555;
}
.p-listTicket__hero--note {
  font-size: 12px;
  color: #d42232 !important;
  margin: 10px 0 5px;
}
.p-listTicket__hero--purchased {
  font-size: 12px;
  color: #0d47a1;
}
.p-listTicket__hero--sale {
  font-size: 14px;
  margin: 5px 0;
}
.p-listTicket__band {
  background: linear-gradient(135deg, #fff8f8 0%, #ffe3ea 100%);
  padding: 40px 0;
  text-align: center;
  width: 100vw;
  margin: 0 calc(50% - 50vw) 50px;
}
.p-listTicket__band h2 {
  font-size: 28px;
  color: #d42232;
  margin-bottom: 16px;
}
.p-listTicket__band p {
  margin: 24px 0;
  color: #5a1a22;
}
.p-listTicket__confirm {
  display: flex;
  gap: 50px;
  margin: 50px 0;
}
@media screen and (max-width: 768px) {
  .p-listTicket__confirm {
    flex-direction: column;
    gap: 20px;
    margin: 20px 0 50px;
  }
}
.p-listTicket__confirm--card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  border: solid 1px #d0d0d0;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-listTicket__confirm--card {
    width: 100%;
  }
}
.p-listTicket__confirm--card h2 {
  border: solid 1px #c22020;
  color: #c22020;
  border-radius: 10px;
  margin: 0 auto;
  text-align: center;
  padding: 15px 0px;
  line-height: 1;
  font-size: 20px;
  margin-bottom: 16px;
}
.p-listTicket__confirm--card dl div {
  align-items: baseline;
  gap: 20px;
  font-size: 15px;
  color: #333;
  margin-top: 12px;
  font-weight: bold;
}
.p-listTicket__confirm--label {
  margin-bottom: 8px;
}
.p-listTicket__confirm--label span {
  font-size: 12px;
  color: #c22020;
}
.p-listTicket__confirm--placeholder {
  font-size: 14px;
  color: #999;
}
.p-listTicket__confirm--total {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.p-listTicket__confirm--total span {
  font-size: 12px;
  color: #777;
}
.p-listTicket__confirm--total dd {
  font-size: 24px;
  font-weight: 700;
  color: #d42232;
}
.p-listTicket__confirm--submit {
  width: 300px;
}
@media screen and (max-width: 768px) {
  .p-listTicket__confirm--submit {
    order: -1;
  }
}
.p-listTicket__confirm--submit__icon {
  height: 20px;
  width: 20px;
  color: #fff;
  fill: #fff;
  margin-left: 5px;
}
.p-listTicket__detail-link {
  width: 100%;
  margin-top: 10px;
}
.p-listTicket__detail-link {
  width: 100%;
  margin-top: 10px;
}

.p-donation {
  margin: 0 auto;
}
.p-donation__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 30px;
}
.p-donation__button {
  width: calc(50% - 0.5rem);
  text-align: center;
}
.p-donation__button label {
  display: block;
  width: 100%;
  background-color: #fff;
  border: 1px solid #999;
  cursor: pointer;
  padding: 10px 0;
  border-radius: 5px;
}
.p-donation__button input[type=radio] {
  display: none;
}
.p-donation__button input[type=radio]:checked + label {
  background-color: #ffe7e7;
  border-color: #df2638;
  color: #df2638;
  font-weight: bold;
}
.p-donation__box {
  align-items: flex-end;
  gap: 16px;
  display: none;
}
.p-donation__box h4,
.p-donation__box p {
  margin: 0;
}
.p-donation__box input[type=number] {
  flex: 1;
  border: none;
  border-bottom: solid 1px #aaa;
  padding: 8px;
  font-size: 30px;
  font-weight: bold;
  text-align: right;
  width: 100%;
}
.p-donation__box input[type=number]::-moz-placeholder {
  font-size: 16px;
  line-height: 30px;
  font-weight: normal;
}
.p-donation__box input[type=number]::placeholder {
  font-size: 16px;
  line-height: 30px;
  font-weight: normal;
}
.p-donation__box.show {
  display: flex;
}
.p-donation__submit {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.p-donation__thanks {
  text-align: center;
}
.p-donation__thanks img {
  width: 150px;
  margin: 24px auto;
}
.p-donation__thanks h1 {
  font-size: 20px;
  margin: 16px 0;
}
.p-donation__thanks p {
  margin: 16px 0 48px;
}

/******** 投げ銭のポップアップ ********/
.donation__thanks {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 100px;
}

.p-eventTab {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #f5f5f5;
  border: 1px solid #f5f5f5;
  border-radius: 999px;
  color: #262626;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.p-eventTab.is-active {
  background-color: #f23041;
  border-color: #f23041;
  color: #fff;
}
.p-eventTab__wrap {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e5e5;
}
.p-eventTab__note {
  font-size: 13px;
  color: #777;
  margin: 16px 0 24px;
}
.p-eventTab__tabpanel {
  display: none;
}
.p-eventTab__tabpanel.is-active {
  display: block;
}

.p-topRondanfes {
  position: relative;
  z-index: 1;
  margin: 70px auto 40px;
  max-width: 920px;
}
.p-topRondanfes__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 16px;
  border-radius: 20px;
  background: #000;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.14);
}
.p-topRondanfes__inner::before {
  content: "PICK UP";
  position: absolute;
  top: 87px;
  left: -22px;
  padding: 6px 48px;
  background: #f23041;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(-45deg);
  transform-origin: left top;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.25);
  z-index: 2;
  pointer-events: none;
}
.p-topRondanfes__image {
  width: 100%;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 280px;
}
.p-topRondanfes__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-topRondanfes__title {
  margin: 0;
  padding: 16px 18px;
  font-size: 26px;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
}
.p-topRondanfes__title--link {
  display: block;
  color: #fff;
  background: #d42232;
  border-radius: 14px;
  text-decoration: none;
}

.p-topNews__inner {
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  color: #1f2937;
  border: 1px solid #d4d4d8;
  border-radius: 5px;
  background: #fff;
}
.p-topNews__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: solid 1px #d4d4d8;
}
.p-topNews__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.p-topNews__row--inner {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  line-height: 1.5;
  color: inherit;
  flex: 1;
  min-width: 0;
}
.p-topNews__badge {
  font-size: 12px;
  color: #de3341;
  border: solid 1px #de3341;
  padding: 0 4px;
  border-radius: 4px;
}
.p-topNews__date {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.p-topNews__subject {
  color: inherit;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
  transition: -webkit-text-decoration-color 0.2s ease;
  transition: text-decoration-color 0.2s ease;
  transition: text-decoration-color 0.2s ease, -webkit-text-decoration-color 0.2s ease;
  display: block;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.p-topNews__subject:hover {
  -webkit-text-decoration-color: #000;
          text-decoration-color: #000;
}
.p-topNews .c-readmore {
  font-size: 12px;
}

.c-readmore {
  border-bottom: solid 1px #777;
  padding: 0.25rem 2rem 0.25rem 1rem;
  color: #777;
  position: relative;
  left: 0;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  .c-readmore {
    padding: 0.25rem 1rem 0.15rem 0.5rem;
    font-size: 10px;
  }
}
.c-readmore::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  border-right: solid 1px #777;
  position: absolute;
  right: 3px;
  bottom: -8px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .c-readmore::after {
    width: 0.75rem;
    height: 0.75rem;
    right: 2.5px;
    bottom: -6px;
  }
}

.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-channel__wrapper {
  margin: 2rem 0;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 2%;
}
@media screen and (max-width: 768px) {
  .pg-channel__wrapper {
    gap: 5%;
  }
}
.pg-channel__item {
  width: 10.75%;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .pg-channel__item {
    width: 21.25%;
  }
}
.pg-channel__icon {
  aspect-ratio: 1/1;
}
.pg-channel__icon--image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100px;
  border: solid 1px #d9d9d9;
}
.pg-channel__name {
  text-align: center;
  line-height: 1.25;
  margin: 0 0.5rem 1rem 0.5rem;
  word-break: break-word;
  font-size: 14px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .pg-channel__name {
    font-size: 12px;
  }
}

/* チャンネル詳細のスタイル */
@media screen and (max-width: 768px) {
  .pg-channel-show__subscription {
    display: none;
  }
}
.pg-channel-show__subscription--sp {
  display: none;
  width: 100%;
  margin: 1rem 0 2rem;
}
.pg-channel-show__subscription--sp .c-button__red {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .pg-channel-show__subscription--sp {
    display: block;
  }
}
.pg-channel-show .channel-icon {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .pg-channel-show .channel-icon {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 768px) {
  .pg-channel-show h1 {
    font-size: 16px;
  }
}

.pg-top__container {
  margin: 48px 0 24px;
  padding-bottom: 24px;
  border-bottom: solid 1px #e5e7eb;
}
.pg-top__container:last-child {
  border: none;
}
.pg-top__head {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.pg-top__head .c-contentsTitle {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .pg-top__head .c-readmore {
    position: absolute;
    right: 3vw;
    bottom: 1em;
    left: auto;
  }
}