@charset "UTF-8";
/* area-channel-list
================================================ */
.area-ranking {
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px;
}

@media screen and (min-width: 500px) {
  .area-ranking {
    padding: 20px;
  }
}

@media screen and (min-width: 1000px) {
  .area-ranking {
    padding: 24px;
  }
}

.area-ranking *,
.area-ranking *::before,
.area-ranking *::after {
  box-sizing: border-box;
}

.area-ranking__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media screen and (min-width: 500px) {
  .area-ranking__list {
    gap: 16px;
  }
}

.area-ranking__item {
  min-width: 0;
  margin: 0;
  padding: 0;
}

.area-ranking-card {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.area-ranking-card:hover {
  border-color: #aaa;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.area-ranking-card:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 3px;
}

.area-ranking-card__image-wrap {
  flex: 0 0 96px;
  width: 96px;
  min-height: 96px;
  overflow: hidden;
  background: #eee;
}

@media screen and (min-width: 500px) {
  .area-ranking-card__image-wrap {
    flex-basis: 140px;
    width: 140px;
    min-height: 120px;
  }
}

@media screen and (min-width: 1000px) {
  .area-ranking-card__image-wrap {
    flex-basis: 180px;
    width: 180px;
    min-height: 140px;
  }
}

.area-ranking-card__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 96px;
  object-fit: cover;
}

@media screen and (min-width: 500px) {
  .area-ranking-card__image {
    min-height: 120px;
  }
}

@media screen and (min-width: 1000px) {
  .area-ranking-card__image {
    min-height: 140px;
  }
}

.area-ranking-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 12px;
}

@media screen and (min-width: 500px) {
  .area-ranking-card__body {
    padding: 16px 20px;
  }
}

@media screen and (min-width: 1000px) {
  .area-ranking-card__body {
    padding: 20px 24px;
  }
}

.area-ranking-card__header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

@media screen and (min-width: 500px) {
  .area-ranking-card__header {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
  }
}

.area-ranking-card__name {
  min-width: 0;
  overflow: hidden;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (min-width: 500px) {
  .area-ranking-card__name {
    font-size: 19px;
  }
}

@media screen and (min-width: 1000px) {
  .area-ranking-card__name {
    font-size: 21px;
  }
}

.area-ranking-card__sales {
  flex: 0 0 auto;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

@media screen and (min-width: 500px) {
  .area-ranking-card__sales {
    font-size: 18px;
    text-align: right;
  }
}

@media screen and (min-width: 1000px) {
  .area-ranking-card__sales {
    font-size: 20px;
  }
}

.area-ranking-card__description {
  display: -webkit-box;
  margin-top: 8px;
  overflow: hidden;
  color: #666;
  font-size: 13px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media screen and (min-width: 500px) {
  .area-ranking-card__description {
    margin-top: 10px;
    font-size: 14px;
  }
}

@media screen and (min-width: 1000px) {
  .area-ranking-card__description {
    font-size: 15px;
    -webkit-line-clamp: 3;
  }
}

/* area-profile
=========================================
 */
#area-profile {
  /* --------------------------------
 * エリア会プロフィール
 * -------------------------------- */
  /* --------------------------------
 * 共通セクション
 * -------------------------------- */
  /* --------------------------------
 * サポーター
 * スマホ1列、タブレット2列、PC3列
 * -------------------------------- */
  /* --------------------------------
 * コンテンツホルダー
 * スマホ2列、タブレット3列、PC5列
 * -------------------------------- */
}

#area-profile .area-detail {
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 12px 48px;
}

@media screen and (min-width: 500px) {
  #area-profile .area-detail {
    padding: 24px 20px 64px;
  }
}

@media screen and (min-width: 1000px) {
  #area-profile .area-detail {
    padding: 32px 24px 80px;
  }
}

#area-profile .area-detail *,
#area-profile .area-detail *::before,
#area-profile .area-detail *::after {
  box-sizing: border-box;
}

#area-profile .area-profile {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 14px;
}

@media screen and (min-width: 500px) {
  #area-profile .area-profile {
    gap: 28px;
    padding: 28px;
  }
}

@media screen and (min-width: 1000px) {
  #area-profile .area-profile {
    gap: 36px;
    padding: 36px;
  }
}

#area-profile .area-profile__image-wrap {
  flex: 0 0 96px;
  width: 96px;
  height: 96px;
  overflow: hidden;
  background: #eee;
  border-radius: 50%;
}

@media screen and (min-width: 500px) {
  #area-profile .area-profile__image-wrap {
    flex-basis: 130px;
    width: 130px;
    height: 130px;
  }
}

@media screen and (min-width: 1000px) {
  #area-profile .area-profile__image-wrap {
    flex-basis: 160px;
    width: 160px;
    height: 160px;
  }
}

#area-profile .area-profile__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#area-profile .area-profile__body {
  min-width: 0;
}

#area-profile .area-profile__name {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
}

@media screen and (min-width: 500px) {
  #area-profile .area-profile__name {
    font-size: 28px;
  }
}

