@charset "utf-8";
/*-----------------------------------------------------

Common CSS
[LastUpDate:2015.12.25]

- Normailze
- Base Setting
- Common Layout
- Align

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

Normailze

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

audio , canvas , video {
  display: inline-block;
}

html.no-cssanimations audio , html.no-cssanimations canvas , html.no-cssanimations video {
  display: inline;
  zoom: 1;
}

audio:not([controls]) {
  display: none;
}

html {
  overflow-y: scroll;
  font-size: 100%;

  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
}

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

pre , code , kbd , samp {
  font-family: monospace, serif;
}

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

q {
  quotes: none;
}

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

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

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

img {
  /*max-width: 100%;*/
  height: auto;
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: bottom;
}

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

table {
  border-spacing: 0;
  border-collapse: collapse;
  font-family: inherit;
  font-size: 100%;
}

caption , th , td {
  text-align: left;
}

button , input , select , textarea {
  margin: 0;
  font-size: 100%;
  vertical-align: baseline;
}

button , input {
  line-height: normal;
}

html.no-postmessage button , html.no-postmessage input {
  overflow: visible;
}

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

button ,
input[type="button"] ,
input[type="reset"] ,
input[type="submit"] {
  cursor: pointer;

  -webkit-appearance: button;
}

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

  -webkit-appearance: textfield;
}

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

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;

  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  vertical-align: top;
}


/* Resetting default margin and padding
-------------------------------------------------*/
body , div , dl , dt , dd , ul , ol , li , h1 , h2 , h3 , h4 , h5 , h6 ,
object , iframe , pre , code , p , blockquote , form , fieldset , legend ,
table , th , td , caption , tbody , tfoot , thead {
  margin: 0;
  padding: 0;
}

h1 , h2 , h3 , h4 , h5 , h6 {
  font-size: 100%;
  line-height: 1.2;
}

ul {
  list-style: none;
  list-style-image: none;
}

em {
  font-style: normal;
}

small {
  font-size: 100%;
}

label {
  cursor: pointer;
}

textarea {
  overflow: auto;
}

legend {
  display: none;
}

fieldset {
  border: none;
}

input , textarea , select , label {
  font-family: inherit;
}

object {
  outline: none;
  vertical-align: middle;
}

abbr , acronym {
  border: none;
  font-variant: normal;
}

address , caption , cite , code , dfn , var {
  font-style: normal;
  font-weight: normal;
}

hr {
  display: none;
}

html.no-postmessage body , html.no-postmessage br {
  letter-spacing: 0;
}

html.no-postmessage div {
  zoom: 1;
}

/* Clearfix */
.clearfix {
  zoom: 1;
}

.clearfix:after {
  display: block;
  clear: both;
  content: "";
}

.c-both {
  clear: both;
}




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

Base Setting

-----------------------------------------------------*/
/*-----------------------------------------------------
Layout
-----------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

#wrap {
  position: relative;
}


/*-----------------------------------------------------
Link
-----------------------------------------------------*/
a:link {
  color: #b5251d;
  text-decoration: none;
}

a:visited {
  color: #b5251d;
}

a:hover , a:hover ,
a:hover , a:active {
  color: #b5251d;
  text-decoration: underline;
}

a.exlink::after{
  content: " ";
  display: inline-block;
  width: 12px;
  height: 10px;
  background-image: url(../img/icon_exlink_r.png);
  background-repeat: no-repeat;
  background-position: left top;
  padding-left: 4px;
  background-size: contain;
  vertical-align: top;
  margin: 4px 0 0 5px;
}
/* 767px以下のデバイス向け指定 */
@media screen and (max-width: 767px) {
  a.exlink::after{
    content: " ";
    display: inline-block;
    width: 8px;
    height: 6px;
    background-image: url(../img/icon_exlink_r.png);
    background-repeat: no-repeat;
    background-position: left top;
    padding-left: 4px;
    background-size: contain;
    vertical-align: top;
    margin: 2px 0 0 5px;
  }
}
.over:hover img {
  opacity: 0.80;

  filter: alpha(opacity=80);
}

.sp {
  display: none !important;
}
.br_pc{
  display: block !important;
}
.br_sp{
  display: none !important;
}
.inner {
  width: 970px;
  margin: 0 auto;
  box-sizing: border-box;
}


/* 767px以下のデバイス向け指定 */
@media screen and (max-width: 767px) {
  #wrap {
    width: 100%;
    min-width: 320px;
  }
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
  .br_sp{
    display: block !important;
  }
  .br_pc{
    display: none !important;
  }
  .inner {
    width: inherit;
    margin: 0 auto;
    box-sizing: border-box;
  }
}

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

  font

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

