@charset "utf-8";

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

  common.css
  Copyright(c) murmur in tha Soda All Rights Reserved.

  Layout
    01.reset style
    02.base style
    03.layout style

  module
    04.etc

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


/* ///////////////////////////////////////////////////////////////

 01.reset style

/////////////////////////////////////////////////////////////// */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    outline:0;
}

img {
	border: 0;
}

html {
  height:100%;
}
body {
  background-color:#fff;
  height:100%;
  line-height:1;
}

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

ul,
nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

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

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background-color: transparent;
    outline:none;
}


/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

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

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}



/* ///////////////////////////////////////////////////////////////

 02.base style

/////////////////////////////////////////////////////////////// */

body {
  font-size:12px;
  font-family:"ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
  color:#444;
  text-align:center;
}

/* -- Link color -- */
a {
  overflow:hidden;
}

a:link {
  color:#4185e7;
  text-decoration:none;
}

a:visited {
  color:#61c;
  text-decoration:none;
}

a:hover{
  color:#ffa800;
  text-decoration:underline;
}

a:active {
  color:#cc0033;
  text-decoration:underline;
}



/* ///////////////////////////////////////////////////////////////

 03.layout style（ここにレイアウト用のCSSを記述する）

/////////////////////////////////////////////////////////////// */
/* --------wrapper---------- */
.wrapper {
	width: 900px;
	margin: 0 auto;
}
/* --------header---------- */
.header {
	width: 900px;
}

.header li {
	float:left;
}
.g-navi {
	width: 640px;
	margin: 25px auto 20px 110px;
}
.logo {
	width:150px;
}
.about {
	width: 90px;
	background-image:url('../images/gnav_about_hover.png');
	background-repeat:no-repeat;
}
.online-shop {
	width: 90px;
	background-image:url('../images/gnav_onlineshop_hover.png');
	background-repeat:no-repeat;
}
.shoplist {
	width: 93px;
	background-image:url('../images/gnav_shoplist_hover.png');
	background-repeat:no-repeat;
}
.works {
	width: 77px;
	background-image:url('../images/gnav_works_hover.png');
	background-repeat:no-repeat;
	}
.blog {
	width: 74px;
	background-image:url('../images/gnav_blog_hover.png');
	background-repeat:no-repeat;	
	}
.contact {
	width: 66px;
	background-image:url('../images/gnav_contact_hover.png');
	background-repeat:no-repeat;
	}
	
/* --------main---------- */
.main {
	width:900px;
	text-align:center;
	margin-bottom:10px;
}

/* --------footer---------- */
.footer {
	width: 616px;
	margin: 0 auto;
	padding-bottom: 30px;
}
.footer ul {
	/* width:93px; */
	float:right;
}
.footer li {
	float:left;
}
.twi-icon {
	width:31px;
	background-image:url('../images/icon_twitter_hover.png');
	background-repeat:no-repeat;
}
.fb-icon {
	width:31px;
	background-image:url('../images/icon_fb_hover.png');
	background-repeat:no-repeat;
}
.vimeo-icon {
	width:31px;
	background-image:url('../images/icon_vimeo_hover.png');
	background-repeat:no-repeat;
}
.instagram-icon {
  width:39px;
}

.copy {
	font-size: 10px;
	text-align:center;
}


/* slider area */
.slider-wrapper {
  text-align: center;
}

#slider { /* sliderの表示サイズ（固定） */
  width: 600px;
  height: 400px;
  overflow: hidden;
  margin: 0 auto;
}


/* adout page */
.concept-area {
  line-height: 2.5em;
  padding-bottom: 15px;
}

.concept-area h2 {
  font-size: 16px;
  padding-bottom: 35px;
}

.concept-area p {
  margin-bottom: 1em;
}


/* shoplist page */

.shop-list-area {
  line-height: 2.5em;
}

.shop-list-area h2 {
  font-size: 16px;
  padding-bottom: 35px;
}

.shop-list-area ul {
  margin-top: 10px;
}

.shop-list-area ul li {
  padding-bottom: 3em;
}



/* ///////////////////////////////////////////////////////////////

 04.etc

/////////////////////////////////////////////////////////////// */

/* -- clearfix -- */
/* for modern brouser */
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
/* IE7,MacIE5 */
.clearfix {
  display: inline-block;
}
/* WinIE6 below, Exclude MacIE5 */
* html .clearfix {
  height: 1%;
}
.clearfix {
  display: block;
}