@charset "utf-8";
/*--------------------------------------------------------------*/
/* CSS and Graphics are released under Creative Commons Licence */
/* http://www.webplus.jp/                                       */
/* Copyright (C) Kiyonobu Horita @ WEBPLUS Inc.                 */
/*--------------------------------------------------------------*/



/* break point ------------------------------------------------
	iPhone5 320x568
	iPhone6-8 375x667
	iPhone6-8Plus 414x736
	iPhoneX 375x812
	iPad 768x1024
	iPadPro 1024x1366
-------------------------------------------------------------- */

/* Noto Sans JP ------------------------------------------------
	Thin 100
	Light 300
	Regular 400
	Medium 500
	Bold 700
	Black 900
-------------------------------------------------------------- */

/* -----------------------------------------------------------

　grobal setting

-------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    width: 100%;
    height: 100%;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

.clear {
    clear: both;
}

.clearfix {
    display: inline-table;
    min-height: 1%;
}

.clearfix::after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

/* -----------------------------------------------------------

　body

-------------------------------------------------------------- */
body {
    margin: 0 auto;
    padding-top: 14vh;
    width: 100%;
    height: 100%;
    color: rgba(153, 108, 51, 1.0);
    font: normal 400 1.125rem/2.0rem "Montserrat", "Noto Sans CJK JP", "Noto Sans JP", "メイリオ", "Meiryo", "Meiryo UI", "Arial", sans-serif, "Osaka";
    background: url(../images/bg_global.png) center top repeat;
    background-attachment: fixed;
    webkit-tap-highlight-color: rgba(0, 0, 0, 0.0);
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    text-size-adjust: none;
    overflow-x: hidden;
}

@media only screen and (min-width:576px) {

    body {
        padding-top: 100px;
    }

}

@media only screen and (min-width:768px) {

    body {
        padding-top: inherit;
    }

}

/* -----------------------------------------------------------

　default link color

-------------------------------------------------------------- */
a, a:visited {
    color: rgba(0, 175, 235, 1.0);
    text-decoration: none;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    text-decoration: none;
    outline: none;
}

a:hover {
    color: rgba(255, 135, 0, 1.0);
    text-decoration: none;
    outline: none;
}

a:active {
    color: rgba(236, 109, 123, 1.0);
    text-decoration: none;
    outline: none;
}

a:focus {
    text-decoration: none;
    outline: none;
}

/* -----------------------------------------------------------

　h1～h6, p, ul, ol, li, dl, dt, dd

-------------------------------------------------------------- */
body > h1 {
    display: none;
}

p {
    margin: 0;
}

ul, dl {
    margin-top: 1.1rem;
    margin-bottom: 1.1rem;
    list-style: none;
}

.kome {
    color: rgba(255, 0, 0, 1.0);
    font-size: 0.9rem;
    line-height: 1.0rem;
}

@media only screen and (min-width:768px) {

    body > h1 {
        display: block;
        padding-top: 10px;
        font-size: 0.8rem;
        font-weight: 400;
        text-align: center;
    }

}

@media only screen and (min-width:769px) {

    body > h1 {
        font-size: 1.0rem;
    }

}

/* -----------------------------------------------------------

　header

-------------------------------------------------------------- */
header #logo {
    display: none;
}

header #phone {
    display: none;
}

@media only screen and (min-width:768px) {

    header #logo {
        display: block;
    }

    header #phone {
        display: block;
    }

    /*　.tele
	/*-------------------------------------------*/
    header div p:nth-child(2) {
        margin-top: 5px;
        font-size: 0.84rem;
        font-weight: 500;
        line-height: 1.2rem;
    }

    header div p:nth-child(3) {
        font-size: 0.75rem;
        line-height: 1.2rem;
    }

}

@media only screen and (min-width:992px) {

    /*　.tele
	/*-------------------------------------------*/
    header div p:nth-child(2) {
        font-size: 0.9rem;
        line-height: 1.3rem;
    }

    header div p:nth-child(3) {
        font-size: 0.85rem;
        line-height: 1.3rem;
    }

}

@media only screen and (min-width:1200px) {

    /*　.tele
	/*-------------------------------------------*/
    header div p:nth-child(2) {
        font-size: 1.09rem;
        line-height: 1.4rem;
    }

    header div p:nth-child(3) {
        font-size: 1.0rem;
        line-height: 1.4rem;
    }

}

/*　nav
/*-------------------------------------------*/
#mainNav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(106, 57, 6, 1.0);
    z-index: 1030;
}

