@charset "UTF-8";

/* 
 * 27_chic - v1.0.1
 *
 * 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: 16px;                           /* フォントサイズ */
  line-height: 1.5;                          /* フォントの行間 */
  font-family: "メイリオ", Meiryo, san-seri; /* フォントの種類 */
  background-color: #f3efda;                 /* 背景 */
} 
/*----- 全体的なリンクの設定 -----*/
a{
  text-decoration: underline;                     /* 下線を付けない */
  -webkit-transition: 0.5s ease;             /* リンク色がフェードするトランジション */
  -moz-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}
a:link{
  color: #1546c3;                            /* 未訪問のリンク色 */
}
a:visited{
  color: #1546c3;                            /* 訪問済みのリンク色 */
}
a:hover, a:focus{
  color: #1f9971;                            /* マウスカーソルを乗せたときのリンク色 */
}
a:active{
  color: #8fccb8;                            /* 選択中のリンク色 */
}
/*----- ブログタイトルの設定 -----*/
h1{
  font-size: 30px;                           /* フォントサイズ */
  font-family: "Abel", "メイリオ", Meiryo, san-seri; /* フォントの種類 */
  font-weight: bold;                         /* フォントの太さ */
  text-shadow: 1px 1px 0 #000;               /* テキストシャドウ */
}
/*----- ブログタイトルのリンクの設定 -----*/
h1 a:link{
  color: #fff;                               /* 未訪問のリンク色 */
}
h1 a:visited{
  color: #fff;                               /* 訪問済みのリンク色 */
}
h1 a:hover, h1 a:focus{
  color: #fff;                               /* マウスカーソルを乗せたときのリンク色 */
}
h1 a:active{
  color: #ccc;                               /* 選択中のリンク色 */
}
/*----- 投稿記事タイトルの設定（トップページ） -----*/
h2{
  font-size: 20px;                           /* フォントサイズ */
  font-weight: bold;                         /* フォントの太さ */
}
/*----- 投稿記事タイトルのリンクの設定 -----*/
h2 a:link{
  color:#C73C2E;                               /* 未訪問のリンク色 */
}
h2 a:visited{
  color: #C73C2E;                               /* 訪問済みのリンク色 */
}
h2 a:hover, h2 a:focus{
  color: #ccc;                               /* マウスカーソルを乗せたときのリンク色 */
}
h2 a:active{
  color: #333;                               /* 選択中のリンク色 */
}
/* ----- サイドバーの設定 ----- */
#secondary-column{
  font-size: 12px;                           /* フォントサイズ */
}
/*----- サイドバータイトルの設定 -----*/
.sidebar h3{
  color: #AF3636;                               /* フォントの色 */
  font-size: 16px;                           /* フォントサイズ */
font-weight: bold; 
}
/* ----- 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{
  min-width: 1000px;
  word-wrap: break-word;
} 
/* ----- Headings
-------------------------------------------------- */
h1{
  margin: 0 0 10px 0;
}
h2{
  border-bottom: 1px solid #e7dfb5;
  padding: 0 0 10px 0;
  margin: 0 0 10px 0;
}
h3{
  font-weight: bold;
  border-left: 1px solid #e7dfb5;
  padding: 5px 10px;
  margin: 0 0 10px 0;
}
h4{
  font-weight: bold;
  position: relative;
  padding: 5px 0 0 1em;
}
h4:before{
  width: 10px;
  height: 1px;
  background-color: #e7dfb5;
  content: "";
  position: absolute;
  top: 50%;
  left: 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;
}
blockquote{
  background: url(//blog-imgs-47-origin.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: #8fccb8;
  font-size: 12px;
  line-height: 18px;
  text-align: right;
  content: attr(cite);
  display: block;
}
blockquote p{
  background: url(//blog-imgs-47-origin.fc2.com/d/i/t/dithis/ldquo06.png) no-repeat left top;
  padding: 10px 0 0 50px;
  margin: 0;
}
pre{
  font-family: Consolas, "Courier New", Courier, Monaco, monospace;
  line-height: 20px;
  background: url(//blog-imgs-66-origin.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: #e7dfb5;
  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;
}
.entry-content > dl dd, .entry-more > dl dd{
  background-color: #f3efda;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 10px;
  margin: 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 li, .entry-content ol li{
  margin: 0 0 0 1.5em;
}
.entry-content ul ul, .entry-content ol ul{
  list-style-type: circle;
}
/* ----- Table
-------------------------------------------------- */
.entry-content > table, .entry-more > table{
  margin: 0 0 20px 0;
}
/* ----- Forms
-------------------------------------------------- */
input, textarea, select, button{
  color: #333;
  font: 14px/1 "ＭＳ Ｐゴシック", "MS PGothic", san-seri;
  background-color: #fff;
  border: 1px solid #e7dfb5;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 8px;
}
input:focus, textarea:focus{
  background-color: #fff;
  border: 1px solid #9999ff;
  -webkit-box-shadow: 0 0 5px #9999ff;
  -moz-box-shadow: 0 0 5px #9999ff;
  box-shadow: 0 0 5px #9999ff;
}
input:focus:required, textarea:focus:required{
  border: 1px solid #ff6666;
  -webkit-box-shadow: 0 0 5px #ff9999;
  -moz-box-shadow: 0 0 5px #ff9999;
  box-shadow: 0 0 5px #ff9999;
}
#name, #title, #mail, #url{
  width: 60%;
}
#comment{
  width: 80%;
}
#pass{
  width: 30%;
}
#trackback{
  width: 60%;
}
input[type=submit], input[type=reset], input[type=button], button{
  color: #fff;
  font-family: "Abel", "メイリオ", Meiryo, san-seri;
  text-shadow: 1px 1px 0 #1f9971;
  text-transform: uppercase;
  background-color: #8fccb8;
  border: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  cursor: pointer;
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
  padding: 8px 10px;
}
input[type="submit"]:hover, input[type=reset]:hover, input[type=button]:hover, button:hover{
  background-color: #1f9971;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
#send-btn, #delete-btn{
  width: 30%;
}
input[type=checkbox], input[type=radio]{
  background: none;
  background-color: transparent;
  border: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
/* ----- Inline
-------------------------------------------------- */
br{
  letter-spacing: normal;
}
em{
  color: #cc3333;
}
strong{
  color: #cc3333;
  font-weight: bold;
}
ins{
  text-decoration: underline;
}
del{
  color: #999;
  text-decoration: line-through;
}
q{
  background-color: #fff;
}
q:before{
  content: "\201C";
}
q:after{
  content: "\201D";
}
cite{
  font-style: italic;
}
/* ----- Layouts
-------------------------------------------------- */
/* ----- Wrapper ----- */
#wrapper{
  background: url(//blog-imgs-79-origin.fc2.com/d/i/t/dithis/wrapper27.gif) repeat-x center top;
}
/* ----- Header ----- */
#header{
  width: 1000px;
  height: 150px;
  position: relative;
  margin: 0 auto 70px auto;
}
#blogname{
  width: 50%;
  float: left;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#blogname p{
  color: #ccc;
  font-size: 12px;
  line-height: 18px;
}
#menu{
  font-family: "Abel", "メイリオ", Meiryo, san-seri;
  text-align: center;
  text-transform: uppercase;
  position: absolute;
  top: 105px;
  right: 0;
}
#menu ul{
  float: right;
}
#menu ul li{
  float: left;
  position: relative;
}
#menu ul li a{
  width: 110px;
  height: 45px;
  color: #fff;
  line-height: 45px;
  text-shadow: 1px 1px 0 #1f9971;
  background: url(//blog-imgs-79-origin.fc2.com/d/i/t/dithis/menu27_green.png) no-repeat center top;
  display: block;
  padding: 5px 0 0 0;
  margin: 0 0 0 10px;
}
#menu ul li.home a{
  text-shadow: 1px 1px 0 #991f1f;
  background: url(//blog-imgs-79-origin.fc2.com/d/i/t/dithis/menu27_red.png) no-repeat center top;
  display: block;
}
#social{
  position: absolute;
  top: 20px;
  right: 0;
}
#social i{
  font-size: 14px;
}
#social ul{
  float: right;
}
#social ul li{
  float: left;
  margin: 0  5px;
}
#social a{
  color: #fff;
  text-shadow: 1px 1px 0 #000;
}
#social a:hover{
  color: #999;
}
/* ----- Container ----- */
#container{
  width: 1000px;
  margin: 0 auto;
}
/* ----- Primary-column ----- */
#primary-column{
  width: 700px;
  float: left;
  margin: 0 -250px 0 0;
}
#inner{
}
.section{
  background-color: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 8px 6px -8px #b5af89;
  -moz-box-shadow: 0 8px 6px -8px #b5af89;
  box-shadow: 0 8px 6px -8px #b5af89;
  z-index: 1;
  position: relative;
  padding: 30px;
  margin: 0 0 50px 0;
}
.section:before{
  border: 1px solid #e7dfb5;
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 5px;
}
.entry-title{
}
.entry-meta{
  font-size: 12px;
  margin: -5px 0 20px 0;
}
.entry-meta i{
  color: #333;
  font-size: 14px;
}
.entry-meta ul{
}
.entry-meta ul li{
  float: left;
  margin: 0 10px 0 0;
}
.entry-meta ul li:last-child{
  border: none;
}
.entry-content{
  margin: 0 0 20px 0;
}
.extend a{
  color: #fff;
  line-height: 30px;
  font-family: "Abel", "メイリオ", Meiryo, san-seri;
  text-align: right;
  text-transform: uppercase;
  text-shadow: 1px 1px 0 #900;
  background-color: #c66;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  display: inline-block;
  padding: 0 10px;
}
.extend a:hover{
  background-color: #900;
}
.entry-more{
}
dl.relate_dl{
  background: none;
  background-color: transparent;
  border: 1px solid #e7dfb5;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 20px;
  margin: 20px 0 0 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;
}
.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: "";
}
.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 dd{
  margin: 0 0 10px 0;
}
.date{
  font-size: 12px;
}
.date ul li{
  float: left;
  border-right: 1px solid #e7dfb5;
  padding: 0 5px 0 0;
  margin: 0 5px 0 0;
}
.date ul li:last-child{
  border: none;
}
.cm-title, .tb-title, .list-title, .search-title{
  font-weight: bold;
}
.cm-entry p, .tb-entry p, .list-entry p, .search-entry p{
  margin: 10px 0;
}
.cm-entry, .tb-entry, .list-entry, .search-entry{
  border-bottom: 1px solid #e7dfb5;
  position: relative;
  padding: 0 0 10px 0;
  margin: 0 0 10px 0;
}
.edit a{
  color: #fff;
  line-height: 30px;
  font-family: "Abel", "メイリオ", Meiryo, san-seri;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 1px 1px 0 #900;
  background-color: #c66;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 10px;
}
.edit a:hover{
  background-color: #ccc;
  text-shadow: 1px 1px 0 #666;
}
.tb-form{
  margin: 0 0 20px 0;
}
.category a{
  color: #fff;
  line-height: 30px;
  font-family: "Abel", "メイリオ", Meiryo, san-seri;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 1px 1px 0 #900;
  background-color: #c66;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 10px;
}
.category a:hover{
  background-color: #ccc;
  text-shadow: 1px 1px 0 #666;
}
.pn-entry, .pn-page{
  font-size: 12px;
  margin: 0 0 50px 0;
}
.pn-entry ul li{
  width: 50%;
}
.nextentry{
  float: left;
}
.preventry{
  text-align: right;
  float: right;
}
.pn-entry a {
  color: #fff;
  line-height: 30px;
  text-shadow: 1px 1px 0 #cfbf6b;
  text-overflow: ellipsis;
  white-space: nowrap;
  background-color: #e7dfb5;
  display: block;
  overflow: hidden;
  padding: 0 10px;
}
.pn-entry li + li a{
  border-left: 1px #f3efda solid;
}
.pn-entry a:hover{
  background-color: #cfbf6b;
}
.pn-page{
  font-family: "Abel", "メイリオ", Meiryo, san-seri;
}
.pn-page ul li{
  float: left;
  margin: 0 5px 0 0;
}
.pn-page span{
  background-color: #e7dfb5;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  display: inline-block;
  padding: 10px;
}
.pn-page a{
  color: #fff;
  text-shadow: 1px 1px 0 #000;
  background-color: #475166;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 8px 5px -8px #b5af89;
  -moz-box-shadow: 0 8px 5px -8px #b5af89;
  box-shadow: 0 8px 5px -8px #b5af89;
  display: inline-block;
  padding: 10px;
}
.pn-page a:hover{
  background-color: #000;
}
.pn-page ul li a:hover{
  background-color: #000;
}
.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{
  font-weight: normal;
  background-color: transparent;
  background: none;
  border: none;
  padding: 0;
}
.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: #c66;
}
.calender th#sat{
  color: #66c;
}
.calender td{
  width: 28px;
  line-height: 28px;
  text-align: center;
}
/* ----- Footer ----- */
#footer{
  color: #fff;
  font-size: 12px;
  background: url(//blog-imgs-79-origin.fc2.com/d/i/t/dithis/footer27.gif) repeat-x center top;
  clear: both;
  padding: 40px 0 20px 0;
}
#totop{
  font-size: 30px;
  line-height: 50px;
  text-align: center;
  text-shadow: 1px 1px 0 #000;
  z-index: 99;
  position: fixed;
  right: 100px;
  bottom: 50px;
}
#totop a{
  width: 50px;
  color: #fff;
  background-color: #475166;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: block;
}
#totop a:hover{
  background-color: #000;
}
#totop span{
  display: none;
}
#rights{
  text-align: center;
}
/* ----- Misc. ----- */
.emoji{
  vertical-align: middle;
}
.frame{
  border: 1px solid #ccc;
}
.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 #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;
}
.ad-bottom {
text-align : center;
margin-top : 20px;
margin-bottm : 20px;
}