@charset "UTF-8";
/*
Theme Name: H&N
Theme URI:
Description:
Author: フードページ
Author URI: http://www.food-page.com/
Version: 1.0
*/
/* Variables
------------------------------------------ */
/* Object-oriented CSS
------------------------------------------ */
#body { /* 優先 */
  /* 5 columns */
  /* ------ 色 ------ */
  /* ------ フォント ------ */
  /* ------ アニメーション ------ */
  /* ------ アニメーション ------ */
  /* パララックス */
}
#body .btn-standard {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background: url(./images/arrow-right.svg) no-repeat top 14px right 7px #000;
  background-size: 37px 6px;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  color: #fff;
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  min-width: 190px;
  padding: 4px 25px 5px;
  position: relative;
  text-align: center;
}
#body .btn-standard:hover {
  background-color: #b89a69;
}
#body .btn-standard.alt:hover {
  background-color: #99331f;
}
#body .btn.disabled {
  cursor: not-allowed;
}
#body .clearfix {
  clear: both;
}
#body .w-20 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}
@media (min-width: 576px) {
  #body .w-sm-20 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  #body .w-md-20 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  #body .w-lg-20 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (min-width: 1200px) {
  #body .w-xl-20 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}
#body .bg-firstColor {
  background-color: #b89a69;
}
#body .bg-firstColor-light {
  background-color: #0091da;
}
#body .bg-secondColor {
  background-color: #99331f;
}
#body .bg-grey {
  background-color: #666;
}
#body .bg-white {
  background-color: #fff;
}
#body .font-serif {
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "游明朝", YuMincho, serif;
}
#body .font-firstColor {
  color: #b89a69;
}
#body .font-white {
  color: #fff;
}
#body .linkOpacity {
  opacity: 1;
}
#body .linkOpacity:hover {
  opacity: 0.8;
}
#body .fadeIn {
  opacity: 0;
  -webkit-transform: translate(0, 20px);
  transform: translate(0, 20px);
  -webkit-transition: all 1.7s ease-in-out;
  transition: all 1.7s ease-in-out;
}
#body .fadeIn.on {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
#body .fadeInUp {
  opacity: 0;
  -webkit-transform: translate(0, 60px);
  transform: translate(0, 60px);
  -webkit-transition: all 1.1s ease-in-out;
  transition: all 1.1s ease-in-out;
}
#body .fadeInUp.on {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
#body .fadeInRight {
  opacity: 0;
  -webkit-transform: translate(-80px, 0);
  transform: translate(-80px, 0);
  -webkit-transition: all 0.9s ease-in-out;
  transition: all 0.9s ease-in-out;
}
#body .fadeInRight.on {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
#body .transDelay02 {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
#body .transDelay04 {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
#body .transDelay06 {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
#body .transDelay05 {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
#body .transDelay10 {
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}
#body .transDelay15 {
  -webkit-transition-delay: 1.5s;
  transition-delay: 1.5s;
}

/* Header
------------------------------------------ */
header {
  background: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgba(0, 0, 0, 0.5)));
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.5) 50%);
  padding-bottom: 20px;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 999;
}

header.page {
  position: relative;
}

/* ------ ロゴエリア（トップ） ------ */
#logo {
  padding: 7px 16px;
  text-align: left;
  z-index: 100;
}
@media (max-width: 1200px) {
  #logo {
    margin-left: 0;
    max-width: 370px;
  }
}
@media (max-width: 576px) {
  #logo img {
    max-width: 200px;
  }
}

