/* select.css — 2案見比べの入口ページ */

.select {
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 24px;
}
.select__head {
  text-align: center;
  max-width: 640px;
}
.select__brand {
  font-family: var(--serif);
  font-size: 2rem;
  letter-spacing: 0.16em;
}
.select__title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3.4vw, 2rem);
  font-weight: 600;
  margin-top: 22px;
  line-height: 1.5;
}
.select__lead {
  margin-top: 16px;
  font-size: 0.92rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.72);
}
.select__grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  width: min(100%, 940px);
}
.select-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, border-color 0.25s;
}
.select-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
}
.select-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}
.select-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.select-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(20, 16, 14, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 999px;
}
.select-card__body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.select-card__name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.select-card__desc {
  margin-top: 10px;
  font-size: 0.86rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.7);
  flex: 1;
}
.select-card__cta {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 4px;
  letter-spacing: 0.06em;
  transition: background-color 0.2s;
}
.select-card:hover .select-card__cta {
  background: var(--red-dark);
}
.select-card__cta .ico {
  width: 22px;
  height: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}
.select__note {
  margin-top: 40px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

@media (max-width: 680px) {
  .select__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}
