@charset "UTF-8";

/* ==========================================================================
   Setting
========================================================================== */
:root {
  --white: #FFF;
  --l-gray: #F4F5F8;
  --l-gray2: #F0F0F0;
  --l-gray3: #E2E2E2;
  --gray: #9E9E9E;
  --d-gray: #5D5D5D;
  --dd-gray: #333;
  --black: #000;
  --black-h: #434343;
  --border1: #D6D6D6;
  --border2: #BFBFBF;
  --color1: #463A28;
  --color1-h: #3E321F;
  --color2: #986F16;
  --color2-h: #8E650D;
  --red: #8E0505;

  --font1: "Cormorant Garamond", serif;
  --font2: "Bodoni Moda", serif;
  --gothic: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  --mincho: "Shippori Mincho B1", "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Noto Serif JP", serif;
  --mincho2: "Hina Mincho", "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Noto Serif JP", serif;
}

/* ==========================================================================
   Loading
========================================================================== */
body #container::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--l-gray2) url(../img/loading.svg) no-repeat center center / 5em;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 994;
  transition: 1s cubic-bezier(0.39, 0.575, 0.565, 1);
}
body.loaded #container::before {
  opacity: 0;
  pointer-events: none;
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* ==========================================================================
   Animation
========================================================================== */
.iv {
  opacity: 0;
}
@keyframes pulsate {
  0% {
    transform: scale(1);
    opacity: .5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ==========================================================================
   Base
========================================================================== */
html {
  font-family: var(--mincho);
  font-size: 87.5%;
  font-weight: 400;
  line-height: 2;
  letter-spacing: .1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
@media (max-width: 374px) {
  html {
    font-size: 3.734vw;
  }
}

body {
  color: var(--dd-gray);
}
body.navOpen {
  height: 100%;
  overflow: hidden;
}
@media (min-width: 992px) {
  body.pagegroup__basic.navOpen,
  body.pagegroup__restaurant.navOpen {
    height: auto;
    overflow: auto;
  }
}


#content {
  padding-top: 21rem;
}
@media (max-width: 991px) {
  #mv + #content {
    padding-top: 6rem;
  }
}
@media (min-width: 992px) {
  #content {
    padding-top: 15rem;
  }
}


#content,
#content ~ * {
  position: relative;
  z-index: 2;
}

#main-content {
  position: relative;
  z-index: 2;
}

#bg {
  background: url(../img/bg.jpg) no-repeat center top / cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  max-height: 100vh;
}
#bg.fixed {
  position: fixed;
}

.sticky-block {
  position: sticky;
  top: 0;
}

@media (max-width: 991px) {
  ._pc {
    display: none !important;
  }
}
@media (min-width: 992px) {
  ._sp {
    display: none !important;
  }
}

/* ==========================================================================
   Header
========================================================================== */
#siteHeader {
  color: var(--white);
  height: 90px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 990;
  mix-blend-mode: difference;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
}
#siteHeader.standby {
  opacity: 0;
}
#siteHeader.fixed {
  position: fixed;
}
#siteHeader:has(.on) {
  position: fixed !important;
  opacity: 1 !important;
}
body:has(#mv) #siteHeader:not(.fixed) {
  mix-blend-mode: normal;
}

@media (max-width: 991px) {
  #siteHeader {
    position: absolute!important;
  }
  #siteHeader.fixed .nav-btn {
    position: fixed;
  }
  #siteHeader:has(.gNav.on) {
    mix-blend-mode: normal;
  }
}
@media (min-width: 992px) {
  #siteHeader {
    height: 15em;
  }
}




