@charset "UTF-8";
/*--- 初期 ---*/
/*--- ベース ---*/
/*--- リンク ---*/
/*--- アイコン ---*/
/*--- ボタン ---*/
/*--- ナビゲーション ---*/
/*--- ソーシャルアイコン ---*/
/*--- カルーセルの矢印 ---*/
/*--- ヘッダー ---*/
/*--- SP用のコンタクトエリア ---*/
/*--- フッターソーシャルボタン ---*/
/*--- フッターコンタクト ---*/
/*--- カタログ ---*/
/*--- コピーライト ---*/
/*--- Font ---*/
/*--- Transitions ---*/
/*--- Transformations ---*/
/*--- Animation ---*/
/*--- Keyframes ---*/
/*
#overview
CD)グラデーション

グラデーションのMixin集です。
SuperGradientを利用しています。
*/
/*
#styleguide
縦方向へのグラデーション
```
sgradient(
  $colors:(
    (#e0e0e0, 0%),
    (#f0e0e0, 100%)
  )
);
```
*/
/*
#styleguide
横方向へのグラデーション
```
sgradient(
  $from: left,
  $colors:(
    (#fff, 0%),
    (#fff, 50%),
    (#fff, 100%)
  )
);
```
*/
/*
#styleguide
左上から右下へのグラデーション
```
sgradient(
  $from: top left,
  $colors:(
    (#fff, 0%),
    (#fff, 50%),
    (#fff, 50.01%),
    (#fff, 100%)
  )
);
```
*/
/*
#styleguide
円形状のグラデーション
```
sgradient(
  $type: radial,
  $colors:(
    (#fff,0%),
    (#fff,100%)
  )
);
```
*/
/*
#styleguide
円形状＋3色グラデーション
```
sgradient(
  $type:radial,
  $from:top right,
  $colors:(
    (#fff,0%),
    (#fff,50%),
    (#fff,100%)
  )
);
```
*/
/*--- clearfix ---*/
.clearfix:before, .clearfix:after {
  content: "";
  display: block; }

.clearfix:after {
  clear: both; }

