@charset "UTF-8";
/*  スマホ画面用の一覧
    PC画面用は _table.scss で設定 */
/* object/component/_list.scss */
/*  スマホ画面用の一覧
    PC画面用は _table.scss で設定 */
/* object/component/_list.scss */
.c-list {
  display: none;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  border: 1px solid #d9d9d9;
  border-radius: 12px; /* テーブルの角を丸める */
  overflow: hidden; /* 角丸適用 */
}
@media (max-width: 575px) {
  .c-list {
    display: block;
  }
}
.c-list__row {
  display: flex;
  color: black;
  padding: 0.5rem 0;
  border-bottom: 1px solid #d9d9d9;
}
.c-list__row:last-child {
  border-bottom: none;
}
.c-list__cell-left, .c-list__cell-right {
  width: 50%;
  padding: 0 1rem;
  align-content: center;
}
.c-list__cell-left {
  border-right: 1px dotted #d9d9d9;
}
.c-list__cell-full {
  width: 100%;
  align-content: center;
  padding: 0 1rem;
}
.c-list__cell {
  text-align: center;
  vertical-align: middle;
  align-content: center;
}
@media (max-width: 575px) {
  .c-list__cell {
    text-align: left;
  }
}
.c-list__cell--address, .c-list__cell--office, .c-list__cell--tel, .c-list__cell--member, .c-list__cell--num, .c-list__cell--text {
  margin-bottom: 0.25rem;
  line-height: 1.2;
}
.c-list__cell--address:last-child, .c-list__cell--office:last-child, .c-list__cell--tel:last-child, .c-list__cell--member:last-child, .c-list__cell--num:last-child, .c-list__cell--text:last-child {
  margin-bottom: 0;
}
.c-list__cell--member {
  display: flex;
  flex-flow: wrap;
  line-height: 1.2;
}
@media (max-width: 425px) {
  .c-list__cell--member {
    display: block;
  }
}
.c-list__cell--member span {
  white-space: nowrap;
}
.c-list__cell--license {
  margin-right: 10px;
}
.c-list__cell--license, .c-list__cell--name {
  width: fit-content;
}
.c-list--striped .c-list__row--content:nth-child(even) {
  background-color: #efffef; /* 薄い緑（必要に応じ調整） */
}
.c-list--hover .c-list__row--content:hover {
  background-color: #fff9d9; /* ホバー時はホバー色を優先 */
}
.c-list__link {
  display: contents;
  color: black;
}

/*# sourceMappingURL=list.css.map */
