/* ===============================
   とある内科医の1日　医師一覧ページ
=============================== */

.aday-page{
  background: #f7f7f4;
  min-height: 100vh;
}

/* 固定ページ本文エリア */
.aday-page-content{
  background: #f7f7f4;
}

/* カード一覧 */
.aday-list-section{
  padding: 56px 20px 80px;
}

/* ===============================
   aday カード
=============================== */
.aday-card-grid{
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.aday-card{
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.aday-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.10);
}

/* 上部の細い色バーは使わない */
.aday-card.is-workday,
.aday-card.is-holiday{
  border-top: 0 !important;
}

.aday-card__link{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  color: inherit;
  text-align: center;
  padding: 24px 20px 26px;
  min-height: auto;
}

/* 専門分野 */
.aday-card__specialty{
  order: 1;
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 700;
  color: #17345f;
}

/* 勤務日 / 休日バー */
.aday-card__badge{
  order: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 40px;
  padding: 0 22px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 28px;
  color: #fff;
}

.aday-card__badge.is-workday{
  background: #72c987;
  color: #fff;
}

.aday-card__badge.is-holiday{
  background: #e9a0a0;
  color: #fff;
}

/* 写真 */
.aday-card__thumb{
  order: 3;
  margin: 0 0 24px;
}

.aday-card__img{
  width: 142px;
  height: 142px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
}

/* 名前 */
.aday-card__name{
  order: 4;
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
  color: #17345f;
  letter-spacing: 0.01em;
}

/* 年齢は非表示 */
.aday-card__meta{
  display: none !important;
}

/* No image 対策 */
.aday-card__thumb img[src*="no-image"],
.aday-card__thumb img[alt*="No image"]{
  width: 118px;
  height: 118px;
  object-fit: contain;
  background: #f7f7f7;
  padding: 8px;
  border-radius: 50%;
}

/* ===============================
   NEWマーク
=============================== */
.aday-card__new{
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 70px solid #f2e94e;
  border-right: 70px solid transparent;
  z-index: 2;
}

.aday-card__new::after{
  content: "NEW";
  position: absolute;
  top: -58px;
  left: 5px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #333;
  white-space: nowrap;
}

/* ===============================
   タブレット
=============================== */
@media (max-width: 1024px){
  .aday-list-section{
    padding: 48px 20px 72px;
  }

  .aday-card-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
}

/* ===============================
   スマホ
=============================== */
@media (max-width: 768px){
  .aday-list-section{
    padding: 32px 16px 80px;
  }

  .aday-card-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .aday-card{
    border-radius: 10px;
  }

  .aday-card__link{
    padding: 18px 12px 20px;
  }

  .aday-card__specialty{
    font-size: 18px;
    line-height: 1.45;
    margin-bottom: 12px;
  }

  .aday-card__badge{
    min-width: 100%;
    height: 32px;
    font-size: 13px;
    margin-bottom: 18px;
    border-radius: 8px;
  }

  .aday-card__thumb{
    margin: 0 0 18px;
  }

  .aday-card__img{
    width: 96px;
    height: 96px;
  }

  .aday-card__name{
    font-size: 15px;
    line-height: 1.45;
  }

  .aday-card__new{
    border-top: 56px solid #f2e94e;
    border-right: 56px solid transparent;
  }

  .aday-card__new::after{
    content: "NEW";
    position: absolute;
    top: -48px;
    left: 4px;
    font-size: 11px;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }
}

/* ===============================
   かなり小さいスマホ
=============================== */
@media (max-width: 480px){
  .aday-card__link{
    padding: 20px 16px 22px;
  }

  .aday-card__specialty{
    font-size: 16px;
  }

  .aday-card__img{
    width: 112px;
    height: 112px;
  }

  .aday-card__name{
    font-size: 16px;
  }
}