@charset "UTF-8";


/* ==========================================================================
	 Template css
========================================================================== */

/* Base elements
------------------------------------------------- */
body {
	font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic ProN","メイリオ","Meiryo","ＭＳ Ｐゴシック",sans-serif;
	color: #100000;
        font-size: 16px;
	line-height: 1.8em;
	background-color: #fff;
}

ul,
ol,
li,
dl,
dt,
dd {
	list-style: ;
}




/****************************************************************
*                            吹き出し                           *
****************************************************************/
:root {
 /* 左アイコン時の色指定 */
 --balloon-left-color: white; /*吹き出し色指定*/
 --balloon-left-border-color: black; /*吹き出し枠色指定*/
 --balloon-left-font-color: black; /*吹き出しフォント色指定*/
 
 /* 右アイコン時の色指定 */
 --balloon-right-color: white; /*吹き出し色指定*/
 --balloon-right-border-color: black; /*吹き出し枠色指定*/
 --balloon-right-font-color: black; /*吹き出しフォント色指定*/
 
 /* その他 */
 --icon-size: 90px; /*アイコンサイズ*/
 --balloon-size: 550px; /*吹き出しサイズ*/
}
 
.balloon{
 display:block;
 clear: both;
 overflow:hidden;
}
 
/* アイコン設定 */
/* 左アイコン */
.left-icon{
 display: inline-block;
 float: left;
 background-color: #ccc;
 background-position: center center;
 background-repeat: no-repeat;
 margin: 5px;
 width: var(--icon-size);
 height: var(--icon-size);
 border: 0px solid #ccc;
 background-size: contain;
}
 
/* 右アイコン */
.right-icon{
 display: inline-block;
 float: right;
 background-color: #ccc;
 background-position: center center;
 background-repeat: no-repeat;
 margin: 5px;
 width: var(--icon-size);
 height: var(--icon-size);
 border: 0px solid #ccc;
 background-size: contain;
}
 
/* 吹き出し設定 */
/* 左吹き出し */
.left-balloon{
 display: inline-block;
 float: left;
 position: relative;
 padding: 10px;
 background:  var(--balloon-left-color);
 border-style: solid;
 border-width: 1px;
 border-color:  var(--balloon-left-border-color);
 border-radius: 0 10px 10px 10px;
 color:  var(--balloon-left-font-color);
 max-width: var(--balloon-size);
 margin:20px 10px 0 15px
}
.left-balloon:before {
 content: "";
 position: absolute;
 top: -1px;
 left: -11px;
 border: 10px solid transparent;
 border-top-color: var(--balloon-left-border-color);
}
.left-balloon:after {
 content: "";
 position: absolute;
 top: 0px;
 left: -9px;
 border: 10px solid transparent;
 border-top-color: var(--balloon-left-color);
}
 
/* 左吹き出し */
.right-balloon{
 display: inline-block;
 float: right;
 position: relative;
 padding: 10px;
 background:  var(--balloon-right-color);
 border-style: solid;
 border-width: 1px;
 border-color:  var(--balloon-right-border-color);
 border-radius: 10px 0 10px 10px;
 color:  var(--balloon-right-font-color);
 max-width: var(--balloon-size);
 margin:20px 15px 0 10px
}
.right-balloon:before {
 content: "";
 position: absolute;
 top: -1px;
 right: -11px;
 border: 10px solid transparent;
 border-top-color: var(--balloon-right-border-color);
}
.right-balloon:after {
 content: "";
 position: absolute;
 top: 0px;
 right: -9px;
 border: 10px solid transparent;
 border-top-color: var(--balloon-right-color);
}
/****************************************************************
*                        吹き出し終わり                         *
****************************************************************/







/* Hyper text
------------------------------------------------- */
a {
	text-decoration: none;
}

a:link {
	color: black;
}

a:visited {
	color: black;
}

a:focus,
a:hover,
a:active {
	color: MidnightBlue;
	text-decoration: underline;
}



/* Header
------------------------------------------------------------ */

.blog_name a {
       font-family:'MS UI Gothic';
       color: black;
      
}



/* ページャ
------------------------------------------------------------ */
.page_navi {
	background-color: ;
	padding: 8px 4%;
	text-align: center;
}

.page_navi .pager_prev,
.page_navi .pager_next,
.page_navi .pager_home {
	background-color: #fff;
	border: 1px solid #bdbdbd;
	border-radius: 20px;
	color: #606060;
	display: inline-block;
	padding: 5px 10px;
	font-size: 14px;
	-webkit-transition: box-shadow 0.2s linear 0;
	transition: box-shadow 0.2s linear 0;
}

.page_navi .pager_prev:hover,
.page_navi .pager_next:hover,
.page_navi .pager_home:hover {
	background-color: #efefef\9;
	-webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 2px 0px;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 2px 0px;
}

.page_navi .pager_prev {
	float: left;
	padding-left: 15px;
}

.page_navi .pager_prev:hover {
	padding-left: 15px;
}

.page_navi .pager_next {
	float: right;
}

.page_navi .pager_home {}



/* Entry
------------------------------------------------------------ */
.topentry {
	border-bottom: 0px solid black;
}