/* ------ ナビゲーションエリア（トップ） ------ */
.navbar {
  border: none;
  bottom: 10px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-top: 9px;
  position: absolute;
  right: 0;
  top: 20px;
  text-align: right;
  z-index: 99;
  /* メニューボタン */
  /* メニューボタンのアニメーション */
  /* メインナビゲーション */
}
.navbar button.navbar-toggler {
  background-color: #b89a69;
  border: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  height: 70px;
  width: 70px;
  padding-top: 0px;
  z-index: 999;
}
.navbar button.navbar-toggler:hover, .navbar button.navbar-toggler:focus, .navbar button.navbar-toggler:active {
  background-color: #b89a69;
  outline: none;
}
.navbar button.navbar-toggler .icon-bar {
  background-color: #fff;
  display: block;
  height: 3px;
  margin-bottom: 6px;
  margin-left: auto;
  margin-right: auto;
  width: 31px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.navbar button.navbar-toggler .icon-bar:last-child {
  margin-bottom: 0;
}
.navbar button.navbar-toggler #menu-text {
  color: #fff;
  display: block;
  font-size: 11px;
  font-weight: 600;
  line-height: 0;
  padding-top: 4px;
}
.navbar button.navbar-toggler .top-bar {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: 15% 200%;
          transform-origin: 15% 200%;
}
.navbar button.navbar-toggler .middle-bar {
  opacity: 0;
}
.navbar button.navbar-toggler .bottom-bar {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: 13% -47%;
          transform-origin: 13% -47%;
}
.navbar button.navbar-toggler.collapsed .top-bar {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.navbar button.navbar-toggler.collapsed .middle-bar {
  opacity: 1;
}
.navbar button.navbar-toggler.collapsed .bottom-bar {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.navbar .navbar-collapse ul.nav {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.navbar .navbar-collapse ul.nav li a {
  background-color: transparent;
  border-radius: 45px;
  -webkit-border-radius: 45px;
  -moz-border-radius: 45px;
  -ms-border-radius: 45px;
  -o-border-radius: 45px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-left: 4px;
  padding: 0px 5px;
  text-align: center;
  width: 100px;
}
.navbar .navbar-collapse ul.nav li a.large-link {
  width: 157px;
}
.navbar .navbar-collapse ul.nav li a:hover {
  background-color: #fff;
  color: #000;
}
.navbar .navbar-collapse ul.nav li .dropdown-menu {
  background: rgba(255, 255, 255, 0.9);
  left: 50%;
  margin-top: 7px;
  text-align: center;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.navbar .navbar-collapse ul.nav li .dropdown-menu a {
  border-bottom: 1px solid transparent;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  color: #000;
  display: inline-block;
  height: auto;
  padding-top: 3px;
  min-width: 100px;
  width: auto;
}
.navbar .navbar-collapse ul.nav li .dropdown-menu a:hover {
  background-color: transparent;
  border-bottom: 1px solid #000;
}

@media (min-width: 1200px) {
  .navbar {
    /* メインナビゲーション */
  }
  .navbar .navbar-collapse {
    display: block;
  }
}
@media (max-width: 1200px) {
  .navbar {
    height: 70px;
    padding: 0;
    top: 0;
    /* メインナビゲーション */
  }
  .navbar .navbar-collapse {
    background-color: #b89a69;
    margin-top: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 70px;
    width: 100%;
    z-index: 999;
  }
  .navbar .navbar-collapse ul.nav {
    display: block;
    margin: 0;
  }
  .navbar .navbar-collapse ul.nav li.nav-item {
    display: block;
    float: none;
    margin-left: 0;
    margin-bottom: 0;
  }
  .navbar .navbar-collapse ul.nav li.nav-item a {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    font-size: 16px !important;
    font-weight: 800;
    margin: 0;
    padding: 8px 0;
    text-align: center;
    width: 100%;
  }
  .navbar .navbar-collapse ul.nav li.nav-item:last-child a {
    border-right: none;
    border-bottom: 1px solid #fff;
  }
  .navbar .navbar-collapse ul.nav li.nav-item a:hover {
    background-color: #9b7e54;
    color: #fff;
  }
  .navbar .navbar-collapse ul.nav li.nav-item:first-child a {
    border-top: 1px solid #fff;
  }
  .navbar .navbar-collapse ul.nav li .dropdown-menu {
    background-color: #9b7e54;
    border-bottom: 1px solid #fff;
    float: none;
    left: auto;
    margin-top: 0;
    padding: 10px 0;
    position: static;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .navbar .navbar-collapse ul.nav li .dropdown-menu a {
    color: #fff;
    font-weight: 200 !important;
    border-bottom: none !important;
  }
}
@media (max-width: 576px) {
  .navbar {
    height: 58px;
    /* メインナビゲーション */
    /* メニューボタン */
    /* メインナビゲーション */
  }
  .navbar button.navbar-toggler {
    height: 62px;
    width: 62px;
  }
  .navbar .navbar-collapse {
    top: 62px;
  }
}
/* トップページのデザイン
------------------------------------------ */
/* ------ メインビジュアル ------ */
#main-image {
  background: url("./images/top/main-visual-1O1A3984.jpg") no-repeat center;
  background-size: cover;
  height: 100%;
  position: relative;
  z-index: 1;
}
#main-image::before {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
}

/* Smart Slider */
#smartslider-wrapper {
  padding-top: 75px;
}
@media (max-width: 1200px) {
  #smartslider-wrapper {
    padding-top: 57px;
  }
}

/* トップページコンテナ */
#home-content {
  background-color: #fff;
  position: relative;
  z-index: 2;
}

/* ------ 緊急記事 ------ */
.notice-table-wrapper {
  color: #fff;
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "游明朝", YuMincho, serif;
  font-size: 14px;
  font-weight: 800;
  margin: 20px auto 20px auto;
  max-width: 700px;
  padding: 0 15px;
}
.notice-table-wrapper .head-title {
  background-color: #b89a69;
  margin-bottom: 4px;
  padding: 6px 10px;
}
.notice-table-wrapper .item-wrapper {
  margin-bottom: 4px;
}
.notice-table-wrapper .info-left {
  background-color: #616570;
  height: 100%;
  padding: 6px 5px;
  min-width: 120px;
}
@media (max-width: 576px) {
  .notice-table-wrapper .info-left {
    min-width: 100px;
  }
}
.notice-table-wrapper .info-right {
  background-color: #808080;
  padding: 6px 10px 6px 40px;
  width: 580px;
}
@media (max-width: 576px) {
  .notice-table-wrapper .info-right {
    padding: 6px 8px 6px 15px;
  }
}
.notice-table-wrapper .info-right a {
  color: #fff;
}
.notice-table-wrapper .info-right a:hover {
  color: #FF0000;
}

/* ------ 紹介 ------ */
#introduction-shops-wrapper {
  background-color: #f5f5f1;
}

