@charset "UTF-8";

/*
theme name:akasaka
author:travel sketch
description:this is my original theme.
version:1.0
*/
a:hover {
    text-decoration: none;
    cursor: pointer;
}

body {
    padding: 0;
    margin: 0;
    width: 100%;
    margin: 0;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    color: #111111;
}

html {
    font-size: 62.5%;
}

img {
    width: 100%;
}

h2 {
    font-size: 3.2rem;
}

h3 {
    font-size: 25px;
    font-weight: 600;
}

h4 {
    font-size: 2rem;
}

a,
p,
td,
time {
    font-size: 1.7rem;
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;

}

/*h4にaタグつけても色変わらないように*/
h4 a {
    color: inherit; /* 親要素の色を継承 */
    text-decoration: none; /* 下線を消す */
    font-size: inherit; /* 親要素のフォントサイズを継承 */
    font-family: inherit; /* 親要素のフォントファミリーを継承 */
  }

p {
    text-align: justify;
    text-justify: inter-ideograph;
}

@media screen and (max-width:770px) {
    h1 {
        font-size: 7vw;
    }

    h2 {
        font-size: 6vw;
    }

    h3 {
        font-size: 5.5vw;
    }

    h4 {
        font-size: 5vw;
    }

}

@media screen and (max-width:500px) {

    a,
    p,
    td,
    time {
        font-size: 4.2vw;
        line-height: 1.7;
    }
}

/*ヘッダー画像*/
header {
    margin: 0;
    padding: 0;
}

header img {
    left: 20px;
    top: 5px;
    position: absolute;
    width: 270px;
    height: 50px;
    vertical-align: bottom;
    z-index: 3;
}



a[title="nolink"] {
    pointer-events: none;
    cursor: pointer;
}

/*ナビゲーションメニュー*/
/************************************
** グローバルメニュー
************************************/
.navi-in {
    /*幅を整える場合はwidthを設定する*/
    width: 100%;
    top: 0px;
    background-color: #2d2d2d;
    margin: auto;
    z-index: 99;
    position: fixed;
}

.navi-in > ul {
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    text-align: center;
    margin-bottom: 0;
}

.navi-in > ul li {
    width: 156px;
    height: 60px;
    line-height: 60px;
    font-size: 1.5rem;
}


.navi-in > ul li:hover ul li,
.navi-in > ul li a:hover ul li {
    height: 100%;
    display: block;

}


.navi-in a {
    color: #cccccc;
    text-decoration: none;
    display: block;
    transition: 1s;
}

.navi-in > ul li:hover ul li,
.navi-in > ul li a:hover ul li {
    height: 100%;
    display: block;
}

/*ヘッダー予約*/
@media screen and (min-width:1100px) {
    .header-yoyaku {
        background-color: #833f15;
        border: 10px solid #2d2d2d;
        line-height: 40px !important;
        color: #dfd8be;
    }
}

/*サブメニュー*/
.navi-in ul li ul li {
    display: none;
    margin-left: -118px;
    min-width: 301px;
    list-style: none;
    background-color: #2d2d2d;
    /*IE8以下用*/
    z-index: 9999;
    font-size: 1.3rem;
}



/*サブメニューのサブメニュー*/
.navi-in > ul .sub-menu ul {
    top: -50px;
    left: 250px;
    position: relative;
}

.navi-in a {
    color: #cccccc;
    text-decoration: none;
    display: block;
    transition: .5s;

}

.navi-in a:hover {
    transition: .5s;
    border-bottom: solid 3px #ff3c16:
}


.navi-in a:hover > ul {
    display: block;
    transition: 1s;
}

@media screen and (max-width:1100px) {
    .navi-in {
        display: none;
    }

    header img {
        left: auto;
        right: 15px;
        width: 250px;
        height: 50px;
        top: 10px;
    }

}

@media screen and (max-width:500px) {
    header img {
        left: auto;
        right: 15px;
        width: 170px;
        height: 35px;
        top: 10px;
    }
}

