/*
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,main,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;
}

/* 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;
}

a {
    text-decoration: none;
    color: #000;
    transition: all 0.1s;
}
a:hover {
    opacity: 0.6;
}


html, body {
    font-size: 16px;
/*    max-width: 1600px; */
    min-width: 1110px;
    margin: 0 auto;
    font-family: 'Helvetica', 'Arial', "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
.content-wrapper {
    width: 1050px;
    margin: 0 auto;
}

.mincho {
    font-family: dnp-shuei-mincho-pr6n, sans-serif;
    font-weight: 400;
    font-style: normal;
}
.mincho--bold {
    font-family: dnp-shuei-mincho-pr6n, sans-serif;
    font-weight: 600;
    font-style: normal;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: rgba(255,255,255,0.8);
    width: 100%;
    margin: 0 auto;
    z-index: 99;
    font-family: dnp-shuei-mincho-pr6n, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.header__wrap{
    position: relative;
    margin: 0 auto;
    max-width: 1600px;
}

.header__logo--img {
    padding: 16px 48px 19px;
    position: relative;
}
.header__reservation-btn {
    display: none;
}

.header__nav {
    position: absolute;
    right: 28px;
    top: 0;
    height: 60px;
    font-size: 14px;
}
.header__nav__main {
    display: flex;
    margin: 22px 0;
}
.header__nav__main--label {
    padding: 0 20px;
}
.header__nav__main--arrow {
    position: absolute;
    bottom: 10px;
    left: 274px;
    transition: all 0.2s ease-in-out;
}
.header__nav__main--arrow.rev {
    transform:rotate(180deg);
}
.header__nav__sub__wrapper {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100vw;
    height: 42px;
    overflow: hidden;
    background-color: rgba(255,255,255,0.8);
    display: none;
}
@keyframes show{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}
.header__nav__sub__wrapper.show {
    display: block;
    animation: show 0.3s linear 0s;
}


.header__nav__sub {
    display: flex;
    font-size: 13px;
    padding: 10px 22px 20px 22px;
    flex-direction: row;
    justify-content: flex-end;
}
.header__nav__sub--label {
    padding: 2px 10px;
}
.header__nav--label {
    display: block;
}
.header__nav__main--hr {
    display: none;
}
.header__nav--label.stay {
    opacity: 0.6;
    pointer-events: none;
}
.header__nav__sub--label+ .header__nav__sub--label {
    border-left: 1px solid #DBDBDB;
}
.header__nav__reservation-btn {
    display: none;
}


.follow-on-instagram {
    margin: 180px auto 42px;
    text-align: center;
}
.follow-on-twitter {
    margin: 0 auto 84px;
    text-align: center;
}
.footer--wrapper {
    background-color: #fff000;
    margin: 0 auto;
}
.footer {
    padding: 80px 0;
    display: flex;
    justify-content: center;
}
.footer__left {
    width: 417px;
    text-align: left;
}
.footer__right {
    width: 417px;
    padding-left: 16px;
}
.footer__title {
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
}
.footer__address {
    margin-top: 7px;
    font-size: 14px;
    line-height: 14px;
}
.footer__maplink {
    margin-top: 7px;
    font-size: 14px;
    line-height: 14px;
    display: inline-block;
    cursor: pointer;
    text-decoration: underline;
}
.footer__tel {
    margin-top: 32px;
    font-size: 20px;
    line-height: 20px;
}
.footer__ontime {
    margin-top: 7px;
    font-size: 13px;
    line-height: 13px;
}

.footer__contact {
    border: 1px solid #000;
    width: 230px;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
    display: block;
    cursor: pointer;
    text-align: center;
    margin-top: 13px;
}
.footer__contact__otherwindow-icon {
    display: inline-block;
    margin: 15px 0 0 4px;
}
.footer__copyright {
    font-size: 10px;
    line-height: 10px;
    margin-top: 30px;
}

/* 0605サイトポリシー追加 */
.footer__site_policy {
    font-size: 13px;
    margin-top: 30px;
}
/* ------------- */

.modal {
    display: none;
}
.modal.-active {
    display: block;
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.8);
}
.modal__inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 920px;
    height: 514px;
}
.modal__close-icon {
    position: absolute;
    top: -66px;
    right: 0;
    pointer-events: none;
    cursor: pointer;
}


