.body *,
p,a,h1,h2,h3,li,dt,dd
{
  font-family: Verdana, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

/* =============================================================================
   Base
   ========================================================================== */

/*
 * Corrects block display not defined in IE6/7/8/9 & FF3
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
	display: block;
}

/*
 * 1. Improves visual focus of mouse in all browsers
 * 2. Corrects text resizing oddly when font size is set using ems in IE6/7
 *    http://clagnut.com/blog/348/#c790
 * 3. Corrects page centering in all browsers regardless of content height
 * 4. Improves visual appearance of containers during a delegated click in mSaf
 *    www.yuiblog.com/blog/2010/10/01/quick-tip-customizing-the-mobile-safari-tap-highlight-color/
 * 5. Corrects text resizing oddly after orientation change in all handhelds
 *    www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
 */

html {
	cursor: default; /* 1 */
	font-size: 100%; /* 2 */
	overflow-y: scroll; /* 3 */
	-webkit-tap-highlight-color: transparent; /* 4 */
	-ms-text-size-adjust: 100%; /* 5 */
	-webkit-text-size-adjust: 100%; /* 5 */
}

/*
 * 1. Addresses text resizing limitations in IE6/7
 *    Improves text sizing inconsistency in all browsers
 *    Known issue: text sizing unnecessary for 'form'
 * 2. Improves margins set oddly in IE6/7 FF3/4 S5 C10
 */

body,
form,
input,
button,
select,
textarea {
	font-size: 100%; /* 1 */
	margin: 0; /* 2 */
}


/* =============================================================================
   Links
   ========================================================================== */

/*
 * Improves appearance when active or hovered in all browsers
 * people.opera.com/patrickl/experiments/keyboard/test
 */

a,
a:active,
a:hover {
	outline: none;
}

/*
 * Addresses outline set oddly in C10
 */

a:focus {
	outline: thin dotted;
}


/* =============================================================================
   Typography
   ========================================================================== */

/*
 * Corrects styling not present in IE6/7/8/9 S5 C10
 */

abbr {
	_border-bottom: expression(this.title ? '1px dotted' : 'none');
}

abbr[title] {
	border-bottom: 1px dotted;
}

/*
 * Corrects style set incorrectly as 'bolder' in FF3/4 S4/5 C10
*/

b,
strong {
	font-weight: bold;
}

/*
 * Corrects styling not present in S5 C10
 */

dfn {
	font-style: italic;
}

/*
 * Corrects styling not present in IE6/7/8/9
 */

mark {
	background: #FF0;
	color: #000;
}

/*
 * Corrects font family displayed oddly in IE6 S5 C10
 * en.wikipedia.org/wiki/User:Davidgothberg/Test59
 */

pre,
code,
kbd,
samp {
	font-family: monospace, monospace;
	_font-family: 'courier new', monospace;
	font-size: 1em;
}

/*
 * Improves readability of pre-formatted text in all browsers
 */

pre {
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}

/*
 * Addresses CSS quotes not supported in IE6/7
 */

q {
	quotes: none;
}

/*
 * Addresses quote property not supported in S4
 */

q:before,
q:after {
	content: '';
	content: none;
}

/*
 * Improves appearance in all browsers
 */

small,
sub,
sup {
	font-size: 75%;
}

/*
 * Improves appearance in all browsers
 * gist.github.com/413930
 */

sub,
sup {
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}


/* =============================================================================
   Lists
   ========================================================================== */

/*
 * Improves appearance of navigation-specific lists
 */

nav ul {
	list-style: none;
}

/* =============================================================================
   Embedded content
   ========================================================================== */

/*
 * Corrects display not defined in IE6/7/8/9 & FF3
 */

audio[controls],
canvas,
video {
	display: inline-block;
	*display: inline;
}

audio {
	display: none;
	_display: expression(this.controls ? 'inline' : 'none');
	*zoom: 1;
}

audio[controls] {
	display: inline-block;
}

/*
 * 1. Improves readability when inside 'a' in all browsers
 * 2. Improves visual appearance when scaled in IE7
 *    code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
 */

img {
	border: 0; /* 1 */
	-ms-interpolation-mode: bicubic; /* 2 */
}

/*
 * Corrects overflow displayed oddly in IE9
 */

svg:not(:root) {
    overflow: hidden;
}


/* =============================================================================
   Forms
   ========================================================================== */

/*
 * Corrects alignment displayed oddly in IE6/7
 */

legend {
	*margin-left: -7px;
}

/*
 * Improves appearance in all browsers
 */

button,
input,
select,
textarea {
	-webkit-appearance: none;
	border-radius: 0;
	vertical-align: baseline;
	*vertical-align: middle;
}

/*
 * 1. Corrects FF3/4 setting it using !important in the UA stylesheet
 * 2. Corrects spacing displayed oddly in IE6/7
 * 3. Corrects inability to style clickable 'input' types in iOS
 */

button,
input {
	line-height: normal; /* 1 */
	_overflow: expression(this.type == 'button|reset|submit' ? 'visible' : ''); /* 2 */
}

/* 3 */

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	overflow: visible;
}

