@charset "utf-8";
/*
Theme Name:  webmore_manual
Theme URI: http://manual.212plus.com/
Description: WordPressマニュアル
Version:     2.0
Author:      212plus
Author URI:  http://www.212plus.com/
*/

/************************************************************
	Reset default browser CSS.
*************************************************************/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	outline: 0;
	vertical-align: baseline;
	margin: 0;
	padding: 0;
}
:focus { outline: 0;}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block;}

ol, ul { list-style: none;}
table { border-collapse: collapse;border-spacing: 0;}
caption, th, td { font-weight: normal;text-align: left;}
blockquote:before, blockquote:after,q:before, q:after { content: "";}
blockquote, q { quotes: "" "";}

a img { border: 0;}

img { border: 0; vertical-align: bottom;}

body{
	background :#fff;
	color: #333;
	font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 100%;
    line-height: 2;
	word-wrap: break-word;
	/* http://keagelog.blogspot.jp/2013/03/text-size-adjust.html */
	/*-moz-text-size-adjust: none;
	-ms-text-size-adjust: 100%;*/
	-webkit-text-size-adjust: 100%;
	/*text-size-adjust: 100%;*/
}
*html{ background: #fff;}


/************************************************************
	Clearfix
*************************************************************/
#wrapper:after {
	content:"";
	display: table;
	clear: both;
}
#wrapper {
	zoom: 1;
}
/* Basic */
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.clearfix {
	display: inline-table;
	min-height: 1%;
}
* html .clearfix { height: 1%; }
.clearfix { display: block; }


/************************************************************
	リンク設定
*************************************************************/
a {
	margin: 0;
	padding: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
	color: #DB0066;
	font-size: 100%;
	text-decoration: none;
}
a:hover,
a:active {
	outline: none;
	color: #DB0066;
	text-decoration: underline;

}
a:hover img {
	opacity: 0.75;
	filter: alpha(opacity=75);
	-moz-opacity:0.75;
	-ms-filter: "alpha( opacity=75 )";
	-moz-transition: 0.5s ease-in-out;
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;

    -webkit-backface-visibility: hidden; /* 追加 */
    backface-visibility: hidden; /* 追加 */
	/* Firefox Bug */
	background: #FFF;
	/* IE8 Bug */
	display /*\**/:inline-block\9;
	zoom /*\**/: 1\9;
}

/* target="_blank" */
a.internal:after {
		margin-left: 0.15em;
		margin-right: 0.2em;
		font-family: FontAwesome;
		font-style: normal;
		font-weight: normal;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		content: "\f08e";
}

/************************************************************
	リンクボタン
*************************************************************/

/* ミニマム */
.linkBtnMin {
}
	.linkBtnMin a {
		display: inline-block;
		padding: 0.5em 1em;
		background: #DB0066;
		-webkit-border-radius: 5px;
		-ms-border-radius: 5px;
		-o-border-radius: 5px;
		border-radius: 5px;
		color: #FFF;
		font-size: 100%;
		text-decoration: none;
	}
		.linkBtnMin a:before {
			margin-right: 0.2em;
			font-family: FontAwesome;
			font-style: normal;
			font-weight: normal;
			line-height: 1;
			-webkit-font-smoothing: antialiased;
			-moz-osx-font-smoothing: grayscale;
			content: "\f138";
			color: #FFF;
		}
		.linkBtnMin a:hover {
			opacity: 0.75;
			filter: alpha(opacity=75);
			-moz-opacity:0.75;
			-ms-filter: "alpha( opacity=75 )";
			-moz-transition: 0.5s ease-in-out;
			-webkit-transition: 0.5s ease-in-out;
			transition: 0.5s ease-in-out;
		}
	@media only screen and (max-width: 767px){
		.linkBtnMin a {
			padding: 0.25em 1em;
		}
	}

