/* カスタム CSS をここに入力してください */
.side-topad p{
		margin-bottom:0px;
}
h3 {
padding: 0.25em 0.5em;/*上下 左右の余白*/
color: #494949;/*文字色*/
background: transparent;/*背景透明に*/
border-left: solid 5px #7db4e6;/*左線*/
}

h3{
  font-size: 18px;
	line-height: 27px;
	margin: 20px 0;
	padding: 10px 15px;
	color: #1a1a1a;
	background-repeat: no-repeat;
	background-position: left center;
	border-bottom: 1px #999999 dotted;
}

h3 span {
  display: block;
  margin-bottom: .2em;
  color: #1a1a1a;
  font-size: 1em;
}


/*テープっぽい見出しデザイン*/
.tepuline{
position: relative;
background: #fdeef2;
box-shadow: 0px 0px 0px 5px #fdeef2;
border: dashed 2px white;
padding: 0.2em 0.5em;
color: #454545;
}


.tepuline:after{
position: absolute;
content: '';
left: -7px;
top: -7px;
border-width: 0 0 15px 15px;
border-style: solid;
border-color: #fff #fff #ffcfdc;
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
}
/*ここまで*/

.wpp-list li{
 width:100%;
}
.wpp-list a{
font-size: small;
color: #000000
}
.wpp-list a:hover{
color: #990000;
text-decoration: underline;
clear: left;
}
.wpp-list img{
float: left;
margin: 5px 5px 5px 0;
clear: both;
}

.whitebox {
	padding:20px;
	border:solid 1px #ffffff;
	background-color:#ffffff;
	margin-bottom:20px;
  }
  
  
/*目次(Table of Contents Plus)　ここから*/
/*余白と角丸*/
#toc_container  {
  margin-bottom:30px;
  border-radius: 20px;
}
/*目次*/
  /*中央寄せ*/
#toc_container { 
  margin-left: auto; 
  margin-right: auto; 
}
  @font-face {
  font-family: 'FontAwesome';
  src: url('../fonts/fontawesome-webfont.eot?v=4.4.0');
  src: url('../fonts/fontawesome-webfont.eot?#iefix&amp;v=4.4.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.4.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.4.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.4.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.4.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
  
 
/*ポイントまとめボックス*/
.box26 {
    position: relative;
    margin: 2em 0;
    padding: 0.5em 1em;
    border: solid 3px #95ccff;
    border-radius: 8px;
}
.box26 .box-title {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 19px;
    background: #FFF;
    color: #95ccff;
    font-weight: bold;
}
.box26 p {
    margin: 0; 
    padding: 0;
}
  
  .catname {
	background: #fcee21;
	color: #797575;
	padding: 0.4em 1em;
	margin-top: -1em;
	margin-left: 0em;
	float:left;
}
  .boxred {
    padding: 0.5em 1em;
    margin: 2em 0;
    border: double 5px #ff0000;
}
.boxred p {
    margin: 0; 
    padding: 0;
}
 
.pink_line { 
background:rgba(0, 0, 0, 0) 
linear-gradient(transparent 60%, #FFDFEF 0%) 
repeat scroll 0 0;
}
 
.box5 {
    padding: 0.5em 1em;
    margin: 2em 0;
    border: double 5px #4ec4d3;
}
.box5 p {
    margin: 0; 
  padding: 0;
    }

/*-トップページメニューボタン-*/
#menu{
  display: flex;
	flex-wrap: wrap;
	padding: 0px;
  justify-content: center;
}
#menu {
		margin:0px;
		padding:0px;
		width:100%		
}
#menu  li{
	list-style:none;
  color: #fff;
  margin: 0px;
	padding:10px;
  background: #191970;
	width: 25%;
	border:1px solid #ccc;
}
#menu  li a{
		display:block;
		color:#ffffff;
		text-decoration:none;
		font-weight: bold;
		text-align:center;
}
#menu li:hover{
		background:#C18C48;
}




