@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline; }

html {
  line-height: 1; }

ol, ul {
  list-style: none; }

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle; }

q, blockquote {
  quotes: none; }
  q:before, q:after, blockquote:before, blockquote:after {
    content: "";
    content: none; }

a img {
  border: none; }

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

html {
  box-sizing: border-box; }

*, *::after, *::before {
  box-sizing: inherit; }

/*  TOC 
01. GENERAL TYPOGRAPHY
02. STRUCTURE
*/
/*
=================================================================================
00. GLOBAL SETTINGS & VARIAVLES FOR SASS, COMPASS, BOURBON & NEAT
================================================================================= */
/* SETTINGS
--------------------------------------------- */
/* VARIABLES
--------------------------------------------- */
/* MEDIA QUERY BREAKPOINTS
--------------------------------------------- */
/*
=================================================================================
01. TYPOGRAPHY
================================================================================= */
/* IMPORT FONTS
--------------------------------------------- */
@font-face {
  font-family: mplus-1c-regular;
  src: url("./mplus-1c-regular.ttf") format("truetype"); }
@font-face {
  font-family: mplus-1c-thin;
  src: url("./mplus-1c-thin.ttf") format("truetype"); }
/* SET FONTS
--------------------------------------------- */
html {
  height: 100%; }

body {
  position: relative;
  height: 100%;
/*  background: #251907; */
/*background: #ecca62;  */
/* background: #440000;  */
/* background: #d9d0ac; */
background: #FFE4E1;

  background-size: cover;
  font-size: 16px;
  font-family: mplus-1c-regular; }

/*
=================================================================================
02. COMMON HTML TAGS
================================================================================= */
/* HEADINGS
--------------------------------------------- */
/* TEXTS
--------------------------------------------- */
strong {
  font-weight: bold; }

i, em {
  font-style: italic; }

/* LISTS
--------------------------------------------- */
/* A
--------------------------------------------- */
a:hover {
  opacity: .8; }

/* STRUCTURES
--------------------------------------------- */
/* TABLE
--------------------------------------------- */
table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e5e5e5;
  margin: 20px 0; }
  table tr th, table tr td {
    padding: 14px;
    border: 1px solid #e5e5e5; }
  table tr th {
    font-weight: bold; }

/* FORMS
--------------------------------------------- */
@media screen and (max-width: 767px) {
  input[type="text"], input[type="email"], textarea {
    border: 1px solid #d7c261;
    background: #fff;
    padding: 10px;
    width: 100%;
    line-height: 1.5em;
    color: #251907;
    font-size: 14px; } }
@media screen and (min-width: 768px) {
  input[type="text"], input[type="email"] {
    border: 1px solid #d7c261;
    background: #fff;
    padding: 10px;
    width: 50%;
    line-height: 1.5em;
    color: #251907;
    font-size: 14px; }

  textarea {
    border: 1px solid #d7c261;
    background: #fff;
    padding: 10px;
    width: 100%;
    line-height: 1.5em;
    color: #251907;
    font-size: 14px; } }
input[type="submit"] {
  padding: 10px;
  display: block;
  width: 100px;
  border: none;
  background: #4b3910;
  font-size: 14px;
  border: 1px solid #d7c261;
  font-weight: bold;
  color: #d7c261; }

/*
=================================================================================
03. COLUMN LAYOUTS
================================================================================= */
/* PERCENTAGES
--------------------------------------------- */
@media screen and (max-width: 767px) {
  .one-half, .one-third, .two-third, .three-fourth, .one-fourth, .one-fifth, .two-fifth, .three-fifth, .four-fifth, .one-sixth, .five-sixth {
    position: relative;
    float: none;
    min-height: 1px;
    margin-bottom: 10px; } }
@media screen and (min-width: 768px) {
  .one-half {
    width: 48%; }

  .one-third {
    width: 30.66%; }

  .two-third {
    width: 65.33%; }

  .one-fourth {
    width: 22%; }

  .three-fourth {
    width: 74%; }

  .one-fifth {
    width: 16.8%; }

  .two-fifth {
    width: 37.6%; }

  .three-fifth {
    width: 58.4%; }

  .four-fifth {
    width: 79.2%; }

  .one-sixth {
    width: 13.33%; }

  .five-sixth {
    width: 82.67%; }

  .custom-column {
    position: relative;
    margin: 0;
    float: left; }

  .one-half, .one-third, .two-third, .three-fourth, .one-fourth, .one-fifth, .two-fifth, .three-fifth, .four-fifth, .one-sixth, .five-sixth {
    position: relative;
    margin-right: 4%;
    float: left;
    min-height: 1px;
    margin-bottom: 0; }

  .last {
    margin-right: 0 !important;
    clear: right; } }
/*
=================================================================================
04. HELPER CLASSES
================================================================================= */
/* FLOATS
--------------------------------------------- */
.fl {
  float: left; }

.fr {
  float: right; }

/* CLEARFIX
--------------------------------------------- */
.clear {
  clear: both; }

.clearfix:after {
  content: " ";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both; }

/* MARGINS
--------------------------------------------- */
.nmt {
  margin-top: 0 !important; }

.center {
  text-align: center; }

.image-link {
  margin-bottom: 5px;
  display: inline-block; }

/*
=================================================================================
05. RESPONSIVE
================================================================================= */
/* ROW
--------------------------------------------- */
.row {
  overflow: hidden;
  *zoom: 1; }

/* LAYOUTS
--------------------------------------------- */
@media screen and (max-width: 767px) {
  .main .main-inner .content {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 134.11922%; }
    .main .main-inner .content:last-child {
      margin-right: 0; } }
@media screen and (min-width: 768px) {
  .main .main-inner .content {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%; }
    .main .main-inner .content:last-child {
      margin-right: 0; } }
@media screen and (max-width: 767px) {
  .main .main-inner .sidebar {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 134.11922%; }
    .main .main-inner .sidebar:last-child {
      margin-right: 0; } }
@media screen and (min-width: 768px) {
  .main .main-inner .sidebar {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 31.76157%; }
    .main .main-inner .sidebar:last-child {
      margin-right: 0; } }

/* OUTER CONTAINER
----------------------------------- */
.class {
  overflow: hidden;
  *zoom: 1;
  max-width: 68em;
  margin-left: auto;
  margin-right: auto; }

/* GOOGLE MAPS
--------------------------------------------- */
.google-maps {
  margin-bottom: 30px;
  position: relative; }
  .google-maps a.map-link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    text-indent: -9999px; }
  .google-maps iframe {
    width: 100%; }

/*
=================================================================================
06. MIXINS
================================================================================= */
/* MIXINS
--------------------------------------------- */
/*
=================================================================================
07. WORDPRESS CLASSES
================================================================================= */
/* INSIDE POST IMAGES
--------------------------------------------- */
.alignleft {
  float: left;
  margin: 0 15px 15px 0; }

.alignright {
  float: right;
  margin: 0 0 15px 15px; }

/* PAGINATE LINKS
--------------------------------------------- */
.page-numbers {
  display: inline-block;
  padding: 10px;
  border: 1px solid #d7c261;
  color: #d7c261;
  background: #4b3910;
  text-decoration: none; }
  .page-numbers.current {
    background: rgba(255, 255, 255, 0.8);
    color: #4b3910 !important; }

/* HEADINGS
--------------------------------------------- */
/*
=================================================================================
08. CUSTOM STYLES
================================================================================= */
/* HEADER
--------------------------------------------- */
header {
  position: relative; }
  header #site-id {
    height: 95px;
    width: 286px;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../images/site-id.png) no-repeat;
    z-index: 9999; }
    header #site-id a {
      display: block;
      text-indent: -9999px;
      text-decoration: none;
      height: 95px; }