/* 要素 最大幅 */
.linkBtnMax {
	padding: 0em 1em;
	background: #DB0066;
	-webkit-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
	text-align: center;
}
	.linkBtnMax a {
		display: block;
		padding: 0.5em 0;
		color: #FFF;
		font-size: 100%;
		text-decoration: none;
	}
		.linkBtnMax a:before {
			margin-right: 0.2em;
			font-family: FontAwesome;
			font-style: normal;
			font-weight: normal;
			line-height: 1;
			-webkit-font-smoothing: antialiased;
			-moz-osx-font-smoothing: grayscale;
			content: "\f138";
			color: #FFF;
		}
		.linkBtnMax a:hover {
			opacity: 0.75;
			filter: alpha(opacity=75);
			-moz-opacity:0.75;
			-ms-filter: "alpha( opacity=75 )";
			-moz-transition: 0.5s ease-in-out;
			-webkit-transition: 0.5s ease-in-out;
			transition: 0.5s ease-in-out;
		}


/************************************************************
	基本レイアウト
*************************************************************/
#wrapper {
	width: 960px;
	margin:0 auto;
}
.inner {
	width: 960px;
	margin: 0 auto;
}
#content {
	float: left;
	width: 680px;
}
#sidebar {
	float: right;
	width: 240px;
}

	@media only screen and (min-width: 768px) and (max-width: 959px) {
		#wrapper,
		.inner {
			width: 97%;
		}
		#content{
			width: 72%;
		}
		#sidebar{
			width: 25%;
		}
	}
	@media only screen and (max-width: 767px){
		#wrapper,
		.inner {
			width: 95%;
		}
		#content,
		#sidebar {
			width: 100%;
			float: none;
			clear: both;
			margin: 0 auto;
		}
		#content {
			margin-bottom: 2em;
		}
	}

footer {
	clear: both;
}
	@media only print { /* 印刷用設定 */
		#content {
			width: 100%;
		}
		sidebar {
			display:none;
		}
		footer {
			width: 960px !important;
			margin: 1em auto 0 auto !important;
			background: #FFF;
		}
	}

#content > section,
#content > article {
	margin-bottom: 1.5em;
}
.entry-content {
	margin-bottom: 2.5em;
	width: 100%;
}
.entry-content > section {
	margin-bottom: 1.5em;
}


/************************************************************
	基本画像（Responsive）
*************************************************************/
.entry-content img {
	max-width: 100%;
	height: auto;
	width: auto; /* for ie8 */
	/* Firefox 品質重視(https://developer.mozilla.org/ja/docs/Web/CSS/image-rendering) */
	/*image-rendering: optimizeQuality;*/
	/* Chrome transition Bug Fix */
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}


/************************************************************
	タイポグラフィ
*************************************************************/
#content > h1 {
	margin-bottom: 1em;
	padding: 0.25em;
	background: #DB0066;
	-webkit-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
	font-size: 165%;
	color: #FFF;
}
	#content > h1:before {
		margin-right: 0.2em;
		font-family: FontAwesome;
		font-style: normal;
		font-weight: normal;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		content: "\f02c";
	}

	strong {
		font-weight: bold;
	}

	@media only screen and (max-width: 767px){
		#content > h1 {
			font-size: 125%;
		}
	}


/************************************************************
	ヘッダー
*************************************************************/
header#main {
	width: 100%;
}
	header#main > div {
		width: 960px;
		margin: 0 auto;
		padding: 1em 0;
	}
		@media only screen and (min-width: 768px) and (max-width: 959px) {
			header#main > div {
				width: 97%;
			}
		}
		@media only screen and (max-width: 767px){
			header#main > div {
				width: 95%;
			}
		}

		header#main > div > div:first-of-type {
			float: left;
		}
			header#main > div > div:first-of-type h1 {
				color: #DB0066;
				font-size: 165%;
				line-height:1.2;
			}
			header#main > div > div:first-of-type h2 {
				margin-bottom: 0.5em;
				color: #000;
				font-size: 100%;
				line-height:1.2;

			}

		@media only screen and (max-width: 768px){
			header#main  {
				width: 95%;
			}
	
			header#main > div > div:first-of-type {
				float: none;
				margin-bottom: 1em;
			}
				header#main > div > div:first-of-type h1,
				header#main > div > div:first-of-type h2 {
					text-align: center;
				}
		}


