@charset "utf-8";
/* CSS Document */
/*==================================================
  COMMON
==================================================*/
* {
    margin: 0;
    padding: 0;
}
html {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    background: #fff;
}
html h1 {
    font-size: 0.9em;
    text-align: right;
}
html a {
    display: inline-block;
    text-decoration: none;
}
main {
    display: block;
}
/*==================================================
  ローディングアニメーション
==================================================*/
#loading {
    width: 100%;
    height: 100%;
    transition: all 1s;
    background-color: #ddc439;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 500;
}
#loading .spinner {
    margin: auto;
    text-align: center;
    position: relative;
    top: 45%;
}
#loading .spinner p {
    text-align: center;
    margin-bottom: 20px;
}
#loading .spinner img {
    height: 60px;
    width: auto;
}
#loading .spinner > div {
    width: 15px;
    height: 15px;
    margin: 0 5px;
    background-color: #fff;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
#loading .spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}
#loading .spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0)
    }
    40% {
        -webkit-transform: scale(1.0)
    }
}
@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}
.loaded {
    opacity: 0;
    visibility: hidden;
}
/*==================================================
  HEADER
==================================================*/
.sp_only {
    display: none;
}
header {
    padding: 10px 30px 0;
    background: #fff;
    position: relative;
    height: 105px;
}
header .inner, header .menuBox, header nav ul:not(.child), header nav ul.sns a {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}
header .logo {
    margin-top: -40px;
}
header .logo img {
    height: 50px;
    width: auto;
}
header #headToggle {
    display: none;
}
header nav ul.sns {
    justify-content: flex-end;
    margin: 10px 0;
}
header nav ul.sns li {
    display: flex;
    align-items: center;
}
header nav ul.sns li:not(:last-child) {
    margin-right: 20px;
}
header nav ul.sns img {
    width: 20px;
    height: auto;
    display: inline-block;
    margin-right: 8px;
}
header nav #megaMenu > li.toggle > a {
    display: block;
    padding-bottom: 15px;
    position: relative;
}
header nav #megaMenu > li.toggle > a:hover {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
}
header nav #megaMenu > li.toggle > a:after {
    border-bottom: solid 3px;
    bottom: 0;
    content: "";
    display: block;
    position: absolute;
    left: 0;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    width: 0;
}
header nav #megaMenu > li.toggle > a:hover:after {
    width: 100%;
}
header nav #megaMenu .menu {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    width: 100%;
    position: absolute;
    top: 103px;
    left: 0;
    z-index: 100;
    transition: all .2s ease-in;
    background-color: rgba(255, 255, 255, 0.85);
    /*background-color: rgba(193, 179, 140, 0.95);*/
    /*background: url(/share/img/common/megaMenu_bg.jpg) center center;*/
    box-shadow: 0px 5px 3px -3px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 5px 3px -3px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 5px 3px -3px rgba(0, 0, 0, 0.3);
}
header nav #megaMenu > li.toggle:hover .menu {
    max-height: 400px;
    opacity: 1;
}
header nav #megaMenu .menu h2 {
    font-size: 1.4em;
    padding-left: 10px;
    border-left: 4px solid;
    height: 20px;
    width: 160px;
}
header nav #megaMenu .menu dl {
    position: relative;
    width: 200px;
}
header nav #megaMenu .menu dl:not(:last-child) {
    margin-right: 30px;
    position: relative;
}
header nav #megaMenu .menu dl > a:after {
    border-bottom: solid 1px;
    bottom: 0;
    content: "";
    display: block;
    position: absolute;
    left: 0;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    width: 0;
}
header nav #megaMenu .menu dl > a:hover:after {
    width: 100%;
}
header nav #megaMenu .menu dl > a:hover {
    opacity: 1;
}
header nav #megaMenu .menu dl dt img {
    width: 200px;
    height: 100px;
    object-fit: cover;
    font-family: 'object-fit: cover;'; /*IE対策*/
}
header nav #megaMenu .menu dl dd {
    padding: 10px 15px 0 0;
    line-height: 1.6;
    background: url(/share/img/common/arrow_black.png) no-repeat right 16px;
    background-size: 5px auto;
    font-size: 0.95em;
}
header nav #megaMenu .menuInner {
    display: -webkit-flex;
    display: flex;
    padding: 30px 0;
}
header nav #megaMenu .menuInner .menuContentsInner {
    display: -webkit-flex;
    display: flex;
}
header nav #megaMenu .menuInner .menuContentsInner:not(:first-of-type) {
    margin-top: 30px;
}
header nav #megaMenu {
    align-items: flex-start;
    line-height: 1.0;
}
header nav #megaMenu li:not(:last-child) {
    padding-right: 15px;
}
header nav #megaMenu .enfont {
    font-size: 1.15em;
}
header nav #megaMenu li.bdr {
    display: flex;
    flex-wrap: wrap;
}
header nav #megaMenu li.bdr:before {
    content: "";
    display: block;
    width: 1px;
    height: 20px;
    background: #ccc;
    margin-right: 15px;
}
header nav #spMenu {
    display: none;
}
header .telBox {
    margin-left: 20px;
    text-align: center;
    margin-top: -10px;
}
header .telBox dt {
    font-size: 2.2em;
    line-height: 1.2;
}
header .telBox dd {
    line-height: 1.0;
}
header.fixed + main {
    padding-top: 105px;
}
header.fixed {
    display: block;
    box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.5);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 200;
    margin: auto;
    width: 100%;
}
/*==================================================
  MAIN
==================================================*/
#ancPagetop {
    display: inline;
}
.enfont {
    font-family: 'Questrial', sans-serif;
}
.minfont {
    font-family: 'Noto Serif JP', serif;
}
.w1010 {
    max-width: 1010px;
    margin: auto;
}
.w1200 {
    max-width: 1200px;
    margin: auto;
}
.w1500 {
    max-width: 1500px;
    margin: auto;
}
.center {
    text-align: center;
}
.small {
    font-size: 0.8em;
}
.red {
    color: #b31e00;
}
.marker {
    background: linear-gradient(transparent 60%, #ddc439 60%);
}
.inline {
    display: inline-block;
}
#mainttlBox {
    margin-top: -40px;
}
h2.mainTitle {
    font-size: 2.5em;
    font-weight: bold;
    text-align: center;
    background: url(/share/img/common/mainTitle_bg.jpg) no-repeat center center;
    background-size: cover;
    margin-top: -40px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}
