@charset "utf-8";


/*PC・タブレット・スマホ共通設定
---------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	font: 16px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";	/*文字サイズ、行間、フォントファミリー*/
	color: #333;	/*全体の文字色*/
	background: #FFF;	/*全体の背景色*/
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure{
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type: none;
}
img {
	border: none;
	vertical-align: bottom;
}
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

table , td, th {
	border: 1px solid #595959;
	border-collapse: collapse;
}

th {
	background: #f0e6cc;
}
.even {
	background: #fbf8f0;
}
.odd {
	background: #fefcf9;
}




/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #333;	/*リンクテキストの色*/
}
a:hover {
	color: #336AC9;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*コンテナー（HPを囲むブロック　※footerを除く）
---------------------------------------------------------------------------*/
#container {
	width: 980px;	/*コンテナー幅*/
	margin: 0px auto;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 100px;	/*高さ*/
	position: relative;
}
/*ロゴ画像*/
header #logo {
	position: absolute;
	left: 0px;	/*ヘッダーブロックに対して左から0pxの場所に配置*/
	top: 20px;	/*ヘッダーブロックに対して上から15pxの場所に配置*/
}

header #tel {
    width: 300px;
    position: absolute;
    right: 0px;
    top: 30px;
}


/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	padding-top: 20px;
}
/*トップページのコンテンツ*/
#top #contents {
	padding-top: 0px;
}



/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: right;	/*右側に回り込み（※２カラム使用時）*/
	width: 730px;	/*メインコンテンツ幅（※２カラム使用時）*/
	padding-bottom: 30px;
}
/*１カラム使用時のメインコンテンツ*/
.c1 #main {
	float: none;
	width: 100%;
}
/*mainコンテンツのh2タグの設定*/
#main h2 {
	clear: both;
	margin-bottom: 15px;
	font-size: 120%;
	color: #FFFFFF;		/*文字色#424242*/
	background: #136ab1;	/*背景色#E6E6E6*/
	padding: 8px 15px;	/*上下、左右への余白*/
	border-bottom: 5px solid #013971;	/*下線の幅、線種、色#D8D8D8*/
}
/*mainコンテンツのちょっと大きめ見出し用h2タグの設定*/
#main h2.type1 {
	padding: 20px 15px;		/*上下、左右への余白*/
	font-size: 20px;		/*文字サイズ*/
	font-weight: normal;	/*hタグのデフォルトの太字を標準にする設定*/
	letter-spacing: 0.2em;	/*文字間隔を空ける設定*/
	border: none;
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	clear: both;
	margin-top: 15px;
	margin-bottom: 15px;
	font-size: 100%;
	background: #FFF;	/*背景色*/
	padding: 2px 15px;	/*上下、左右への余白*/
	border-top: 1px solid #ccc;			/*上の線の幅、線種、色*/
	border-right: 1px solid #ccc;		/*右の線の幅、線種、色*/
	border-bottom: 3px solid #336AC9;	/*下の線の幅、線種、色*/
	border-left: 1px solid #ccc;		/*左の線の幅、線種、色*/
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 10px 15px 15px;	/*上、左右、下への余白*/
}
#main p + p {
	padding-top: 0px;
}
#main h2 + p,
#main h3 + p {
	padding-top: 0px;
	margin-top: -5px;
}



/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	background: #2A0A0A;	/*背景色*/
	color: #FFF;			/*文字色*/
	padding-top: 15px;
	padding-bottom: 15px;
}
/*copyrightの設定*/
footer small {
	clear: both;
	display: block;
}
/*フッター内のリンク設定*/
footer a {
	color: #FFF;	/*文字色*/
	text-decoration: none;
}
footer a:hover {
	color: #FC0;	/*マウスオン時の文字色*/
}

/*フッターメニュー設定
---------------------------------------------------------------------------*/
.footermenu {
	text-align: left;
	width: 982px;
	margin: 0px auto;
	margin-bottom: 20px;
	overflow: hidden;
	font-size: 11px;	/*文字サイズ*/
}
.footermenu ul {
	float: left;
	width: 22.8%;	/*１列あたりの幅*/
	height: 130px;	/*１列あたりの高さ。※メニュー量に応じて調整して下さい。*/
	border-right: 1px solid #71d3f3;	/*列ごとの右側に入る線の設定*/
	padding-left: 20px;	/*境界線との間にとるスペース*/
}
/*１つめのulタグにのみ左側に線を入れる設定*/
.footermenu ul:first-child {
	border-left: 1px solid #71d3f3;
}