/************************************************************
	グローバルナビゲーション
*************************************************************/
/*  nav.css */
/*  jquery.mmenu.all.css */


/************************************************************
	サイドバー
*************************************************************/
#sidebar > aside {
	margin-bottom: 2em;
}

	#sidebar > aside > h1 {
		margin-bottom: 1em;
		border-bottom: 2px solid #DB0066;
		font-size: 125%;
		font-weight: bold;
		line-height: 1.4;
		color: #333;
	}
		#sidebar > aside > h1:before {
			margin-right: 0.2em;
			font-family: FontAwesome;
			font-style: normal;
			font-weight: normal;
			line-height: 1;
			-webkit-font-smoothing: antialiased;
			-moz-osx-font-smoothing: grayscale;
		}
		#sidebar > aside > h1.cat:before {
			content: "\f02d";
		}
		#sidebar > aside > h1.info:before {
			content: "\f05a";
		}

	#sideCat ul li {
		margin-bottom: 1em;
	}
		#sideCat ul li:before {
			margin-right: 0.2em;
			font-family: FontAwesome;
			font-style: normal;
			font-weight: normal;
			line-height: 1;
			-webkit-font-smoothing: antialiased;
			-moz-osx-font-smoothing: grayscale;
			content: "\f02c";
			color: #DB0066;
		}


/************************************************************
	フッター
*************************************************************/
/*  nav.css */


/************************************************************
	投稿一覧
*************************************************************/

	/* 共通
	--------------------------------------------------------*/
	.postList {
	}
		.postList ul {
		}
			.postList ul li {
				margin-bottom: 0.75em;
				padding-bottom: 0.75em;
				border-bottom: 1px dotted #CCC;
			}
				.postList ul li.nopost {
					color: #999;
				}
			.postList p {
				text-align: right;
			}

		@media only screen and (max-width: 767px){
			.postList ul li:hover {
				background: none;
			}
			.postList p {
				font-size: 100%;
			}
		}

	/* サムネイル有
	--------------------------------------------------------*/
	.postList ul li dl.thumbList {
	}
		.postList ul li dl.thumbList dt {
			float: left;
			width: 20%;
		}
			.postList ul li dl.thumbList dt img {
				height: auto;
				max-width: 320px;
				width: 100%;
			}
		.postList ul li dl.thumbList dd {
			float: right;
			width: 78%;
		}
			.postList ul li dl.thumbList dd h2 {
				margin-bottom: 0.5em;
				font-weight: bold;
				font-size: 125%;
				line-height: 1.4;
			}
				.postList ul li dl.thumbList dd h2:before {
					margin-right: 0.2em;
					font-family: FontAwesome;
					font-style: normal;
					font-weight: normal;
					line-height: 1;
					-webkit-font-smoothing: antialiased;
					-moz-osx-font-smoothing: grayscale;
					content: "\f101";
				}
			.postList ul li dl.thumbList dd time {
				display: block;
				margin-bottom: 0.5em;
			}
			.postList ul li dl.thumbList dd span {
				display: block;
				font-size: 96%;
				color: #666;
				line-height: 1.7;
			}

		@media only screen and (max-width: 767px){
			.postList ul li dl.thumbList dd h1 {
				margin-bottom: 0.3em;
				font-size: 115%;
			}
			.postList ul li dl.thumbList dd time,
			.postList ul li dl.thumbList dd span {
				font-size: 100%;
			}
		}

	/* テキスト,日付あり
	--------------------------------------------------------*/
	.postList ul li dl.dateList {
	}
		.postList ul li dl.dateList dt {
			margin-bottom: 0.3em;
		}
			.postList ul li dl.dateList dt time {
				font-size: 100%;
			}
		.postList ul li dl.dateList dd {
		}
			.postList ul li dl.dateList dd h2 {
				line-height: 1.4;
			}
			.postList ul li dl.dateList dd span {
				display: block;
				font-size: 96%;
				color: #666;
				line-height: 1.7;
			}

	@media only screen and (max-width: 767px){
	}


