hr {
  border: none;
  height: 1px;
  background-color: var(--sky-blue);
}

.publish-container {
  padding: 100px 160px;
}

/* ========================================================================== */
/* Year Selector */
/* ========================================================================== */

.publish-year-select-wrapper {
  margin-bottom: 24px;
}

.publish-year-select {
  width: 100%;
  max-width: 300px;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  font-size: 16px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  cursor: pointer;
}

/* ========================================================================== */
/* List Items */
/* ========================================================================== */

.publish-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.publish-item {
  display: flex;
  flex-direction: column;
}

.publish-item-date {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.56px;
  color: #A7A7A7;
}

.publish-item-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.64px;
  margin-bottom: 8px;
}

.publish-item-body {
  border-radius: 0 0 20px 0;
  border: 1px solid var(--sky-blue);
  padding: 20px;
  background-color: #fff;
}

.publish-item-content {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.56px;
  padding: 0 8px 8px 8px;
}

/* ========================================================================== */
/* publish-item-link */
/* ========================================================================== */

.publish-item-link {
  display: inline-block;
  align-items: center;
  gap: 5px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.56px;
  transition: opacity 0.2s;
  padding: 0 0 0 8px;
}

.publish-item-link:hover {
  opacity: 0.7;
}

.publish-item-link-icon {
  padding-right: 1.4em;
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M13.5%206H18V10.5%22/%3E%3Cpath%20d%3D%22M16%2013V17H7V8H11%22/%3E%3Cpath%20d%3D%22M12%2012L17.5%206.5%22/%3E%3C/svg%3E") no-repeat right center !important;
}

/* ========================================================================== */
/* ファイル本体 ※ 元定義は「/SPH/css/sph_custom.css」 */
/* ========================================================================== */

.document-layout-body {
  padding: 16px 0px;
}

.document-layout-body-file-box {
  grid-template-columns: 1fr;
  gap: 5px;
}

.document-layout-body-file {
  border: 1px solid var(--sky-blue);
}

.document-layout-body-file-text {
  color: var(--sky-blue);
}

/* ========================================================================== */
/* Pagination */
/* ========================================================================== */

/* Pagination */
.publish-pagination-container {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

/* ========================================================================== */
/* @media：TB */
/* ========================================================================== */

@media (max-width: 1023px) {
  .publish-container {
    padding: 64px;
  }
}

/* ========================================================================== */
/* @media：SP */
/* ========================================================================== */

@media (max-width: 767px) {
  .publish-container {
    padding: 64px 24px;
  }

  /* ==================================================== */
  /* List Items */
  /* ==================================================== */

  .publish-item-title {
    font-size: 16px;
  }

  .publish-item-body {
    padding: 15px;
  }
}

@media print {
  .publish-list {
    gap: 60px;
  }
}