#mainNav .navbar-brand {
    width: 70%;
    max-width: 216px;
}

#mainNav .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.7);
}

#mainNav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.7)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

#mainNav .navbar-nav {
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
}

#mainNav .navbar-nav a {
    display: block;
    color: rgba(255, 255, 255, 1.0);
}

#mainNav .navbar-nav img {
    margin-right: 10px;
    height: 30px;
    background: rgba(255, 255, 255, 1.0);
    border-radius: 50%;
}

#mainNav .navbar-nav img:last-child {
    display: none;
}

#mainNav .navbar-nav img:hover {
    opacity: 1.0;
}

#mainNav .navbar-nav li.current a {
    background: rgba(255, 255, 255, 1.0);
    border-radius: 10px;
    color: rgba(255, 135, 0, 1.0);
}

@media only screen and (min-width:576px) {

    #mainNav .navbar-brand {
        max-width: 50%;
    }

    #mainNav .navbar-nav {
        margin-top: 0;
        padding: 20px;
    }

}

@media only screen and (min-width:768px) {

    #mainNav {
        position: inherit;
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
        background-color: inherit;
    }

    #mainNav .navbar-brand {
        display: none;
    }

    #mainNav .navbar-nav {
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: inherit;
    }

    #mainNav > .container {
        padding-left: 0;
        padding-right: 0;
    }

    #mainNav .navbar-nav li {
        border-right: 1px solid rgba(250, 235, 205, 1.0);
    }

    #mainNav .navbar-nav li:last-child {
        border-right: none;
    }

    #mainNav .navbar-nav a {
        display: block;
        height: 100px;
        color: rgba(153, 108, 51, 1.0);
        font-size: 1.0rem;
        font-weight: 500;
        text-align: center;
    }

    #mainNav .navbar-nav a:hover {
        background: rgba(255, 255, 255, 0.5);
        color: rgba(106, 57, 6, 1.0);
    }

    #mainNav .navbar-nav img {
        display: block;
        height: auto;
        margin: 0 auto;
        height: 50px;
        background: inherit;
        border-radius: inherit;
        -webkit-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }

    #mainNav .navbar-nav img:hover {
        opacity: 1.0;
    }

    #mainNav .navbar-nav li:hover img {
        -webkit-transform: rotate(-360deg);
        -ms-transform: rotate(-360deg);
        transform: rotate(-360deg);
        -webkit-transition: 1.0s;
        -o-transition: 1.0s;
        transition: 1.0s;
    }

    #mainNav .navbar-nav li.current {
        border-right: none;
    }

    #mainNav .navbar-nav li.current a {
        background: rgba(250, 235, 205, 0.5);
        border-radius: 6px;
    }

    /* スクロール時上部に固定 */
    #mainNav.nav-fixed {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-image: url(../images/bg_global.png);
        background-position: center top;
        background-repeat: repeat;
    }

    #mainNav.nav-fixed a {
        height: 80px;
        font-size: 0.8rem;
    }

    #mainNav.nav-fixed .navbar-nav img {
        height: 40px;
    }

}

@media only screen and (min-width:992px) {

    #mainNav .navbar-nav a {
        font-size: 1.08rem;
    }

    #mainNav .navbar-nav li:nth-child(1) a {
        width: 130px;
    }

    #mainNav .navbar-nav li:nth-child(n + 2) a {
        width: 137px;
    }

    #mainNav .navbar-nav img {
        height: 60px;
    }

    #mainNav.nav-fixed a {
        height: 80px;
        font-size: 0.9rem;
    }

    #mainNav.nav-fixed .navbar-nav li:nth-child(1) a {
        width: 108px;
    }

    #mainNav.nav-fixed .navbar-nav li:nth-child(n + 2) a {
        width: 117px;
    }

    #mainNav.nav-fixed .navbar-nav img {
        height: 40px;
    }

}

@media only screen and (min-width:1200px) {

    #mainNav .navbar-nav li:nth-child(1) a {
        width: 155px;
    }

    #mainNav .navbar-nav li:nth-child(n + 2) a {
        width: 163px;
    }

}

/* -----------------------------------------------------------

　section

-------------------------------------------------------------- */
section {
    padding-top: 20px;
    padding-bottom: 20px;
}

@media only screen and (min-width:768px) {

    section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

}

@media only screen and (min-width:992px) {

    section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

}

