
* { box-sizing: border-box; }

/* === Grid === */
.cam__fee__cards{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
}

@media (max-width: 980px){
  .cam__fee__cards{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px){
  .cam__fee__cards{ grid-template-columns: 1fr; }
}

/* === Card === */
.fee-card{
  position: relative;
  background: var(--card-bg);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,.10);
  display: flex;
  flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}

.fee-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0,0,0,.16);
}

.fee-card.is-staffpick{
  outline: 2px solid var(--card-red);
}

/* === 1. ロゴを少し大きく / 2. ロゴ横に会社名（左寄せ） === */
.fee-card__head{
  padding: 0;
}

.fee-card__head-top{
  display: flex;
  align-items: center;
  gap: 14px;
}

.fee-card__logo{
  flex: 0 0 auto;
  max-width: 120px;
  object-fit: contain;
}

.fee-card__logo--mark{
  flex: 0 0 auto;
  height: 64px;
  width: 64px;
  border-radius: 10px;
  background: #2b2b2b;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fee-card__head-info{
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fee-card__brand{
  font-size: 19px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

.fee-card__tags{
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.fee-card__tag{
  display: inline-block;
  font-size: 12px;
  color: var(--card-tag-text);
  background-color: var(--card-tag);
  border: 1px solid var(--card-tag);
  border-radius: 20px;
  padding: 2px 11px;
  line-height: 1.6;
  white-space: nowrap;
}

/* body: car image + category + price */
.fee-card__body{
  padding: 6px 16px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.fee-card__car{
  flex: 0 0 46%;
  max-width: 46%;
  padding: 6px 12px 0 0;
}

.fee-card__car img{
  width: 100%;
  height: auto;
  display: block;
}

.fee-card__info{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* === 3. 車種・利用人数・ETC情報 === */
.fee-card__category{
  text-align: left;
  font-size: 12px;
}

.fee-card__category-main{
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: #222;
}

.fee-card__category-sub{
  margin: 2px 0 6px;
  color: #555;
}

.fee-card__category-chip{
  margin: 2px 0 6px;
  font-weight: 700;
  color: #333;
}
.fee-card__category-chip span {
  background: #000;
  color: #FFF;
  margin-right: 4px;
  padding: 2px 3px;
}
.fee-card__category-note{
  font-size: 11px;
  margin: 2px 0 6px;
  color: var(--card-red);
}

/* === 4. 金額をもう少し下へ === */
.fee-card__price{
  text-align: right;
  margin-top: 22px;
}

.fee-card__price-num{
  font-size: 38px;
  font-weight: 800;
  color: var(--card-price);
  line-height: 1;
  white-space: nowrap;
}

.fee-card__price-num small{
  font-size: 15px;
  font-weight: 700;
}

.fee-card__price-note{
  font-size: 11px;
  color: #777;
  margin: 6px 0 0;
  line-height: 1.5;
}

/* === 5. スターフライヤー特典バナー（notes.jpg準拠） === */
.fee-card__promo{
  display: flex;
  margin: 16px 16px 0;
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  overflow: hidden;
}

.fee-card__promo-left{
  flex: 0 0 104px;
  background: #1a1a1a;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 6px;
  line-height: 1.5;
}

.fee-card__promo-left .ln1{
  font-size: 16px;
  font-weight: 700;
  max-width: 130px;
  white-space: normal;
  overflow-wrap: break-word; /* 英数字など空白のない長い文字列も折り返す保険 */
  word-break: break-word;
}

.fee-card__promo-left .ln2{
  font-size: 12px;
  font-weight: 700;
  margin-top: 3px;
  white-space: nowrap;
}

.fee-card__promo-right{
  flex: 1;
  background: #fff;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.fee-card__promo-lead{
  margin: 0;
  font-size: 11.5px;
  color: #333;
  line-height: 1.6;
}

.fee-card__promo-lead strong{
  color: var(--main-color);
  font-weight: 700;
  font-size: 16px;
}

.fee-card__promo-discount{
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #333;
}

.fee-card__promo-discount span{
  font-size: 22px;
  color: var(--card-price);
  margin: 0 2px;
}

/* シンプル版バナー（スタッフ厳選カード用：航空券連携なし） */
.fee-card__banner.is-plain{
  margin: 16px 16px 0;
  background: #f7f2e2;
  color: #7a5c00;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.6;
}

.fee-card__banner.is-plain strong{
  color: var(--card-red);
  font-weight: 700;
}

/* CTA */
.fee-card__cta{
  margin-top: 16px;
  display: block;
  background: linear-gradient(180deg, var(--card-btn), var(--card-btn-dark));
  color: var(--card-btn-text);
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 0;
  letter-spacing: .04em;
}

.fee-card__cta:hover{
  filter: brightness(1.08);
}

.fee-card__badge{
  position: absolute;
  top: 0;
  right: 0;
  background: var(--card-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 5px 14px;
  border-radius: 0 12px 0 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,.15);
}

.staff-head{
  max-width: 1200px;
  margin: 44px auto 20px;
  text-align: center;
}

.staff-head h3{
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: var(--card-red);
}