<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/*
Theme Name: smart088
Theme URI: http://theme.o2gp.com/
Description: smart088
Version: 1.0
Author: o2 Group
Author URI: http://theme.o2gp.com/

	o2 Group v1.0
	 http://theme.o2gp.com/

	This theme was designed and built by o2 Group,
	whose blog you will find at http://theme.o2gp.com/

	The CSS, XHTML and design is released under GPL:
	http://www.opensource.org/licenses/gpl-license.php
*/

/* =Reset default browser CSS.
Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
-------------------------------------------------------------- */


/*--------------------------
共通
--------------------------*/

.dn{
	display:none;
}

/*--------------------------
記事レイアウト
--------------------------*/

.shop_banner{
	margin-bottom:1em;
	text-align:center;
}


/*--------------------------
回り込み解除
--------------------------*/

.clearfix::after {
	content: "";
	display: block;
	clear: both;
}


/*--------------------------
フローティングバナー
--------------------------*/

/* バナーのスタイル */
#floatingBanner {
	position: fixed;
	right: 10px;
	bottom: 135px;
	width: 200px;
	padding:0px;
	visibility: hidden;
	transition: 0.5s;
	opacity: 0;
	line-height:1;
	z-index: 1000; /* z-indexを追加 */
}

#floatingBanner img{
	max-width:100%;
	width:100%;
}

/* 画面幅が768px以下の場合（タブレットやスマホ） */
@media only screen and (max-width: 768px) {
	#floatingBanner {
		width: 150px; /* バナー自体の幅も調整 */
	}
	#floatingBanner img {
		width: 100%; /* 画像の幅もバナーに合わせて変更 */
	}
}


/* 閉じるボタンのスタイル */
#closeBtn {
	position: absolute;
	cursor: pointer;
	top: -18px;
	right:-3px;
	z-index: 1010;
	border: 0;
	width:40px;
	height:40px;
}

#floatingBanner.is-active {
	opacity: 1;
	visibility: visible;
}


/*--------------------------
目次
--------------------------*/
#toc_container{
	box-sizing:border-box;
}
/*--------------------------
ボタン
--------------------------*/

.button {
  display: block;
  position: relative;
  background:#FF8C00;
  max-width: 24rem;
  width:80%;
  padding: 1rem;
  border-radius: .6rem;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: .1rem;
  transition: .5s;
  font-size:1.2rem;
  margin:1rem auto;
}

.btwaku{
text-align:center;	
}

a.button{
	text-decoration:none!important;
}

a.button:hover{
	color:#fff;
}

.button:before {
  content: "";
  position: absolute;
  top: 46%;
  right: 12px;
  width: 10px;
  height: 2px;
  background: #fff;
  transform: rotate(45deg);
}

.button:after {
  content: "";
  position: absolute;
  top: 54%;
  right: 12px;
  width: 10px;
  height: 2px;
  background: #fff;
  transform: rotate(-45deg);
}


/*--------------------------
ロード
--------------------------*/

.loading {
	width: 100vw;
	height: 100vh;
	background: rgba(255,255,255,1.0);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 20000;
}

.loading img {
	max-width:90vw;
	position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}


/*--------------------------------------------------------
リンクカード
------------------------------------------------------*/

.blogcard {
  line-height: 1;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  word-wrap: break-word;
  margin: 40px;
  box-shadow: 0 0 10px 6px rgba(0,0,0,.025);
  display:flex;
}

.blogcard.nodata p{
padding:5px;
}

.blogcard.ex {
	background-color:#fcfcfc;
}

.blogcard a {
  text-decoration: none;
  opacity: 1;
  transition: all 0.2s ease;
}
.blogcard a:hover {
  opacity: 0.6;
}
.blogcard_thumbnail {
  padding: 20px;
  box-sizing:border-box;
  width:210px;
}

.blogcard_content{
	width:calc(100% - 210px);
}

.blogcard_title {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.4;
  padding: 17px 20px 10px;  
}
.blogcard_excerpt {
  font-size: 0.85em;
  line-height: 1.6;
  padding: 0 17px 15px 20px;
}
.blogcard_link {
  font-size:0.65em;
  padding:0 17px 15px 20px;
  text-align: left;
  line-height:1.2;
}

.blogcard_koe {
  padding:0 17px 15px 20px;
  text-align: left;
  line-height:1.2;
}

.blogcard_koe b{
	display:block;
	padding-bottom:10px;
}
.post .blogcard_koe p{
	font-size: 0.85em;
	line-height: 1.6;
}


.blogcard_link .favicon {
  margin-bottom: -4px;
}
.blogcard_link .icon-external-link-alt::before {
  font-size:0.75em;
}

#content .blogcard_link a{
	font-weight:normal;
	padding:5px;
}

.clearfix:after{
    content : '';
    display : block;
    clear : both;
    height:0; 
}


.btn,
a.btn,
button.btn {
	font-weight: 700!important;
	position: relative;
	display: inline-block;
	padding: 1rem 4rem;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	text-align: center;
	vertical-align: middle;
	text-decoration: none!important;
	letter-spacing: 0.1em;
	color: #212529;
	border-radius: 0.3rem;
	font-size:1rem;
	width:80%;
	margin: 10px auto;
	box-sizing:border-box;

}

.btn{
	margin-bottom:15px;
}


.btn--orange,
a.btn--orange {
  color: #fff;
  background-color: #eb6100;
}
.btn--orange:hover,
a.btn--orange:hover {
  color: #fff;
  background: #f56500;
}

.btn--red,
a.btn--red{
	color: #fff;
	background-color: #ff0000;
}

.btn--red:hover,
a.btn--red:hover {
	color: #fff;
	background: #ff0000;
}