/*--- Center Block ---*/
/*--- Sizing helpers ---*/
/*--- Media Query ---*/
/*--- BorderRadius ---*/
/*--- Placeholder ---*/
.post-data, .wys-text {
  font-size: 100%; }
  .post-data h1 img, .wys-text h1 img, .post-data h2 img, .wys-text h2 img, .post-data h3 img, .wys-text h3 img, .post-data h4 img, .wys-text h4 img, .post-data h5 img, .wys-text h5 img, .post-data h6 img, .wys-text h6 img, .post-data p img, .wys-text p img, .post-data a img, .wys-text a img {
    max-width: 100%;
    height: auto; }
  .post-data h2, .wys-text h2, .post-data h3, .wys-text h3, .post-data h4, .wys-text h4, .post-data h5, .wys-text h5, .post-data h6, .wys-text h6 {
    margin: 2em 0 .7em;
    padding: 3px;
    line-height: 1.2; }
  .post-data > h1, .wys-text > h1 {
    font-size: 180%; }
  .post-data > h2, .wys-text > h2 {
    padding-left: 12px;
    font-size: 160%;
    color: #222;
    border-left: 8px solid #222; }
  .post-data > h3, .wys-text > h3 {
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 140%;
    border-top: 2px solid #555;
    border-bottom: 2px solid #555; }
  .post-data h4, .wys-text h4, .post-data h5, .wys-text h5, .post-data h6, .wys-text h6 {
    font-size: 120%;
    border-bottom: 1px dotted #555; }
  .post-data table, .wys-text table {
    max-width: 100%;
    margin-top: 14px;
    margin-bottom: 14px; }
    .post-data table th, .wys-text table th, .post-data table td, .wys-text table td {
      padding: 4px 6px;
      border: 1px solid #ccc; }
    .post-data table th, .wys-text table th {
      background: #f0f0f0; }
    .post-data table td, .wys-text table td {
      background: #fff; }
  .post-data dl, .wys-text dl {
    background-color: #fff;
    border: 1px solid #ccc; }
    .post-data dl dt, .wys-text dl dt {
      padding: 10px;
      font-weight: bold;
      font-size: 110%;
      background-color: #f0f0f0; }
    .post-data dl dd, .wys-text dl dd {
      padding: 10px 10px 24px 24px; }
  .post-data strong, .wys-text strong {
    font-weight: bold; }
  .post-data em, .wys-text em {
    font-style: italic;
    font-style: oblique; }
  .post-data > p, .wys-text > p {
    margin-bottom: 1em;
    line-height: 1.8;
    font-size: 100%; }
  .post-data a, .wys-text a {
    color: #222;
    text-decoration: underline; }
    .post-data a:hover, .wys-text a:hover {
      opacity: .8;
      text-decoration: none; }
    .post-data a[target="_blank"]:after, .wys-text a[target="_blank"]:after {
      content: "\f08e";
      display: inline-block;
      margin-left: 4px;
      font-family: 'FontAwesome';
      font-size: 88%;
      text-rendering: auto;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      transform: translate(0, 0); }
  .post-data blockquote, .wys-text blockquote {
    position: relative;
    margin: 1em;
    padding: 14px 20px;
    font-size: 88%;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 2px 2px 0 0 #e0e0e0; }
    .post-data blockquote:before, .wys-text blockquote:before, .post-data blockquote:after, .wys-text blockquote:after {
      position: absolute;
      line-height: 0;
      font-family: 'FontAwesome';
      font-size: 24px;
      color: #fff;
      text-shadow: 1px 1px 0 #ccc;
      text-rendering: auto;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      transform: translate(0, 0); }
    .post-data blockquote:before, .wys-text blockquote:before {
      content: "\f10d";
      top: 0px;
      left: -10px; }
    .post-data blockquote:after, .wys-text blockquote:after {
      content: "\f10e";
      bottom: 0;
      right: -10px; }
  .post-data abbr, .wys-text abbr, .post-data acronym, .wys-text acronym {
    position: relative; }
    .post-data abbr[title], .wys-text abbr[title], .post-data acronym[title], .wys-text acronym[title] {
      border-bottom: 1px dotted #999; }
      .post-data abbr[title]:after, .wys-text abbr[title]:after, .post-data acronym[title]:after, .wys-text acronym[title]:after {
        content: " ";
        position: absolute;
        left: 0;
        bottom: 100%;
        display: inline-block;
        margin-bottom: 6px;
        padding: 2px 6px;
        line-height: 1.4;
        opacity: 0;
        background-color: #c9e5ef;
        border: 1px solid #7abfd8;
        border-radius: 4px;
        box-shadow: 1px 1px 3px 0 rgba(102, 102, 102, 0.3);
        transition: 180ms ease-in-out; }
      .post-data abbr[title]:hover:after, .wys-text abbr[title]:hover:after, .post-data acronym[title]:hover:after, .wys-text acronym[title]:hover:after {
        content: attr(title);
        display: inline-block;
        opacity: 1; }
  .post-data code, .wys-text code {
    font-size: 100%;
    background-color: #ffc; }
  .post-data kbd, .wys-text kbd {
    font-size: 100%;
    background-color: #cef; }
  .post-data pre, .wys-text pre {
    margin-top: 1em;
    margin-bottom: 1em;
    padding: 10px;
    white-space: pre-wrap;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid #ccc; }
  .post-data q:before, .wys-text q:before {
    content: "\201c"; }
  .post-data q:after, .wys-text q:after {
    content: "\201d"; }
  .post-data sub, .wys-text sub, .post-data sup, .wys-text sup {
    font-size: 80%; }
  .post-data > ul, .wys-text > ul, .post-data > ol, .wys-text > ol {
    margin: 2em 1.5em;
    font-size: 108%; }
    .post-data > ul > li, .wys-text > ul > li, .post-data > ol > li, .wys-text > ol > li {
      line-height: 1.6; }
      .post-data > ul > li ul, .wys-text > ul > li ul, .post-data > ul > li ol, .wys-text > ul > li ol, .post-data > ol > li ul, .wys-text > ol > li ul, .post-data > ol > li ol, .wys-text > ol > li ol {
        margin-left: 1.5em; }
  .post-data address, .wys-text address {
    margin-top: 1em;
    margin-bottom: 1em;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ccc; }
  .post-data img, .wys-text img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    vertical-align: top; }
    .post-data img.alignright, .wys-text img.alignright {
      display: inline;
      margin-left: 14px; }
    .post-data img.alignleft, .wys-text img.alignleft {
      display: inline;
      margin-right: 14px; }
  .post-data video, .wys-text video {
    max-width: 100%;
    height: auto; }
  .post-data .wp-video, .wys-text .wp-video {
    margin-top: 24px;
    margin-bottom: 24px; }
  .post-data iframe, .wys-text iframe {
    max-width: 100%; }
  .post-data .iframe, .wys-text .iframe {
    position: relative;
    min-width: 280px;
    margin: 0;
    overflow: hidden;
    background-color: #f0f0f0;
    box-sizing: border-box; }
    .post-data .iframe:before, .wys-text .iframe:before {
      content: "";
      display: block; }
    .post-data .iframe iframe, .wys-text .iframe iframe {
      position: absolute;
      top: 0;
      width: 100%;
      height: 100%; }
    .post-data .iframe-video, .wys-text .iframe-video {
      max-width: 100%; }
      .post-data .iframe-video:before, .wys-text .iframe-video:before {
        padding-bottom: 56.25%; }
    .post-data .iframe-gmap, .wys-text .iframe-gmap {
      max-width: 100%; }
      .post-data .iframe-gmap:before, .wys-text .iframe-gmap:before {
        padding-bottom: 74%; }
    @media (max-width: 768px) {
      .post-data .iframe-video, .wys-text .iframe-video {
        max-width: 100%; }
      .post-data .iframe-gmap, .wys-text .iframe-gmap {
        max-width: 100%; }
        .post-data .iframe-gmap:before, .wys-text .iframe-gmap:before {
          padding-bottom: 74%; } }
  .post-data .wp-caption, .wys-text .wp-caption {
    max-width: 100%;
    padding: 8px;
    text-align: center;
    background: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 0 5px 1px rgba(102, 102, 102, 0.2); }
    .post-data .wp-caption.alignleft, .wys-text .wp-caption.alignleft {
      margin-right: 14px; }
    .post-data .wp-caption.alignright, .wys-text .wp-caption.alignright {
      margin-left: 14px; }
    .post-data .wp-caption.aligncenter, .wys-text .wp-caption.aligncenter, .post-data .wp-caption.alignnone, .wys-text .wp-caption.alignnone {
      margin-bottom: 14px; }
    .post-data .wp-caption dl dt, .wys-text .wp-caption dl dt, .post-data .wp-caption dl dd, .wys-text .wp-caption dl dd {
      padding: 0; }
    .post-data .wp-caption-dt, .wys-text .wp-caption-dt {
      padding: 0; }
    .post-data .wp-caption-dd, .wys-text .wp-caption-dd {
      padding: 0;
      font-size: 92%;
      color: #666;
      text-shadow: 0 1px 0 #fff; }
    .post-data .wp-caption-text, .wys-text .wp-caption-text {
      font-size: 92%;
      color: #666;
      text-shadow: 0 1px 0 #fff; }

/*! sanitize.css | CC0 Public Domain | github.com/jonathantneal/sanitize.css */
/*
 * Normalization
 */
:root {
  -ms-overflow-style: -ms-autohiding-scrollbar;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%; }

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

details {
  display: block; }

input[type="number"] {
  width: auto; }

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

main {
  display: block; }

summary {
  display: block; }

pre {
  overflow: auto; }

progress {
  display: inline-block; }

small {
  font-size: 75%; }

template {
  display: none; }

textarea {
  overflow: auto; }

[hidden] {
  display: none; }

[unselectable] {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

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

* {
  font-size: inherit;
  line-height: inherit; }

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit; }

/*
 * Opinionated defaults
 */
*,
::before,
::after {
  border-style: solid;
  border-width: 0; }

* {
  margin: 0;
  padding: 0; }

:root {
  box-sizing: border-box;
  cursor: default;
  font: 16px/1.5 sans-serif;
  text-rendering: optimizeLegibility; }

html {
  background-color: #FFFFFF; }

a {
  text-decoration: none; }

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle; }

button,
input,
select,
textarea {
  background-color: transparent; }

button,
input,
select,
textarea {
  color: inherit;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit; }

button,
input,
select,
textarea {
  min-height: 1.5em; }

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

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

select {
  -moz-appearance: none;
  -webkit-appearance: none; }
  select::-ms-expand {
    display: none; }
  select::-ms-value {
    color: currentColor; }

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

textarea {
  resize: vertical; }

::selection {
  background-color: #B3D4FC;
  text-shadow: none; }

@media screen {
  [hidden~="screen"] {
    display: inherit; }
  [hidden~="screen"]:not(:active):not(:focus):not(:target) {
    clip: rect(0 0 0 0) !important;
    position: absolute !important; } }

/*--- Base ---*/
a[href^="tel:"] {
  pointer-events: none; }
  @media (pointer: fine) {
    a[href^="tel:"] {
      pointer-events: none;
      color: currentColor;
      text-decoration: none; } }
  @media (pointer: coarse) {
    a[href^="tel:"] {
      pointer-events: auto; } }

.ico:before, .ico:after {
  font-family: "FontAwesome";
  font-size: 118%; }

.angle-right-after:after {
  content: "\ \f105"; }

.angle-right-before:before {
  content: "\f105\ "; }

.caret-right-after:after {
  content: "\ \f0da"; }

.caret-right-before:before {
  content: "\f0da\ "; }

.btn {
  display: inline-block;
  padding: 6px 12px;
  line-height: 1;
  border-radius: 4px; }
  .btn:hover {
    opacity: .8; }

.btn-default {
  padding: 10px 16px;
  font-size: 14px;
  color: #fff;
  background-color: #000; }

.rhombus-after:after {
  content: -webkit-image-set(url("../img/top/img_01.png") 1x, url("../img/top/img_01.svg") 2x);
  content: image-set("../img/top/img_01.png" 1x, "../img/top/img_01.svg" 2x);
  display: block;
  margin-top: 20px;
  margin-bottom: 20px; }

@media (max-width: 767px) {
  .acf-map {
    height: 0;
    padding-bottom: 82%;
    overflow: hidden; } }

@media (min-width: 768px) {
  .acf-map {
    height: 480px; } }

.alignleft {
  text-align: left; }

.alignright {
  text-align: right; }

.aligncenter {
  text-align: center; }

.content-form input[type="text"], .content-form input[type="tel"], .content-form input[type="email"], .content-form input[type="url"], .content-form input[type="search"], .content-form input[type="password"], .content-form input[type="datetime"], .content-form input[type="date"], .content-form input[type="month"], .content-form input[type="week"], .content-form input[type="time"], .content-form input[type="datetime-local"], .content-form input[type="numbar"], .content-form input[type="color"], .content-form textarea {
  margin: 0 !important;
  font-size: 16px !important;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #ccc;
  outline: 0; }
  .content-form input:focus[type="text"], .content-form input:focus[type="tel"], .content-form input:focus[type="email"], .content-form input:focus[type="url"], .content-form input:focus[type="search"], .content-form input:focus[type="password"], .content-form input:focus[type="datetime"], .content-form input:focus[type="date"], .content-form input:focus[type="month"], .content-form input:focus[type="week"], .content-form input:focus[type="time"], .content-form input:focus[type="datetime-local"], .content-form input:focus[type="numbar"], .content-form input:focus[type="color"], .content-form textarea:focus {
    background-color: rgba(255, 255, 238, 0.8);
    box-shadow: 0 0 2px 1px rgba(85, 153, 221, 0.5); }
  @media (max-width: 767px) {
    .content-form input[type="text"], .content-form input[type="tel"], .content-form input[type="email"], .content-form input[type="url"], .content-form input[type="search"], .content-form input[type="password"], .content-form input[type="datetime"], .content-form input[type="date"], .content-form input[type="month"], .content-form input[type="week"], .content-form input[type="time"], .content-form input[type="datetime-local"], .content-form input[type="numbar"], .content-form input[type="color"], .content-form textarea {
      width: 100% !important;
      border: 0 !important; } }

.content-form {
  padding-bottom: 64px; }
  .content-form input[type="text"], .content-form input[type="tel"], .content-form input[type="email"], .content-form input[type="url"], .content-form input[type="search"], .content-form input[type="password"], .content-form input[type="datetime"], .content-form input[type="date"], .content-form input[type="month"], .content-form input[type="week"], .content-form input[type="time"], .content-form input[type="datetime-local"], .content-form input[type="numbar"], .content-form input[type="color"] {
    line-height: 1.8 !important;
    padding: 2px 5px !important; }
  .content-form button[type="submit"] {
    padding: 8px 25px !important;
    background-color: #fff;
    background: white;
    background: linear-gradient(to bottom, white 0%, #e5e5e5 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e5e5e5',GradientType=0 );
    border: 1px solid #ccc;
    border-radius: 2px; }
  .content-form fieldset {
    width: auto !important;
    margin-left: -10px !important;
    margin-right: -10px !important;
    padding: 10px !important; }
  @media (max-width: 767px) {
    .content-form table, .content-form thead, .content-form tbody, .content-form tr, .content-form th, .content-form td {
      display: block !important;
      width: 100% !important;
      margin: 0 !important;
      padding: 0 !important;
      border: none !important;
      text-align: left !important; }
    .content-form tr {
      margin: 10px 0 !important;
      border: 1px solid #ccc !important; }
    .content-form label {
      display: block !important;
      padding: 5px 10px !important;
      line-height: 1 !important;
      font-size: 15px !important;
      background-color: rgba(240, 240, 240, 0.8);
      border-bottom: 1px dotted #ccc; }
    .content-form .input-number {
      float: none !important;
      width: 100% !important;
      margin: 0 !important;
      padding: 0 !important; }
      .content-form .input-number + .input-number {
        border-top: 1px solid #ccc !important; }
      .content-form .input-number:before, .content-form .input-number:after {
        content: "";
        display: block;
        width: 100% !important;
        height: 0 !important; }
      .content-form .input-number:after {
        clear: both; }
      .content-form .input-number br {
        display: none !important; }
      .content-form .input-number label, .content-form .input-number input {
        float: left !important; }
      .content-form .input-number label {
        width: 45% !important;
        line-height: 1.5 !important;
        border-bottom: none !important; }
      .content-form .input-number input {
        width: 55% !important; } }

body {
  min-width: 320px;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho", serif; }

h2, h3, h4, h5, h6 {
  font-weight: bold; }

h2 {
  font-size: 26px; }

.container-fullid {
  overflow: hidden; }

/*--- Bootstrap 5columns ---*/
.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15 {
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px; }

.col-xs-15 {
  width: 20%;
  float: left; }

@media (min-width: 768px) {
  .col-sm-15 {
    width: 20%;
    float: left; } }

@media (min-width: 992px) {
  .col-md-15 {
    width: 20%;
    float: left; } }

@media (min-width: 1200px) {
  .col-lg-15 {
    width: 20%;
    float: left; } }

/* Header */
.header {
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #000; }
  @media (max-width: 767px) {
    .header {
      padding-top: 0;
      padding-bottom: 0; } }
  .header .row {
    margin-left: 0;
    margin-right: 0; }
  .header .desc {
    margin: 0;
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 13px; }
  .header .logo {
    margin: 0 -15px; }
    .header .logo img {
      max-width: 100%;
      height: auto; }
    @media (max-width: 767px) {
      .header .logo {
        float: left;
        width: 100%;
        height: 56px;
        margin: 0;
        padding: 3px 5px;
        padding-right: 52px;
        vertical-align: middle;
        box-sizing: border-box; }
        .header .logo img {
          max-width: 220px;
          max-height: 100%;
          width: auto;
          height: auto; } }
  .header .tel-box {
    justify-content: flex-end;
    font-size: 18px; }
    .header .tel-box:before {
      margin-right: 4px; }
  @media (min-width: 768px) {
    .header .tel-box {
      font-size: 26px; }
      .header .tel-box:before {
        background-size: 25px 24px; } }
  .header .info {
    font-size: 13px; }
    .header .info span {
      display: inline-block;
      padding-left: 4px;
      padding-right: 4px; }
  .header .info-flex {
    text-align: right; }
    .header .info-flex p {
      margin: 0;
      padding: 0; }
  @media (max-width: 767px) {
    .header .info-flex {
      display: flex;
      flex-flow: column-reverse wrap;
      display: none;
      margin: 0 -15px; } }

@media (max-width: 767px) {
  .header-meta .header-sp-logo {
    margin: 0;
    padding: 0; }
  .header-meta .tel-box {
    letter-spacing: 0; } }

.tel-box {
  display: flex;
  align-items: center;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1px; }
  .tel-box a {
    color: #fff; }
  .tel-box:before {
    content: "\f095";
    display: inline-block;
    margin-right: 8px;
    line-height: 1;
    font-family: "FontAwesome";
    vertical-align: middle;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center; }

/* gNavi */
.navi {
  margin-top: -7px;
  font-size: 14px;
  text-align: center; }
  .navi.alignright {
    text-align: right; }
  .navi a {
    color: #fff; }
  .navi > li {
    padding: 0; }
    .navi > li + li {
      margin-left: 24px; }

@media (max-width: 767px) {
  #gNaviWrap {
    position: relative;
    z-index: 1;
    max-height: 0;
    overflow: hidden;
    background-color: #f0f0f0;
    border-bottom: 2px solid #333;
    transition: max-height 300ms ease-out;
    transform: translate3d(0, 0, 0); }
    #gNaviWrap.actived {
      transform: translate3d(1, 1, 1); }
    #gNaviWrap .navi {
      margin: 0; }
    #gNaviWrap a {
      display: block;
      padding: 10px;
      font-size: 18px;
      color: #454545;
      text-align: center; }
    #gNaviWrap li {
      display: block; }
      #gNaviWrap li + li {
        margin-left: 0;
        border-top: 1px solid #999; } }

@media (min-width: 768px) {
  #gNaviWrap {
    display: block !important;
    height: auto !important; } }

.gnavi-sp-wrapper {
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 5000;
  display: none;
  width: 240px;
  height: 65%;
  height: 380px;
  padding: 5px;
  transition: transform 300ms ease-in-out;
  transform: translateX(0); }
  .gnavi-sp-wrapper.actived {
    transform: translateX(-100%); }
  @media (max-width: 767px) {
    .gnavi-sp-wrapper {
      display: block; } }

.sp-navi-overlay {
  display: none;
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 500ms ease-in-out 0s; }
  .sp-navi-overlay.actived {
    z-index: 4800;
    opacity: 1; }

.sp-navi-heading {
  margin: 0;
  margin-bottom: -1px;
  padding: 10px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  background-color: black;
  background: linear-gradient(to bottom, #888 0%, #262626 60%, black 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1, StartColorStr='#888', EndColorStr='black');
  border: 1px solid #454545; }

.sp-navi-inner {
  height: 100%;
  background-color: #f0f0f0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #454545;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0.3); }

.gnavi-sp {
  position: relative;
  width: 100%;
  list-style: none;
  margin: 0;
  overflow: hidden; }
  .gnavi-sp > li {
    text-align: center;
    font-size: 16px;
    border-bottom: 1px solid #999; }
    .gnavi-sp > li.current-menu-item a {
      color: #fff;
      background-color: #454545; }
    .gnavi-sp > li a {
      display: block;
      width: 100%;
      padding: 14px 10px;
      color: #333; }

.sp-social-list {
  padding: 15px 10px;
  list-style: none;
  text-align: center; }
  .sp-social-list > li {
    display: inline-block;
    margin: 5px; }
    .sp-social-list > li a {
      display: inline-block;
      overflow: hidden;
      border-radius: 100%; }
  .sp-social-list .fa {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    font-size: 22px; }
    .sp-social-list .fa-facebook {
      color: #fff;
      background-color: #3b5998; }
    .sp-social-list .fa-twitter {
      color: #fff;
      background-color: #55acee; }
    .sp-social-list .fa-instagram {
      color: #fff;
      background-color: #3f729b; }
    .sp-social-list .fa-envelope {
      color: #fff;
      background-color: #555; }

.sp-navi-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 52px;
  height: 56px;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  color: #111;
  text-align: center;
  background-color: #f0f0f0; }
  .sp-navi-btn:before {
    content: "\f0c9";
    display: block;
    font-family: "FontAwesome";
    font-size: 26px;
    line-height: 42px; }
  .sp-navi-btn.close:before {
    content: "\f00d"; }

.sp-tel-btn {
  position: fixed;
  top: 62px;
  right: 100%;
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  margin-right: 20px;
  overflow: hidden;
  color: #fff;
  opacity: 0;
  background-color: #000;
  border: 1px solid #fff;
  border-radius: 100%;
  box-shadow: inset 0 0 2px 1px rgba(255, 255, 255, 0.4), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  transition: opacity 500ms ease-in-out 150ms, margin-right 100ms ease-in-out; }
  .sp-tel-btn:before {
    content: "\f095";
    font-family: "FontAwesome";
    font-size: 26px;
    color: #fff;
    text-shadow: 0; }
  .sp-tel-btn:hover {
    text-decoration: none; }
  .sp-tel-btn.actived {
    margin-right: 15px; }
  .sp-tel-btn.sc-top {
    z-index: 9999;
    opacity: 1; }

/* Footer */
.footer {
  padding-top: 42px;
  padding-bottom: 12px;
  color: #fff;
  background-position: center;
  background-repeat: repeat; }
  @media (min-width: 768px) {
    .footer .border-pc {
      border-left: 1px solid #fff;
      border-right: 1px solid #fff; } }
  .footer a {
    color: #fff; }

@media (max-width: 767px) {
  .footer-widget > div {
    margin-bottom: 32px; } }

.footer-info {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto; }
  .footer-info p {
    margin: 0;
    font-size: 14px;
    letter-spacing: 2px; }
  .footer-info .shop-name {
    margin-bottom: 1em;
    font-size: 16px; }
  @media (max-width: 767px) {
    .footer-info {
      padding: 24px 0;
      border-top: 1px solid #fff;
      border-bottom: 1px solid #fff; }
      .footer-info p {
        font-size: 16px; }
      .footer-info .shop-name {
        text-align: center;
        font-size: 18px; } }

.footer-tel {
  margin-top: 58px; }
  .footer-tel .tel-box {
    margin-bottom: 0;
    font-size: 28px; }
  .footer-tel .info {
    font-size: 14px; }
    .footer-tel .info span {
      display: inline-block;
      margin-right: 8px; }
  @media (max-width: 767px) {
    .footer-tel {
      margin-top: 28px;
      text-align: center; } }

.fb-page-box {
  max-width: 300px;
  max-height: 220px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden; }

@media (min-width: 768px) {
  .fb-page-box {
    padding-left: 20px; } }

.foot-navi > li {
  margin-top: 6px;
  margin-bottom: 6px; }
  .foot-navi > li:before {
    content: "\f105";
    margin-right: 8px;
    font-family: "FontAwesome"; }

@media (max-width: 767px) {
  .foot-navi {
    display: flex;
    flex-flow: row wrap;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto; }
    .foot-navi > li {
      width: 50%; } }

@media (min-width: 769px) {
  .foot-navi a {
    font-size: 14px; } }

.foo-social-link {
  margin-top: 20px; }
  .foo-social-link ul {
    list-style: none; }
  .foo-social-link > ul > li {
    display: inline-block; }
    .foo-social-link > ul > li a {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 38px;
      height: 38px;
      overflow: hidden;
      color: #222;
      background-color: #fff;
      border-radius: 100%;
      transition: 100ms ease-in; }
      .foo-social-link > ul > li a:hover {
        text-decoration: none;
        opacity: .8; }
    .foo-social-link > ul > li .fa {
      font-size: 22px; }
  @media (max-width: 767px) {
    .foo-social-link {
      text-align: center; } }

.foo-logo-sp img {
  max-width: 100%;
  height: auto; }

.copyright {
  text-align: center; }

a.pagetop {
  display: inline-block;
  padding: 6px 12px;
  font-weight: bold;
  font-size: 16px;
  color: #222;
  text-decoration: none;
  background-color: #fff;
  border-radius: 6px; }
  a.pagetop:hover {
    opacity: .8; }
  a.pagetop .fa {
    margin-left: 8px;
    font-size: 22px; }

@media (max-width: 767px) {
  .foo-logo-sp {
    text-align: center; }
  .pagetop-sp {
    margin-top: 34px;
    text-align: center; }
  .copyright {
    margin-top: 42px;
    margin-bottom: 42px; } }

@media (min-width: 768px) {
  .foo-logo-sp a {
    display: inline-block;
    margin-top: 20px; }
  .pagetop-sp {
    text-align: right; }
  a.pagetop {
    margin-top: 38px; }
  .copyright {
    margin-top: -12px; } }

/* Page Visual */
.page-visual-bg {
  position: relative;
  height: 120px;
  background-color: #000;
  background-repeat: repeat;
  background-position: center;
  background-size: cover; }
  .page-visual-bg h2 {
    height: 120px;
    margin: 0;
    padding: 0; }
    .page-visual-bg h2.left {
      text-align: left; }
    .page-visual-bg h2.right {
      text-align: right; }
    .page-visual-bg h2.center {
      text-align: center; }
  .page-visual-bg img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto; }
  @media (min-width: 768px) {
    .page-visual-bg {
      height: 292px; }
      .page-visual-bg h2 {
        height: 292px; } }

/* Breadcrumbs */
.bread-container {
  background-color: #f2f2f2; }

.bread-wrap .swiper-slide {
  position: relative;
  display: inline-block;
  width: auto;
  padding: 4px 15px; }
  .bread-wrap .swiper-slide a {
    font-size: 14px;
    color: #454545; }
  .bread-wrap .swiper-slide + .swiper-slide:before {
    content: "\f105";
    position: absolute;
    margin-left: -15px;
    font-family: "FontAwesome"; }

.bread-home:before {
  content: "\f015";
  margin-right: 4px;
  font-family: "FontAwesome"; }

.btn-pagetop,
.btn-tel {
  position: fixed;
  right: 15px;
  z-index: 100;
  display: block;
  width: 48px;
  height: 48px;
  overflow: hidden;
  line-height: 48px;
  font-size: 13px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: rgba(69, 69, 69, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100%;
  transition: opacity 200ms ease-out; }
  .btn-pagetop:hover,
  .btn-tel:hover {
    opacity: .7 !important; }
  .btn-pagetop:hover, .btn-pagetop:link, .btn-pagetop:active,
  .btn-tel:hover,
  .btn-tel:link,
  .btn-tel:active {
    text-decoration: none; }
  .btn-pagetop:before,
  .btn-tel:before {
    display: block;
    font-family: "FontAwesome";
    font-size: 28px; }

.btn-pagetop {
  bottom: 80px; }
  .btn-pagetop:before {
    content: "\f106";
    transform: translateY(-2px); }

.btn-tel {
  bottom: 15px; }
  .btn-tel:before {
    content: "\f095"; }

@media (max-width: 768px) {
  .footer {
    padding-bottom: 120px; } }

.footer-btn-link {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none; }
  @media (max-width: 768px) {
    .footer-btn-link {
      position: fixed;
      left: 0;
      bottom: 0;
      z-index: 15;
      width: 100%;
      min-height: 80px;
      padding-bottom: env(safe-area-inset-left);
      background-color: #f2f2f2; } }
  .footer-btn-link li {
    min-width: 180px;
    padding: 10px; }
    @media (max-width: 768px) {
      .footer-btn-link li {
        padding: 16px 5px; } }
  .footer-btn-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    line-height: 1.2;
    font-size: 18px;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.2);
    transition: 235ms ease; }
    @media (max-width: 768px) {
      .footer-btn-link a {
        padding: 12px 16px;
        font-size: 16px;
        letter-spacing: 1px; } }
    .footer-btn-link a .fa {
      margin-right: 8px;
      font-size: 120%; }
    .footer-btn-link a:hover {
      text-decoration: none;
      opacity: 0.8; }
  @media (pointer: fine) {
    .footer-btn-link a[href^="tel:"] {
      pointer-events: none;
      display: none;
      color: currentColor;
      text-decoration: none; } }
  @media (pointer: coarse) {
    .footer-btn-link a[href^="tel:"] {
      pointer-events: auto; } }

.main-visual {
  background-color: #000; }
  .main-visual .visual-item {
    position: relative;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; }
  .main-visual .swiper-slide {
    overflow: hidden; }
    @media (max-width: 767px) {
      .main-visual .swiper-slide {
        position: relative;
        width: 100%; }
        .main-visual .swiper-slide img {
          position: absolute;
          left: 50%;
          width: auto;
          height: 100%;
          transform: translateX(-50%); } }
    @media (min-width: 768px) {
      .main-visual .swiper-slide img {
        width: 100%;
        height: auto; } }

.main-visual .angle-down {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  text-align: center; }
  .main-visual .angle-down:before {
    content: "\f107";
    font-family: "FontAwesome";
    display: inline-block;
    padding: 5px 16px 10px;
    line-height: 1;
    font-size: 40px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5); }

.main-visual-figure {
  position: absolute;
  top: 50%;
  z-index: 11;
  width: 100%;
  text-align: center;
  transform: translateY(-50%); }
  .main-visual-figure > p {
    margin: 0;
    padding: 0; }
  .main-visual-figure .address {
    margin: 15px 0;
    font-weight: bold;
    font-size: 14px;
    color: #fff;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
    filter: drop-shadow(0 0 5px black); }
    @media (min-width: 768px) {
      .main-visual-figure .address {
        margin: 32px 0 20px;
        font-size: 20px; } }
  @media (max-width: 767px) {
    .main-visual-figure img {
      max-width: 76%;
      height: auto; } }

.btn-visual {
  padding-left: 32px;
  padding-right: 32px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
  border: 1px solid #fff; }
  @media (min-width: 768px) {
    .btn-visual {
      font-size: 20px; } }

.swiper-container-horizontal > .swiper-pagination {
  bottom: 0;
  display: flex;
  flex-basis: 10px;
  flex-grow: 1;
  width: 100%;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.5);
  transition: 100ms ease-in; }
  .swiper-container-horizontal > .swiper-pagination:hover {
    height: 15px; }
  .swiper-container-horizontal > .swiper-pagination .swiper-pagination-bullet {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0 1px;
    border-radius: 0;
    border-left: 1px solid #f0f0f0; }
    .swiper-container-horizontal > .swiper-pagination .swiper-pagination-bullet:first-child {
      border-left: 0; }

.swiper-pagination-bullet-active {
  background-color: rgba(69, 69, 69, 0.8); }

/**** Front Space ****/
.section-title-bg {
  padding-top: 64px;
  padding-bottom: 64px; }

.front-headline {
  margin: 0;
  padding: 0;
  text-align: center; }
  .front-headline img {
    max-width: 100%;
    height: auto; }

.front-space {
  width: 100%; }
  .front-space:before, .front-space:after {
    content: "";
    display: block; }
  .front-space:after {
    clear: both; }
  @media (max-width: 768px) {
    .front-space {
      padding: 0 15px; } }
  @media (min-width: 768px) {
    .front-space {
      display: flex; } }

.front-space-bg {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 66.714285%;
  overflow: hidden;
  background-color: #ccc;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-sizing: border-box; }
  @media (max-width: 768px) {
    .front-space-bg {
      margin: 15px 0; } }
  @media (min-width: 768px) {
    .front-space-bg {
      width: 50%;
      padding-bottom: 33.3571428%; } }

.front-space-item {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 100%;
  margin: auto;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6); }
  .front-space-item .title {
    line-height: 1.3;
    font-size: 16px;
    color: #fff; }
  .front-space-item a {
    display: inline-block;
    font-size: 14px;
    color: #fff; }
    .front-space-item a:nth-child(2) {
      margin-left: 2em; }
  @media (min-width: 768px) {
    .front-space-item {
      padding: 32px 10px 20px; }
      .front-space-item .title {
        font-size: 20px; } }

/**** Topics ****/
.section-info-bg {
  padding-top: 42px;
  padding-bottom: 42px;
  background-color: #e5e5e5; }

.front-topics {
  text-align: center; }
  .front-topics .title {
    margin: 0;
    padding: 0; }
  @media (max-width: 767px) {
    .front-topics > div {
      margin-top: 12px;
      margin-bottom: 12px; } }
  @media (min-width: 768px) {
    .front-topics {
      display: flex; }
      .front-topics > div:nth-child(1) {
        align-self: center; }
      .front-topics > div:nth-child(3) {
        align-self: flex-end; } }

.front-topics-list {
  margin: 0;
  list-style: none;
  text-align: left; }
  .front-topics-list > li {
    margin: 5px 0;
    line-height: 1.4;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 14px;
    color: #4d4d4d; }
    .front-topics-list > li a {
      color: #4d4d4d; }

.front-topics-sns {
  text-align: center;
  color: #4d4d4d; }
  .front-topics-sns h3 {
    font-size: 16px; }

.front-topics-social-link {
  list-style: none; }
  .front-topics-social-link > li {
    display: inline-block;
    padding: 0 5px; }
  .front-topics-social-link a {
    font-size: 22px;
    color: #4d4d4d; }

/**** Sub Visual ****/
.front-sub-visual img {
  width: 100%;
  height: auto; }

/**** Concept ****/
.front-concept {
  padding-top: 64px;
  padding-bottom: 64px;
  color: #555;
  text-align: center; }
  .front-concept .title {
    margin: 0;
    padding: 0;
    font-weight: bold;
    color: #333; }
  .front-concept p {
    font-size: 13px; }

.front-concept-figure {
  background-color: #fff; }
  .front-concept-figure img {
    width: 100%;
    height: auto; }
  .front-concept-figure .flex:before, .front-concept-figure .flex:after {
    content: "";
    display: block; }
  .front-concept-figure .flex:after {
    clear: both; }
  .front-concept-figure .flex > div {
    position: relative;
    overflow: hidden; }
    @media (max-width: 768px) {
      .front-concept-figure .flex > div {
        margin: 15px; } }
    @media (min-width: 769px) {
      .front-concept-figure .flex > div {
        padding: 0; } }
  @media (max-width: 767px) {
    .front-concept-figure .flex img {
      position: absolute;
      top: 0;
      left: 50%;
      width: auto;
      height: 100%;
      transform: translateX(-50%); }
    .front-concept-figure .flex > div {
      height: 0;
      padding-bottom: 72%; } }
  @media (min-width: 768px) and (max-width: 980px) {
    .front-concept-figure .flex img {
      position: absolute;
      top: 0;
      left: 50%;
      width: auto;
      height: 100%;
      transform: translateX(-50%); }
    .front-concept-figure .flex > div {
      height: 0;
      padding-bottom: 28%; } }
  .front-concept-figure .title {
    position: absolute;
    bottom: 0;
    width: 100%;
    margin: 0;
    padding-top: 80px;
    padding-bottom: 14px;
    font-size: 24px;
    color: #fff;
    text-align: center;
    background-color: black;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 40%, black 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1, StartColorStr='rgba(0, 0, 0, 0)', EndColorStr='black'); }
  .front-concept-figure .rhombus-after:after {
    margin: 2px 0; }
    @media (min-width: 768px) {
      .front-concept-figure .rhombus-after:after {
        transform: scale(0.6); } }
  @media (min-width: 768px) {
    .front-concept-figure .flex > div:hover .textbox {
      opacity: 1; }
    .front-concept-figure .textbox {
      opacity: 0; } }
  .front-concept-figure .textbox {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 5;
    max-width: 420px;
    width: 90%;
    margin: 0 auto;
    padding: 15px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.85);
    transition: 300ms ease-in-out;
    transform: translateY(-50%); }
    .front-concept-figure .textbox h3 {
      margin: 0;
      padding: 0;
      font-size: 18px; }
    .front-concept-figure .textbox p {
      margin: 0;
      padding: 0;
      font-size: 12px;
      text-align: left; }
    @media (min-width: 768px) and (max-width: 1180px) {
      .front-concept-figure .textbox h3 {
        font-size: 18px; }
      .front-concept-figure .textbox p {
        font-size: 12px; } }
    @media (min-width: 1181px) {
      .front-concept-figure .textbox {
        max-width: none;
        padding: 25px; }
        .front-concept-figure .textbox h3 {
          margin-bottom: 20px;
          font-size: 24px; }
        .front-concept-figure .textbox p {
          max-width: 580px;
          margin-left: auto;
          margin-right: auto;
          font-size: 16px; } }
    @media (max-width: 1180px) {
      .front-concept-figure .textbox h3 {
        margin-bottom: 20px; } }

/**** Row 2 Column ****/
.front-content-rowcol {
  padding-top: 42px;
  padding-bottom: 42px; }
  .front-content-rowcol .row-box img {
    max-width: 100%;
    height: auto; }
  .front-content-rowcol .row-box h2:first-child, .front-content-rowcol .row-box h3:first-child, .front-content-rowcol .row-box h4:first-child, .front-content-rowcol .row-box h5:first-child, .front-content-rowcol .row-box h6:first-child {
    margin-top: 0; }
  .front-content-rowcol + .page-content-padding {
    margin-top: -24px;
    padding-top: 0; }
  .front-content-rowcol + .spacer {
    height: 1px; }
  @media (max-width: 767px) {
    .front-content-rowcol .row .col + .col {
      margin-top: 32px; } }

/**** Blog ****/
.front-blog {
  padding-top: 64px;
  padding-bottom: 64px; }
  .front-blog .title {
    margin: 0;
    padding: 0;
    text-align: center; }

/**** Instagram ****/
.instagram-fullid .row {
  margin: 0;
  padding: 0; }

.instagram-wrapper {
  margin: 0;
  padding: 0;
  background-color: #fafafa;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc; }

.instagram-container {
  position: relative;
  max-width: 100%;
  padding: 15px 0; }
  .instagram-container .swiper-wrapper {
    position: relative;
    min-height: 220px;
    padding: 15px 0; }
  .instagram-container .swiper-slide {
    position: relative;
    width: 220px;
    min-height: 220px; }
    .instagram-container .swiper-slide img, .instagram-container .swiper-slide video {
      max-width: 100%;
      height: auto; }
    .instagram-container .swiper-slide span {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      display: block;
      padding: 6px 8px;
      letter-spacing: 1px;
      line-height: 1;
      font-size: 12px;
      color: #fff;
      text-align: right;
      background-color: rgba(0, 0, 0, 0.7); }
  .instagram-container .nowloading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 30px;
    height: 30px;
    text-align: center; }
    .instagram-container .nowloading .fa {
      font-size: 28px;
      color: #999; }

/* Posts Content */
.posts {
  position: relative;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 32px;
  padding-bottom: 32px; }

@media (min-width: 768px) {
  .posts {
    max-width: none;
    display: flex;
    justify-content: flex-start;
    flex-flow: row wrap;
    margin-left: -15px;
    margin-right: -15px;
    padding-top: 42px;
    padding-bottom: 42px; }
  .post-item {
    width: 33.333333%; } }

.post-item {
  position: relative;
  display: flex;
  align-content: flex-start;
  flex-direction: column-reverse;
  padding: 15px;
  font-size: 14px; }
  .post-item .not-thumb {
    position: absolute; }
  .post-item header {
    height: 72px; }
    .post-item header a {
      color: #111; }
  .post-item footer {
    align-content: flex-start; }
  .post-item h1 {
    max-height: 2.8em;
    margin: 5px 0;
    overflow: hidden;
    line-height: 1.4;
    font-size: 14px;
    color: #111; }
  .post-item p {
    margin: 0;
    line-height: 1; }
  .post-item .cat {
    margin: 8px 0 5px; }
    .post-item .cat a {
      display: inline-block;
      padding: 3px 6px;
      font-size: 12px;
      color: #fff;
      background-color: #c1272d; }

.post-sticky {
  position: relative;
  font-size: 14px; }
  .post-sticky:before, .post-sticky:after {
    content: "";
    display: block; }
  .post-sticky:after {
    clear: both; }
  .post-sticky .left {
    padding: 15px; }
  .post-sticky header {
    padding: 15px; }
  .post-sticky p {
    margin: 0; }
  .post-sticky > p {
    padding: 0 15px 15px; }
  .post-sticky .not-thumb {
    position: absolute; }
  .post-sticky h1 {
    margin: 0;
    font-size: 20px; }

@media (min-width: 768px) {
  .post-sticky .left {
    float: left;
    width: 240px; }
  .post-sticky header {
    margin-left: 240px; }
  .post-sticky > p {
    display: block;
    margin-left: 240px; } }

.post-thumb {
  position: relative;
  display: block;
  width: 98%;
  height: 0;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 98%;
  overflow: hidden;
  background: #f0f0f0;
  border-radius: 100%;
  box-shadow: 0 2px 5px 1px rgba(85, 85, 85, 0.2); }
  .post-thumb:hover {
    opacity: .8; }
  .post-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto; }

.not-thumb {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #f0f0f0; }
  .not-thumb:before {
    content: "\f03e";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: block;
    width: 34px;
    height: 32px;
    line-height: 1;
    font-family: "FontAwesome";
    font-size: 32px;
    color: #aaa; }

.post-single {
  padding-top: 42px;
  padding-bottom: 42px; }

.post-article {
  border-bottom: 1px solid #ccc; }
  .post-article header {
    margin-bottom: 2em; }
    .post-article header h1 {
      margin-top: 0;
      padding: 10px 12px;
      font-weight: bold;
      font-size: 26px;
      border-bottom: 1px solid #999; }
    .post-article header .time, .post-article header .cat, .post-article header .tag {
      display: inline;
      font-size: 14px; }
      .post-article header .time a, .post-article header .cat a, .post-article header .tag a {
        color: #2565af; }
      .post-article header .time:before, .post-article header .cat:before, .post-article header .tag:before {
        margin-right: 6px;
        font-family: "FontAwesome";
        color: #888; }
    .post-article header p + p {
      margin-left: 14px; }
    .post-article header .time {
      color: #454545; }
      .post-article header .time:before {
        content: "\f017"; }
    .post-article header .cat:before {
      content: "\f07b"; }
    .post-article header .tag:before {
      content: "\f02c"; }

.post-data {
  max-width: 100%;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Robot, "Droid Sans", sans-serif;
  font-size: 94%; }
  .post-data div.alignleft {
    float: left; }
  .post-data div.alignright {
    float: right; }
  .post-data div.aligncenter {
    margin-left: auto;
    margin-right: auto; }
  .post-data img.alignleft {
    float: left;
    text-align: left; }
  .post-data img.alignright {
    float: right;
    text-align: right; }
  .post-data img.aligncenter {
    margin-left: auto;
    margin-right: auto;
    text-align: center; }

.post-cat_tags {
  margin-top: 64px;
  padding: 8px 14px;
  background-color: #f6f6f6; }
  .post-cat_tags p {
    display: inline; }
    .post-cat_tags p + p {
      margin-left: 14px; }
  .post-cat_tags .cat, .post-cat_tags .tag {
    font-size: 14px; }
    .post-cat_tags .cat:before, .post-cat_tags .tag:before {
      margin-right: 6px;
      font-family: "FontAwesome";
      color: #666; }
    .post-cat_tags .cat a, .post-cat_tags .tag a {
      color: #2565af; }
  .post-cat_tags .cat:before {
    content: "\f07b"; }
  .post-cat_tags .tag:before {
    content: "\f02c"; }

.social-button-list {
  margin-top: 2em;
  margin-bottom: 2em;
  margin-left: 0;
  padding-top: 1em;
  padding-bottom: 1em;
  border-top: 1px dotted #ccc; }
  .social-button-list > li {
    vertical-align: top; }

.single-pager {
  margin-top: 42px;
  margin-bottom: 42px;
  text-align: center; }
  .single-pager .next, .single-pager .prev {
    display: inline-block;
    padding: 0 10px;
    vertical-align: top; }
    .single-pager .next a, .single-pager .prev a {
      display: inline-block;
      padding: 6px 22px;
      font-size: 14px;
      color: #454545;
      background-color: #f0f0f0;
      border: 1px solid #ccc; }
    .single-pager .next i, .single-pager .prev i {
      font-size: 18px; }
  .single-pager .next i {
    margin-right: 8px; }
  .single-pager .prev i {
    margin-left: 8px; }
  @media (max-width: 767px) {
    .single-pager {
      margin-left: -15px;
      margin-right: -15px; } }
  @media (min-width: 768px) {
    .single-pager .next, .single-pager .prev {
      padding: 0 24px; } }

.topics {
  padding-top: 42px;
  padding-bottom: 42px; }

.topics-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #ccc; }
  .topics-item:before, .topics-item:after {
    content: "";
    display: block; }
  .topics-item:after {
    clear: both; }
  .topics-item .time {
    margin: 0;
    font-size: 14px;
    color: #666; }
  .topics-item .title {
    margin: 0;
    padding: 0;
    line-height: 1.4;
    font-size: 20px; }
    .topics-item .title a {
      display: inline-block;
      max-width: 100%;
      color: #454545;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis; }
  .topics-item .excerpt {
    padding: 1px 15px 15px;
    font-size: 14px; }
    .topics-item .excerpt p {
      margin: 0; }

#fooddarkerLightBoxWrap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  width: 0;
  height: 0;
  margin: 0 auto;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.9);
  transition: opacity 500ms ease-in-out; }
  #fooddarkerLightBoxWrap.actived {
    width: 100%;
    height: 100%;
    opacity: 1; }
    #fooddarkerLightBoxWrap.actived .fooddarker-light-box {
      display: block; }
  #fooddarkerLightBoxWrap.deactived {
    opacity: 0; }

body {
  position: relative;
  height: 100%; }

.fooddarker-light-box {
  cursor: pointer;
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  margin: auto;
  text-align: center; }
  .fooddarker-light-box .image {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 10;
    transform: translateY(-50%);
    display: block;
    min-width: 32px;
    min-height: 32px;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    margin: auto;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center; }
    @media (min-width: 768px) {
      .fooddarker-light-box .image {
        max-width: 80%;
        max-height: 80%; } }
    .fooddarker-light-box .image .fa {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      margin: auto;
      display: block;
      width: 32px;
      height: 32px;
      font-size: 32px;
      color: #fff; }
    .fooddarker-light-box .image img {
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      border: 3px solid #fff; }

.attachment-contents {
  padding-top: 42px;
  padding-bottom: 42px;
  text-align: center; }
  .attachment-contents .image {
    display: inline-block;
    max-width: 100%;
    padding: 15px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 5px 22px 5px rgba(0, 0, 0, 0.2); }
    .attachment-contents .image img {
      max-width: 100%;
      height: auto; }

.attachment-meta {
  max-width: 700px;
  width: 100%;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto; }
  .attachment-meta th, .attachment-meta td {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd; }
  .attachment-meta th {
    width: 150px;
    background-color: #f0f5f0; }

.align-left {
  text-align: left; }

.align-center {
  text-align: center; }

.align-right {
  text-align: right; }

.spacer {
  height: 64px; }

.wys-text:before, .wys-text:after {
  content: "";
  display: block; }

.wys-text:after {
  clear: both; }

.wys-text > p {
  line-height: 1.4; }

.wys-text .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.wys-text h2, .wys-text h3, .wys-text h4, .wys-text h5, .wys-text h6 {
  border: none; }

.page-content-padding {
  padding-top: 52px;
  padding-bottom: 52px; }

.page-content-title + div, .page-content-title + p {
  margin-top: 48px; }

.page-content-image img {
  width: 100%;
  height: auto; }

.page-content-column-pictext .image img {
  width: 100%;
  height: auto; }

@media (max-width: 767px) {
  .page-content-column-pictext .title, .page-content-column-pictext .text {
    padding-left: 15px;
    padding-right: 15px; } }

@media (max-width: 767px) {
  .page-content-column-pictext .col-pictext {
    margin-top: 24px;
    margin-bottom: 24px; } }

.page-content-column-picture img {
  width: 100%;
  height: auto; }

.page-content-column-picture .container-fullid .row {
  margin: 0;
  padding-left: 0;
  padding-right: 0; }

.page-content-column-picture .container-fullid .col-picture {
  padding: 0; }

@media (max-width: 767px) {
  .page-content-column-picture .col-picture {
    margin-top: 24px;
    margin-bottom: 24px; } }

.page-menu-image {
  position: relative;
  background-repeat: repeat;
  background-position: center;
  background-size: cover; }
  .page-menu-image .tlt {
    position: relative; }
    .page-menu-image .tlt img {
      max-height: 100%;
      width: auto; }
    @media (max-width: 767px) {
      .page-menu-image .tlt {
        max-height: 140px; } }

.page-menu-food .title + .flex {
  margin-top: 48px; }

@media (min-width: 768px) {
  .page-menu-food .flex {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    align-content: flex-start;
    flex-flow: row wrap; } }

.page-menu-food .flex .item {
  text-align: center;
  overflow: hidden; }
  .page-menu-food .flex .item:before, .page-menu-food .flex .item:after {
    content: "";
    display: block; }
  .page-menu-food .flex .item:after {
    clear: both; }
  @media (max-width: 767px) {
    .page-menu-food .flex .item {
      padding-bottom: 10px;
      border-bottom: 1px dotted #ccc; }
      .page-menu-food .flex .item + .item {
        margin-top: 10px; }
      .page-menu-food .flex .item .image {
        float: left;
        width: 100px; }
      .page-menu-food .flex .item .title {
        margin-left: 120px;
        text-align: left; }
        .page-menu-food .flex .item .title + .money {
          margin-top: 6px; }
      .page-menu-food .flex .item .money {
        margin-left: 120px;
        text-align: right; } }
  @media (min-width: 768px) {
    .page-menu-food .flex .item {
      width: 20%;
      margin-bottom: 15px;
      padding: 3px; }
      .page-menu-food .flex .item .image + .title {
        margin-top: 5px; }
      .page-menu-food .flex .item .title + .money {
        margin-top: 5px; } }
  .page-menu-food .flex .item .title {
    font-size: 14px; }
  .page-menu-food .flex .item img {
    max-width: 100%;
    height: auto; }
  .page-menu-food .flex .item p {
    margin: 0;
    padding: 0;
    line-height: 1.4; }

.page-menu-food .flex .image {
  overflow: hidden; }

.page-menu-food .flex .not-thumb {
  max-height: 222px;
  height: 0;
  padding-bottom: 99.9864%;
  background-color: #f2f2f2; }

.page-menu-drink .row > div + div {
  margin-top: 32px; }
  @media (min-width: 768px) {
    .page-menu-drink .row > div + div {
      margin-top: 0; } }

.page-menu-drink .drink-wrap {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto; }

.page-menu-drink .drink-table {
  width: 100%; }
  .page-menu-drink .drink-table + .drink-table {
    margin-top: 32px; }
  .page-menu-drink .drink-table thead th {
    vertical-align: bottom; }
  .page-menu-drink .drink-table thead .title {
    font-weight: bold;
    font-size: 18px; }
  .page-menu-drink .drink-table thead .money-all {
    width: 100px;
    text-align: right;
    font-weight: normal;
    font-size: 14px; }
  .page-menu-drink .drink-table tbody td {
    padding-top: 3px;
    padding-bottom: 3px;
    font-size: 14px; }
  .page-menu-drink .drink-table tbody .name {
    padding-left: 10px; }
  .page-menu-drink .drink-table tbody .money {
    width: 100px;
    text-align: right; }
  .page-menu-drink .drink-table tbody .sub td {
    padding-left: 10px;
    font-weight: bold;
    font-size: 16px;
    border-bottom: 1px dotted #ccc; }
  .page-menu-drink .drink-table tbody .item + .sub td {
    padding-top: 20px; }

body {
  counter-reset: course; }

.page-menu-course .main-pic {
  margin-bottom: 5px; }
  .page-menu-course .main-pic img {
    max-width: 100%;
    height: auto; }
  .page-menu-course .main-pic .not-thumb {
    display: none;
    height: 0;
    padding-bottom: 52%; }

.page-menu-course .sub-pic ul {
  margin: 0;
  padding: 0;
  list-style: none; }

.page-menu-course .sub-pic .sub-pic-list {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-flow: row wrap;
  margin-left: -5px;
  margin-right: -5px; }
  .page-menu-course .sub-pic .sub-pic-list li {
    width: 50%;
    padding: 5px;
    padding-bottom: 15px; }
    @media (min-width: 481px) {
      .page-menu-course .sub-pic .sub-pic-list li {
        width: 25%; } }
  .page-menu-course .sub-pic .sub-pic-list .pic {
    position: relative; }
    .page-menu-course .sub-pic .sub-pic-list .pic img {
      max-width: 100%;
      height: auto; }
    .page-menu-course .sub-pic .sub-pic-list .pic .text {
      display: block;
      width: 100%;
      padding: 3px 5px;
      font-size: 13px; }

.page-menu-course .heading {
  display: block;
  margin-bottom: 18px;
  font-weight: bold;
  font-size: 24px;
  border-bottom: 2px solid #454545; }

.page-menu-course .course-menu-list {
  padding-left: 30px;
  list-style: none; }
  .page-menu-course .course-menu-list li {
    position: relative;
    padding-bottom: 2px;
    font-size: 18px;
    border-bottom: 1px solid #ccc; }
    .page-menu-course .course-menu-list li + li {
      margin-top: 15px; }
    .page-menu-course .course-menu-list li:before {
      position: absolute;
      right: 100%;
      margin-right: 8px;
      content: counter(course) ".";
      counter-increment: course;
      font-size: 90%; }

/*--- Pages ---*/
/*--- WordPress ---*/
/*--- Sidebar ---*/
.sidebar {
  padding-top: 1px;
  padding-bottom: 1px;
  /*--- フリースペース用 ---*/ }
  .sidebar:before, .sidebar:after {
    content: "";
    display: block; }
  .sidebar:after {
    clear: both; }
  @media (max-width: 991px) {
    .sidebar {
      margin-top: 64px;
      margin-left: -15px;
      margin-right: -15px; } }
  .sidebar .widget {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1em;
    padding: 15px; }
    .sidebar .widget ul {
      list-style: none; }
    .sidebar .widget > ul {
      margin-top: 1em; }
    .sidebar .widget a {
      font-size: 14px;
      color: #454545; }
  .sidebar .widgettitle {
    margin-top: 10px;
    padding-bottom: 12px;
    font-size: 18px;
    text-align: center; }
    .sidebar .widgettitle:after {
      content: "";
      display: block;
      height: 19px;
      margin-top: 10px;
      background-position: center;
      background-repeat: no-repeat;
      background-image: -webkit-image-set(url("./images/common/img_sidebar_bar.png") 1x, url("./images/common/img_sidebar_bar.svg") 2x);
      background-image: image-set(url("./images/common/img_sidebar_bar.png") 1x, url("./images/common/img_sidebar_bar.svg") 2x);
      background-size: auto 100%; }
    .sidebar .widgettitle .rsswidget {
      font-size: 18px; }
  .sidebar .widget_popular .thumb:hover,
  .sidebar .widget_custom_recent_entries .thumb:hover {
    opacity: .8; }
  .sidebar .widget_popular .title,
  .sidebar .widget_custom_recent_entries .title {
    max-height: 2.8em;
    overflow: hidden;
    line-height: 1.4;
    text-decoration: none; }
    .sidebar .widget_popular .title:hover,
    .sidebar .widget_custom_recent_entries .title:hover {
      text-decoration: underline; }
  .sidebar .widget_popular .post-date,
  .sidebar .widget_custom_recent_entries .post-date {
    font-size: 14px; }
  .sidebar .widget_search label {
    display: none; }
  .sidebar .widget_search form {
    position: relative; }
    .sidebar .widget_search form > div {
      border: 1px solid #ccc; }
  .sidebar .widget_search input[type="text"],
  .sidebar .widget_search input[type="submit"],
  .sidebar .widget_search button[type="submit"] {
    display: block;
    outline: 0;
    border: 0;
    border-radius: 0;
    box-sizing: border-box; }
  .sidebar .widget_search input[type="text"] {
    width: 100%;
    height: 32px;
    padding: 6px;
    line-height: 32px;
    font-size: 16px;
    vertical-align: middle;
    background-color: #ddd;
    transition: background-color 120ms ease-in-out; }
    .sidebar .widget_search input[type="text"]:focus {
      color: #555;
      background-color: #fff; }
  .sidebar .widget_search button[type="submit"],
  .sidebar .widget_search input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    width: 34px;
    height: 34px;
    padding: 0;
    overflow: hidden;
    font-family: "FontAwesome";
    font-size: 20px;
    color: #fff;
    text-align: center;
    background-color: #555; }
    .sidebar .widget_search button[type="submit"]:hover,
    .sidebar .widget_search input[type="submit"]:hover {
      opacity: .8; }
  .sidebar .widget_categories ul {
    list-style: none; }
  .sidebar .widget_categories li {
    margin: .3em 0;
    font-size: 14px; }
    .sidebar .widget_categories li a:hover {
      opacity: .8; }
  .sidebar .widget_categories > ul {
    margin-left: 6px; }
    .sidebar .widget_categories > ul > li .children {
      margin-left: 1em; }
  .sidebar .widget_archive > ul {
    margin: 1em 0; }
  .sidebar .widget_archive ul {
    list-style: none; }
  .sidebar .widget_archive li {
    font-size: 14px; }
    .sidebar .widget_archive li a {
      margin-left: 1em;
      text-decoration: underline; }
      .sidebar .widget_archive li a:hover {
        text-decoration: none; }
    .sidebar .widget_archive li .tgl {
      font-weight: bold;
      font-size: 16px;
      background: none;
      outline: none;
      border: none; }
      .sidebar .widget_archive li .tgl span {
        display: inline-block;
        cursor: pointer; }
      .sidebar .widget_archive li .tgl i {
        margin-left: 6px;
        font-size: 20px;
        color: #aaa;
        transition: 200ms ease-in-out; }
      .sidebar .widget_archive li .tgl.open i {
        transform: rotateX(180deg); }
    .sidebar .widget_archive li .tgl_child {
      position: relative;
      display: none;
      transition: max-height 440ms ease-in-out 0s; }
      .sidebar .widget_archive li .tgl_child li {
        margin: 8px 0; }
      .sidebar .widget_archive li .tgl_child.open {
        max-height: 800px; }
  .sidebar .widget_rss > ul > li + li {
    margin-top: 10px;
    border-top: 1px dotted #999; }
  .sidebar .widget_rss > ul > li cite {
    font-size: 12px; }
  .sidebar .widget_rss .rsswidget {
    max-width: 100%;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis; }
  .sidebar .widget_rss .rss-date {
    display: block;
    font-size: 14px; }
  .sidebar .widget_calendar caption {
    padding: 4px 8px;
    letter-spacing: 2px;
    font-size: 16px;
    background-color: #fff;
    border: 1px solid #999;
    border-bottom: none; }
  .sidebar .widget_calendar table {
    width: 100%;
    background-color: #fff;
    border: 1px solid #999; }
  .sidebar .widget_calendar th, .sidebar .widget_calendar td {
    padding: 8px 6px;
    line-height: 1;
    border: 1px dotted #ccc; }
  .sidebar .widget_calendar th {
    text-align: center; }
  .sidebar .widget_calendar td {
    text-align: right; }
  .sidebar .widget_calendar thead {
    background-color: #f0f0f0; }
    .sidebar .widget_calendar thead th {
      font-size: 14px;
      border-bottom: 1px solid #ccc; }
    .sidebar .widget_calendar thead th[title="土曜日"] {
      color: #05c;
      background-color: #a8d9ff; }
    .sidebar .widget_calendar thead th[title="日曜日"] {
      color: #c24;
      background-color: #ffd9e3; }
  .sidebar .widget_calendar tbody a {
    color: #37f; }
  .sidebar .widget_calendar tbody td {
    position: relative;
    font-size: 14px; }
    .sidebar .widget_calendar tbody td > a {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: block;
      width: 100%;
      height: 100%;
      padding: 8px 6px;
      vertical-align: middle;
      background-color: #f0f5f5; }
  .sidebar .widget_calendar tfoot #prev,
  .sidebar .widget_calendar tfoot #next {
    text-align: center; }
  @media (max-width: 767px) {
    .sidebar .widget_newpost,
    .sidebar .widget_popular {
      display: block; }
      .sidebar .widget_newpost li div:first-child,
      .sidebar .widget_popular li div:first-child {
        width: 86px; }
      .sidebar .widget_newpost li .thumb,
      .sidebar .widget_popular li .thumb {
        width: 72px;
        height: 72px; }
    .sidebar .widget_archive .tgl_child > li {
      display: inline-block; } }
  @media (min-width: 768px) {
    .sidebar .widget_newpost li .thumb,
    .sidebar .widget_popular li .thumb {
      width: 62px;
      height: 62px; } }
  @media (min-width: 769px) {
    .sidebar .widget_newpost li div:first-child,
    .sidebar .widget_popular li div:first-child {
      width: 90px; }
    .sidebar .widget_newpost li .thumb,
    .sidebar .widget_popular li .thumb {
      width: 72px;
      height: 72px; }
    .sidebar .widget_newpost li time,
    .sidebar .widget_popular li time {
      margin-bottom: 6px;
      line-height: .8;
      font-size: 16px; } }
  .sidebar .tagcloud > a {
    display: inline-block;
    margin: 5px;
    padding: 3px 6px;
    line-height: 1;
    background-color: #f2f2f2;
    border: 1px solid #ddd;
    border-radius: 4px; }
  .sidebar .tagcloud .count {
    display: inline-block;
    margin-left: 5px;
    font-size: 12px; }
  .sidebar .widget-freespace .item {
    margin: 20px 0; }
    .sidebar .widget-freespace .item:first-child {
      margin-top: 0; }
  .sidebar .widget-freespace .freespace figcaption {
    font-size: 14px; }

/* Archive Pager */
.pagination {
  width: 100%;
  margin-top: 64px;
  margin-bottom: 64px;
  font-size: 14px;
  text-align: center; }
  .pagination .inactive, .pagination .current, .pagination .prev, .pagination .next {
    display: inline-block;
    min-width: 30px;
    height: 30px;
    padding: 0 4px;
    line-height: 30px;
    vertical-align: top;
    box-sizing: border-box; }
  .pagination .inactive, .pagination .current {
    font-size: 20px; }
  .pagination a {
    color: #555;
    background-color: #ccc;
    transition: 280ms ease-in-out; }
    .pagination a:hover {
      color: #fff;
      background-color: #222;
      text-decoration: none; }
  .pagination .current {
    color: #fff;
    background-color: #222; }
  .pagination .prev, .pagination .next {
    display: inline-block;
    padding: 0 14px; }
    .pagination .prev.not, .pagination .next.not {
      color: #ccc;
      text-shadow: 0 -1px 0 #bbb;
      background-color: #f0f0f0; }
  .pagination .prev i {
    margin-right: 8px; }
  .pagination .next i {
    margin-left: 8px; }
  @media (max-width: 767px) {
    .pagination {
      margin: 1.2em 0 .5em;
      padding: 2px 0; }
      .pagination .inactive, .pagination .current {
        display: none; }
      .pagination .prev {
        float: left; }
      .pagination .next {
        float: right; } }
  @media (min-width: 768px) {
    .pagination {
      margin: 3em 0 1em; } }
  @media (min-width: 768px) {
    .pagination .inactive, .pagination .current {
      margin: 0 .2em; }
    .pagination .prev {
      margin-right: 2em; }
    .pagination .next {
      margin-left: 2em; } }
  @media (min-width: 769px) {
    .pagination {
      margin: 84px 0 42px; } }

/* Single Pager */
.single-pager ul {
  list-style: none; }
  .single-pager ul > li {
    background-color: #ccc; }
    .single-pager ul > li a {
      display: block;
      padding: 8px 14px;
      color: #555; }
      .single-pager ul > li a:hover {
        opacity: .8; }
    .single-pager ul > li i {
      font-size: 120%; }

.single-pager .single-next i {
  margin-right: 6px; }

.single-pager .single-prev i {
  margin-left: 6px; }

@media (max-width: 767px) {
  .single-pager {
    text-align: center; }
    .single-pager li {
      margin: 16px 0; } }

@media (min-width: 1200px) {
  .single-pager .single-next {
    float: left; }
  .single-pager .single-prev {
    float: right; } }

/*--- Page Pager ---*/
.page-pager > span, .page-pager > a {
  display: inline-block;
  padding: 3px 10px; }

.page-pager > span {
  color: #fff;
  background-color: #222; }

.page-pager > a {
  background-color: #ccc; }
  .page-pager > a:hover {
    color: #fff;
    background-color: #222; }

/*--- Link Pages ---*/
.link-pages-wrapper {
  margin-top: 64px;
  margin-bottom: 64px;
  padding: 2px 0; }
  .link-pages-wrapper > span {
    color: #fff;
    background-color: #222; }
  .link-pages-wrapper > a {
    text-decoration: none;
    color: #454545;
    background-color: #f0f0f0;
    border: 1px solid #ddd; }
    .link-pages-wrapper > a:hover {
      color: #fff;
      background-color: #222;
      border-color: #222; }
  .link-pages-wrapper > span, .link-pages-wrapper > a {
    display: inline-block;
    min-width: 32px;
    height: 30px;
    margin: 5px;
    padding: 6px 8px;
    line-height: 1;
    vertical-align: top;
    font-size: 16px;
    text-align: center; }
/*# sourceMappingURL=maps/fooddarker.css.map */
