@charset "utf-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);

/* =========================================================
  初期化

   html5doctor.com Reset Stylesheet
   v1.6.1
   Last Updated: 2010-09-17
   Author: Richard Clark - http://richclarkdesign.com
   Twitter: @rich_clark

========================================================= */
/* 要素のフォントサイズやマージン・パディングをリセット */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
     margin: 0;
     padding: 0;
     border: 0;
     outline: 0;
     font-size: 100%;
     vertical-align: baseline;
     background: transparent;
}
/* 行の高さをフォントサイズと同じに */
body {
     line-height: 1;
}
/* 新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更 */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
     display: block;
}
/* nav要素内ulのマーカー（行頭記号）を表示しないように */
nav ul {
     list-style: none;
}
ol, ul {
     list-style: none;
}
/* 引用符の表示が出ないように */
blockquote, q {
     quotes: none;
}
/* blockquote要素、q要素の前後にコンテンツを追加しないように指定 */
blockquote:before, blockquote:after, q:before, q:after {
     content: '';
     content: none;
}
/* a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるように */
a {
     margin: 0;
     padding: 0;
     font-size: 100%;
     vertical-align: baseline;
     background: transparent;
}
/* リンクをクリックしたときの点線を消す */
a:focus, *:focus {
     outline:none;
}
/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるように */
ins {
     background-color: #ff9;
     color: #000;
     text-decoration: none;
}
/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるように
また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するよう */
mark {
     background-color: #ff9;
     color: #000;
     font-style: italic;
     font-weight: bold;
}
/* テキストに打ち消し線が付くように */
del {
     text-decoration: line-through;
}
/* IEではデフォルトで点線を下線表示する設定ではないので、下線がつくように
また、マウスオーバー時にヘルプカーソルの表示が出るように */
abbr[title], dfn[title] {
     border-bottom: 1px dotted;
     cursor: help;
}
/* 隣接するセルのボーダーを重ねて表示し、間隔を0に指定 */
table {
     border-collapse: collapse;
     border-spacing: 0;
}
/* 水平罫線のデフォルトである立体的な罫線を見えなく */
hr {
     display: block;
     height: 1px;
     border: 0;
     border-top: 1px solid #cccccc;
     margin: 1em 0;
     padding: 0;
}
/* 縦方向の揃え位置を中央揃えに指定 */
input, select {
     vertical-align: middle;
}

/* 画像を縦に並べた時に余白が出ないように */
img {
     vertical-align: top;
     font-size: 0;
     line-height: 0;
}
/* box-sizingを全ブラウザに対応 */
*, *:before, *:after {
     -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
     -o-box-sizing: border-box;
     -ms-box-sizing: border-box;
     box-sizing: border-box;
}

/* Safariのフォーム要素の初期スタイルを打ち消す */
/* * {
     -webkit-appearance: none;
}
*/

/* clearfix */
.cf:before, .cf:after {
     content: "";
     display: block;
     overflow: hidden;
}

/* Animation/Transitionで画面がちらつくとき
要素に指定
-webkit-backface-visibility:hidden;
backface-visibility:hidden;
overflow:hidden;（上記でもダメな場合に指定）
*/

.cf:after {
     clear: both;
}
/* For IE 6/7 (trigger hasLayout) */
.cf {
     zoom: 1;
}

/*
     clear: both;
     content: ".";
     display: block;
     height: 0;
     visibility: hidden;

     content: '';
     display: block;
     clear: both;
*/

/* =========================================================
  基本設定
========================================================= */
html {
     font-size: 62.5%;
}
body {
     font-size: 15px;
     font-size: 1.5rem;
     color: #000;
     letter-spacing: 0.05em;
     line-height: 1.8em;
     font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, sans-serif;
     -webkit-text-size-adjust: 100%;
     -ms-text-size-adjust: 100%;
     -webkit-font-smoothing: antialiased;
     -moz-font-smoothing: antialiased;
     -ms-font-smoothing: antialiased;
     -o-font-smoothing: antialiased;
     font-smoothing: antialiased;
}
body {
     background: url(../images/common/bg.png) left top repeat #f8f4eb/*f9f5ec*/;}
strong {
     font-weight: bold;
}
pre {
     background: #f7f7f7;
     color: #222;
     line-height: 18px;
     margin-bottom: 18px;
     padding: 1.5em;
}
sup, sub {
     height: 0;
     line-height: 1;
     position: relative;
     vertical-align: baseline;
}
sup {
     bottom: 1ex;
}
sub {
     top: .5ex;
}
a {
     color: #000;
     overflow: hidden;
     text-decoration: none;
     -webkit-transition: 0.3s ease-in-out;
     -moz-transition: 0.3s ease-in-out;
     -o-transition: 0.3s ease-in-out;
     -ms-transition: 0.3s ease-in-out;
     transition: 0.3s ease-in-out;
}
a:before, a:after {
     -webkit-transition: .3s;
     -moz-transition: .3s;
     -o-transition: .3s;
     -ms-transition: .3s;
     transition: .3s;
}
a:hover, a:active {
     color: #ab7b55;
     text-decoration: none;
}
a:hover img {
     opacity: 0.6;
     filter: alpha(opacity=60);
     -moz-opacity: 0.6;
     -webkit-transition: .3s;
     -moz-transition: .3s;
     -o-transition: .3s;
     -ms-transition: .3s;
     transition: .3s;
}
.adminEdit {
     clear: both;
     float: none;
     display: block;
     overflow: hidden;
     padding: 0px 0px 20px;
}
.assistive-text {
     display: none;
}

/* ローディング
------------------------------------------ */
/* ローディング時にスクロールバーを常に表示させることでカクッとなるのを防ぐ */
@media screen and (min-width: 980px) {
     html {
          overflow-y: scroll;
     }
}
/* ローディングの背景部分 ---------- */
.loader {
     position: fixed;
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
     background: url(../images/common/bg.png) left top repeat #f9f5ec;
     z-index: 1000;
}
/* ローディングのアニメーション部分 ---------- */
.loading {
     font-size: 13px;
     font-size: 1.3rem;
     font-weight: bold;
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translateY(-50%) translateX(-50%);
     -webkit-transform: translateY(-50%) translateX(-50%);
}
.loading span {
     display: inline-block;
     margin: 0 -.1.5em;
     animation: loading .7s infinite alternate;
     font-family: "Montserrat", sans-serif;
}
.loading span:nth-child(2) {
     animation-delay: .1s;
}
.loading span:nth-child(3) {
     animation-delay: .2s;
}
.loading span:nth-child(4) {
     animation-delay: .3s;
}
.loading span:nth-child(5) {
     animation-delay: .4s;
}
.loading span:nth-child(6) {
     animation-delay: .5s;
}
.loading span:nth-child(7) {
     animation-delay: .6s;
}
@keyframes loading {
     0% {
          transform: scale(1.2);
     }
     100% {
          transform: scale(0.8);
     }
}
.loading-logo-mark {
     position: absolute;
     width: 50px;
     height: 53px;
     top: 50%;
     left: 50%;
     margin-top: -50px;
     background: url(../images/common/logo_mark.png) no-repeat;
     transform: translateY(-50%) translateX(-50%);
     -webkit-transform: translateY(-50%) translateX(-50%);
     -webkit-animation: spin 3s linear infinite;
     -moz-animation: spin 3s linear infinite;
     -ms-animation: spin 3s linear infinite;
     -o-animation: spin 3s linear infinite;
     animation: spin 3s linear infinite;
}

/* =========================================================
  ボタン
========================================================= */
/*
#searchform input[type=submit],
p.form-submit input[type=submit],
form#searchform input#searchsubmit,
#confirm-button input {
     font-size: 12px;
     line-height: 110%;
     text-align: center;
     position: relative;
     width: auto;
     border: 1px solid #ab7b55;
     display: inline-block;
     overflow: hidden;
     position: relative;
     white-space: nowrap;
     padding: 8px 20px 6px;
     text-decoration: none;
}
.linkBtn a,
input[type=button] {
     color: #FFF;
     display: inline-block;
     overflow: hidden;
     margin-top: 15px;
     position: relative;
     padding: 8px 15px 6px;
     text-decoration: none;
     cursor: pointer;
     border: 1px solid #ab7b55;
     background: url(images/arrow_wh_s.png) right bottom no-repeat #ab7b55;
     box-shadow: inset 0px 0px 1px rgba(255, 255, 255, 1);
}*/

.linkBtn.linkBtnS a {
     padding: 5px 10px;
     font-size: 85.7%;
}
.linkBtn.linkBtnS a:hover {
     color: #fff;
}
.linkBtn.linkBtnL a {
     padding: 10px 30px 8px;
     font-size: 114.3%;
     text-align: center;
}
.linkBtn a:hover {
     color: #fff !important;
}
a.btn.btnAdmin, .linkBtn.linkBtnAdmin a {
     color: #666666 !important;
     background-color: #e5e5e5;
     border-radius: 3px;
     text-decoration: none;
     border: 1px solid #cccccc;
     box-shadow: inset 0 1px 0 #fff;
     background: linear-gradient(to bottom, #ffffff, #e5e5e5);
     background: -webkit-gradient(linear, 0 0, 0 bottom, from(#fff), to(#e5e5e5));
     background: -moz-linear-gradient(#fff, #e5e5e5);
     -ms-filter: "progid:DXImageTransform.Microsoft.Gradient(StartColorStr=#ffffff, EndColorStr=#e5e5e5)";
}
#searchform input[type=submit], p.form-submit input[type=submit] {
     padding: 6px 15px;
}
#searchform label {
     display: none;
}
form#searchform input#searchsubmit {
     padding: 6px 10px;
}

/* リンクボタン
---------------------------------*/
.btn {
     display: inline-block;
     position: relative;
     width: 200px;
     height: 35px;
     font-size: 15px;
     font-size: 1.5rem;
     font-weight: bold;
     line-height: 35px;
     text-align: center;
     letter-spacing: 0.1em;
     font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, sans-serif;
     -moz-transition: background-color, ease, 0.5s;
     -o-transition: background-color, ease, 0.5s;
     -webkit-transition: background-color, ease, 0.5s;
     transition: background-color, ease, 0.5s;
     -moz-border-radius: 5px;
     -webkit-border-radius: 5px;
     border-radius: 5px;
}
.btn:hover {
     filter:alpha(opacity=70);
     -moz-opacity: 0.7;
     opacity: 0.7;
}

.btn.wide {
     width: 100%;
}
.btn.base {
     color: #fff;
     padding-right: 15px;
     background-color: #ab7b55;
}
.btn.base:after {
     position: absolute;
     right: 0;
     content: "\f3d1";
     font-family: "ionicons";
     font-size: 16px;
     font-size: 1.6rem;
     color: #fff;
     width: 30px;
     height: 35px;
     background-color: #956134;
     border-radius: 0 5px 5px 0;
}

.btn.blank {
     color: #fff;
     padding-right: 15px;
     background-color: #956134;
}
.btn.blank:after {
     position: absolute;
     right: 0;
     content: "\f08e";
     font-family: "FontAwesome";
     font-size: 16px;
     font-size: 1.6rem;
     color: #fff;
     width: 30px;
     height: 35px;
     background-color: #956134;
     border-radius: 0 5px 5px 0;
}

.btn.en {
     font-family: "Montserrat", sans-serif;
     font-weight: normal;
}

@media screen and (max-width: 640px) {
.btn {
     height: 30px;
     font-size: 14px;
     font-size: 1.4rem;
     line-height: 30px;
}
.btn.base:after {
     font-size: 15px;
     font-size: 1.5rem;
     width: 28px;
     height: 30px;
}}

.btn i {
     position: absolute;
     top: 50%;
}

.btn i.icon-next,
.btn i.icon-prev {
     font-size: 13px;
     font-size: 1.3rem;
     margin-top: -7px;
}

.btn i.icon-blank {
     font-size: 18px;
     font-size: 1.8rem;
     margin-top: -10px;
}

.btn i.icon-submit {
     font-size: 20px;
     font-size: 2rem;
     position: relative;
     top: 0.05em;
     margin-left: 10px;
}

.btn.normal {
     background-color: #615034;
}

.btn.normal:hover {
     background-color: #a5a76b;
}

.btn.cv {
     background-color: #b57b77;
}

.btn.cv:hover {
     background-color: #a5a76b;
}

.btn.en {
     font-family: "Montserrat", sans-serif;
     font-weight: normal;
}

.btn.large {
     font-size: 17px;
     font-size: 1.7rem;
     width: 100%;
     height: 50px;
     line-height: 50px;
}

.btn.right i {
     right: 10px;
}

.btn.left i {
     left: 10px;
}

.ie .btn {
     line-height: 40px;
}

.ie .btn.en {
     line-height: 35px;
}

.ie .btn.large {
     line-height: 55px;
}


.double-btn li {
     width: 465px;
}

.double-btn li:first-child {
     float: left;
}

.double-btn li:last-child {
     float: right;
}

/* =========================================================
  基本レイアウト
========================================================= */
/*
html, body, #wrap {
     height: 100%;
     min-height: 100%;
}
*/
#wrap {
     overflow: hidden;
}

/* innerBox
------------------------------------------ */
.innerBox {
     width: 960px;
     margin: 0 auto;
}
.innerBox img {
     max-width: 100%;
}

/* main
------------------------------------------ */
#main {
     display: block;
     overflow: visible;
     width: 100%;
     margin: 0px auto;
     zoom: 1;
     clear: both;
}
#main:before, #main:after {
     content: "";
     display: table;
}
#main:after {
     clear: both;
}