.inner-header {
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

.header-l {
  position: relative;
}
.header-logo {
  margin: 0;
  padding: 40px 7.5vw 0;
  line-height: 1;
  position: relative;
}
.header-logo .logo__inner {
  display: block;
  width: 2.142em;
  color: inherit;
  transition: none;
}
.header-logo .logo__inner img {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-r {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 5;
}

@media (min-width: 992px) {
  .inner-header {
    font-size: min(1rem, .98vw);
    padding: 0 4.286em;
  }
  .header-logo {
    padding: 6.5em 0 0;
  }
  .header-logo .logo__inner {
    width: 2.571em;
  }
  .header-r {
    flex-basis: 100%;
  }
}



/* ==========================================================================
   Navigation
========================================================================== */
nav a {
  display: block;
  text-decoration: none;
}

nav ul {
  display: flex;
  border-bottom: 0;
  margin: 0;
}
nav ul li a {
  display: block;
  color: inherit;
  text-decoration: none;
  line-height: 1.5;
}
nav ul li a span {
  display: block;
}
nav ul li a em {
  display: block;
  font-family: var(--font1);
  font-style: normal;
  font-size: 1em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
}


.gNav__inner {
  display: flex;
  width: 100%;
  height: 100%;
}
.gNav nav {
  display: flex;
  width: 100%;
}
.gNav nav ul li a {
  line-height: 1.5rem;
  position: relative;
  transition: color .2s;
}
.gNav .main-nav > li > a {
  font-size: 1.143em;
  font-weight: 500;
}

/* Nav Btn */
.nav-btn {
  background: transparent;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 90px;
  height: 90px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 999;
  cursor: pointer;
}
.nav-btn::after {
  content: 'menu';
  font-family: var(--font1);
  font-weight: 500;
  letter-spacing: .2em;
  padding-left: .2em;
  display: block;
  position: absolute;
  top: calc(50% + 15px);
  right: 0;
  left: 0;
  margin: 0 auto;
  transition: opacity .2s;
}
.nav-btn i {
  display: block;
  background: currentColor;
  width: 42.5%;
  height: 2px;
  position: absolute;
  right: 0;
  left: 0;
  margin: -1px auto 0;
  transition: transform .2s, top .2s .2s;
}
.nav-btn i:nth-of-type(1) { 
  top: calc(50% - 5px); 
}
.nav-btn i:nth-of-type(2) { 
  top: calc(50% + 5px); 
}


.gNav.on .nav-btn {
  position: fixed;
  color: var(--white);
}
.gNav.on .nav-btn i {
  transition: transform .2s .2s, top .2s;
}
.gNav.on .nav-btn i:nth-of-type(1) {
  top: 50%;
  transform: rotate(45deg);
}
.gNav.on .nav-btn i:nth-of-type(2) {
  top: 50%;
  transform: rotate(-45deg);
}
.gNav.on .nav-btn::after {
  opacity: 0;
}



/* ==========================================================================
   PC Navigation
========================================================================== */
@media (min-width: 992px) {
  .gNav {
    flex: 1 1 100%;
    max-width: 100%;
    height: 100%;
    position: relative;
    z-index: 5;
    display: block !important;
  }
  .gNav nav,
  .gNav .nav-row,
  .gNav ul {
    justify-content: flex-end;
    align-items: center;
  }
  .gNav .main-nav li a {
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 1em 1vw;
    font-size: 1.071em;
  }
  .gNav .navBar_inner {
    display: flex;
    align-items: center;
    height: 100%;
    padding-bottom: 2em;
  }
  .gNav .navBar_inner .main-nav {
    padding: 0 2.4vw;
  }
  .gNav .navBar_inner .main-nav > li > a > span {
    position: relative;
  }
  .gNav .navBar_inner .main-nav > li > a > span:before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: currentColor;
    opacity: .5;
    position: absolute;
    top: calc(100% + .25em);
    right: 0;
    left: 0;
    margin: 0 auto;
    transform: scale(0,1);
    transform-origin: right top;
    transition: transform 0.2s;
  }
  .gNav .navBar_inner .main-nav > li:hover > a > span:before {
    transform: scale(1,1);
    transform-origin: left top;
  }
  .gNav ul li a em {
    display: none;
  }


  .book-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5.715em;
    height: 5.715em;
    line-height: 1.25;
    letter-spacing: .1em;
    position: relative;
    z-index: 1;
  }
  .book-link::before,
  .book-link::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 1px solid currentColor;
    opacity: .5;
    position: absolute;
    top: 0;
    left: 0;
  }
  .book-link::after {
    opacity: 0;
    z-index: -1;
  }
  .book-link:hover::after {
    animation: pulsate 1.6s linear infinite;
  }


  .nav-btn {
    display: none;
  }
}