/*
 * Addresses box sizing forced to border-box in IE6/7
 */

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
}

/*
 * Addresses sizing set oddly to searchfield in S5 iOS C10
 * Known issue: -moz included to future-proof
 */

input[type="search"] {
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

/*
 * Addresses inner padding displayed oddly in S5 C10 on OSX
 */

input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/*
 * Corrects appearance displayed oddly in FF3/4
 * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

/*
 * 1. Corrects scrollbar displayed oddly in IE6/7/8/9
 * 2. Improves readability and alignment in all browsers
 */

textarea {
	overflow: auto; /* 1 */
	vertical-align: top; /* 2 */
}

/* =============================================================================
   Tables
   ========================================================================== */

/*
 * Improves visual appearance in all browsers
 */

table {
	border-collapse: collapse;
	border-spacing: 0;
}



/*============================
全体
============================*/
body{
  margin: 0;
  padding: 0;
  /* background-image: url(https://u.jimcdn.com/cms/o/scfa488f7ab062abc/userlayout/img/header-bgs.png?t=1434398944); */
  background-repeat: no-repeat;
  background-position:center -360px;
}
body.cc-page-index{
  background-position: center top;
}

/*============================
ヘッダ
============================*/
header#header{
  height: 182px;
  margin:0 auto;
  position: relative;
  background-image: url(https://u.jimcdn.com/cms/o/scfa488f7ab062abc/userlayout/img/mainimg-bg1.png?t=1434398966);

}
.cc-page-index header#header{
  height:544px
}

header#header .information{
  width: 1200px;
  height: 90px;
  margin:0 auto;
  background-color: rgba(72,51,32,0.8);
  position: relative;
  z-index: 200;
}
header#header .information h1.title{
  margin:0px;
  float:left;
  position: relative;
  margin:15px 0px 0px 15px;
}

header#header .information .info{
  float:right;
  margin:8px 0 0 0;
  width:500px; /*ヘッダ２店舗バージョン*/
  /*width:240px;*/
}
header#header .information .info ul{
  padding:0px;
  margin:0px;
}
header#header .information .info li{
  float:left;
  width:240px;
  overflow:hidden;
  list-style: none;
}
header#header .information .info h2,h3{
  font-weight: normal;
  margin:0px;
}
header#header .information .info h2,
header#header .information .info h3{
  color:#fff;
}
header#header .information .info h2{
  font-size:16px;
}
header#header .information .info h3{
  font-size:14px;
}
header#header .information .info h3 a{
  font-weight: normal;
  color:#ffcb04;
}
header#header .information .info address{
  font-size:28px;
  line-height:32px;
  font-style:normal;
  color:#ffcb04;
}

/*メイン画像部分*/
header#header .image{
  display:none;
}
.cc-page-index header#header .image{
  display:block;
  position:absolute;
  z-index: 1;
  width:1200px;
  height:529px;
  top:0px;
  left:50%;
  margin:0 0 0 -600px;
  z-index:50;
}
.cc-page-index header#header .image .mainimg{
}

header#header .bg{
  position: absolute;
  bottom:0px;
  width:100%;
  min-width:1150px;
  height:148px;
  z-index:100;
}
header#header .bg img{
  width:100%;
  height:148px;
}

header#header .bg2{
  display: none;
}
.cc-page-index header#header .bg2{
  display:block;
  position: absolute;
  bottom:0;
  width:1544px;
  left:50%;
  margin:0 0 0 -772px;
  z-index:150;
}
.cc-page-index header#header .bg2 .mainimg_parts1,
.cc-page-index header#header .bg2 .mainimg_parts2{
  position: absolute;
  z-index:150;
  bottom:0px;
}
.cc-page-index header#header .bg2 .mainimg_parts1{
  width:229px;
  height:179px;
  left:0px;
}
.cc-page-index header#header .bg2 .mainimg_parts2{
  width:174px;
  height:261px;
  right:25px;
}



.cc-page-index header#header .image .catch{
  background-color: rgba(0,0,0,0.4);
  z-index: 999;
  padding:0 10px 0 10px;
  position: absolute;
  top:190px;
  right:120px;
}
.cc-page-index header#header .image .catch *{
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
.cc-page-index header#header .image .catch h1{
  color:#fff;
  font-size:34px;
  text-align: center;
  margin:0px 0px 10px 0px;

}
.cc-page-index header#header .image .catch .open{
  color:#fff;
  font-size:34px;
  text-align: center;
  color:#f00;
  margin:10px;
}
.cc-page-index header#header .image .catch p{
  color:#fff;
  text-align: center;
  font-size:18px;
  margin:0px 0px 10px 0px;

}

/*============================
コンテンツ部分
============================*/
#body{
  width:980px;
  margin:25px auto;
}
#sub{
  width:187px;
  float:right;
}
#main{
  width:780px;
  float: left;
}
/*============================
サイドバー
============================*/
#sub ul,
#sub li,
#sub dl,
#sub dt,
#sub dd
{
  padding:0px;
  margin:0px;
  list-style: none;
}