/* main container content
------------------------------------------ */
#main #container {
     overflow: visible;
     padding-top: 60px;
}
.home #main #container {
    padding-top: 0;
}

/* 1カラム ---------- */
#main #container #content,
#main #container #content.wide {
     width: 100%;
     margin: 0 auto;
     padding-bottom: 100px;
}
.home #main #container #content,
.home #main #container #content.wide {
     padding-bottom: 0;
}

/* 2カラム ---------- */
#main #container #content.two-col {
     float: left;
     width: 700px;
     padding-bottom: 100px;
}
#main #container #sideTower {
     float: right;
     width: 210px;
     clear: none;
}
body.left-sidebar #main #container #content.two-col {
     float: right;
}
body.left-sidebar #main #container #sideTower {
     float: left;
     display: block;
     overflow: hidden;
     padding: 0 0 30px;
}
body.home.one-column #main #container #content.two-col {
     float: none;
     width: 100%;
}
body.home.one-column #main #container #sideTower {
     float: none;
     display: none;
}

@media screen and (max-width: 768px) {
     .innerBox {
          width: auto;
          margin-left: 20px;
          margin-right: 20px;
     }
     #main #container {
          padding-top: 20px;
     }
     #main #container #content,
     #main #container #content.wide,
     #main #container #content.two-col {
          width: 100%;
          margin: 0 auto;
          padding-bottom: 40px;
     }
     #main #container #sideTower {
          width: 100%;
     }
}

/* =========================================================
 ヘッダー要素
========================================================= */
header {
     display: block;
     position: relative;
     padding-bottom: 30px;
     border-top: 5px solid #956134;
}
header:after {
     content: ".";
     display: block;
     clear: both;
     height: 0;
     visibility: hidden;
}
.headerInner {
     position: relative;
     height: 200px;
}
.headerInner .site-title {
     position: absolute;
     width: 379px;
     font-size: 24px;
     font-size: 2.4rem;
     top: 50%;
     left: 50%;
     transform: translateY(-50%) translateX(-50%);
     -webkit-transform: translateY(-50%) translateX(-50%);
}
.headerInner .site-title a {
     font-weight: bold;
     text-decoration: none;
}
.headerInner .site-title img {
    max-width: 100%;
    height: auto;
}

@media screen and (min-width: 1280px) {
     header .header-illust-left {
          position: absolute;
          width: 196px;
          height: 110px;
          top: 0;
          left: -50px;
          background: url(../images/headers/illust_left.png) no-repeat;
     }
     header .header-illust-right {
          position: absolute;
          width: 55px;
          height: 42px;
          top: 45px;
          right: 240px;
          background: url(../images/headers/illust_right.png) no-repeat;
     }
}

/* topMenu
------------------------------------------ */
.headerInner .topMenu {
     position: absolute;
     top: 25px;
     right: 20px;
}
.headerInner .topMenu ul {
     display: -webkit-flex;
     display: flex;
}
.headerInner .topMenu li {
     width: auto;
     margin-left: 10px;
}
.headerInner .topMenu .topmenu-btn-large {
     display: inline-block;
     position: relative;
     width: 88px;
     height: 88px;
     text-align: center;
     border-radius: 50%;
}
.headerInner .topMenu .topmenu-btn-large span {
     display: inline-block;
     font-size: 10px;
     font-size: 1.0rem;
     color: #fff;
     line-height: 1.2;
     padding-top: 51px;
}
.headerInner .topMenu li:nth-child(1) .topmenu-btn-large {
     background-color: #956134;
}
.headerInner .topMenu li:nth-child(2) .topmenu-btn-large {
     background-color: #674a2c;
}
.headerInner .topMenu li:nth-child(1) .topmenu-btn-large:before { 
     position: absolute;
     content: "\f0e0";
     font-family: "FontAwesome";
     color: #fff;
     font-size: 28px;
     font-size: 2.8rem;
     top: 18px;
     left: 0;
     right: 0;
     margin: 0 auto;
}
.headerInner .topMenu li:nth-child(2) .topmenu-btn-large:before { 
     position: absolute;
     content: "\f370";
     font-family: "ionicons";
     color: #fff;
     font-size: 36px;
     font-size: 3.6rem;
     top: 18px;
     left: 0;
     right: 0;
     margin: 0 auto;
}

@media screen and (max-width: 979px) {
     header {
          padding-bottom: 0;
          border-top: none;
     }
     .headerInner {
          margin: 15px 0;
          max-height: 100px;
     }
     .headerInner .site-title {
          width: 40%;
          left: 0;
          margin: 0 0 0 20px;
          transform: translateY(-50%) translateX(0);
          -webkit-transform: translateY(-50%) translateX(0);
     }
     .headerInner .topMenu {
          top: 50%;
          left: 60%;
          right: auto;
          transform: translateY(-50%) translateX(-50%);
          -webkit-transform: translateY(-50%) translateX(-50%);
     }
     .headerInner .topMenu li {
          margin-left: 0;
     }
     .headerInner .topMenu li:first-child {
          display: none;
     }
     .headerInner .topMenu .topmenu-btn-large {
          width: auto;
          height: auto;
          background: none;
          border-radius: 0;
     }
     .headerInner .topMenu .topmenu-btn-large span {
          color: #322e2e;
          padding-top: 53px;
     }
     .headerInner .topMenu li:nth-child(2) .topmenu-btn-large { 
          background: none;

     }
     .headerInner .topMenu li:nth-child(2) .topmenu-btn-large:before { 
          color: #322e2e;
          font-size: 28px;
          margin-bottom: 3px;
          padding-bottom: 3px;
          border-bottom: 1px solid #322e2e;
     }

     /* ハンバーガーボタン ---------- */
     .hamburger {
          display: block;
          position: fixed;
          top: 0;
          right: 0;
          z-index: 999;
          margin: 58px 20px auto auto;
          -webkit-tap-highlight-color: transparent;
          -webkit-tap-highlight-color: transparent;
          -ms-touch-action: manipulation;
          touch-action: manipulation;
     }
     .hamburger__icon {
          position: relative;
          margin-top: 10px;
          margin-bottom: 10px;
     }
     .hamburger__icon,
     .hamburger__icon:before,
     .hamburger__icon:after {
          display: block;
          width: 30px;
          height: 2px;
          background-color: #322e2e;
          -moz-transition-property: background-color, -moz-transform;
          -o-transition-property: background-color, -o-transform;
          -webkit-transition-property: background-color, -webkit-transform;
          transition-property: background-color, transform;
          -moz-transition-duration: 0.4s;
          -o-transition-duration: 0.4s;
          -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
     }
     .hamburger__icon:before,
     .hamburger__icon:after {
          position: absolute;
          content: "";
     }
     .hamburger__icon:before {
          top: -10px;
     }
     .hamburger__icon:after {
          top: 10px;
     }
     .hamburger.active .hamburger__icon {
          background-color: transparent;
     }
     .hamburger.active .hamburger__icon:before,
     .hamburger.active .hamburger__icon:after {
          background-color: #322e2e;
     }
     .hamburger.active .hamburger__icon:before {
          -moz-transform: translateY(10px) rotate(45deg);
          -ms-transform: translateY(10px) rotate(45deg);
          -webkit-transform: translateY(10px) rotate(45deg);
          transform: translateY(10px) rotate(45deg);
     }
     .hamburger.active .hamburger__icon:after {
          -moz-transform: translateY(-10px) rotate(-45deg);
          -ms-transform: translateY(-10px) rotate(-45deg);
          -webkit-transform: translateY(-10px) rotate(-45deg);
          transform: translateY(-10px) rotate(-45deg);
     }
}

@media screen and (max-width: 767px) {
     .headerInner {
          max-height: 80px;
     }
     .hamburger {
          margin-top: 48px;
     }
}

@media screen and (max-width: 640px) {
     .headerInner {
          max-height: 60px;
     }
     .hamburger {
          margin-top: 38px;
     }
}