/* ------ 紹介 ------ */
#introduction {
  background: url(./images/top/ten-million.svg) no-repeat left top #f5f5f1;
  margin-bottom: -170px;
  padding: 60px 0 200px;
}
@media (max-width: 767px) {
  #introduction {
    padding-top: 50px;
  }
}
@media (max-width: 576px) {
  #introduction {
    background-position: left top 7vh;
  }
}
#introduction #introduction-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 42px;
}
@media (max-width: 767px) {
  #introduction #introduction-text {
    font-size: 18px;
    line-height: 36px;
  }
}
@media (max-width: 576px) {
  #introduction #introduction-text {
    font-size: 16px;
    line-height: 32px;
  }
}

/* ------ 店舗情報 ------ */
#shops {
  margin-bottom: -204px;
  /* スライダー */
}
@media (max-width: 992px) {
  #shops {
    margin-bottom: -194px;
  }
}
@media (max-width: 767px) {
  #shops {
    margin-bottom: -183px;
  }
}
@media (max-width: 576px) {
  #shops {
    margin-bottom: -169px;
  }
}
#shops #shops-gallery {
  margin-bottom: -105px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  #shops #shops-gallery {
    margin-bottom: -75px;
  }
}
#shops #shops-slider-gallery {
  margin-bottom: -105px;
  position: relative;
  z-index: 2;
}
#shops .shop-item {
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  padding-top: 7px;
}
#shops .shop-item:hover {
  -webkit-transform: translate(0, -7px);
  transform: translate(0, -7px);
}
#shops .slick-prev, #shops .slick-next {
  left: 0;
  top: 48%;
  height: 50px;
  width: 50px;
  z-index: 9;
}
@media (max-width: 1400px) {
  #shops .slick-prev, #shops .slick-next {
    left: 10px;
  }
}
#shops .slick-prev::before, #shops .slick-next::before {
  background-color: #000;
  border-radius: 60px;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
  color: #fff;
  content: "\f104";
  font-family: "FontAwesome";
  font-size: 50px;
  padding: 0 16px;
}
#shops .slick-next {
  left: auto;
  right: 0;
}
@media (max-width: 1400px) {
  #shops .slick-next {
    right: 10px;
  }
}
#shops .slick-next::before {
  content: "\f105";
}
#shops #shops-img-wrapper {
  position: relative;
  z-index: 1;
}
#shops #shops-img-wrapper .shops-img {
  height: 45vh;
}
@media (max-width: 992px) {
  #shops #shops-img-wrapper .shops-img {
    height: 460px;
  }
}
@media (max-width: 767px) {
  #shops #shops-img-wrapper .shops-img {
    height: 390px;
  }
}
@media (max-width: 576px) {
  #shops #shops-img-wrapper .shops-img {
    height: 320px;
  }
}
#shops #shops-img-wrapper .shops-img-01 {
  background: url("./images/top/3R1A2139-1-w1200.jpg") no-repeat center;
  background-size: cover;
}
#shops #shops-img-wrapper .shops-img-02 {
  background: url("./images/top/3R1A2028-2-w1200.jpg") no-repeat center;
  background-size: cover;
}
#shops .introduction-img-description {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  left: 0;
  right: 0;
  bottom: 15px;
  position: absolute;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}

/* ------ Give & Give ------ */
#give {
  position: relative;
  z-index: 2;
}
#give #give-main-inner .give-row {
  color: #fff;
  font-weight: 700;
  text-align: left;
}
#give #give-main-inner .give-row .inner-01 {
  background: url(./images/top/tag-red.svg) no-repeat;
  background-size: 350px 46px;
  font-size: 26px;
  margin-right: -35px;
  padding-left: 19px;
  height: 46px;
  width: 350px;
}
@media (max-width: 992px) {
  #give #give-main-inner .give-row .inner-01 {
    background-size: 305px 40px;
    font-size: 24px;
    height: 40px;
    width: 305px;
  }
}
@media (max-width: 767px) {
  #give #give-main-inner .give-row .inner-01 {
    background-size: 243px 32px;
    font-size: 19px;
    line-height: 30px;
    margin-right: -26px;
    height: 32px;
    width: 243px;
  }
}
@media (max-width: 576px) {
  #give #give-main-inner .give-row .inner-01 {
    background-size: 173px 23px;
    font-size: 14px;
    line-height: 22px;
    margin-right: -20px;
    padding-left: 10px;
    height: 23px;
    width: 173px;
  }
}
#give #give-main-inner .give-row .inner-02 {
  background: url(./images/top/tag-gold.svg) no-repeat;
  background-size: 403px 46px;
  font-size: 26px;
  padding-left: 50px;
  height: 46px;
  width: 403px;
}
@media (max-width: 992px) {
  #give #give-main-inner .give-row .inner-02 {
    background-size: 350px 40px;
    font-size: 24px;
    height: 40px;
    width: 350px;
  }
}
@media (max-width: 767px) {
  #give #give-main-inner .give-row .inner-02 {
    background-size: 280px 32px;
    font-size: 19px;
    line-height: 30px;
    height: 32px;
    width: 280px;
  }
}
@media (max-width: 576px) {
  #give #give-main-inner .give-row .inner-02 {
    background-size: 202px 23px;
    font-size: 14px;
    line-height: 22px;
    padding-left: 25px;
    height: 23px;
    width: 202px;
  }
}
#give .give-text-01 {
  font-size: 20px;
}
@media (max-width: 576px) {
  #give .give-text-01 {
    font-size: 19px;
  }
}
#give .give-text-02 {
  font-size: 16px;
}