input[type="submit"] {
    -webkit-appearance: none;
}

#nav-drawer {
    position: fixed;
    top: 0;
    z-index: 99;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
    display: none;
}

/*アイコンのスペース*/
#nav-open {
    display: block;
    width: 40px;
    height: 30px;
    vertical-align: middle;
    margin-left: 20px;
    cursor: pointer;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span,
#nav-open span:before,
#nav-open span:after {
    position: absolute;
    height: 4px;
    /*線の太さ*/
    width: 35px;
    /*長さ*/
    border-radius: 3px;
    background: #5a544b;
    display: block;
    content: '';
    cursor: pointer;

}

#nav-open span:before {
    bottom: -10px;
}

#nav-open span:after {
    bottom: -20px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
    display: none;
    /*はじめは隠しておく*/
    position: fixed;
    z-index: 99;
    top: 0;
    /*全体に広がるように*/
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: .3s ease-in-out;
}

/*中身*/
#nav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 20px;
    z-index: 9999;
    /*最前面に*/
    width: 70%;
    /*右側に隙間を作る（閉じるカバーを表示）*/
    max-width: 330px;
    /*最大幅（調整してください）*/
    height: 100%;
    background: white;
    /*背景色*/
    transition: .3s ease-in-out;
    /*滑らかに表示*/
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);
    /*左に隠しておく*/
}

.menu-item a {
    color: #cccccc;
}

#nav-drawer ul li {
    padding: 10px 0px;
}

#nav-content ul {
    padding-left: 25px;
}

#nav-drawer ul li a {
    font-size: 1.5rem;
    color: #5a544b;
}

.menu-item {
    list-style: none;
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
    display: block;
    /*カバーを表示*/
    opacity: .5;
}

#nav-input:checked ~ #nav-content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    /*中身を表示（右へスライド）*/
    box-shadow: 6px 0 25px rgba(0, 0, 0, .15);
}

@media screen and (min-width:1100px) {
    #nav-open {
        display: none;
    }


}

.blog2 {
    margin: 0px !important;
}

/*問い合わせ*/
.inquiry {
    background-color: white;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.25);
    padding: 50px !important;
    transition: 1s;
    color: #111111;
}

.inquiry h3 {
    padding: 1rem 2rem;
    border-left: 4px solid #92D050;
    font-weight: 600 !important;
    text-align: center;
}

.inquiry:hover {
    transition: 1s;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width:600px) {
    .inquiry {
        padding: 30px !important;
    }
}

/*フッター*/
/************************************
** フッターメニュー
************************************/
.row-2 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer-menu-1 {
    width: 300px;
    margin: auto;
    text-align: left;
}

#footer-menu {
    background-color: #2D2D2D;
    height: 100%;
    position: relative;
}

#footer-menu img {
    text-align: center;
}

.footer-photo {
    /*background-image: url(./img/yakitori02.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;*/
    background-color: #fff;
    background-image: none;
    /*height: 500px;*/
    height: 200px;
    width: 100%;
    position: relative;

}

.footer-photo::before {
    content: '';
    /*background-color: rgba(0, 0, 0, .5);*/
    background-color: #fff;
    top: 20px;
    right: 0;
    bottom: 20px;
    left: 0;
    position: absolute;
}

.footer-photo h3 {
    color: white;
    padding: 30px;
    display: block;
    /*background-color: rgb(255, 255, 255, 0.7);*/
    background-color: #000;
    width: 400px;
    margin: auto;
    position: relative;
    /*top: 40%;*/
    top: 25%;
    text-align: center;
    /*box-shadow: 0px 0px 0px 5px rgb(255, 255, 255, 0.7);*/
    box-shadow: 0px 0px 0px 5px rgb(0, 0, 0, 1);
    border: solid 1px white;
}

@media screen and (max-width:400px) {
    .footer-photo h3 {
        width: 250px;
    }
}