/* gMenu - PC
------------------------------------------ */
@media screen and (min-width: 980px) {
#gMenu {
     clear: both;
     display: block;
     overflow: visible;
     position: relative;
     width: 100%;
}
#gMenu:after {
     content: ".";
     display: block;
     clear: both;
     height: 0;
     visibility: hidden;
}
#gMenu .gMenuInner {
     overflow: visible;
     display: block;
     position: relative;
     width: 980px;
     margin: 0px auto;
}
#gMenu ul.menu {
     width: 100%;
     margin: 0;
     padding: 0;
     list-style-type: none
}
#gMenu ul.menu:before,
#gMenu ul.menu:after {
     content: '';
     display: table
}
#gMenu ul.menu:after {
     clear: both
}
#gMenu ul.menu li {
     display: block;
     float: left;
     margin-right: 22.57142857px;
}
#gMenu ul.menu li {
     position: relative;
     color: #322e2e;
     height: 30px;
     font-size: 14px;
     font-size: 1.4rem;
     font-weight: bold;
     text-align: center;
     -webkit-user-select: none;
     cursor: default;
     /*perspective: 1000px;
     -webkit-perspective: 1000px;
     -moz-perspective: 1000px;*/
}
#gMenu ul.menu li.nav01 {
     width: 64px;
}
#gMenu ul.menu li.nav02 {
     width: 138px;
}
#gMenu ul.menu li.nav03 {
     width: 108px;
}
#gMenu ul.menu li.nav04 {
     width: 152px;
}
#gMenu ul.menu li.nav05 {
     width: 138px;
}
#gMenu ul.menu li.nav06 {
     width: 79px;
}
#gMenu ul.menu li.nav07 {
     width: 64px;
}
#gMenu ul.menu li.nav08 {
     width: 79px;
}
#gMenu ul.menu li.nav08 {
     margin-right: 0;
}
#gMenu ul.menu li.nav09 {
     display: none;
}
#gMenu ul.menu li:hover {
     cursor: pointer;
}
#gMenu ul.menu li a {
}
#gMenu ul.menu li div {
     position: absolute;
     text-align: center;
     width: 100%;
     height: 30px;
     border-radius: 5px;
}
#gMenu ul.menu li div:nth-child(1) {
     color: #322e2e;
     background-color: #322e2e;
     transform: rotateX(-90deg);
     -webkit-transform: rotateX(-90deg);
     -moz-transform: rotateX(-90deg);
     transition: all 0.2s ease;
     -webkit-transition: all 0.2s ease;
     -moz-transition: all 0.2s ease;
     transform-origin: 50% 50% -15px;
     -webkit-transform-origin: 50% 50% -15px;
     -moz-transform-origin: 50% 50% -15px;
}
#gMenu ul.menu li div:nth-child(2) {
     color: #322e2e;
     background: url(../images/common/bg.png) left top repeat #f9f5ec;
     transform: rotateX(0deg);
     -webkit-transform: rotateX(0deg);
     -moz-transform: rotateX(0deg);
     transition: all 0.2s ease;
     -webkit-transition: all 0.2s ease;
     -moz-transition: all 0.2s ease;
     transform-origin: 50% 50% -15px;
     -webkit-transform-origin: 50% 50% -15px;
     -moz-transform-origin: 50% 50% -15px;
}
#gMenu ul.menu li:hover div:nth-child(1) {
     color: #fff;
     transition: all 0.2s ease;
     -webkit-transition: all 0.2s ease;
     -moz-transition: all 0.2s ease;
     transform: rotateX(0deg);
     -webkit-transform: rotateX(0deg);
     -moz-transform: rotateX(0deg);
}
#gMenu ul.menu li:hover div:nth-child(2) {
     background-color: #322e2e;
     transition: all 0.2s ease;
     -webkit-transition: all 0.2s ease;
     -moz-transition: all 0.2s ease;
     transform: rotateX(90deg);
     -webkit-transform: rotateX(90deg);
     -moz-transform: rotateX(90deg);
}

#gMenu ul.menu li.current-menu-item div:nth-child(1) {
     color: #fff;
     background: #322e2e;
     transform: rotateX(-90deg);
     -webkit-transform: rotateX(-90deg);
     -moz-transform: rotateX(-90deg);
     transition: all 0.2s ease;
     -webkit-transition: all 0.2s ease;
     -moz-transition: all 0.2s ease;
     transform-origin: 50% 50% -15px;
     -webkit-transform-origin: 50% 50% -15px;
     -moz-transform-origin: 50% 50% -15px;
}
#gMenu ul.menu li.current-menu-item div:nth-child(2) {
     color: #fff;
     background: #322e2e;
     transform: rotateX(0deg);
     -webkit-transform: rotateX(0deg);
     -moz-transform: rotateX(0deg);
     transition: all 0.2s ease;
     -webkit-transition: all 0.2s ease;
     -moz-transition: all 0.2s ease;
     transform-origin: 50% 50% -15px;
     -webkit-transform-origin: 50% 50% -15px;
     -moz-transform-origin: 50% 50% -15px;
}

/* 2階層以降 ---------- */
#gMenu ul.menu li ul {
     margin: 0;
     list-style-type: none
}
#gMenu ul.menu li ul li {
     width: 200px;
     background: #fff;
     opacity: 0.97;
}
#gMenu ul.menu li ul li a {
     text-align: left;
}
#gMenu ul.menu li > ul {
     position: absolute;
     left: 0;
     top: 100%;
     z-index: 999;
     display: none;
     width: 200px;
     text-align: left;
}
#gMenu ul.menu li > ul > li ul {
     position: absolute;
     left: 100%;
     top: 0;
     z-index: 999;
     display: none;
     width: 100%;
}

/* スクロールでヘッダーを小さくして固定 ---------- */
/* transition */
header,
header.fixed,
header.fixed .headerInner,
/*header.fixed .site-title,*/
.headerInner,
.headerInner .topMenu,
.headerInner .topMenu ul,
.headerInner .topMenu li,
.headerInner .topMenu .topmenu-btn-large,
.headerInner .topMenu .topmenu-btn-large span,
.headerInner .topMenu li:nth-child(1) .topmenu-btn-large,
.headerInner .topMenu li:nth-child(2) .topmenu-btn-large,
.headerInner .topMenu li:nth-child(1) .topmenu-btn-large:before,
.headerInner .topMenu li:nth-child(2) .topmenu-btn-large:before,
header.fixed #gMenu,
header.fixed #gMenu .gMenuInner,
header.fixed #gMenu ul.menu,
header.fixed #gMenu ul.menu li,
header.fixed #gMenu ul.menu li a,
header.fixed #gMenu ul.menu li a span {
     transition: all 0.5s ease;
     -webkit-transition: all 0.5s ease;
     -moz-transition: all 0.5s ease;
     -o-transition: all 0.5s ease;
}

/* Fixed */
header.fixed {
     position: fixed;
     top: 0;
     left: 0;
     padding: 25px 0 23px;
     width: 100%;
     background: url(../images/common/bg.png) left top repeat #f9f5ec;
     z-index: 100;
}
header.fixed .header-illust-left,
header.fixed .header-illust-right {
     display: none;
}
header.fixed .headerInner {
     height: auto;
}
header.fixed .site-title,
header.fixed .site-title img {
     display: none;
}
header.fixed .headerInner .topMenu {
     top: -12px;
     right: 20px;
     z-index: 1;
}
header.fixed .headerInner .topMenu .topmenu-btn-large {
     width: 43px;
     height: 43px;
}
header.fixed .headerInner .topMenu .topmenu-btn-large span {
     display: none;
}
header.fixed .headerInner .topMenu li:nth-child(1) .topmenu-btn-large:before { 
     font-size: 18px;
     font-size: 1.8rem;
     top: 8px;
}
header.fixed .headerInner .topMenu li:nth-child(2) .topmenu-btn-large:before { 
     font-size: 23px;
     font-size: 2.3rem;
     top: 8px;
}
header.fixed #gMenu ul.menu {
     float: right;
     width: auto;
     float: right;
}
header.fixed #gMenu ul.menu li {
     margin-right: 22.57142857px;
}
header.fixed #gMenu ul.menu li.nav08 {
     margin-right: 0;
}
}

@media screen and (min-width: 1400px) {
     header.fixed .site-title {
          display: block;
          width: 120px;
          top: 10px;
          left: 100px;
          z-index: 1;
     }
     header.fixed .site-title img {
          display: block;
          width: 120px;
          height: auto;
     }
}

/* gMenu - SP（モーダルウィンドウ型式）
------------------------------------------ */
@media screen and (max-width: 979px) {
     #gMenu {
          top: 0;
          left: 0;
          z-index: 999;
          position: fixed;
          display: none;
          width: 100%;
          height: 100%;
          background: rgba(255, 255, 255, 0.9);
          -moz-transform: scale(1.4);
          -ms-transform: scale(1.4);
          -webkit-transform: scale(1.4);
          transform: scale(1.4);
          -moz-transition-property: -moz-transform;
          -o-transition-property: -o-transform;
          -webkit-transition-property: -webkit-transform;
          transition-property: transform;
          -moz-transition-duration: 0.4s;
          -o-transition-duration: 0.4s;
          -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
          overflow-y: auto;
          overflow-x: hidden;
          -webkit-overflow-scrolling: touch;
     }
     .gMenuInner {
          width: 100%;
          height: 100%;
          display: table;
          table-layout: fixed;
     }
     #gMenu.active {
          -moz-transform: scale(1);
          -ms-transform: scale(1);
          -webkit-transform: scale(1);
          transform: scale(1);
     }
     #gMenu .menu {
          display: table-cell;
          vertical-align: middle;
          margin: 0;
          padding: 0;
     }
     #gMenu .menu li {
          list-style-type: none;
          text-align: center;
          padding: 5px;
          font-size: 15px;
          font-size: 1.5rem;
     }
     #gMenu .menu li,
     #gMenu ul.menu li a {
          color: #333;
     }
     #gMenu .menu li a {
          display: inline-block;
          text-decoration: none;
     }
     #gMenu ul.menu li div:nth-child(2) {
          display: none;
     }
}

/* =========================================================
  panList
========================================================= */
#panList {
     display: none;
}
/*#panList {
     clear: both;
     font-size: 10px;
     color: #999;
     padding: 0px;
     display: block;
     overflow: hidden;
     width: 100%;
}
#panList #panListInner {
     display: block;
     overflow: hidden;
     text-align: left;
     padding: 0px 0 10px 0;
     line-height: 24px;
     border-bottom: 1px solid #fff;
}
.home #panList {
     display: none;
}
#panList ul {
     display: inline-block;
}
#panList ul li {
     display: inline-block;
     padding-right: 5px;
}*/

