@charset "UTF-8";


/* TOC
---------------------------------------------
  Chapter01 : レイアウト
  Chapter02 : 404 ＆ 検索結果
  Chapter03 : 基本設定
  Chapter04 : 
  Chapter05 : 
  Chapter06 : 
  Chapter07 : 
  Chapter08 : 
  Chapter09 : 
  Chapter10 : 
  Chapter99 : 
    Chapter99_01 : 大型モニター
    Chapter99_02 : ノートパソコン
    Chapter99_03 : タブレット
    Chapter99_05 : スマートフォン
---------------------------------------------
*/


/*---------------------------------------------------
  Chapter01 : レイアウト
---------------------------------------------------*/

#single_inner {
    display: flex;
    width: 1200px;
    height: auto;
    margin: 50px auto 150px;
}
  
.contents {
  width: 70%;
  padding: 0 ;
  height: auto;
}
  

.article_content .PostDuplexLayout>p {
  margin: 15px 0 0;
  white-space: pre-line;
}



/*---------------------------------------------------
  Chapter02 : 404 ＆ 検索結果
---------------------------------------------------*/
#post-newcardArea {
    width: 70%;
    padding: 0;
}
  
.SearchTitle {
  display: flex;
  align-items: center;
  position: relative;
  margin: 0 0 5%;
  padding: 0 0 1%;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #0054B8;
  border-color: #0054B8;
}
  