/*--------------------------------------------------------
割引き情報
------------------------------------------------------*/
.hcf{
display:none;
}

/*--------------------------------------------------------
文責
------------------------------------------------------*/

.ab_waku{
margin:2rem 0;
}


/*--------------------------------------------------------
アイテムリンク
------------------------------------------------------*/

/*
#content a{
	font-weight:bold;
}
*/


/*
.post a.item-txt,.wp-caption-text a{
color: #ffffff !important;
    display:block;
    text-align: center;
    border-radius:5px;
    padding: 10px 20px;
    background: #2490D0;
    cursor: pointer;
    text-decoration:none!important;
    font-size:0.9rem;
margin-bottom:15px;
    
}

a.y-link{
color: #ff0000 !important;
    display:block;
    text-align: center;
    border-radius:5px;
    padding: 10px 20px;
    background:#f5f5f5;
    cursor: pointer;
    text-decoration:none!important;
    font-size:0.9rem;
margin-bottom:15px;
    
}
*/


/*
.post a.item-txt,.wp-caption-text a{
position: relative;
}
*/

/*
.wp-caption-text a:after,.post .item-txt:after{
content:'';
position: absolute;
width:50px;
height:50px;
bottom:-14px;
right:-17px;
background:url(./images/p3.png);
background-size:50px 50px;
}
*/


.wp-caption{
width:100%!important;
max-width:inherit!important;
}

a.item-img{
display:block;
}




.cam{
margin-bottom:2rem;
}
.b-m{

margin-top:70px;

}

/*--------------------------------------------------------
表示非表示
------------------------------------------------------*/
.pc-p{
display:none;
}

.sp-p{
display:block;
}

/*--------------------------------------------------------
追従ヘッダー
------------------------------------------------------*/

.sp-header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    top:0;
}

.sp-header .head-logo {
    float: left;
    height:50px;
    box-sizing:border-box;
    padding: 10px 0 10px 10px;
    box-sizing:border-box;
}
.sp-header .head-logo img{
height:100%;
}

.sp-header .head-right {
    float: right;
    width : calc(100% - 150px) ;
}

.sp-header .head-tgr {
    float: right;
/*    width:125px;*/
    height:50px;
}

.sp-navi,.sp-tel{
float:right;

}

.sp-tel{
height: 50px;
padding: 2px;
box-sizing: border-box;
}

.sp-tel img{
height:100%;
}

.head-top-block{
background-color:#fff;
}

/*--------------------------------------------------------
スマホ用メニューボタン
------------------------------------------------------*/
.navOpen {
    width : 50px;
    height: 50px;
    background-size: 50px;
    cursor: pointer;
    background:url("./images/menu.png") no-repeat 0 0;
}


/*--------------------------------------------------------
開くメニュー
------------------------------------------------------*/

header .menu-sp {
clear: both;
position: relative;
}

header .menu-sp ul {
display:none;
width: 100%;
position: absolute;
top: 0px;
background-color: rgba(26,19,17, 0.9) ;
border-bottom: 1px #ccc solid;
}
header .menu-sp li {
line-height: 1.6;
border-top: 1px #ccc solid;
}

header .menu-sp a {
font-size:0.8rem;
color: #fff;
padding-left: 5%;
padding-right: 5%;
padding-top: 10px;
padding-bottom: 10px;
display: block;
}



/*--------------------------------------------------------
追従メニュー
------------------------------------------------------*/
#footFixedMenu ul{
margin-left:0;
}

#footFixedMenu li{
margin-bottom:0;
}

.smtContent{
display:none;
}
#footFixedMenu,#footFixedMenu * {
    box-sizing: border-box;
}

#footFixedMenu {
/*    background: #e4e4e4 none repeat scroll 0 0; */
    right:10px;
    top:15px;
    font-size: 0;
    padding:0;
    position: fixed;
    width: 90px;
    z-index: 100;
}

#footFixedMenu img{
max-width:100%;
}

#footFixedMenu li {
/*    border: 1px solid #ccc;*/
    display: inline-block;
    
    margin-right: 2%;
    text-align: center;
    width: 100%;
}

#footFixedMenu li,#footFixedMenu li a {
    border-radius: 3px;
}

#footFixedMenu li a {
/*
font-weight:bold;
font-size: 0.8rem;
color:#fff;
display: block;
padding: 0.2rem;
text-decoration: none;
*/

/* background: rgba(0, 0, 0, 0) linear-gradient(to bottom, rgba(255, 255, 255, 1) 5%, rgba(216, 216, 216, 1) 100%) repeat scroll 0 0; */

/*background-color:#FFF;*/

/*
background-color:#B60913;
border: 1px solid rgba(255, 255, 255, 0.5);
*/

}

#footFixedMenu li:last-child {
    margin-right: 0;
}


#footFixedMenu li {
/*
    box-shadow: 0 0 1px 1px rgba(124, 103, 76, 0.15);
*/
}

/* ランキング */
.w-rank img{
max-width:100%;
}

.shop_b{
	border:2px solid #ccc;
	margin:1em 0;
}


.w-rank{
margin:0 auto 2em auto;
max-width:690px;
}

.post a{
text-decoration: underline;
}

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;margin: 0;outline: 0;padding: 0;vertical-align: baseline;}
:focus {outline: 0;}

ol, ul {list-style: none;}
table {border-collapse: separate;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;}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;}

body{
font: 12px/1.5 "Lucida Sans Unicode", "Lucida Grande","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","Meiryo","ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
color:#333;
-webkit-text-size-adjust: none;
}


/* カテゴリーページ右レイアウト
------------------------------------------------------------*/