/*----------English----------*/
.en{
  font-family: serif;
}


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

Common Layout

-----------------------------------------------------*/
body {
  font-family: "ヒラギノ角ゴ Pro W3", hirakakupro-w3, "メイリオ", "meiryo", "ＭＳ Ｐゴシック", "ms pgothic", Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 13.5px;
  font-size: 1.35rem;
  line-height: 1.5;
}
/* for Chrome */
@media all and (-webkit-min-device-pixel-ratio:0) and (min-resolution: 0.001dpcm) {
  body {
    font-size: 1.35em;
  }
}
/* IE8, 9 */
html>/**/body body {
  font-family /*\**/: "ヒラギノ角ゴ Pro W3", hirakakupro-w3, "メイリオ", "meiryo", "ＭＳ Ｐゴシック", "ms pgothic", Arial, Helvetica, sans-serif\9;
}



/* 767px以下のデバイス向け指定 */
@media screen and (max-width: 767px) {
  body {
    font-size: 12px;
    font-size: 1.2rem;
  }
  @media all and (-webkit-min-device-pixel-ratio:0) and (min-resolution: 0.001dpcm) {
    body {
      font-size: 1.2em;
    }
  }
}

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

#content

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

#content {
  border-top: #b22222 solid 4px;
  background: url(../img/main_bg.png) no-repeat center top;
}

@media screen and (min-width: 768px) and (max-width: 970px) {
  #content {
    background-size: contain;
  }
}

@media screen and (max-width: 767px) {
  #content {
    background-image: url(../img/main_bg_sp.png);
    background-repeat: no-repeat;
    background-position:center top;
    background-size: contain;
  }
}


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

.inner

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

.inner {
  width: 970px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) and (max-width: 970px) {
  .inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .inner {
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
    padding: 0 25px;
  }
}


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

 visual area

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

#content #intro {
  margin-bottom: 90px;
}

#content h1.logo {
  width: 144px;
  margin: 0 auto 30px;
  padding-top:53px;
}
#content #shop-name {
  width: 400px;
  margin: 0 auto 40px;
  text-align: center;
  font-family: serif;
}
#content #shop-name h2 {
  width: 400px;
  margin: 0 auto 10px;
  font-size: 32px;
  font-size: 3.2rem;
  color: #b22222;
}
#content #shop-name p.branch {
  font-size: 27px;
  font-size: 2.7rem;
  color: #5b320e;
  letter-spacing: 0.1em;
}
#content .lead li{
  box-sizing: border-box;
  float: left;
  width: 50%;
  padding-right: 30px;
  line-height: 1.9;
}
#content .lead li.jp{
  color: #351d08;
}
#content .lead li.en{
  color: #5b310e;
  margin-right: 0!important;
}

@media screen and (max-width: 767px) {
  #content #intro {
    margin-bottom: 12.5000%;
  }
  #content .lead li{
    float: none;
    width: 100%;
    padding-right: 0;
    margin-bottom: 6.25%;
  }
  #content h1.logo {
    width: 22.8125%;
  }
  #content h1.logo img{
    width: 100%;
  }
  #content #shop-name {
    width: 100%;
  }
  #content #shop-name h2 {
    width: 100%;
    margin-bottom: 2.0000%;
    font-size: 18px;
    font-size: 1.8rem;
    text-align: center;
  }
  #content #shop-name p.branch {
    font-size: 14px;
    font-size: 1.4rem;
  }
}


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

 menu-sec

-----------------------------------------------------*/
#content #menu-sec {
  width: 100%;
  padding: 0 0 100px 0;
  background: url(../img/menu_bg.png) repeat center top;
}

#content #menu-sec h2 {
  width: 100%;
  padding-top:53px;
  background: #e8e8e8;
  padding: 30px 0;
  text-align: center;
  color: #351d08;
  font-size: 27px;
  font-size: 2.7rem;
  font-family: serif;
}
#content #menu-sec .inner {
  padding-top: 40px;
}
#content #menu-sec .lead {
  margin-bottom: 40px;
}
#content #menu-sec #menu-recommend {
  margin-bottom: 40px;
}
#content #menu-sec #menu-recommend li {
  position: relative;
  width: 24.5%;
  box-sizing: border-box;
  background-color: #ffffff;
  float: left;
  margin-right: 0.5%;
}
#content #menu-sec #menu-recommend li.last {
  margin-right: 0!important;
}
#content #menu-sec #menu-recommend li dt {
  position: absolute;
  width: 32px;
  top: 4%;
  left: 6%;
}

