@charset "UTF-8";
/* 店舗紹介ページ */

.p-shopinfo {
  padding-bottom: 80px;
}

@media screen and (max-width: 640px) {
  .p-shopinfo {
    padding-bottom: 60px;
  }
}

.p-shopinfo-main {
  margin-top: 30px;
}

@media screen and (max-width: 640px) {
  .p-shopinfo-main {
    margin-top: 20px;
  }
}

.p-shopinfo__title {
  margin-bottom: 40px;
  text-align: left;
}

@media screen and (max-width: 640px) {
  .p-shopinfo__title {
    margin-bottom: 30px;
  }
}

/* 店舗リスト - 縦並び */
.p-shopinfo__list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

@media screen and (max-width: 640px) {
  .p-shopinfo__list {
    gap: 60px;
  }
}

/* 店舗カード */
.p-shopinfo-card {
  position: relative;
  background-color: #fff;
}

/* 新規オープンバッジ */
.p-shopinfo-card__badge {
  margin-bottom: 8px;
}

.c-badge-new {
  display: inline-block;
  padding: 4px 16px;
  background-color: #D90D0D;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50px;
}

/* 店舗ヘッダー（市名 + 店名） */
.p-shopinfo-card__header {
  margin-bottom: 12px;
}

.p-shopinfo-card__city {
  font-size: 1.4rem;
  font-weight: 700;
  color: #262626;
  margin-bottom: 4px;
}

@media screen and (max-width: 640px) {
  .p-shopinfo-card__city {
    font-size: 1.3rem;
  }
}

.p-shopinfo-card__name {
  font-size: 2.4rem;
  font-weight: bold;
  color: #262626;
}

@media screen and (max-width: 640px) {
  .p-shopinfo-card__name {
    font-size: 2rem;
  }
}

/* 店舗ボディ（画像 + 情報） */
.p-shopinfo-card__body {
  display: block;
}

/* PC: 画像左、情報右の横並び + メッセージは下に横幅いっぱい */
@media screen and (min-width: 641px) {
  .p-shopinfo-card__body {
    display: grid;
    grid-template-columns: 420px 1fr;
    grid-template-rows: auto auto;
    gap: 0 24px;
  }

  .p-shopinfo-card__img {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .p-shopinfo-card__img picture {
    display: block;
    flex-shrink: 0;
  }

  .p-shopinfo-card__img img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .p-shopinfo-card__info {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .p-shopinfo-card__message {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
  }
}

.p-shopinfo-card__img picture {
  display: block;
  line-height: 0;
}

.p-shopinfo-card__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* 店舗情報エリア */
.p-shopinfo-card__info {
  padding: 0 0 0 4.8rem;
}

@media screen and (max-width: 640px) {
  .p-shopinfo-card__info {
    padding: 5% 0;
  }
}

/* 店舗情報リスト */
.p-shopinfo .c-list-shopinfo {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 16px;
  font-size: 0.875rem;
  align-items: baseline;
}

@media screen and (max-width: 640px) {
  .p-shopinfo .c-list-shopinfo {
    gap: 10px 12px;
  }
}

.p-shopinfo .c-list-shopinfo__dt {
  font-size: 0.875rem;
  font-weight: bold;
  color: #262626;
}

.p-shopinfo .c-list-shopinfo__dd {
  font-size: 0.875rem;
  color: #262626;
  line-height: 1.6;
}

.p-shopinfo .c-list-shopinfo__dt:first-child + .c-list-shopinfo__dd {
  display: block;
  flex-direction: unset;
  font-size: 0.875rem;
}

.p-shopinfo .c-list-shopinfo__dd .-link {
  color: #0077FF;
  text-decoration: none;
  font-size: 0.875rem;
  white-space: nowrap;
  display: inline;
}

.p-shopinfo .c-list-shopinfo__dd .-link::before {
    background: #0077FF;
}

.p-shopinfo .c-list-shopinfo__dd .-link:hover {
  text-decoration: none;
}

/* 店舗メッセージボックス */
.p-shopinfo-card__message {
  background-color: #FFF4F6;
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 16px;
  font-size: 1.0rem;
  line-height: 1.5;
  color: #262626;
}

@media screen and (max-width: 640px) {
  .p-shopinfo-card__message {
    padding: 12px 16px;
  }
}

/* LINE問い合わせ - 写真のすぐ下に右寄せ配置 */
.p-shopinfo-card__line {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.p-shopinfo-card__line-label {
  font-size: 1.0rem;
  font-weight: bold;
  color: #262626;
  margin: 0;
}

.p-shopinfo-card__line a {
  display: flex;
  align-items: center;
}

.p-shopinfo-card__line a img {
  height: 40px;
  width: auto;
}