.hubnet777{
margin-top: 10px;
}
.hubnet888{
font-size:14px;
margin-bottom:6px;
}

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

a:hover, a:active{
outline: none;
color:#0099FF;
}

a img:hover{opacity:.8;}


/**** Clearfix ****/
nav#mainNav ul:after, nav#mainNav .inner:after, .newsTitle:after, .post:after,.inner:after,ul.news:after{content:""; display: table;clear:both;}
nav#mainNav ul,.newsTitle, .post, nav#mainNav .inner,ul.news{zoom: 1;}


/* フォーム
------------------------------------------------------------*/
input[type="text"], textarea{
vertical-align:middle;
max-width:90%;
line-height:30px;
height:30px;
padding:1px 5px;
border:1px solid #d4d4d7;
border-radius:3px;
-webkit-border-radius:3px;
-moz-border-radius:3px;
font-size:100%;
color:#555;
background:#fcfcfc;
}

textarea{
height:auto;
line-height:1.5;
}

input[type="submit"],input[type="reset"],input[type="button"], p.readon a{
vertical-align:top;
padding:0 10px;
background: #313450;
background: -moz-linear-gradient(top, #313450 0%, #313450 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#313450), color-stop(100%,#313450));
background: -webkit-linear-gradient(top, #313450 0%,#313450 100%);
background: -o-linear-gradient(top, #313450 0%,#313450 100%);
background: linear-gradient(to bottom, #313450 0%,#313450 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#313450', endColorstr='#313450',GradientType=0 );
border:0;
border-radius:3px;
-webkit-border-radius:3px;
-moz-border-radius:3px;
line-height:28px;
height:28px;
font-size:120%;
color:#fff;
}

input[type="submit"]:hover,input[type="reset"]:hover,input[type="button"]:hover,p.readon a:hover{
background: #0099FF;
background: -moz-linear-gradient(top, #858896 0%, #858896 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#858896), color-stop(100%,#858896));
background: -webkit-linear-gradient(top, #858896 0%,#858896 100%);
background: -o-linear-gradient(top, #858896 0%,#858896 100%);
background: linear-gradient(to bottom, #313450 0%,#858896 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#858896', endColorstr='#858896',GradientType=0 );
cursor:pointer;
}
*:first-child+html input[type="submit"]{padding:3px;}


/* レイアウト
------------------------------------------------------------*/
#wrapper,.inner{
margin:0 auto 10px auto;
width:1200px;
}
.inner777{
float:left;
}

.inner888{
float:right;
margin-top:22px;
text-align:right;
}

#content{
	float:left;
	width: calc(100% - 280px);
	padding:20px 0 50px;
}

#toppage #content{
width:100%;
}

#sidebar{
float:right;
width:220px;
padding:20px 0 50px;
}

#footer{
clear:both;
color:#fff;
border-top:5px solid #e8e8e8;
background:url(images/bgDark.png);
} 


/* ヘッダー
*****************************************************/
.bg{
background:url(images/bgDark.png);
border-bottom:4px solid #e8e8e8;
margin-bottom:10px;
}


/* サイト説明文
----------------------------------*/
#header h1{
padding:10px 0 0 0;
font-size:80%;
color:#fff;
font-weight:normal;
}

#headerhubnet{
float:right;
}

/* ロゴ (サイトタイトル)
----------------------------------*/
#header .logo{
clear:both;
float:left;
padding:20px 0;
color: #515151;
font-size:160%;
font-weight:bold;
}

/* SNS
----------------------------------*/
.sns{
float:right;
padding:20px 0;
}

.sns img{margin-left:5px;}


/* トップページ　メイン画像
----------------------------------*/
#mainImg{
clear:both;
margin-top:20px;
line-height:0;
text-align:center;
z-index:0;
margin-left:auto;
margin-right:auto;
}

.post{
margin:0 0 20px 0;
}

.toppage h4{
margin:0 0 10px;
font-size:16px;
font-weight:normal;
color:#333;
}


/* 記事ループ
*****************************************************/
.list{
padding:10px 0;
border-bottom:1px dashed #e4e4e4;
}

.list:last-child{border:0;}

.post .list p{padding:0;}

.list span{padding-left:10px;}


/* タイポグラフィ
*****************************************************/
h1.title{
clear:both;
margin:0 0 10px;
padding:5px 0;
font-size:130%;
background:url(images/border.png) repeat-x 0 100%;
}

.dateLabel{
text-align:right;
font-family:Georgia, "Times New Roman", Times, serif;
}

.post p{
padding-bottom:15px;
font-family: "ＭＳ Ｐ明朝","ＭＳ 明朝",serif;
font-size:18px;
word-break: break-all;
}

.post ul{margin: 0 0 10px 10px;}

.post ul li{
font-size:1rem;
margin-bottom:5px;
padding-left:15px;
background:url(images/bullet.png) no-repeat 0 8px;
}

.post ol{margin: 0 0 10px 30px;}

.post ol li{list-style:decimal;}

.post h1{
margin:20px 0;
padding:5px 0 5px 15px;
font-size:150%;
border-bottom:2px solid #55241f;
/* background:url(images/headingBg.png) no-repeat 0 50%;*/
}

.post h2{
margin:10px 0;
padding-bottom:2px;
font-size:130%;
font-weight:normal;
border-bottom:2px solid #55241f;
}

.post h2{
margin:20px 0;
font-size:150%;
font-weight:bold;
border-bottom:1px solid #CCC;
}

/*
.post h3{
margin: 20px 0 5px;
font-size:130%;
font-weight:bold;
}
*/

