@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: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
ul.category_list > li > a {
  display: block;
  background: #fff;
  border: 1px solid;
  border-radius: 0.4em;
  padding: 0.5em 1em;
  transition: .5s all;
  min-width: 8em;
}
@media screen and (max-width: 768px) {/* SP用 */
  ul.category_list {
    justify-content: flex-start;
  }
}
/* ▲ 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;
}
/* ▲ 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;
}

.status-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1em;
  flex-wrap: wrap;
}

.status-group .status-group-category {
  flex: 1;
}

.status-group .status-group-category .list04 {
  justify-content: flex-start;
}

.status-group-tag {
  margin-top: 1em;
}

.status-group-content {
  word-wrap: break-word;
}

.status-group-content img {
  height: auto;
}

.status-group-content a {
  color: #00469B;
  text-decoration: underline;
  position: relative;
}

.status-group-content a::after {
  content: "\e157";
  display: inline-block;
  margin-left: 0.5em;
  font-family: 'Material Symbols Outlined';
  font-size: 150%;
  line-height: 0;
  vertical-align: middle;
  color: #00469B;
}

.status-group-content a[target^="_blank"]::after {
  content: "\e89e";
}

.status-group-content h1 {
  background: #00469B;
  color: #fff;
  font-size: 150%;
  font-weight: bold;
  padding: .75em 1em;
  margin: 2em 0 1em;
}
.status-group-content h2 {
  background: #F0F0F2;
  color: #00469B;
  font-size: 130%;
  font-weight: bold;
  padding: .75em 1em;
  margin: 2em 0 1em;
}
.status-group-content h3 {
  font-size: 110%;
  font-weight: bold;
  padding-bottom: 0.5em;
  color: #00469B;
  border-bottom: 3px solid;
  margin: 2em 0 1em;
}
.status-group-content h4 {
  color: #00469B;
  font-weight: bold;
  margin: 2em 0 1em;
}

.status-group-content h5 {
  font-weight: bold;
  margin: 2em 0 1em;
}

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

▼▼▼　sub-files　▼▼▼

=================================================================================
*/
.sub-files {
  background: rgba(0, 155, 231, 0.1);
  padding: 3.5em;
  border-radius: 1em;
  position: relative;
  display: block;
}
ul.sub-files-list > li {
  list-style: none;
  border-bottom: 1px dashed #00469B;
  padding: .5em 0;
}
ul.sub-files-list > li .ico-box {
  font-size: 180%;
}
ul.sub-files-list > li .txt02 {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
ul.sub-files-list > li a {
  color: #00469B;
  position: relative;
}
ul.sub-files-list > li .rich a::after {
  content: "\e157";
  display: inline-block;
  margin-left: 0.5em;
  font-family: 'Material Symbols Outlined';
  font-size: 150%;
  line-height: 0;
  vertical-align: middle;
  color: #00469B;
}
ul.sub-files-list > li .rich a[target^="_blank"]::after {
  content: "\e89e";
}

ul.sub-files-list > li + li {
  margin-top: 1em;
}
@media screen and (max-width: 768px) {/* SP用 */
  .sub-files {
    padding: 2em;
  }
}

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

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

=================================================================================
*/
.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;
  }
}

