/*------------------------------------------------------------
00、良く使う
-------------------------------------------------------------*/
/* ！！スマホ改行無効化 */
@media screen and (max-width:599px){
br { 
display:none;
}
}


/*------------------------------------------------------------
1、align・・・文字の横位置
-------------------------------------------------------------*/

.al-c{ text-align: center; }/*中央寄せ*/
.al-r{ text-align: right; }/*右寄せ*/
.al-l{ text-align: left; }/*左寄せ*/

/*-----詳細記事 H3/H4の飾り文字の余白調整-------*/
.post_content .heading2, .post_content .heading4{
	padding-left:30px;
}
.post_content .sample2{
    padding: 10px 5px 10px 10px;
}

/*-----テーブル内画像の中央配置-------*/
.td-center{ text-align:center; vertical-align:middle; }

/**************************************************************
【fontの設定】
**************************************************************/
.text70{font-size:70%}			/* フォントサイズ70% */
.text80{font-size:80%}
.text90{font-size:90%}
.text100{font-size:100%}
.text110{font-size:110%}
.text120{font-size:120%}
.text130{font-size:130%}
.text140{font-size:140%}
.text150{font-size:150%}
.text160{font-size:160%}
.text170{font-size:170%}
.text180{font-size:180%}
.text190{font-size:190%}
.text200{font-size:200%}
.text210{font-size:210%}
.text220{font-size:220%}
.b{font-weight:700}				/* 太字 */
.u{text-decoration:underline}	/* 下線 */