/*
.post h3 {
    line-height: 1.5;
    font-size: 20px;
    border: none;
    color: #333333;
    border-radius: 2px;
    border-left: 4px solid #8b968d;
    padding: 0.2em 0.3em;
    margin-top: 50px;
    margin-bottom: 20px;
}

*/

/*
.post h4{
margin: 20px 0 5px;
font-weight:bold;
position: relative;
padding-left:1.5em;
}

.post h4::after{
position: absolute;
content: '';
bottom: .4em;
left: .4em;
width: 12px;
height: 12px;
background-color: #000;
transform: rotate(45deg);
}
*/

/*
.post h4 {
 border-bottom: 2px dotted black;
 margin-top:40px;
 margin-bottom:15px;
 font-size:18px;
}
*/


.post h5{
position: relative;
padding: 0.1em 0.3em;
padding-left: 1em;
vertical-align: middle;
font-weight:bold;
}

.post h5::after{
font-size: .8em;
position: absolute;
top: .3em;
left: .5em;
margin-right: 8px;
content:'・';

}



.post blockquote {
clear:both;
padding:10px 0 10px 15px;
margin:10px 0 25px 30px;
border-left:5px solid #ccc;
}
 
.post blockquote p{padding:5px 0;}

.post table{
border: 1px #55241f solid;
border-collapse: collapse;
border-spacing: 0;
margin:10px 0 20px;
}

.post table th{
padding:10px;
color:#fff;
border:1px #000 solid;
border-width: 0 0 1px 1px;
background:#55241f;
}

.post table td{
padding:10px;
border: 1px #55241f solid;
border-width: 0 0 1px 1px;
background:#fff;
}

.post dt{font-weight:bold;}

.post dd{padding-bottom:10px;}

.post img{max-width:100%;height:auto;}

img.aligncenter {
display: block;
margin:5px auto;
}

img.alignright, img.alignleft{
margin: 0 10px 20px 15px;
display:inline;
}

img.alignleft{margin:10px 15px 15px 10px;}

.alignright{float:right;}
.alignleft{float:left;}

#gallery-1 img{
border:1px solid #eaeaea !important;
padding:5px;
background:#fff;
}

#gallery-1 img:hover{background:#fffaef;}



/* サイドバー　ウィジェット
*****************************************************/
.widgetWrap, section.widget ul{
margin:10px 0 20px 0;
padding:10px 10px 0 10px;
}

section.widget ul ul{
border:0;
margin:0;
padding:0 0 0 10px;
box-shadow:none;
}

#sidebar ul#banners{
width:220px;
margin:10px 0;
}

#sidebar ul#banners li{
float:none;
margin:0 0 10px;
}

section.widget h3{
clear:both;
margin:0 0 -5px;
padding:5px 0;
font-size:110%;
background:url(images/border.png) repeat-x 0 100%;
}

section.widget li a{
display:block;
padding:7px 0 7px 12px;
background:url(images/arrow2.png) no-repeat 0 12px;
border-bottom:1px dashed #e4e4e4;
}

section.widget li a:hover{background-position:2px 12px;}

section.widget li:last-child a{border:0;}

#searchform input[type="text"]{
width:110px;
line-height:22px;
height:22px;
margin-right:3px;
}

#searchform{padding:20px 0;}

/* カレンダー */
#calendar_wrap table{margin:0 auto;width:90%;}
#calendar_wrap table caption{padding:10px 0;text-align:center;font-weight:bold;}
#calendar_wrap table th, #calendar_wrap table td{padding:3px;text-align:center;}
#calendar_wrap table th:nth-child(6){color:#0034af;}
#calendar_wrap table th:nth-child(7){color:#950000;}
#calendar_wrap a{color:#a06c68;font-weight:bold;font-weight:bold;border-bottom:1px solid #fff;}
#calendar_wrap table td#prev{text-align:left;}
#calendar_wrap table td#next{text-align:right;}
#calendar_wrap table td#prev a{text-align:left;border:0;}
#calendar_wrap table td#next a{text-align:right;border:0;}


/* お知らせ　
-------------*/
.newsTitle{
clear:both;
margin:0;
padding:7px 10px 7px 0;
font-size:110%;
background:url(images/border.png) repeat-x 0 100%;
}

.newsTitle h3{
float:left;
font-weight:normal;
}

.newsTitle p{
float:right;
padding:0 0 0 10px;
font-size:80%;
background:url(images/arrow2.png) no-repeat 0 5px;
}

.news p{
clear:both;
padding-bottom:2px;
border-bottom:1px dashed #e4e4e4;
}

.news p:last-child{border:0;}

.news p a{
display:block;
padding:5px 0;
color:#333;
font-style:italic;
font:italic 110% "Palatino Linotype", "Book Antiqua", Palatino, serif;
}

.news a span{
color:#515151;
font:normal 90% Arial, 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
}

.news span{padding-left:10px;}

.news a:hover span{color:#0099FF;}


/* トップページ */
#content .newsTitle h3{font-size:120%;}


/* フッター
*****************************************************/
#footer a{color:#dadada;}

#footer .boxWrap{
width:980px;
margin-right:-40px;
padding-top:10px;
}

#footer .boxWrap02{
float:left;
width:282px;
margin-right:-40px;
margin-bottom:30px;
}

#footer .boxWrap02 a{
color:#FFFFFF;
}

#footer .boxWrap02 a:hover, a:active{
color:#CCCCCC;
}

#footer .boxWrap02 li {
list-style-image: url(images/listmark-footer.jpg) ;
list-style-position: inside;
}

#footer .box{
float:left;
width:450px;
margin-right:40px;
padding:20px 0;
}

.box .widgetWrap, .box section.widget ul{
padding:0 0 0 7px;
margin-top:0;
background:transparent;
border:0;
box-shadow:none;
}

