/* カスタム CSS をここに入力してください */

.midasi2 {
  position: relative;
  padding: 0.6em;
  color: #fff; /* 文字色 */
  background: #18a3ff !important;
  border-radius: 3px; /* 角に丸みをつける */
}

.midasi3 {
padding: 0.25em 0.5em;/*上下 左右の余白*/
color: #494949;/*文字色*/
background: transparent;/*背景透明に*/
border-left: solid 5px #7ad221 !important;/*左線*/
}

/* h4 */
h4 {
text-indent: 0em;
position: relative;
background: transparent !important;
padding: 2px 5px 2px 20px;
font-size: 20px;
color: #474747;
}

h4:before {
content: "●";
color: #5ab9ff; /*アイコン色*/
font-weight:bold !important;  /* 太字 */
}

.box5 {
    padding: 0.5em 1em;
    margin: 2em 0;
    border: 5px #e6eae3;
    background: #e6eae3;
}
.box5 p {
    margin: 0; 
    padding: 0;
}

.site-name-text{
font-family: 'Kosugi Maru', sans-serif;
}

/*ウィジェットタイトル*/
#sidebar .widget-title{
  border-radius: 3px;
	background: #18a3ff !important;
	color: #fff; /* 文字色 */
	text-align: center;
}

.widget_categories ul li a { /*親カテゴリ用のコード*/
    color: #333;
    text-decoration: none;
    padding: 6px 0;
    display: block;
    padding-right: 4px;
    padding-left: 4px;
    border-top: 1px dotted #ccc; /*上部にボーダーを引く*/
    font-size: 16px;
}
.widget_categories ul li a::before { /*親カテゴリのアイコン*/
    font-family: FontAwesome;
    content: "\f0da";
    padding-right: 10px;
}
.widget_categories > ul > li > a:first-child { 
    border-top: none; /*最初の親カテゴリは上部ボーダーを消す*/
}
.widget_categories > ul > li > a:last-child {
    border-bottom: 1px dotted #ccc; /*最後の親カテゴリは下部ボーダーを引く*/
}
.widget_categories ul li a .post-count { /*記事数用のコード*/
    display: block;
    float: right;
    background: #ededed;
    padding: 0 1em;
    font-size: 14px;
    margin-top: .2em;
    border-radius: 4px;
}
.widget_categories ul li a:hover { /*親子共通マウスホバー時*/
    background: none;
    transition: 0.5s;
    color: #72c7e6;
}
.widget_categories ul li a:hover .post-count { /*記事数のマウスホバー時*/
    background: #72c7e6;
    color: #fff;
    transition: 0.5s;
}
.widget_categories ul li ul { /*子カテゴリのボックス*/
    border-bottom: 1px dotted #ccc;
}
.widget_categories ul li ul li a { /*子カテゴリ用のコード*/
    color: #333;
    text-decoration: none;
    padding: 0 4px 4px 4px;
    display: block;
    border: none;
}
.widget_categories ul li ul li a::before { /*子カテゴリのアイコン*/
    font-family: FontAwesome;
    content: "・";
    padding: 0;
}

/*タブ*/
/*--------------------------------------
  tab
--------------------------------------*/
.tab-wrap{
    margin-bottom: 40px;
}
.tab-group{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-end;
}
.tab{
    flex-grow: 1;
    background: #58A9EF; /* タブのカラー */
    border-radius: 10px 10px 0 0;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 13px;
    font-weight: bold;
    margin: 0 5px;
    padding: 14px 0 12px;
    text-align: center;
    transition: 1s;
    vertical-align: bottom;
}
.panel-group{
    min-height:100px;
    border:solid 1px #CCC;
    border-top: 8px solid #C8E4FF;
    padding: 10px;
}
.panel{
    display:none;
}
.tab.is-active{
    color:#FFF;
    transition: 1s;
    opacity: 0.6;
    padding-bottom: 20px;
}
.panel.is-show{
    display:block;
}

@media screen and (max-width:480px) { 
.tab{
    padding: 10px 0 7px;
}
.tab.is-active{
    padding-bottom: 15px;
}
}

/*---------------------------------
複数の固定ページの日付を非表示にする
--------------------------------*/
.post-1104 .date-tags,
.post-1111 .date-tags,
.post-2382 .date-tags {
  display: none;
}

/*--------------------------------------
タイトル文字サイズ（スマホ）
--------------------------------------*/
.site-name-text-link {
   font-size: 16px;
}