.btnSend a {
    width: 210px;
    height: 60px;
    margin: 40px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid;
    background: #fff;
}
#mapBox {
    margin: 50px 0;
}
#mapBox h4 {
    font-weight: bold;
    font-size: 1.5em;
    padding-bottom: 20px;
    border-bottom: 2px solid;
}
#mapBox iframe {
    width: 100%;
}
/*************** パンくず ****************/
#bread {
    font-size: 0.9em;
    padding: 10px 0;
}
#bread a {
    padding: 0 5px 0 0;
    display: inline-block;
    text-decoration: underline;
}
#bread a:hover {
    text-decoration: none;
}
#bread .List span:last-of-type span[property="name"] {
    display: inline-block;
    padding: 0;
    margin-top: -3px;
    vertical-align: middle;
    max-width: 500px; /* 500px超えた文字は「...」表示 */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/*************** 一覧ページャー ****************/
.archive_pager {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}
@media all and (-ms-high-contrast: none) { /* IEでの.archive_pager位置を調整 */
.archive_pager{
    display: table;
}
}
.archive_pager .wp-pagenavi {
    margin-top: 50px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}
.archive_pager .wp-pagenavi span {
    display: table;
}
/*************** 詳細ページャー ****************/
.content_pager {
    display: flex;
    justify-content: center;
    align-items: center;
}
.content_pager li.archive a {
    padding: 5px;
    border: 1px solid;
    margin: 0 10px;
}
.content_pager li.prev :before {
    content: "\ff1C \a0";
    font-size: 0.6em;
}
.content_pager li.next :after {
    content: "\a0 \FF1E";
    font-size: 0.6em;
}
/*************** preparationBox ****************/
.preparationBox {
    margin-top: 50px;
}
.preparationBox h3 {
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    line-height: 1.8;
}
.preparationBox p {
    text-align: center;
    margin-top: 5px;
}
/*************** 日付 ****************/
#dateBox {
    line-height: 1.0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    right: 10px;
}
#dateBox .day {
    font-size: 3em;
    line-height: 0.8;
    font-weight: 900;
}
#dateBox .manth {
    font-size: 0.7em;
    font-weight: 900;
}
@media all and (-ms-high-contrast: none) { /* IEでは#dateBoxの位置を調整 */
    #dateBox {
        top: -15px;
    }
}
/*************** 投稿content内css ****************/
#content {
    padding: 0 20px;
    margin-bottom: 50px;
}
#content img {
    max-width: 100%;
    height: auto;
}
#content a {
    display: inline;
}
#content p {
    margin-bottom: 10px;
}
#content .aligncenter {
    margin: auto;
    display: table;
}
#content .alignright {
    margin-left: auto;
    display: table;
}
#content table td, #content table th {
    padding: 10px;
    border: 1px solid #ccc;
}
.addtoany_content {
    margin: 5% auto;
}
/*==================================================
  CONTACT FORM
==================================================*/
input:not([type="submit"]), textarea, select {
    cursor: pointer;
    font-family: 'Noto Sans JP', sans-serif;
    position: relative;
    transition: 0.5s;
    border: 2px solid #ccc;
    margin: 0 5px;
    padding: 5px;
}
input:not([type="submit"]):focus, textarea:focus, select:focus {
    border: 2px solid #b31e00;
    outline: none;
}
label {
    margin-bottom: 5px;
}
label.inline {
    min-width: 60px;
}
a:hover, a:active {
    text-decoration: none;
    filter: alpha(opacity=60);
    -moz-opacity: 0.6;
    opacity: 0.6;
    -webkit-transition: all .3s;
    transition: all .3s;
    -moz-opacity: 0.7;
    opacity: 0.7;
}
h3.formTitle {
    text-align: center;
    margin-top: 50px;
    font-weight: bold;
    font-size: 2em;
}
.recaptcha {
    display: flex;
    justify-content: center;
    margin: 20px 0
}
.class-holiday span {
    color: #b31e00 !important;
}
#form {
    /*margin: 50px 0;*/
    padding-top: 105px;
    margin: -105px auto 50px;
}
#form .entrytbl .brdr_td{
max-width: 765px;
}
#form .entrytbl .brdr_td select{
max-width: 100%;
}
#form .entrytbl .brdr_td p {
    margin-top: 0;
}
#form .entrytbl .brdr_td label {
    cursor: pointer;
}
#form .entrytbl .brdr_td a {
    display: inline;
}
#form .entrytbl .message p:first-child {
    margin-bottom: 10px;
}
.required {
    padding-left: 40px !important;
    background: url(/share/img/common/form_required.png) no-repeat left 25px;
    background-size: 30px auto;
}
.arbitrary {
    padding-left: 40px !important;
    background: url(/share/img/common/form_arbitrary.png) no-repeat left 25px;
    background-size: 30px auto;
}
input[type="checkbox"] {
    border: 1px solid #aaaaaa;
    vertical-align: -8px;
    -webkit-appearance: none;
    position: relative;
    margin-right: 5px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    box-sizing: border-box;
    width: 26px;
    height: 26px;
    background: #e2e2e2;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.00, #ffffff), color-stop(1.00, #e2e2e2));
    background: linear-gradient(to bottom, #ffffff 0%, #e2e2e2 100%);
}
input[type="checkbox"]:checked {
    background: #666666;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.00, #666666), color-stop(1.00, #111));
    background: linear-gradient(to bottom, #666666 0%, #111 100%);
    border: 1px solid #111;
}
input[type="checkbox"]:checked:before {
    position: absolute;
    left: 1px;
    top: 16px;
    display: block;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .5);
    content: "";
    width: 10px;
    height: 4px;
    background: #ffffff;
    transform: rotate(45deg);
    transform-origin: right center;
}
input[type="checkbox"]:checked:after {
    display: block;
    position: absolute;
    left: 9px;
    top: 16px;
    content: "";
    box-shadow: 0 1px 1px rgba(0, 0, 0, .5);
    width: 16px;
    height: 4px;
    background: #ffffff;
    transform: rotate(-53deg);
    transform-origin: left center;
}
/*************** entrytbl ****************/
.entrytbl {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    border-top: 1px solid #eee;
}
.entrytbl .brdr_td {
    padding: 20px;
}
.entrytbl .add label.inline {
    min-width: 90px;
}
span.time01, span.time02 {
    margin-top: 10px;
    display: inline-block;
}
.entrytbl .add .add02 {
    display: inline-block;
    margin: 10px 0;
}
.entrytbl tr:not(:last-of-type) {
    border-bottom: 1px solid #eee;
}
.entrytbl th {
    width: 25%;
    padding: 20px;
    font-weight: bold;
}
.entrytbl td {
    padding: 20px;
}
.entrytbl td p {
    margin-top: 10px;
}
.entrytbl td table td {
    padding: 10px !important;
}
/*************** フォーム用送信ボタン ****************/
.submit_warning {
    color: #b31e00;
    font-weight: bold;
    text-align: center;
    margin: 20px auto 5px auto;
    font-size: 1.4em;
}
.submit_box {
    margin: 30px 0 0;
    text-align: center;
}
.btn_submit_form {
    width: 210px;
    height: 60px;
    margin: 0 auto;
    text-indent: -9999px;
    overflow: hidden;
    display: inline-block;
    background: url(/share/img/common/form_submit.png) no-repeat 0 0;
    background-size: 210px auto;
    border: none;
    cursor: pointer;
}
div.wpcf7 .ajax-loader {
    margin: 5% auto;
    display: block;
}
* html .btn_submit_form:hover {
    background-position: 0 -60px;
}
.btn_submit_form:hover {
    background-position: 0 -60px;
}
.btn_submit_form:focus, .btn_submit_form:active {
    background-position: 0 -60px;
}
.btn_submit_form:disabled {
    background-position: 0 -120px;
}
    span.wpcf7-not-valid-tip{
    	display: inline-block !important;
    	width: auto;
    /*width: 60%;*/
    margin: 5px;
    background: #F00;
    padding: 5px;
    color: #fff !important;
}
span.wpcf7-list-item, label {
    display: block;
}
/*==================================================
  FOOTER
==================================================*/
footer .snsBox {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 50px auto;
}
footer .snsBox li {
    line-height: 1.0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
}
footer .snsBox li:not(:last-of-type) {
    margin-right: 30px;
    padding-right: 30px;
    border-right: 1px solid #ccc;
}
footer .snsBox li img {
    max-width: 20px;
    height: auto;
    display: inline-block;
    margin-right: 10px;
}
footer #footBox {
    color: #fff;
    padding: 20px 0 0;
    margin-top: 50px;
    background: url(/share/img/common/foot_bg.jpg) center center;
}
footer #footBox:before {
    content: "";
    height: 5px;
    display: block;
    background: url(/share/img/common/foot_bg_line.png) repeat-x center top;
    background-size: auto;
    background-size: auto 5px;
}
footer #footBox:after {
    content: "";
    display: block;
    margin: auto;
    width: 100%;
    height: 100px;
    display: block;
    background: url(/share/img/common/foot_bg_bottom.png) no-repeat center bottom;
    background-size: auto 100px;
    margin-top: -50px;
}
footer #footBox .topBox {
    padding: 40px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
