@charset "UTF-8";

/* 
 * 21_colors v1.0.3
 *
 * 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: 105%;
  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: #666;                               /* フォントの色 */
  font-size: 14px;                           /* フォントサイズ */
  line-height: 1.5;                          /* フォントの行間 */
  font-family: "メイリオ", Meiryo, san-seri; /* フォントの種類 */
  background-color: #f2f2f2;                 /* 背景色 */
} 
/*----- 全体的なリンクの設定 -----*/
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: #C71585;                           /* 未訪問のリンク色 */
}
a:visited{
  color: #6A5ACD;                           /* 訪問済みのリンク色 */
}
a:hover, a:focus{
  color: #999;                              /* マウスカーソルを乗せたときのリンク色 */
}
a:active{
   color: #002233;                           /* 選択中のリンク色 */
}
/* ----- トップページメインコンテナの設定 ----- */
#grid{
  width: 90%;                                /* メインコンテナの横幅 */
  max-width: 1200px;                         /* メインコンテナの横幅の最大値 */
}
/* ----- 個別ページメインコンテナの設定 ----- */
#container{
  width: 80%;                                /* メインコンテナの横幅 */
  max-width: 1000px;                         /* メインコンテナの横幅の最大値 */
}
/*----- ブログタイトルの設定 -----*/
h1{
  color: #fff;                               /* フォントの色 */
  font-size: 30px;                           /* フォントサイズ */
  font-family: "Oleo Script", "メイリオ", Meiryo, cursive; /* フォントの種類 */
  font-weight: bold;                         /* フォントの太さ */
}
/*----- ブログタイトルのリンクの設定 -----*/
h1 a:link{
  color: #fff;                               /* 未訪問のリンク色 */
}
h1 a:visited{
  color: #fff;                               /* 訪問済みのリンク色 */
}
h1 a:hover, h1 a:focus{
  color: #999;                               /* マウスカーソルを乗せたときのリンク色 */
}
h1 a:active{
  color: #fff;                               /* 選択中のリンク色 */
}
/*----- 投稿記事タイトルの設定（トップページ） -----*/
.section1 h2{
  color: #002233;                            /* フォントの色 */
  font-size: 16px;                           /* フォントサイズ */
  font-family: "Oleo Script", "メイリオ", Meiryo, cursive; /* フォントの種類 */
  font-weight: bold;                         /* フォントの太さ */
}
/*----- 投稿記事タイトルの設定（個別ページ） -----*/
.section2 h2{
  color: #002233;                            /* フォントの色 */
  font-size: 20px;                           /* フォントサイズ */
  font-family: "Oleo Script", "メイリオ", Meiryo, cursive; /* フォントの種類 */
  font-weight: bold;                         /* フォントの太さ */
}
/*----- 投稿記事タイトルのリンクの設定 -----*/
h2 a:link{
                                               /* 未訪問のリンク色 */
}
h2 a:visited{
                                               /* 訪問済みのリンク色 */
}
h2 a:hover, h2 a:focus{
                                               /* マウスカーソルを乗せたときのリンク色 */
}
h2 a:active{
                                               /* 選択中のリンク色 */
}
/* ----- サイドバーの設定 ----- */
#secondary-column{
  font-size: 12px;                           /* フォントサイズ */
}
/*----- サイドバータイトルの設定 -----*/
.sidebar h3{
  color: #333;                               /* フォントの色 */
  font-size: 16px;                           /* フォントサイズ */
  font-family: "Oleo Script", "メイリオ", Meiryo, cursive; /* フォントの種類 */
  font-weight: normal;                       /* フォントの太さ */
}
/* ----- 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{
  margin: 0 0 10px 0;
}
h2{
  border-bottom: 1px solid #e5e5e5;
  padding: 0 0 5px 0;
  margin: 0 0 10px 0;
}
h3{
  font-weight: bold;
  position: relative;
  padding: 5px 1em;
  margin: 0 0 10px 0;
}
h3:before{
  width: 10px;
  height: 1px;
  background-color: #333;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  margin: -1px 0 0 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: #fff 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: #e5a82e;
  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: #333;
  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{
  background-color: #f2f2f2;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 10px;
  margin: 0 0 0 1em;
}
.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 1em;
}
/* ----- 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 #ccc;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -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: #002233;
  border: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transform: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
  padding: 8px;
}
#send-btn, #delete-btn{
  width: 30%;
}
input[type="submit"]:hover, input[type=reset]:hover, input[type=button]:hover, button:hover{
  background-color: #999;
}
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{
  background-color: #fff;
}
q:before{
  content: "\201C";
}
q:after{
  content: "\201D";
}
cite{
  font-style: italic;
}
/* ----- Layouts
-------------------------------------------------- */
/* ----- Wrapper ----- */
#wrapper{
}
/* ----- Header ----- */
#header{
  height: 200px;
  background: #002233 url(https://blog-imgs-72.fc2.com/d/i/t/dithis/color_line21.gif) repeat-x center bottom;
  -webkit-box-shadow: 0 0 10px 0 #666;
  -moz-box-shadow: 0 0 10px 0 #666;
  box-shadow: 0 0 10px 0 #666;
  margin: 0 0 50px 0;
}
#blogname{
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  position: relative;
  top: 50%;
  padding: 0 50px;
}
#blogname p{
  color: #ccc;
  font-size: 12px;
}
#menu{
  position: absolute;
  top: 20px;
  right: 50px;
}
#menu i{
  font-size: 14px;
  line-height: 36px;
  text-shadow: -1px -1px 0 rgba(255, 255, 255, 0.5);
}
#menu ul{
  float: right;
}
#menu ul li{
  float: left;
  margin: 3px;
}
#menu a{
  width: 36px;
  height: 36px;
  color: #333;
  line-height: 36px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 5px #000;
  -moz-box-shadow: 0 0 5px #000;
  box-shadow: 0 0 5px #000;
  display: inline-block;
}
#menu a:hover{
  background-color: #fff;
}
/* ----- Container ----- */
#container{
  margin: 0 auto;
}
/* ----- Primary-column ----- */
#primary-column{
  width: 100%;
  float: left;
  margin: 0 -230px 0 0;
}
#inner{
  margin: 0 280px 0 0;
}
#grid{
  margin: 0 auto;
}
.grid-item{
  widht: -webkit-calc(33.333% - 20px);
  width: -moz-calc(33.333% - 20px);
  width: calc(33.333% - 20px);
  margin: 0 10px 20px 10px;
}
.section1{
  background-color: #fff;
  border: 1px solid #e5e5e5;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  position: relative;
}
.section1:after{
  width: 100%;
  height: 10px;
  background: url(https://blog-imgs-72.fc2.com/d/i/t/dithis/shadow21.png) no-repeat center top;
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
}
.section1:nth-child(6n+1){
  border-top: 5px solid #cc6666;
}
.section1:nth-child(6n+2){
  border-top: 5px solid #cccc66;
}
.section1:nth-child(6n+3){
  border-top: 5px solid #66cc66;
}
.section1:nth-child(6n+4){
  border-top: 5px solid #66cccc;
}
.section1:nth-child(6n+5){
  border-top: 5px solid #6666cc;
}
.section1:nth-child(6n+6){
  border-top: 5px solid #cc66cc;
}
.section2{
  background-color: #fff;
  border: 1px solid #e5e5e5;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  position: relative;
  padding: 20px;
  margin: 0 auto 50px auto;
}
.entry-thumb{
  width: 100%;
  background: url(https://blog-imgs-72.fc2.com/d/i/t/dithis/noimage21.gif) no-repeat center center;
  overflow: hidden;
  position: relative;
}
.entry-thumb:before{
  content: "";
  display: block;
  padding-top: 75%;
}
.entry-thumb > .topentry-image{
  position: absolute;
   top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.entry-inner{
  padding: 20px;
}
.entry-title{
  margin: 0 0 10px 0;
}
.entry-summary{
  margin: 0 0 10px 0;
}
.entry-date1{
  width: 80px;
  height: 80px;
  color: #fff;
  line-height: 1;
  font-family: "Oleo Script", cursive;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  z-index: 9999;
  position: absolute;
  top: -40px;
  left: 50%;
  padding: 12px 0 0 0;
  margin: 0 0 0 -40px;
}
.section1:nth-child(6n+1) .entry-date1{
  text-shadow: 1px 1px 0 #990000;
  background-color: #cc6666;
}
.section1:nth-child(6n+2) .entry-date1{
  text-shadow: 1px 1px 0 #999900;
  background-color: #cccc66;
}
.section1:nth-child(6n+3) .entry-date1{
  text-shadow: 1px 1px 0 #009900;
  background-color: #66cc66;
}
.section1:nth-child(6n+4) .entry-date1{
  text-shadow: 1px 1px 0 #009999;
  background-color: #66cccc;
}
.section1:nth-child(6n+5) .entry-date1{
  text-shadow: 1px 1px 0 #000099;
  background-color: #6666cc;
}
.section1:nth-child(6n+6) .entry-date1{
  text-shadow: 1px 1px 0 #990099;
  background-color: #cc66cc;
}
.day{
  font-size: 28px;
}
.month01:before{
  content: "Jan";
}
.month02:before{
  content: "Feb";
}
.month03:before{
  content: "Mar";
}
.month04:before{
  content: "Apr";
}
.month05:before{
  content: "May";
}
.month06:before{
  content: "Jun";
}
.month07:before{
  content: "Jul";
}
.month08:before{
  content: "Aug";
}
.month09:before{
  content: "Sep";
}
.month10:before{
  content: "Oct";
}
.month11:before{
  content: "Nov";
}
.month12:before{
  content: "Dec";
}
.extend a{
  color: #fff;
  line-height: 1;
  background-color: #002233;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  display: inline-block;
  padding: 10px;
  margin: 10px 0 0 0;
}
.extend a:hover{
  background-color: #999;
}
.entry-meta{
  font-size: 12px;
}
.entry-meta i{
  color: #002233;
  font-size: 14px;
}
.entry-meta ul{
  float: right;
}
.entry-meta ul li{
  float: left;
  margin: 0 0 0 10px;
}
.entry-content{
  margin: 20px 0;
}
.entry-more{
}
dl.relate_dl{
  background: none;
  background-color: transparent;
  border: none;
  border: 1px solid #e5e5e5;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  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;
}
.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;
}
.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;
}
.cm-title, .tb-title, .list-title, .seach-title{
  font-weight: bold;
}
.cm-entry, .tb-entry{
  border: 1px solid #e5e5e5;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 20px;
  margin: 0 0 20px 0;
}
.cm-title{
  padding: 10px;
}
.cm-entry:nth-child(6n+1) .cm-title{
  border-left: 3px solid #cc6666;
}
.cm-entry:nth-child(6n+2) .cm-title{
  border-left: 3px solid #cccc66;
}
.cm-entry:nth-child(6n+3) .cm-title{
  border-left: 3px solid #66cc66;
}
.cm-entry:nth-child(6n+4) .cm-title{
  border-left: 3px solid #66cccc;
}
.cm-entry:nth-child(6n+5) .cm-title{
  border-left: 3px solid #6666cc;
}
.cm-entry:nth-child(6n+6) .cm-title{
  border-left: 3px solid #cc66cc;
}
.cm-entry p, .tb-entry p, .list-entry p, .search-entry p{
  margin: 10px 0;
}
.list-entry, .search-entry{
  border-bottom: 1px dotted #e5e5e5;
  padding: 0 0 5px 0;
  margin: 0 0 10px 0;
}
.tb-form{
  margin: 0 0 20px 0;
}
.pn-entry{
  font-size: 12px;
  text-align: center;
   overflow: hidden;
   position: relative;
  margin: 0 0 50px 0;
}
.pn-entry ul{
  float: left;
  position: relative;
  left: 50%;
}
.pn-entry ul li{
  float: left;
  position: relative;
  left: -50%;
  margin: 3px;
}
.preventry{
  border-right: 1px solid #ccc;
  padding: 0 10px 0 0;
}
.home{
}
.nextentry{
  border-left: 1px solid #ccc;
  padding: 0 0 0 10px;
}
.pn-page{
  font-size: 14px;
  line-height: 36px;
  font-family: "Oleo Script", cursive;
  text-align: center;
   overflow: hidden;
   position: relative;
  margin: 30px 0 50px 0;
}
.pn-page ul{
  float: left;
  position: relative;
  left: 50%;
}
.pn-page li{
  float: left;
  position: relative;
  left: -50%;
  margin: 0 5px 5px 5px;
}
.pn-page span{
  width: 36px;
  background-color: #e5e5e5;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
}
.pn-page a{
  width: 36px;
  color: #fff;
  background-color: #002233;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
}
.pn-page a:hover{
  text-decoration: none;
  background-color: #999;
}
.prevpage{
  float: left;
}
.nextpage{
  float: right;
}
/* ----- Secondary-column ----- */
#secondary-column{
  width: 230px;
  float: right;
  margin: 0 0 50px 0;
}
.sidebar{
  margin: 0 0 20px 0;
}
.sidebar h3{
  padding: 0;
}
.sidebar h3:before{
  background-color: transparent;
}
.sidebar a{
  color: #666;
}
.sidebar ul{
  list-style-type: disc;
}
.sidebar ul li{
  margin: 0 0 0 1em;
}
.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;
  color: #002233;
  text-decoration: underline;
  display: block;
}
.plugin-tag a{
}
.plugin-search input[type=submit]{
  width: auto;
  padding: 8px;
}
/* ----- Footer ----- */
#footer{
  font-size: 12px;
  clear: both;
  padding: 0 0 20px 0;
}
#totop{
  font-size: 50px;
  line-height: 1;
  position: fixed;
  bottom: 30px;
  right: 50px;
}
#totop a{
  color: #333;
}
#totop a:hover{
  color: #ccc;
}
#totop span{
  display: none;
}
#rights{
  text-align: center;
}
/* ----- Misc. ----- */
img.emoji{
  box-shadow: none;
  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 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: 1024px){
#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%;
}
#grid{
  width: 100%;
}
}
@media screen and (max-width: 768px){
#menu{
  top: 10px;
  right: 10px;
}
#container{
  width: 80%;
}
#primary-column{
  width: 100%;
  float: none;
  margin: 0;
}
#inner{
  margin: 0;
}
.grid-item{
  widht: -webkit-calc(50% - 20px);
  width: -moz-calc(50% - 20px);
  width: calc(50% - 20px);  
}
dl.relate_dl{
  padding: 10px;
}
.cm-entry, .tb-entry{
  padding: 10px;
}
#secondary-column{
  width: 100%;
  float: none;
}
#totop{
  bottom: 10px;
  right: 10px;
}
}
@media screen and (max-width: 480px){
#blogname{
  padding: 0 10px;
}
#container{
  width: 100%;
  padding: 0 10px;
}
#grid{
  width: 100%;
  padding: 0 10px;
}
.grid-item{
  widht: -webkit-calc(100% - 20px);
  width: -moz-calc(100% - 20px);
  width: calc(100% - 20px);  
  margin: 0 0 20px 0; 
}
.section2{
  padding: 10px;
}
.entry-inner{
  padding: 10px;
}
#totop{
  bottom: 10px;
  right: 10px;
}
}