@media screen and (max-width: 767px) {
    html, body {
        width: 100%;
        min-width: 320px;
    }
    .header {
        min-width: 320px;
        width: 100%;
        left:0;
        right:0;
        margin-left:auto;
        margin-right:auto;
        font-family: dnp-shuei-mincho-pr6n, sans-serif;
        font-weight: 400;
        font-style: normal;
    }
    .header--sp-wrapper {
        width: 100%;
        max-width: 414px;
        min-width: 320px;
        margin: 0 auto;
        position: relative;
    }
    .header__h1 {
        height: 60px;
        z-index: 1;
        position: relative;
        background-color: rgba(0,0,0,0);
    }
    .header__h1.active {
        background-color: #fff;
    }
    .header__reservation-btn {
        display: block;
        position: absolute;
        top: 21px;
        right: 58px;
        z-index: 1;
    }

    .header__hamburger,
    .header__hamburger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
    }
    .header__hamburger {
    width: 20px;
    height: 15px;
    position: absolute;
    top: 22px;
    right: 20px;
    z-index: 1;
    }
    .header__hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
    }
    .header__hamburger span:nth-of-type(1) {
    top: 4px;
    }
    .header__hamburger span:nth-of-type(2) {
    bottom: 4px;
    }

    .header__hamburger.active span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(3px) rotate(-45deg);
    }
    .header__hamburger.active span:nth-of-type(2) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-3px) rotate(45deg);
    }


    .header__logo--img {
        padding: 18px 0 0 15px;
        width: 150px;
        position: relative;
    }
    .header__nav {
        width: 100%;
        top: 0;
        left: 0;
        padding: 60px 0 0 0;
        height: 100vh;
        background-color: #fff;
        overflow: scroll;
        transition: all 0.2s ease-in-out;
    }
    .header__nav--sp-wrapper {
        width: 100%;
        max-width: 414px;
        min-width: 320px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
    }
    .header__nav.invisible {
        left: -100vw;
    }
    .header__nav--label {
        font-size: 16px;
    }
    .header__nav__main--hr {
        display: block;
        width: 16px;
        height: 1px;
        background-color: rgba(217,217,217,0.86);
    }

    .header__nav__main--arrow{
        display:none;
    
    }
    .header__nav__sub__wrapper{
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        display: block;
        height: auto;
        margin-bottom: -24px;
    }
    .header__nav__sub,
    .header__nav__sub.invisible{
        opacity: 1.0;
        top: 0;
        position: relative;
        margin: 0;
        padding: 0;
        display: block;
        z-index: 0;
    }
    .header__nav__sub--label{
        margin: 28px;
        padding: 0;
        font-size: 16px;
    }
    .header__nav__sub--label+ .header__nav__sub--label {
        border: none;
    }
    .header__nav__main {
        display: block;
        margin: 14px auto;
    }
    .header__nav__main--label {
        padding: 24px 0;
    }
    .header__nav__reservation-btn {
        margin: 36px 0 60px 0;
        display: block;
        width: 100%;
    }
    .header__nav__reservation-btn--img {
        width: 100%;
    }
    .sp-nav-margin-bottom {
        display: block;
        width: 100vw;
        height: 80px;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        background-color: #fff;
    }

    .content-wrapper {
        width: 100%;
        max-width: 414px;
        min-width: 280px;
        padding: 0 20px;
    }
    .follow-on-instagram {
        margin: 100px auto 42px;
        text-align: center;
    }
    .follow-on-twitter {
        margin: 0 auto 84px;
        text-align: center;
    }
    .recruit--img,
    .follow-on-instagram--img,
    .follow-on-twitter--img {
        width: 100%;
    }
    .footer {
        padding: 60px 0;
        width: 100%;
        display: block;
    }
    .footer__left {
        width: 100%;
        text-align: center;
    }
    .footer__right {
        width: 100%;
        text-align: center;
        padding: 0;
    }
    .footer__title {
        margin-top: 50px;
    }

    .footer__maplink {
        margin-top: 7px;
        font-size: 18px;
        line-height: 18px;
        display: inline-block;
        cursor: pointer;
        text-decoration: underline;
    }
    .footer__tel {
        margin-top: 32px;
        font-size: 30px;
        line-height: 30px;
    }
    .footer__ontime {
        margin-top: 7px;
        font-size: 15px;
        line-height: 15px;
    }
    .footer__contact {
        width: 205px;
        height: 50px;
        margin: 39px auto;
        line-height: 50px;
    }
    .footer__copyright {
        font-size: 11px;
        line-height: 11px;
        margin-top: 40px;
    }
    .footer__contact__otherwindow-icon {
        margin: 20px 0 0 4px;
    }

/* 0605サイトポリシー追加 */
    .footer__site_policy {
        font-size: 13px;
    }
/* ------------- */

    .modal__inner {
        width: 100%;
        height: auto;
    }
    .modal__close-icon {
        top: -55px;
        right: 15px;
        width: 40px;
    }
}

@media screen and (min-width: 768px) {
    .header__wrap{
        min-width: 1110px;
    }
}