@media screen and (max-width: 1319px) {
  nav#main {
    background: #251907;
    height: 60px; }
    nav#main ul {
      display: none; } }
@media screen and (min-width: 1320px) {
  nav#main {
    background: #251907;
  /*  padding-left: 316px; } */
    padding-left: 216px; } 
    nav#main ul {
      height: 60px;
      overflow: hidden;
      *zoom: 1; }
      nav#main ul li {
        float: left;
        font-size: 13px;
        margin-right: 40px; }
        nav#main ul li a {
          color: white;
          text-decoration: none;
          display: block;
          line-height: 60px;
          border-top: 3px solid #251907; }
          nav#main ul li a:hover {
            color: #d7c261;
            border-top: 3px solid #d7c261; }
        nav#main ul li.menu-home a {
          padding: 0 10px;
          display: block; }
        nav#main ul li.current-menu-item a {
          color: #d7c261;
          border-top: 3px solid #d7c261; } }
@media screen and (max-width: 1319px) {
  .header-search {
    display: none; }

  .header-menu {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1) url(../images/mobile-menu.png) no-repeat center;
    background-size: 20px 20px; } }
@media screen and (min-width: 1320px) {
  .header-search {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1) url(../images/icon-search-white.png) no-repeat center; }
    .header-search:hover {
      cursor: pointer; }

  .header-menu {
    display: none; } }
.header-search-input {
  background: rgba(255, 255, 255, 0.2);
  height: 60px;
  display: none;
  position: absolute;
  right: 60px;
  top: 0;
  width: 210px; }
  .header-search-input form {
    height: 60px; }
  .header-search-input input {
    padding: 5px 10px;
    border: none;
    background: none;
    color: #fff;
    height: 100%;
    width: 100%;
    line-height: 100%; }
    .header-search-input input:focus {
      border: none;
      box-shadow: none;
      outline: none; }
    .header-search-input input:active {
      border: none;
      box-shadow: none;
      outline: none; }

@media screen and (max-width: 767px) {
  .main {
    background: url(../images/main-bg.jpg) repeat #f8f4df;  /*    background: #b06050;*/
    background-size: cover; 
padding-top: 40px; } }
@media screen and (min-width: 768px) {
  .main {
   background: url(../images/main-bg.jpg) repeat #f8f4df; 
    background-size: cover;
    padding-top: 24px;
  /*  margin-left: 270px; */
   /*   width: 767px; */
   margin: 0 auto; } }
@media screen and (min-width: 1201px) {
  .main {
   background: url(../images/main-bg.jpg) repeat #f8f4df;
 /*   background-size: contain; */
    background-size: cover; 
    padding-top: 24px;
  /*  margin-left: 270px; */
   margin: 0 auto; 
   width: 1200px; } }
@media screen and (max-width: 767px) {
  .contents {
    padding: 40px;
    padding-bottom: 10px; } }
@media screen and (min-width: 768px) {
  .contents {
    padding: 40px; } }
section {
  background: white;
  margin-bottom: 50px;
  padding: 10px;
  border-bottom: 5px solid #f2efe6;
  -moz-box-shadow: 0 5px 5px 0 rgba(37, 25, 7, 0.2);
  -webkit-box-shadow: 0 5px 5px 0 rgba(37, 25, 7, 0.2);
  box-shadow: 0 5px 5px 0 rgba(37, 25, 7, 0.2); }
  section.transparent {
    background: none;
    border: none;
    box-shadow: none;
    padding: 0; }
  section.with-content {
    padding: 35px; }
  section.pad10 {
    padding: 35px; }
  section h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 1em; }
  section p {
    font-size: 14px;
    line-height: 1.25em;
    color: rgba(37, 25, 7, 0.8); }
    section p.teaser {
      font-size: 15px; }