/*-- トップページ記事一覧エリア --*/
.itiran-custom {
		display: -webkit-box; /*Android4.3*/
  display: -moz-box;    /*Firefox21*/
  display: -ms-flexbox; /*IE10*/
  display: -webkit-flex; /*PC-Safari,iOS8.4*/
		display:flex;
		flex-wrap:wrap;
    position: relative;/*相対位置*/
		justify-content:center;
}
.itiran-custom dl {
		width:285px;
		background:#ffffff;/*背景色*/
    border: none;/*ボーダーなし*/
    padding: 0px;/*内側の余白*/
    margin: 5px;/*外側の余白*/
    margin-bottom: 20px;/*カード下の余白*/
    box-shadow: 3px 7px 4px #a0a0a0;/*影をつける*/
}
.itiran-custom dt {
    margin-bottom: 10px;/*画像とタイトルの間隔*/
    float: left;/*左に寄せる*/
    overflow: hidden;/*拡大領域固定*/
    position: relative;/*相対位置*/
    list-style: none;/*マーカーなし*/
}
.itiran-custom dt img {/*アイキャッチ画像*/
    width: 285px;/*画像幅*/
		height:160px;
    transition: .3s;/*拡大・縮小速度*/
}
.itiran-custom dt img:hover {/*マウスホバーで画像拡大*/
    transform: scale(1.2);/*拡大率*/
}
.itiran-custom dd a {/*記事タイトル*/
    font-weight: bold;/*文字を太字に*/
    color: black;/*文字色*/
    font-size: 18px;/*文字サイズ*/
    text-decoration: none;/*下線なし*/
}
.itiran-custom dd {
    text-align: left;/*タイトル中央寄せ*/
    display: block;/*ブロック形式で表示*/
    padding: 10px;/*タイトル位置*/
}
.eyecatch-t {/*-- 記事一覧画像にカテゴリー追加 --*/
    position: relative;/*絶対位置*/
}
p.eyecatchlabel-t {
    position: absolute;/*絶対位置*/
    font-size: 13px;/*文字サイズ*/
    font-weight: bold;/*文字を太字に*/
    color: #ffffff;/*文字色*/
    background-color: #C18C48;/*背景色*/
    padding: 1px 20px;/*縦と横の幅*/
    left: 5px;/*左からの位置*/
    top: 5px;/*上からの位置*/
    opacity: 1;/*透明度*/
    z-index: 2000;/*重なりの順序*/
}

/*-- この記事を見るボタンの配置 --*/
.readmore {
    text-align: right;/*ボタンを中央に移動*/
    margin-top: 2px;/*上からの余白*/
    margin-bottom: -17px;/*下からの余白*/
		padding:10px;	
}
@media only screen and (max-width: 750px) {
	
.itiran-custom dl {
    float: none;/*配置なし*/
		box-shadow:none;
		margin-bottom:0;
		width:100%;
}
.itiran-custom dt {
    margin: 10px;/*画像とタイトルの間隔*/
}
.itiran-custom dt img {/*アイキャッチ画像*/
    width: 100px;/*画像幅*/
    height: 100px;/*画像の高さ*/
}
.itiran-custom dd a {/*記事タイトル*/
    font-size: 20px;/*文字サイズ*/
}
.itiran-custom dd {
		float:none;
    text-align: left;/*タイトル左寄せ*/
    padding: 5px;/*タイトル位置*/
}
p.eyecatchlabel-t {
    font-size: 10px;/*カテゴリー文字サイズ*/
    padding: 0px 5px;/*縦と横の幅*/
}
.readmore {
    text-align: right;/*ボタン右寄せ*/
    margin-top: -18px;/*上からの余白*/
    margin-bottom: 0px;/*下からの余白*/
}
.itiran-time {
		float:right;
    font-size: 8px;/*投稿日時文字サイズ*/
		margin-top:0px;
		
}
}
/*-一部固定ページのSNSボタンを非表示-*/
.post-42 .sns,.post-790 .sns,.post-9 .sns,.post-70 .sns{
		display: none;
}

table th{
		background-color:#f2f2f2;
}