/* =========================================================
  pageTitBnr
========================================================= */
#pageTitBnr {
     padding: 30px 0;
     background: -webkit-linear-gradient(135deg, #f8f4eb 25%, #f9f5ef 25%, #f9f5ef 50%, #f8f4eb 50%, #f8f4eb 75%, #f9f5ef 75%, #f9f5ef);
     background: linear-gradient(-45deg, #f8f4eb 25%, #eee8df 25%, #eee8df 50%, #f8f4eb 50%, #f8f4eb 75%, #eee8df 75%, #eee8df);
     background-size: 20px 20px;
}
#pageTitBnr .pageTitInner {
     height: 200px;
     line-height: 200px;
     text-align: center;
     background-position: center center;
     background-size: cover;
     background-repeat: no-repeat;
}
#pageTitBnr .pageTitInner .pageTit {
     display: inline-block;
     font-size: 24px;
     font-size: 2.4rem;
     color: #fff;
     letter-spacing: .15em;
     line-height: 1;
     padding: 12px 25px;
     vertical-align: middle;
     border: 4px double #fff;
     background-color: rgba(171, 123, 85, 0.9);
     -moz-border-radius: 10px;
     -webkit-border-radius: 10px;
     border-radius: 10px;
}
#pageTitBnr .pageTitInner #titleTxtSub {
     text-align: left;
     color: #999;
     font-family: 'Comfortaa', cursive;
     font-size: 14px;
     letter-spacing: 3px;
     float: left;
     margin-top: 25px;
     line-height: 105%;
}

@media screen and (max-width: 768px) {
     #pageTitBnr {
          padding: 15px 0;
          background-size: 15px 15px;
     }
     #pageTitBnr .pageTitInner {
          height: 120px;
          line-height: 120px;
     }
     #pageTitBnr .pageTitInner .pageTit {
          font-size: 14px;
          font-size: 1.4rem;
          letter-spacing: .05em;
          padding: 10px 20px;
          border: 3px double #fff;
          -moz-border-radius: 5px;
          -webkit-border-radius: 5px;
          border-radius: 5px;
     }
}

/* =========================================================
  content要素
========================================================= */
#content {
     display: block;
     overflow: visible;
}
#content p {
     margin-bottom: 20px;
}
#content strong {
     font-weight: bold;
}
#content hr {
     clear: both;
     display: block;
     margin: 1em 0;
}
#content .post {
     padding-bottom: 0;
}
#content .alert {
     color: #f00;
}
#content .caption {
     font-size: 11px;
     line-height: 110%;
}
#content .center {
     text-align: center;
}
#content .right {
     text-align: right;
}
#content .nowrap {
     white-space: nowrap;
}
#content .sectionBox {
     margin-bottom: 30px;
     display: block;
     overflow: hidden;
}
#content blockquote {
     border: 3px solid #e6e6e6;
     padding: 20px 15px 0px;
     margin-bottom: 20px;
     clear: both;
     -moz-border-radius: 10px;
     -webkit-border-radius: 10px;
     border-radius: 10px;
}

@media screen and (max-width: 768px) {
     #content p {
          font-size: 14px;
          font-size: 1.4rem;
          letter-spacing: .05em;
          line-height: 1.7;
     }
}

/* ul li ol
------------------------------------------ */
#content ul,
#content ol,
#content li {
     list-style: none;
}

/* entry
---------------------------------*/
#content .entry-content {
     display: block;
     overflow: hidden;
}

#content .entry-utility {
     clear: both;
     margin-top: 15px;
}
#content .entry-utility dl.tag-links {
     display: inline;
}
#content .entry-utility dl.tag-links dt,
#content .entry-utility dl.tag-links dd {
     display: inline;
     font-size: 85.7%;
     line-height: 120%;
}
#content .entry-utility dl.tag-links dt {
     display: inline-block;
     border: 1px solid #e5e5e5;
     font-weight: lighter;
     margin-right: 10px;
     padding: 0px 10px;
     background-color: #e5e5e5;
     color: #999;
}

/* テーブル
------------------------------------------ */
#content table {
     border-top: 1px solid #ccc;
     margin: 10px -1px 24px 0;
     text-align: left;
     width: 100%;
     border-collapse: collapse;
     border-spacing: 0;
     font-size: 85.7%;
     line-height: 141.7%;
}
#content table thead tr th {
     font-weight: bold;
}
#content table tr th, #content table thead tr th {
     padding: 9px 24px;
     background-color: #f5f5f5;
     white-space: nowrap;
}
#content table tfoot tr th, #content table tfoot tr td {
     font-weight: bold;
}
#content table tr th {
     border: 1px solid #ccc;
     padding: 10px 15px;
     vertical-align: top;
}
#content table tr td {
     border: 1px solid #ccc;
     padding: 10px 15px;
     vertical-align: top;
}
#content table tr td p {
     margin: 0 0 5px;
     padding: 0px;
}
#content table ol, #content table ul {
     margin-bottom: 5px;
     margin-left: 15px;
}
#content table ol li, #content table ul li {
     margin: 2px 0px;
}

/* 親ペ－ジの子ページインデックス
------------------------------------------ */
#content .child_page_block {
     display: block;
     overflow: hidden;
     width: 48%;
     margin-bottom: 15px;
     padding: 0 1px;
     border-top: 1px solid #eeeeee;
     background: url(images/line_wh.png) left top repeat-x;
     box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15);
}
#content .child_page_block .child_page_blockInner {
     display: block;
     overflow: hidden;
     padding: 15px 15px;
}
#content .child_page_block.layout_odd {
     float: left;
}
#content .child_page_block.layout_even {
     float: right;
}
#content .child_page_block h4 {
     font-size: 16px;
     background: url(images/line_grd.png) left bottom repeat-x;
     padding: 0 0 3px 0;
     margin: 0px;
     margin-bottom: 10px;
     border: none;
}
#content .child_page_block h4 a {
     border-bottom: 2px solid #ab7b55;
     text-decoration: none;
     color: #333;
     display: block;
     overflow: hidden;
     line-height: 118.8%;
     padding-bottom: 2px;
}
#content .child_page_block h4 a:hover {
     text-decoration: none;
     color: #ab7b55;
}
#content .child_page_block .childText {
     display: block;
     overflow: hidden;
}
#content .child_page_block p {
     line-height: 141.7%;
     font-size: 12px;
     margin-bottom: 0px;
     padding: 0px;
}
#content .child_page_block p a {
     text-decoration: none;
     color: #666;
}
#content .child_page_block p a:hover {
     text-decoration: underline;
     color: #ab7b55;
}
#content .child_page_block .thumbImage {
     float: left;
     display: block;
     margin-right: 15px;
}
#content .child_page_block .thumbImage .thumbImageInner {
     display: block;
     overflow: hidden;
     width: 80px;
     border: 4px solid #fff;
     box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15);
}
#content .child_page_block .thumbImage .thumbImageInner a:hover {}
#content .child_page_block .thumbImage .thumbImageInner img {
     width: 80px;
     height: 80px !important/* ie8 */
     ;
}

@media screen and (max-width: 768px) {
     #content .child_page_block {
          width: 100%;
          padding: 0;
     }
}

/* 子ページのリスト表示
------------------------------------------ */
#content .childPageBox {
     margin-top: 20px;
     border: 1px solid #e6e6e6;
     padding: 0px;
     display: block;
     overflow: hidden;
     margin-bottom: 20px;
}
#content .childPageBox h4 {
     border-top: none;
     background: none;
     font-weight: lighter;
     margin: 15px 20px 10px;
     padding: 0px 0px 3px;
     font-size: 14px;
}
#content .childPageBox h4 a {
     text-decoration: none;
     color: #666
}
#content .childPageBox ul {
     margin: 0px 20px 15px;
     padding: 0px;
     display: block;
     overflow: hidden;
     font-size: 85.7%;
     line-height: 125%;
}
#content .childPageBox ul li {
     float: left;
     display: block;
     width: 33%;
     list-style: none;
     margin: 0px;
}
#content .childPageBox ul li a {
     background: url(images/icon_arrow_bk.png) left 5px no-repeat;
     padding: 3px 5px 3px 10px;
     text-decoration: none;
     display: block;
     overflow: hidden;
     color: #666;
}
#content .childPageBox ul li a:hover, #content .childPageBox ul li.current_page_item a {
     background-image: url(images/icon_arrow_bk.png);
     text-decoration: underline;
     color: #ab7b55;
}
#content .childPageBox ul li ul {
     margin: 0px;
     font-size: 91.7%;
}
#content .childPageBox ul li ul li {
     float: none;
     width: auto;
}
#content .childPageBox ul li ul li a {
     background: url(images/icon_arrow_bk_s.png) left 6px no-repeat;
     padding: 3px 5px 3px 10px;
     text-decoration: none;
}
#content .childPageBox ul li ul li a:hover, #content .childPageBox ul li ul li.current_page_item a {
     background: url(images/icon_arrow_bk_s.png) left 6px no-repeat;
}
#content .childPageBox ul li ul li ul {
     padding-left: 8px;
     font-size: 100%;
     line-height: 120%;
}
#content .childPageBox ul li.current_page_item ul li a {
     color: #666;
     text-decoration: none;
     background-image: url(images/icon_arrow2_gray.gif);
}
#content .childPageBox ul li.current_page_item ul li a:hover {
     color: #ab7b55;
     text-decoration: underline;
     background-image: url(images/icon_arrow2_red.gif);
}
#content .childPageBox .textBox {
     overflow: hidden;
}

@media screen and (max-width: 768px) {
     #content .childPageBox {
          display: none;
     }
}

/* mainFoot
------------------------------------------ */
#content .mainFoot {
     display: block;
     overflow: hidden;
     margin-top: 35px;
     margin-bottom: 30px;
     border-top: 1px solid #e6e6e6;
     border-bottom: 1px solid #e6e6e6;
     padding: 15px 0;
}
#content .mainFoot .mainFootInner {}
#content .mainFootContact {
     display: block;
     overflow: hidden;
     text-align: center;
}
#content .mainFootContact p.mainFootTxt {
     font-size: 10px;
     letter-spacing: 0px;
     margin-bottom: 5px;
}
#content .mainFootContact p.mainFootTxt span {
     display: block;
}
#content .mainFootContact p.mainFootTxt span.mainFootCatch {
     line-height: 120%;
}
#content .mainFootContact p.mainFootTxt span.mainFootTel {
     font-size: 171.4%;
     font-family: 'Lato', sans-serif;
     margin-bottom: 2px;
     line-height: 100%;
}
#content .mainFootContact p.mainFootTxt span.mainFootTime {
     line-height: 120%;
}
#content .mainFootContact .mainFootBt a {
     display: block;
     overflow: hidden;
     background-color: #ab7b55;
     max-width: 350px;
     margin: 0 auto;
}
#content .mainFootContact .mainFootBt a:hover {
     opacity: .80;
     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
     filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
     -khtml-opacity: .80;
     -moz-opacity: .80;
}
#content .mainFootContact .mainFootBt a img {
     max-width: 100%;
     opacity: 1.0 !important;
     opacity: 1.0 !important;
     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
     filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
     -khtml-opacity: .100;
     /* Safari 1.x */
     -moz-opacity: .100;
     /* FF lt 1.5, Netscape */
}

