.widget_pages ul {
  list-style: none;
  padding-left: 0;
}

.entry-title {
  font-family: 'Zen Old Mincho';
  font-size: 1.4em;
  margin-bottom: 3px;
  margin-left: 0;
  line-height: 1.4;
}

.entry-title a {
  text-decoration: none;
  color: #222;
}

.entry-title a:hover {
  color: #22597b;
}

.post-categories a,
.post-tags a {
   background-color: #9BD0E2;
  color: #FFFFFF;
  font-size: 0.75em;
  padding: 2px 6px;
  margin-bottom: 3px ;
  margin-right: 4px ;
  text-decoration: none;
  border-radius: 3px ;
  white-space: nowrap ;
  display: inline-block ;
}

.post-tags a:hover,
.post-categories a:hover {
  background-color: #22597b;
  color: #fff;
}

.post-meta {
  margin-bottom: 0.9em;
  font-size: 0.9em;
  color: #666;
}

/* RWD ????? */
@media (max-width: 600px) {
  .entry-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.sns-icon a{
margin-top: 50px !important ;
margin: 0 auto !important;
text-decoration: none !important;
border: none !important;
}

 .intro-container {
    display: flex;
flex-direction: row;
align-items: flex-start;
margin: 15px;
flex-wrap: wrap; /* NEW: ???? */
  }
  .left-col {
    flex: 0 1 auto; /* ???? */
    width: 150px;     /* ??? */
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .right-col {
   flex: 1; /* ?????? */
  min-width: 0; /* ?????? */
  }
 
  @media (max-width: 700px) {
    .intro-container {
      flex-direction: column;
      align-items: stretch;
    }
    .left-col, .right-col {
      width: 100%;
      text-align: center;
align-items: stretch;
    }
  }