:root{
  --bg:#d9d9d4;
  --ink:#1a1a1a;
  --red:#d73125;
  --orange:#4d647d;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family: "DotGothic16", ui-monospace, "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.page{
  max-width: 520px;
  margin: 0 auto;
  padding: 24px 14px 44px;
}

/* Avatar */
.avatar{
  width: 86px;
  height: 86px;
  margin: 10px auto 18px;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid rgba(0,0,0,.25);
  background: rgba(255,255,255,.25);
}
.avatar img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

/* Top */
.top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin: 6px 2px 10px;
}
.logo{
  margin:0;
  font-size: clamp(18px, 4.4vw, 22px);
  letter-spacing: .06em;
}
.nav__link{
  color:inherit;
  text-decoration:none;
  font-size: clamp(12px, 3.3vw, 14px);
  border-bottom: 1px solid rgba(0,0,0,.35);
  padding-bottom: 2px;
}

/* Boxes */
.box{
  position:relative;
  border: 4px solid var(--ink);
  padding: 14px 12px 12px 56px; /* left strip area */
  background: #f3f3f2;
}

/* left strip */
.box--red::before,
.box--orange::before{
  content:"";
  position:absolute;
  left:0; top:0; bottom:0;
  width: 34px;
}
.box--red::before{ background: var(--red); }
.box--orange::before{ background: var(--orange); }

/* vertical label */
.box__label{
  position:absolute;
  left: 7px;
  top: 12px;
  width: 20px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-weight: 800;
  color:#fff;
  letter-spacing: .06em;
}

/* list */
.list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 6px;
}

/* 本文 */
.list li{
  display:grid;
  grid-template-columns: 4ch 28px 1fr; /* ← 日付列を"4文字分"に固定 */
  column-gap: 4px;  /* ← 日付↔絵文字、絵文字↔本文の横だけ */
  row-gap: 0px;     /* ← 行の縦の隙間が必要なら増やす */
  align-items:start;
  font-size: clamp(9px, 3.0vw, 10px);
  line-height: 1.28;
}

/* 本文内の絵文字についての記述 */

.icons{
  width: 28px;
  display: inline-flex;
  align-items: center;
}

.icons.one{ justify-content: center; }
.icons.two{ justify-content: space-between; }
.icons.none{ justify-content: center; }

.icon{
  display:inline-block;
  line-height: 1;
  font-size: 1em; /* 文字サイズに追従。大きくしたければ 1.05em とか */
}

/* 参戦データ */
.date{
  text-align: right;     /* ← 日付を列の右端に寄せる */
  justify-self: end;     /* ← 念のため */
}

.text{
  word-break: break-word;
}

/* plus */
.plus{
  text-align:center;
  font-size: 44px;
  line-height: 1;
  padding: 16px 0 12px;
}

/* footer button */
.footer{
  margin-top: 18px;
  text-align:center;
}
.btn{
  display:inline-block;
  text-decoration:none;
  color:inherit;
  border: 2px solid rgba(0,0,0,.45);
  padding: 10px 14px;
  border-radius: 14px;
  font-size: clamp(12px, 3.3vw, 14px);
}

/* phone tune */
@media (max-width: 420px){
  .list li{
    font-size: 10px;     /* “ちょい大きい”対策 */
    line-height: 1.24;
  }
  .box{ padding-left: 52px; }
  .plus{ font-size: 40px; }
}