.box section.widget li a{
background:url(images/arrowWhite.png) no-repeat 0 12px;
border:0;
}

.box section.widget li a:hover{background-position:2px 12px;}

#footer h3{
padding:5px;
margin-bottom:10px;
font-size:120%;
background:url(images/border2.png) repeat-x 0 100%;
}

.contact p{
padding:3px 0 3px 32px;
margin-bottom:3px;
font-size:110%;
background:url(images/iconHome.png) no-repeat 4px 0;
}

.contact p.mail{background-image:url(images/iconMail.png);}
.contact p.tel{background-image:url(images/iconTel.png);}
.contact p.fax{background-image:url(images/iconFax.png);}
.contact p.tw{background-image:url(images/iconTW.png);}
.contact p.fb{background-image:url(images/iconFB.png);}

#copyright{
clear:both;
padding:20px 0;
text-align:center;
font-size:90%;
border-top:1px solid #333;
background:#1D2030;
}


/* page navigation
------------------------------------------------------------*/
.pagenav{
clear:both;
width: 100%;
height: 30px;
margin: 5px 0 20px;
}

.prev{float:left}

.next{float:right;}

#pageLinks{
clear:both;
color:#4f4d4d;
text-align:center;
}


/* トップページ 最新記事4件
------------------------------------------------------------*/
ul#banners,ul.post{
width:960px;
margin-right:-20px;
padding-bottom:20px;
}


ul#banners li{
float:left;
width:220px;
margin-right:20px;
}

ul.post li{
float:left;
width:220px;
margin-right:20px;
}

.post li{
margin-top:20px;
}

ul.post{
padding:0;
background:transparent;
border:0;
box-shadow:none;
}

ul.post img{
max-width:220px;
height:auto;
}

ul.post h3{
margin:10px 0;
padding-bottom:5px;
font-size:14px;
font-weight:normal;
color:#333;
border:0;
}

p.readon a{
padding:3px 10px;
font-size:90%;
font-family:Georgia, "Times New Roman", Times, serif;
}

ul#banners:after{content:""; display: table;clear:both;}
ul#banners{zoom: 1;}


/* メインメニュー　PC用
------------------------------------------------------------*/
@media only screen and (min-width: 1025px){

.b-m{

margin-top:0px;
}

/*--------------------------------------------------------
表示非表示
------------------------------------------------------*/
.pc-p{
display:block;
}

.sp-p{
display:none;
}

/*--------------------------------------------------------

------------------------------------------------------*/

/*--------------------------------------------------------
追従
------------------------------------------------------*/
.smtContent{
display:inline-block;
}




div.panel{
display:block !important;
}

a#menu{display:none;}

nav#mainNav ul{
clear:both;
position:relative;
z-index:200;
width:940px;
margin:0 auto;
}

nav#mainNav li{
float: left;
position: relative;
}

nav#mainNav li.hassub a{
background:url(images/arrowDown2.png) no-repeat 100% 50%;
}

nav#mainNav li a{
display: block;
_float:left;
font-size:160%;
line-height:26px;
font-weight:normal;
padding:0 ;
color:#313450;
border-bottom:1px solid #adadad;
margin-bottom:20px;
margin-right:26px;
margin-left:26px;
}

nav#mainNav li.current-menu-item a, nav#mainNav li a:hover, nav#mainNav li.current-menu-parent a{
color:#0099FF;
border-color:#a06c68;
}

nav#mainNav li.hassub.current-menu-item a,nav#mainNav li.hassub a:hover, nav#mainNav li.hassub.current-menu-parent a{
background:url(images/arrowDown.png) no-repeat 100% 50%;
}

nav#mainNav li.hassub li a,nav#mainNav li.hassub.current-menu-item li a, nav#mainNav li.hassub.current-menu-parent li a, nav#mainNav li.hassub li a:hover{background:none;}

nav#mainNav ul ul{
width:auto;
background:#fff;
}

nav#mainNav li ul{
display:none;
opacity:0;
}

nav#mainNav li:hover ul{
display: block;
position: absolute;
top:46px;
left:0;
z-index:500;
opacity:1;
}

nav#mainNav li li{
margin:0;
float: none;
width:220px;
}

nav#mainNav li li a, nav#mainNav li.current-menu-parent li a,nav#mainNav li.current-menu-item li a{
padding:0 0 0 5px;
height:30px;
font-size:95%;
line-height:35px;
}

nav#mainNav li.current-menu-item li a, nav#mainNav li.current-menu-parent li a{
color:#adadad;
border-bottom:1px solid #adadad;
}

nav#mainNav li li.current-menu-item a,nav#mainNav li li a:hover{
color:#0099FF;
border-color:#a06c68;
}

}


/* メインメニュー iPadサイズ以下から
------------------------------------------------------------*/
@media only screen and (max-width:1024px){
nav#mainNav{
clear:both;
width:100%;
margin:0;
padding:0;
}