/************************************************************
	投稿 (single.php)
*************************************************************/

	/* 基本設定
	--------------------------------------------------------*/
	article > header {
		margin-bottom: 1.5em;
	}
		article > header > time {
			display: block;
			margin-bottom: 1em;
			font-size: 100%;
			text-align: right;
		}
		article > header > h1 {
			font-size: 25px;
			line-height: 1.2;
			padding-left: 0.5em;
			border-left: 6px solid #DB0066;
		}

		article .entry-content h1 {
			margin-bottom: 1em;
			padding: 0.25em 0.5em;
			background: #FFE6F1;
			border-radius: 5px;
			-webkit-border-radius: 5px;
			-moz-border-radius: 5px;
			-ms-border-radius: 5px;
			-o-border-radius: 5px;
			-webkit-box-shadow: 0 0 1px #FFC4E0; /* for Android2.3 */
			font-size: 20px;
			font-weight: bold;
			line-height: 1.7;
		}
		article .entry-content h2 {
			margin-bottom: 1em;
			background: #EFEFEF;
			border-left:5px solid #999;
			padding:0.25em 0.5em;
			font-size: 18px;
			font-weight: bold;
			line-height: 1.7;
		}
		article .entry-content h3 {
			font-size: 16px;
			font-weight:bold;
			
		}
		article .entry-content p {
			margin-bottom: 1em;
			font-size: 100%;
			line-height: 1.7;
		}
		article .entry-content img {
			display: block;
			height: auto;
			max-width: 100%;
			width: auto;
			margin: 1em 0;
			border: 1px solid #CCC;
			-webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
			-o-box-sizing: border-box;
			-ms-box-sizing: border-box;
			box-sizing: border-box;
		}

			@media only screen and (max-width: 767px){
				article > header > h1 {
					font-size: 150%;
				}
				article .entry-content p {
					font-size: 100%;
				}
			}

	/* WordPress Default Setting
	--------------------------------------------------------*/
	.aligncenter,
	div.aligncenter {
	   margin-left: auto !important;
	   margin-right: auto !important;
	}
	.alignleft {　float: left;}
	.alignright {　float: right;}

	/* アップロード画像
	--------------------------------------------------------*/
	img.size-full,
	img.size-large,
	img.size-medium,
	.attachment img {
		/*max-width: 100%;  When images are too wide for containing element, force them to fit. */
		/*height: auto;  Override height to match resized width for correct aspect ratio. */
		/*width:auto;  for ie8 */
	}
	
	/* Tag
	--------------------------------------------------------*/
	#tagList {
		padding: 0.5em;
		background: #FEFEFE;
		border: 1px solid #999;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-o-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		line-height: 1.4;
	}

	/* Table
	--------------------------------------------------------*/
	.entry-content table {
		border-collapse: collapse;
		border-spacing: 0;
		margin-bottom: 1em;
	}
		.entry-content table th {
			padding: 0.5em 1em;
			border: 1px solid #DB0066;
			background: #DB0066;
			font-weight: bold;
			color: #fff;
		}
		.entry-content table td {
			padding: 0.5em 1em;
			border: 1px solid #DB0066;
			background: #fff;
		}

	/* Others
	--------------------------------------------------------*/
	p.nt1 {
		padding: 1em;
		border: 2px solid #DB0066;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-o-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
	}
	p.nt2 {
		padding: 1em;
		border: 2px solid #15A5B6;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-o-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
	}