/*ナビ*/
#navi{
  margin-bottom:15px;
}
#navi ul.mainNav1 ul{
  padding:0 0 0 15px;
}
#navi ul li{
  margin-bottom:2px;
}

#navi ul li a{
  display: block;
  background-color:#fbf4e6;
  padding:8px 0 8px 8px;
  text-decoration: none;
  color:#666;
  font-size:16px;
}
#navi ul li a:hover{
  text-decoration: underline;
  color:#333;
}
#navi ul.mainNav1>li:nth-child(even)>a{
  background-color:#d8c7a2;
}
#navi ul.mainNav1>li:nth-child(odd)>a{
  background-color:#ecdec0;
}

/*バナーエリア*/
#sub .banner li{
  margin-bottom:15px;
}

/*地図エリア*/
#sub .map{
  margin-bottom:15px;
}
#sub .map dt{
  background-image: url(https://u.jimcdn.com/cms/o/scfa488f7ab062abc/userlayout/img/side-map-bg.png?t=1434399014);
  background-position: left top;
  background-repeat: no-repeat;
  padding:5px 0 5px 8px;
  font-siza:16px;
}
#sub .map dd{
  margin-bottom:15px;
}

/*============================
フッタ
============================*/
footer#footer{
  border-top:10px solid #482f32;
  text-align: center;
}

#footMenu{
  width:980px;
  margin:20px auto;
}

footer#footer ul{
  margin:0 0 25px 0;
  padding:70px 0 10px 100px;
  list-style-type: none;
  background-image: url(https://u.jimcdn.com/cms/o/scfa488f7ab062abc/userlayout/img/footer-mark.png?t=1434398928);
  background-position: left bottom;
  background-repeat: no-repeat;
  border-bottom: 1px solid #482f32;
}
footer#footer ul li{
  float:left;
  padding:0 0 0 30px;
}
footer#footer ul li a{
  color:#666;
  text-decoration: none;
}
footer#footer ul li a:hover{
  text-decoration:underline;
}

/*============================
コンテンツ
============================*/
#main h1{
  background-image:url(https://u.jimcdn.com/cms/o/scfa488f7ab062abc/userlayout/img/title-bg.png?t=1434399024);
  background-position: left bottom;
  background-repeat: no-repeat;
  padding:5px 8px;
  color:#333;
  font-size:26px;
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
#main h2{
  font-size:21px;
  font-weight:bold;
  padding:3px 5px 3px 15px;
  border-left:10px solid #b19d90;
}
#main h3{
  border-bottom:1px solid #b19d90;
  margin-right:45px;
}


/*============================
ブログ
============================*/
/*日付*/
.cc-page-index #main .datetime{
  position: relative;
  width:127px;
  height:34px;
  background-image: url(https://u.jimcdn.com/cms/o/scfa488f7ab062abc/userlayout/img/topicdate-bg.png?t=1434399034);
  background-position: left top;
  background-repeat: no-repeat;
  color:#fff;
  margin-left:-3px;
}
.cc-page-index #main .datetime p{
  margin:0px;
  padding:0px;
  color:#fff;
  font-size:16px;
  line-height:18px;
  width:40px;
}
.cc-page-index #main .datetime .dt-hide{
  display: none;
}
.cc-page-index #main .datetime .mon{
  position: absolute;
  left:10px;
  top:3px;
  text-align:right;
  padding:0 1px 0 0;
}
.cc-page-index #main .datetime .day{
  position: absolute;
  right:10px;
  top:3px;
  text-align:left;
  width:50px;
}
.cc-page-index #main .datetime .day::after{
  content:"";
}

/* ブログ部分 */
.cc-page-index #main .blogselection:after{
  content:"";
  clear: both;
  display: block;
}
.cc-page-index #main .blogselection{
  zoom:1;
  padding-bottom:10px;
  margin-left:-7px;
}
.cc-page-index #main .j-blogarticle{
  width:240px;
  height:266px;
  border:1px solid #e3d5b6;
  padding:5px;
  overflow: hidden;
  position: relative;
  float:left;
  margin:0 0 10px 7px;

}
.cc-page-index #main .j-blogarticle h2{
  font-size:14px;
}
.cc-page-index #main .j-blogarticle figure{
  margin:0px;
  padding:0px;
}
.cc-page-index #main .j-blogarticle img{
  width:238px;
}
.cc-page-index #main .j-blogarticle .blogreadmore{
  display:block;
  position: absolute;
  bottom:0px;
  left:0px;
  width:100%;
  height:18px;
  line-height:18px;
  text-align: center;
  background-color: #fff;
}
.cc-page-index #main .j-blogarticle .blogreadmore:hover{
  background-color: #999;
  color:#fff;
}


/*============================
汎用
============================*/
.clrfix:after{
  display:block;
  content:"";
  clear: both;
}