/* -----------------------------------------------------------

　Footer

-------------------------------------------------------------- */
#footer {
    height: 57px;
    background: url(../images/bg_footer.png) center top repeat-x;
    background-size: 57px auro;
}

#footer ul {
    margin: 0;
    margin-top: 24px;
    font-size: 0.9rem;
    text-align: center;
}

#footer li:nth-child(2), #footer li:nth-child(3) {
    display: none;
}

@media only screen and (min-width:768px) {

    #footer li:nth-child(2), #footer li:nth-child(3) {
        display: inline-block;
    }

    #footer li:nth-child(2) {
        margin-left: 100px;
    }

    #footer li:nth-child(3) {
        margin-left: 20px;
    }

    #footer li:nth-child(2) a, #footer li:nth-child(3) a {
        color: rgba(153, 108, 51, 1.0);
        text-shadow: 1px 1px 0 rgba(255, 255, 255, 1.0), 1px 1px 0 rgba(255, 255, 255, 1.0), 1px 1px 0 rgba(255, 255, 255, 1.0);
    }

    #footer li:nth-child(2) a:hover, #footer li:nth-child(3) a:hover {
        color: rgba(255, 135, 0, 1.0);
    }

    #footer li:nth-child(2)::before, #footer li:nth-child(3)::before {
        margin-right: 5px;
        font-family: "FontAwesome";
        text-shadow: 1px 1px 0 rgba(106, 57, 6, 0.5), 1px 1px 0 rgba(106, 57, 6, 0.5), 1px 1px 0 rgba(106, 57, 6, 0.5);
    }

    #footer li:nth-child(2)::before {
        color: rgba(254, 209, 54, 1.0);
        content: "\f023";
    }

    #footer li:nth-child(3)::before {
        color: rgba(255, 255, 255, 1.0);
        content: "\f0e8";
    }

}

/* -----------------------------------------------------------

　#fixBtn_sd

-------------------------------------------------------------- */
#fixBtn_sd {
    display: none;
}

@media only screen and (min-width:768px) {

    #fixBtn_sd {
        display: block;
        position: fixed;
        top: 15%;
        left: 1%;
        z-index: 1030;
    }

    #fixBtn_sd li {
        position: relative;
    }

    #fixBtn_sd a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding-top: 5px;
        width: 80px;
        height: 80px;
        background: rgba(236, 109, 123, 0.7);
        border: 2px solid rgba(255, 255, 255, 1.0);
        border-radius: 50%;
        -webkit-box-shadow: 0 0 15px 4px rgba(236, 109, 123, 1.0);
        box-shadow: 0 0 15px 4px rgba(236, 109, 123, 1.0);
        color: rgba(255, 255, 255, 1.0);
        font-size: 0.8rem;
        font-weight: 500;
        text-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        line-height: 1.0rem;
    }

    #fixBtn_sd a:hover {
        background: rgba(236, 109, 123, 1.0);
        -webkit-transform: rotate(-20deg);
        -ms-transform: rotate(-20deg);
        transform: rotate(-20deg);
    }

    #fixBtn_sd img {
        display: none;
    }

    #fixBtn_sd li:hover img {
        display: block;
        position: absolute;
        right: 0;
        bottom: -10px;
        width: 40%;
        height: auto;
    }

}

@media only screen and (min-width:992px) {

    #fixBtn_sd {
        top: 35%;
        left: 2%;
    }

    #fixBtn_sd a {
        width: 80px;
        height: 80px;
        font-size: 0.8rem;
        line-height: 1.0rem;
    }

    #fixBtn_sd img {
        right: -5px;
        bottom: -15px;
        width: 45%;
    }

}

@media only screen and (min-width:1200px) {

    #fixBtn_sd {
        top: 25%;
        left: 3%;
    }

    #fixBtn_sd a {
        width: 100px;
        height: 100px;
        border: 3px solid rgba(255, 255, 255, 1.0);
        font-size: 1.05rem;
        line-height: 1.3rem;
    }

    #fixBtn_sd li:hover img {
        right: -10px;
        bottom: -25px;
        width: 50%;
    }

}

/* -----------------------------------------------------------

　#fixBtn_ft

-------------------------------------------------------------- */
#fixBtn_ft {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    background: rgba(106, 57, 6, 0.7);
    padding: 5px 0;
    /*z-index:1060;*/
}

#fixBtn_ft ul {
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

#fixBtn_ft li {
    display: inline-block;
    margin-right: 8%;
}

