.sokuho-section {
  margin: 24px 0 32px;
  padding: 0;
  background: #fff;
  border: 1px solid #cceefa;
  border-radius: 10px;
  box-shadow: 0 1px 0 rgba(0, 159, 193, .04);
  overflow: hidden;
}

.sokuho-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 14px 24px;
  background: #f1fbff;
  border-bottom: 1px solid #d9f1f8;
}

.sokuho-section__heading {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.sokuho-section__icon {
  position: relative;
  width: 18px;
  height: 22px;
  flex: 0 0 auto;
  border: 2px solid #a8a48f;
  border-radius: 2px;
  background: linear-gradient(#fff, #f2ead5);
  box-shadow: inset 0 0 0 2px #efe8cf;
}

.sokuho-section__icon::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 4px;
  width: 8px;
  height: 5px;
  border: 2px solid #a8a48f;
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
}

.sokuho-section__title {
  margin: 0;
  color: #19a4cb;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
}

.sokuho-section__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 14px;
  border-radius: 999px;
  background: #22a8cf;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.sokuho-section__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 4px 14px;
  border: 2px solid #49c880;
  border-radius: 5px;
  background: #f7fff9;
  color: #159c4c;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.sokuho-section__note {
  margin: 0;
  color: #9aa1a8;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.sokuho-container {
  height: var(--sokuho-height, 400px);
  overflow-y: auto;
  scrollbar-gutter: stable;
  background: #fff;
}

.sokuho-list {
  display: flex;
  flex-direction: column;
}

.sokuho-item {
  display: grid;
  grid-template-columns: 108px minmax(80px, 86px) minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 66px;
  padding: 13px 24px;
  border-bottom: 1px solid #edf0f2;
  color: #374151;
}

.sokuho-item__date {
  color: #aeb4ba;
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}

.sokuho-item__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  max-width: 100%;
  min-height: 28px;
  padding: 4px 12px;
  border: 0;
  border-radius: 999px;
  background: #e5f8ff;
  color: #21a6cf;
  font-size: 13px;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sokuho-item__title {
  min-width: 0;
  overflow: hidden;
  color: #4a4f55;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sokuho-item__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  min-height: 38px;
  padding: 8px 18px;
  border-radius: 999px;
  background: #23a7ce;
  color: #fff !important;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color .2s ease;
}

.sokuho-item__btn:hover,
.sokuho-item__btn:focus {
  background: #0b8fb3;
}

.sokuho-loading,
.sokuho-empty {
  padding: 16px 24px;
  color: #667085;
  font-size: 14px;
  text-align: center;
}

.sokuho-footer {
  padding: 14px 24px 16px;
  border-top: 1px solid #edf0f2;
  background: #fbfbfc;
  color: #c0c4c8;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 767px) {
  .sokuho-section__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 14px;
  }

  .sokuho-section__heading {
    flex-wrap: wrap;
    gap: 8px;
  }

  .sokuho-section__title {
    font-size: 18px;
  }

  .sokuho-section__note {
    white-space: normal;
  }

  .sokuho-item {
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 8px;
    padding: 12px 14px;
  }

  .sokuho-item__tag {
    justify-content: flex-start;
    width: fit-content;
  }

  .sokuho-item__title,
  .sokuho-item__btn {
    grid-column: 1 / -1;
  }

  .sokuho-item__title {
    white-space: normal;
  }

  .sokuho-item__btn {
    min-width: 0;
  }

  .sokuho-footer {
    padding-right: 14px;
    padding-left: 14px;
  }
}