/* ------ 私たちは ------ */
#vision {
  padding: 80px 0 0;
  position: relative;
  /* 右の曲がってる背景 */
  /* 画像の形 */
  /* テキスト */
}
@media (max-width: 767px) {
  #vision {
    padding-top: 70px;
  }
}
#vision::after {
  background: #f5f5f1;
  content: "";
  position: absolute;
  bottom: -1px;
  right: 0;
  height: 400px;
  width: 55%;
  z-index: -1;
  clip-path: polygon(0 40%, 100% 0, 100% 100%, 0% 100%);
}
#vision .img {
  background: url("./images/top/1M6A9264.jpg") no-repeat bottom right;
  height: 460px;
  width: 100%;
  clip-path: polygon(100% 100%, 0% 100%, 0% 0%, 100% 80px);
  margin: 0 auto;
}
@media (max-width: 767px) {
  #vision .img {
    height: 400px;
  }
}
#vision .text-wrapper {
  font-weight: 700;
  margin-top: 30px;
  padding-left: 30px;
}
#vision .text-wrapper .highlight {
  font-size: 30px;
  line-height: 42px;
}
@media (max-width: 1200px) {
  #vision .text-wrapper .highlight {
    font-size: 26px;
  }
}
@media (max-width: 992px) {
  #vision .text-wrapper .highlight {
    font-size: 24px;
    line-height: 36px;
  }
}
#vision .text-wrapper .text {
  font-size: 20px;
  line-height: 42px;
}
@media (max-width: 1200px) {
  #vision .text-wrapper .text {
    font-size: 19px;
    line-height: 40px;
  }
}
#vision .text-wrapper .text p {
  margin-bottom: 32px;
}
#vision .text-wrapper.bottom-text {
  margin-top: 65px;
}
@media (max-width: 1200px) {
  #vision .text-wrapper.bottom-text {
    margin-top: 40px;
  }
}

/* ------ 採用情報 ------ */
#recruit {
  background-color: #f5f5f1;
  margin-bottom: 40px;
  position: relative;
}
#recruit .recruit-title-wrapper {
  padding-bottom: 160px;
  padding-top: 70px;
  position: relative;
  /* 左の白い背景 */
}
@media (max-width: 1400px) {
  #recruit .recruit-title-wrapper {
    padding-bottom: 110px;
  }
}
@media (max-width: 1200px) {
  #recruit .recruit-title-wrapper {
    padding-bottom: 80px;
  }
}
@media (max-width: 992px) {
  #recruit .recruit-title-wrapper {
    padding-bottom: 40px;
  }
}
#recruit .recruit-title-wrapper::before {
  background: #fff;
  content: "";
  position: absolute;
  top: 0;
  left: -77%;
  height: 100%;
  width: 100%;
  z-index: 1;
}
@media (max-width: 1400px) {
  #recruit .recruit-title-wrapper::before {
    left: -81%;
  }
}
@media (max-width: 1200px) {
  #recruit .recruit-title-wrapper::before {
    left: -83%;
  }
}
@media (max-width: 992px) {
  #recruit .recruit-title-wrapper::before {
    left: -100%;
  }
}
@media (max-width: 767px) {
  #recruit .recruit-title-wrapper::before {
    display: none;
  }
}
#recruit .highlight {
  font-size: 26px;
  font-weight: 700;
  line-height: 42px;
}
@media (max-width: 1200px) {
  #recruit .highlight {
    font-size: 23px;
  }
}
@media (max-width: 576px) {
  #recruit .highlight {
    font-size: 20px;
    line-height: 36px;
  }
}
#recruit #recruit-main-wrapper {
  background: #b89a69;
  font-weight: 700;
  padding-top: 40px;
}
@media (max-width: 1200px) {
  #recruit #recruit-main-wrapper {
    padding-top: 25px;
  }
}
@media (max-width: 992px) {
  #recruit #recruit-main-wrapper {
    padding-bottom: 25px;
  }
}
#recruit #recruit-main-wrapper #recruit-main-text {
  padding-bottom: 50px;
  padding-left: 80px;
  width: 45%;
}
@media (max-width: 1400px) {
  #recruit #recruit-main-wrapper #recruit-main-text {
    padding-left: 28px;
  }
}
@media (max-width: 1200px) {
  #recruit #recruit-main-wrapper #recruit-main-text {
    padding-left: 15px;
    padding-bottom: 30px;
  }
}
@media (max-width: 992px) {
  #recruit #recruit-main-wrapper #recruit-main-text {
    padding-left: 0;
    padding-bottom: 45px;
    width: 100%;
  }
}
#recruit #recruit-main-wrapper #recruit-main-text p {
  font-size: 20px;
}
@media (max-width: 1200px) {
  #recruit #recruit-main-wrapper #recruit-main-text p {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  #recruit #recruit-main-wrapper #recruit-main-text p {
    font-size: 16px;
  }
}
#recruit #recruit-main-wrapper #recruit-main-text .point-row {
  color: #fff;
  font-size: 25px;
}
@media (max-width: 1200px) {
  #recruit #recruit-main-wrapper #recruit-main-text .point-row {
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  #recruit #recruit-main-wrapper #recruit-main-text .point-row {
    margin: 0 auto;
    text-align: left;
    max-width: 380px;
  }
}
@media (max-width: 576px) {
  #recruit #recruit-main-wrapper #recruit-main-text .point-row {
    font-size: 18px;
    max-width: 96%;
  }
}
#recruit #recruit-main-wrapper #recruit-main-text .point-row span {
  background-color: #f5f5f1;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  color: #000;
  display: inline-block;
  line-height: 28px;
  margin: 0 11px 10px 0;
  padding: 0px 8px 2px 8px;
}
@media (max-width: 1200px) {
  #recruit #recruit-main-wrapper #recruit-main-text .point-row span {
    margin-right: 6px;
  }
}
#recruit #recruit-main-wrapper #recruit-main-img-wrapper {
  position: absolute;
  bottom: -31px;
  right: 0;
}
@media (max-width: 1400px) {
  #recruit #recruit-main-wrapper #recruit-main-img-wrapper {
    bottom: -28px;
    text-align: right;
  }
}
@media (max-width: 1200px) {
  #recruit #recruit-main-wrapper #recruit-main-img-wrapper {
    bottom: -24px;
  }
}
@media (max-width: 992px) {
  #recruit #recruit-main-wrapper #recruit-main-img-wrapper {
    position: static;
    text-align: center;
    width: 100%;
  }
}
@media (max-width: 1400px) {
  #recruit #recruit-main-wrapper #recruit-main-img-wrapper img {
    width: 58%;
  }
}
@media (max-width: 1200px) {
  #recruit #recruit-main-wrapper #recruit-main-img-wrapper img {
    max-width: 1020px;
  }
}
@media (max-width: 767px) {
  #recruit #recruit-main-wrapper #recruit-main-img-wrapper img {
    width: 85%;
  }
}
@media (max-width: 576px) {
  #recruit #recruit-main-wrapper #recruit-main-img-wrapper img {
    width: 95%;
  }
}

