@charset "utf-8";
.headerBlog{
    background: url("../img/flowHeadBg.png")no-repeat center;
    background-size: cover;
}

.content-blog{
    background-color: #E0F7FA;
}

.page-content-2col {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1308px;
    margin: 0 auto;
    padding: 3.125rem 1.25rem 7.5rem;
    gap: 20px;
    background-color: #E0F7FA;
    box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
    .page-content-2col {
        padding: 3.125rem 1.25rem 7.5rem;
        -moz-column-gap: 2.5rem;
        column-gap: 2.5rem;
    }
}
@media screen and (max-width: 768px) {
    .page-content-2col {
        padding: 2.875rem 0.9375rem 6.25rem;
        flex-direction: column;
    }
}

.main-area {
    flex-grow: 1;
    max-width: 858px;
    background-color: #fff;
    padding: 36px 29px;
    border-radius: 4px;
    box-sizing: border-box;
}
@media screen and (max-width: 1267px) {
    .main-area {
        max-width: 67.4%;
    }
}

@media screen and (max-width: 768px) {
    .main-area {
        max-width: 100%;
        padding: 32px 16px;
    }
}

.archive-title {
  font-size: 26px;
  font-weight: 700;
  margin: 16px 0;
  line-height: 1.3;
}

.not-found__title{
  line-height: 1.5em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  color: #333;
  margin-bottom: 10px;
  font-size: 2em;
  font-weight: 700;
  font-style: normal;
}

.blog__posts {
    display: flex;
    flex-direction: column;
    row-gap: 18px;
}
  
.blog-post__link{
  text-decoration: none;
  display: block;
  padding: 1.5%;
  transition: all 0.3s ease-in-out;
}

.blog-post__link:hover {
  background-color: #E0F7FA;
  transition: all 0.3s ease-in-out;
}

.blog-post {
  position: relative;
  display: flex;
}
  
.blog-post__thumb {
    width: 320px;
    flex-shrink: 0;
    margin: 0;
}

.blog-post__thumb-img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

  .blog-item__link {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-top: 0.875rem;
    color: #1C1C1C;
  }
@media screen and (max-width: 768px) {
    .blog-post__thumb {
      width: 36%;
  }
}
  
.blog-post__body{
  margin-left: 15px;
}
@media screen and (max-width: 768px) {
  .blog-post__body{
    padding-bottom: 3.0rem;
  }
}

