@charset "utf-8";

/* ヒーロー/////////////////////////// */

.store-hero {
  padding: 80px 0;

  background-image: url("../images/ショーケース1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  height: 60vh;
  display: flex;
  align-items: center;

  position: relative;
  color: #fff;
}

/* 文字を前面に */
.store-hero .container {
  position: relative;
  z-index: 2;
}

.store-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

/* タイトル */
.store-hero .section-title {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 2px;
}

/* サブタイトル */
.store-hero .section-subtitle {
  font-size: 16px;
  margin-top: 10px;
  opacity: 0.9;
}

/* =====================
   店舗セクション
===================== */
.store-detail {
  padding: 60px 0;
}

/* 横並び（店舗＋求人） */
.store-flex {
  display: flex;
  gap: 30px;
  align-items: stretch;
  margin-bottom: 20px;
}

/* 店舗情報 */
.store-box {
  flex: 2;
  display: flex;
  gap: 20px;
  min-width: 0;
}

.store-img img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.store-info p {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.store-info .label {
  width: 90px;        
  font-weight: bold;
  color: #111;
}

.store-info .note {
  margin-top: 12px;
  padding-left: 10px;
  border-left: 3px solid #ddd;
  font-size: 13px;
  color: #666;
  text-align: left;
}

/* =====================
   求人カード
===================== */
.recruit-card {
  flex: 1;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: 0.3s;
  min-width: 260px;
}

.recruit-card:hover {
  transform: translateY(-3px);
}

.recruit-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

/* バッジ */
.badge {
  display: inline-block;
  background: #111;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* テキスト */
.recruit-text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #333;
}

/* リスト */
.recruit-list li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.recruit-note {
  font-size: 12px;
  color: #777;
  margin-top: 10px;
}

.recruit-card strong {
  display: inline-block;
  min-width: 90px;
}


.recruit-list {
  text-align: left;
  padding-left: 18px;
}


/* =====================
   地図
===================== */
.store-map {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
}

/* =====================
   スマホ対応
===================== */
@media (max-width: 768px) {

  .store-flex {
    flex-direction: column;
  }

  .store-box {
    flex-direction: column;
  }

  .store-img img {
    width: 100%;
  }
}