/* ------ 私たちの声 ------ */
#voice {
  padding-bottom: 70px;
  padding-top: 70px;
  position: relative;
}
#voice::before {
  background: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), color-stop(30%, rgb(238, 236, 224)));
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgb(238, 236, 224) 30%);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 130px;
  width: 100%;
}

/* ------ お知らせ（トップページ） ------ */
#news.home {
  padding-top: 64px;
}
#news.home .section-title {
  font-size: 45px;
  font-weight: 500;
}

/* Page & Single
------------------------------------------ */
/* ------ PageとSingleのデザイン ------ */
@media (min-width: 1200px) {
  #page.container {
    width: 1060px;
  }
}
#page {
  margin-bottom: 50px;
}
#page .date {
  border-bottom: 1px dotted #000;
  color: #666;
  font-size: 12px;
  padding-bottom: 18px;
}
#page .date a {
  color: #000;
}
#page .date a:hover {
  color: #9b7e54;
}
#page p {
  line-height: 1.8em;
}

@media (max-width: 768px) {
  #page {
    font-size: 16px;
  }
  #page .date {
    font-size: 13px;
  }
}
.dashboard {
  margin: 25px 0 40px;
  position: relative;
}
.dashboard a {
  color: #b89a69;
  text-decoration: underline;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.dashboard a:hover, .dashboard a:focus, .dashboard a:active {
  color: #9b7e54;
  text-decoration: underline;
}
.dashboard p {
  margin-bottom: 18px;
}
.dashboard ol, .dashboard ul {
  margin: 15px 0 25px;
  padding-left: 18px;
}
.dashboard ol li, .dashboard ul li {
  margin: 0.5em 0;
}
.dashboard ol li {
  list-style-type: decimal;
}
.dashboard ul li {
  list-style-type: disc;
}

/* ------ 店舗ページのデザイン ------ */
.nav-pills .slick-prev, .nav-pills .slick-next {
  left: -29px;
  top: 10px;
}
@media (max-width: 580px) {
  .nav-pills .slick-prev, .nav-pills .slick-next {
    left: -25px;
    top: 7px;
  }
}
.nav-pills .slick-prev::before, .nav-pills .slick-next::before {
  color: #b89a69;
  content: "\f104";
  font-family: "FontAwesome";
  font-size: 42px;
}

.nav-pills .slick-next {
  left: auto;
  right: -29px;
}
@media (max-width: 580px) {
  .nav-pills .slick-next {
    right: -25px;
  }
}
.nav-pills .slick-next::before {
  content: "\f105";
}

.shop-map {
  width: 100%;
}

/* ------ スタッフインタビューテンプレートのデザイン ------ */
.staff-main-visual {
  margin-bottom: 23px;
  position: relative;
}

.staff-title {
  background-color: #fff;
  color: #8fd1fc;
  font-size: 23px;
  font-weight: 500;
  position: absolute;
  top: 23px;
  left: 23px;
  padding: 13px 18px;
}
@media (max-width: 992px) {
  .staff-title {
    font-size: 20px;
    top: 20px;
    left: 20px;
  }
}
@media (max-width: 767px) {
  .staff-title {
    border: 1px solid #8fd1fc;
    font-size: 17px;
    padding: 7px 9px;
    top: -20px;
    left: 9px;
  }
}

.staff-subtitle {
  font-size: 28px;
  font-weight: 500;
  line-height: 60px;
  position: absolute;
  bottom: 19px;
  left: 23px;
}
@media (max-width: 992px) {
  .staff-subtitle {
    font-size: 22px;
    line-height: 52px;
    bottom: 16px;
    left: 20px;
  }
}
@media (max-width: 767px) {
  .staff-subtitle {
    font-size: 20px;
    line-height: 45px;
    margin-top: 10px;
    position: static;
  }
}

.staff-subtitle span {
  background-color: #8fd1fc;
  padding: 5px 10px;
}

.staff-lead-text {
  font-size: 22px;
  line-height: 58px;
  margin-bottom: 67px;
}
@media (max-width: 992px) {
  .staff-lead-text {
    font-size: 20px;
    line-height: 55px;
  }
}
@media (max-width: 767px) {
  .staff-lead-text {
    font-size: 17px;
    line-height: 50px;
  }
}

.staff-lead-text span {
  border-bottom: 1px solid #000;
  letter-spacing: 1px;
  padding-bottom: 8px;
}

/* ------ SNSシェアボタン ------ */
#sns-share-area {
  margin-bottom: 40px;
  margin-top: 40px;
  /* FACEBOOK */
  /* TWITTER */
  /* LINE */
}
@media (max-width: 576px) {
  #sns-share-area {
    margin-bottom: 25px;
  }
}
#sns-share-area a {
  display: inline-block;
  height: 40px;
  margin: 0 3px;
  width: 145px;
}
@media (max-width: 576px) {
  #sns-share-area a {
    width: 88px;
  }
}
#sns-share-area .facebook-share-button {
  display: inline-block;
}
#sns-share-area .facebook-share-button a {
  background: url("./images/social-icon-circle-facebook.svg") no-repeat center #1877F2;
  background-size: 40px;
}
#sns-share-area .twitter-share-button {
  display: inline-block;
}
#sns-share-area .twitter-share-button a {
  background: url("./images/social-icon-circle-twitter.svg") no-repeat center #1DA1F2;
  background-size: 40px;
}
#sns-share-area .line-share-button {
  display: inline-block;
}
#sns-share-area .line-share-button a {
  background: url("./images/social-icon-circle-line.png") no-repeat center #00B900;
  background-size: 40px;
}

