@charset "utf-8";

/* 
=================================================================================

▼▼▼　blog_box　▼▼▼

=================================================================================
*/

@media screen and (min-width: 769px) {/* PC用 */
  .blog_box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6rem;
  }
}

.blog_box .content_box {
  flex: 1;
}

@media screen and (max-width: 768px) {/* SP用 */
  .blog_box .content_box {
    margin-bottom: 2em;
  }
}

.diary_box {
  background: #fff;
  border-radius: 1rem;
  padding: 2em;
  border: 1px solid #A9A9A9;
}

@media screen and (max-width: 768px) {/* SP用 */
  .diary_box {
    padding: 1em;
  }
}

ul.diary_box_list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5em;
}

ul.diary_box_list > li > a .material-symbols-rounded {
  font-size: 100%;
}

/* ul.category_list */
.category_list_outer {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 2rem 5rem;
  flex-wrap: wrap;
}

ul.category_list {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.3rem;
  flex-wrap: wrap;
}
ul.category_list > li > a {
  border-radius: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #000;
  color: #fff;
  padding: 0 1.3em;
}
/* ▲ ul.category_list ▲ */

/* ul.blog_list */
ul.blog_list > li {
  border-bottom: 2px dotted #A9A9A9;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0 2em;
  padding: 1em;
}
ul.blog_list > li .cat > a {
  border-radius: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #000;
  color: #fff;
  padding: 0 0.5em;
  width: 10em;
}
ul.blog_list > li .ttl {
  flex: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {/* SP用 */
  ul.blog_list > li {
    flex-wrap: wrap;
    gap: 0.5em 1em;
    padding: 1em 0;
  }
  ul.blog_list > li .day {
    flex: 1;
  }
  ul.blog_list > li .ttl {
    width: 100%;
    flex: inherit;
  }
}
/* ▲ ul.blog_list ▲ */

.blog_ttl {
  position: relative;
  padding-left: 1em;
}
.blog_ttl:before {
  content: "";
  display: block;
  position: absolute;
  width: 0.4em;
  height: 100%;
  top: 0;
  left: 0;
  background: #D45033;
  border-radius: 50vmin;
  pointer-events: none;
}
.blog_detail_ttl {
  border-bottom: 2px dotted #D45033;
  padding: 0 0 0.5em 0;
}

.mb1em {
  margin-bottom: 1em;
}

.mt1em {
  margin-top: 1em;
}

/* 
=================================================================================

▼▼▼　ページネーション　▼▼▼

=================================================================================
*/
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}
.pagination > a {
  width: 3em;
  height: 3em;
  border-radius: 50vmin;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
}
.pagination > a.current {
  background: #D45033;
  color: #fff;
}

/* 
=================================================================================

▼▼▼　前後の記事に戻る・進むボタン　▼▼▼

=================================================================================
*/

.move_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2em;
}
.move_box > * {
  position: relative;
  flex: 1;
}
.move_box > .prev_btn > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5em;
}
.move_box > .return_btn {
}
.move_box > .next_btn > a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5em;
}
.move_box > .prev_btn > a .circle,
.move_box > .next_btn > a .circle {
  border-radius: 50%;
  background: #D45033;
  color: #fff;
  font-size: 70%;
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
  text-align: center;
}

@media screen and (max-width: 768px) {/* SP用 */
  .move_box > .prev_btn > a,
  .move_box > .next_btn > a {
    border-radius: 50vmin;
    background: #D45033;
    color: #fff;
    padding: 1em;
    gap: .5em;
  }
}