@media screen and (min-width: 768px) {
     #content .mainFootContact p.mainFootTxt {
          float: left;
          margin-bottom: 0px;
          text-align: left;
     }
     #content .mainFootContact p.mainFootTxt .mainFootCatch {
          font-size: 120%;
     }
     #content .mainFootContact .mainFootBt {
          float: right;
     }
     #content .mainFootContact .mainFootBt a {
          width: 350px;
          min-height: 50px;
     }
     #content .mainFootContact .mainFootBt a img {
          width: auto;
     }
}
@media screen and (min-width: 960px) {
     #content .mainFootContact .mainFootBt a img {
          width: 100%;
     }
}

/* images
------------------------------------------ */
#content img {
     margin: 0;
     max-width: 100% !important;
     height: auto;
}
#content .attachment img {
     max-width: 900px;
}
#content .alignleft, #content img.alignleft {
     display: inline;
     float: left;
     margin-right: 20px;
     margin-top: 4px;
}
#content .alignright, #content img.alignright {
     display: inline;
     float: right;
     margin-left: 20px;
     margin-top: 4px;
}
#content .aligncenter, #content img.aligncenter {
     clear: both;
     display: block;
     margin-left: auto;
     margin-right: auto;
}
#content img.alignleft, #content img.alignright, #content img.aligncenter {
     margin-bottom: 12px;
}
#content .wp-caption {
     background: #f1f1f1;
     line-height: 18px;
     margin-bottom: 20px;
     padding: 0 0 5px;
     text-align: center;
     border: 1px solid #e5e5e5;
     max-width: 100% !important;
}
#content .wp-caption img {
     margin: 5px 0 2px;
     max-width: 95% !important;
     height: auto !important;
}
#content .wp-caption p.wp-caption-text {
     color: #888;
     font-size: 12px;
     margin: 5px;
}
#content .wp-smiley {
     margin: 0;
}
#content .gallery {
     margin: 0 auto 18px;
}
#content .gallery .gallery-item {
     float: left;
     margin-top: 0;
     text-align: center;
     width: 33%;
}
#content .gallery img {
     border: 2px solid #cfcfcf;
}
#content .gallery .gallery-caption {
     color: #888;
     font-size: 12px;
     margin: 0 0 12px;
}
#content .gallery dl {
     margin: 0;
}
#content .gallery img {
     border: 10px solid #f1f1f1;
}
#content .gallery br+br {
     display: none;
}
#content .attachment img {
     display: block;
     margin: 0 auto;
}

/* form
------------------------------------------ */
/*
#content form table {
     margin-top:25px;
}
#content form input[type=text],
#content form textarea {
     position:relative;
     overflow:hidden;
     padding:5px 10px;
     margin:5px 5px 5px 0px;
     width:90%;
}
#content form input[type=radio] {
     width:auto;
}
#content form input[type=checkbox] {
     width:auto;
}
*/

/* trust-form
------------------------------------------ */
#content #trust-form {
     width: 100%;
}

/* =========================================================
  post要素
========================================================= */
/* ニュース
------------------------------------------ */
.infoList {
     padding: 0 25px;
}
.infoList .infoListBox {
     position: relative;
     overflow: hidden;
     width: 100%;
     margin-bottom: 100px;
}
.infoList .infoListBox:last-child {
     margin-bottom: 0;
}
.infoList .infoListBox .thumbImage {
     position: relative;
     float: left;
     width: 150px;
     margin-right: 60px;
     vertical-align: top;
}
.infoList .infoListBox .thumbImage img {
     -moz-border-radius: 10px;
     -webkit-border-radius: 10px;
     border-radius: 10px;
}
.infoList .infoListBox .infoNew {
     position: absolute;
     left: -30px;
     top: 5px;
     width: 100px;
     transform: rotateZ(-45deg);
     z-index: 1;
}
.infoList .infoListBox .infoNew span {
     display: block;
     width: 100%;
     font-size: 10px;
     font-size: 1.0rem;
     color: #fff;
     font-weight: bold;
     text-align: center;
     background: #d55a2f;
     font-family: "Montserrat", sans-serif;
}
.infoList .infoListBox .entryBox {
     display: table;
     vertical-align: top;
}
.infoList .infoListBox .entryBox .entryMeta {
     line-height: 1;
     margin-bottom: 15px;
}

/* post共通 ---------- */
.entryMeta .infoCate,
.entry-meta .infoCate {
     display: inline-block;
     vertical-align: middle;
     width: 8.5em;
     font-size: 12px;
     font-size: 1.2rem;
     color: #fff;
     text-align: center;
     line-height: 1;
     padding: 4px 0;
     font-family: "Montserrat", sans-serif;
     -moz-border-radius: 5px;
     -webkit-border-radius: 5px;
     border-radius: 5px;
}
.entryMeta .infoCate.news,
.entry-meta .infoCate.news {
     background-color: #ab7b55;
}
.entryMeta .infoCate.event,
.entry-meta .infoCate.event {
     background-color: #674a2c;
}

@media screen and (max-width: 768px) {
     .entryMeta .infoCate,
     .entry-meta .infoCate {
          width: 7.5em;
          font-size: 8px;
          font-size: 0.8rem;
     }
}/* /post共通 ---------- */

.infoList .infoListBox .entryBox .entryMeta .infoDate {
     font-size: 18px;
     font-size: 1.8rem;
     color: #322e2e;
     font-weight: bold;
     margin-left: 10px;
     font-family: "Montserrat", sans-serif;
}
.infoList .infoListBox .entryBox .entryTitle {
     font-size: 36px;
     font-size: 3.6rem;
     color: #674a2c;
     font-weight: 500;
     line-height: 1.3;
     font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, sans-serif;
}
.infoList .infoListBox .entryBox .infoExce {
     display: inline-block;
     color: #ab7b55;
     margin-top: 15px;
}
.infoList .infoListBox a {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     text-indent: -999px;
     z-index: 10;
}
.infoList .infoListBox {
     -moz-transition: opacity, ease, 0.5s;
     -o-transition: opacity, ease, 0.5s;
     -webkit-transition: opacity, ease, 0.5s;
     transition: opacity, ease, 0.5s;
}
.infoList .infoListBox:hover {
     opacity: 0.8;
     filter: alpha(opacity=80);
     -moz-opacity: 0.8;
}

@media screen and (max-width: 768px) {
     .infoList {
          padding: 0;
     }
     .infoList .infoListBox {
          margin-bottom: 15px;
          padding-bottom: 10px;
          border-bottom: 2px dotted #ab7b55;
     }
     .infoList .infoListBox .thumbImage {
          width: 30%;
          margin-right: 20px;
     }
     .infoList .infoListBox .entryBox .entryMeta {
          margin-bottom: 10px;
     }
     .infoList .infoListBox .entryBox .entryMeta .infoDate {
          font-size: 14px;
          font-size: 1.4rem;
          margin-left: 5px;
     }
     .infoList .infoListBox .entryBox .entryTitle {
          font-size: 14px;
          font-size: 1.4rem;
          font-weight: bold;
          line-height: 1.5;
     }
     .infoList .infoListBox .entryBox .infoExce {
          font-size: 14px;
          font-size: 1.4rem;
          line-height: 1.3;
          margin-top: 7px;
     }
}

/* top ---------- */
.infoListTop {
     margin-right: -45px; 
}
.infoListTop .infoListBoxTop {
     position: relative;
     overflow: hidden;
     float: left;
     width: 290px;
     margin-right: 45px;
     margin-bottom: 40px;
}
.infoListTop .infoListBoxTop .thumbImage {
     position: relative;
     width: 100%;
     margin-bottom: 20px;
}
.infoListTop .infoListBoxTop .thumbImage img {
     -moz-border-radius: 10px;
     -webkit-border-radius: 10px;
     border-radius: 10px;
}
.infoListTop .infoListBoxTop .infoNew {
     position: absolute;
     left: -30px;
     top: 5px;
     width: 100px;
     transform: rotateZ(-45deg);
     z-index: 1;
}
.infoListTop .infoListBoxTop .infoNew span {
     display: block;
     width: 100%;
     font-size: 10px;
     font-size: 1.0rem;
     color: #fff;
     font-weight: bold;
     text-align: center;
     background: #d55a2f;
     font-family: "Montserrat", sans-serif;
}
.infoListTop .infoListBoxTop .entryMeta {
     margin-bottom: 10px;
}
.infoListTop .infoListBoxTop .entryMeta .infoDate {
     font-size: 11px;
     font-size: 1.1rem;
     color: #322e2e;
     margin-left: 10px;
     font-family: "Montserrat", sans-serif;
}
.infoListTop .infoListBoxTop .entryTitle {
     line-height: 1.7;
}
.infoListTop .infoListBoxTop a {
     position:absolute;
     top:0;
     left:0;
     width:100%;
     height:100%;
     text-indent:-999px;
     z-index: 10;
}
.infoListTop .infoListBoxTop {
     -moz-transition: opacity, ease, 0.5s;
     -o-transition: opacity, ease, 0.5s;
     -webkit-transition: opacity, ease, 0.5s;
     transition: opacity, ease, 0.5s;
}
.infoListTop .infoListBoxTop:hover {
     opacity: 0.8;
     filter: alpha(opacity=80);
     -moz-opacity: 0.8;
}

@media screen and (max-width: 768px) {
     .infoListTop {
          margin-right: 0;
     }
     .infoListTop .infoListBoxTop {
          float: left;
          width: 48%;
          margin-right: 4%;
          margin-bottom: 20px;
     }
     .infoListTop .infoListBoxTop:nth-child(2n) {
          margin-right: 0;
     }
     .infoListTop .infoListBoxTop .thumbImage {
          margin-bottom: 5px;
     }
     .infoListTop .infoListBoxTop .thumbImage img {
          width: 100%;
          -moz-border-radius: 10px;
          -webkit-border-radius: 10px;
          border-radius: 10px;
     }
     .infoListTop .infoListBoxTop .entryMeta {
          margin-bottom: 0;
     }
     .infoListTop .infoListBoxTop .entryMeta .infoDate {
          margin-left: 5px;
     }
     .infoListTop .infoListBoxTop .entryTitle {
          font-size: 14px;
          font-size: 1.4rem;
          line-height: 1.5;
     }
}

