@charset "utf-8";


/* ========== 一覧ページ ========== */

/* 検索フォーム */

._my_members_search .panel-heading {
  background-color: #666;
  color: #FFF;
}


/* 結果一覧 */
._my_members_list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

._my_members_list > ul > li {
  margin: 0;
  padding: 8px 0;
  border-bottom: 1px dotted #666;
}

._my_members_list > ul > li > p {
  margin-bottom: 0;
}

._my_members_list > ul > li > p.name {
  font-size: 1em;
  font-weight: bold;
}

._my_members_list > ul > li._my_members_label {
  font-weight: bold;
  border-bottom: solid 2px #666;
}

@media (min-width: 768px) {
  ._my_members_list > ul > li {
    display: flex;
    justify-content: between-space;
  }

  ._my_members_list > ul > li > p.name {
    width: 60%;
  }

  ._my_members_list > ul > li > p.category {
    width: 40%;
  }
}


/* ========== 詳細ページ ========== */

._my_members_catch_copy {
  margin-bottom: 2rem;
  color: #CC0000;
  font-size: 1.75rem;
  font-weight: bold;
  text-align: center;
}

/* スライダーの縦長画像の調整 */
.bx-wrapper img {
  object-fit: contain;
  max-height: 260px;
}

@media (min-width: 576px) {
  .bx-wrapper img {
    max-height: 500px;
  }
}
@media (min-width: 768px) {
  .bx-wrapper img {
    max-height: 400px;
  }
}
@media (min-width: 992px) {
  .bx-wrapper img {
    max-height: 525px;
  }
}
@media (min-width: 1200px) {
  .bx-wrapper img {
    max-height: 650px;
  }
}



