/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

section.page-title .container {
  padding: 0 5%;
}
/*--------------------- ニュースフィルター-------------------*/
.select-options{　/* リストにデフォルトドットが効いてしまうのを修正 */
  list-style: none;
}
.select-options {  /* 共通スタイルシートに書いてるのに効かないからもう一度 */
    width: 100%;
    max-width: 250px;
    padding: 1rem;
    gap: 0.75rem;
}

/*--------------------- ニュース一覧-------------------*/
.post-listing ul, ul li{
  margin:0;
}

.simple-news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.simple-news-item {
  padding: 1.25rem 0;
  border-top: 1px solid var(--grey2); /* 区切り線 */
}
.simple-news-item:last-child {
  border-bottom: 1px solid var(--grey2); /* 区切り線 */
}

.simple-news-link {
  text-decoration: none;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.news-title {
  font-size: 1rem;
  font-weight: 700;
  color:var(--navy);
  font-family: 'Zen Kaku Gothic New', sans-serif;
  line-height: 1.6;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: var(--navy);
}

.news-meta .news-tag {
  font-weight: 400;
  line-height: 1.6;
}

.news-meta .news-separator {
  width: 5px;
  height: 5px;
  background: var(--navy);
}

.news-meta .news-date {
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  opacity: 0.8;
}
a:link:hover{
  color:var(--orange);
}

/*--------------------- ニュース詳細-------------------*/
body {
    font-family: 'Zen Kaku Gothic New', sans-serif;
/*     font-style: normal; */
    font-weight: 500;
    text-decoration: none;
    background-color: var(--white);
    color: var(--navy);
    font-size: 1rem;
}
.blog.two .main-page {
    background: var(--white);
/*     padding: 22px 20px 50px;
    padding-top: 22px; */
}
.container {
  max-width:1140px;
  padding:140px;
}
.blog-meta {
  display:flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.blog-topics ul{
  list-style:none;
  padding: 0;
    margin: 0;
}
.blog-topics ul li{
    margin: 0 0.5rem;
}
.blog-topics .section-dot{
  display:inline-block;
}
.blog-topics .section-dot:last-of-type {
  display: none;
}

.page-center {
    max-width: 800px;
}

tr:nth-child(odd) {
    background-color: var(--grey2);;
}
.post-body ul{
    margin: 0;
    padding-left: 0.5rem;
    list-style: none;
}

.post-body ul li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  color: var(--navy, #000F1E);
  line-height: 28.8px;
  letter-spacing: 0.96px;
}

.post-body ul li::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--orange, #F56012);
  display: inline-block;
  flex-shrink: 0;
}
  .post-listing {
  margin-top:4rem;
  }

/* ブログ用ページネーション */
.pagination a{
   font-weight:700;
  color:var(--navy);
}
.pagination a.pagination-next,
.pagination a.pagination-prev{
  color:var(--white);
}

@media (max-width: 1024px){
        button.close-btn, button.hamburger {
        border-radius: 0;
        border-bottom-left-radius: 8px;
    }
}
@media (max-width: 678px){
  .blog-meta {
  justify-content: flex-end;
  }
  .select-options {  /* 共通スタイルシートに書いてるのに効かないからもう一度 */
    max-width: none;
    list-style: none;
  }

}