footer #footBox .logo {
    padding-right: 190px;
    background: url(/share/img/common/foot_bg_logo.png) no-repeat right center;
    background-size: 160px;
}
footer #footBox .logo img {
    height: 60px;
    width: auto;
}
footer #footBox .telBox {
    margin-left: 40px;
    text-align: center;
}
footer #footBox .telBox dt {
    font-size: 2.2em;
    line-height: 1.2;
}
footer #footBox .telBox dd {
    line-height: 1.0;
}
footer #footBox nav {
    display: flex;
    justify-content: space-between;
}
footer #footBox nav li {
    font-size: 0.9em;
    line-height: 2;
    padding-left: 15px;
    background: url(/share/img/common/arrow_white.png) no-repeat center left;
    background-size: 4px auto;
}
footer #footBox .bottomBox {
    padding: 20px 0 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
footer #footBox .bottomBox li {
    width: 240px;
}
footer #footBox .bottomBox li img {
    width: 100%;
    height: auto;
}
footer #footBox small {
    display: block;
    margin-top: 20px;
}
/*************** footFix ****************/
footer #footFix {
    width: 100%;
    z-index: 300;
}
footer #footFix .ancPagetop {
    width: 60px;
    height: 60px;
    float: right;
    margin: -70px 10px 0 0;
    position: relative;
}
footer #footFix .ancPagetop img {
    width: 100%;
    height: 100%;
}
/*************** ポップアップ ****************/
footer #popup_box {
    position: fixed;
    width: 150px;
    bottom: 80px;
    right: 10px;
}
footer #popup {
    width: 100%;
}
footer #popup-in {
    position: relative;
}
footer #popup-in img {
    width: 150px;
    height: 150px;
}
footer #popup_box .close {
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: 100;
}
footer #popup_box .close a {
    cursor: pointer;
    display: block;
}
footer #popup_box .close a img {
    width: 100%;
    height: auto;
}
/*///////////////////////////////////////////////////////////

タブレット版（600px～1199px）

///////////////////////////////////////////////////////////*/
@media only screen and (max-width: 1199px) {
    /*==================================================
      タブレット版 MAIN
    ==================================================*/
    .btnSend a {
        margin: 5% auto 0;
    }
    h2.mainTitle {
        margin-bottom: 5%;
        padding: 5%;
    }
    h3.formTitle {
        margin: 5% 2% 0;
    }
    /*************** mapBox ****************/
    #mapBox {
        margin: 5% 0;
    }
    #mapBox h4 {
        font-weight: bold;
        font-size: 1.2em;
        padding-bottom: 3%;
        border-bottom: 2px solid;
    }
    /*************** パンくず ****************/
    #bread {
        padding: 10px;
    }
    #bread .List span:last-of-type span[property="name"] {
    max-width: 140px; /* 140px超えた文字は「...」表示 */
    }
    /*************** 日付 ****************/
    #dateBox .day {
        font-size: 2em;
    }
    #dateBox .manth {
        font-size: 0.6em;
        font-weight: 900;
    }
    /*************** preparationBox ****************/
    .preparationBox {
        margin: 0 5%;
    }
    /*************** フォーム ****************/