.system h5 {
  font-size: 16px;
  font-weight: bold;
  border-left: 5px solid #d7c261;
  padding-left: 10px;
  padding-bottom: 5px;
  border-bottom: 1px dashed #e5e5e5;
  margin-bottom: 5px; }
.system p {
/*  margin-bottom: 1.5em; */
  color: rgba(37, 25, 7, 0.7); }
  .system p strong {
    color: #251907; }
  .system p:last-child {
    margin: 0; }

@media screen and (max-width: 767px) {
  .heading-box {
    height: 58px;
    border-bottom: 3px solid #d7c261;
    position: relative;
/*  background: #4b3910; }  */
/*  background: #DAA520; } */
      background: #330000; }


    .heading-box h3 {
      background: url(../images/icon-heading-marker.png) no-repeat;
      background-position: 12px center;
      font-size: 21px;
      letter-spacing: 1px;
      padding: 17px 0;
      line-height: 1em;
      color: white;
      font-style: italic;
      padding-left: 50px;
      text-transform: uppercase; }
      .heading-box h3 span.subtitle {
        display: none; }
    .heading-box a.heading-box-link {
      display: none; }
      .heading-box a.heading-box-link:after {
        display: block;
        position: absolute;
        left: -5px;
        top: 0px;
        border-top: 14px solid transparent;
        border-right: 5px solid #f8f4df;
        border-bottom: 14px solid transparent;
        content: " "; }
      .heading-box a.heading-box-link:before {
        display: block;
        position: absolute;
        right: -5px;
        top: 0px;
        border-top: 14px solid transparent;
        border-left: 5px solid #f8f4df;
        border-bottom: 14px solid transparent;
        content: " "; }
/* ヘッダー左端の三角                           */ 
/* .heading-box:after {                         */ 
/*    display: block;                           */ 
/*    position: absolute;                       */  
/*    left: -10px;                              */  
/*    top: 0px;                                 */ 
/*    border-top: 27px solid transparent;       */ 
/*    border-right: 10px solid #4b3910;         */ 
/*    border-bottom: 27px solid transparent;　  */
/*    content: " "; }  }                        */
 }

@media screen and (min-width:768px) {
  .heading-box {
    height: 58px;
    border-bottom: 3px solid #d7c261;
    position: relative;
/*  background: #4b3910; }  */
  background: #330000; } 

    .heading-box h3 {
      background: url(../images/icon-heading-marker.png) no-repeat;
      background-position: 12px center;
      font-size: 21px;
      letter-spacing: 1px;
      padding: 17px 0;
      line-height: 1em;
      color: white;
      font-style: italic;
      padding-left: 50px;
      text-transform: uppercase; }
      .heading-box h3 span.subtitle {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.5);
        display: inline-block;
        vertical-align: middle;
        margin-left: 30px; }
    .heading-box a.heading-box-link {
      position: absolute;
      right: 16px;
      top: 14px;
      height: 27px;
      width: auto;
      background: #f8f4df;
      color: #251907;
      line-height: 27px;
      text-align: center;
      text-decoration: none;
      display: block;
      font-size: 12px;
      font-weight: bold;
      padding: 0 10px; }
      .heading-box a.heading-box-link:after {
        display: block;
        position: absolute;
        left: -5px;
        top: 0px;
        border-top: 14px solid transparent;
        border-right: 5px solid #f8f4df;
        border-bottom: 14px solid transparent;
        content: " "; }
      .heading-box a.heading-box-link:before {
        display: block;
        position: absolute;
        right: -5px;
        top: 0px;
        border-top: 14px solid transparent;
        border-left: 5px solid #f8f4df;
        border-bottom: 14px solid transparent;
        content: " "; }
/* ヘッダー左端の三角                           */ 
/*   .heading-box:after {                       */
/*      display: block;                         */
/*     position: absolute;                      */ 
/*      left: -10px;                            */
/*      top: 0px;                               */
/*      border-top: 27px solid transparent;     */ 
/*      border-right: 10px solid #4b3910;       */
/*      border-bottom: 27px solid transparent;  */
/*      content: " "; }                         */

 }
@media screen and (max-width: 767px) {
  ul.post-list li {
    padding: 20px 20px 20px 10px;
    overflow: hidden;
    *zoom: 1;
    font-size: 14px;
    border-bottom: 1px solid rgba(37, 25, 7, 0.1);
    position: relative; }
    ul.post-list li span.date {
      display: block;
      margin-bottom: 5px; }
    ul.post-list li span.cat {
      display: block;
      margin-bottom: 5px;
      border-radius: 3px;
      color: #fff;
      /* background: #4b3910; */
      background: #330000; 
      text-align: center;
      font-size: 11px;
      padding: 5px; }
      ul.post-list li span.cat.cat-1 {
        background: #d285a9; }
      ul.post-list li span.cat.cat-2 {
        background: #ba725a; }
      ul.post-list li span.cat.cat-3 {
        background: #9b9458; }
      ul.post-list li span.cat.cat-4 {
        background: #c27420; }
      ul.post-list li span.cat.cat-5 {
        background: #6b9e27; }
      ul.post-list li span.cat.cat-6 {
        background: #41839d; }
      ul.post-list li span.cat.cat-7 {
        background: #645e8c; }
    ul.post-list li a {
      display: block;
      font-weight: bold;
      color: #251907;
      position: relative;
      text-decoration: none;
      line-height: 1.25em; }
    ul.post-list li:last-child {
      border-bottom: none; }
    ul.post-list li:after {
      content: "≫";
      position: absolute;
      right: 0px;
      top: 40%; }
  ul.post-list.search li {
    min-height: 228px;
    padding-bottom: 20px; }
    ul.post-list.search li .search-image {
      display: block;
      width: 100%; }
      ul.post-list.search li .search-image img {
        width: 100%; }
    ul.post-list.search li a {
      margin-left: 0;
      display: block;
      position: relative;
      width: 100%;
      height: 100%; }
    ul.post-list.search li span.date {
      display: block; }
    ul.post-list.search li span.title {
      display: block; }
    ul.post-list.search li:after {
      content: ""; } }
@media screen and (min-width: 768px) {
  ul.post-list li {
    padding: 20px 20px 20px 10px;
    overflow: hidden;
    *zoom: 1;
    font-size: 14px;
    border-bottom: 1px solid rgba(37, 25, 7, 0.1);
    position: relative; }
    ul.post-list li span.date {
      display: block;
      position: absolute;
      left: 20px;
      top: 20px;
      width: 120px;
      margin-bottom: 5px; }
    ul.post-list li span.cat {
      display: block;
      position: absolute;
      left: 120px;
      top: 18px;
      width: 200px;
      margin-bottom: 5px;
      border-radius: 3px;
      color: #fff;
    /*  background: #4b3910; */
   background: #330000;
      text-align: center;
      font-size: 11px;
      padding: 5px; }
      ul.post-list li span.cat.cat-1 {
        background: #d285a9; }
      ul.post-list li span.cat.cat-2 {
        background: #ba725a; }
      ul.post-list li span.cat.cat-3 {
        background: #9b9458; }
      ul.post-list li span.cat.cat-4 {
        background: #c27420; }
      ul.post-list li span.cat.cat-5 {
        background: #6b9e27; }
      ul.post-list li span.cat.cat-6 {
        background: #41839d; }
      ul.post-list li span.cat.cat-7 {
        background: #645e8c; }
    ul.post-list li a {
      display: block;
      font-weight: bold;
      margin-left: 330px;
      color: #251907;
      position: relative;
      text-decoration: none;
      line-height: 1.25em; }
    ul.post-list li:last-child {
      border-bottom: none; }
    ul.post-list li:after {
      content: "≫";
      position: absolute;
      right: 0px;
      top: 40%; }
  ul.post-list.search li {
    min-height: 228px;
    padding-bottom: 20px; }
    ul.post-list.search li .search-image {
      display: block;
      width: 150px;
      height: 188px;
      position: absolute;
      left: 0;
      top: 0; }
      ul.post-list.search li .search-image img {
        width: 150px; }
    ul.post-list.search li a {
      margin-left: 0;
      display: block;
      position: relative;
      width: 100%;
      height: 100%; }
    ul.post-list.search li span.date {
      display: block;
      position: absolute;
      left: 180px;
      top: 85px; }
    ul.post-list.search li span.title {
      display: block;
      position: absolute;
      left: 340px;
      top: 85px; } }
@media screen and (max-width: 767px) {
  ul.footer-menu {
    text-align: center;
    margin-top: 10px; }
    ul.footer-menu li {
      display: inline-block;
      margin: 0 20px; }
      ul.footer-menu li a {
        color: #251907;
        font-size: 12px;
        font-weight: bold;
        text-decoration: none; } }
@media screen and (min-width: 768px) {
  ul.footer-menu {
    text-align: center;
    margin-top: 100px; }
    ul.footer-menu li {
      display: inline-block;
      margin: 0 20px; }
      ul.footer-menu li a {
        color: #251907;
        font-size: 12px;
        font-weight: bold;
        text-decoration: none; } }
.copyright {
  text-transform: uppercase;
  font-size: 11px;
 /*  color: rgba(37, 25, 7, 0.5); */
  color: #fff;
  margin-top: 16px;
  padding-top:16px; 
  text-align: center;
  padding-bottom: 40px;
 }

@media screen and (max-width: 767px) {
  #sidebar {
    display: block;
    background: #251907;
    padding-top: 40px; } }
@media screen and (min-width: 768px) {
  #sidebar {
    width: 270px;
    padding: 135px 0 0 0;
    background: #251907;
    min-height: 100%;
    position: absolute;
    left: 0;
    top: 0; } }
h5.widget-title {
  color: white;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 1em;
  padding: 0 30px; }
  h5.widget-title img {
    vertical-align: middle;
    margin-left: 10px; }

ul.sidebar-menu {
  border-top: 1px solid #1a1013;
  margin-bottom: 50px; }
  ul.sidebar-menu li {
    border-top: 1px solid #362b1a;
    border-bottom: 1px solid #1a1013;
    padding-right: 15px; }
    ul.sidebar-menu li a {
      display: block;
      padding: 15px 0 15px 30px;
      color: #d7c261;
      font-size: 13px;
      text-decoration: none;
      background: url(../images/icon-marker.png) no-repeat right center; }
    ul.sidebar-menu li.current-menu-item {
      background-color: #e1cb6f;
      background-image: -webkit-linear-gradient(right, #e1cb6f, #684916);
      background-image: linear-gradient(to left,#e1cb6f, #684916); }
      ul.sidebar-menu li.current-menu-item a {
        color: white; }

.textwidget {
  margin-bottom: 50px;
  padding: 10px 30px; }

.top-clubs {
  margin-top: 40px; }

.top-half {
  margin-bottom: 0px; }

.clubs {
  text-align: center;
  overflow: hidden;
  *zoom: 1; }

.club-block {
  padding: 0 20px;
  position: relative;
  width: 25%; }
  .club-block span.club-title {
    display: block;
    width: 100%;
    background: #251907;
    height: 50px;
    z-index: 9999;
    top: 100px;
    position: absolute;
    line-height: 50px;
    text-align: center;
    color: white;
    font-size: 18px;
    font-weight: bold; }
    .club-block span.club-title:after {
      display: block;
      position: absolute;
      left: -12px;
      top: 0px;
      border-top: 25px solid transparent;
      border-right: 12px solid #251907;
      border-bottom: 25px solid transparent;
      content: " "; }
    .club-block span.club-title:before {
      display: block;
      position: absolute;
      right: -12px;
      top: 0px;
      border-top: 25px solid transparent;
      border-left: 12px solid #251907;
      border-bottom: 25px solid transparent;
      content: " "; }

@media screen and (max-width: 767px) {
  .club {
    display: inline-block;
    width: 100%;
    margin: 0;
    margin-bottom: 10px; }
    .club img {
      width: 100%; } }
@media screen and (min-width: 768px) {
  .club {
    display: inline-block;
    width: 320px;
    height: 244px;
    margin: 0 10px;
    margin-bottom: 10px; } }
@media screen and (max-width: 767px) {
  ul#slider {
    float: left;
    left: 50%;
    height: auto; }

  ul#slider li {
    left: 0%;
    height: auto; }

  ul#slider li img {
    left: 55%;
    position: relative;
    width: 100%; } }
@media screen and (min-width: 768px) {
  ul#slider {
    float: left;
    left: 50%; }

  ul#slider li {
    left: -50%;
    margin: 0 10px; }

  ul#slider li img {
    left: -405px;
    position: relative;
    width: 100%; } }
.bx-controls {
  text-align: center;
  margin-top: 10px; }

.bx-pager-item {
  display: inline-block; }
  .bx-pager-item .bx-pager-link {
    width: 23px;
    height: 20px;
    display: inline-block;
    text-indent: -9999px;
    background: url(../images/slide-control.png) no-repeat;
    margin: 0 2.5px; }
    .bx-pager-item .bx-pager-link.active {
      background: url(../images/slide-control-active.png) no-repeat; }

@media screen and (max-width: 767px) {
  footer {
    display: none; } }

@media screen and (min-width: 767px) {
  footer {
  background: #251907; } }

@media screen and (max-width: 767px) {
  #footer-mobile {
    display: block;
    border-top: 3px solid #d7c261; }
    #footer-mobile ul.footer-menu {
      text-align: center;
      margin-top: 40px; }
      #footer-mobile ul.footer-menu li {
        display: block;
        margin: 10px 0; }
        #footer-mobile ul.footer-menu li a {
          color: white;
          font-size: 12px;
          font-weight: bold;
          text-decoration: none; }
    #footer-mobile .copyright {
      text-transform: uppercase;
      font-size: 11px;
      color: rgba(255, 255, 255, 0.5);
      margin-top: 40px;
      text-align: center;
      padding-bottom: 40px; } }
@media screen and (min-width: 768px) {
  #footer-mobile {
    display: none; } }
@media screen and (max-width: 767px) {
  #page-title {
    height: auto;
    background: url(../images/page-title-bg.jpg) no-repeat;
    background-size: cover;
    padding: 55px 0 30px 42px;
    margin-top: -40px; }
    #page-title .breadcrumbs {
      color: white;
      display: inline-block;
      line-height: 27px;
      padding: 0 1em;
      font-size: 12px;
      border-radius: 5px;
     /* background: #4b3910;*/ 
   background: #330000;}
      #page-title .breadcrumbs a {
        color: #d7c261;
        text-decoration: none; }
        #page-title .breadcrumbs a:hover {
          text-decoration: underline; }
    #page-title h1 {
      color: #4b3910;
      font-size: 24px;
      font-weight: bold;
      margin-top: .5em; }
      #page-title h1 .subtitle {
        display: inline-block;
        vertical-align: baseline;
        font-weight: normal;
        font-style: italic;
        font-size: 12px;
        font-family: serif;
        color: rgba(37, 25, 7, 0.8); }
    #page-title .page-title-button {
      font-size: 14px;
      width: 90%;
      display: block;
      margin-top: 20px;
      padding: .5em 1em;
      line-height: 24px;
      color: #251907;
      border-radius: 5px;
      font-weight: bold;
      border: 2px solid #251907;
      text-align: center;
      text-decoration: none; } }
@media screen and (min-width: 768px) {
  #page-title {
    height: 150px;
    background: url(../images/page-title-bg.jpg) no-repeat;
    background-size: cover;
    padding-top: 35px;
    padding-left: 42px;
    margin-top: -24px;
    position: relative; }
    #page-title .breadcrumbs {
      color: white;
      display: inline-block;
      line-height: 27px;
      padding: 0 1em;
      font-size: 12px;
      border-radius: 5px;
      background: #4b3910; }
      #page-title .breadcrumbs a {
        color: #d7c261;
        text-decoration: none; }
        #page-title .breadcrumbs a:hover {
          text-decoration: underline; }
    #page-title h1 {
      color: #4b3910;
      font-size: 32px;
      font-weight: bold;
      margin-top: .5em; }
      #page-title h1 .subtitle {
        display: inline-block;
        vertical-align: baseline;
        font-weight: normal;
        font-style: italic;
        font-size: 18px;
        font-family: serif;
        color: rgba(37, 25, 7, 0.8);
        margin-left: 1em; }
    #page-title .page-title-button {
      padding: 0 1em;
      height: 52px;
      line-height: 52px;
      color: #251907;
      border-radius: 5px;
      font-weight: bold;
      border: 3px solid #251907;
      text-align: center;
      text-decoration: none;
      position: absolute;
      right: 40px;
      top: 50px; } }