/* ------ FBいいね！ボタン ------ */
#fb-like-area {
  border-top: 1px solid #4D4D4D;
  margin: 50px auto 10px;
  padding-top: 30px;
}
#fb-like-area .text {
  font-size: 15px;
}

/* Sidebar
------------------------------------------ */
#sidebar .widget-wrapper {
  margin-bottom: 35px;
}
#sidebar .sidebar-title {
  color: #99331f;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
  text-align: center;
}

/* ------ カテゴリー ------ */
/* ------ お知らせ ------ */
#sidebar-news li {
  margin-bottom: 20px;
}
#sidebar-news li a:hover {
  color: #9b7e54;
}
#sidebar-news .title {
  border-bottom: 1px dotted #808080;
  display: block;
  font-weight: 800;
  margin-bottom: 5px;
  padding-bottom: 3px;
}
#sidebar-news .sidebar-date {
  color: #4d4d4d;
  font-size: 10px;
}

/* フッター
------------------------------------------ */
/* ------ ページトップへのボタン ------ */
.pagetop {
  background-color: rgba(153, 51, 31, 0.85);
  background-image: url("./images/to-top.svg");
  background-position: center;
  background-size: 39px 41px;
  background-repeat: no-repeat;
  border-radius: 60px;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
  cursor: pointer;
  display: none;
  font-size: 26px;
  line-height: 43px;
  height: 60px;
  width: 60px;
  padding-top: 1px;
  position: fixed;
  right: 20px;
  bottom: 100px;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
  z-index: 999;
}
@media (max-width: 576px) {
  .pagetop {
    bottom: 60px;
  }
}

.pagetop:hover {
  background-color: rgb(153, 51, 31);
}

/* ------ フッターのコンテンツ ------ */
footer {
  background-color: #666;
  color: #fff;
  padding: 70px 0 20px;
  position: relative;
  text-align: center;
  z-index: 99;
  /* フッターのロゴ */
  /* フッターのナビゲーション */
  /* コピライト */
}
footer #logo-footer {
  margin: 0 auto 55px;
  padding: 0 20px;
}
@media (max-width: 767px) {
  footer #logo-footer {
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  footer #logo-footer img {
    max-width: 290px;
  }
}
footer ul#nav-footer {
  margin-bottom: 12px;
}
footer ul#nav-footer li {
  border-right: 1px solid #fff;
  display: inline-block;
  line-height: 12px;
  padding: 0 14px 0 9px;
}
footer ul#nav-footer li a {
  border-bottom: 1px solid transparent;
  color: #fff;
  font-size: 14px;
  padding-bottom: 5px;
}
footer ul#nav-footer li a:hover {
  border-bottom: 1px solid #fff;
}
footer ul#nav-footer li:last-child {
  border-right: none;
}
@media (max-width: 576px) {
  footer ul#nav-footer {
    margin-bottom: 25px;
  }
  footer ul#nav-footer li {
    border: none;
    display: block;
    margin-bottom: 15px;
  }
}
footer #copyright {
  font-size: 12px;
  padding: 12px 10px;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* ------ 全体のデザイン ------ */
