/* 1行固定用 */
.one-line{
  white-space: nowrap;          /* 改行させない */
  overflow: hidden;             /* 念のため */
  text-overflow: ellipsis;      /* 物理的に入らない極小幅でも破綻しない */
  font-size: clamp(1.25rem, 5.2vw, 2rem);  /* スマホで少しだけ縮む */
  letter-spacing: .01em;
}
@media (max-width: 420px){
  .one-line{ font-size: clamp(1.15rem, 5vw, 1.7rem); }
}

/* ベース：横2列。折返しを強くする */
.contact-list{
  display: grid;
  grid-template-columns: 7em 1fr;  /* ラベル / 本文 */
  gap: .4rem .75rem;
}
.contact-list .label{ 
  white-space: nowrap; 
  text-align: right; 
  padding-right: .5rem; 
}
.contact-list .value{
  white-space: normal; 
  overflow-wrap: anywhere;  /* 長い語やURLも折返す */
  word-break: break-word;
}
.contact-list .value a{
  color: var(--link); 
  text-decoration: none;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* 小画面：縦並び（ラベル→本文）。確実に折返し */
@media (max-width: 600px){
  .contact-list{ grid-template-columns: 1fr; }
  .contact-list .label{
    text-align: left;
    padding-right: 0;
    font-weight: 600;
    margin-top: .75rem;
  }
}