.footer-photo h3 a {
    font-size: 25px;
    /*color: #191970;*/
    color: #fff;
    font-weight: 600;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    /*border-bottom: 1px solid #191970;*/
}

.footer-photo h3 a:link {
    text-decoration: none;
}

@media screen and (max-width:500px) {
    .footer-photo h3 a {
        font-size: 5vw;
    }
}


.footer-info {
    color: white;
    background: black;
    padding: 50px 0;
}

.footer-info h2 {
    display: inline-block;
    border-bottom: solid 1px white;
}

.footer-info p {
    font-size: 1.5rem;
}

.footer-info h4 {
    padding-top: 20px;

}

.phone {
    border: 1px solid #666666;
    background-color: #2d2d2d;
    padding: .5em;
    display: inline-block;
}

.phone a {
    color: white;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.phone span {
    font-size: 2.5rem;
}

#footer-menu ul li a {
    color: white
}

#footer-menu ul li {
    display: inline-grid;
    width: 230px;
    vertical-align: top;
    font-size: 1.2rem;
    margin: 0;
    padding: 0;
}

#footer-menu > li {
    list-style-type: none;
}

#footer-menu ul li a {
    color: white;
    border-right: solid 1px white;
    padding-left: 10px;
}

#footer-menu .sub-menu {
    list-style: none;
    padding-left: 0px;
    text-align: left;
}

.footer {
    text-align: left;
    font-size: 1.2rem;
    padding: 40px 0;
}

.footer a {
    padding: 4px 0;
}

#footer-menu small {
    color: white;
    text-align: center;
    display: block;
    background-color: black;
    font-size: 1.3rem;
    padding: 10px;
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

/*SNSボタン*/
.insta_btn3 {
    /*ボタンの下地*/
    color: #FFF;
    /*文字・アイコン色*/
    border-radius: 7px;
    /*角丸に*/
    position: relative;
    display: block;
    height: 40px;
    /*高さ*/
    width: 40px;
    /*幅*/
    text-align: center;
    /*中身を中央寄せ*/
    padding-top: 7px;
    /*上側との余白*/
    box-sizing: border-box;
    font-size: 5px;
    /*文字のサイズ*/
    background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
    background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
    /*グラデーション①*/
    overflow: hidden;
    /*はみ出た部分を隠す*/
    text-decoration: none;
    /*下線は消す*/
}

.insta_btn3:before {
    /*グラデーション②*/
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /*全体を覆う*/
    height: 100%;
    /*全体を覆う*/
    background: -webkit-linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
    background: linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}

.insta_btn3 div {
    position: relative;
}

.insta_btn3 .fa-instagram {
    font-size: 25px;
    /*アイコンサイズ*/
    position: relative;
    display: inline-block;
    position: relative;
    transition: .5s
}

.insta_btn3 .fa-instagram:hover {
    /*ホバーで一周回転*/
    -webkit-transform: rotateX(360deg);
    -ms-transform: rotateX(360deg);
    transform: rotateX(360deg);
    color: white;
}

#social-icon a {
    display: block;
    float: left;
    margin: 0 5px 5px 0;
    padding: 0;
    color: white;
    transition: 1s;
    background: #00a1e9;
    border-radius: 7px;
}

#social-icon i {
    font-size: 25px;
    width: 40px;
    height: 40px;
    margin: 0;
    line-height: 40px;
    text-align: center;
}

#social-icon i:before {
    padding 0;
    line-height: 40px;
    transition: .5s;
}

#social-icon a:hover .fa-twitter {
    border-radius: 7px;
    background: #00a1e9;
    transition: .5s;
    color: white;
    /*ホバーで一周回転*/
    -webkit-transform: rotateX(360deg);
    -ms-transform: rotateX(360deg);
    transform: rotateX(360deg);
}


@media screen and (max-width:540px) {
    #footer-menu ul li {
        display: none;
    }
}







/*記事の付加情報*/