/* ==========================================================================
   SP Navigation
========================================================================== */
@media (max-width: 991px) {
  .gNav__inner {
    width: 100%;
    max-width: 31.38rem;
    background: var(--color1);
    color: var(--white);
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    padding-top: 90px;
    opacity: 0;
    transform: translateX(10%);
    pointer-events: none;
    transition: opacity .4s cubic-bezier(0.19, 1, 0.22, 1), transform .4s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .gNav nav {
    flex-direction: column;
    justify-content: flex-start;
  }
  .gNav .navBar_inner {
    height: 100%;
    overflow-y: auto;
    padding: 0 1.5em;
  }
  .gNav nav ul {
    max-width: 25.75em;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 2.5rem;
    flex-direction: column;
  }
  .gNav .main-nav li > a {
    padding: .75em 0;
    display: block;
  }

  .gNav .main-nav li > a > span {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0;
  }
  .gNav .main-nav li > a > span::after {
    content: attr(data-en);
    font-family: var(--font1);
    font-size: .929rem;
    font-weight: 400;
    letter-spacing: .16em;
    display: block;
  }


  .gNav__bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    text-align: center;
    padding: 2.5rem 0;
  }


  /* OPEN */
  .gNav.on {
    display: block;
  }
  .gNav.on .gNav__inner {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }


  #siteHeader ul.sns-nav li a {
    justify-content: space-between;
  }
  #siteHeader ul.sns-nav li a .ttl span {
    font-size: 1.071rem;
  }

  .sub-nav {
    margin: 3rem 0 4rem;
  }
  .book-link {
    display: inline-block;
    text-align: center;
    font-family: inherit;
    font-size: 1em;
    line-height: 1.5;
    font-weight: 400;
    padding: 1em 1.25em;
    width: 100%;
    max-width: 100%;
    background: transparent;
    color: var(--white);
    border: 1px solid currentColor;
    text-decoration: none;
    position: relative;
    transition: .2s ease-in-out;
    transition-property: background, border, color;
  }
  .book-link br {
    display: none;
  }

}

/* ==========================================================================
   Book Navigation
========================================================================== */
.bookNav {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 666!important;
}
.bookNav__inner {
  display: block;
  width: 100%;
  background: var(--color1);
  color: var(--white);
  padding-bottom: 4.286rem;
  position: fixed;
  right: 0;
  bottom: 0;

  opacity: 0;
  transform: translateY(10vh);
  pointer-events: none;
  transition: opacity .4s cubic-bezier(0.19, 1, 0.22, 1), transform .4s cubic-bezier(0.19, 1, 0.22, 1);
}
.bookNav .bookNav__inner > div {
  height: 100%;
  overflow: hidden;
}
.bookNav .nav-book-row {
  padding: 2rem 7.5%;
  border-bottom: 1px solid rgba(255,255,255,.1);
  height: 100%;
  overflow-y: auto;
}
.bookNav .nav-book-row dl {
  max-width: 40em;
  margin-right: auto;
  margin-left: auto;
}
.bookNav .nav-book-row dd .btn {
  border-color: currentColor;
}

.bookNav.on .bookNav__inner {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


.book-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color1);
  color: var(--white);
  white-space: nowrap;
  text-align: center;
  width: 100%;
  height: 4.286rem;
  padding: 0 7.5%;
  letter-spacing: .2em;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 99;
  cursor: pointer;
}
.book-btn::after {
  content: '';
  display: block;
  width: .6em;
  height: .6em;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: translateY(25%) rotate(-45deg);
}
.bookNav.on .book-btn::after {
  transform: rotate(135deg);
}
.book-btn > * {
  transition: opacity .2s;
}
.book-btn:hover > * {
  opacity: .5;
}
@media (min-width: 992px) {
  .bookNav {
    display: none;
  }
}


/* ==========================================================================
   Book List
========================================================================== */
.nav-book-row dl {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.nav-book-row dt {
  margin-bottom: 2rem;
  font-size: .929rem;
  line-height: 1.5;
  letter-spacing: .12em;
}
.nav-book-row dt span {
  display: block;
  font-size: 1.077rem;
  margin-bottom: .25em;
}
.nav-book-row dd p {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.75;
}
.nav-book-row dd.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 4%;
}
.nav-book-row dd.buttons > * {
  width: 100%;
  margin-bottom: 5%;
}
.nav-book-row dd.buttons > *:last-child {
  margin-bottom: 0;
}
.nav-book-row .btn {
  width: 100%;
}
.nav-book-row .tel-txt {
  display: inline-flex;
  align-items: center;
}
.nav-book-row .tel-txt .num {
  display: inline-block;
  font-size: 2em;
  letter-spacing: .1em;
  line-height: 1;
}
.nav-book-row .reception {
  font-family: var(--gothic);
}