body {
  font-family: "Noto Sans JP", メイリオ, Meiryo, Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Arial, sans-serif !important;
  font-size: 16px;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

div, form, h1, h2, h3, h4, h5, h6, table {
  margin: 0px;
  padding: 0px;
}

h1 {
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "游明朝", YuMincho, serif;
  font-size: 14px;
}

h2 {
  color: #b89a69;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 30px;
  text-align: center;
}

h3 {
  color: #99331f;
  font-size: 24px;
  font-weight: 800;
  line-height: 31px;
  margin: 0 0 20px;
}

h4 {
  border-bottom: 1px dotted #808080;
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "游明朝", YuMincho, serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 25px;
  margin: 0 0 30px;
  padding: 0 30px 7px 2px;
}

h5 {
  border-left: 20px solid #99331f;
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "游明朝", YuMincho, serif;
  font-size: 20px;
  font-weight: 800;
  margin: 20px 0 20px 0;
  padding: 0 0 0 7px;
}

h6 {
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "游明朝", YuMincho, serif;
  font-size: 16px;
  font-weight: 800;
  margin: 15px 0;
}

h6:before {
  display: inline-block;
  vertical-align: middle;
  /*以下白丸つくる*/
  content: "";
  width: 1em;
  height: 1em;
  background: #000;
  border-radius: 50%;
  margin-right: 8px;
}

@media (max-width: 576px) {
  h2 {
    font-size: 26px;
  }
  h3 {
    font-size: 22px;
    text-align: left;
  }
  h4, h5, h6 {
    font-size: 22px;
  }
}
ul {
  margin: 0px;
  padding: 0px;
}

li {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

blockquote {
  border: 15px solid #b89a69;
  margin: 0 auto 30px;
  padding: 25px 30px;
  width: 92%;
}
blockquote .title {
  border-bottom: 1px dotted #000;
  color: #666;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 23px;
  padding-bottom: 4px;
  text-align: center;
}

img {
  border: none;
  margin: 0px;
  padding: 0px;
  height: auto;
  max-width: 100%;
}

@media (max-width: 480px) {
  img {
    height: auto;
    max-width: 100%;
  }
}
a {
  color: #000;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

a:hover, a:focus, a:active {
  text-decoration: none;
  color: #9b7e54;
}

button {
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.container-fluid {
  max-width: 1400px;
}

@media (min-width: 1350px) {
  .container {
    max-width: 1350px;
  }
}
/* ------ table ------ */
.table th, .table td {
  padding: 15px !important;
  table-layout: fixed;
}

@media (max-width: 480px) {
  .table-responsive {
    border: none;
  }
}
/* ------ nav-pills ------ */
#page .nav-pills {
  margin-bottom: 30px;
}
#page .nav-pills li {
  margin: 0px;
  padding: 1px;
}
#page .nav-pills li a {
  background-color: #b89a69;
  border: 1px solid transparent;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  color: #fff;
  font-weight: 500;
}
#page .nav-pills li a.active {
  background-color: #9b7e54;
}
#page .nav-pills li a:hover {
  background-color: #9b7e54;
  color: #fff;
}
#page .nav-pills li + li {
  margin: 0px;
}

@media (max-width: 767px) {
  .nav-pills li a {
    font-size: 14px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 580px) {
  .nav-pills li a {
    font-size: 12px;
  }
}
/* ------ お知らせ ------ */
#news .item {
  font-size: 12px;
  margin-bottom: 30px;
  max-width: 430px;
}
@media (max-width: 767px) {
  #news .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 0;
    max-width: 100%;
  }
}
#news .item-frame {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 10px;
  width: 100%;
}
#news .image-wrapper {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  #news .image-wrapper {
    padding-right: 0;
  }
}
#news .image {
  margin-bottom: 15px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 767px) {
  #news .image {
    float: left;
    margin-right: 15px;
    max-width: 120px;
    width: 120px;
  }
}
#news .image img {
  border: 1px solid #ddd;
  width: 100%;
}
@media (max-width: 767px) {
  #news .description-wrapper {
    padding-left: 0;
  }
}
#news .description-wrapper .title {
  font-size: 16px;
  margin-bottom: 2px;
}
#news .description-wrapper .title a {
  color: #000;
}
#news .description-wrapper .title a:hover {
  color: #b89a69;
}
#news .description-wrapper .price {
  font-size: 14px;
}
#news .description-wrapper .excerpt {
  font-size: 14px;
  margin-bottom: 6px;
  padding: 8px 2px;
}
#news .description-wrapper .excerpt p {
  margin-bottom: 0;
}
#news .description-wrapper .category-wrapper {
  margin-bottom: 7px;
}
#news .description-wrapper .category-wrapper li {
  display: inline-block;
}
#news .description-wrapper .category-wrapper a {
  background-color: #b89a69;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  margin-bottom: 5px;
  padding: 1px 13px;
}
#news .description-wrapper .category-wrapper li:nth-child(2n+2) a,
#news .description-wrapper .category-wrapper a:nth-child(2n+2) {
  background-color: #99331f;
}
#news .description-wrapper .news-date {
  font-size: 12px;
  margin-bottom: 2px;
}
#news .description-wrapper .more-link a {
  background: url(./images/arrow-right-02.svg) no-repeat bottom 4px right 3px;
  background-size: 49px 5px;
  border: 1px solid #999;
  padding: 1px 70px 2px 11px;
}

