/* CSS Document */
/**
 *     reset
 ***********************/
body {
	background: none;
	line-height: 1.6;
}
figure,figcaption {
	margin: 0;
	padding: 0;
}
#hd {
	width: 95%;
	max-width: 960px;
	height: auto;
}
#hd .logo {
	text-align: left;
	position: relative;
	left: 0;
	top: 0;
}
#hnav {
	width: 95%;
	max-width: 960px;
	height: auto;
	margin-bottom: 5%;
}
#hnav img {
	width: 100%;
	height: auto;
}
#hnav .bg {
	width: 100%;
	height: auto;
	background: none;
	margin-left: 0px;
}
#hnav ul {
	padding-left: 0px;
}
#ft .nav {
	width: 95%;
	max-width: 960px;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-flex-wrap: wrap; 
	flex-wrap: wrap; 
}
#ft .nav .main,
#ft .nav .avance,
#ft .nav .nailavance,
#ft .nav .eyeavance {
	flex-basis: 240px;
	padding: 0;
}
a:hover img {
	opacity: 1;
	filter: alpha(opacity=100);
}
a {
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

/**
 *     basic
 ***********************/
body * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;	
}
img {
	vertical-align: bottom;
}
span.nw { 
	white-space: nowrap;
}
.w100 img {
	width: 100%;
	height: auto;
}
section {
	position: relative;
}
.inner1280 {
	width: 100%;
	height: auto;
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
}
.inner1150 {
	width: 90%;
	height: auto;
	max-width: 1150px;
	margin-right: auto;
	margin-left: auto;
}
.inner950 {
	width: 90%;
	height: auto;
	max-width: 950px;
	margin-right: auto;
	margin-left: auto;
}
.inner800 {
	width: 90%;
	height: auto;
	max-width: 800px;
	margin-right: auto;
	margin-left: auto;
}


/**
 *     text
 ***********************/
.vertical {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.text_center {
	text-align: center;
}
.centering {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
			    transform: translate(-50%, -50%);
	z-index: 1;
}

/**
 *     flex
 ***********************/
.flex {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  /* flex-wrap */
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
  /* justify-content */
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
  /* align-items */
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  /* align-content */
	-ms-flex-line-pack: start;
	align-content: flex-start;
}
.flex.around {
	-webkit-justify-content: space-around;
	        justify-content: space-around;
}
.flex.clm2 li {
	width: calc(100% / 2 - 1%);
	margin-bottom: 30px;
	text-align: center;
	line-height: normal;
}
.flex.clm3 li {
	width: calc(100% / 3 - 1%);
	margin-bottom: 20px;
	text-align: center;
	line-height: normal;
}
.flex.clm3::after{
	content: "";
	display: block;
	width: calc(100% / 3 - 1%);
}
.flex.clm4 li {
	width: calc(100% / 4 - 1%);
	margin-bottom: 10px;
	text-align: center;
}
.flex.clm4::before,
.flex.clm4::after{
	content:"";
	display: block;
	width: calc(100% / 4 - 1%);
}
.flex.clm4::before{
	order:1;
}
.reverse{
  -webkit-box-direction: reverse;
     -moz-box-direction: reverse;
	-webkit-flex-direction: row-reverse;
			    flex-direction: row-reverse;
}
.flexcentering {
  /* flex */
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  /* flex-wrap */
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
  /* justify-content */
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
  /* align-items */
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

/**
 *     responsive
 ***********************/
.pc_none {
	display: none;
}
.sp_none {
	display: block;
}

/**
 *     position
 ***********************/
.relative {
	position: relative;
}
.absolute {
	position: absolute;
}
.fixed {
	position: fixed;
}
.hideAnchor {
	display: block;
	height: 0px;
	overflow: hidden;
	cursor: default;
	pointer-events: none;
	outline: none;
	font-size: 0px;
	text-indent: -9999px;
	padding-top: 80px;
	margin-top: -80px;
}
.clearfix:after {
	content:"";
	display:block;
	clear:both;
}

/**
 *     utility
 ***********************/
.mb_50 {
  margin-bottom: 50px;
}
.pankuzu {
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: left;
  padding-left: 50px;
  padding-right: 5px;
}
.u_line {
  display: inline-block;
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 20px;
  font-size: 200%;
}
.u_line::after {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: #C4C4C4;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.f24 {
	font-size: 24px;
}
.f20 {
	font-size: 20px;
}
.f18 {
	font-size: 18px;
}
.f13 {
	font-size: 13px;
}
/**
 *  shoplist
**********************/
.shop.sec {
    border: 1px solid #eee;
    margin: 0 auto;
    padding: 16px;
    text-align: left;
    margin-bottom: 8%;
}
.shop.sec .title_wrap{
    text-align: center;
    margin-bottom: 1.5em;
}
.shop.sec .flexbox{
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}
.shop.sec h3 span {
    display: none;
}
.shop.sec .address{
    margin-bottom: 1em;
    width: 198px;
    margin-left: auto;
    margin-right: auto;
}
.shop.sec .photo_wrap{
    margin-right: 1em;
}
.shop.sec .photo{
    text-align: center;
}
.shop.sec h3 {
    text-align: center;
    font-size: 100%;
    margin-top: 30px;
}
.shop.sec ul li a {
    display: block;
    color: #222;
    padding-left: 25px;
    width: 100%;
    height: 30px;
    line-height: 30px;
    text-decoration: none;
    background: url(http://l-bamboo.com/img/share/arw1.gif) 10px 50% no-repeat;
}

@media screen and (max-width:480px) {
	
/**
 *     basic
 ***********************/
.inner1150 {
	width: 95%;
}
.inner950 {
	width: 95%;
}
.inner800 {
	width: 100%;
}
	
/**
 *     flex
 ***********************/
.flex.clm2 li {
	width: calc(100%);
	margin-bottom: 20px;
}
.flex.clm3 li {
	width: calc(100% / 2 - 1%);
}
.flex.clm3::after{
	width: calc(100% / 2 - 1%);
}
.flex.clm4 li {
	width: calc(100% / 2 - 1%);
	margin-bottom: 20px;
}
.flex.clm4::before,
.flex.clm4::after{
	width: calc(100% / 2 - 1%);
}
	
/**
 *     responsive
 ***********************/
.pc_none {
	display: block;
}
.sp_none {
	display: none;
}

/**
 *     font-size
 ***********************/
.f24 {
	font-size: 15px;
}
.f18 {
	font-size: 12px;
}
    
    .shop.sec h3 {
        margin-bottom: 30px;
    }
}