@media (min-width: 576px) {
  .nav-book-row dd.buttons > * {
    width: 48%;
    margin-bottom: 3%;
  }
}

/* ==========================================================================
   Footer Information
========================================================================== */
#footer-info .cont-ttl h2.ttl {
  font-size: 1.429rem;
  margin: auto;
}
@media (min-width: 768px) {
  #footer-info .nav-book-row dl {
    text-align: left;
  }
}
@media (min-width: 992px) {
  #footer-info .cont-ttl h2.ttl {
    font-size: 2.143rem;
    margin: 0;
  }
}

/* ==========================================================================
   Footer SNS
========================================================================== */
ul.sns-nav li a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font1);
  line-height: 1.5em;
  transition: none;
  font-size: 1em;
  letter-spacing: .16em;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  padding: .5em 0;
  position: relative;
}
ul.sns-nav li a .ttl {
  display: flex;
  align-items: center;
  gap: .5em;
  letter-spacing: inherit;
  line-height: 1;
}
ul.sns-nav li a svg {
  fill: currentColor;
  width: 1em;
  height: 1em;
  transform: translateY(5%);
}


#footer-sns ul.sns-nav li a {
  flex-direction: column;
  gap: .5rem;
  height: 21.429rem;
  padding: 4rem 7.5%;
  margin-bottom: 1.5em;
  color: var(--white);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
#footer-sns ul.sns-nav li a > *{
  position: relative;
  z-index: 1;
}
#footer-sns ul.sns-nav li a::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: var(--black);
  opacity: 0.3;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 575px) {
  #footer-sns ul.sns-nav li a {
    justify-content: flex-end;
  }
  #footer-sns ul.sns-nav li a .ttl {
    flex-direction: column;
  }
  #footer-sns ul.sns-nav li a svg + span{
    margin-left: 0;
  }
}
@media (min-width: 576px) {
  #footer-sns ul.sns-nav li a {
    align-items: flex-end;
  }
  #footer-sns ul.sns-nav li a .ttl {
    flex-direction: row-reverse;
  }
}


#footer-sns ul.sns-nav li.instagram a {
  background-image: url(../img/instagram_bg.jpg);
}


/* ==========================================================================
   Footer
========================================================================== */
#siteFooter {
  clear: both;
  overflow: hidden;
  padding: 3.5rem 0 7.5rem;
}
#siteFooter a:hover {
  opacity: 0.5;
}
@media (min-width: 992px) {
  #siteFooter {
    padding: 6rem 0 1rem;
  }
}


#siteFooter .menu-block {
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}
#siteFooter .menu-block > .en_ttl {
  line-height: 1.75;
  margin-bottom: 1rem;
}
#siteFooter .menu-block p span {
  display: inline-block;
}
@media (min-width: 768px) {
  #siteFooter .menu-block {
    padding-left: 7.5rem;
  }
  #siteFooter .menu-block > .en_ttl {
    margin-bottom: 0;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg) translateX(calc((100% + 1.25rem)*-1));
    transform-origin: 0% 0%;
  }
}
@media (min-width: 992px) {
  #siteFooter .menu-block {
    padding-left: 4rem;
  }
}
@media (min-width: 1200px) {
  #siteFooter .menu-block {
    max-width: 51rem;
    padding-left: 6rem;
  }
  #siteFooter .menu-block:last-child {
    max-width: 31rem;
  }
}


#siteFooter .navBar_inner {
  font-size: .923rem;
}
#siteFooter .navBar_inner > ul {
  flex-wrap: wrap;
}
#siteFooter .navBar_inner > ul > li {
  flex: 0 0 calc(100%/2);
}
#siteFooter .navBar_inner > ul > li > a {
  display: flex;
  align-items: center;
  font-size: 1.077rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 1em 0;
}
#siteFooter .navBar_inner > ul > li > a svg {
  margin-left: .5em;
}
@media (min-width: 768px) {
  #siteFooter .navBar_inner > ul > li {
    flex: 0 0 calc(100%/3);
  }
}


