@charset "UTF-8";

/* 
 * 25_blurry v1.0.2
 *
 * Copyright (c) 2015 tsui - http://dithis.fem.jp/
 * Licensed under the MIT license - http://opensource.org/licenses/mit-license.php
 *
 */

/* ----- Reset
-------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
strike, strong, sub, sup, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, dropdown, output, ruby, section, summary,
time, mark, audio, video{
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
	border: 0;
	padding: 0;
	margin: 0;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section{
	display: block;
}
body{
	line-height: 1;
}
blockquote, q{
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after{
	content: '';
	content: none;
}
ol, ul{
	list-style: none;
}
table{
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th, td{
	font-weight: normal;
	text-align: left;
}
/* ----- Clearfix ----- */
.clearfix:before, .clearfix:after{
	content: "";
	display: table;
}
.clearfix:after{
	clear: both;
}
/* For IE 6/7 (trigger hasLayout) */
.clearfix{
	zoom: 1;
}
/* ----- 推奨カスタマイズ
-------------------------------------------------- */ 
/* ----- 全体的なレイアウト ----- */
body{
	color: #333;                               /* フォントの色 */
	font-size: 14px;                           /* フォントサイズ */
	line-height: 1.5;                          /* フォントの行間 */
	font-family: "メイリオ", Meiryo, san-seri; /* フォントの種類 */
	background-color: #fff;                    /* 背景色 */
} 
/*----- 全体的なリンクの設定 -----*/
a{
	text-decoration: none;                     /* 下線を付けない */
	-webkit-transition: 0.5s ease;             /* リンク色がフェードするトランジション */
	-moz-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;
}
a:link{
	color: #59b3b3;                           /* 未訪問のリンク色 */
}
a:visited{
	color: #59b3b3;                           /* 訪問済みのリンク色 */
}
a:hover, a:focus{
	color: #cc4429;                              /* マウスカーソルを乗せたときのリンク色 */
}
a:active{
 	color: #59b3b3;                           /* 選択中のリンク色 */
}
/*----- ブログタイトルの設定 -----*/
h1{
	color: #333;                               /* フォントの色 */
	font-size: 30px;                           /* フォントサイズ */
	font-family: "Dancing Script", cursive;    /* フォントの種類 */
}
/*----- ブログタイトルのリンクの設定 -----*/
h1 a:link{
	color: #000;                               /* 未訪問のリンク色 */
}
h1 a:visited{
	color: #000;                               /* 訪問済みのリンク色 */
}
h1 a:hover, h1 a:focus{
	color: #ccc;                               /* マウスカーソルを乗せたときのリンク色 */
}
h1 a:active{
	color: #000;                               /* 選択中のリンク色 */
}
/*----- 投稿記事タイトルの設定（トップページ） -----*/
.section1 h2{
	font-size: 20px;                           /* フォントサイズ */
	font-weight: bold;                         /* フォントの太さ */
}
/*----- 投稿記事タイトルのリンクの設定 -----*/
h2 a:link{
	color: #000;                               /* 未訪問のリンク色 */
}
h2 a:visited{
	color: #000;                               /* 訪問済みのリンク色 */
}
h2 a:hover, h2 a:focus{
	color: #ccc;                               /* マウスカーソルを乗せたときのリンク色 */
}
h2 a:active{
	color: #000;                               /* 選択中のリンク色 */
}
/* ----- サイドバーの設定 ----- */
#secondary-column{
	font-size: 12px;                           /* フォントサイズ */
}
/*----- サイドバータイトルの設定 -----*/
.sidebar h3{
	color: #333;                               /* フォントの色 */
	font-size: 16px;                           /* フォントサイズ */
	font-family: "Dancing Script", cursive;    /* フォントの種類 */
}
/* ----- フッターの設定 ----- */
#tertiary-column{
	font-size: 12px;                           /* フォントサイズ */
}
/*----- フッタータイトルの設定 -----*/
.box h3{
	font-size: 16px;                           /* フォントサイズ */
	font-family: "Dancing Script", cursive;    /* フォントの種類 */
}
/* ----- Global
-------------------------------------------------- */
*, *:before, *:after{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html{
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	overflow-y: scroll;
}
body{
	word-wrap: break-word;
} 
/* ----- Headings
-------------------------------------------------- */
h1{
	vertical-align: middle;
	display: inline-block;
	position: relative;
	overflow: hidden;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	margin: 0 0 10px 0;
}
h1 a:before{
	height: 1px;
	background: #000;
	content: "";
	z-index: -1;
	position: absolute;
	left: 50%;
	right: 50%;
	bottom: 0;
	-webkit-transition-property: left, right;
	transition-property: left, right;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
	-webkit-transition-timing-function: ease;
	transition-timing-function: ease;
}
h1 a:hover:before, h1 a:focus:before, h1 a:active:before{
	right: 0;
	left: 0;
}
h1 a:hover:after, h1 a:focus:after{
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	transform: translateY(0px);
}
h2{
	margin: 0 0 10px 0;
}
h3{
	border: 1px solid #000;
	padding: 10px;
	margin: 0 0 10px 0;
}
/* ----- Blocks
-------------------------------------------------- */
.entry-content > p, .entry-more > p{
	margin: 0 0 20px 0;
}
p:before, p:after{
	content: "";
	display: table;
}
p:after{
	clear: both;
}
p{
	zoom: 1;
}
p:last-child{
	margin: 0;
}
blockquote{
	background: url(https://blog-imgs-47.fc2.com/d/i/t/dithis/rdquo06.png) no-repeat right bottom;
	padding: 0 50px 10px 0;
	margin: 0 0 20px 0;
}
blockquote[cite]:after{
	color: #59b3b3; 
	font-size: 12px;
	text-align: right;
	content: attr(cite);
	display: block;
}
blockquote p{
	background: url(https://blog-imgs-47.fc2.com/d/i/t/dithis/ldquo06.png) no-repeat left top;
	padding: 10px 0 0 50px;
}
pre{
	font-family: Consolas, "Courier New", Courier, Monaco, monospace;
	line-height: 20px;
	background: url(https://blog-imgs-66.fc2.com/d/i/t/dithis/pre03.gif) repeat left top;
	white-space: -moz-pre-wrap;
	white-space: -pre-wrap;
	white-space: -o-pre-wrap;
	white-space: pre-wrap;
	word-wrap: break-word;
	margin: 0 0 20px 0;
}
hr{
	height: 1px;
	background-color: #000;
	border: none;
	display: block;
	margin: 20px 0;
}
/* ----- Lists
-------------------------------------------------- */
.entry-content > dl, .entry-more > dl{
	margin: 0 0 20px 0;
}
.entry-content > dl dt, .entry-more > dl dt{
	font-weight: bold;
	margin: 5px 0;
}
.entry-content > dl dd, .entry-more > dl dd{
	border-left: 1px solid #333;
	margin: 0 0 0 1em;
	padding: 5px 0 5px 5px;
}
.entry-content ul{
	list-style-type: disc;
}
.entry-content > ul, .entry-more > ul{
	margin: 0 0 20px 0;
}
.entry-content ol{
	list-style-type: decimal;
}
.entry-content > ol, .entry-more > ol{
	margin: 0 0 20px 0;
}
.entry-content ul ul, .entry-content ol ul{
	list-style-type: circle;
}
.entry-content ul li, .entry-content ol li{
	margin: 0 0 0 1.5em;
}
/* ----- Table
-------------------------------------------------- */
.entry-content > table, .entry-more > table{
	margin: 0 0 20px 0;
}
/* ----- Forms
-------------------------------------------------- */
input, textarea, select, button{
	color: #333;
	font-size: 14px;
	line-height: 1;
	font-family: "ＭＳ Ｐゴシック", "MS PGothic", san-seri;
	border: 1px solid #000;
	-webkit-box-shadow: 0 1px 3px #e5e5e5 inset;
	-moz-box-shadow: 0 1px 3px #e5e5e5 inset;
	box-shadow: 0 1px 3px #e5e5e5 inset;
	padding: 8px;
}
input:focus, textarea:focus{
	border: 1px solid #99bbff;
	-webkit-box-shadow: 0 0 5px #99bbff;
	-moz-box-shadow: 0 0 5px #99bbff;
	box-shadow: 0 0 5px #99bbff;
}
#name, #title, #mail, #url{
	width: 60%;
}
#comment{
	width: 80%;
}
#pass{
	width: 30%;
}
#trackback{
	width: 60%;
	margin: 0 0 10px 0;
}
input[type=submit], input[type=reset], input[type=button], button{
	color: #fff;
	background-color: #59b3b3;
	border: none;
	cursor: pointer;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
	-ms-transform: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;
}
input[type="submit"]:hover, input[type=reset]:hover, input[type=button]:hover, button:hover{
	background-color: #cc4429;
}
#send-btn, #delete-btn{
	width: 30%;
}
input[type=checkbox], input[type=radio]{
	background-color: transparent;
	border: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
/* ----- Inline
-------------------------------------------------- */
.entry-content img{
	max-width: 100%;
	height: auto;
}
br{
	letter-spacing: normal;
}
em{
	color: #ff6666;
}
strong{
	font-weight: bold;
}
ins{
	text-decoration: underline;
}
del{
	color: #999;
	text-decoration: line-through;
}
q{
}
q:before{
	content: "\201C";
}
q:after{
	content: "\201D";
}
cite{
	font-style: italic;
}
/* ----- Layouts
-------------------------------------------------- */
/* ----- Wrapper ----- */
#wrapper{
}
/* ----- Header ----- */
#header{
	background-color: #fff;
	border-bottom: 1px solid #000;
	position: relative;
	padding: 20px 0;
}
#blogname{
	width: 90%;
	max-width: 1280px;
	margin: 0 auto;
}
#blogname p{
	font-size: 12px;
}
#menu{
	width: 90%;
	max-width: 1280px;
	text-align: center;
	line-height: 36px;
	position: relative;
	margin: 0 auto;
}
#menu i{
	font-size: 14px;
}
#menu ul{
	float: right;
}
#menu ul li{
	float: left;
	margin: 0 0 0 10px;
}
#menu a{
	width: 36px;
	color: #fff;
	background-color: #333;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	display: block;
}
#menu a:hover, #menu a:focus{
	background-color: #ccc;
}
#topimage{
	height: 300px;
	background: url(https://blog-imgs-76.fc2.com/d/i/t/dithis/topimage25.jpg) no-repeat center center;
	background-size: cover;
	border-bottom: 1px solid #000;
	margin: 0 0 50px 0;
}
/* ----- Container ----- */
#container{
	width: 80%;
	max-width: 1000px;
	margin: 0 auto;
}
#breadcrumb{
	font-size: 12px;
	line-height: 30px;
	background-color: #fff;
	border-bottom: 1px solid #000;
	margin: -50px 0 50px 0;
}
#breadcrumb ul{
	max-width: 1280px;
	padding: 1px;
	margin: 0 auto;
}
#breadcrumb ul li{
	float: left;
}
#breadcrumb ul li a{
	height: 30px;
	color: #fff;
	background-color: #000;
	display: block;
	position: relative;
	padding: 0 10px 0 0;
	margin: 0 31px 0 0;
}
#breadcrumb ul li a:last-of-type{
	margin: 0 31px 0 0;
}
#breadcrumb ul li a:before{
	width: 0;
	height: 0;
	border: 15px solid transparent;
	border-color: #000;
	border-left-color: transparent;
	content: "";
	display: block;
 	position: absolute;
	top: 0;
	left: -30px;
}
#breadcrumb ul li a:after{
	width: 0;
	height: 0;
	border: 15px solid transparent;
	border-left-color: #000;
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: -30px;
}
#breadcrumb ul li:first-child a{
	padding: 0 15px 0 65px;
}
#breadcrumb ul li:first-child a:before{
	display: none;
}
#breadcrumb ul li a:hover{
	color: #fff;
	background-color: #ccc;
}
#breadcrumb ul li a:hover:before{
	border-color: #ccc;
	border-left-color: transparent;
	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;
}
#breadcrumb ul li a:hover:after{
	border-left-color: #ccc;
	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;
}
/* ----- Primary-column ----- */
#primary-column{
	width: 100%;
	float: left;
	margin: 0 -250px 0 0;
}
#inner{
	margin: 0 300px 0 0;
}
.section1{
	border: 1px solid #000;
	padding: 30px;
	margin: 0 0 50px 0;
}
.section2{
	margin: 0 0 50px 0;
}
.entry-meta{
	font-size: 12px;
	border-top: 1px dotted #000;
	border-bottom: 1px dotted #000;
	padding: 5px;
	margin: 0 0 20px 0;
}
.entry-meta i{
	font-size: 14px;
}
.entry-meta ul{
	float: left;
	padding: 3px 0;
}
.entry-meta ul li{
	float: left;
	display: inline-block;
	margin: 0 10px 0 0;
}
.category{
	font-size: 12px;
}
.category a{
	color: #fff;
	background-color: #cc4429;
	display: inline-block;
	float: right;
	padding: 3px;
}
.category a:hover{
	background-color: #ccc;
}
.extend{
	color: #59b3b3;
	font-size: 16px;
	font-family: "Dancing Script", cursive;
	text-align: center;
	border: 1px solid #59b3b3;
	display: inline-block;
	cursor: pointer;
	padding: 10px;
}
.entry-more1, .entry-more2{
	margin: 20px 0;
}
.hide{
	color: #59b3b3;
	font-size: 16px;
	font-family: "Dancing Script", cursive;
	text-align: center;
	border: 1px solid #59b3b3;
	display: inline-block;
	cursor: pointer;
	padding: 10px;
	margin: 20px 0 0 0;
}
dl.relate_dl{
	background: none;
	background-color: transparent;
	border: 1px solid #000;
	padding: 20px;
	margin: 20px 0;
}
dl.relate_dl dt.relate_dt{
	font-weight: normal;
	background: none;
	background-color: transparent;
	border: none;
	padding: 0;
	margin: 0;
}
dl.relate_dl dd.relate_dd{
	background: none;
	background-color: transparent;
	border: none;
	padding: 0;
	margin: 0;
}
.relate_ul{
	list-style-type: disc;
}
.fc2_footer{
	margin: 20px 0;
}
.community{
	font-size: 12px;
	text-align: right;
}
.tag{
	font-size: 12px;
	text-align: right;
}
.tag span:after{
	content: ", ";
}
.tag span:last-child:after{
	content: "";
}
.category{
	font-size: 12px;
	text-align: right;
}
.font-script{
	font-size: 20px;
	font-family: "Dancing Script", cursive;
	text-align: center;
}
.alert{
	color: #cc3333;
	background-color: #ffe5e5;
	border: 1px solid #e67373;
	padding: 10px;
	margin: 0 0 20px 0;
}
.alert:before{
	content: "Error: ";
	display: inline;
}
.alert:empty{
 	display: none;
}
#comment_form dl dt{
	margin: 0 0 10px 0;
}
#comment_form dl dd{
	margin: 0 0 10px 0;
}
.cm-title, .tb-title{
	font-weight: bold;
	margin: 0 0 10px 0;
}
.list-title, .search-title{
	font-weight: bold;
}
.cm-entry, .tb-entry{
	border: 1px solid #000;
	padding: 30px;
	margin: 0 0 20px 0;
}
.cm-meta, .tb-meta{
	font-size: 12px;
	border-top: 1px dotted #000;
	border-bottom: 1px dotted #000;
	padding: 5px;
	margin: 0 0 20px 0;
}
.cm-date, .tb-date{
	float: right;
}
.cm-edit{
	font-size: 12px;
 	text-align: right;
}
.cm-edit a{
	color: #fff;
	background-color: #cc4429;
	display: inline-block;
	float: right;
	padding: 3px;
}
.tb-form{
	margin: 0 0 20px 0;
}
.list-entry, .search-entry{
	border-bottom: 1px solid #000;
 	position: relative;
	padding: 0 0 10px 0;
	margin: 0 0 10px 0;
}
.list-date, .search-date{
	font-size: 12px;
}
.list-cg, .search-cg{
	font-size: 12px;
 	position: absolute;
 	right: 0;
 	bottom: 10px;
}
.list-cg a, .search-cg a{
	color: #fff;
	background-color: #cc4429;
	display: inline-block;
	float: right;
	padding: 3px;
}
.pn-entry{
	font-size: 12px;
	overflow: hidden;
 	position: relative;
	margin: 0 0 50px 0;
}
.pn-entry ul li{
	text-overflow: ellipsis;
	white-space: nowrap;
	display: inline-block;
	overflow: hidden;
}
.preventry{
	width: 40%;
	float: left;
}
.home{
	width: 20%;
	text-align: center;
}
.nextentry{
	width: 40%;
	text-align: right;
	float: right;
}
.pn-page{
	font-size: 12px;
	line-height: 36px;
	text-align: center;
  	overflow: hidden;
 	position: relative;
	margin: 50px 0;
}
.pn-page ul{
	float: left;
	position: relative;
	left: 50%;
}
.pn-page ul li{
	float: left;
	position: relative;
	left: -50%;
	margin: 0 3px;
}
.pn-page span{
	width: 36px;
	color: #fff;
	background-color: #ccc;
	display: inline-block;
}
.pn-page a{
	width: 36px;
	color: #fff;
	background-color: #000;
	display: inline-block;
}
.pn-page a:hover{
	background-color: #ccc;
}
.prevpage{
	float: left;
}
.nextpage{
	float: right;
}
/* ----- Secondary-column ----- */
#secondary-column{
	width: 250px;
	float: right;
	margin: 0 0 50px 0;
}
.sidebar{
	margin: 0 0 20px 0;
}
.sidebar h3{
	text-align: center;
	cursor: pointer;
}
.sidebar ul{
	list-style-type: disc;
}
.sidebar ul li{
	margin: 0 0 0 1.5em;
}
.sidebar ul ul{
	list-style-type: circle;
}
.calender{
	width: 210px;
	text-align: center;
	border-collapse: separate;
	border-spacing: 2px;
	margin: 0 auto;
}
.calender caption{
	text-align: center;
}
.calender th{
	width: 28px;
	line-height: 28px;
	text-align: center;
}
.calender th#sun{
	color: #ff6666;
}
.calender th#sat{
	color: #6666ff;
}
.calender td{
	width: 28px;
	line-height: 28px;
	text-align: center;
}
.calender td a{
	width: 28px;
	display: block;
}
/* ----- Tertiary-column----- */
#tertiary-column{
	width: 990px;
	margin: 0 auto;
}
.box{
	width: 280px;
	float: left;
	margin: 25px;
}
.box h3{
	border: none;
	border-left: 1px solid #000;
	cursor: pointer;
	padding: 10px;
}
.box ul{
	list-style-type: disc;
}
.box ul li{
	margin: 0 0 0 1em;
}
.box ul ul{
	list-style-type: circle;
}
/* ----- Footer ----- */
#footer{
	font-size: 12px;
	border-top: 1px solid #000;
	clear: both;
	padding: 25px 0 20px 0;
}
#totop{
	font-size: 50px;
	line-height: 1;
	position: fixed;
	bottom: 30px;
	right: 50px;
}
#totop a{
	color: #000;
}
#totop span{
	display: none;
}
#rights{
	text-align: center;
	margin: 25px 0 0 0;
}
/* ----- Misc. ----- */
img.emoji{
	box-shadow: none;
	vertical-align: middle;
}
.frame{
	border: 2px solid #e5e5e5;
}
.photo{
	background-color: #fff;
	border-top: 1px solid #e5e5e5;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	border-left: 1px solid #e5e5e5;
	box-shadow: 2px 2px 5px 0 #ccc;
	padding: 10px;
}
.pull-right{
	display: inline;
	float: right;
	margin: 0 0 0 10px;
}
.pull-left{
	display: inline;
	float: left;
	margin: 0 10px 0 0;
}
.btn{
	color: #fff;
	text-shadow: 1px 1px 0 #243cb3;
	background-color: #527acc;
	background: -webkit-gradient(linear, left top, left bottom, from(#527acc), to(#5252cc));
	background: -webkit-linear-gradient(top, #527acc, #5252cc);
	background: -moz-linear-gradient(top, #527acc, #5252cc);
	background: -o-linear-gradient(top, #527acc, #5252cc);
	background: -ms-linear-gradient(top, #527acc, #5252cc);
	background: linear-gradient(to bottom, #527acc, #5252cc);
	border: 1px solid #243cb3;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	padding: 5px 10px;
}
.btn:hover{
	background: #5252cc;
}
a.btn{
	color: #fff;
}
.aa{
	font-size: 16px;
	line-height: 17px;
	font-family: "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	white-space: pre;
}
/* ----- Responsive ----- */
@media screen and (max-width: 768px){
#name, #title, #mail,#url, #comment, #pass, #trackback{
	width: 100%;
	margin: 0 0 5px 0;
}
.entry-content img{
	max-width: 100%;
	width /***/: auto;
	height: auto;
}
#container{
	width: 100%;
}
#primary-column{
	width: 100%;
	float: none;
	padding: 0 50px;
	margin: 0;
}
#inner{
	margin: 0;
}
#secondary-column{
	width: 100%;
	float: none;
	padding: 0 50px;
}
#tertiary-column{
	width: 100%;
	padding: 25px 50px 0 50px;
}
.box{
	width: 100%;
	float: none;
	margin: 0 0 20px 0;
}
}
@media screen and (max-width: 480px){
#primary-column{
	padding: 0 10px;
}
.section1, .section2{
	padding: 10px;
}
#secondary-column{
	padding: 0 10px;
}
#tertiary-column{
	width: 100%;
	padding: 25px 10px 0 10px;
}
}