.SearchTitle:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-image: -webkit-gradient(linear,left top,right top,from(#0054B8),to(#FFDCD4));
    background-image: -webkit-linear-gradient(left,#0054B8 0%,#FFDCD4 100%);
    background-image: linear-gradient(to right,#0054B8 0%,#FFDCD4 100%);
}

.SearchTextBox {
  margin: 15px 0 30px 0;
}
  
.SearchTextBox p {
  margin: 20px auto 0;
  font-size: 20px;
  line-height: 1.8;
}

.SearchTextBox p:first-child  {
  margin: 0;
}

  

/*---------------------------------------------------
  Chapter03 : 基本設定
---------------------------------------------------*/
  
/*-- 日付・更新日 --*/
.article-item .byline {
  margin: 5px 0 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}
  
.article_content .byline {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: 20px;
  font-weight: 300;
  line-height: 2;
  text-align: left;
}
  
.byline .date {
  opacity: 0.7;
  margin-right: 0.8em;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
  font-size: 15px;
  font-weight: 500;
  color: #0054B8;
}
  
.byline .date:before {
  position: relative;
  top: -1px;
  margin-right: .5em;
}
  

/*-- ディスクプリクション --*/
.article_content .PostDescription {
  margin: 15px 0 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}
  
  
/*---------- 著者名 ----------*/
.article_content .article-author {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 2;
}
  
.article_content .article-author img {
  width: 10%;
  margin: 0 5px 0 0;
  border-radius: 30px;
}

.article-author i.fas.fa-user {
  margin: 0 5px 0 0;
}
  

/*---------- 読了目安時間 ----------*/
.article_content .read-time-str {
  margin: 5px 0 10px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
}
  
.read-time {
  color: #ff8888;
  font-size: 1.2em;
  font-weight: bold;
}
  
  
  
/* カテゴリー
---------------------------------------------------------- */
.post-categoryTop {
    margin: 0 0 10px;
}
  
ul.post-categories {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  list-style-type: none;
}
  
.post-categoryTop ul li {
  margin: 0 10px 0 0;
}

.post-categoryTop ul li a {
  padding: 5px 15px;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
  color: #fff;
  border-radius: 30px;
  background: #0054B8;
  transition: background 0.6s ease, color 0.6s ease, border 0.6s ease, opacity 0.6s ease;
}


.post-categoryTop ul li a:hover {
  border: 1px solid #0054B8;
  color: #0054B8;
  background: #fff;
  opacity: 0.8;
}

  
  
/* タグ
---------------------------------------------------------- */
.post-tagTop {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 10px 10px 0;
}
  
  
.post-tagTop .tags {
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.8;
}
  
.post-tagTop .tags a {
    display: inline-flex;
    margin: 0 5px 10px 0;
    padding: 3px 10px;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 600;
    color: #0054B8;
    border: 1px solid #0054B8;
    border-radius: 10px;
    background: #fff;
    opacity: 0.8;
}


.post-tagTop .tags a:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f292";
    margin: 0 1px 0 0;
}
  
.post-tagTop .tags a:hover {
    color: #fff;
    border: 1px solid #0054B8;
    background: #0054B8;
    transition: all 0.5s 0s ease;
}
  
  
/*-- 記事タイトル --*/
.single-title, .page-title {
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.5;
}
  
  
  
  
/* SNSボックスデザイン01
-----------------------------------------*/
  .snsButtonBox {
    width: 100%;
  }
  
  .sns-button {
    width: 20%;
    background: #333;
    padding: 20px 45px;
  }
  
  .snsButtonBox ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 10px;
    padding: 0;
    list-style: none;
  }
     
  .snsButtonBox ul:after {
    display: block;
    clear: both;
    content: '';
  }
     
  .snsButtonBox li {
    width: 25%;
    margin: 0;
    padding: 7px;
    text-align: center;
  }
  
  .snsButtonBox li img {
    max-width: 100%;
    width: 30%;
    margin: 0;
    vertical-align: top;
  }
  
  /* マウスオーバー時の透明度 */
  .snsButtonBox li:hover {
    opacity: .8;
  }
     
  .snsButtonBox li:visited {
    color: #fff;
  }
  
  .snsButtonBox li a {
    color: #fff;
  }
  
  .snsButtonBox li i {
    font-size: 18px;
  }
  
  .snsButtonBox li i:hover {
    font-size: 22px;
  }
  
  
/*---------- ボタンの各ブランドカラー設定 ----------*/
  
/* twitter */
.snsButtonBox .twitter {
    background-color: #2ECCFF;
}
  
  /* facebook */
  .snsButtonBox .facebook {
    background-color: #4080FF;
  }
  
  /* pocket */
  .snsButtonBox .pocket {
    background-color: #ee4056;
  }
  
  /* はてブ */
  .fa-hatebu:before {
    font-family: "Quicksand", "Arial", sans-serif;
    content: "B!";
  }
  .snsButtonBox .hatebu {
    background-color: #00a4de;
  }
  
  /* LINE */
  .fa-line:before {
    content: "\f3c0";
  }
  .snsButtonBox .line {
    background-color: #00c030;
  }
  
  /* pinterest */
  .snsButtonBox .pinterest {
    background-color: #C60120;
  }
  
  /* feed */
  .snsButtonBox .feed {
    background-color: #2bb24c;
  }
  
  /* note */
  .snsButtonBox .note {
    background-color: #2CB695;
  }
  
  /* URLをコピー */
  .url-copied {
    display: none;
  }
  
  .url-copied span {
    background: #0009;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 11px;
    color: #fff;
    padding: 2px 4px;
    box-sizing: border-box;
    line-height: 14px;
    border-radius: 3px;
  }
  
  .snsButtonBox .url_share {
    position: relative;
    background-color: #bbb;
  }
  
  
  
  /* SNSボックスデザイン02
  -----------------------------------------*/
  .snsButtonBox .snsbtn_type02 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin: 0 15px 0 0;
    padding: 10px;
    border-radius:50%;
  }
  
  .snsButtonBox .snsbtn_type02 img {
    max-width: 100%;
    width: 75%;
    margin: 0;
    vertical-align: top;
  }
  
  .snsButtonBox .snsbtn_type02:last-child {
    margin: 0;
  }
  
  .snsButtonBox .snsbtn_type02 i {
    font-size: 22px;
  }
  
.snsButtonBox .snsbtn_type02 .url-copied span {
  border-radius: 90px;
}
  