/**************************************************************
【colorの設定】
**************************************************************/
.red{color:red}				/* 赤色 */
.blue{color:#2ca9e1}		/* 青色 */
.green{color:#82ae46}		/* 緑色 */
.orange{color:#ff7d00}		/* 橙色 */
.yellow{color:#fff000}		/* 黄色 */
.pink{color:#ff0084}		/* ピンク */
.gray{color:#ccc}
.l-gray{color:#666666}		/* グレー */
.braun{color:#9e7c7c}		/* ブラウン */
.carkey{color:#ccb400}		/* カーキ */
.navy{color:#000080}		/* ネイビー */
.purple{color:#a67ca6}		/* パープル */


/**************************************************************
【background-colorの設定】
**************************************************************/
.bg-yellow{background:#ff0}		/* 黄色の文字背景 */
.bg-blue{background:#4ab0f5}	/* 青色の文字背景 */
.bg-red{background:red}			/* 赤色の文字背景 */


/*------------------------------------------------------------
17、ノートのような線を引く
-------------------------------------------------------------*/

.noteline{
	display: inline!important;
	padding-bottom: 0.3em!important;
	border-bottom: 1px dashed #7070ba!important;
	line-height: 2.1em!important;
}

.noteline2{
	border:none;
	border-top:dashed 1px #ccc;
	height:1px;
	margin: 0 6 0 6;
}

.noteline-orange{
	border:none;
	border-bottom:dashed 1px #ff6600;
	height:1px;
	margin: 0 6 0 6;
}
.noteline-green{
	margin: 0 6 0 6;
	border-bottom-width: 2px;
	border-bottom-style: dotted;
	border-bottom-color: #33CC66;
}
.noteline-blue{
	margin: 0 6 0 6;
	border-bottom-width: 2px;
	border-bottom-style: dashed;
	border-bottom-color: #0099FF;
}


/*------------------------------------------------------------
18、見出し
-------------------------------------------------------------*/

.sample2 {
    position: relative;
    color: 000000;
    background: #ffffff;
    font-size: 15pt ;
    border: 2px solid #fafafa;
    margin: 10px 10px 22px 0px;
    padding: 10px 5px 10px 10px;
    border-radius: 3px;
    box-shadow:1px 3px 7px 0px  #9b9b9b ;
}

.sample2:after, .sample2:before {
    content: "";
    position: absolute;
    top: 100%;
    height: 0;
    width: 0;
}

.sample2:after {
    left: 40px;
    border: 10px solid transparent;
    border-top: 10px solid #ffffff;
}

.sample2:before {
    left: 38px;
    border: 12px solid transparent;
    border-top: 12px solid #fafafa;
}

/*------見出しグラデーション----------------*/
.grad {
position: relative;
color: #000;
font-size: 24px;
font-weight: bold;
}
.grad span {
position: absolute;
display: block;
width: 100%;
height: 32px;
}
.grad .grad1 {
background: url(http://xn--2017-9f2hg15hgd2b.com/wp/wp-content/uploads/2016/05/grad.png) repeat-x;
}
.grad .grad2 {
background: url(http://xn--2017-9f2hg15hgd2b.com/wp/wp-content/uploads/2016/05/grad2.png) repeat-x;
}
.grad .grad3 {
background: url(http://xn--2017-9f2hg15hgd2b.com/wp/wp-content/uploads/2016/05/grad3.png) repeat-x;
}

/*------文字グラデーション文字サイズ個別設定-------*/
.grad0 {
position: relative;
color: #000;
font-weight: bold;
}
.grad span {
position: absolute;
display: block;
width: 100%;
height: 1.5em;
}

/*------------------------------------------------------------
19、WEB画像調整
-------------------------------------------------------------*/
.img-box1{
	width:220px;
	margin: 0 0 0 0;
	padding: 0.0;
}
.img-box2{
	width:240px;
	margin: 0 0 0 0;
	padding: 0.0;
}

/*------------------------------------------------------------
20、記事本文行間・位置調整
-------------------------------------------------------------*/
.m15-b{ margin-bottom: 15px!important; }
.m30-b{ margin-bottom: 30px!important; }
.m40-b{ margin-bottom: 40px!important; }
.m50-b{ margin-bottom: 50px!important; }
.m60-b{ margin-bottom: 60px!important; }
.m50-t{ margin-top: 50px!important; }
.m120-b{ margin-bottom: 120px!important; }
.m13-l{ margin-left: 13px!important; }
.m15-l{ margin-left: 15px!important; }
.m26-l{ margin-left: 26px!important; }
.m30-l{ margin-left: 30px!important; }
.m50-l{ margin-left: 50px!important; }
.m55-l{ margin-left: 55px!important; }
.mm20-t{ margin-top: -20px!important; }/*マイナス マージン*/

/*------------------------------------------------------------
21、テーブル幅調整
-------------------------------------------------------------*/
.table250 { width: 250px; }
.table300 { width: 300px; }
.table350 { width: 350px; }
.table400 { width: 400px; }
.table450 { width: 450px; }
.table500 { width: 500px; }
.table550 { width: 550px; }
.table600 { width: 600px; }
.obon2014 {
    width: 90%;
    font-size: 9px ;
}


/*------------------------------------------------------------
見出しタグの組合せで使う場合
-------------------------------------------------------------*/

.heading5 {
    position: relative;
    padding: 20px;
    color: #fff;
    background: #d2b48c;
    overflow: hidden;
}
 
.heading5:before {
    content: " ";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-width: 16px 16px 0 0;
    border-style: solid;
    border-color: #fff;
    border-top-color: #998366;
    box-shadow: 0 1px 1px rgba(0,0,0,0.4);
    -moz-box-shadow: 0 1px 1px rgba(0,0,0,0.4);
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.4);
}
.heading6 {
    position: relative;
    background: #fff;
    padding: 20px;
    z-index: 10;
    top: 0;
    left: 0;
}
.heading6:before, .heading6:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    box-shadow: 0 1px 4px #aaa;
    -moz-box-shadow: 0 1px 4px #aaa;
    -webkit-box-shadow: 0 1px 4px #aaa;
}
.heading6:before {
    background: rgba(255,255,255,0.5);
    top: 0;
    left: 0;
    z-index: -10;
}
.heading6:after {
    background: #87cefa;
    top: 8px;
    left: 8px;
    z-index: -20;
}
.heading7 {
	position: relative;
	background: #fff;
	padding: 15px;
	z-index: 10;
	top: 0;
	left: 0;
	margin-right: 20px;
}
.heading7:before, .heading7:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    box-shadow: 0 1px 4px #aaa;
    -moz-box-shadow: 0 1px 4px #aaa;
    -webkit-box-shadow: 0 1px 4px #aaa;
}
.heading7:before {
    background: rgba(255,255,255,0.5);
    top: 0;
    left: 0;
    z-index: -10;
}
.heading7:after {
    background: #87cefa;
    top: 8px;
    left: 8px;
    z-index: -20;
}

.heading8{
	position:relative;
	padding-left:20px;
	border-bottom-width: 2px;
	border-bottom-style: dotted;
	border-bottom-color: #ccc;
	font-size: 22px;
	line-height: 38px;
	margin-right: 20px;
}
 
.heading8:before{
    content: "□";
    font-size: 200%;
    position: absolute;
    color: #ff6b6e;
    top: -0.6em;
    left: 0.3em;
    height: 12px;
    width: 12px;
}
 
.heading8:after{
    content: "□";
    font-size: 200%;
    position: absolute;
    color: #B92A2C;
    top: -0.3em;
    left: 0;
    height: 12px;
    width: 12px;
}

/*------------------------------------------------------------
見出し風に文章のアクセントで使う場合
-------------------------------------------------------------*/

.heading1{
	position: relative;
	padding-left: 20px;
	border-bottom: 2px solid #ccc;
	font-weight: bold;
	line-height: 35px;
	margin-right: 20px;
}
 
.heading1:before{
	content:''; 
	height:12px; 
	width:12px; 
	display:block; 
	background:#00A8FF; 
	box-shadow: 0 0 5px rgba(255, 255, 255, 0.3) inset;
	-box-shadow: 0 0 5px rgba(255, 255, 255, 0.3) inset;
	-webkit-box-shadow: 0 0 5px rgba(255, 255, 255, 0.3) inset;
	-moz-box-shadow: 0 0 5px rgba(255, 255, 255, 0.3) inset; 
	position:absolute; 
	top:-0px; 
	left:5px;
	transform:rotate(-50deg);
	-webkit-transform:rotate(-50deg);
	-moz-transform:rotate(-50deg);
	-o-transform:rotate(-50deg);
	-ms-transform:rotate(-50deg);
}
.heading1:after{
	content:''; 
	height:8px; 
	width:6px; 
	display:block; 
	background:#00A8FF; 
	box-shadow: 0 0 5px rgba(255, 255, 255, 0.3) inset;
	-box-shadow: 0 0 5px rgba(255, 255, 255, 0.3) inset;
	-webkit-box-shadow: 0 0 5px rgba(255, 255, 255, 0.3) inset;
	-moz-box-shadow: 0 0 5px rgba(255, 255, 255, 0.3) inset; 
	position:absolute; 
	top:16px; 
	left:2px;
	transform:rotate(-90deg);
	-webkit-transform:rotate(-90deg);
	-moz-transform:rotate(-90deg);
	-o-transform:rotate(-90deg);
	-ms-transform:rotate(-75deg);
}


.heading2{
	position:relative;
	padding-left:30px;
	border-bottom-width: 2px;
	border-bottom-style: dotted;
	border-bottom-color: #ccc;
	font-weight: bold;
	line-height: 38px;
	margin-right: 20px;
}
 
.heading2:before{
	content:''; 
	border-radius:30px;
	-webkit-border-radius:30px;
	-moz-border-radius:30px; 
	height:12px; 
	width:12px; 
	display:block; 
	position:absolute; 
	top:14px; 
	left:7px; 
	background-color:#6B0CE8;
	box-shadow: 0 0 2px 2px rgba(255,255,255,0.2) inset;
	filter:alpha(opacity=50);
	-moz-opacity:0.50;
	-khtml-opacity: 0.50;
	opacity:0.50;
	z-index: 1;
}
 
.heading2:after{
	content:''; 
	border-radius:30px;
	-webkit-border-radius:30px;
	-moz-border-radius:30px; 
	height:15px; 
	width:15px; 
	display:block; 
	position:absolute; 
	top:7px; 
	left:2px; 
	background-color:#00A8FF;
	box-shadow: 0 0 2px 2px rgba(255,255,255,0.2) inset
}



.heading3{
	position:relative;
	padding:9px;
	padding-left:15px;
	font-weight: bold;
	font-size: 18px;
	background-color: #51A2C1;
	color: #fff;
	margin-right: 20px;
	border-radius:3px;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
}
 
.heading3:before{
	content:''; 
	height:25px; 
	width:2px; 
	display:block; 
	position:absolute; 
	top:5px; 
	left:4px; 
	background-color:#fff;
	border-left: 4px solid #fff;
	border-radius:3px;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
}

.heading4{
	position: relative;
	padding-left: 20px;
	font-weight: bold;
	line-height: 30px;
	margin-right: 20px;
	border-bottom-width: 2px;
	border-bottom-style: dotted;
	border-bottom-color: #ccc;
}
 
.heading4:before{
	content:''; 
	height:12px; 
	width:12px; 
	display:block; 
	background:#00A8FF; 
	box-shadow: 0 0 5px rgba(255, 255, 255, 0.3) inset;
	-box-shadow: 0 0 5px rgba(255, 255, 255, 0.3) inset;
	-webkit-box-shadow: 0 0 5px rgba(255, 255, 255, 0.3) inset;
	-moz-box-shadow: 0 0 5px rgba(255, 255, 255, 0.3) inset; 
	position:absolute; 
	top:-0px; 
	left:5px;
	transform:rotate(-50deg);
	-webkit-transform:rotate(-50deg);
	-moz-transform:rotate(-50deg);
	-o-transform:rotate(-50deg);
	-ms-transform:rotate(-50deg);
}
.heading4:after{
	content:''; 
	height:8px; 
	width:6px; 
	display:block; 
	background:#00A8FF; 
	box-shadow: 0 0 5px rgba(255, 255, 255, 0.3) inset;
	-box-shadow: 0 0 5px rgba(255, 255, 255, 0.3) inset;
	-webkit-box-shadow: 0 0 5px rgba(255, 255, 255, 0.3) inset;
	-moz-box-shadow: 0 0 5px rgba(255, 255, 255, 0.3) inset; 
	position:absolute; 
	top:16px; 
	left:2px;
	transform:rotate(-90deg);
	-webkit-transform:rotate(-90deg);
	-moz-transform:rotate(-90deg);
	-o-transform:rotate(-90deg);
	-ms-transform:rotate(-75deg);
}

/*------------------------------------------------------------
シンプルなボックス風
-------------------------------------------------------------*/

.div1{
	background-color: #fff;
	padding:10px 10px;
	border:1px solid #bbb;
	border-radius: 2px;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset,
                0 0 2px rgba(255, 255, 255, 0.3) inset,
                0 0 10px rgba(0, 0, 0, 0.1) inset,
                0 1px 20px rgba(0, 0, 0, 0.1);
}

.div2{
     border: 3px double #ddd;
     padding: 10px 10px;
     border-radius: 2px;
}

.div2{
     border: 3px double #ddd;
     padding: 10px 10px;
     border-radius: 2px;
}


.div3{
     color: #fff;
     padding: 10px 10px;
     background:rgba(0,0,0,.9);
     border: 1px dotted #eee;
     box-shadow:0px 0px 1px 3px rgba(0, 0, 0, 1);
}
.div4{
     color: #0c3f12;
     padding: 10px 10px;
     background:#efe3d1;
     border: 1px dotted #a28d6f;
     box-shadow:0px 0px 1px 3px #efe3d1;
}
.div5{
     color: #257fd3;
     padding: 10px 10px;
     background:#e9f8f4;
     border: 1px dotted #4f9e89;
     box-shadow:0px 0px 1px 3px #e9f8f4;
}
.div6{
     color: #0c3f12;
     padding: 10px 10px;
     background:#efe3d1;
     border: 1px dotted #a28d6f;
     box-shadow:0px 0px 1px 3px #efe3d1;
}
.div7{
	color: #000033;
	padding: 10px 10px;
	border: 1px dotted #0066CC;
	box-shadow: 0px 0px 1px 3px #e9f0f8;
	background-color: #CCE0F7;
}
.div8{
	color: #660000;
	padding: 10px 10px;
	border: 1px dotted #9e4f63;
	box-shadow: 0px 0px 1px 3px #f8e9f8;
	background-color: #FFE8E8;
}

/*----幅を調整した飾り枠をPタグに反映するV-----*/

.width60 {width: 60%;}
.width70 {width: 70%;}
.width80 {width: 80%;}
.width90 {width: 90%;}
.width300px {width: 280px;}

.tx-waku1 { 
    border:solid 1px #2d2d2d;  
    background:#ddf4fa; 
    padding:10px 20px 10px 20px;  
    -moz-border-radius: 5px;  
    -webkit-border-radius: 5px; 
    border-radius: 5px;
    width: 80%;
}

/* 楽天ウィジェット用 ---------------------------- */
@media only screen and (min-width: 481px){
#rakuten300 {       display:none;}
}
@media screen and (max-width: 480px){
#rakuten336 {       display:none;}
}

/* プラグイン SNS Count Cache用 ---------------------------- */
div .s_sbm{ margin-top: -20px; }
.s_sbm ul{
    list-style:none;
    letter-spacing: -.40em;
    }
.s_sbm li{
    display:inline-block;
    color: #666;
    text-align:center;
    width:25%;
    letter-spacing: normal;
    }
.s_sbm li a{
    color:#FFF;
    padding:10px 0;
    display:block;
    }
.s_sbm li.sf a{ background-color:#3b5998;}
.s_sbm li.sf a:hover{ color:#3b5998; background-color:#EEE;}
.s_sbm li.st a{ background-color:#33ccff;}
.s_sbm li.st a:hover{ color:#33ccff; background-color:#EEE;}
.s_sbm li.sh a{ background-color:#008fde;}
.s_sbm li.sh a:hover{ color:#008fde; background-color:#EEE;}
.s_sbm li.sg a{ background-color:#da4c36;}
.s_sbm li.sg a:hover{ color:#da4c36; background-color:#EEE;}

/* リンクボタン
----------------------------------------------- */

.goods .goods_link {
	display: inline-block;
}

.goods .goods_link a {
	display: block;
	color: #666;
	background: #F5F5F5;
	margin-top: 5px;
	padding: 6px 8px 6px 10px;
	text-decoration: none;
	border: 1px solid #ddd;
	border-radius: 2px;
	position: relative;
	font-size: 14px;
}

.goods .goods_link a:before {
	font-size: 14px;
	color: #666;
	position: absolute;
	top: 6px;
	left: 8px;
}

.goods .goods_link a:hover {
	background: #FFF;
}

.top-in{
	font-weight: normal;
	font-size: 12px;
	line-height: 14px;
	padding: 10px;
}


/* おせちランキング専用追加コンテンツ
----------------------------------------------- */
.osechi-rank-l-flo{
	float: left;
	margin-right: 10px;
}	/* 左回りこみ */


.osechi-rank p {line-height:160%;}	/* 反映されない */

.div1-ren{
	background-color: #fff;
	padding: 10px 10px;
	border-radius: 2px;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset,
                0 0 2px rgba(255, 255, 255, 0.3) inset,
                0 0 10px rgba(0, 0, 0, 0.1) inset,
                0 1px 20px rgba(0, 0, 0, 0.1);
	border-top-width: 0px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #bbb;
	border-right-color: #bbb;
	border-bottom-color: #bbb;
	border-left-color: #bbb;
}

/*------------------------------------------------------------
17、ボタンデザイン
-------------------------------------------------------------*/

/*--共通設定---------*/
.btn0 {
	text-decoration: none;
	font-weight: normal;
	text-align: center;
	font-size: 13px;
}
/*--ボタン形状---------*/
.btn1 {
	background: #EEE;
	border: 1px solid #DDD;
	color: #111;
	padding: 10px 20px;
}
.btn2 {
	background: #EEE;
	border: 1px dotted #CCC;
	color: #111;
	padding: 10px 20px;
}
.btn3 {
	background: #EEE;
	border: 2px dotted #CCC;
	color: #111;
	padding: 10px 20px;
}
.btn4 {
	background: #EEE;
	border: 1px solid #DDD;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	color: #111;
	padding: 10px 20px;
}
.btn5 {
	background: #EEE;
	border: 1px solid #DDD;
	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	color: #111;
	padding: 10px 20px;
}
.btn6 {
	background: #EEE;
	border: 1px solid #DDD;
	border-radius: 20px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	color: #111;
	padding: 10px 20px;
}
.btn7 {
	background: #EEE;
	color: #111;
	border-top: 1px solid #FFF;
	border-left: 1px solid #FFF;
	border-right: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
	-moz-box-shadow: -1px -1px 1px rgba(000,000,000,0.3),1px 1px 1px rgba(255,255,255,1);
	-webkit-box-shadow: -1px -1px 1px rgba(000,000,000,0.3),1px 1px 1px rgba(255,255,255,1);
	padding: 10px 20px;
}
/*--ボタンカラー---------*/
.co1 {
	background: -moz-linear-gradient(top,#0099CC 0%,#006699);
	background: -webkit-gradient(linear, left top, left bottom, from(#0099CC), to(#006699));
	border: 2px solid #FFF;
	color: #FFF;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-box-shadow: 1px 1px 1px rgba(000,000,000,0.3);
	-webkit-box-shadow: 1px 1px 1px rgba(000,000,000,0.3);
	text-shadow: 0px 0px 3px rgba(0,0,0,0.5);
}
.co2 {
	background: -moz-linear-gradient(top,#BFD9E5, #3D95B7 50%,#0080B3 50%,#0099CC);
	background: -webkit-gradient(linear, left top, left bottom, from(#BFD9E5), color-stop(0.5,#3D95B7), color-stop(0.5,#0080B3), to(#0099CC));
	color: #FFF;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border: 1px solid #0099CC;
	-moz-box-shadow: 1px 1px 1px rgba(000,000,000,0.3),inset 0px 0px 3px rgba(255,255,255,0.5);
	-webkit-box-shadow: 1px 1px 1px rgba(000,000,000,0.3),inset 0px 0px 3px rgba(255,255,255,0.5);
	text-shadow: 0px 0px 3px rgba(0,0,0,0.5);
}
.co3 {
	background: -moz-linear-gradient(top,#20688A, #3F96B8 50%,#00679A 50%,#0081B4);
	background: -webkit-gradient(linear, left top, left bottom, from(#20688A), color-stop(0.5,#3F96B8), color-stop(0.5,#00679A), to(#0081B4));
	border: 1px solid #DDD;
	color: #FFF;
}
.co4 {
	background: -moz-linear-gradient(top,#0099CC 0%,#006699);
	background: -webkit-gradient(linear, left top, left bottom, from(#0099CC), to(#006699));
	border: 1px solid #DDD;
	color:#FFF;
}
.co5 {
	background: -moz-linear-gradient(top,#0099CC 0%,#006699);
	background: -moz-linear-gradient(top,#FFF 0%,#EEE);
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#EEE));
	border: 1px solid #DDD;
	color:#111;
}

.kakomiwaku001 {
	position: relative;
	border: solid 3px #95ccff;
	border-radius: 8px;
	margin-top: 2em;
	margin-right: 0;
	margin-bottom: 2em;
	margin-left: 0;
	padding-top: 0.5em;
	padding-right: 1em;
	padding-bottom: 1.5em;
	padding-left: 1em;
}
.kakomiwaku001 .box-title {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 19px;
    background: #FFF;
    color: #95ccff;
    font-weight: bold;
}
.kakomiwaku001 p {
	padding: 0;
	margin-top: 10px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}

.kakomiwaku002 {
	position: relative;
	border: solid 3px #95ccff;
	border-radius: 8px;
	margin-top: 2em;
	margin-right: 0;
	margin-bottom: 2em;
	margin-left: 0;
	padding-top: 0.5em;
	padding-right: 1em;
	padding-bottom: 1.5em;
	padding-left: 1em;
}
.kakomiwaku002 .box-title {
	position: absolute;
	display: inline-block;
	top: -13px;
	left: 10px;
	padding: 0 9px;
	line-height: 1;
	font-size: 17px;
	background: #FFF;
	color: #95ccff;
	font-weight: bold;
}
.kakomiwaku002 p {
	padding: 0;
	margin-top: 10px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}

.kakomiwaku003 {
	position: relative;
	border: solid 3px #82FBD0;
	border-radius: 8px;
	margin-top: 2em;
	margin-right: 0;
	margin-bottom: 2em;
	margin-left: 0;
	padding-top: 0.5em;
	padding-right: 1em;
	padding-bottom: 1.5em;
	padding-left: 1em;
}
.kakomiwaku003 .box-title {
	position: absolute;
	display: inline-block;
	top: -13px;
	left: 10px;
	padding: 0 9px;
	line-height: 1;
	font-size: 17px;
	background: #FFF;
	color: #82FBD0;
	font-weight: bold;
}
.kakomiwaku003 p {
	padding: 0;
	margin-top: 10px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}

.kakomiwaku004 {
	position: relative;
	border: solid 3px #FDD29F;
	border-radius: 8px;
	margin-top: 2em;
	margin-right: 0;
	margin-bottom: 2em;
	margin-left: 0;
	padding-top: 0.5em;
	padding-right: 1em;
	padding-bottom: 1.5em;
	padding-left: 1em;
}
.kakomiwaku004 .box-title {
	position: absolute;
	display: inline-block;
	top: -13px;
	left: 10px;
	padding: 0 9px;
	line-height: 1;
	font-size: 17px;
	background: #FFF;
	color: #FDD29F;
	font-weight: bold;
}
.kakomiwaku004 p {
	padding: 0;
	margin-top: 10px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}

.kakomiwaku005 {
	position: relative;
	border: solid 3px #FDCAF0;
	border-radius: 8px;
	margin-top: 2em;
	margin-right: 0;
	margin-bottom: 2em;
	margin-left: 0;
	padding-top: 0.5em;
	padding-right: 1em;
	padding-bottom: 1.5em;
	padding-left: 1em;
}
.kakomiwaku005 .box-title {
	position: absolute;
	display: inline-block;
	top: -13px;
	left: 10px;
	padding: 0 9px;
	line-height: 1;
	font-size: 17px;
	background: #FFF;
	color: #FDCAF0;
	font-weight: bold;
}
.kakomiwaku005 p {
	padding: 0;
	margin-top: 10px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}

.kakomiwaku006 {
	position: relative;
	border: solid 3px #D5D5D5;
	border-radius: 8px;
	margin-top: 2em;
	margin-right: 0;
	margin-bottom: 2em;
	margin-left: 0;
	padding-top: 0.5em;
	padding-right: 1em;
	padding-bottom: 1.5em;
	padding-left: 1em;
}
.kakomiwaku006 .box-title {
	position: absolute;
	display: inline-block;
	top: -13px;
	left: 10px;
	padding: 0 9px;
	line-height: 1;
	font-size: 17px;
	background: #FFF;
	color: #999999;
	font-weight: bold;
}
.kakomiwaku006 p {
	padding: 0;
	margin-top: 10px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}

.box26 {
    position: relative;
    margin: 2em 0;
    padding: 0.5em 1em;
    border: solid 3px #95ccff;
    border-radius: 8px;
}
.box26 .box-title {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 19px;
    background: #FFF;
    color: #95ccff;
    font-weight: bold;
}
.box26 p {
    margin: 0; 
    padding: 0;
}

/*--pickupランキング---------*/
.pickup-rank{
	margin-bottom: 13px;
}

/*--PCとスマホの画像切り替え---------*/
@media screen and (max-width: 979px) 
{
.pcview {display: none;}
.spview {display: block;}
}
.osechi {width: 100%;}
.osechi img {width: 100%;}
.pcview {}
.spview {display: none;}
@media screen and (max-width: 979px) {.pcview {display: none;}
.spview {display: block;}
}