#fixBtn_ft li:last-child {
    margin-right: 0;
}

#fixBtn_ft a, #fixBtn_ft span {
    display: block;
    color: rgba(255, 255, 255, 1.0);
}

@media only screen and (min-width:768px) {

    #fixBtn_ft {
        display: none;
    }

}

/* -----------------------------------------------------------

　#pageTop

-------------------------------------------------------------- */
#pageTop a {
    display: none;
}

@media only screen and (min-width:768px) {

    #pageTop {
        clear: both;
        position: fixed;
        bottom: 20%;
        right: 1%;
        width: 60px;
        height: 60px;
        z-index: 1030;
    }

    #pageTop a {
        display: block;
    }

    #pageTop img {
        width: 100%;
        height: auto;
        opacity: 0.7;
    }

    #pageTop img:hover {
        opacity: 1.0;
    }

}

@media only screen and (min-width:992px) {

    #pageTop {
        right: 2%;
        bottom: 12%;
        width: 80px;
        height: 80px;
    }

}

@media only screen and (min-width:1200px) {

    #pageTop {
        right: 3%;
    }

}

/* -----------------------------------------------------------

　modal

-------------------------------------------------------------- */
.modal.fade .modal-dialog {
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.portfolio-modal .modal-dialog {
    margin: 4%;
    max-width: 100vw;
}

.portfolio-modal .modal-content {
    padding: 70px 0;
    text-align: center;
}

.portfolio-modal .modal-content h2 {
    margin: 0;
    font-size: 1.4rem;
}

.portfolio-modal .modal-content h3 {
    margin: 10px 0 30px;
    font-size: 1.2rem;
}

.portfolio-modal .modal-content p {
    font-size: 1.0rem;
    line-height: 1.5rem;
    text-align: left;
}

.portfolio-modal .modal-content button {
    cursor: pointer;
}

.portfolio-modal .close-modal {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: transparent;
    cursor: pointer;
}

.portfolio-modal .close-modal:hover {
    opacity: 0.3;
    -moz-opacity: 0.3;
    -webkit-opacity: 0.3;
    -o-opacity: 0.3;
    -ms-opacity: 0.3;
    -khtml-opacity: 0.3;
    filter: alpha(opacity=30);
}

.portfolio-modal .close-modal .lr {
    /* Safari and Chrome */
    margin-left: 35px;
    width: 1px;
    height: 50px;
    z-index: 1051;
    /* IE 9 */
    background-color: rgba(33, 37, 41, 1.0);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.portfolio-modal .close-modal .lr .rl {
    /* Safari and Chrome */
    width: 1px;
    height: 50px;
    z-index: 1052;
    /* IE 9 */
    background-color: rgba(33, 37, 41, 1.0);
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

/* EPARK */
#modalReservation .epark {
    margin-top: 20px;
    margin-bottom: 40px;
}

/* PrivacyPolicy */
#modalPrivacy p.lead {
    font-size: 1.0rem;
    line-height: 1.5rem;
    text-align: left;
}

#modalPrivacy dt {
    margin: 20px 0 10px;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.05);
    color: rgba(106, 57, 6, 1.0);
}

#modalPrivacy dd {
    font-size: 1.0rem;
    line-height: 1.5rem;
    text-align: left;
}

#modalPrivacy dd ul {
    margin-bottom: 0;
}

#modalPrivacy dd ul li::before {
    margin-right: 5px;
    color: rgba(143, 195, 31, 1.0);
    font-family: "FontAwesome";
    content: "\f069";
}

@media only screen and (min-width:768px) {

    #modalReservation h2 {
        margin-bottom: 20px;
    }

    #modalPrivacy dt {
        margin: 30px 0 20px;
    }

    #modalPrivacy dd ul {
        margin-top: 1.1rem;
        margin-left: 1.2rem;
        margin-bottom: 1.1rem;
    }

}

@media only screen and (min-width:992px) {

    #modalReservation .kome {
        display: none;
    }

}

@media only screen and (min-width:1200px) {

    .portfolio-modal .modal-dialog {
        margin: 1% 20%;
    }

    /* Calender */
    #modalReservation .modal-body {
        padding-left: 5%;
        padding-right: 5%;
    }

}

/* -----------------------------------------------------------

　Other

-------------------------------------------------------------- */
img {
    -ms-interpolation-mode: bicubic;
}

/*　image mouse over
/*-------------------------------------------*/
a img {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

a img:hover {
    opacity: 0.7;
}