/*その他
---------------------------------------------------------------------------*/
    
}
img.fl {
    float: left;
    margin-right: 5%;
    margin-left: 2%;
    margin-bottom: 10px;
    max-width: 100%;
}
img.fl2 {
	float: none;
	margin-right: 7%;
    margin-left: 7%;
	margin-bottom: 10px;
    max-width: 83%;
}
img.fl3 {
    float: none;
    margin-right: 7%;
    margin-left: 7%;
    margin-bottom: 20px;
    max-width: 83%;
}
img.fr {
    float: right;
	margin-right: 5%;
    margin-bottom: 10px;
    max-width: 45%;
}
figcaption {
	font-size: 11px;
}
.sortbox {
	text-align: right;
	margin-bottom: 15px;
	border-top: 1px solid #999;
	border-bottom: 1px solid #999;
	padding: 10px;
	background: #FFF;
}
.big1 {
	font-size: 130%;
}
img {
	max-width: 100%;
	height: auto;
}
.newicon {
	background: #F00;
	color: #FFF;
	font-size: 10px;
	padding: 0px 5px;
	border-radius: 2px;
	margin: 0px 5px;
}
#menubar_hdr {
	display: none;
}

/*以下、CMS用追加
---------------------------------------------------------------------------*/
#search {
	text-align: center;
	padding: 10px 0;
}
.w {
	width: 120px !important;
	margin-right: 3px !important;
}
.btn-d {
	width: auto !important;
	padding: 3px 15px 5px !important;
	margin-bottom: 0 !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	font-size: 13px !important;
}


/*ここからタブレット用（481px～800px）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (min-width:481px) and (max-width:800px){

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
	margin: 0px 15px;
}
    
/*上部のメインメニュー
---------------------------------------------------------------------------*/


/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}

/*商品一覧ページ用ボックス
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list,
.c1 #main section.list {
	margin: 0px 1.5% 15px;
	width: 22%;
	height: 220px;
}
/*ボックス内の写真設定*/
#main section.list a figure img {
	width: 100%;
	height: auto;
	padding: 3%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

/*フッターメニュー設定
---------------------------------------------------------------------------*/
.footermenu {
	width: auto;
}
.footermenu ul {
	width: 25%;
	padding-left: 2%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

/*その他
---------------------------------------------------------------------------*/
/*<body class="s-n">指定の場合にsubブロックを表示させない設定*/
body.s-n #sub {
	display: none;
}









/*ここからスマートフォン用（480px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (max-width : 480px){

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
	margin: 0px 10px;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 60px;
}
/*ロゴ画像*/
header #logo {
	width: 150px;
	position: absolute;
	left: 0px;
	top: -10px;
}
    /*電話番号*/
header #tel {
    width: 200px;
    top:0;
}
    


/*上部のメインメニュー
---------------------------------------------------------------------------*/

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 5px 1em;	/*左から、上、左右、下への余白*/
}



/*フッターメニュー設定
---------------------------------------------------------------------------*/
.footermenu {
	width: auto;
}
.footermenu ul {
	width: 50%;
	padding-left: 2%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border-bottom: 1px solid #71d3f3;
}

/*table
---------------------------------------------------------------------------*/
table.smile{
    width:100%;
 }
      
/*entryボタン
---------------------------------------------------------*/
.entry img{
    width: 100%;   
}


@media screen and (min-width:1041px) {
	/*--------------------------------------------------------- #mv */
	#mv {
		margin:0 auto;
		width:1040px;
	}
	#mv .slick-list {
		overflow:visible;
	}
}
/*================================================================================
  (max-width:767px)
==================================================================================*/
@media screen and (max-width:767px) {
	/*--------------------------------------------------------- #contents */
	#contents > .line {
		background-image:url(../img/index_bg_01@2x.png);
		background-size:3px 5px;
	}

.tel {
    position: right;
}