#siteFooter .footer-bottom {
  font-size: .857rem;
  margin-bottom: 3rem;
}
#siteFooter .footer-bottom-nav ul {
  flex-direction: column;
}
#siteFooter .footer-bottom-nav ul li a {
  padding: .75em 0;
}
#siteFooter .copyright p {
  margin-top: 0;
}
@media (max-width: 575px) {
  #siteFooter .navBar_inner > ul > li:nth-of-type(odd) {
    flex: 0 0 55%;
  }
  #siteFooter .navBar_inner > ul > li:nth-of-type(even) {
    flex: 0 0 45%;
  }
}
@media (min-width: 768px) {
  #siteFooter .footer-bottom {
    text-align: left;
  }
  #siteFooter .copyright p {
    text-align: right;
  }
}

@media (min-width: 768px) {
.float-nav {
    font-family: "Shippori Mincho B1", "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Noto Serif JP", serif;
	display: block!important;
	width: 360px!important;
	right: 0;
	bottom: 0;
    position: fixed!important;
    z-index: 10;
}
.float-nav a {
    align-items: center;
    color: #fff;
    display: flex;
    justify-content: center;
    line-height: 1;
    padding: 18px 0 6px;
    margin: 0;
    background: #463a28!important;
    font-weight: 600;
    font-size: 15px;
    height: 60px!important;
    width: 100%!important;
}
.float-nav a .sub-text {
	text-align: center;
	border-radius: 27px;
	width: 70%;
	margin: auto;
	background-color: #fff;
	padding: 2px 0;
	position: absolute;
	top: -15%;
	box-sizing: border-box;
	left: 0;
	right: 0;
	font-size: 12px;
	font-weight: 600;
	color: #463a28;
}
}

.float-nav {
    width: 100%;
	right: 0;
	bottom: 0;
    position: fixed!important;
    z-index: 10;
}
.float-nav a {
    align-items: center;
    color: #fff;
    display: flex;
    justify-content: center;
    line-height: 1;
    padding: 18px 0 8px;
    width: 100%!important;
    background: #463a28!important;
    font-weight: 600;
    font-size: 14px;
    height: 60px!important;
}
.float-nav a .sub-text {
	text-align: center;
	border-radius: 27px;
	width: 70%;
	margin: auto;
	background-color: #fff;
	padding: 2px 0;
	position: absolute;
	top: -20%;
	box-sizing: border-box;
	left: 0;
	right: 0;
	font-size: 12px;
	font-weight: 600;
	color: #463a28;
}



/* ==========================================================================
   Footer Fair
========================================================================== */
ul.fair-foot li a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font1);
  line-height: 1.5em;
  transition: none;
  font-size: 1em;
  letter-spacing: .16em;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  padding: .5em 0;
  position: relative;
}
ul.fair-foot li a .ttl {
  display: flex;
  align-items: center;
  gap: .5em;
  letter-spacing: inherit;
  line-height: 1;
}
ul.fair-foot li a svg {
  fill: currentColor;
  width: 1em;
  height: 1em;
  transform: translateY(5%);
}


#footer-fairb ul.fair-foot li a {
  flex-direction: column;
  gap: .5rem;
  height: 21.429rem;
  padding: 4rem 7.5%;
  margin-bottom: 1.5em;
  color: var(--white);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
#footer-fairb ul.fair-foot li a > *{
  position: relative;
  z-index: 1;
}
#footer-fairb ul.fair-foot li a::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: var(--black);
  opacity: 0.3;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 575px) {
  #footer-fairb ul.fair-foot li a {
    justify-content: center;
  }
  #footer-sns ul.fair-foot li a .ttl {
    flex-direction: column;
  }
  #footer-fairb ul.fair-foot li a svg + span{
    margin-left: 0;
  }
}
@media (min-width: 576px) {
  #footer-fairb ul.fair-foot li a {
    align-items: center;
  }
  #footer-fairb ul.fair-foot li a .ttl {
    flex-direction: row-reverse;
  }
}


#footer-fairb ul.fair-foot li.cuisine_fair a {
  background-image: url(../img/cuisine_fair_bg.jpg);
}
#footer-fairb ul.fair-foot li.cuisine_fair a h3 {
    margin-bottom: 10px;
    font-size: 0.8em;
}

#footer-fairb ul.fair-foot li.cuisine_fair a p.fbtn {
    width: 300px;
    margin: 20px auto 0;
    border: solid 1px #FFF;
    text-align: center;
    padding: 15px 0;
}