/* ブログ
------------------------------------------ */
.blogList {
     display: -webkit-box;
     display: -webkit-flex;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-pack: justify;
     -webkit-justify-content: space-between;
     -ms-flex-pack: justify;
     justify-content: space-between;
     -webkit-flex-wrap: wrap;
     -ms-flex-wrap: wrap;
     flex-wrap: wrap;
     -webkit-box-align: stretch;
     -webkit-align-items: stretch;
     -ms-flex-align: stretch;
     align-items: stretch;
}
.blogList .blogListBox {
     position: relative;
     overflow: hidden;
     width: 48%;
     margin-bottom: 20px;
     padding-bottom: 15px;
     vertical-align: middle;
     border-bottom: 2px dotted #ab7b55;
     /*background: url(../images/common/bg.jpg) left top repeat;
     -moz-border-radius: 10px;
     -webkit-border-radius: 10px;
     border-radius: 10px;*/
}
.blogList .blogListBox:last-child,
.blogList .blogListBox:nth-last-child(2) {
     margin-bottom: 0;
}
.blogList .blogListBox .thumbImage {
     position: relative;
     overflow: hidden;
     float: left;
     width: 120px;
     margin-right: 25px;
}
.blogList .blogListBox .thumbImage img {
     -moz-border-radius: 10px;
     -webkit-border-radius: 10px;
     border-radius: 10px;
}
.blogList .blogListBox .infoNew {
     position: absolute;
     left: -30px;
     top: 5px;
     width: 100px;
     transform: rotateZ(-45deg);
     z-index: 1;
}
.blogList .blogListBox .infoNew span {
     display: block;
     width: 100%;
     font-size: 10px;
     font-size: 1.0rem;
     color: #fff;
     font-weight: bold;
     text-align: center;
     background: #d55a2f;
     font-family: "Montserrat", sans-serif;
}
.blogList .blogListBox .entryBox {
     display: table;
}
.blogList .blogListBox .entryMeta {
     line-height: 1;
     margin-bottom: 10px;
}
.blogList .blogListBox .entryBox .entryMeta .infoCate {
     margin-right: 10px;
     /*background-color: #674a2c;*/
}
.blogList .blogListBox .entryBox .entryMeta .infoDate {
     color: #322e2e;
     font-weight: bold;
     font-family: "Montserrat", sans-serif;
}
.blogList .blogListBox .entryBox .entryTitle {
     font-size: 18px;
     font-size: 1.8rem;
     color: #674a2c;
     line-height: 1.3;
     font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, sans-serif;
}
.blogList .blogListBox .entryBox .infoExce {
     display: inline-block;
     color: #ab7b55;
     line-height: 1.5;
     margin-top: 7px;
}
.blogList .blogListBox a {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     text-indent: -999px;
     z-index: 10;
}
.blogList .blogListBox {
     -moz-transition: opacity, ease, 0.5s;
     -o-transition: opacity, ease, 0.5s;
     -webkit-transition: opacity, ease, 0.5s;
     transition: opacity, ease, 0.5s;
}
.blogList .blogListBox:hover {
     opacity: 0.8;
     filter: alpha(opacity=80);
     -moz-opacity: 0.8;
}

@media screen and (max-width: 768px) {
     .blogList .blogListBox {
          width: 100%;
          margin-bottom: 15px;
          padding-bottom: 10px;
     }
     .blogList .blogListBox:last-child,
     .blogList .blogListBox:nth-last-child(2) {
          margin-bottom: 15px;
     }
     .blogList .blogListBox .thumbImage {
          width: 30%;
          margin-right: 20px;
     }
     .blogList .blogListBox .entryBox .entryMeta {
          margin-bottom: 10px;
     }
     .blogList .blogListBox .entryBox .entryMeta .infoDate {
          font-size: 14px;
          font-size: 1.4rem;
     }
     .blogList .blogListBox .entryBox .entryTitle {
          font-size: 14px;
          font-size: 1.4rem;
          line-height: 1.5;
     }
     .blogList .blogListBox .entryBox .infoExce {
          font-size: 14px;
          font-size: 1.4rem;
          line-height: 1.3;
          margin-top: 7px;
     }
}

/* top ---------- */
.blogListTop .slick-slide {
     margin: 10px;
     padding: 0;
}
.blogListTop .slick-track {
     margin-left: 124px;
}
.blogListTop .slick-slide img {
}
.slick-dots {
     top: -45px !important;
     height: 20px;
}
.slick-dots li button:before {
     font-family: 'ionicons' !important;
     content: "\f371" !important;
     font-size: 16px !important;
}

.blogListTop .blogListBoxTop {
     overflow: hidden;
     width: 225px;
     height: 283px;
     background: url(../images/common/bg_02.png) center center repeat;
     -moz-border-radius: 8px;
     -webkit-border-radius: 8px;
     border-radius: 8px;
}
.blogListTop .blogListBoxTop .thumbImage {
     position: relative;
     width: 100%;
}
.blogListTop .blogListBoxTop .thumbImage img {
     -moz-border-radius: 8px 8px 0 0;
     -webkit-border-radius: 8px 8px 0 0;
     border-radius: 8px 8px 0 0;
}
.blogListTop .blogListBoxTop .entryMeta {
     line-height: 1;
     padding: 15px;
}
.blogListTop .blogListBoxTop .entryMeta .infoDate {
     display: inline-block;
     font-size: 11px;
     font-size: 1.1rem;
     color: #322e2e;
     margin-bottom: 10px;
     font-family: "Montserrat", sans-serif;
}
.blogListTop .blogListBoxTop .entryMeta .entryTitle {
     color: #674a2c;
     line-height: 1.6;
}
/*
.blogListTop .blogListBoxTop .infoExce {
     display: block;
     font-size: 14px;
     font-size: 1.4rem;
     color: #333;
     line-height: 1.5;
}
*/
.blogListTop .blogListBoxTop a {
     display: block;
}
.blogListTop .blogListBoxTop {
     -moz-transition: opacity, ease, 0.5s;
     -o-transition: opacity, ease, 0.5s;
     -webkit-transition: opacity, ease, 0.5s;
     transition: opacity, ease, 0.5s;
}
.blogListTop .blogListBoxTop:hover {
     opacity: 0.8;
     filter: alpha(opacity=80);
     -moz-opacity: 0.8;
}

@media screen and (max-width: 768px) {
     .blogListTop {
          margin: 0 8px;
     }
     .blogListTop .slick-slide {
          margin: 0 7px;
     }
     .blogListTop .slick-track {
          margin-left: 0;
     }
     .blogListTop .blogListBoxTop {
          width: auto;
          height: auto;
          padding-bottom: 10px;
     }
     .blogListTop .blogListBoxTop .thumbImage img {
          width: 100%;
     }
     .blogListTop .blogListBoxTop .entryMeta {
          padding: 7px 10px 10px;
     }
     .blogListTop .blogListBoxTop .entryMeta .infoDate {
          margin-bottom: 5px;
     }
     .blogListTop .blogListBoxTop .entryMeta .entryTitle {
          font-size: 14px;
          font-size: 1.4rem;
          line-height: 1.5;
     }
}

/* postのナビゲーション
------------------------------------------ */
.postNav {
     text-align: center;
     padding-bottom: 12px;
     margin-bottom: 50px;
     border-bottom: 2px dotted #322e2e;
}
.postNav ul {
}
.postNav li {
     display: inline-block;
     position: relative;
     padding: 0 1.5em;
     vertical-align: middle;
     font-family: "Montserrat", sans-serif;
}
.postNav li:before,
.postNav li:after {
     display: block;
     position: absolute;
     font-size: 12px;
     font-size: 1.2rem;
     top: 50%;
     margin-top: -13px;
}
.postNav li:first-child:before {
     content: "/";
     left: -6px;
}
.postNav li:after {
     content: "/";
     right: -6px;
}
.postNav li.postNavLine {
     padding: 0;
}
.postNav li a {
     position: relative;
     color: #000;
}
.postNav li a:after {
     position: absolute;
     bottom: -20px;
     left: -10%;
     content: '';
     width: 120%;
     height: 3px;
     background: #322e2e;
     -moz-transition: all, ease, 0.5s;
     -o-transition: all, ease, 0.5s;
     -webkit-transition: all, ease, 0.5s;
     transition: all, ease, 0.5s;
     opacity: 0;
     filter: alpha(opacity=0);
     -moz-opacity: 0;
}
.postNav li a:hover:after {
     bottom: -18px;
     opacity: 1;
}
.page-template-page-info-top .postNav li:first-child a:after,
.page-template-page-post-top .postNav li:first-child a:after,
.postNav li.current-cat a:after,
.postNav li.current-acv a:after {
     bottom: -18px;
     opacity: 1;
     filter: alpha(opacity=1);
     -moz-opacity: 1;
}
.page-template-page-info-top .postNav li:first-child a,
.page-template-page-post-top .postNav li:first-child a,
.postNav li.current-cat a,
.postNav li.current-acv a {
    font-weight: bold;
}

@media screen and (max-width: 768px) {
     .postNav {
          text-align: left;
          padding-bottom: 0;
          margin-bottom: 30px;
          border-bottom: none;
     }
     .postNav ul {
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: justify;
          -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
          justify-content: space-between;
          -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
          flex-wrap: wrap;
          -webkit-box-align: stretch;
          -webkit-align-items: stretch;
          -ms-flex-align: stretch;
          align-items: stretch;
     }
     .postNav li {
          width: 32%;
          text-align: center;
          margin: 0 0 7px;
          padding: 0;
          border: 2px dotted #322e2e;
          -moz-border-radius: 5px;
          -webkit-border-radius: 5px;
          border-radius: 5px;
          -moz-transition: all, ease, 0.5s;
          -o-transition: all, ease, 0.5s;
          -webkit-transition: all, ease, 0.5s;
          transition: all, ease, 0.5s;
     }
     .postNav li:before,
     .postNav li:after,
     .postNav li.postNavLine {
          display: none;
     }
     .postNav li a {
          font-size: 12px;
          font-size: 1.2rem;
     }
     .postNav li a:after {
          display: none;
     }
     .page-template-page-info-top .postNav li:first-child,
     .page-template-page-post-top .postNav li:first-child,
     .postNav li.current-cat,
     .postNav li.current-acv,
     .postNav li:hover {
          border: 2px solid #ab7b55;
          background-color: #ab7b55;
     }
     .page-template-page-info-top .postNav li:first-child a,
     .page-template-page-post-top .postNav li:first-child a,
     .postNav li.current-cat a,
     .postNav li.current-acv a,
     .postNav li a:hover {
          color: #fff;
     }
}

/* 一覧ページのページ送り
------------------------------------------ */
.paging {
     display: block;
     overflow: hidden;
     padding: 20px 0 20px;
     text-align: center;
}
.paging span, .paging a {
     font-size: 14px;
     font-size: 1.4rem;
     margin: 0 2px;
     padding: 6px 12px;
     color: #674a2c;
     font-weight: bold;
     border: 1px solid #674a2c;
     font-family: "Montserrat", sans-serif;
}
.paging span.current, .paging a:hover {
     background-color: #674a2c;
     color: #fff;
     text-decoration: none;
}
.paging span.pageIndex {
     display: inline;
}
@media screen and (max-width: 768px) {
     .paging span.pageIndex {
          display: none;
     }
}

