@charset "UTF-8";
/*================================================
　　breadcrumb   
.breadcrumb {margin:1em auto 1em 0.8em;}
.breadcrumb ol li:before {
    content: '>';
    margin: 0 5px 0 0;
    color: #777;
}
 ================================================*/
.breadcrumb ol {
    font-size:0.9em;
    margin: 1em 0 ;
    padding: 0;
}
.breadcrumb ol li {
    display: inline;
    list-style: none;
    color: var(--color-b);
    font-weight: bold;
    margin-right: -10px;
    background: rgb(255 255 255 / 5%);
    padding: 0.5em 0.8em;
    border-radius: 5px;
}
.breadcrumb ol li:first-child:before {
    content: none;
}
.breadcrumb ol li > a{
    color: var(--color-a);
    margin-right: 5px;
    text-decoration: none;  
}
.breadcrumb ol li a:hover {
    text-decoration: underline;
    color: var(--color-b);
}
@media print, screen and (max-width: 500px) {
    .breadcrumb ol li span.e-title{
        display: block;
    }   
}
/*================================================
 *　tagcloud
 ================================================*/
.tagcloud, .tags{
    list-style: none;
    margin: 0;
    overflow: hidden;
    padding: 0.4em 0 0;
    display: inline-block;
    clear: both;
}
.tagcloud li, .tags li{
    display: inline-block;
    padding: 0;
    margin: 0 0.2em 0.6em 0;
}
.tagcloud a, .tags a{
 background:var(--color-c);
 color:#fff;
 padding:4px 8px 3px;
 margin:3px;
 border-radius:5px;
 text-decoration:none;
 font-size:12px;
 line-height: 1em;
 font-weight:600;
 white-space: nowrap;
}
.tagcloud a:hover, .tags a:hover{
 color:#fff;
 background:var(--color-d);
 font-weight:400;
}
.tagcloud a:before, .tags a:before{
 font-family:"Font Awesome 6 Free";
 content:"\f02b"; 
 font-weight:600;
 color:#fff;
 padding-right:6px;
}
.tagcloud a span, .tags a span{
 padding-left:0.5em;
 color:#fff;
}
.tagcloud li.rrr a, .tags li.rrr a{
 background:#ff0000;
}
/*================================================
 *　catcloud
 ================================================*/
.catcloud, .post-categories{
    list-style: none;
    margin: 0;
    overflow: hidden;
    padding: 0.4em 0 0;
    display: inline-block;
    clear: both;
}
.catcloud li, .post-categories li{
    display: inline-block;
    padding: 0;
    margin: 0 0.2em 0.6em 0;
}
.catcloud a, .post-categories a{
 background:var(--color-a);
 color:#fff;
 padding:4px 8px 3px;
 margin:3px;
 border-radius:5px;
 text-decoration:none;
 font-size:12px;
 line-height: 1em;
 font-weight:600;
 white-space: nowrap;
}
.catcloud a:hover, .post-categories a:hover{
 background:var(--color-b);
 color:#fff;
 font-weight:400;
}
.catcloud a:before, .post-categories a:before{
 font-family:"Font Awesome 6 Free";
 content:"\f35a"; 
 font-weight:600;
 color:#fff;
 padding-right:6px;
}
.catcloud a span, .post-categories a span{
 padding-left:0.5em;
 color:#fff;
}

/*================================================
 *　pagination
 ================================================*/
.pagination {
  margin: 0 auto 2em;
  padding: 0em 0;
  text-align: center;
  display: block;
}
.pagination a {
  font-size: 1em;
  line-height: 2em;
  text-align: center;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0;
  display: inline-block;
  height: 2em;
  width: 2em;
  border-radius: 50%;
  background: var(--color-d);
  transition: .3s
}
.pagination a:hover {
  color: #fff;
  background: var(--color-e);
}
.pagination span {
  font-size: 1em;
  line-height: 2em;
  text-align: center;
  letter-spacing: 0;
  display: inline-block;
  height: 2em;
  width: 2em;
  border-radius: 50%;
  background: var(--color-d);
}
.pagination span.dots {
  background: 0
}
.pagination span.current {
  background: var(--color-e);
  color: #fff
}

/*================================================
 *  ページトップへの戻り
 ================================================*/
#page-top{
  display: block;
  position: fixed;
  z-index: 9999;
  bottom: 20px;
  right: 5px;
    width: 2.2em;
    height: 2.2em;
    line-height: 2.2em;
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
  text-decoration: none;
  transition: .5s;
}
#page-top{background:#fff;}
#page-top:hover{background:#fff;}
#page-top a{font-size:1em; color:#444; text-decoration:none;}
#page-top a:hover{font-size:1.1em; color:#666;}