.postinfo {
    margin-top: 15px;
    font-size: 14px;
}

.postinfo a {
    color: #5a544b;
    text-decoration: none;
}


.postinfo {
    margin-left: 20px;
}

.postinfo i {
    color: #D1FDAD;
}


/*記事の概要*/

.excerpt p {
    font-size: 14px;
}

.excerpt .more a {
    padding: 5px 20px;
    border: solid 1px #cccccc;
    border-radius: 5px;
    color: #000000;
    text-decoration: none;
    transition: 1s;
}

.excerpt .more a:hover {
    color: #5a544b;
    transition: 1s;
    background-color: #A9D18E;
}

.excerpt .more i {
    margin-left: 10px;
    color: #5a544b;
}

.excerpt-1 {
    padding: 20px;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
}

/*ブログ一覧*/
.blog1 img {
    width: 100%;
    height: 100%;
}

.blog1-img {
    background: linear-gradient(to top, #d5dee7 20%, #f2dde3 50%, #efe6c6 100%);
    border-radius: 10px;
}

.blog1 img {
    opacity: 1;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.blog1 img:hover {
    opacity: .8;
}

.blog1 time {
    border-radius: 5px;
    background-color: #E7F9FF;
    padding: 0 5px 5px 5px;
    color: #5a544b;
}

/*お知らせページ*/
.kotei h3 {
    display: inline-block;
    border-bottom: 1px solid #19345b;
}

.newsblog {
    padding: 40px 0;
}

.newsblog h2 {
    display: table;
    border-bottom: 1px solid #ff3c16;
    margin: auto;
    margin-bottom: 30px;
}

.newsblog-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.newsblog-list li {
    padding: 12px 24px 12px 236px;
    position: relative;
    border-bottom: solid 1px #999999;
}

.newsblog-list time {
    font-weight: 600;
    left: 50px;
    position: absolute;
    top: 12px;
    font-size: 1.7rem;
}

.newsblog-list a {
    color: #333;
}

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

@media screen and (max-width:800px) {
    .newsblog-list li {
        padding: 12px 24px 12px 130px;
        position: relative;
    }

    .newsblog-list time {
        font-weight: 600;
        left: 5%;
        top: 11px;
        font-size: 1.5rem;
    }
}

/*ブログ一覧、ブログ内容部分*/
.kotei {
    padding-top: 150px;
}

/*前後の記事へのリンク*/

.pagenav a {
    padding: 5px 10px;
    border: solid 1px #cccccc;
    border-radius: 10px;
    color: #5a544b;
    font-size: 12px;
    text-decoration: none;
}

.pagenav .old a {
    float: left;
}

.pagenav .new a {
    float: right;
}

.pagenav {
    overflow: hidden;
    margin: 40px 0;
    clear: both;
}



/*本文中の画像*/

.kotei img {
    border: none;
    max-width: 100%;
    height: auto;
}

.aligncenter {
    display: block;
    margin: 30px auto;
}

.alignleft {
    float: left;
    margin-bottom: 30px;
    margin-right: 30px;
}

.alignright {
    float: right;
    margin-bottom: 30px;
    margin-left: 30px;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    margin: 0;
    color: #5a544b;
    font-size: 14px;
    text-align: center;
}


/*サイドメニュー*/

.sidebar ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar .widget {
    margin-bottom: 30px;
    padding: 20px;
    background-color: none;
}


.sidebar li a {
    color: #5a544b;
    font-size: 14px;
    text-decoration: none;
    padding: 10px 0px;
    transition: 0.5s;
}

.sidebar li a:hover {
    color: #000000;
    text-decoration: underline;
    transition: 0.5s;
}

.sidebar li {
    font-size: 1.4rem;
    color: #5a544b;
}

.sidebar h3 {
    margin-top: 50px;
    margin-bottom: 10px;
    padding-top: 0px;
    padding-left: 20px;
    border-left: solid 10px #f8f4e6;
    text-align: left;
}

/*見出し*/

.archive-title {
    margin-top: 30px;
    margin-bottom: 40px;
    font-size: 1.7rem;

}

.archive-title i {
    padding: 15px;
    color: #EEFFDB;
}


/*コメント投稿フォーム*/

#respond p {
    color: #5a544b;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.6rem;
}

#repond label {
    color: #5a544b;
    font-size: 1.6rem;
}