/*---------------------------------------------------------
  この記事を書いた人
---------------------------------------------------------*/
.AuthorBox {
  display: flex;
  position: relative;
  margin: 60px 0 20px;
  padding: 0.5em 1em;
  border: solid 3px #C1B385;
}

.AuthorBox .AuthorTitle {
  position: absolute;
  display: inline-block;
  top: -38px;
  left: -3px;
  padding: 5px 15px;
  height: 25px;
  font-size: 15px;
  line-height: 1.8;
  color: #fff;
  font-weight: 400;
  border-radius: 5px 5px 0 0;
  background: #C1B385;
}


.AuthorPhoto {
  width: 15%;
  margin: 0 20px 0 0;
}

.AuthorPhoto img {
  max-width: 100%;
  width: 100%;
  height: auto;
  margin: 0;
  border-radius: 90px;
}

.AuthorTextBox {
  width: 75%;
}

p.AuthorName {
  margin: 10px 0;
  padding: 0 0 3px 0;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px dotted #C1B385;
}

p.AuthorDescription {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.5;
}


.author-box{
  border:2px solid;
  margin-top:25px;
}

.author-name{
  border-bottom: dotted 1px;
  padding:6px;
}

.belle-box {
  display: flex;
}

.belle-img2{
 
}

.belle-img,.belle-img2{
  margin:5px;
}

.belle-info{
  font-size:13px;
  padding:5px;
  overflow: hidden;
}

.belle-info2{
  font-size:13px;
  padding:5px;
}



/*-- この記事を書いた人SNS --*/
.AuthorSNSBox {
  display: flex;
  align-items: center;
  margin: 15px 0;
}

.AuthorSNS{
  display: inline-block;
  margin: 0 5px;
  width: 35px;
  height: 35px;
  line-height: 1.8;
  text-align: center;
  font-size: 20px;
  border-radius: 50%;
}

.AuthorSNS a{
  display: block;
  color:#fff;
}


/*-- facebook --*/
.AuthorTextBox .Facebook{ 
  background:#4080FF;
}

.AuthorTextBox .Facebook:hover {
  background: #fff;
  border: 1px solid #4080FF;
}

.AuthorTextBox .Facebook:hover i{
  color: #4080FF;
} 


/*-- twitter --*/
.AuthorTextBox .Twitter{ 
  background:#2ECCFF;
}

.AuthorTextBox .Twitter:hover {
  background: #fff;
  border: 1px solid #2ECCFF;
}

.AuthorTextBox .Twitter:hover i{
  color: #2ECCFF;
} 


/*-- Instagram --*/
.AuthorTextBox .Instagram{ 
  background-image: linear-gradient(-135deg,#1400c8,#b900b4,#f50000);
}

.AuthorTextBox .Instagram:hover {
  background: #fff;
  border: 1px solid #b900b4;
}

.AuthorTextBox .Instagram:hover i{
  color: #b900b4;
} 


/*-- Feedly --*/
.AuthorTextBox .Feedly {
  background: #f0ad4e;
}

.AuthorTextBox .Feedly:hover {
  background: #fff;
  border: 1px solid #ff8c00;
}

.AuthorTextBox .Feedly:hover i{
  color: #ff8c00;
} 


/*-- note --*/
.AuthorTextBox .Note {
  position: relative;
  top: 7%;
  background: #2CB696;
}

.AuthorTextBox .Note img {
  width: 75%;
  position: absolute;
  top: 5%;
  left: 13%;
  right: 15%;
}

.AuthorTextBox .Note:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}



/*---------------------------------------------------
 記事URLをコピー
---------------------------------------------------*/
.copyBtn{
  margin: 30px auto;
  padding: 20px;
  font-size: 15px;
  text-align: center;
  font-weight: bold;
  border:1px solid #cbcbcb;
}

.copyBtn:hover{
  opacity:0.6;
  cursor:pointer;
}

.copyBtn.isCopied{
  pointer-events:none;
  border:unset;
  background:#FFD705;
}

.copyBtn.isCopied:hover{
  cursor:auto;
}

  
  