#content #menu-sec #menu-recommend li dd.photo {
  width: 80%;
  margin: 0 auto;
  padding: 10% 0 0 0;
}
#content #menu-sec #menu-recommend li dd.photo img {
  width: 100%;
}
#content #menu-sec #menu-recommend li dd.name {
  width: 80%;
  margin: 0 auto;
  padding: 10% 0 12% 0;
  text-align: center;
}
#content #menu-sec #menu-recommend li dd.name ul li {
  width: 100%;
  float: none;
}
#content #menu-sec #menu-recommend li dd.name ul li.jp {
  margin-bottom: 5px;
  color: #351d08;
}
#content #menu-sec #menu-recommend li dd.name ul li.en {
  color: #5b310e;
}

#content #menu-sec #menu-list p.image {
  background: #ffffff;
  width: 700px;
  margin: 0 auto;
  padding: 12px;
}


@media screen and (max-width: 767px) {
  #content #menu-sec {
    padding-bottom: 18%;
  }
  #content #menu-sec h2 {
    font-size: 18px;
    font-size: 1.8rem;
  }
  #content #menu-sec #menu-recommend li {
    width: 49%;
    box-sizing: border-box;
    margin: 0 2% 5% 0;
  }
  #content #menu-sec #menu-recommend li:nth-child(even) {
    margin-right: 0;
  }
  #content #menu-sec #menu-list p.image {
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 12px;
  }
  #content #menu-sec #menu-list p.image img {
    width: 100%;
  }
  #content #menu-sec #menu-list p.sp {
    width: 100%;
    margin: 5% auto 0;
    color: #ffffff;
    text-align: center;
  }
  #content #menu-sec #menu-list p.sp a {
    width: 100%;
    background: #b5251d;
    display: block;
    padding: 20px 0;
    color: #ffffff;
    border-radius: 4px; 
  }
  #content #menu-sec #menu-list p.sp a:hover {
    background: #bb2d2d;
    text-decoration: none;
    border-radius: 4px; 
  }
  #content #menu-sec #menu-list p.sp a.exlink::after {
    content: " ";
    display: inline-block;
    width: 8px;
    height: 6px;
    background-image: url(../img/icon_exlink.png);
    background-repeat: no-repeat;
    background-position: left top;
    padding-left: 4px;
    background-size: contain;
    vertical-align: top;
    margin: 2px 0 0 5px;
  }
}

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

 info-sec

-----------------------------------------------------*/
#content #info-sec {
  width: 100%;
  padding: 0 0 55px 0;
  background: url(../img/info_bg.png) repeat center top;
}

#content #info-sec h2 {
  width: 100%;
  padding-top:53px;
  background: url(../img/info_tit_bg.png) repeat center top;
  padding: 30px 0;
  text-align: center;
  color: #351d08;
  font-size: 27px;
  font-size: 2.7rem;
  font-family: serif;
}
#content #info-sec .inner {
  padding-top: 40px;
}

#content #info-sec .info-table  {
  width: 100%;
  margin-bottom: 40px;
}
#content #info-sec .info-table dt {
  display: block;
  width: 20%;
  clear: left;
  float: left;
  color:#351d08;
  font-weight: bold;
  padding: 0 0 40px 0;
  line-height: 1.8;
}
#content #info-sec .info-table dd {
  display: block;
  width: 80%;
  float: left;
  padding: 0 0 40px 0;
}
#content #info-sec .info-table dd strong {
  font-weight: bold;
}
#content #info-sec .info-table dd ul.detail-info {
  margin-bottom: 15px;
}