ul#flexslider {
  height: 400px;
  width: 100%;
  background: #4b3910; }

.featured-image {
  max-height: 400px;
  text-align: center;
  padding: 20px;
  background: #4b3910; }
  .featured-image img {
    max-height: 360px; }

.shopinfo, .castinfo {
  overflow: hidden;
  *zoom: 1;
  padding: 24px 36px; }

@media screen and (max-width: 767px) {
  .shopinfo > div {
    min-height: 80px;
    float: left;
    border-bottom: 1px solid rgba(75, 57, 16, 0.1);
    padding: 20px 0; }
    .shopinfo > div:last-child {
      border-bottom: none; }
    .shopinfo > div:first-child {
      padding-top: 0; }
    .shopinfo > div h5 {
      font-size: 16px;
      font-weight: bold;
      color: #251907;
      margin-bottom: .5em; }
    .shopinfo > div p {
      font-size: 14px;
      color: rgba(37, 25, 7, 0.8);
 } }
@media screen and (min-width: 768px) {
  .shopinfo > div {
    min-height: 80px;
    float: left;

    padding-left: 20px; }
    .shopinfo > div:last-child {
      border-right: none; }
    .shopinfo > div:first-child {
      padding-left: 0; }
    .shopinfo > div h5 {
      font-size: 16px;
      font-weight: bold;
      color: #251907;
      margin-bottom: .5em; }
    .shopinfo > div p {
      font-size: 14px;
      color: rgba(37, 25, 7, 0.8);
      line-height: 1.25em; } }

@media screen and (max-width: 767px) {
  .castinfo .cast-info-item {
    min-height: 80px;
    float: left;
    border-bottom: 1px solid rgba(75, 57, 16, 0.1);
    padding: 20px 0; }
    .castinfo .cast-info-item:last-child {
      border-bottom: none; }
    .castinfo .cast-info-item h5 {
      font-size: 16px;
      font-weight: bold;
      color: #251907;
      margin-bottom: .5em; }
    .castinfo .cast-info-item p {
      font-size: 14px;
      color: rgba(37, 25, 7, 0.8);
      line-height: 1.25em; } }
@media screen and (min-width: 768px) {
  .castinfo .cast-info-item {
    min-height: 80px;
    float: left;
    margin-bottom: 20px;
    border-right: 1px solid rgba(75, 57, 16, 0.1);
    padding-left: 20px; }
    .castinfo .cast-info-item:nth-child(2n) {
      border-right: none; }
    .castinfo .cast-info-item:nth-child(2n+1) {
      padding-left: 0; }
    .castinfo .cast-info-item h5 {
      font-size: 16px;
      font-weight: bold;
      color: #251907;
      margin-bottom: .5em; }
    .castinfo .cast-info-item p {
      font-size: 14px;
      color: rgba(37, 25, 7, 0.8);
      line-height: 1.25em; } }
@media screen and (max-width: 767px) {
  .fourten, .twosixty,.three, .threehundred, .sixth, .cast-info-item {
    width: 100%; } }

@media screen and (min-width: 768px) {
  .fourten {
    width: 100.0%; 
    border-bottom: 1px solid rgba(75, 57, 16, 0.1);
     margin-bottom: 1em;
}

  .twosixty {
    width: 17.4%;
    border-right: 1px solid rgba(75, 57, 16, 0.1); }

  .threehundred {
    width: 20.1%; 
    border-right: 1px solid rgba(75, 57, 16, 0.1);}

  .three {
    width: 33%;
    border-right: 1px solid rgba(75, 57, 16, 0.1);}

  .sixth {
    width: 16%;
    margin-right: .8%; 
    border-right: 1px solid rgba(75, 57, 16, 0.1);}

    .sixth:last-child {
      margin-right: 0; }

  .cast-info-item {
    width: 49%;
    margin-right: 2%; }
    .cast-info-item:nth-child(2n) {
      margin-right: 0; } }
@media screen and (max-width: 767px) {
  ul.casts {
    margin-top: 30px;
    overflow: hidden;
    *zoom: 1; }
    ul.casts li {
      width: 48%;
      float: left;
      margin-right: 4%;
      background: white;
      margin-bottom: 10px;
      border-radius: 3px;
      padding: 5px;
      border-bottom: 5px solid #f2efe6;
      -moz-box-shadow: 0 5px 5px 0 rgba(37, 25, 7, 0.2);
      -webkit-box-shadow: 0 5px 5px 0 rgba(37, 25, 7, 0.2);
      box-shadow: 0 5px 5px 0 rgba(37, 25, 7, 0.2); }
      ul.casts li:nth-child(2n) {
        margin-right: 0; }
      ul.casts li img {
        width: 100%; }
      ul.casts li a {
        display: block;
        position: relative; }
        ul.casts li a:hover {
          opacity: 1; }
          ul.casts li a:hover span.cast-name-overlay {
            opacity: 1;
            transition: all 0.5s ease 0s; }
            ul.casts li a:hover span.cast-name-overlay .cast-name {
              font-size: 15px;
              transition: all 0.5s ease 0s; }
        ul.casts li a span.cast-name-overlay {
          opacity: 0;
          display: block;
          top: 0;
          left: 0;
          position: absolute;
          width: 100%;
          height: 100%;
          background: rgba(37, 25, 7, 0.5);
          line-height: 100%;
          font-size: 12px;
          font-weight: bold;
          color: white;
          transition: all 0.5s ease 0s; }
          ul.casts li a span.cast-name-overlay .cast-name {
            display: block;
            position: absolute;
            top: 50%;
            font-size: 24px;
            color: white;
            text-align: center;
            width: 100%;
            transition: all 0.5s ease 0s; } }
@media screen and (min-width: 768px) {
  ul.casts {
    margin-top: 30px;
    overflow: hidden;
    *zoom: 1; }
    ul.casts li {
      width: 15%;
      background: white;
      float: left;
      margin-right: 2%;
      margin-bottom: 30px;
      border-radius: 3px;
      padding: 5px;
      border-bottom: 5px solid #f2efe6;
      -moz-box-shadow: 0 5px 5px 0 rgba(37, 25, 7, 0.2);
      -webkit-box-shadow: 0 5px 5px 0 rgba(37, 25, 7, 0.2);
      box-shadow: 0 5px 5px 0 rgba(37, 25, 7, 0.2); }
      ul.casts li:nth-child(6n) {
        margin-right: 0; }
      ul.casts li img {
        width: 100%; }
      ul.casts li a {
        display: block;
        position: relative; }
        ul.casts li a:hover {
          opacity: 1; }
          ul.casts li a:hover span.cast-name-overlay {
            opacity: 1;
            transition: all 0.5s ease 0s; }
            ul.casts li a:hover span.cast-name-overlay .cast-name {
              font-size: 15px;
              transition: all 0.5s ease 0s; }
        ul.casts li a span.cast-name-overlay {
          opacity: 0;
          display: block;
          top: 0;
          left: 0;
          position: absolute;
          width: 100%;
          height: 100%;
          background: rgba(37, 25, 7, 0.5);
          line-height: 100%;
          font-size: 12px;
          font-weight: bold;
          color: white;
          transition: all 0.5s ease 0s; }
          ul.casts li a span.cast-name-overlay .cast-name {
            display: block;
            position: absolute;
            top: 50%;
            font-size: 24px;
            color: white;
            text-align: center;
            width: 100%;
            transition: all 0.5s ease 0s; } }
@media screen and (max-width: 767px) {
  .half:last-child {
    margin-right: 0; } }
@media screen and (min-width: 768px) {
  .half {
    width: 48%;
    float: left;
    margin-right: 4%; }
    .half:last-child {
      margin-right: 0; } }
table {
  width: 100%;
  border-collapse: collapse; }
  table thead tr {
    background: #4b3910; }
    table thead tr th {
      color: white; }
    table thead tr td {
      background: #d7c261; }
  table tr th, table tr td {
    font-size: 14px;
    border: 1px solid rgba(75, 57, 16, 0.2); }
  table tr th {
    background: rgba(75, 57, 16, 0.1);
    color: #4b3910; }

@media screen and (max-width: 767px) {
  .single-page {
    max-width: 940px;
    margin: 10px auto 0 auto;
    background: white;
    -moz-box-shadow: 0 0 5px 5px rgba(37, 25, 7, 0.1);
    -webkit-box-shadow: 0 0 5px 5px rgba(37, 25, 7, 0.1);
    box-shadow: 0 0 5px 5px rgba(37, 25, 7, 0.1); } }
@media screen and (min-width: 768px) {
  .single-page {
    max-width: 940px;
    margin: 40px auto 0 auto;
    background: white;
    -moz-box-shadow: 0 0 5px 5px rgba(37, 25, 7, 0.1);
    -webkit-box-shadow: 0 0 5px 5px rgba(37, 25, 7, 0.1);
    box-shadow: 0 0 5px 5px rgba(37, 25, 7, 0.1); } }
.single-page-header p.breadcrumbs {
  background: #4b3910;
  height: 44px;
  line-height: 44px;
  padding-left: 40px;
  color: white;
  font-size: 12px; }
  .single-page-header p.breadcrumbs a {
    color: #d7c261;
    text-decoration: none; }
    .single-page-header p.breadcrumbs a:hover {
      text-decoration: underline; }
.single-page-header .single-page-title {
  height: 130px;
  border-bottom: 3px solid #d7c261;
  padding-top: 44px;
  background: #251907; }
  .single-page-header .single-page-title h1 {
    color: white;
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 5px; }
  .single-page-header .single-page-title p {
    color: #d7c261;
    text-align: center;
    font-size: 18px;
    text-transform: uppercase;
    font-style: italic; }

@media screen and (max-width: 767px) {
  .single-page-content {
    padding: 20px 20px 40px 20px; } }
@media screen and (min-width: 768px) {
  .single-page-content {
    padding: 60px 70px; } }
.single-page-content {
  font-size: 14px;
  color: rgba(37, 25, 7, 0.8);
  line-height: 1.5em;
  background: rgba(255, 255, 255, 0.7); }
  .single-page-content *:first-child {
    margin-top: 0; }
  .single-page-content h2 {
    font-size: 26px;
    color: #251907;
    font-weight: bold;
    margin: 2em 0 0em 0; }
  .single-page-content h3 {
    color: #251907;
    font-size: 23px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    background: #fbf9ef;
    border-bottom: 3px solid #d7c261;
    margin: 2em 0 1em 0; }
  .single-page-content h4 {
    color: #251907;
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 5px;
    border-bottom: 2px solid #d7c261;
    margin: 2em 0 1em 0; }
  .single-page-content h2, .single-page-content h3, .single-page-content h4, .single-page-content h5 {
    line-height: 1.5em; }
    .single-page-content h2:first-child, .single-page-content h3:first-child, .single-page-content h4:first-child, .single-page-content h5:first-child {
      margin-top: 0; }
  .single-page-content p {
    font-size: 14px;
    color: rgba(37, 25, 7, 0.8);
    line-height: 1.5em;
    margin: 1em 0; }
    .single-page-content p.small {
      font-size: 12px;
      color: #251907; }
  .single-page-content .featured-box {
    margin-bottom: 30px;
    padding: 40px 40px 30px 40px;
    background: #fbf9ef;
    -moz-box-shadow: inset 0 5px 5px 0 rgba(75, 57, 16, 0.2);
    -webkit-box-shadow: inset 0 5px 5px 0 rgba(75, 57, 16, 0.2);
    box-shadow: inset 0 5px 5px 0 rgba(75, 57, 16, 0.2);
    border: 1px solid rgba(215, 194, 97, 0.5);
    border-radius: 5px; }
    .single-page-content .featured-box .item {
      padding-left: 50px;
      background: url(../images/icon-heading-marker.png) no-repeat left top; }
      .single-page-content .featured-box .item h4 {
        font-size: 21px;
        font-weight: bold;
        color: #4b3910;
        border: none;
        margin: 0; }
  .single-page-content table {
    margin: 0;
    background: white; }

@media screen and (max-width: 767px) {
  .facebook-button-bg {
    background: rgba(255, 255, 255, 0.5);
    padding: 25px; }
    .facebook-button-bg a {
      height: 100px;
      width: 100%;
      display: block;
      margin: 0 auto;
      color: #fff;
      font-weight: bold;
      padding: 40px 0;
      text-align: center;
      font-size: 18px;
      text-decoration: none;
      text-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.5);
      border-radius: 5px;
      background: url(../images/facebook-button-bg.png) no-repeat center;
      background-size: 100% 100%;
      border: 1px solid #fff; }
      .facebook-button-bg a:hover {
        opacity: .8; } }
@media screen and (min-width: 768px) {
  .facebook-button-bg {
    background: rgba(255, 255, 255, 0.5);
    padding: 25px 0; }
    .facebook-button-bg a {
      height: 100px;
      width: 500px;
      display: block;
      margin: 0 auto;
      color: #fff;
      font-weight: bold;
      padding: 40px 0;
      text-align: center;
      font-size: 18px;
      text-decoration: none;
      text-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.5);
      border-radius: 5px;
      background: url(../images/facebook-button-bg.png) no-repeat center;
      background-size: cover;
      border: 1px solid #fff; }
      .facebook-button-bg a:hover {
        opacity: .8; } }
a.facebook-button {
  height: 80px;
  width: 100%;
  display: block;
  margin: 0 auto;
  color: #fff;
  font-weight: bold;
  padding: 30px 0;
  text-align: center;
  font-size: 18px;
  text-decoration: none;
  text-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  background-color: #315088;
  background-image: -webkit-linear-gradient(bottom, #315088, #4571ab);
  background-image: linear-gradient(to top,#315088, #4571ab);
  border: 1px solid #fff;
  -moz-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.3); }
  a.facebook-button:hover {
    opacity: 1;
    background-color: #315088;
    background-image: -webkit-linear-gradient(top, #315088, #4571ab);
    background-image: linear-gradient(to bottom,#315088, #4571ab); }

#cast-gallery {
  width: 100%; }

@media screen and (max-width: 767px) {
  #slideshow {
    overflow: hidden;
    *zoom: 1; } }
.cast-slider {
  background: white; }

.visibleNearby {
  width: 100%;
  background: #fff;
  color: #FFF;
  padding-top: 25px; }

.visibleNearby img {
  -webkit-backface-visibility: hidden; }

.visibleNearby .rsGCaption {
  font-size: 16px;
  line-height: 18px;
  padding: 12px 0 16px;
  background: #fff;
  width: 100%;
  position: static;
  float: left;
  left: auto;
  bottom: auto;
  text-align: center; }

.visibleNearby .rsGCaption span {
  display: block;
  clear: both;
  color: #bbb;
  font-size: 14px;
  line-height: 22px; }

.royalSlider > .rsImg {
  visibility: hidden; }

/* Scaling transforms */
.visibleNearby .rsSlide img {
  opacity: 0.45;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9); }

.visibleNearby .rsActiveSlide img {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1); }

/* Non-linear resizing on smaller screens */
@media screen and (min-width: 0px) and (max-width: 900px) {
  #cast-gallery {
    padding: 12px 0 12px; }

  #cast-gallery .rsOverflow,
  .royalSlider#cast-gallery {
    height: 600px !important; } }
@media screen and (min-width: 0px) and (max-width: 500px) {
  #cast-gallery .rsOverflow,
  .royalSlider#cast-gallery {
    height: 500px !important; } }
.flexslider {
  overflow: hidden; }

.shop-list-heading {
  margin-bottom: 30px !important; }
  .shop-list-heading a {
    color: inherit;
    text-decoration: none; }
    .shop-list-heading a:hover {
      text-decoration: underline; }

.shop-list {
  margin-bottom: 30px; }

ul.shops li {
  margin-bottom: 40px;
  overflow: hidden;
  *zoom: 1;
  border-bottom: 2px solid #d7c261; }
  ul.shops li:last-child {
    border: none; }
  ul.shops li img {
    width: 100%; }
ul.shops p {
  margin-top: 0; }
ul.shops h4 {
  font-size: 15px;
  padding: 0;
  border: none;
  margin-bottom: 5px; }
ul.shops iframe {
  width: 100%;
  height: 240px; }

.view-shop {
  display: block;
  background: #4b3910;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  line-height: 24px;
  color: #d7c261;
  padding: 10px 0;
  border: 1px solid #d7c261; }

.shop-map {
  position: relative; }
  .shop-map a.map-link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    text-indent: -9999px; }

.textwidget input {
  padding: 5px;
  background: #2c200d;
  border: 1px solid #453720;
  color: #fff;
  font-size: 14px;
  width: 100%; }

.shopinfo-facebook {
  display: block;
  position: relative;
  text-decoration: none; }
  .shopinfo-facebook h5 {
    background-color: #224276;
    background-image: -webkit-linear-gradient(bottom, #224276, #3261a3);
    background-image: linear-gradient(to top,#224276, #3261a3);
    height: 30px;
    line-height: 30px;
    padding-left: 18px;
    color: white !important;
    font-size: 14px;
    margin-bottom: 0 !important; }
  .shopinfo-facebook p {
    padding: 16px 18px;
    color: #224276;
    line-height: 2em;
    font-size: 12px !important;
    background: #e8eaea;
    margin: 0; }
  .shopinfo-facebook .qr {
    float: right;
    width: 60px;
    height: 60px;
    margin: -30px -8px 5px 5px;
    background: white;
    border: none !important; }