/*---------------------------------------------------
  コメント投稿フォーム
---------------------------------------------------*/
#commentform p {
  margin: 5px 0 0;
  font-size: 15px;
}
  
#respond label {
  font-size: 14px;
}
  
#respond input,
#respond textarea	{
  width: 100%;
  padding: 5px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px #d9d9d9 solid;
}
  
input#wp-comment-cookies-consent {
  width: auto;
}
  
  
p.comment-notes {
  font-size: 15px;
}
  
  
#commentform p.form-submit {
  margin: 30px 0 0;
}
  
#respond input[type="submit"] {
  width: 200px;
  padding: 15px;
  border: none;
  background-color: #FFD700;
  color: #333;
  -webkit-appearance: none;
  cursor: pointer;
  border-radius: 60px;
  font-size: 15px;
}
  
#respond input[type="submit"]:hover {
  opacity: .75;
}
  
#respond .required	{
  color: #ff0000;
}
  
  
  
/* コメント表示
-----------------------------------------*/
#comments footer{
  background: none;
  margin: 0;
  color: #000000;
  font-size: 12px
}
  
#comments h3 {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  border-color: unset;
  border-bottom: #000 1px solid;
}
  
#comments h3:after {
  border-color: unset;
  background-image: unset;
}
  
#comments .comment{
    padding: 1rem;
    background-color: #F7F7F7;
}
  
#comments .comment-author {
    display: flex;
    align-items: center;
}
  
.comment-author .avatar {
    border-radius: 50%;
}
  
/* アイコン */
.comment-author img {
  max-width: 100%;
  width: 10%;
  height: auto;
  margin: 0;
  border-radius: 50%;
}
  
.comment-author .fn {
   margin-left: 1rem;
  font-size: 1.1em;
}
  
/* 〜よりを削除 */
.comment-author .says {
  display: none;
}
  
.comment-metadata {
  text-align: left;
}
  
.comment-metadata a {
  font-size: 11px;
  text-decoration: none;
  opacity: .75;
  color: inherit;
}
  
.comment-content {
  margin-top: 1rem;
  line-height: 1.5;
}
  
/* コメントテキスト */
.comment-content p{
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}
  
  

/*---------------------------------------------------
  関連記事
---------------------------------------------------*/
.related_post {
  width: auto;
  margin: 50px 0 40px 0;
  padding: 30px 60px;
  border-radius: 30px;
  box-shadow: 3px 3px 15px rgb(0 0 0 / 13%);
  transition: all 300ms ease-out;
}

/* 関連記事タイトル */
.related_post h3 {
  margin: 0;
  padding: 0;
  font-size: 30px;
  font-weight: 500;
  color: #338DC3;
  text-align: center;
  box-sizing: border-box;
  border-left: none;
  background: none;
}

.related_post h3:before {
  margin: 0 5px 0 0;
  padding: 5px;
  font-family: 'Material Icons';
  content: '\e241';
  font-size: 25px;
  font-weight: bold;
  line-height: 1.5;
  color: #fff;
  border-radius: 90%;
  background: #338DC3;
}

.related_post h3:after {
  background-image: unset;
}

.related_post h3 span{
}

/* 関連記事リスト */
.related_post_container {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
}
  
.related_post_container li {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: #CCCCCC dashed 1px;
}
  
.related_thumb{
    width: 100%;
}
  
/* カテゴリー */
.RelatedPostCategory {
  width: 18%;
  display: flex;
  align-content: center;
  margin: 0 10px 0 0;
  border-radius: 30px;
  color: #fff;
  background: #0054B8;
  justify-content: center;
}

.RelatedPostCategory a {
  width: 100%;
  padding: 8px 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  color: #fff;
}

.RelatedPostCategory:hover {
  border: #0054B8 solid 1px;
  color: #0054B8;
  background: #fff;
  opacity: .8;
  transition: all 0.3s 0s ease;
}

.RelatedPostCategory a:hover {
  color: #0054B8;
}
  