/************************************************************
	 Extensions
*************************************************************/
	/* パンくず (Yoast WordPress SEO: Internal Links)
	------------------------------------------------------------*/
	p#breadcrumbs {
		width: 960px;
		margin: 2em auto;
		line-height: 1.4;
	}
	
		@media only screen and (min-width: 768px) and (max-width: 959px) {
			p#breadcrumbs {
				width: 95%;
			}
		}
		@media only screen and (max-width: 767px){
			p#breadcrumbs {
				width: 95%;
			}
		}
	
	/* WP-Page Navi
	--------------------------------------------------------*/
	.wp-pagenavi {
		margin: 2em 0;
	}
		@media only screen and (max-width: 767px){
			.wp-pagenavi {
				margin-bottom: 2.5em;
			}
		}
	.wp-pagenavi span {
		display: inline-block;
	}
	.wp-pagenavi a,
	.wp-pagenavi a:link {
		display: inline-block;
		margin: 3px 4px;
		padding: 3px 5px;
		border: 1px solid #DB0066;
		color: #333;
		text-decoration: none;
	}
	 
	.wp-pagenavi a:visited {
		margin: 3px 4px;
		padding: 3px 5px;
		border: 1px solid #DB0066;
		color: #333;
		text-decoration: none;
	}
	 
	.wp-pagenavi a:hover {
		background-color: #DB0066;
		border: 1px solid #DB0066;
		color: #fff;
	}
	 
	.wp-pagenavi a:active {
		margin: 3px 4px;
		padding: 3px 5px;
		border: 1px solid #DB0066;
		color: #333;
		text-decoration: none;
	}
	/* 現在ページ */
	.wp-pagenavi span.current {
		margin: 3px 4px;
		padding: 3px 5px;
		background-color: #DB0066;
		border: 1px solid #DB0066;
		color: #fff;
	}
	/* 先頭,最後 */
	.wp-pagenavi a.previouspostslink,
	.wp-pagenavi a.nextpostslink {
	}
	/* Page x/x */
	.wp-pagenavi span.pages {
		margin: 3px 4px 3px 0;
		padding: 3px 5px;
		color: #333;
		border: 1px solid #DB0066;
	}
	/* 省略(...) */
	.wp-pagenavi span.extend {
		margin: 3px 4px;
		padding: 3px 5px;
		border: 1px solid #DB0066;
		color: #333;
	}
	
	/* Page navigation (prev/next)
	--------------------------------------------------------*/
	article > #prev_next {
		margin-top: 2em;
		text-align: center;
	}
	article > #prev_next a {
		padding: 0 20px;
	}
	


/************************************************************
	ソーシャルサービス
*************************************************************/

	/* ON-OFF
	--------------------------------------------------------*/
	@media only screen and (min-width: 768px){
		.desktop {
			display: block;
		}
		.mobile {
			display: none;
		}
	}
	@media only screen and (max-width: 767px){
		.desktop {
			display: none;
		}
		.mobile {
			display: block;
		}
	}

	/* YouTube
	--------------------------------------------------------*/
	.YouTube  {
		overflow: hidden;
		position: relative;
		/* paddingで高さを出している */
		height: 0;
		padding-top:30px;
		padding-bottom:56.25%;
	}
	.YouTube iframe,
	.YouTube object,
	.YouTube embed {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}


/************************************************************
	フォーム
*************************************************************/
input[type="text"],
textarea {
	max-width: 90%;
	padding: 0.25em;
	border: 1px solid #666;
	font-size: 100%;
	vertical-align: middle;
}
textarea {
	height: auto;
	line-height: 1.5;
}
select {
	max-width: 90%;

}
input[type="submit"],
input[type="reset"],
input[type="button"] {
	padding: 0.2em 0.5em;
	background: #666;
	border: 0;
	-webkit-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
	font-size: 90%;
	color:#fff;
}
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
	background: #999;
	cursor:pointer;
}
*:first-child+html input[type="submit"]{ padding:3px;}

/* iPhone独自スタイル（グラデーション, 角丸）を解除 */
input[type="submit"] {
  -webkit-appearance: none;
}