nav#mainNav a.menu{
width:100%;
display:block;
height:40px;
line-height:40px;
font-weight: bold;
text-align:left;
color:#fff;
background: #2F334C url(images/menuOpen.png) no-repeat 5px 8px;
background: url(images/menuOpen.png) no-repeat 5px 8px, -moz-linear-gradient(top, #2F334C 0%, #2F334C 100%);
background: url(images/menuOpen.png) no-repeat 5px 8px, -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a06c68), color-stop(100%,#2F334C));
background: url(images/menuOpen.png) no-repeat 5px 8px, -webkit-linear-gradient(top, #2F334C 0%,#2F334C 100%);
background: url(images/menuOpen.png) no-repeat 5px 8px, -o-linear-gradient(top, #2F334C 0%,#2F334C 100%);
background: url(images/menuOpen.png) no-repeat 5px 8px, -ms-linear-gradient(top, #2F334C 0%,#2F334C 100%);
background: url(images/menuOpen.png) no-repeat 5px 8px, linear-gradient(to bottom, #2F334C 0%,#2F334C 100%);
}

nav#mainNav a#menu span{padding-left:40px;}

nav#mainNav a.menuOpen{
color:#fff;
background: #2F334C url(images/menuOpen.png) no-repeat 5px -34px;
background: url(images/menuOpen.png) no-repeat 5px -34px, -moz-linear-gradient(top, #2F334C 0%, #2F334C 100%);
background: url(images/menuOpen.png) no-repeat 5px -34px, -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2F334C), color-stop(100%,#2F334C));
background: url(images/menuOpen.png) no-repeat 5px -34px, -webkit-linear-gradient(top, #2F334C 0%,#2F334C 100%);
background: url(images/menuOpen.png) no-repeat 5px -34px, -o-linear-gradient(top, #2F334C 0%,#2F334C 100%);
background: url(images/menuOpen.png) no-repeat 5px -34px, -ms-linear-gradient(top, #2F334C 0%,#2F334C 100%);
background: url(images/menuOpen.png) no-repeat 5px -34px, linear-gradient(to bottom, #2F334C 0%,#2F334C 100%);
}

nav#mainNav a#menu:hover{cursor:pointer;}

nav .panel{
display: none;
width:100%;
position: relative;
right: 0;
top:0;
z-index: 1;
}

nav#mainNav ul{margin:0 0 20px;padding:0;}
nav#mainNav ul ul{margin:0;}

nav#mainNav ul li{
float: none;
clear:both;
width:100%;
height:auto;
line-height:1.2;
}

nav#mainNav ul li a,nav#mainNav ul li.current-menu-item li a{
display: block;
padding:15px 10px;
text-align:left;
border-bottom:1px solid #ccc;
background:url(images/arrow.png) no-repeat 97% 50%;
}

nav#mainNav ul li.current-menu-item a,nav#mainNav ul li.current-menu-item a,nav#mainNav ul li a:active, nav#mainNav ul li li.current-menu-item a, nav#mainNav ul li.current-menu-item li a:active,nav#mainNav ul li a:hover,nav#mainNav ul li.current-menu-item li a:hover{
color:#fff;
background: #2F334C;
background:-moz-linear-gradient(top#a06c68 0%#2F334C 100%);
background:-webkit-gradient(linearleft topleft bottomcolor-stop(0%,#a06c68)color-stop(100%,#2F334C));
background:-webkit-linear-gradient(top#a06c68 0%,#2F334C 100%);
background:-o-linear-gradient(top#a06c68 0%,#2F334C 100%);
background:-ms-linear-gradient(top#a06c68 0%,#2F334C 100%);
background:linear-gradient(to bottom#a06c68 0%,#2F334C 100%);
}

nav#mainNav li.current-menu-item li a, nav#mainNav li.current-menu-parent li a{
color:#2F334C;
}

nav#mainNav li.current-menu-item li a:hover, nav#mainNav li.current-menu-parent li a:hover{
color:#fff;
}


nav#mainNav ul li li{
float:left;
border:0;
}

nav#mainNav ul li li span a{
padding-left:20px;
font-size:90%;
}

nav div.panel{float:none;}

#mainImg{margin-bottom:20px;}
}

.post .contents{
padding-bottom:15px;
font-family: "ＭＳ Ｐ明朝","ＭＳ 明朝",serif;
font-size:18px;
}

/* 959px以下から 1カラム表示
------------------------------------------------------------*/
@media only screen and (max-width: 959px){
#header{width:100%}
.inner,#footer .boxWrap,#wrapper{width:96%;}

#mainImg img{width:96%;height:auto;}

#copyright{
padding:20px 20px;
}

#content, #sidebar{clear:both;width:95%;float:none;margin:0 auto;padding:10px 0;}

#content{}

#sidebar{background:url(images/border.png) repeat-x;padding-top:30px;}

ul.post,ul#banners,#sidebar ul#banners{width:100%;display:table-row;margin:0;}
ul.post li,ul#banners li,#sidebar ul#banners li{float:left;width:23%;margin:0 1%;padding:0 0 20px;}
ul.post img,ul#banners li img,#sidebar ul#banners img{max-width:98%;height:auto;}

#calendar_wrap table{width:260px;margin:0;}

#footer .boxWrap{
margin:0 0 0 0;
padding:20px 0 0 0;
}
#footer .box{float:none;width:100%;margin:10px 0;}

}

/* 幅700px以下から
------------------------------------------------------------*/
@media only screen and (max-width:700px){
	
	.blogcard {
		margin: 40px 0;
		display:inline;
	}
	
	.blogcard_thumbnail img {
		max-width: 400px;
		height: auto;
		width:inherit;
	}
	
	.blogcard_thumbnail{
		float:none;
		text-align:center;
		width:auto;
	}
	
	.blogcard_title {
		font-size: 0.95em;
		padding:0 15px 15px 15px;
	}
	
	.blogcard_excerpt  {
	}
	
	.blogcard_link{
		font-size:0.7em;
		line-height:1.5;
	}
	
	.blogcard_content{
		width:auto;
	}
	
	.btn, a.btn, button.btn{
		width:100%;
	}
}

/* 幅620px以下から
------------------------------------------------------------*/
@media only screen and (max-width: 640px){
	
#wrapper #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post{
		width:100%;
}


.hcf{
display:block;
}
.hcf img{
max-width:100%;
}

ul.post li,ul#banners li,#sidebar ul#banners li{width:42%;margin:0 0 0 6%;}
ul.post li:nth-child(2n+1){clear:left;}
.post img{max-width:100%;height:auto;}
img.alignright, img.alignleft{display:block;margin:5px 2%;max-width:96%;height:auto;}
.alignright,.alignleft{float:none;}


/*--------------------------------------------------------
追従メニュー
------------------------------------------------------*/
#footFixedMenu {
 width:25%;
 right:5px;
 top:5px;
}

}



/* 2022.8.18 新デザイン */

#header h1 {
  margin: 0;
}

#header .logo {
  padding: 20px 0;
}

#header &gt; .inner {
  margin-bottom: 0;
}