/* singleページ要素
------------------------------------------ */
.post-content {
     padding: 60px 80px 50px;
     background: url(../images/common/bg_02.png) left top repeat #f8f4eb;
     -moz-border-radius: 10px;
     -webkit-border-radius: 10px;
     border-radius: 10px;
}
.post-content p {
     font-size: 17px;
     font-size: 1.7rem;
     position: relative;
     margin-bottom: 20px;
     line-height: 2.2;
}
.post-content img {
     -moz-border-radius: 10px;
     -webkit-border-radius: 10px;
     border-radius: 10px;
}
.entry-meta {
     line-height: 1;
     margin-bottom: 30px;
}
.entry-meta .infoCate {
     margin-right: 10px;
}
.entry-meta .infoDate {
     color: #322e2e;
     font-weight: bold;
     font-family: "Montserrat", sans-serif;
}
.entryPostTitle {
     font-size: 30px;
     font-size: 3rem;
     font-weight: bold;
     line-height: 1.3;
     margin-bottom: 40px;
     padding-bottom: 10px;
     border-bottom: 2px dotted #322e2e;
}

@media screen and (max-width: 768px) {
     .post-content {
          padding: 0;
          background: none;
          -moz-border-radius: 0;
          -webkit-border-radius: 0;
          border-radius: 0;
     }
     .post-content p {
          font-size: 15px;
          font-size: 1.5rem;
          margin-bottom: 15px;
          line-height: 1.7;
     }
     .entry-meta {
          margin-bottom: 20px;
     }
     .entryPostTitle {
          font-size: 20px;
          font-size: 2.0rem;
          margin-bottom: 30px;
     }
}

/* prev/nextのナビゲーション ---------- */
.navigation {
     overflow: hidden;
     text-align: center;
     line-height: 1;
     margin-top: 40px;
     clear: both;
}
.nav-previous,
.nav-all,
.nav-next {
     display: inline-block;
     line-height: 30px;
     vertical-align: middle;
     font-family: "Montserrat", sans-serif;
}
.meta-nav {
     font-size: 20px;
     font-size: 2.0rem;
}
.nav-all a {
     display: block;
     color: #fff;
     margin: 0 20px;
     padding: 0 20px;
     background-color: #ab7b55;
     -moz-transition: background-color, ease, 0.5s;
     -o-transition: background-color, ease, 0.5s;
     -webkit-transition: background-color, ease, 0.5s;
     transition: background-color, ease, 0.5s;
     -moz-border-radius: 5px;
     -webkit-border-radius: 5px;
     border-radius: 5px;
}
.nav-all a:hover {
     opacity: 0.8;
     filter: alpha(opacity=80);
     -moz-opacity: 0.8;
}

#nav-above {
     margin: 0 0 18px 0;
}
#nav-above {
     display: none;
}
.paged #nav-above, .single #nav-above {
     display: block;
}

@media screen and (max-width: 768px) {
     .navigation {
          margin-top: 15px;
     }
     .nav-previous,
     .nav-all,
     .nav-next {
          line-height: 26px;
          font-size: 12px;
          font-size: 1.2rem;
     }
     .meta-nav {
          font-size: 18px;
          font-size: 1.8rem;
     }
     .nav-all a {
          margin: 0 10px;
     }
}

/* コメント要素
------------------------------------------ */
#comments {
     clear: both;
}
#comments ol.commentlist {
     margin: 0px 0px 15px 0px;
}
#comments ol.commentlist li {
     list-style: none;
}
#comments li.comment .commentBox {
     border: 4px solid #e5e5e5;
     padding: 15px;
     margin-bottom: 10px;
}
#comments li.comment .comment-author img {
     float: left;
     border: 2px solid #ccc;
     margin-right: 10px;
}
#comments li.comment .comment-author cite.fn {
     font-style: normal;
     line-height: 120%;
}
#comments li.comment .comment-meta.commentmetadata {
     font-size: 85.7%;
     line-height: 120%;
}
#comments li.comment .comment-body {
     margin-left: 50px;
     margin-top: 5px;
}
#comments li.comment .comment-body p {
     margin-bottom: 10px;
}
#comments li.comment .reply {}
#comments #respond .required {
     color: #e50000;
}
#content #commentform p {
     margin-bottom: 5px;
}
#content #commentform input, #content #commentform textarea {
     display: block;
     width: 95%;
     padding: 4px;
}
#content #commentform p.form-allowed-tags {
     font-size: 10px;
     line-height: 120%;
     color: #666;
     width: 95%;
     margin-bottom: 10px;
}
#content #commentform p.form-submit input {
     width: auto;
     padding: 10px 20px;
}

/* =========================================================
  コンタクトフォーム7
========================================================= */
.wpcf7-form-control-wrap {
     position: relative;
     display: block;
     width: 100%;
     height: 100%;
     z-index: 1;
}

/* レイアウト
------------------------------------------ */
.wpcf7 dl {
     display: table;
     width: 100%;
     margin-top: 30px;
}
.wpcf7 dl:first-child {
     margin-top: 0;
}
.wpcf7 dl dt {
     position: relative;
     display: table-cell;
     width: 280px;
     color: #674a2c;
     vertical-align: middle;
     font-weight: bold;
}
.wpcf7 dl dd {
     display: table-cell;
}
.wpcf7 dl dd.accept {
     padding: 10px 0;
     background-color: #fff;
     border: 1px solid #c8c8c8;
     -moz-border-radius: 5px;
     -webkit-border-radius: 5px;
     border-radius: 5px;
}
.wpcf7 dl dt .req {
     display: inline-block;
     position: absolute;
     right: 20px;
     font-size: 12px;
     font-size: 1.2rem;
     line-height: 1;
     color: #ab7b55;
     margin-top: 3px;
     padding: 3px 5px 5px;
     border: 1px dotted #ab7b55;
     -moz-border-radius: 5px;
     -webkit-border-radius: 5px;
     border-radius: 5px;
}

/* 入力ボックス ---------- */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="url"],
.wpcf7 textarea {
     position: relative;
     overflow: hidden;
     width: 100%;
     padding: 5px 15px;
     border: 1px solid #c8c8c8;
     -moz-border-radius: 5px;
     -webkit-border-radius: 5px;
     border-radius: 5px;
     /*box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.1);
     -moz-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.1);
     -webkit-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.1);*/
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="url"] {
     height: 50px;
     line-height: 50px;
}
.wpcf7 textarea {
     min-height: 250px;
}

.wpcf7 input[name="your-tel"] {
        width: 50%;
}

/* セレクトボックス ---------- */
.wpcf7 select {
     -webkit-appearance: none;
     -moz-appearance: none;
     appearance: none;
}
.wpcf7 select::-ms-expand {
     display: none;
}
.wpcf7 .select {
     position: relative;
     width: 50%;
     height: 50px;
     line-height: 50px;
     vertical-align: middle;
     background-color: #fff;
     border: 1px solid #c8c8c8;
     -moz-border-radius: 5px;
     -webkit-border-radius: 5px;
     border-radius: 5px;
}
.wpcf7 .select select {
     position: absolute;
     top: 0;
     left: 0;
     width: 100% !important;
     height: 100%;
     vertical-align: middle;
     padding-left: 15px;
     text-align: left;
     background-color: transparent;
     border: none;
     z-index: 1;
     overflow: hidden;
     white-space: nowrap;
     text-overflow: ellipsis;
}
.wpcf7 .select:after {
     display: block;
     position: absolute;
     top: -1px;
     right: -1px;
     width: 50px;
     height: 50px;
     content: "";
     content: "\f123";
     font-family: "ionicons";
     font-size: 16px;
     font-size: 1.6rem;
     color: #fff;
     text-align: center;
     background-color: #956134;
     -moz-border-radius: 5px;
     -webkit-border-radius: 5px;
     border-radius: 5px;
}

/* チェツクボックス ---------- */
.wpcf7 input[type="checkbox"] {
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    margin-right: 10px;
}

/* 送信ボタン ---------- */
input[type="submit"] {
     -webkit-appearance: none;
     -moz-appearance: none;
     appearance: none;
}
.wpcf7-submit-btn {
     position: relative;
     width: 100%;
     line-height: 50px;
     margin-top: 50px;
}
.wpcf7-submit-btn:after {
     position: absolute;
     top: 0;
     right: 50%;
     content: "\f49a";
     font-family: "ionicons";
     font-size: 28px;
     font-size: 2.8rem;
     color: #fff;
     font-weight: bold;
     margin: 1px -65px 0 0;
}
.wpcf7 input[type="submit"] {
     position: relative;
     width: 100%;
     line-height: 50px;
     font-size: 18px;
     font-size: 1.8rem;
     color: #fff;
     text-align: center;
     cursor: pointer;
     font-weight: bold;
     letter-spacing: 0.1em;
     border: none;
     background-color: #956134;
     -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
     border-radius: 5px;
     -moz-transition: background-color, ease, 0.5s;
     -o-transition: background-color, ease, 0.5s;
     -webkit-transition: background-color, ease, 0.5s;
     transition: background-color, ease, 0.5s;
}
input[type="submit"]:hover {
     background-color: #ab7b55;
}

/* エラー時
------------------------------------------ */
form span.wpcf7-not-valid-tip {
     position: relative;
     color: #fff;
     padding: 5px 10px;
     position: relative;
     display: block;
     background-color: #fa4625;
     left: 0px;
     top: 8px;
     margin-bottom: 8px;
     -moz-border-radius: 3px;
     -webkit-border-radius: 3px;
     border-radius: 3px;
}
form span.wpcf7-not-valid-tip::after {
     content: "";
     position: absolute;
     bottom: 100%;
     left: 30px;
     height: 0;
     width: 0;
     border: 10px solid transparent;
     border-bottom: 10px solid #fa4625;
}
form div.wpcf7-validation-errors {
     display: none !important;
}

@media screen and (max-width: 768px) {
     .wpcf7 .select,
     .wpcf7 input[name="your-tel"] {
          width: 100%;
     }
}

@media screen and (max-width: 640px) {
     .wpcf7 dl {
          display: block;
          margin-top: 15px;
     }
     .wpcf7 dl dt,
     .wpcf7 dl dd {
          display: block;
          width: 100%;
          font-size: 14px;
          font-size: 1.4rem;
     }
     .wpcf7 dl dt .req {
          right: 0;
     }
     .wpcf7-submit-btn {
          margin-top: 20px;
     }
}