/*    #form {
        margin: 5% 2%;
    }*/
    #form {
    /*margin: 50px 0;*/
    padding-top: 60px;
    margin: -60px 2% 5%;
}
    input[type="text"], input[type="email"], textarea {
        width: 70%;
    }
    input[type="text"][name="etc"] {
        width: 96%;
    }
    input[type="tel"] {
        width: 36%;
    }
    input[type="text"]#text_shop, select#select-title, select#model-title {
        width: 96%;
    }
    /*************** 一覧ページャー ****************/
    .archive_pager .wp-pagenavi {
        margin-top: 5%;
    }
    /*************** 投稿content内css ****************/
    #content {
        padding: 0 2%;
        margin-bottom: 5%;
    }
    /*==================================================
      タブレット版 HEADER
    ==================================================*/
    .pc_only {
        display: none;
    }
    .sp_only {
        display: block;
    }
    header {
        padding: 0;
        height: 60px;
    }
    header .inner, header .menuBox {
        display: block;
    }
    header .telBox {
        display: none;
    }
    header .logo {
        margin: 0;
    }
    header .logo img {
        height: 30px;
        width: auto;
    }
    header #headInner {
        position: relative;
        z-index: 300;
    }
    header #headInner .drawer {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        position: relative;
        padding: 15px;
    }
    header #headInner .headToggle {
        z-index: 300;
    }
    header #headInner .headToggle span {
        position: relative;
        display: block;
        height: 2px;
        width: 30px;
        background: #5c6b80;
        -webkit-transition: ease .5s;
        transition: ease .5s;
    }
    header #headInner .headToggle span:nth-child(1) {
        top: 0;
    }
    header #headInner .headToggle span:nth-child(2) {
        margin: 8px 0;
    }
    header #headInner .headToggle span:nth-child(3) {
        top: 0;
    }
    header #headInner .headToggle.open span:nth-child(1) {
        top: 10px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    header #headInner .headToggle.open span:nth-child(2) {
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        opacity: 0;
    }
    header #headInner .headToggle.open span:nth-child(3) {
        top: -10px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    header #headInner nav {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: ease .5s;
        transition: ease .5s;
        z-index: 300;
        background: rgba(255, 255, 255, 0.95);
        position: absolute;
        top: 60px;
        width: 100%;
    }
    header #headInner nav ul li {
        padding: 10px 20px 10px 10px;
        border-bottom: 1px solid #CCC;
        margin: 0;
    }
    header #headInner nav.open {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    header nav ul.sns {
        margin: 0;
        border-top: 1px solid #ccc;
    }
    header nav ul.sns li {
        margin: 0;
        /*width: 33.5%;*/
        width: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 0 !important;
    }
    header nav ul.sns li:not(:last-child) {
        border-right: 1px dotted #ccc;
        margin: 0;
    }
    header #megaMenu {
        display: none;
    }
    header nav:not(.open) #spMenu, header nav:not(.open) .sns {
        display: none;
    }
    header nav.open #spMenu {
        display: block !important;
        overflow-y: scroll; /*縦方向の超過分はスクロールする*/
        height: calc(100vh - 160px); /*.drawerの高さ＋.snsの高さ合計px*/
        transform: translateZ(0); /*retinaディスプレイでoverflow-yが効かなくなるのを回避する*/
    }
    header #spMenu li a {
        background: url(/share/img/common/arrow_black.png) no-repeat right center;
        background-size: auto 10px;
        display: block;
    }
    header #spMenu li.parent p {
        background: url(/share/img/common/arrow_under.png) no-repeat right center;
        background-size: auto 5px;
    }
    header #spMenu li.parent p.close {
        background: url(/share/img/common/arrow_top.png) no-repeat right center;
        background-size: auto 5px;
    }