#respond input,
#respond textarea {
    width: 100%;
    padding: 5px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

#respond input[type="submit"] {
    width: 200px;
    padding: 10px;
    border: none;
    background-color: #f8f4e6;
    -webkit-appearance: none;
    cursor: pointer;
    margin-bottom: 50px;
}

#respond input[type="submit"]:hover {
    background-color: #f8f4e6;
}

#respond .required {
    color: #ff0000;
}


/*コメント*/

#comments footer {
    background: none;
    margin: 0;
    color: #000000;
    font-size: 12px;
}

#comments footer a {
    color: #000000;
}

#comments footer div {
    display: inline;
}

#comments ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#comments article {
    border: dotted 1px #aaaaaa;
    margin-bottom: 10px;
    padding: 10px 20px 20px 20px;
}

#comments .comment-content {
    margin-left: 30px;
}


/*お問い合わせフォーム*/
.toiawase {
    margin-top: 100px;
    color: #5a544b;
}

@media(max-width:768px) {
    toiwase {
        margin-top: 50px;
    }
}

.toiawase h3 {
    font-size: 2rem;
}

.toiawase p {
    font-size: 1.5rem;
    color: #5a544b;
}

@media(max-width:768px) {
    .toiawase p {
        font-size: 1.4rem;
    }
}

.wpcf7 input,
.wpcf7 textarea {
    color: #5a544b;
    width: 100%;
    padding: 5px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;

}

.wpcf7 input[type="submit"] {
    font-size: 1.6rem;
    color: #5a544b;
    width: 200px;
    padding: 10px;
    border: none;
    background-color: #C5EBFC;
    -webkit-appearance: none;
    cursor: pointer;
    margin-bottom: 50px;
}

.wpcf7 input[type="submit"]:hover {
    background-color: #C5EBFC;
}

.clearfix::after {
    content: '';
    display: block;
    clear: both;
}

/*アイキャッチ画像*/
.eyecatch {
    max-height: 360px;
    overflow: hidden;
}

.eyecatch img {
    margin: 0 auto;
    max-width: 100%;
}

/*レスポンシブの設定*/

@media(min-width:768px) {

    /*２段組*/



    /*ナビゲーション
    nav li {
        margin-right: 40px;
    }*/
}

.excerpt img {
    float: left;
    margin-right: 20px;
    width: 40%;
}

.siteinfo {
    padding: 0;
    margin: 0;
}

@media(min-width:1200px) {
    .siteinfo a {
        color: #cccccc;
        font-size: 3rem;
        position: fixed;
        top: 10px;
        left: 10px;
        z-index: 999999;
        font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    }
}

@media(max-width:1200px) {
    .siteinfo a {
        display: none;
    }
}

@media(max-width:499px) {
    .mei h1 a {
        font-size: 1.4rem;
    }

    /*
    .siteinfo h1 {
        font-size: 20px;
    }

    .siteinfo p {
        font-size: 12px;
    }
*/
    .excerpt img {
        float: none;
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 90%;
    }

    /*記事*/
    article h1 {
        font-size: 20px;
    }


    /*記事の概要*/
    .excerpt p {
        font-size: 12px;
    }



    /*メニュー*/
    .blogmenu .widgettitle {
        font-size: 12px;
    }

    .blogmenu li a {
        font-size: 12px;
    }

    /*見出し*/

}