/* =========================================================
  サイドバー
========================================================= */
#sideTower {
     clear: both;
}
#sideTower .localSection {
     margin-bottom: 50px;
}
#sideTower .localHead {
     text-align: center;
     font-weight: bold;
     padding: 15px;
     text-shadow: 0 1px #ffffff;
     background: url(../images/common/bg.jpg) left top repeat;
     -moz-border-radius: 10px;
     -webkit-border-radius: 10px;
     border-radius: 10px;
}
#sideTower .localHead a {
     text-decoration: none;
}
#sideTower .localHead a:hover {
     text-decoration: underline;
}
#sideTower .sideWidget {
     margin: 0;
}
#sideTower .sideWidget li {
     border-bottom: 1px solid #eee;
}
#sideTower .sideWidget li a {
     display: block;
     font-size: 14px;
     font-size: 1.4rem;
     text-align: center;
     font-weight: bold;
     padding: 13px 10px 11px 10px;
     text-decoration: none;
     font-family: "Montserrat", sans-serif;
}
#sideTower .sideWidget li a:hover,
#sideTower .sideWidget li.current_page_item a,
#sideTower .sideWidget li.current-cat a {
     color: #000;
     background: #fff;
}
#sideTower .sideWidget li ul {
     display: block;
     margin: 0px;
}
#sideTower li.sideBnr {
     margin-bottom: 10px;
}
#sideTower li.sideBnr#sideContact a {
     display: block;
     overflow: hidden;
     width: auto;
     width: 220px;
     margin: 0 auto;
     text-align: center;
     background-color: #ab7b55;
}
#sideTower li.sideBnr#sideContact a:hover {
     opacity: .80;
     /* Standard: FF gt 1.5, Opera, Safari */
     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
     filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
     -khtml-opacity: .80;
     /* Safari 1.x */
     -moz-opacity: .80;
     /* FF lt 1.5, Netscape */
}
#sideTower li.sideBnr#sideContact a:hover img {
     opacity: 1.0 !important;
     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
     filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
     -khtml-opacity: .100;
     /* Safari 1.x */
     -moz-opacity: .100;
     /* FF lt 1.5, Netscape */
}
#sideTower ul#snsBnr {
     border-top: 1px solid #eeeeee;
     margin-bottom: 20px;
     text-align: center
}
#sideTower ul#snsBnr li {
     border-bottom: 1px solid #eeeeee;
}
#sideTower .sideWidget {
     margin-bottom: 20px;
}
#sideTower .sideWidget .textwidget {
     padding-top: 10px;
}
#sideTower .sideWidget .textwidget img {
     display: block;
     margin: 0 auto;
}
#sideTower .sideWidget h4 {
     clear: both;
     font-size: 14px;
     margin: 0 0 15px;
     padding: 4px 0 2px 12px;
     border-left-style: solid;
     border-left-width: 3px;
     background-color: #f5f5f5;
}
#sideTower .sideWidget ul#recentcomments li {
     padding: 13px 10px 11px 10px;
     background: url(images/icon_arrow1_gray.gif) 10px 50% no-repeat;
}
#sideTower .sideWidget ul#recentcomments li a {
     padding: 0;
     background: none;
}
#sideTower .sideWidget select {
     margin: 10px 0;
     padding: 5px;
     width: 100%;
     border: 1px solid #ccc;
}
#sideTower .sideWidget select option {
     padding: 2px 5px;
}
form#searchform {
     padding: 5px 0px 5px 7px;
     background-color: #f3f3f3;
     display: block;
     overflow: hidden;
     position: relative;
}
form#searchform input#s {
     margin: 0 0 0 5px;
     padding: 5px;
     width: 120px;
     float: left;
}
form#searchform input#searchsubmit {
     border: 1px solid #ab7b55;
     background-image: none;
     margin: 0 10px 0 0;
     float: right;
     background-color: #ab7b55;
     width: 20%;
     color: #fff;
     behavior: url(/wp-content/themes/biz-vektor/PIE.htc);
}
@media screen and (max-width: 768px) {
     form#searchform input#s {
          width: 70%;
     }
     form#searchform input#searchsubmit {
          width: 15%;
     }
}

/* =========================================================
  フッター要素
========================================================= */
footer #footerSection {
}

/* pagetop
------------------------------------------ */
.pagetop {
     position: fixed;
     right: 20px;
     bottom: 20px;
}
.pagetop a {
     display: block;
     width: 45px;
     height: 45px;
     text-align: center;
     background-color: #956134;
     border-radius: 8px;
     filter:alpha(opacity=80);
     -moz-opacity: 0.8;
     opacity: 0.8;
     -moz-transition: background-color, ease, 0.5s;
     -o-transition: background-color, ease, 0.5s;
     -webkit-transition: background-color, ease, 0.5s;
     transition: background-color, ease, 0.5s;
}
.pagetop a:before {
     content: "\f3d8";
     font-family: "ionicons";
     font-size: 26px;
     font-size: 2.6rem;
     line-height: 45px;
     opacity: 1;
     color: #fff;
}
.pagetop a:hover {
     background-color: #ab7b55;
}

@media screen and (max-width: 768px) {
     .pagetop {
          right: 10px;
          bottom: 20px;
     }
     .pagetop a {
          width: 30px;
          height: 30px;
          border-radius: 3px;
     }
     .pagetop a:before {
          font-size: 20px;
          font-size: 2.0rem;
          line-height: 30px;
     }
}

/* footerInner
------------------------------------------ */
.footerInner {
     position: relative;
     width: 800px;
     text-align: center;
     margin: 0 auto;
     padding: 60px 0 88px;
     border-bottom: 3px solid #322e2e;
}
.footerInner .footer-sitename {
     font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, sans-serif;
}
.footerInner .footer-addr,
.footerInner .footer-contact {
     display: block;
     font-size: 14px;
     font-size: 1.4rem;
     margin-top: 15px;
     line-height: 1;
     font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, sans-serif;
}

.footerInner .footer-illust-left {
     position: absolute;
     left: 0;
     bottom: 0;
}
.footerInner .footer-illust-right {
     position: absolute;
     right: 0;
     bottom: 0;
}

@media screen and (max-width: 768px) {
     .footerInner {
          width: 100%;
          padding: 30px 0 50px;
     }
     .footerInner img {
          width: 88px;
     }
     .footerInner .footer-addr {
          padding: 0 40px;
          font-size: 12px;
          font-size: 1.2rem;
          line-height: 1.5;
          margin-top: 5px;
     }
     .footerInner .footer-contact {
          font-size: 14px;
          font-size: 1.4rem;
          margin-top: 10px;
          line-height: 1.5;
     }
     .footerInner .footer-illust-left {
          display: none;
     }
     .footerInner .footer-illust-right {
          right: 50%;
          -webkit-transform: translateX(50%);
          transform: translateX(50%);
     }
     .footerInner .footer-illust-right img {
          width: 300px;
     }
}

/* siteBottom
------------------------------------------ */
.siteBottom {
     text-align: center;
     padding: 35px 0 40px;
     background: -webkit-linear-gradient(135deg, #f7f3eb 25%, #f9f5ef 25%, #f9f5ef 50%, #f7f3eb 50%, #f7f3eb 75%, #f9f5ef 75%, #f9f5ef);
     background: linear-gradient(-45deg, #f7f3eb 25%, #f9f5ef 25%, #f9f5ef 50%, #f7f3eb 50%, #f7f3eb 75%, #f9f5ef 75%, #f9f5ef);
     background-size: 15px 15px;
     font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, sans-serif;
}
.siteBottom .copy {
     font-size: 10px;
     font-size: 1.0rem;
     font-family: Arial, Helvetica, sans-serif;
}
.siteBottom .bar {
     font-size: 13px;
     font-size: 1.3rem;
     padding: 0 20px;
}
.siteBottom a {
     font-size: 12px;
     font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
     .siteBottom {
          padding: 20px 0 15px;
     }
     .siteBottom .copy {
          display: block;
     }
     .siteBottom .bar {
          padding: 0 10px;
     }
     .siteBottom .bar.firstChild {
          display: none;
     }
}

/* =========================================================
  sitemap & 404 &search
========================================================= */
#content.wide {
     display: block;
     overflow: hidden;
}
#content #sitemapPageList {
     float: left;
     width: 49%;
}
#content #sitemapPostList {
     float: right;
     width: 49%;
     margin-top: 20px;
}
#content #sitemapPostList h5 {
     margin: 0px;
     padding: 0px;
     font-weight: lighter;
     font-size: 14px;
}
#content ul.linkList {
     margin: 0px;
     padding: 0px;
     font-size: 85.7%;
}
#content ul.linkList li {
     list-style: none;
     margin-bottom: 0px;
}
#content ul.linkList li a {
     background: url(images/icon_arrow_bk.png) left 8px no-repeat;
     padding: 3px 15px;
     display: block;
     text-decoration: none;
     color: #666;
}
#content ul.linkList li a:hover {
     text-decoration: underline;
     color: #ab7b55;
}
#content ul.linkList li li a {}
#content ul.linkList li li a:hover {}
#content ul.linkList li li li a {
     background: none;
}
#content ul.linkList li li li a:hover {}
#content ul.linkList ul {
     margin-bottom: 0px;
     margin-top: 0px;
     margin-left: 10px;
}
#content .error404 {
     text-align: center;
     padding-bottom: 30px;
}
#sitemapOuter {
     border: 4px solid #e5e5e5;
     padding: 20px 50px;
     display: block;
     overflow: hidden;
     margin: 0px auto;
}
#content form#searchform label {
     display: none;
}
#content form#searchform input#s {
     width: 70%;
}
#likeBox {
     border: 1px solid #00ff00;
     width: 100% !important;
}
.fbConnectWidgetTopmost {
     border: 1px solid #00ff00;
     width: 100% !important;
}
@media screen and (max-width: 768px) {
     #content ul.linkList li a {
          padding: 5px 15px;
     }
     #sitemapOuter {
          padding: 20px;
     }
     #content #sitemapPageList, #content #sitemapPostList {
          width: 100%;
     }
}

/* =========================================================
  =Print Style
========================================================= */
@media print {
     body {
          /*background: none !important;*/
     }
     #wrapper {
          clear: both !important;
          display: block !important;
          float: none !important;
          position: relative !important;
     }
     #headerTop, #header, #panList, #gMenu, #pagetop, #sideTower, #footMenu, #footer, #siteBottom {
          display: none !important;
     }
     #pageTitBnr, #content table th {
          box-shadow: none !important;
     }
     #access, #branding img, #respond, .comment-edit-link, .edit-link, .navigation, .page-link, .widget-area {
          display: none !important;
     }
     #container #content {
          margin: 0;
          width: 100%;
     }
}

/*
@page { size: A4 } /* A4縦 */


/*
@page { size: A4 landscape} /* A4横 */


/*
@media print {
    // 印刷したくない領域
    .not_print_area {
        display: none;
    }
    // 印刷したい領域
    .print_area{
        top:0 !IMPORTANT;
        left:0 !IMPORTANT;
        width:172mm !IMPORTANT;
        height:251mm !IMPORTANT;
    }
}
@page {
    size: A4;
    margin: 0;
}
@media print {
    .page {
        margin: 0;
        border: initial;
        border-radius: initial;
        width: initial;
        min-height: initial;
        box-shadow: initial;
        background: initial;
        page-break-after: always;
    }
}
*/