@charset "utf-8";
/* CSS Document */

/***************************
 ** ブログ内検索
 */
.blog_search {
  text-align: right;
}

.blog_search .search-field,
.blog_search .search-submit {
  padding:4px 12px;
  border:none;
  font-size:16px;
  /*color:#fff;*/
  transition:.3s;
  outline:none;
}
.blog_search .search-field{
  border-radius:4px 0 0 4px;
  border: 1px solid #ccc;
  background: #fff;
}

.blog_search .search-submit{
  cursor:pointer;
  border-radius:0 4px 4px 0;
  background: #6F6F6F;
}
/*.blog_search .search-field:focus,
.blog_search .search-field:focus + .search-submit{
  background: #fff;
}*/

@media screen and (max-width: 736px) {
  .blog_search {
    width: 100%;
    text-align: left;
    margin-top: 0.5rem;
  }
  
  .blog_search .search-field{
    width: 70%;
  }
}

/***************************
 ** ブログトップページ・カテゴリトップページ
 */
.blog_copy {
  font-size: 1.125rem;
  font-family: "Sawarabi Mincho";
  color: #F57878;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 2rem;
}

.blog_category {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #F57878;
  text-align: center;
}

.blog_category li {
  display: inline-block;
  margin-right: 0.2rem;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.blog_category li a {
  display: block;
  padding: 0.6rem 1rem;
  border-radius: 2rem;
  background: #fff2f2;
  color: #F14949;
  text-decoration: none;
  font-weight: bold;
  transition: 0.5s;
}

.blog_category li a:hover {
  background: #F57878;
  color: #fff;
}

.blog_category li .lunch::before {
  content: '\f2e7';
}

.blog_category li .event::before {
  content: '\f073';
}

.blog_category li .kids::before {
  content: '\f1ae';
}

.blog_category li .education::before {
  content: '\f5c9';
}

.blog_category li .salon::before {
  content: '\f51c';
}

.blog_category li a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1rem;
  display: inline-block;
  margin-right: 0.5rem;
  color: red;
  transition: 0.5s;
}

.blog_category li a:hover::before {
  color: #fff;
}

.blog_category_ttl {
  font-size: 1.125rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 2rem;
}

.blog_category_ttl span {
  font-size: 0.875rem;
  font-weight: normal;
}

/* 記事リスト */
.article_list {
  margin-bottom: 3rem;
  border-top: 1px solid #ccc;
}

.article_list li {
  padding: 1.5rem 0;
  border-bottom: 1px solid #ccc;
}

.article_list li a {
  text-decoration: none;
}

.blog_list_img {
  flex-basis: 25%;
  overflow: hidden;
}

.blog_list_img span {
  display: block;
  position: relative;
  width: 100%;
  padding-top: 75%;
  overflow: hidden;
  margin: 0 auto;
}

.blog_list_img span img{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 150%;
  max-height: 150%;
}

.blog_list_text {
  flex-basis: 72%;
  margin-left: 3%;
  position: relative;
}

.blog_list_text time {
  font-size: 0.75rem;
  color: #000;
  font-weight: bold;
}