.yoyaku-kochira {
    z-index: 99;
    position: fixed;
    right: 0;
    top: 30%;
    background: #833f15;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    box-shadow: 0px 0px 0px 5px #833f15;
    border: solid 1px #b69f68;
    padding: 10px;
    width: fit-content;
    padding: 30px 0px;
    border-radius: 5px;
    text-align: center;
}

.yoyaku-kochira a {
    color: #dfd8be;
}

.yoyaku-kochira p {
    margin-bottom: 0px;
}

@media(max-width:499px) {

    .yoyaku-kochira a,
    .yoyaku-kochira p {
        line-height: 0.5;
    }
}

.fa-rss-square {
    display: none;
}

/* こだわり セクション背景 */
.sectionBgWhite {
    padding: 50px 0;
}

.sectionBgWhite.secFirst {
    padding: 20px 0 50px 0;
}

.sectionBgGray {
    padding: 50px 0;
    background-color: #f3f3f3;
}

/* こだわり スライダー */
.owl-next:focus,
.owl-prev:focus{
	outline: none;
}

.carousel-slider .carousel-slider__caption .title {
	margin: 10px auto 0 !important;
}

.carousel-slider .owl-nav .owl-next, .carousel-slider .owl-nav .owl-prev {
	top: 40% !important;
}

/* 汎用 */

/* 配置 */
.txtC{text-align:center;}
.txtL{text-align:left;}
.txtR{text-align:right;}

/* フォントサイズのパターン */
.font200{font-size:200%;}
.font180{font-size:180%;}
.font150{font-size:150%;}
.font140{font-size:140%;}
.font130{font-size:130%;}
.font120{font-size:120%;}
.font110{font-size:110%;}
.font95{font-size:95%;}
.font90{font-size:90%;}
.font80{font-size:80%;}

.bold{font-weight:bold;}

/* 余白 */
.mb0 {margin-bottom:0 !important;}
.mb10{margin-bottom:10px !important;}
.mb15{margin-bottom:15px !important;}
.mb20{margin-bottom:20px !important;}
.mb25{margin-bottom:25px !important;}
.mb30{margin-bottom:30px !important;}
.mb40{margin-bottom:40px !important;}

.mt30 {margin-top:30px !important;}
.mt0 {margin-top:0px !important;}
.mt10 {margin-top:10px !important;}
.mt20 {margin-top:20px !important;}
.mt30 {margin-top:30px !important;}
.mt40 {margin-top:40px !important;}

@media only screen and (max-width: 767px) {
	.mt30mb {margin-top:30px !important;}
}

.font15rem {
	font-size: 1.5rem;
}

.pc-off {
	display: none !important;
}

@media only screen and (max-width: 1199px) {
	.pc-off {
		display: block !important;
	}
	.sm-off {
		display: none !important;
	}
	section .container {
		max-width: 90% !important;
	}
}

/* モバイルナビ */
.hdLogo,
.hdYoyaku {
	display: none;
}

.scroll_up {
	transition: 0.8s ease-in-out;
	/*transform: translateY(30px);*/
	opacity: 0;
}
.scroll_up.on {
	/*transform: translateY(0);*/
	opacity: 1.0;
}

@media only screen and (max-width: 1099px) {
	#nav-drawer{
		text-align: center;
		width: 100%;
		height: 50px;
		background: #000;
	}

	#nav-drawer:after {
		height: 0;
		visibility: hidden;
		content: ".";
		display: block;
		clear: both;
	}

	#nav-open {
		float: left;
		margin-top: 13px;
	}

	.hdLogo {
		display: inline-block;
		margin-top: 10px;
		margin-left: 30px;
	}
	.hdLogo a {
		font-size: 20px;
		color: #fff;
		font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	}

	.hdYoyaku {
		display: inline-block;
		margin-top: 5px;
		margin-right: 10px;
		float: right;
	}

	.hdYoyaku a {
		display: block;
		width: 80px;
		padding: 6px 0;
		background-color: #833f15;
		color: #dfd8be;
		font-weight: bold;
	}
	#nav-content{
    		text-align: left;
	}
}