/*    header #spMenu li.parent ul {
        display: block;
    }*/
    header #spMenu li.parent ul li {
        border: none;
        border-top: 1px dotted #ccc;
    }
    header #spMenu li.parent ul li:first-child {
        margin-top: 10px;
    }
    header #spMenu li.parent ul li:last-child {
        padding-bottom: 0;
    }
    header.fixed + main {
        padding-top: 60px;
    }
    /*==================================================
      タブレット版 FOOTER
    ==================================================*/
    footer .snsBox {
        margin: 5% auto;
    }
    footer #footBox {
        margin-top: 5%;
    }
    footer .bottom_mgn {
        padding-bottom: 70px !important;
    }
    footer #footBox .topBox {
        padding: 20px;
    }
    footer #footBox .logo {
        padding: 0;
        background: none;
    }
    footer #footBox .logo img {
        height: 50px;
    }
    footer #footBox nav {
        padding: 0 20px;
    }
    footer #footBox nav ul:not(:last-child) {
        margin-right: 20px;
    }
    footer #footBox nav li {
        font-size: 0.8em;
        padding-left: 10px;
        background: url(/share/img/common/arrow_white.png) no-repeat left 9px;
        background-size: 3px auto;
    }
    footer #footBox .bottomBox {
        padding: 20px;
    }
    footer #footBox .bottomBox li {
        width: 24%;
    }
    footer #footBox:after {
        display: none;
    }
    footer #footBox small {
        padding-bottom: 20px;
    }
    footer .bottom_mgn + #footFix .ancPagetop {
        margin: -140px 10px 0 0;
    }
    /*************** bottomFix ****************/
    footer #bottomFix {
        position: fixed;
        background: rgba(221, 196, 57, 0.9);
        color: #111;
        bottom: 0;
        width: 100%;
        z-index: 200;
        padding: 10px;
        height: 70px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    footer #bottomFix .inner {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    footer #bottomFix p {
        font-size: 1.2em;
    }
    footer #bottomFix .telBox {
        text-align: center;
        margin: 0 20px;
    }
    footer #bottomFix .telBox dt {
        font-size: 2.2em;
        line-height: 1.2;
        text-align: right;
        background: url(/share/img/common/icon_phone.svg) no-repeat left 5px / 17px;
        padding-left: 18px;
    }
    footer #bottomFix .telBox dd {
        line-height: 1.0;
    }
    footer #bottomFix .btn {
        background: #a82423;
        height: 50px;
        color: #fff;
        padding: 0 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: bold;
    }
} /* タブレット版ここまで --------------------------------------- */
/*///////////////////////////////////////////////////////////

スマホ版（0px～599px）

///////////////////////////////////////////////////////////*/
@media only screen and (max-width: 599px) {
    /*==================================================
      スマホ版 MAIN
    ==================================================*/
    h2.mainTitle {
        font-size: 1.5em;
        height: 100px;
        margin-top: 0;
    }
    #mainttlBox {
        margin-top: 0;
    }
    h3.formTitle {
        font-size: 1.2em;
    }
    #mapBox iframe {
        height: 100vw;
    }
    /*************** パンくず ****************/
    #bread {
        display: none;
    }
    /*************** 一覧ページャー ****************/
    .archive_pager .wp-pagenavi {
        margin: 8% 0 6%;
    }
    /*************** フォーム ****************/
    .required {
        padding-left: 50px !important;
        background: url(/share/img/common/form_required.png) no-repeat 10px center;
        background-size: 30px auto;
    }
    .arbitrary {
        padding-left: 50px !important;
        background: url(/share/img/common/form_arbitrary.png) no-repeat 10px center;
        background-size: 30px auto;
    }
    #form .entrytbl td span:not(.wpcf7-not-valid-tip) {
        margin: 0;
        display: inline;
    }
    #form .entrytbl .brdr_td {
        padding: 4%;
    }
    #form .entrytbl .brdr_td .small {
        display: block !important;
        margin-top: 5px;
    }
    #form .entrytbl .brdr_td p:not(:first-child) {
        margin-top: 10px;
    }
    .submit_warning {
        margin: 5% auto 0;
        font-size: 1em;
    }
    textarea {
        width: 98%;
    }
    /*==================================================
      スマホ版 entrytbl
    ==================================================*/
    .entrytbl {
        width: 98%;
        margin: 10px auto;
        border-collapse: separate;
        border: 1px solid #eee;
        clear: both;
        background-color: #FFF;
    }
    .entrytbl a {
        text-decoration: underline;
    }
    .entrytbl tr {
        display: block;
    }
    .entrytbl th {
        background-color: #eee;
        font-weight: bold;
        border-radius: 0px;
        display: list-item;
        border: none;
        list-style-type: none;
        margin: 0px;
        padding: 10px;
        width: auto;
    }
    .entrytbl td {
        display: list-item;
        border: none;
        list-style-type: none;
        margin: 0px;
        padding: 10px;
        word-wrap: break-word !important;
        word-break: break-all;
    }
    .entrytbl td span {
        display: block;
    }
    .entrytbl02 {
        width: 100%;
    }
    .entrytbl02 td {
        padding: 0;
    }
    .entrytbl td table {
        width: 100%;
    }
    .entrytbl td table td {
        padding: 10px;
    }
    /*==================================================
      スマホ版 HEADER
    ==================================================*/
    header nav ul.sns li span {
        display: none;
    }
    header nav ul.sns li img {
        margin: 0;
    }
    /*==================================================
      スマホ版 FOOTER
    ==================================================*/
    footer .snsBox li span {
        display: none;
    }
    footer .snsBox li img {
        margin: 0;
    }
    footer #footBox {
        padding: 5% 0 0;
    }
    footer #footBox .topBox {
        padding: 5%;
        display: block;
    }
    footer #footBox .logo {
        text-align: center;
    }
    footer #footBox nav {
        display: none;
    }
    footer #footBox .telBox {
        display: none;
    }
    footer #footBox .bottomBox {
        padding: 0 5% 5%;
    }
    footer #footBox .bottomBox li {
        width: 49%;
    }
    footer #footBox .bottomBox li:nth-child(-n+2) {
        margin-bottom: 2%;
    }
    footer #popup_box {
        width: 100px;
    }
    footer #popup-in img {
        width: 100px;
        height: 100px;
    }
    footer #popup_box .close {
        width: 20px;
        height: 20px;
    }
    footer #footBox small {
        padding-bottom: 20px;
    }
    /*    footer .bottom_mgn small {
        padding-bottom: 80px !important;
    }*/
    footer .ancPagetop {
        width: 50px !important;
        height: 50px !important;
        margin: -60px 10px 0 0 !important;
    }
    footer .bottom_mgn + #footFix .ancPagetop {
        margin: -120px 10px 0 0 !important;
    }
    footer #bottomFix {
        display: block;
        height: 60px;
    }
    footer #bottomFix .inner {
        justify-content: space-between;
    }
    footer #bottomFix p {
        display: none;
    }
    footer #bottomFix .telBox {
        width: 50%;
        margin: 0;
    }
    footer #bottomFix .telBox dt {
        font-size: 1.6em;
    }
    footer #bottomFix .telBox dd {
        font-size: 0.8em;
    }
    footer #bottomFix .btn {
        width: 48%;
        padding: 0;
        height: 40px;
    }
} /* スマホ版ここまで ----------------------------------------- */