.blog_list_text h4 {
  color: #f57878;
  font-size: 1.15rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.blog_list_text p {
  font-size: 0.875rem;
  color: #000;
}

.blog_list_text span {
  display: block;
  font-size: 0.875rem;
  text-align: right;
  color: #444;
  font-weight: bold;
  position: absolute;
  bottom: 0;
  right: 0;
}

.blog_list_text span::after {
    content: "》";
    display: inline-block;
    margin-left: 0.5em;
}

/* ページネーション */
.pagination {
  text-align: center;
  margin-bottom: 5rem;
  font-size: 0.875rem;
}

.pagination li {
  display: inline-block;
  margin: 0 0.1rem 0.5rem;
}

.pagination li a,
.pagination li span {
  display: block;
  padding: 0 0.6rem;
  background: #F5F5F5;
  text-decoration: none;
  color: #000;
}

.pagination li .active {
  background: #F57878;
  color: #fff;
}

@media screen and (max-width: 736px) {
  .blog_copy {
    font-size: 1rem;
  }

  .blog_category {
    margin-bottom: 1rem;
  }
  
  .blog_category_ttl {
    margin-bottom: 1rem;
  }
  
  /* 記事リスト */
  .article_list {
    margin-bottom: 2rem;
  }

  .article_list li {
    padding: 1rem 0;
  }

  .blog_list_img {
    flex-basis: 100%;
    margin-bottom: 0.5rem;
  }

  .blog_list_text {
    flex-basis: 100%;
    margin-left: 0;
  }
  
  .blog_list_text span {
    position: relative;
  }
  
  /* ページネーション */
  .pagination {
    margin-bottom: 3rem;
  }
}


/***************************
 ** 記事ページ
 */
/* メタデータ */
.blog_meta {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #ccc;
}

.blog_meta time {
  display: block;
  font-size: 0.875rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.blog_meta .blog_ttl {
  font-size: 1.875rem;
  color: #F57878;
  margin-bottom: 2rem;
}

.blog_meta .article_author a {
  color: #000;
  text-decoration: none;
}

.blog_meta .article_author span {
  display: inline-block;
  width: 80px;
  margin-right: 0.5rem;
}

.blog_meta .article_author span img {
  border-radius: 50%;
  border: 1px solid #ccc;
}

/* 本文 */
.blog_text {
  margin-bottom: 2rem;
}

.blog_text p {
  margin-bottom: 1.2rem;
}

.blog_text p img {
  margin-bottom: 0.5rem;
}

.xclamation {
  color: #f00;
}

.star {
  color: #fc9;
}

.music_notes {
  color: #0cf;
}

/* プロフィールページへのリンク */
.author_profile {
  margin-bottom: 5rem;
}

.author_profile a {
  display: table;
  height: 60px;
  background: #F57878;
  border: 2px solid #F57878;
  border-radius: 30px;
  transition: 0.8s;
  text-decoration: none;
  color: #fff;
}

.author_profile a:hover {
  opacity: 0.6;
}

.author_profile a span {
  display: table-cell;
  vertical-align: middle;
}

.author_profile a span img {
  width: 60px;
  border-radius: 30px;
}

.author_profile a span:last-child {
  padding: 0 1rem;
}

.author_profile a span br {
  display: none;
}

/* SNSシェアボタン */
.sns_btns {
  margin-bottom: 3rem;
}

.sns_btns li {
  display: inline-block;
  margin-right: 1rem;
}

.fb-share-button > span {
  vertical-align: inherit!important;
}

/* 記事下部のリンクメニュー */
.site_link {
  border-top: 1px solid #ccc;
  padding-top: 2rem;
  text-align: center;
  margin-bottom: 4rem;
}

.site_link li {
  display: inline-block;
  text-align: center;
  margin: 0 0 1rem;
}

.site_link li a {
  display: block;
  padding: 0.3rem 1rem;
  font-size: 0.875rem;
  text-decoration: none;
  line-height: 1.5;
  border: 2px solid #f57878;
  color: #f57878;
  border-radius: 10px;
  font-weight: bold;
  transition: 0.8s;
}

.site_link li a:hover {
  background: #fff2f2;
}

.site_link li a span {
  font-size: 0.6875rem; 
  font-weight: normal;
}

/* facebookコメント */
.fb-comments {
  margin-bottom: 3rem;
}

/* ページ移動 */
.pager {
  margin-bottom: 4rem;
}

.pager .prev::before {
  content: "＜";
  display: inline-block;
  margin-right: 0.5rem;
}

.pager .prev::before {
  content: "＜";
  display: inline-block;
  margin-right: 0.5rem;
}

.pager .next {
  text-align: right;
}

.pager .next::after {
  content: "＞";
  display: inline-block;
  margin-left: 0.5rem;
}

.pager p a {
  text-decoration: none;
  color: #000;
}

.pager p a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 736px) {
  .blog_meta {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
  
  .blog_meta .blog_ttl {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .blog_meta .article_author {
    font-size: 0.875rem;
  }

  .blog_meta .article_author span {
    width: 50px;
  }

  .blog_text {
    font-size: 0.875rem;
  }

  .author_profile {
    margin-bottom: 3rem;
  }
  
  .author_profile a span br {
    display: inline;
  }
  
  .site_link {
    padding-top: 1rem;
    margin-bottom: 1rem;
  }

  .site_link li a {
    padding: 0.3rem 0.5rem;
    font-size: 0.75rem;
  }

  .site_link li a span {
    font-size: 0.625rem; 
  }
}

/* 旧ソースの不要部分を見えなくする */
.blogInFoot {
  display: none;
}