/* タイトル */
p.related_title {
  display: flex;
  align-items: center;
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
}
  
p.related_title::before {
  font-family: 'Material Icons';
  content: '\e7cd';
  padding: 0 3px 0 0;
  transform: rotate(-90deg);
  font-size: 15px;
}


a.RelatedTitleLink {
  width: 100%;
  color: #338DC3;
}

a.RelatedTitleLink:hover {
  color: #0054B8;
}

  
  
  
/*---------------------------------------------------------
  記事案内
---------------------------------------------------------*/
  ul.post_navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  
  .post_navigationBox {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 4em;
    padding: .5em 1em;
    color: inherit;
    line-height: 1.4;
    text-decoration: none;
    border-radius: var(--swl-radius--2,0);
    transition: box-shadow .25s;
  }
  
  .post_navi-next .post_navigationBox {
    justify-content: flex-end;
  }
  
  /* 前の記事へ */
  .post_navi-prev {
    position: relative;
    width: 55%;
    font-size: 13px;
  }
  
  /* 次の記事へ */
  .post_navi-next {
    width: 55%;
    font-size: 13px;
  }
  
  /* サムネイル */
  .post_navigationBox img {
    width: 72px;
    height: 48px;
    object-fit: cover;
    border-radius: var(--swl-radius--4,0);
  }
  
  
  .post_navitext {
    transition: -webkit-transform .25s;
    transition: transform .25s;
    transition: transform .25s,-webkit-transform .25s;
    margin: 0 10px;
  }
  
  /* 矢印 */
  p.post_navi-prevhead,
  p.post_navi-nexthead {
    font-size: 18px;
    margin: 0 5px;
  }
  
  
  /*-- HOMEへボタン --*/
  .post_navi-home a {
    display: inline-block;
    position: relative;
    text-decoration: none;
    color: #666;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    background: #FFD705;
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.08);
  }
  
  .post_navi-home a:hover{
    color: #FFD705;
    background: #fff;
  }
  
  .post_navi-home a i {
    position: absolute;
    content: '';
    width: 50px;
    height: 50px;
    line-height: 50px;
    left: 0;
    top: 0;
    border-radius: 50%;
    font-size: 25px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 2px 2px rgba(0, 0, 0, 0.19);
  }
    
  .post_navi-home a .fa:active {
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 2px 2px rgba(0, 0, 0, 0.19);
    border-bottom: solid 2px #d8d8d8;
  }
  
  
  
  