nav#mainNav {
  border-top: solid 2px #000;
  border-bottom: solid 2px #000;
}

nav#mainNav .inner {
  margin-bottom: 0;
}

nav#mainNav ul li a {
  border-bottom: none;
  margin: 0;
  padding: 10px 20px;
}

#toppage #content h2,
#content h1.title {
  font-size: 200%;
  font-weight: bold;
  background: none;
  border-bottom: solid 2px #000;
  position: relative;
  padding: 0 0 10px;
}

#toppage #content h2:after,
#content h1.title:after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  display: block;
  width: 20px;
  height: 5px;
  background: #000;
}

#toppage ul.post {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: solid 2px #000;
}

#toppage ul.post li {
	width: 25%;
	font-size: 110%;
}

#toppage ul.post li {
    float: left;
    width: calc(25% - 10px); /* 25%からマージン分を差し引く */
    margin-right: 10px;  /* 右側に10pxのマージンを設定 */
    box-sizing: border-box; /* パディングやボーダーが幅に影響しないように調整 */
}

/* 最後の列の要素にはマージンを適用しない */
#toppage ul.post li:nth-child(4n) {
    margin-right: 0;
}


@media only screen and (max-width: 959px) {
  #toppage ul.post {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 640px) {
  #toppage ul.post {
    justify-content: flex-start;
    flex-direction: column;
  }
  #toppage ul.post li {
    width: 100%;
    margin-left: 0;
  }
}

#toppage ul.post .post-img {
  position: relative;
  width: 100%;
}

#toppage ul.post .post-img img {
  max-width: 100%;
}

#toppage ul.post .post-time {
  display: inline-block;
  background: #000;
  color: #fff;
  font-family: sans-serif;
  font-size: 110%;
  padding: 2px 10px;
}

#toppage ul.post h3 {
  margin: 10px 0 5px;
  padding-bottom: 0;
}

#toppage ul.post h3 strong a {
  color: #000;
  text-decoration: none;
  font-size: 120%;
}

#toppage ul.post h3 strong a:hover {
  color: #c00;
}

#toppage ul.post .readon {
  margin-top: 20px;
}

#toppage ul.post .readon a {
  display: block;
  border: solid 1px #000;
  color: #000;
  text-align: center;
  background: none;
  font-family: sans-serif;
  text-decoration: none;
}

#toppage ul.post .readon a:hover {
  background: #000;
  color: #fff;
}

.btn-blogarchive {
  text-align: center;
}

.btn-blogarchive a {
  display: inline-block;
  background: #000;
  color: #fff;
  font-size: 120%;
  padding: 0.75em 5em;
  position: relative;
}

.btn-blogarchive a:hover {
  background: #c00;
  color: #fff;
}

.btn-blogarchive a:after {
  content: '&gt;';
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  inset: 0 10px 0 auto;
  margin: auto;
}

.breadcrumbs {
  margin: 2em 0;
}

.breadcrumbs a {
  color: #000;
  text-decoration: underline;
}

.breadcrumbs a:hover {
  color: #c00;
}

#content .hubnet777 .post-time {
  display: inline-block;
  background: #000;
  color: #fff;
  font-family: sans-serif;
  font-size: 110%;
  padding: 2px 10px;
}

#content .blog-archive-title {
  display: block;
  padding: 10px 0 1em;
  color: #000;
}

#content .blog-archive-title:hover {
  color: #c00;
}

#content .single-time {
  font-family: sans-serif;
  font-size: 110%;
  margin: 10px 0 20px;
  padding: 0;
  font-weight: bold;
}

#content .contents,
#content .post p {
  font-family: sans-serif;
}

.btn-readmore {
  text-align: center;
  margin-top: 1em;
}

.btn-readmore a {
  display: inline-block;
  border: solid 1px #000;
  padding: 5px 3em;
  color: #000;
  text-decoration: none;
}

.btn-readmore a:hover {
  color: #fff;
  background: #000;
}

.prev a, .next a {
  display: block;
  border: solid 1px #000;
  padding: 5px 3em;
  color: #000;
}

.prev a:hover, .next a:hover {
  color: #fff;
  background: #000;
}

#content #toc_container {
  background: #fff;
  margin-bottom: 20px;
}

#content #toc_container p.toc_title {
  margin: -10px -10px 0;
  background: #000;
  color: #fff;
  padding:0 10px;
}

#content #toc_container ul.toc_list li {
  line-height: 2.2;
}

#content #toc_container ul.toc_list &gt; li {
  border-bottom: solid 1px #000;
}

#content #toc_container a {
  color: #000;
  font-weight: normal;
  font-size: 84%;
}

#content #toc_container .toc_toggle a,
#content #toc_container .toc_toggle a:hover{
	color:#fff;
}

#content #toc_container ul.toc_list &gt; li:nth-last-of-type(1){
	border-bottom:none;
}

#content #toc_container a:hover {
  color: #c00;
}

