#newsInfo,
.topInfo {
  width: calc(100% - 10px);
  margin: 0 5px;
  background-color: #fff;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;

  h2 {
    text-align: left;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-weight: 800;
  }
}

#newsInfo ul.newsInfoList,
.topInfo ul.newsInfoList,
#summary-section ul.newsInfoList {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;

  li {
    width: 100%;
    padding: 5px 0;
    background-color: #fff;
    border-top: 1px solid #ddd;
    padding-top: 10px;
    padding-bottom: 10px;

    &:nth-child(odd) {
      background-color: #f9f9f9;
    }

    &:nth-child(even) {
      background-color: #fff;
    }

    dl.newsInfo {
      margin-bottom: 0;
      padding: 0;
      display: flex;
      flex-direction: row;
      width: 100%;
      justify-content: space-between;
      gap: 10px;
      font-size: 12pt;

      dt {
        img {
          width: 107px;
          height: auto;
          border: 1px solid #aaa;
        }
      }

      dd {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: start;
        height: stretch;
        line-height: 1.4em;

        a {
          width: 100%;
          color: #428bca;
          text-decoration: none;
          cursor: pointer;

          &.newsInfoReadMore {
            font-size: 10pt;
            white-space: nowrap;
          }

          &:hover {
            transition: 0.3s ease-in-out;
            opacity: 0.5;
            cursor: pointer;
          }
        }

        .newsInfoDate {
          font-size: 10pt;
          color: #333;
          display: block;
          margin: 0;
          text-shadow: initial;
        }

        .newsInfoTitle {
          display: table-cell;
          text-align: left;
        }

        .newsInfoArticle {
          display: table-cell;
          flex-grow: 1;
          overflow: hidden;
          text-overflow: ellipsis;
          text-align: left;
          width: 100%;
        }
      }
    }
  }
}

a.summary-view {
  float: right;
  font-size: 11pt;
  margin-right: 30px;
  text-decoration: underline;
}

#summary-section {
  padding: 0;
}

#summary-section ul.newsInfoList {
  li {
    width: 100%;
    padding: 5px 0;
    background-color: #fff;
    border-top: 1px solid #ddd;
    padding-top: 10px;
    padding-bottom: 10px;

    &:nth-child(odd) {
      background-color: #f9f9f9;
    }

    &:nth-child(even) {
      background-color: #fff;
    }

    dl.newsInfo {
      gap: 10px;
      font-size: 10pt;

      dt {
        padding: 0;
        margin: 0;

        img {
          width: 107px;
          height: auto;
          border: 1px solid #aaa;
        }
      }

      dd {
        line-height: initial;
        padding: 0 5px;

        a {
          &.newsInfoReadMore {
            margin-top: 5px;
            font-size: 10pt;
          }
        }
      }
    }
  }
}

.column-wrap {
  width: 100%;
  max-width: 1130px;
  margin: 0px auto;
  padding: 20px 5px;

  dl {
    display: flex;
    flex-direction: column;
    gap: 10px;

    dt {
      background-color: #f9f9f9;
      border-color: #ddd;
      border-width: 1px 0;
      border-style: solid;
      padding: 10px;
    }

    dd {
      color: #333;
      text-shadow: initial;
      padding: 10px;
    }
  }

  p {
    color: #333;
    text-shadow: initial;
  }
}

.list-box {
  ul {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;

    li {
      width: 100%;
      padding: 5px 0;
      background-color: #fff;
      border-top: 1px solid #ddd;
      padding-top: 10px;
      padding-bottom: 10px;

      &:nth-child(odd) {
        background-color: #f9f9f9;
      }

      &:nth-child(even) {
        background-color: #fff;
      }

      a {
        display: flex;
        flex-direction: row;
        gap: 10px;
        width: 100%;
        align-items: center;
        justify-content: start;
      }

      .title {
        font-weight: 800;
      }

      ;
      ;

      .article {
        color: #333;
      }

      .date {
        font-size: 10pt;
        color: #333;
      }

      img {
        width: 107px;
        height: auto;
        border: 1px solid #aaa;
      }
    }
  }

  nav {
    ul {
      display: flex;
      flex-direction: row;
      gap: 10px;
      justify-content: center;
    }
  }
}

.explanation {
  padding: 0px 10px 20px 0;
  font-size: 12pt;
  line-height: 1.6em;
  color: #000;
}


@media (min-width: 992px) {
  .column-wrap {
    display: flex;
    flex-direction: row;
    gap: 20px;

    .column {
      flex-grow: 1;

      img {
        max-width: 98%;
      }
    }

    .summary {
      width: 300px;
      max-width: 300px;

      dl dt {
        text-align: right;
        font-weight: 400;
      }
    }
  }
}