.date {
	display: inline-block;
}

.entry_body {
	overflow: hidden;
        text-align: left;
}

.topentry_text .entry_more {
	line-height: 1.7em;
}

.entry_more_link {
	text-align: left;
        margin: -30px 0;
	padding-left: 15px;
        background-color:;
}

.entry_footer {
        padding: 0 20px 20px 0;
        text-align: right;
        background-color:;
}



/* Blockquote
------------------------------------------------------------ */
blockquote {
	border-left: 4px solid #dadada;
	margin: 8px 0 8px 24px;
	padding: 4px 7px;
}

.entry_body blockquote  p{
	margin: 0;
}



/* コメント
------------------------------------------------------------ */
.sub_contents {
	margin: 56px 0;
}

.sub_contents_area_title {
        color: black;
	font-size: 16px;
	margin: 0 0 20px;
}



/* コメントフォーム
------------------------------------------------------------ */
#comment_form {
	margin: 0 0 40px;
}

.comment_form_left,
.comment_form_right {
	margin: 0;
	width: 335px;
	float: left;
}

.comment_form_left {
	margin-right: 16px;
}

.form_title {
	font-size: 16px;
}

.form_input {
	margin: 0 0 8px;
}

.comment_form_left .input_text{
	width: 303px;
}

.comment_form_right .form_textarea {
	margin-top: -4px;
}

.comment_form_right textarea {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 16px;
	padding: 2px 10px;
	width: 100%;
	height: 272px;
}


.comment_form textarea {
	padding: 2px 10px;
	width: 667px;
	border: 1px solid #dadada;
	height: 185px;
}

.comment_form .comment_tool_wrap {
	margin: 0;
}

.comment_area .form_btn {
	clear: both;
	text-align: right;
	margin: 4px 8px;
}

.comment_area .form_btn input {
	color: #000;
	background-color: #fff;
	border: 1px solid #bdbdbd;
	border-radius: 14px;
	padding: 4px 16px;
	-webkit-transition: box-shadow 0.2s linear 0;
	transition: box-shadow 0.2s linear 0;
	  margin-left: 16px;
}

.comment_area .form_btn input:hover {
	-webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 2px 0px;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 2px 0px;
	background-color: #efefef\9;
}



/* コメント一覧
------------------------------------------------------------ */
.sub_contents_title {
	margin: 0 0 8px;
	font-size: 16px;
}

.sub_contents_body {
	font-size: 100%;
}

.sub_contents_footer {
	padding: 0 0 2px;
	margin: 8px 0 24px;
	text-align: right;
	border-bottom: 1px solid #dadada;
}

.sub_contents_footer a {
	color: #5397db;
}

.sub_contents_footer a:hover {
	text-decoration: underline;
	color: #80acd9;
}



/* ==========================================================================
	 Sidemenu (Plugin)
========================================================================== */

.plg_title {
	padding-top: 0px;
        color: black;
}

.plg_body {
	word-wrap: break-word;
        padding-bottom: 20px;
}

.plg_area ul {
	margin: 0;
	padding: 0;
}

.plg_area li {
	margin: 0 0 0px 0;
	padding: 0;
}



/* Footer
------------------------------------------------------------ */
#l-footer {
	border-top: 1px solid black;
	font-size: 90%;
	padding: 18px 15px;
	clear: both;
}

.footer_inner {
	text-align: center;
        width: 95%;
	margin: 0px auto;
}

.powered,
.ad,
.copyright {
	margin: 0;
}


/* Sponsor
------------------------------------------------------------ */
#fc2_text_ad .fc2_infeed1,
.entry_body .fc2_infeed1 {
	margin: 24px 8px;
}

#fc2_text_ad a,
.entry_body .fc2_infeed1 a {
	color: #7b7b7b;
	font-size: 14px;
}

#fc2_text_ad a:hover,
.entry_body .fc2_infeed1 a:hover {
	color: #a1a1a1;
	text-decoration: underline;
}



/* ==========================================================================
	 responsive     PC設定　　２カラム
========================================================================== */

@media screen and (min-width:900px) {


#l-header {
        position: relative;
        width:100%;




}

#l-header-inner {
        width: 100％;
        margin: 170px 0px 0;
        min-height:50px;
	padding: 0;
	overflow: hidden;
	background-color:;#fff


}






.l-header-inner2 {
        position: absolute;
        width: 100%; 
        top: 20%;
        left:0;
}



.all-box {       
        width:900px;
        margin: 0 auto;
}




.blog_name {
        width:95%;
	margin-top: -110px;
        padding: 0px 0 0px 15px;
	font-size: 30px;
	line-height: 1.7em;
        color: #000;
	text-align: center;        
	background-color: ;
}

.blog_name a {
        color: #000;
}

.blog_introduction {
        width:95%;
	margin-top: 0px;
        padding: 0px 0 10px 20px;
	font-size: 16px;
        color: #000;
	text-align: center;        
	background-color: ;
}


.menu {
       width:100%;
       height: 40px;   
       margin: -10px 0 0 0;
       padding-top: 17px;
       background-color: #f9a123;
}