/*---------------------------------------------------------
  ブログカードデザイン
---------------------------------------------------------*/
  .blog-card {
    border: 2px solid #e5e5e5;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
    margin: 1em 0;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  
  .blog-card:hover {
    cursor: pointer;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .2);
    -moz-transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  
  .blog-card a {
    text-decoration: none;
    display: block;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  
  .blog-card a:hover {
    color: #333;
    background: rgba(235, 235, 235, 0.8);
    text-decoration: none;
  }
  
  .blog-card-thumbnail {
    width: 200px;
    display: table-cell;
    vertical-align: middle;
  }
  
  .blog-card-thumbnail img {
    padding: 0;
    max-width: 100%;
  }
  
  .blog-card-content {
    display: table-cell;
    vertical-align: middle;
    padding: 0.4em;
    border-left: #e5e5e5 solid 2px;
  }
  
  .blog-card-title {
    font-size: 1em;
    font-weight: bold;
    line-height: 1.4;
    color: #333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .blog-card-excerpt {
    display: none;/*消します*/
  }
  
  .blog-card .clear {
    clear: both;
  }
  
  /*ブログカードでラベルを付ける*/
  .blog-card-label{
    display: inline-block;
    position: absolute;
    background-color: #ffb36b;
    top: 0px;
    left: 0px;
    width: 70px;
    height: 25px;
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    text-align: center;
    line-height: 25px;
    transform-origin: 50% 50%;
    animation: animScale 3.5s ease-out;
  }
  
  
  /*---------- スマホ向けのレイアウトの指定 ; 〜550px  ----------*/
  @media screen and (max-width: 550px) {
    .blog-card-title {
      font-size: .85em;
    }
    .blog-card-thumbnail {
      width: 160px;
    }
  }
  
  



/*---------------------------------------------------------
  Chapter99 : レスポンシブ設定
---------------------------------------------------------*/


/*   Chapter99_01 : 大型モニター（1381px〜 ）
----------------------------------------------------------*/
@media screen and (min-width:1381px) {





} /* 〜1381px END */


/*---------------------------------------------------------
  Chapter99_02 : タブレット（〜1380px）
---------------------------------------------------------*/
@media screen and (max-width: 1380px) {

    /*---------- レイアウト　：　〜1380px  ----------*/
  #single_inner { width: 95%; }

} 


/*---------------------------------------------------------
  Chapter99_02 : タブレット（〜1024px）
---------------------------------------------------------*/
@media screen and (max-width: 1024px) {


  /* レイアウト　： 〜1024px
	-----------------------------------------*/
  #single_inner { width: 90%; display: flex; flex-direction: column-reverse; flex-wrap: nowrap; margin: 50px auto 150px;}
  .contents { width: 100%; }
  #post-newcardArea { width: 100%;}
  


  /* 関連記事 ： 〜1024px
	-----------------------------------------*/
  .related_post { width: auto; margin: 50px 0 40px 0; padding: 20px;}
  .related_post_container { margin: 3% 0;}
  .related_post h3 { font-size: 25px; }
  .related_post h3:before { font-size: 20px;}
  .related_post_container li { display: flex; align-items: center; padding: 0; }
  .RelatedPostCategory { width: 40%; }
  .RelatedPostCategory a { padding: 5px 0;font-size: 10px; }
  .RelatedTitleLink .related_title{ margin: 10px 0; font-size: 12px; }
  
  
   /* 検索結果 ： 〜1024px
	-----------------------------------------*/
	.SearchTitle { font-size: 22px;}
	.SearchTextBox p { font-size: 16px;}
	
	
	
   /* ページTOP ： 〜1024px
	-----------------------------------------*/
	#page-top { display: none;}



} /* 〜1024px END */



/*---------------------------------------------------------
  Chapter99_03 : スマホ（〜768px）
---------------------------------------------------------*/
@media screen and (max-width: 768px) {


  /* レイアウト： 〜768px
	-----------------------------------------*/
  #single_inner { display: flex; width: 90%; flex-direction: column-reverse; flex-wrap: nowrap; margin: 50px auto 150px;}
  .contents { width: 100%; }
  #post-newcardArea { width: 100%;}
  


  /* 基本設定　： 〜768px
	-----------------------------------------*/
  .single-title, .page-title { font-size: 1.8rem;}
  


  /* 関連記事 ： 〜768px
	-----------------------------------------*/
  .related_post { width: auto; margin: 50px 0 40px 0; padding: 20px;}
  .related_post_container { margin: 3% 0;}
  .related_post h3 { font-size: 25px; }
  .related_post h3:before { font-size: 20px;}
  .related_post_container li { display: flex; align-items: center; padding: 0; }
  .RelatedPostCategory { width: 40%; }
  .RelatedPostCategory a { padding: 5px 0;font-size: 10px; }
  .RelatedTitleLink .related_title{ margin: 10px 0; font-size: 12px; }
  
  
   /* 検索結果 ： 〜768px
	-----------------------------------------*/
	.SearchTitle { font-size: 22px;}
	.SearchTextBox p { font-size: 16px;}
	
	
	
   /* ページTOP ： 〜768px
	-----------------------------------------*/
	#page-top { display: none;}



} /* 〜768px END */


/*---------------------------------------------------------
  Chapter99_04 : スマホ（〜480px）
---------------------------------------------------------*/
@media screen and (max-width: 480px) {


  .single-title, .page-title {
    font-size: 1.5rem;
  }


  
} /* 480px END */