#content .contents {
  line-height: 1.7;
}

/*
#content .contents h2 {
  font-size: 120%;
  border-bottom: solid 1px #000;
  background:#f0f0f0;
  padding: 0.4em 0.5em 0.1em 0.5em;
}
*/

#content .contents h2 {
	font-size:1.4em;
	border-bottom: solid 2px #000;
	padding: 0.4em 0.5em 0.1em 0;
}

#content .contents h2 span {
	display:block;
}

/*
#content .contents h3 {
  font-size: 100%;
}
*/

#content .contents h3 {
      position: relative;
      padding-left: 0.8em; /* ◆ マークのためのスペース */
      margin-bottom: 1em;
      margin-top:2em;
      font-size: 1.2em;
      line-height: 1.4;
}


#content .contents h3::before {
	content: "◆";
	position: absolute;
	left: 0;
	top: 50%; /* 親要素の中央を基準にする */
	transform: translateY(-50%); /* 自身の高さの半分だけ上に移動して中央揃え */
	font-size: 0.5em; /* ◆ マークを小さくする */
	color: #666; /* マークの色を設定 */
}



#content .contents h4 {
	border-bottom: 1px dashed black;
	margin-top: 40px;
	margin-bottom: 15px;
	font-size: 18px;
	display: inline-block;
}




#content .contents .ab_waku {
  border: solid 1px #000;
}

#content .contents .ab_waku .saboxplugin-web a {
  color: #ccc;
}

a {
  color: #000;
}

a:hover {
  color: #c00;
}

section.widget h3 {
  background-image: none;
  background-color: #2f334c;
  color: #fff;
  padding: 5px 10px;
  font-size: 140%;
}

section.widget ul {
  padding-right: 0;
  padding-left: 0;
}

section.widget ul li a {
  padding-left: 0;
  background: none;
  border-bottom: solid 2px #000;
  color: #000;
  padding-left: 14px;
  text-indent: -14px;
  font-weight: bold;
}

section.widget ul li a:hover {
  color: #c00;
}

section.widget ul li a:before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-right: 5px;
  content: "";
}

.navOpen {
  background-image: url("images/menu.png");
}

.header .sp-tel {
  text-align: center;
  margin-right: 10px;
}

.header .sp-tel a {
  font-size: 80%;
  color: #000;
}

.header .sp-tel a img {
  display: block;
  height: 30px;
}

.blogcard, .blogcard.ex {
  margin-right: auto;
  margin-left: auto;
  box-shadow: none;
  max-width:800px;
}

.blogcard .blogcard_link a, .blogcard.ex .blogcard_link a {
  color: #666;
}

.blogcard .btn, .blogcard.ex .btn {
  border-radius: 0;
}


.blogcard .container {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1em;
}

/* addクラスのスタイル */
.blogcard .add {
	display: flex;
	align-items: center;
	margin-left:8%;
}

.blogcard .add a {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.blogcard .add img {
	max-width: 100%;
	height: auto;
	width: 24px; /* SVG画像のサイズを指定 */
	display: block; /* 画像の表示を確実にする */
}

/* blogcard_btnのwidthを80%に設定 */
.blogcard_btn {
	width: 80%;
}


@media only screen and (max-width: 700px) {
  .blogcard, .blogcard.ex {
    display: flex;
    flex-direction: column;
  }
  .blogcard .blogcard_btn, .blogcard.ex .blogcard_btn {
    width: 60%;
    margin: auto;
  }
  .blogcard .blogcard_btn a.btn, .blogcard.ex .blogcard_btn a.btn {
    padding-left: 0;
    padding-right: 0;
  }
}





a#scroll-to-top {
  width: 40px !important;
  height: 40px !important;
  background-image: url("images/scroll-to-top.png") !important;
}

#footer .boxWrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding-top: 20px;
}

#footer .boxWrap .boxWrap02 {
  float: none;
  margin-right: 0;
  width: 23%;
}

#footer .boxWrap .boxWrap02 li {
  list-style: none;
}

#footer .boxWrap .boxWrap02 li a {
  display: block;
}

#footer .boxWrap .boxWrap02 li a:before {
  content: '&gt;';
  font-size: 80%;
  margin-right: 5px;
}

@media only screen and (max-width: 700px) {
  #footer .boxWrap {
    flex-wrap: wrap;
    flex-direction: column;
  }
  #footer .boxWrap .boxWrap02 {
    width: 100%;
  }
  #footer .boxWrap .boxWrap02 h3 {
    text-align: center;
  }
}

#footer h3 {
  font-size: 140%;
  background: none;
  border-bottom: solid 2px #fff;
}

#copyright {
  background: #000;
}

.b-arrow:before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-right: 0.5em;
  content: "\f105";
}

.b-list {
  border: solid 1px #000;
}

.b-list h1, .b-list h2, .b-list h3, .b-list h4, .b-list h5, .b-list h6,.b-list .b-list-title {
  background: #000;
  color: #fff;
  text-align: center;
  margin: 0;
  font-weight:bold;
}

.b-list ul, .b-list ol {
  list-style: none;
  padding: 1em;
  margin: 0;
}

.b-list ul &gt; li, .b-list ol &gt; li {
  background: none;
  margin: 0;
  padding: 0;
}

.b-list ul &gt; li:before, .b-list ol &gt; li:before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-right: 0.5em;
  content: "\f105";
  list-style: none;
}

.b-img {
  background: #f9f9f9;
  text-align: center;
  margin: 0.5em auto;
  padding: 0.5em;
  max-width:800px;
}

.b-list h3{
	line-height: 1;
	border-left: none;
	padding: 0.4em;
}







</pre></body></html>