@charset "UTF-8";
.mgsblk-business-list--lr .mgsblk-lr + .mgsblk-lr {
  margin-top: 60px;
}
.mgsblk-business-list--empty {
  padding: 1em;
  text-align: center;
  color: #666;
  border: 1px dashed #ccc;
}
.mgsblk-business-list--card.mgsblk-business-list--pc2 {
  column-gap: 60px;
}
.mgsblk-business-list--card > .block {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  overflow: hidden;
}
.mgsblk-business-list--card > .block > .image {
  flex-shrink: 0;
  position: relative;
}
.mgsblk-business-list--card > .block > .image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.mgsblk-business-list--card > .block > .text-area {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}
.mgsblk-business-list--card > .block > .text-area > .badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.mgsblk-business-list--card > .block > .text-area > .badges .badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.mgsblk-business-list--card > .block > .text-area > .badges .badge--new {
  background: #d92c4b;
  color: #fff;
}
.mgsblk-business-list--card > .block > .text-area > .badges .badge--category {
  background: var(--main-color-pale);
  color: var(--main-color-dark);
}
.mgsblk-business-list--card > .block > .text-area > .business-card-title,
.mgsblk-business-list--card > .block > .text-area > .title {
  display: block;
  flex-shrink: 0;
  color: #000;
  font-family: "OptimaLTProRoman", YakuHanMP, yu-mincho-pr6n, 'YuMincho', 'Hiragino Mincho ProN', 'Yu Mincho', 'MS PMincho', serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 12px;
}
.mgsblk-business-list--card > .block > .text-area > .text {
  color: #444;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.mgsblk-business-list--card > .block > .text-area > .item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.mgsblk-business-list--card > .block > .text-area > .item-tags .item-tag {
  display: inline-block;
  background: #f0f0f0;
  color: #555;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
}
.mgsblk-business-list--card > .block > .text-area > .btn {
  margin-top: auto;
  text-align: left;
}
.mgsblk-business-list--card > .block > .text-area > .btn a {
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  color: var(--main-color-dark);
  background: var(--main-color-pale);
  padding: 12px 28px;
  border-radius: 6px;
}
.mgsblk-business-list--card > .block > .text-area > .btn a:hover {
  background: var(--main-color-light);
}
/* ------------------------------------------ */
/* 一覧用動画（標準コントロールなし。全体タップで再生／一時停止） */
/* ------------------------------------------ */
.mgsblk-business-video {
  position: relative;
  cursor: pointer;
}
.mgsblk-business-video video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
/* 再生ボタン（停止中のみ表示。装飾のみで、タップ判定はエリア全体） */
.mgsblk-business-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
  transition: background-color 0.2s;
}
.mgsblk-business-video:hover .mgsblk-business-video__play {
  background: var(--main-color);
}
.mgsblk-business-video__play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #fff;
}
.mgsblk-business-video--playing .mgsblk-business-video__play {
  display: none;
}

@media screen and (min-width: 740px) and (max-width: 899px) {
  .mgsblk-business-list--card.mgsblk-business-list--pc2 {
    column-gap: 20px;
  }
}

/* 「詳しく見る →」の矢印はCSSで描画する（クラス付与は business-list-block.php）。
   inline-flex にすると矢印がテキストと別のフレックスアイテムになり、
   flex-wrap が既定の nowrap なので矢印だけが2行目に落ちなくなる。 */
a.mgs-arrow-btn
{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
}
a.mgs-arrow-btn::after
{
  content: "→";
  flex-shrink: 0;
}
a.mgs-arrow-btn--angle::after
{
  content: "＞";
}