#content #info-sec .info-table dd ul.detail-info li {
  box-sizing: border-box;
  float: left;
  width: 50%;
  padding: 0 20px 0 0;
  line-height: 1.8;
}
#content #info-sec .info-table dd ul.detail-info li.jp{
  color: #4c4c4c;
}
#content #info-sec .info-table dd ul.detail-info li.en{
  color: #5b310e;
}
#content #info-sec .info-table dd p.detail-info{
  margin-bottom: 10px;
}
#content #info-sec .info-table dd ul.lang-btn li{
  width: 20%;
  text-align: center;
  float: left;
  margin-right: 3px;
}
#content #info-sec .info-table dd ul.lang-btn li a{
  box-sizing: border-box;
    width: 100%;
  background: #b5251d;
  display: block;
  padding: 10px 0 10px 5px;
  color: #ffffff;
  border-radius: 4px;
}
#content #info-sec .info-table dd ul.lang-btn li a::after{
  content: " ";
  display: inline-block;
  width: 12px;
  height: 10px;
  background-image: url(../img/icon_exlink.png);
  background-repeat: no-repeat;
  background-position: left top;
  padding-left: 4px;
  background-size: contain;
  vertical-align: top;
  margin: 4px 0 0 5px;
}
#content #info-sec .info-table dd ul.lang-btn li a:hover{
  background: #bb2d2d;
  text-decoration: none;
  border-radius: 4px; 
}
#content #info-sec .info-table dd ul.icon-list li {
  width: 30%;
  float: left;
}
#content #info-sec .info-table dd ul.icon-list li dl dt{
  display: block;
  width: 25%;
  clear: left;
  float: left;
  color:#351d08;
  font-weight: bold;
  line-height: 1.8;
  padding-bottom: 0!important;
}
#content #info-sec .info-table dd ul.icon-list li dl dd{
  display: block;
  width: 75%;
  float: left;
  line-height: 1.7;
  color: #4c4c4c;
}
#content #info-sec .info-table dd ul.icon-list li dl dd span.en{
  color: #5b310e;
}

#content #info-sec p#copyright{
  text-align: center;
}

@media screen and (max-width: 767px) {
  #content #info-sec h2 {
    font-size: 18px;
    font-size: 1.8rem;
  }

  #content #info-sec .info-table  {
    width: 100%;
    margin-bottom: 40px;
  }
  #content #info-sec .info-table dt {
    display: block;
    box-sizing: border-box;
    width: 100%;
    border-bottom: 2px solid #361d06;
    float: none;
    padding: 0 0 3px 0;
    margin-bottom: 10px;
  }
  #content #info-sec .info-table dt span.en::before{
  content: " / ";
  }
  #content #info-sec .info-table dd {
    display: block;
    width: 100%;
    float: none;
    padding: 0 0 3.125% 0;
  }
  #content #info-sec .info-table dd ul.detail-info {
    margin-bottom: 15px;
  }
  #content #info-sec .info-table dd ul.detail-info li {
    box-sizing: border-box;
    float: none;
    width: 100%;
    padding: 0 20px 0 0;
  }
  #content #info-sec .info-table dd ul.lang-btn {
    margin-bottom: 5%;
  }
  #content #info-sec .info-table dd ul.lang-btn li {
    width: 49.5%;
    margin: 0 1% 1% 0;
  }
  #content #info-sec .info-table dd ul.lang-btn li:nth-child(even) {
    margin-right: 0;
  }
  #content #info-sec .info-table dd ul.lang-btn li a::after{
    content: " ";
    display: inline-block;
    width: 8px;
    height: 6px;
    background-image: url(../img/icon_exlink.png);
    background-repeat: no-repeat;
    background-position: left top;
    padding-left: 4px;
    background-size: contain;
    vertical-align: top;
    margin: 2px 0 0 5px;
  }

  #content #info-sec .info-table dd ul.icon-list li {
    width: 50%;
  }
  #content #info-sec .info-table dd ul.icon-list li dl dt{
    width: 40px;
    border:none;
    margin-right: 10px;
  }
  #content #info-sec .info-table dd ul.icon-list li dl dd{
    display: block;
    width: 95px;
    float: left;
    line-height: 1.7;
    color: #4c4c4c;
  }
  #content #info-sec .info-table dd ul.icon-list li dl dd span.en{
    color: #5b310e;
  }
}

/* ポートレートモード向け指定（iPhone 6/6S/7 plus） */
@media screen and (max-width: 414px) {
  #content #info-sec .info-table dd ul.icon-list li dl dt{
    width: 30px;
  }
  #content #info-sec .info-table dd ul.icon-list li dl dt img{
    width: 100%;
  }
  #content #info-sec .info-table dd ul.icon-list li dl dd{
    line-height: 1.4;
  }
}

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

Pagetop

-----------------------------------------------------*/
#pagetop{
  position: fixed;
  bottom: 40px;
  right: 40px;
}

@media screen and (max-width: 767px) {
  #pagetop{
    width: 50px;
    bottom: 15px;
    right: 15px;
  }
  #pagetop img{
    width: 100%;
  }
}

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

Align

-----------------------------------------------------*/
.al-left {
  text-align: left;
}
.al-center {
  text-align: center;
}
.al-right {
  text-align: right;
}


