
/*
===============================================

BASIC

===============================================
*/
*{
margin: 0;
padding: 0;
list-style: none;
box-sizing: border-box;
font-family: "メイリオ","Noto Sans JP", sans-serif;
}

html,body{
height: 100%;
}

.inner{
width: 1200px;
margin: 0 auto;
}

body{
padding-bottom: 90px;
min-height: 100%;
}

img{
width: 100%;
}

.section{
margin: 50px 0;
text-align: center;
padding: 40px 0;
}

body{
padding-top: 60px;
}

a:hover{
opacity: .5;
}

.sp{
display: none;
}


@media screen and ( max-width:699px ){
  .inner{
    width: 100%;
    padding: 0 10px;
  }
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
  .section{
    margin: 20px 0;
    padding: 20px 0;
  }
}
/*
===============================================

H E A D E R

===============================================
*/
#h{
width: 100%;
height: 60px;
padding: 10px;
display: flex;
justify-content: space-between;
position: fixed;
top:0;
left: 0;
z-index: 9999;
background: rgba(255,255,255,.7);
}

#h h1,
#h img{
width:auto;
height: 100%;
}

#h .menu span{
font-size: 40px;
}


/*
===============================================

N A V

===============================================
*/
#nav{
background: rgba(0, 0, 0, .8);
width: 100%;
height: 100%;
display: block;
position: fixed;
top: 0;
right: -100%;
z-index: 9999;
overflow: hidden;
overflow-y: scroll;
-webkit-transition: opacity .3s linear, right .1s ease-out;
-moz-transition: opacity .3s linear, right .1s ease-out;
-ms-transition: opacity .3s linear, right .1s ease-out;
-o-transition: opacity .3s linear, right .1s ease-out;
transition: opacity .3s linear, right .1s ease-out;
}

#nav.in{
right: 0;
}

#nav .nav{
width: 400px;
background: #fff;
height: 100%;
position: absolute;
right: -200%;
-webkit-transition: opacity .3s linear, right .5s ease-out;
-moz-transition: opacity .3s linear, right .5s ease-out;
-ms-transition: opacity .3s linear, right .5s ease-out;
-o-transition: opacity .3s linear, right .5s ease-out;
transition: opacity .3s linear, right .5s ease-out;
}
#nav.in .nav{
right: 0;
}

#nav .nav h1{
width: 150px;
margin: 0 auto;
margin-top: 50px;
}

#nav .nav ul{
margin: 0 auto;
margin-top: 50px;
width: 250px;
text-align: center;
}

#nav .nav li{
margin-bottom: 30px;

}
#nav .nav li a{
letter-spacing: .2em;
color: #000;
text-decoration: none;
margin-bottom: 5px;
padding-bottom: 5px;
border-bottom: solid 1px #c69f7d;
}


#nav .nav li strong{
font-weight: normal;
}

#nav .nav .close{
color: #c69f7d;
position: absolute;
top:5px;
right: 5px;
cursor: pointer;
}

#nav .nav .close span{
font-size: 200%;
}


/*
===============================================

S E C I O N  C O N F I G

===============================================
*/

.section h1{
font-weight: 400;
font-size: 180%;
margin: 0 auto 30px auto;
}

.section strong{
font-family: "adobe-garamond-pro", serif;
display: inline-block;
font-weight: normal;
font-size: 140%;
width: auto;
letter-spacing: .2em;
border-bottom: solid 1px #000;
margin-bottom: 10px;
padding-bottom: 10px;
}

.section span{
display: block;
font-size: 60%;
font-family: "Noto Serif JP", serif;
}


@media screen and ( max-width:699px ){
  .section strong{
    letter-spacing: 0;
    line-height: 1;
    margin: 10px 0;
  }
}
/*
===============================================

S H O P S

===============================================
*/
#shops a{
color: #000;
text-decoration: none;
}


#shops h2{
text-align: center;
margin: 30px 0;
}

#shops h2 img{
width: auto;
}

#shops ul{
display: flex;
justify-content: space-between;
margin-top: 40px;
}

#shops li{
width: 30%;
text-align: center;
}

#shops li img{
width: auto;
height: 100px;
}

#shops .area li{
border: 1px solid black;
padding: 10px;
}

#shops .area strong{
display: block;
font-family: "Noto Serif JP", serif;
font-weight: normal;
font-size: 140%;
margin-bottom: 10px;
padding-bottom: 10px;
border-bottom: solid 1px #c69f7d;
}

#shops .area span{
text-transform:uppercase;
}


@media screen and ( max-width:699px ){
  #shops ul{
    flex-wrap: wrap;
  }
  #shops li{
    width: %;
    margin-bottom: 20px;
  }
  
  #shops li img{
    height: 65px;
  }
  
  #shops .area strong{
    white-space: nowrap;
  }
  #shops .area strong span{
    display: block;
    font-size: 1rem;
  }
}

/*
===============================================

S H O P L I S T

===============================================
*/
#shoplist a{
color: #000;
text-decoration: none;
}


#shoplist .body dl{
display: inline-block;
vertical-align: top;
margin: 0 20px;
text-align: left;
}

#shoplist .body dt{
margin-bottom: 10px;
font-size: 110%;
}

#shoplist .body dt:before,
#shoplist .body dd:before{
content: "▲";
display: inline-block;
transform: rotate(90deg);
margin-right: 5px;
}
#shoplist .body dd:before{
color: #ECD5C1;
}



@media screen and ( max-width:699px ){
  #shoplist .body dl{
    display: block;
    width: 60%;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}


/*
===============================================

F O O T E R

===============================================
*/
footer{
width: 100%;
background: #ECD5C1;
height: 90px;
display: table;
}

footer .inner{
display: table-cell;
text-align: center;
vertical-align: middle;
}
footer small{
color: #fff;
line-height: 100%;
}
