/* ------------------------------------------------
   archive
*/
/* ------------------------
   archive-menu
*/
.archive-menu {
  font-size: 14px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.archive-menu ul {
  background: #FFF;
  padding: .5em 1.5em;
  margin: 0;
  list-style-type: none;
}
@media screen and (min-width: 768px) {
  .archive-menu ul {
    display: flex;
  }
}
.archive-menu ul ul {
  display: none;
}
.archive-menu li:not(:last-child) {
  margin-right: 1.5em;
}

/* ------------------------
   archive-meta
 */
.archive-meta {
  font-size: 14px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .archive-filter {
    margin-left: 1em;
  }
}
@media screen and (max-width: 767px) {
  .archive-filter {
    margin-top: .5em;
    display: block;
  }
}
/* ------------------------------------------------
   ページネーション
*/
ul.page-numbers {
  font-size: 18px;
  padding-left: 0;
  list-style-type: none;
  display: flex;
  margin-bottom: 20px;
  justify-content: center;
}
a.page-numbers:hover {
  opacity: .7;
}
a.page-numbers,
span.page-numbers {
  color: inherit;
  display: block;
  width: 48px;
  height: 48px;
  border: 2px solid #EEE;
  line-height: 46px;
  box-sizing: border-box;
  background: #FFF;
  text-align: center;
  text-decoration: none;
  margin-right: 10px;
  /*border-radius: 24px;*/
}
.page-numbers.current {
  background: #EEE;
}
.page-numbers.next,
.page-numbers.prev {
  background: inherit;
  border: 0;
}

/* ------------------------------------------------
   記事一覧
*/
.entries {
  font-size: 14px;
}
.entries .-cnt {
  line-height: 1.5;
}
.entries .-title {
  font-weight: bold;
}
.entries .-title,
.entries .-summary {
  margin: .5em 0;
}
.entries .-title h2,
.entries .-title h3,
.entries .-title h4,
.entries .-summary p {
  font-size: 100%;
  margin: 0;
}
.entries .figcnt {
  display: flex;
  padding-left: 0;
}
.entries .figcnt .-cnt {
  align-content: start;
}
.entries .figcnt .-fig {
  line-height: 0;
}
.entries .figcnt .-fig img {
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .entries .figcnt .-fig {
    flex: 0 0 300px;
  }
  .entries .figcnt .-fig img {
    height: 200px;
  }
  .entries .-cnt {
    flex-grow: 1;
  }
  .entries .-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .entries .-cnt {
    flex-grow: 1;
  }
  .entries .-title {
    flex: 0 0 100%;
    font-size: 16px;
  }
  .entries .figcnt .-fig,
  .entries .sp-figcnt .-fig {
    flex: 0 0 120px;
    margin-right: 10px;
  }
  .entries .figcnt .-fig img,
  .entries .sp-figcnt .-fig img {
    height: 80px;
  }
}

/* ------------------------------------------------
 */
.entries.-border-list > * {
  margin-top: 0;
  margin-bottom: 0;
  border-bottom: 5px dotted #EEE;
}
.entries.-border-list > :first-child {
  border-top: 5px dotted #EEE;
}
.entries.-border-list .entry > :not(:last-child) {
  margin-right: 10px;
}
.entries.-border-list .-title {
  font-size: 100%;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .entries.-border-list > * {
    padding: 15px 20px !important; 
  }
}
@media screen and (max-width: 767px) {
 .entries.-border-list > * {
    padding-top: 10px !important; 
    padding-bottom: 10px !important; 
  }
}