.blog-item__title{
    color: #333;
    font-size: 18px;
    margin: 0 0 0.4em 0;
    line-height: 1.6;
    font-weight: bold;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

@media screen and (max-width: 768px) {
  .blog-item__title {
    font-size: 17px;
  }
}

.blog-item__excerpt {
  color: #333333;
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 0.4em 0;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 768px) {
  .blog-item__excerpt {
    /* font-size: 14px; */
    display: none;
  }
}
  
.blog-post__meta {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: right;
  line-height: 1;
  font-size: 12px;
}

.blog-post__meta-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

.blog-post__meta-info > * {
  font-size: 0.7em;
  padding: 2px;
}

.blog-post__date {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 2.2;
    letter-spacing: 0.05em;
    color: #1C1C1C;
}
  
.blog-item__category {
    display: inline-block;
    background-color: var(--color-green-leaf);
    color: var(--color-white);
    padding: 0.1875rem 0.875rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
    .blog-item__category {
      font-size: 3.2vw;
    }
}
  
.blog-post__excerpt {
    margin-top: 0.9375rem;
}


/*************/
/*サイドバー
**************/
.sidebar {
    max-width: 350px;
    width: 100%;
    border-radius: 4px;
    padding: 19px;
    background-color: #fff;
    box-sizing: border-box;
}

@media screen and (max-width: 768px) {
    .sidebar {
        max-width: 100%;
        margin-top: 3.125rem;
    }
}

.sidebar-scroll{
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.widget {
    width: 100%;
}
  
.widget__inner {
    padding: 0 0.75rem;
}
  
.widget:not(:first-child) {
    margin-top: 2.25rem;
}
  
.widget p {
    margin-top: 0.3125rem;
}
  
.widget ul {
    margin-top: 0.75rem;
}
  
.widget ul li:not(:first-child),
.widget article:not(:first-child) {
    margin-top: 1rem;
}
  
  .widget ul li a {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #333;
  }
  @media screen and (max-width: 768px) {
    .widget ul li a {
      font-size: 4vw;
    }
  }
  
.widget h2 {
    position: relative;
    font-size: 1.2rem;
    font-weight: bold;
    background-color: #26C6DA;
    color: white;
    padding: 5px 5px 5px 42px;
    margin-bottom: 16px;
    line-height: 2.5;
    position: relative;
    z-index: 0;
}

.widget h2::after{
    position: absolute;
    content: "";
    top: -2px;
    left: -2px;
    bottom: auto;
    right: auto;
    z-index: 1;
    border: 0;
    border-left: solid 40px white;
    border-bottom: solid 79px transparent;
}

.widget h3 {
    font-size: 1rem;
    font-weight: 500;
}
  
.archive-date__select-wrap {
    position: relative;
}
  
.side-widget__input-select {
    font-size: 18px;
    font-weight: 500;
    width: 100%;
    padding: 11px;
    background-color: var(--color-white);
    border: none;
}

.side-widget__input-select:focus{
    transition: all 0.3s ease;
    background-color: #E0F7FA;
}

@media screen and (max-width: 768px) {
    .side-widget__input-select {
      font-size: 17px;
    }
}
  
.archive-date__select-wrap{
    border: none;
    border-bottom: solid #26C6DA 1px;
    background-color: transparent;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/* 
  .archive-date__select-wrap::before {
    position: absolute;
    top: 50%;
    right: 0.875rem;
    width: 0;
    height: 0;
    border-width: 0 6px 6px 6px;
    border-style: solid;
    border-color: transparent transparent var(--color-black) transparent;
    content: "";
    pointer-events: none;
  }
  
  .archive-date__select-wrap::after {
    position: absolute;
    top: 65%;
    right: 0.875rem;
    width: 0;
    height: 0;
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: var(--color-black) transparent transparent transparent;
    content: "";
    pointer-events: none;
  } */

.search-box {
    margin: 1em 0 2em;
    position: relative;
}

.search-edit {
    border-width: 0 0 2px 0;
    border-radius: 0;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom: 2px solid #26C6DA;
    padding: 11px;
    width: 100%;
    font-size: inherit;
    overflow: clip;
    box-sizing: border-box;
}

.main-area .search-edit{
  padding: 20px 11px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: inherit;
}

.search-submit {
    position: absolute;
    right: 3px;
    top: calc(50% - 12px);
    font-size: 20px;
    cursor: pointer;
    border: none;
    color: #ddd;
    padding: 0 8px;
    background-color: rgba(255, 255, 255, 0);
    cursor: pointer;
}

/************************************
** おすすめ記事
************************************/
/* WPPのulをそのまま使う場合の余計な見た目をリセット */
.wpp-list{
  list-style: none;
  margin: 0;
  padding: 0;
}

.popular-posts__item {
  padding: 10px 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
}

.popular-posts__item:hover{
  background-color: #E0F7FA;
  transition: all 0.3s ease-in-out;
}

.wpp-post-title{
  display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}
.popular-posts__item + .popular-posts__item{
  margin-top: 12px;
}

/* リンクを横並びにしたいなら flex に（縦が良ければ消してOK） */
.popular-posts__link{
  display: flex;
  gap: 8px;
  text-decoration: none;
}

/* サムネ：幅120固定、16:9 */
.popular-posts__thumbWrap{
  position: relative;
  width: 120px;
  flex-shrink: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

/* WPPが出すimgを枠いっぱいに */
.popular-posts__thumbWrap img{
  width: 100%;
  object-fit: cover;
  display: block;
}


/* 順位バッジ */
.popular-posts__rank{
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  color: #fff;
  z-index: 2;
  opacity: 0.9;
}

.popular-posts__rank.rank--gold   { background: #cca11f; }
.popular-posts__rank.rank--silver { background: #b1b1b3; }
.popular-posts__rank.rank--bronze { background: #b37036; }
.popular-posts__rank.rank--other  { background: #666; }

/* タイトル */
.popular-posts__title{
  font-size: 14px;
  font-weight: 600;
  color: inherit;
  line-height: 1.5;
}

/* ビュー数が残ってしまう環境向けの保険 */
.wpp-meta,
.wpp-views,
.post-stats{
  display: none !important;
}

@media screen and (max-width: 1024px) {
  .popular-posts__thumbWrap{
    width: 60px;
  }
}

/************************************
** ページネーション
************************************/
.pagination {
  margin: 24px 0;
  clear: both;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  width: 100%;
}
/* .pagination .current {
  background-color: #26C6DA;
}
.pagination a:hover {
  background-color: #f5f8fa;
  transition: all 0.3s ease-in-out;
  color: var(--cocoon-text-color);
} */

.pagination .page-numbers {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  height: 46px;
  width: 46px;
  margin: 0 4px;
  line-height: 44px;
  text-align: center;
  border-radius: 4px;
  background-color: #26C6DA;
  font-size: 16px;
}

.pagination a.page-numbers:hover{
  opacity: 0.7;
}

.page-numbers span {
  line-height: inherit;
}

.page-numbers.dots {
  opacity: 0.6;
  background-color: var(--cocoon-xx-thin-color);
}

/************************************
** 「次のページ」ページネーション
************************************/
.pagination-next {
  margin-top: 24px;
}

.pagination-next .pagination-next-link, .comment-btn {
  background-color: #26C6DA;;
  color: #fff;
  display: block;
  font-size: 1.2rem;
  text-decoration: none;
  width: 100%;
  text-align: center;
  padding: 10px;
  display: block;
  border-radius: 4px;
  box-sizing: border-box;
}

.pagination-next:hover .pagination-next-link:hover, .comment-btn:hover{
  opacity: 0.7;
}

.five-digits-or-more {
  font-size: 13px;
}

.six-digits-or-more {
  font-size: 11px;
}

/************************************
** ブログ詳細
************************************/
.blog-detail__title {
  background: linear-gradient(to right, #00ACC1, #26C6DA);
  color: white;
  padding: 1em;
  font-size: 26px;
  font-weight: bold;
  margin: 16px 0;
  line-height: 1.25;
}
@media screen and (max-width: 750px) {

}

.blog-detail__title::after {
  position: absolute;
  content: "";
  background-color: var(--color-green-leaf);
  height: 1px;
  width: 100%;
  left: 0;
  bottom: -0.8125rem;
}

.blog-detail__meta {
  margin-top: 1.625rem;
  padding-left: 0.375rem;
}

.blog-detail__thumbnail {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.blog-detail__content {
  margin-top: 5rem;
}

.blog-post__date-tags {
  line-height: 0.8;
  text-align: right;
  margin-bottom: 1em;
}

.blog-post__date{
    margin-right: 8px;
    padding: 2px;
    display: inline;
    font-size: 0.7em;
}

.blog-post__date-text{
    margin-left: 3px;
}

.read-time {
  text-align: center;
  font-size: 0.9em;
  border-top: 4px double #eee;
  border-bottom: 4px double #eee;
  margin: 0 3%;
  margin-bottom: 1rem;
}

.read-time .hourglass-half-icon {
  margin-right: 3px;
}

.entry-content .#ez-toc-container{
  box-sizing: border-box;
  margin-bottom: 1.8rem;
}

div#toc_container{
  box-sizing: border-box;
  margin-bottom: 1.8rem;
}

.ez-toc-title-container{
  text-align: center;
}

.blog-detail .entry-content{
  margin-top: 1em;
  margin-bottom: 3em;
}

.blog-detail .entry-content>* {
  line-height: 1.8;
  margin-bottom: 1.8em;
  box-sizing:border-box;
}

.blog-detail .entry-content h2,
.blog-detail .entry-content h3,
.blog-detail .entry-content h4,
.blog-detail .entry-content h5,
.blog-detail .entry-content h6 {
  color: #00ACC1;
  background-color: transparent;
  border: 0;
  border-bottom: 5px solid #00ACC1;
  margin-bottom: 1.62em;
}
.blog-detail .entry-content h2,
.blog-detail .entry-content h3 {
  padding: 0.5em;
}
.blog-detail .entry-content h3 {
  border-width: 3px;
}
.blog-detail .entry-content h3::after {
  width: 100%;
  height: 3px;
}
.blog-detail .entry-content h4,
.blog-detail .entry-content h5,
.blog-detail .entry-content h6 {
  padding: 0.25em;
  border-width: 1px;
}

.blog-detail .entry-content h2,
.blog-detail .entry-content h3,
.blog-detail .entry-content h4,
.blog-detail .entry-content h5,
.blog-detail .entry-content h6 {
  line-height: 1.25;
  font-weight: bold;
}

.blog-detail .entry-content h4,
.blog-detail .entry-content h5,
.blog-detail .entry-content h6 {
  font-size: 20px;
}

.blog-detail .entry-content h2 {
  font-size: 24px;
  border-radius: 4px;
}

.blog-detail .entry-content h3 {
  font-size: 22px;
}

.blog-detail .entry-content ul {
  list-style-type: disc;
}

.blog-detail .entry-content ol,
.blog-detail .entry-content ul {
  padding-left: 40px;
  box-sizing: border-box;
}

.blog-detail .wp-block-quote {
  border: solid #00ACC1 1px;
  background-color: #E0F7FA;
}

.blog-detail .wp-block-quote::before, .blog-detail .wp-block-quote::after {
  color: #00ACC1;
}
.blog-detail .wp-block-quote cite {
  color: #26C6DA;
}
.blog-detail .wp-block-file button {
  background-color: #26C6DA;
}

pre {
  border: solid #00ACC1 1px;
  background-color: #E0F7FA;
}

blockquote {
  border: solid #00ACC1 1px;
  background-color: #E0F7FA;
}
blockquote::before, blockquote::after {
  color: #00ACC1;
}
blockquote cite {
  color: #26C6DA;
}

.wp-block-table tbody {
  border: solid #26C6DA 1px!important;
}
.wp-block-table tbody tr:nth-child(odd) {
  background-color: #80DEEA;
}
.wp-block-table tbody tr:nth-child(even) {
  background-color: white;
}
.wp-block-table tbody tr td {
  border: none;
}

.blog-detail .wp-block-calendar .wp-calendar-table caption {
  color: white;
  border-color: #00838F;
  background-color: #00ACC1;
}

.blog-detail .wp-block-calendar .wp-calendar-table thead tr th {
  color: white;
  border-color: #00838F;
  background-color: #26C6DA;
}

.blog-detail .wp-block-calendar .wp-calendar-table tbody tr td {
  color: white;
  border-color: #00838F;
  background-color: #80DEEA;
}

.blog-detail .wp-block-calendar .wp-calendar-table tbody tr td a {
  border-radius: 0;
  background-color: #80DEEA;
  color: white;
}

.blog-detail .wp-block-calendar .wp-calendar-table tbody tr td [id$=today], .blog-detail .wp-block-calendar .wp-calendar-table tbody tr td [id$=today] a {
  background-color: #26C6DA;
  color: white;
}

.blog-detail .wp-block-calendar .wp-calendar-table tfoot {
  display: none;
}

.blog-detail .wp-block-archives select {
  border: solid #26C6DA 1px;
  background-color: #E0F7FA;
}

.blog-detail .wp-block-categories select {
  border: solid #26C6DA 1px;
  background-color: #E0F7FA;
}
.blog-detail .wp-block-search {
  display: flex;
  flex-direction: row;
}

.blog-detail .wp-block-search input {
  width: auto;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: solid #26C6DA 2px;
}

.blog-detail .wp-block-search input:focus {
  background-color: #E0F7FA;
  transition: all 0.3s ease;
}

.blog-detail .wp-block-search button {
  display: inline-block;
  padding: 1em 2em;
  background-color: #26C6DA;
  border: none;
  color: white;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}

.blog-detail .wp-block-tag-cloud a {
  text-decoration: none;
  border-radius: 4px;
  color: #333333;
}

.blog-detail .wp-block-tag-cloud a:hover {
  background-color: #E0F7FA;
  transition: all 0.3s ease;
}

.blog-detail .wp-block-tag-cloud a .fa-tag {
  color: #26C6DA;
}

/* YouTube iframe対応（レスポンシブ） */
.blog-detail iframe {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9; /* CSSでアスペクト比を維持 */
  margin-bottom: 0.9375rem;
}

/* 旧ブラウザ対応が必要な場合はwrapで対応 */
.blog-detail .video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9のアスペクト比 */
  margin-bottom: 0.9375rem;
}

.blog-detail .video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.entry-categories-tags{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  margin-bottom: 18px;
}

.entry-categories a{
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-right: 5px;
  padding: 2px 6px;
  font-size: 12px;
  background-color:#333;
  border-radius: 2px;
  word-break: break-all;
}

.entry-tags a{
  color: #333;
  text-decoration: none;
  display: inline-block;
  margin-right: 5px;
  padding: 1px 5px;
  font-size: 12px;
  border: 1px solid #999;
  border-radius: 2px;
  word-break: break-all;
}

.entry-tags{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.tax-icon{
  font-size: 14px;
}

.related-entry-heading{
  margin: 22px 0;
  font-size: 24px;
  font-weight: 700;
}

.related-posts{ margin-top: 28px; }
.related-posts__title{ font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.related-list{
  display: flex;
  flex-direction: column;
  row-gap: 0.8em;
  margin-bottom: 2em;
}

.related-entry-card-wrap{
  margin: 0;
  background-color: transparent;
  border-radius: 4px;
}

.related-entry-card{
  display:flex;
  gap: 12px;
  padding: 12px;
  transition: all 0.3s ease-in-out;
}

.related-entry-card:hover{
  background-color: #E0F7FA;
  transition: all 0.3s ease-in-out;
}

.related-entry-card-thumb{
  position:relative;
  flex: 0 0 160px;
  width: 160px;
}

.related-entry-card-thumb-image{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* サムネ無しダミー */
.thumb-dummy{
  background: rgba(0,0,0,.06);
  width:100%;
  aspect-ratio: 16 / 9;
}

/* カテゴリラベル */
.cat-label{
  position:absolute;
  left: 8px;
  bottom: 8px;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,.7);
  color:#fff;
}

/* タイトル＆抜粋 */
.related-entry-card-title{
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin: 0 0 0.4em 0;
  line-height: 1.6;
  font-weight: bold;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.related-entry-card-snippet{
  font-size: 0.8em;
  color: #333;
  margin: 0 0 0.4em 0;
  line-height: 1.3;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}


/************************************
** 投稿ナビ
************************************/
.pager-post-navi {
  margin: 38px 0;
  display: flex;
  flex-direction: column;
}

.pager-post-navi a {
  padding: 10px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
  font-size: 0.8em;
  transition: all 0.3s ease-in-out;
}

.pager-post-navi a:hover{
  background-color: #E0F7FA;
  transition: all 0.3s ease-in-out;
}

.pager-post-navi a .iconfont {
  font-size: 1.8em;
  color: var(--cocoon-thin-color);
  padding: 8px;
}
.pager-post-navi a figure {
  min-width: 120px;
  max-width: 120px;
}
.pager-post-navi a.prev-post {
  flex-direction: row;
  padding-left: 5px;
}
.pager-post-navi a.prev-post .prev-post-title {
  margin-left: 10px;
}
.pager-post-navi a.next-post {
  flex-direction: row-reverse;
  padding-right: 5px;
}
.pager-post-navi a.next-post .next-post-title {
  margin-right: 10px;
}
.pager-post-navi a.prev-next-home {
  justify-content: center;
  font-size: 50px;
  text-align: center;
  color: var(--cocoon-middle-thickness-color);
}

.prev-post-title,
.next-post-title {
  color: #333;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.post-navi-square a {
  height: auto;
}

.post-navi-default.post-navi-border a {
  border-top: 1px solid var(--cocoon-basic-border-color);
  border-bottom: 1px solid var(--cocoon-basic-border-color);
}
.post-navi-default.post-navi-border .next-post {
  border-top-width: 0px;
}
.post-navi-default.post-navi-border .next-post:first-child {
  border-top-width: 1px;
}

.pager-post-navi.post-navi-square {
  flex-direction: row;
}
.pager-post-navi.post-navi-square a {
  width: 50%;
}

.post-navi-square.post-navi-border a {
  border: 1px solid var(--cocoon-basic-border-color);
}
.post-navi-square.post-navi-border a:last-child {
  border-left-width: 0px;
}

.pager-post-navi a figure {
  min-width: 120px;
  max-width: 120px;
}

.pager-post-navi a figure img{
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  max-width: 100%;
    height: auto;
}


.entry-sns-share__message, .entry-sns-follow__message {
  text-align: center;
  margin-bottom: 3px;
}

.entry-sns-share__buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  row-gap: 10px;
  column-gap: 0.75%;
  margin-top: 0.3em;
  margin-bottom: 2em;
}

.entry-sns-share__button{
  width: 32.5%;
  align-items: center;
  background-color: #000;
  border-radius: 4px;
  display: inline-flex;
  font-size: 18px;
  justify-content: center;
  height: 45px;
  position: relative;
  text-align: center;
  width: 32%;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  margin: 0 !important;
  color: #fff;
  text-decoration: none;
}

.entry-sns-share__button:hover,
.entry-sns-follow__button:hover{
  opacity:0.7;
}

.entry-sns-share__button.entry-sns-share__button--x{
  background-color: #000;
}
.entry-sns-share__button.entry-sns-share__button--facebook{
  background-color: #3b5998;
}
.entry-sns-share__button.entry-sns-share__button--hatena{
  background-color: #2c6ebd;
}
.entry-sns-share__button.entry-sns-share__button--pocket{
  background-color: #ef4056;
}
.entry-sns-share__button.entry-sns-share__button--line{
  background-color: #00c300;
}
.entry-sns-share__button.entry-sns-share__button--copy{
  background-color: #333333;
}

.entry-sns-share__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  line-height:1;
}

.entry-sns-share__icon i{
  font-size: 20px;
  color: #fff;
}

.entry-sns-share__svg{
  width: 20px;
  height: 20px;
  display:block;
  color: #fff;
}

.entry-sns-share__button-caption {
  font-size: 16px;
  margin-left: 10px;
  color: #fff;
}

.copy-toast{
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 99999;

  opacity: 0;
  pointer-events: none;

  transition: opacity .25s ease, transform .25s ease;
}

.copy-toast.is-show{
  opacity: 1;
  transform: translate(-50%, -50%);
}

.copy-toast__inner{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 18px;
  border-radius: 10px;

  background: rgba(0,0,0,.75);
  color: #fff;

  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  font-size: 14px;
}

.copy-toast__icon{
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,.18);
  font-weight: 700;
  line-height: 1;
}

.entry-sns-follow__buttons{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  row-gap: 10px;
  column-gap: 6px;
  margin-top: 0.3em;
  margin-bottom: 2em;
}

.entry-sns-follow__button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: relative;
  background-color: #002561;
  border-radius: 4px;
  line-height: 1;
}

.entry-sns-follow__button.entry-sns-follow__button--feedly{
  background-color: #2bb24c;
}
.entry-sns-follow__button.entry-sns-follow__button--rss{
  background-color: #f26522;
}

.entry-sns-follow__icon img{
  width: 30px;
}

.entry-sns-follow__icon i,
.entry-sns-follow__icon img{
  color: #fff;
  font-size: 20px;
}

.entry-sns-follow__icon img:hover{
  opacity: 1;
}

@media screen and (max-width: 834px) {
  .entry-sns-follow__buttons {
    column-gap: 1%;
  }
  .entry-sns-follow__button {
      margin-right: 0;
      width: 49.5%;
  }
}

@media screen and (max-width: 480px) {
  .entry-sns-share__icon i{
    font-size: 15px;
  }
  .entry-sns-share__svg{
    width: 15px;
    height: 15px;
  }
  .entry-sns-share__button-caption {
    font-size: 14px;
    margin-left: 8px;
  }
}

.comment-notes{
  margin-bottom: 0.85rem;
}

.entry-comment__list{
  padding: 60px 0;
}

.entry-comment__title {
  margin: 22px 0;
  font-size: 24px;
  font-weight: bold;
}

.comment-reply-title{
  line-height: 1.5em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  color: #333;
  margin-bottom: 10px;
  font-size: 2em;
  font-weight: 700;
  font-style: normal;
}

.comment-form  .required{
  color: red;
}

.comment-form p{
  margin-bottom: 1rem;
}

.comment-form input[type=text], 
.comment-form input[type=password], 
.comment-form input[type=date], 
.comment-form input[type=datetime], 
.comment-form input[type=email], 
.comment-form input[type=number], 
.comment-form input[type=search], 
.comment-form input[type=tel], 
.comment-form input[type=time], 
.comment-form input[type=url], 
.comment-form textarea, 
.comment-form select{
  padding: 11px;
  font-size: inherit;
  width: 100%;
}

.comment-form input[type=submit]{
  padding: 11px;
  width: 100%;
  margin: 0;
  cursor: pointer;
}

/* テキストエリア高さ */
.comment-form textarea{
  min-height: 220px;
  resize: vertical;
}

#comment-area .reply a {
  border: none;
  color: white;
  background-color: #26C6DA;
}

#comment-reply-btn {
  color: white;
  background-color: #26C6DA;
  border-radius: 4px;
  border: none;
}

.comment-form #comment,
.comment-form #author,
.comment-form #email,
.comment-form #url {
  border: none;
  border-bottom: 2px solid #26C6DA;
  border-radius: 0;
  box-sizing: border-box;
}

.comment-form #comment:focus,
.comment-form #author:focus,
.comment-form #email:focus,
.comment-form #url:focus {
  background-color: #E0F7FA;
  transition: all 0.3s ease;
}

.comment-form #submit {
  color: #fff;
  background-color: #26C6DA;
  border-radius: 4px;
  border: none;
}

.commets-list .avatar {
  float: right;
}

.commets-list .comment-meta {
  font-size: 0.8em;
}

.comment-content p{
  word-wrap: break-word;
  line-height: 200%;
  font-size: 0.875em;
  margin-bottom:1.8em;
}

.commets-list li:not(:last-child){
  margin-bottom:1.8em;
}

.commets-list .reply {
  text-align: right;
  font-size: 0.8em;
}

.comment-reply-link {
  font-size: 14px;
  display: inline;
  padding: 5px 8px;
  border: none;
  color: #fff!important;
  background-color: #26C6DA;
}

.comment-form #submit:hover,
.comment-reply-link:hover{
  opacity: 0.7;
}