.menu-inner {
        width:900px;
        margin: 0 auto;   
} 

.menu ul {
       margin:0;
       padding:0;
}

.menu li {
       float:left;
       width: auto;
       margin: 0 10px 0px 20px;
       text-align: center;        
       list-style: none;
}

.menu li a {
       color: white;
}

#l-container {
        width:100%;
	clear: both;
	overflow: hidden;
}


#l-main {
	float: left;
	width: 66%;
        padding: 0px 2%;		      
        background-color: white; 
}

.tittle {
       font-size: 18px;
}        

.topentry {
        border-top: 1px solid black;
}


.topentry-img {
        width: 100%;
        text-align: left;
}


.item:nth-child(n+1) {
        width: 100%;
        margin: 0;
        padding-bottom: 20px;
        border-top: 1px solid black;
}

.item:nth-child(n+1) img {
        width: 40%;
        height: 35%;
}


.item > span {
       display: block;
       font-size: 14px;
       color: Blue;
}


.topentry_title {
	font-size: 18px;
        margin: 0;
}

.plugin {
	float: right;
	width: 26%;
	padding: 0px 1%;
}

.navi  {
        width:100%;
	background-color: red;
        margin-bottom: 30px;
}

.navi li {
       float:left;
       width: auto;
       margin: 0 20px 0 0;
       text-align: left;        
       list-style: none;
}

.plugin_third {
	float: none;
	width: 50%;
        margin: 0 auto;
	padding: 20px 20px;
        background-color: ;
}

.plg_title {
        padding: 10px 0px 0;
	font-size:18px;
	text-align: center;        
}

}



/* ==========================================================================
	 responsive     i-pad縦型およびスマホ横型設定　　２カラム
========================================================================== */

@media screen and (min-width: 500px) and (max-width: 959px) {

body {
        font-size: 15px;
	line-height: 1.7em;
}

a {
	text-decoration: none;
}

a:link {
	color: blue;
}

a:visited {
	color: blue;
}

.all-box {       
        width:90%;
        margin: 0 auto;
}

#l-header {
        width:100%;
	padding: 0;
	overflow: hidden;
        border-bottom: 2px solid black;
}

.header-inner {
	text-align: center;        
}

.blog_name {
	padding-top:-20px;
	font-size: 24px;
	text-align: center;        
        background-color:;
}

.blog_introduction {
        padding: 0px 0 0 0;
	font-size: 16px;
        color: #000;
	text-align: center;        
}

.menu {
      display: none;
}

#l-container {
        width:100%;
	clear: both;
	overflow: hidden;
}


#l-main {
	float: left;
	width: 60%;
        padding: 0 1%;		
        background-color:;       
}

.tittle {
       font-size: 15px;
} 

.topentry-img {
        width: 100%;
        text-align: left;
        background-color: rgba(); 
}


.item:nth-child(n+1) {
        width: 100%;
        margin: 0;
        padding-bottom: 20px;
        border-bottom: 2px solid black;
}

.item:nth-child(n+1) img {
        width: 50%;
        height: 50%;
}

.item > span {
       display: block;
       font-size: 14px;
       color: Blue;
}

.topentry_title {
        margin: 0;
	font-size: 17px;
}

.plugin {
	float: right;
	width: 30%;
	padding: 10px 0;
}


.plugin_third {
	float: none;
	width: 100%;
	padding: 16px 0;
}

.plg_title {
	font-size: 17px;
}


}



/* ==========================================================================
	 responsive     スマホ縦型設定　　１カラム
========================================================================== */

@media screen and (max-width: 499px){

body {
        font-size: 14px;
}

a {
	text-decoration: none;
}

a:link {
	color: blue;
}

a:visited {
	color: blue;
}

#l-header {
        width:100%;
	padding: 0;
	overflow: hidden;
        border-bottom: 2px solid black;
}

.header-inner {
	width: 100%;
	text-align: center;        
}

.blog_name {
	margin-top: 20px;
	font-size: 19px;
	text-align: center;        
}

.blog_introduction {
        padding:2% 0 0px 0;
	font-size: 14px;
	text-align: center;        
}

.menu {
      display: none;
}

.all-box {
        width:95%;
        margin: 0 auto;
}

#l-container {
        width:100%;
}

#l-main {
	float: none;
	width: 97%;
        padding: 0 2% 0 1%;		
        background-color:;       
}

.tittle {
       font-size: 15px;
} 

.topentry-img {
        width: 100%;
        text-align: left;
        background-color: rgba(); 
}


.item:nth-child(n+1) {
        width: 100%;
        margin: 0;
        padding-bottom: 20px;
        border-top: 2px solid black;
}

.item:nth-child(n+1) img {
        width: 100%;
        height: 100%;
}


.item > span {
       display: block;
       font-size: 14px;
       color: Blue;
}

.topentry_title {
	font-size: 16px;
}

.plugin {
	float: none;
	width: 100%;
	padding: 0;
        border-top: 2px solid black;
}


.plugin_third {
	float: none;
	width: 100%;
	padding: 0;
}

.plg_title {
	font-size: 16px;
}

}