/* ------ お知らせ（トップページ専用） ------ */
#news.home .item-frame {
  border: none;
}

/* Wordpress機能
------------------------------------------ */
/* ------ Wordpress Gallery ------ */
#content .dashboard .gallery-item {
  padding: 5px;
}
#content .dashboard .gallery-item img {
  border: none;
}
#content .dashboard .gallery-item .gallery-caption {
  margin-top: 8px;
}

@media (max-width: 480px) {
  #content .dashboard .gallery-item {
    display: block;
    float: none;
    width: 100%;
  }
}
/* Plugins
------------------------------------------ */
/* ------ Breadcrumbs NavXT ------ */
#breadcrumbs {
  font-size: 12px;
  line-height: 21px;
  margin-bottom: 30px;
}

#breadcrumbs a {
  color: #b89a69;
}

#breadcrumbs a:hover {
  color: #99331f;
}

#breadcrumbs br {
  display: none;
}

@media (max-width: 768px) {
  #breadcrumbs {
    font-size: 13px;
  }
}
@media (max-width: 576px) {
  #breadcrumbs {
    margin-bottom: 25px;
  }
}
/* ------ Contact Form 7 ------ */
.wpcf7-form-control-wrap input, .wpcf7-form-control-wrap textarea, select, input {
  color: #000;
}
@media (max-width: 576px) {
  .wpcf7-form-control-wrap input, .wpcf7-form-control-wrap textarea, select, input {
    width: 100%;
  }
}

.submit-button input[type=submit] {
  margin-left: 16px;
}

.wpcf7-form-control-wrap input, .wpcf7-form-control-wrap textarea {
  border: 1px solid #CCC;
}

/* ------ WP Simple Booking Calendar ------ */
/************************************
** レスポンシブページネーション
************************************/
.pagination {
  clear: both;
  list-style-type: none;
  padding-left: 0;
  margin: 30px 0;
}

.pagination,
.pagination li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pagination a {
  font-weight: 300;
  padding-top: 1px;
  text-decoration: none;
  border: 1px solid #ddd;
  border-left-width: 0;
  min-width: 36px;
  min-height: 36px;
  color: #333 !important;
}

.pagination li:not([class*=current]) a:hover {
  background-color: #99331f;
  color: #fff !important;
}

.pagination li:first-of-type a {
  border-left-width: 1px;
}

.pagination li.first span,
.pagination li.last span,
.pagination li.previous span,
.pagination li.next span {
  /* screen readers only */
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.pagination li.first a::before,
.pagination li.last a::after,
.pagination li.previous a::before,
.pagination li.next a::after {
  display: inline-block;
  font-family: Fontawesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.pagination li.first a::before {
  content: "\f100";
}

.pagination li.last a::after {
  content: "\f101";
}

.pagination li.previous a::before {
  content: "\f104";
}

.pagination li.next a::after {
  content: "\f105";
}

.pagination li.current a {
  background-color: #9b7e54;
  color: #fff !important;
  cursor: default;
  pointer-events: none;
}

.pagination > li:first-child > a {
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

.pagination > li:last-child > a {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}

@media only screen and (max-width: 680px) {
  .pagination li.first,
  .pagination li.last {
    /* screen readers only */
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .pagination li.previous a {
    border-left-width: 1px;
  }
}
@media only screen and (max-width: 500px) {
  .pagination li {
    /* screen readers only */
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .pagination li.current,
  .pagination li.first,
  .pagination li.last,
  .pagination li.previous,
  .pagination li.next {
    position: initial;
    top: initial;
    left: initial;
  }
  .pagination li.previous a {
    border-left-width: 0;
  }
}
/*
@media only screen and ( max-width: 400px ) {
  .pagination li.first,
  .pagination li.last {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .pagination li.previous a { border-left-width: 1px; }
}
*/
@media only screen and (max-width: 240px) { /* For watches? */
  .pagination li {
    width: 50%;
  }
  .pagination li.current {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    border-left-width: 1px;
  }
}
/*rowの高さを揃える*/
.row-center {
  letter-spacing: -0.4em;
}

.row-center > [class*=col-] {
  display: inline-block;
  letter-spacing: 0;
  vertical-align: top;
  float: none !important;
}

/*個別記事のページナビ*/
.navigation {
  text-align: center;
  padding: 1em 0;
  width: 100%;
}

.navitop {
  float: left;
  width: 26%;
  text-align: center;
}

.navileft {
  float: left;
  width: 37%;
  text-align: left;
  word-break: break-all;
  line-height: 1.5em;
}

.naviright {
  float: right;
  width: 37%;
  text-align: right;
  word-break: break-all;
  line-height: 1.5em;
}

.boxarea {
  border: 1px solid #b89a69;
  padding: 30px;
  line-height: 2em;
  margin-bottom: 40px;
}
.boxarea p, .boxarea ol, .boxarea ul {
  margin: 0;
}
.boxarea .title {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 20px 0;
}

/* ------埋め込み（Embed）機能をレスポンシブに対応する------ */
.wp-embedded-content {
  max-width: 100%;
}

/* ------画像のキャプション設定------ */
.wp-block-image figcaption {
  color: #999 !important;
  text-align: center;
  font-size: small;
}