@media screen and (min-width: 1000px) {
  #area-profile .area-profile__name {
    font-size: 34px;
  }
}

#area-profile .area-profile__description {
  display: -webkit-box;
  margin: 10px 0 0;
  overflow: hidden;
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@media screen and (min-width: 500px) {
  #area-profile .area-profile__description {
    margin-top: 14px;
    font-size: 15px;
  }
}

@media screen and (min-width: 1000px) {
  #area-profile .area-profile__description {
    font-size: 16px;
    -webkit-line-clamp: 4;
  }
}

#area-profile .area-members-section {
  margin-top: 40px;
}

@media screen and (min-width: 500px) {
  #area-profile .area-members-section {
    margin-top: 56px;
  }
}

@media screen and (min-width: 1000px) {
  #area-profile .area-members-section {
    margin-top: 72px;
  }
}

#area-profile .area-members-section__title {
  margin: 0 0 18px;
  padding-bottom: 10px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
  border-bottom: 2px solid #333;
}

@media screen and (min-width: 500px) {
  #area-profile .area-members-section__title {
    margin-bottom: 24px;
    font-size: 25px;
  }
}

@media screen and (min-width: 1000px) {
  #area-profile .area-members-section__title {
    font-size: 28px;
  }
}

#area-profile .area-members-empty {
  grid-column: 1 / -1;
  padding: 32px 20px;
  color: #777;
  text-align: center;
  background: #f7f7f7;
  border-radius: 10px;
}

#area-profile .supporter-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media screen and (min-width: 500px) {
  #area-profile .supporter-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media screen and (min-width: 1000px) {
  #area-profile .supporter-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}

#area-profile .supporter-list__item {
  min-width: 0;
  margin: 0;
  padding: 0;
}

#area-profile .supporter-card {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 104px;
  padding: 14px;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

@media screen and (min-width: 500px) {
  #area-profile .supporter-card {
    min-height: 116px;
    padding: 16px;
  }
}

#area-profile .supporter-card:hover {
  border-color: #aaa;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

#area-profile .supporter-card:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 3px;
}

#area-profile .supporter-card__image-wrap {
  flex: 0 0 74px;
  width: 74px;
  height: 74px;
  overflow: hidden;
  background: #eee;
  border-radius: 50%;
}

@media screen and (min-width: 500px) {
  #area-profile .supporter-card__image-wrap {
    flex-basis: 82px;
    width: 82px;
    height: 82px;
  }
}

#area-profile .supporter-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#area-profile .supporter-card__body {
  min-width: 0;
}

#area-profile .supporter-card__role {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  padding: 3px 8px;
  overflow: hidden;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: #eee;
  border-radius: 999px;
}

#area-profile .supporter-card__title {
  display: -webkit-box;
  overflow: hidden;
  color: #555;
  font-size: 13px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#area-profile .supporter-card__name {
  margin-top: 4px;
  overflow: hidden;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#area-profile .holder-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media screen and (min-width: 500px) {
  #area-profile .holder-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 20px;
  }
}

@media screen and (min-width: 1000px) {
  #area-profile .holder-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 34px 24px;
  }
}

#area-profile .holder-list__item {
  min-width: 0;
  margin: 0;
  padding: 0;
}

#area-profile .holder-card {
  display: block;
  width: 100%;
  padding: 14px 10px 16px;
  color: inherit;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 14px;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

@media screen and (min-width: 500px) {
  #area-profile .holder-card {
    padding: 18px 14px 20px;
  }
}

#area-profile .holder-card:hover {
  background: #fff;
  border-color: #ddd;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.09);
  transform: translateY(-3px);
}

#area-profile .holder-card:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 3px;
}

#area-profile .holder-card__image-wrap {
  width: 100%;
  max-width: 150px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  overflow: hidden;
  background: #eee;
  border-radius: 50%;
}

@media screen and (min-width: 500px) {
  #area-profile .holder-card__image-wrap {
    max-width: 180px;
  }
}

@media screen and (min-width: 1000px) {
  #area-profile .holder-card__image-wrap {
    max-width: 190px;
  }
}

#area-profile .holder-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#area-profile .holder-card__body {
  min-width: 0;
  margin-top: 14px;
}

#area-profile .holder-card__title {
  display: -webkit-box;
  min-height: 2.9em;
  overflow: hidden;
  color: #666;
  font-size: 12px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media screen and (min-width: 500px) {
  #area-profile .holder-card__title {
    font-size: 13px;
  }
}

@media screen and (min-width: 1000px) {
  #area-profile .holder-card__title {
    font-size: 14px;
  }
}

#area-profile .holder-card__name {
  display: -webkit-box;
  margin-top: 5px;
  overflow: hidden;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media screen and (min-width: 500px) {
  #area-profile .holder-card__name {
    font-size: 16px;
  }
}

@media screen and (min-width: 1000px) {
  #area-profile .holder-card__name {
    font-size: 17px;
  }
}
