@charset "UTF-8";

/* ----------------------------
  Header
  ---------------------------- */

  .header {
    padding: 0 50px;
    display: -webkit-box;
    /* Less than android 4.3 */
    display: -webkit-flex;
    /* Less than iOS8 */
    display: flex;
    -webkit-box-pack: justify;
    /* Less than android 4.3 */
    -webkit-justify-content: space-between;
    /* Less than iOS8 */
    justify-content: space-between;
    height: 50px;
    background: #fff;
    font-family: "Roboto", Helvetica, sans-serif;
    font-size: 13px;
    position: fixed;
    top: -50px;
    left: 0;
    right: 0;
    z-index: 10000;
    -webkit-transition: top 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    transition: top 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.loaded .header {
    top: 0;
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
}

@media screen and (max-width: 800px) {
    .header {
        padding: 0 20px;
        padding-right: 40px;
        height: 55px;
        top: -55px;
        font-size: 11px;
    }
}


/* Header Title
---------------------------- */

.header-title {
    height: 100%;
    max-width: 100%;
}

.header-title a {
    display: -webkit-box;
    /* Less than android 4.3 */
    display: -webkit-flex;
    /* Less than iOS8 */
    display: flex;
    -webkit-box-align: center;
    /* Less than android 4.3 */
    -webkit-align-items: center;
    /* Less than iOS8 */
    align-items: center;
    height: 100%;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.header-title a:hover {
    opacity: 0.6;
}

.header-title svg {
    margin-right: 12px;
    width: 123px;
    height: 12px;
    position: relative;
    top: -1px;
}

.header-title em {
    font-weight: 900;
}

@media screen and (max-width: 800px) {
    .header-title svg {
        margin-right: 10px;
        width: 103px;
        height: 13.5px;
        top: 0;
    }
    .header-title span {
        position: relative;
        top: 1px;
    }
}


/* Header Menu
---------------------------- */

.header-menu {
    display: -webkit-box;
    /* Less than android 4.3 */
    display: -webkit-flex;
    /* Less than iOS8 */
    display: flex;
    -webkit-box-align: center;
    /* Less than android 4.3 */
    -webkit-align-items: center;
    /* Less than iOS8 */
    align-items: center;
    height: 100%;
    /* For Hide Reservation Button */
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.header-hide .header-menu {
    margin-right: -180px;
}


/* ヘッターの横ずれ */


/*body.sendai .header-hide .header-menu {
  margin-right: -180px;
}
body.sendai .header-menu {
  margin-right: -180px;
  }*/


/* Header Menu List
---------------------------- */

.header-menu-list {
    display: -webkit-box;
    /* Less than android 4.3 */
    display: -webkit-flex;
    /* Less than iOS8 */
    display: flex;
    -webkit-box-align: center;
    /* Less than android 4.3 */
    -webkit-align-items: center;
    /* Less than iOS8 */
    align-items: center;
    margin-right: 40px;
    height: 100%;
}

.header-menu-list li {
    margin-left: 20px;
}

.header-menu-list a {
    display: block;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.header-menu-list a:hover {
    opacity: 0.6;
}

@media screen and (max-width: 960px) {
    .header-menu-list {
        display: none;
    }
}


/* Header Menu Info
---------------------------- */

.header-menu-reserve {
    width: 180px;
}

.to_kisarazu {
    display: none;
}

.header-menu-reserve a {
    display: block;
    height: 50px;
    text-align: center;
    line-height: 3.846153846;
    background: #a4e0c5;
    font-weight: 900;
    color: #fff;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}


/*  background: #fabebe; */

.header-menu-reserve a.kisarazu {
    background: #000;
}

.header-menu-reserve a.sendai {
    background: #a4e0c5;
}

.header-menu-reserve a:hover {
    background: #fff;
    color: #a4e0c5;
}


/* color: #fabebe; */

.header-menu-reserve a.kisarazu:hover {
    color: #000;
}

.header-menu-reserve a.sendai:hover {
    color: #a4e0c5;
}

.header-menu-reserve .coming {
    display: none;
}

.header-menu-button {
    width: 50px;
    height: 50px;
    background: #fff;
    position: absolute;
    top: 0;
    right: 0;
}

.header-menu-button a {
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.header-menu-button a:hover {
    opacity: 0.6;
}

@media screen and (max-width: 800px) {
    .header-menu-info {
        height: 65px;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 10000;
        opacity: 0;
        -webkit-transition: opacity 0.6s;
        transition: opacity 0.6s;
        -webkit-transition-delay: 0.4s;
        transition-delay: 0.4s;
    }
    .loaded .header-menu-info {
        opacity: 1;
    }
    .to_kisarazu {
        display: block;
        width: 65px;
        box-sizing: border-box;
    }
    .to_kisarazu a {
        width: 65px;
        display: block;
        height: 65px;
        background: #afe1f8;
        color: #FFF;
        font-size: 10px;
        line-height: 12px;
        text-align: center;
        position: relative;
    }
    .to_kisarazu a span {
        color: #FFF;
        font-size: 10px;
        line-height: 12px;
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        text-align: center;
        display: block;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .to_kisarazu a span em {
        font-weight: bold;
    }
    .header-menu-reserve {
        padding-right: 65px;
        width: 100%;
        box-sizing: border-box;
    }
    .header-menu-reserve.shinjuku,
    .header-menu-reserve.sendai {
        position: absolute;
        top: 0;
        left: 65px;
        padding-right: 65px;
        width: -webkit-calc(100% - 65px);
        width: calc(100% - 65px);
        box-sizing: border-box;
    }
    .header-menu-reserve a {
        height: 100%;
        line-height: 65px;
        letter-spacing: -0.01em;
        font-size: 19px;
    }
    .header-menu-reserve a.kisarazu {
        background: #FFF;
        border-top: 1px #000 solid;
        color: #000;
    }
    .header-menu-button {
        width: 65px;
        height: 100%;
    }
    .header-menu-button a.kisarazu {
        display: block;
        background: url(../img/kisarazu/instagram_b.png) no-repeat center center;
        background-size: cover;
        text-indent: -9999px;
        border-top: 1px #000 solid;
        border-left: 1px #000 solid;
    }
    .header-menu-reserve .coming {
        display: block;
        height: 65px;
        text-align: center;
        line-height: 65px;
        background: #a4e0c5;
        font-weight: 900;
        color: #fff;
        font-size: 4.5vw;
    }
}


/* Header Button
---------------------------- */

.header-button {
    width: 55px;
    height: 55px;
    position: absolute;
    top: 0;
    right: 0;
    display: none;
}


/*.header-button button {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.header-button svg {
  display: block;
  margin: auto;
  width: 25px;
  height: 16px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  }*/

  @media screen and (max-width: 800px) {
    .header-button {
        display: flex;
        /* 子要素をflexboxで揃える */
        flex-direction: column;
        /* 子要素をflexboxにより縦方向に揃える */
        justify-content: center;
        /* 子要素をflexboxにより中央に配置する */
        align-items: center;
        /* 子要素をflexboxにより中央に配置する */
    }
    .header-button button {
        width: 50%;
    }
    .header-button span {
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -12px;
        width: 25px;
        height: 2px;
        background: #000;
        -webkit-transition: all 0.5s 0s ease;
        -moz-transition: all 0.5s 0s ease;
        -ms-transition: all 0.5s 0s ease;
        -o-transition: all 0.5s 0s ease;
        transition: all 0.5s 0s ease;
    }
    .header-button span.l1 {
        margin-top: -6px;
    }
    .header-button span.l3 {
        margin-top: 6px;
    }
    .header-button.active span.l1 {
        margin-top: 0px;
        -webkit-transform: scale(1, 1) translate(0%, 0%) rotate(45deg);
        -moz-transform: scale(1, 1) translate(0%, 0%) rotate(45deg);
        -ms-transform: scale(1, 1) translate(0%, 0%) rotate(45deg);
        -o-transform: scale(1, 1) translate(0%, 0%) rotate(45deg);
        transform: scale(1, 1) translate(0%, 0%) rotate(45deg);
    }
    .header-button.active span.l2 {
        opacity: 0;
    }
    .header-button.active span.l3 {
        margin-top: 0px;
        -webkit-transform: scale(1, 1) translate(0%, 0%) rotate(-45deg);
        -moz-transform: scale(1, 1) translate(0%, 0%) rotate(-45deg);
        -ms-transform: scale(1, 1) translate(0%, 0%) rotate(-45deg);
        -o-transform: scale(1, 1) translate(0%, 0%) rotate(-45deg);
        transform: scale(1, 1) translate(0%, 0%) rotate(-45deg);
    }
}


/* ----------------------------
  Wrapper
  ---------------------------- */

  .wrapper {
    padding: 42px 50px 0;
}

@media screen and (max-width: 800px) {
    .wrapper {
        padding: 0;
    }
}


/* ----------------------------
  Info
  ---------------------------- */

  .info {
    padding: 70px 70px 66px;
    background: #000;
    color: #fff;
}

.info a {
    color: #fff;
}

@media screen and (max-width: 800px) {
    .info {
        padding: 26px 20px 35px;
    }
}


/* Info Main
---------------------------- */

.info-main:after {
    content: "";
    display: block;
    clear: both;
}


/* Info Body
---------------------------- */

.info-body {
    width: 480px;
    float: left;
}

@media screen and (max-width: 800px) {
    .info-body {
        width: 100%;
        float: none;
    }
}


/* Info Body Head
---------------------------- */

.info-body-head {
    margin-bottom: 20px;
    line-height: 1;
    font-family: "Roboto", Helvetica, sans-serif;
    font-size: 30px;
    font-weight: 900;
}

@media screen and (max-width: 800px) {
    .info-body-head {
        font-size: 24px;
    }
}


/* Info Body Text
---------------------------- */

.info-body dl {
    margin-bottom: 12px;
    line-height: 1.692307692;
}

.info-body dt,
.info-body p {
    margin-bottom: -2px;
    line-height: 1.846153846em;
    font-family: "Roboto", Helvetica, sans-serif;
    font-weight: 900;
    font-size: 14px;
}

.info-body dt a {
    font-size: 20px;
    position: relative;
    top: 1px;
}

.info-body dd {
    font-size: 13px;
}

.info-body dd small {
    display: block;
    margin-top: 2px;
    font-size: 12px;
}

.info-body p a {
    font-weight: normal;
    text-decoration: underline;
}

.info-body p a:hover {
    text-decoration: none;
}

@media screen and (max-width: 800px) {
    .info-body dl {
        margin-bottom: 18px;
        line-height: 1.636363636;
    }
    .info-body dt,
    .info-body p {
        margin-bottom: 0;
        line-height: 1.636363636em;
        font-size: 11px;
    }
    .info-body dt a {
        font-size: 14px;
    }
    .info-body dd {
        font-size: 11px;
    }
    .info-body dd small {
        margin-top: 0;
        letter-spacing: -0.02em;
        font-size: 11px;
    }
}


/* Info Map
---------------------------- */

.info-map {
    margin-left: 480px;
}

.info-map-body {
    height: 350px;
    position: relative;
}

.info-map-body img,
.info-map-body frame {
    max-width: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.info-map p {
    margin-top: 4px;
    text-align: right;
    letter-spacing: 0.04em;
    font-size: 13px;
}

.info-map p a {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.info-map p a:hover {
    opacity: 0.6;
}

@media screen and (max-width: 800px) {
    .info-map {
        margin-left: 0;
        margin-top: 32px;
        overflow: hidden;
    }
    .info-map-body {
        height: 250px;
    }
    .info-map p {
        margin-top: 6px;
        letter-spacing: 0.02em;
        font-size: 10px;
    }
    .info-map p a {
        text-decoration: underline;
    }
    .info-map p a:hover {
        opacity: 1;
        text-decoration: none;
    }
}


/* Info List
---------------------------- */

.info-list {
    display: -webkit-box;
    /* Less than android 4.3 */
    display: -webkit-flex;
    /* Less than iOS8 */
    display: flex;
    -webkit-box-pack: justify;
    /* Less than android 4.3 */
    -webkit-justify-content: space-between;
    /* Less than iOS8 */
    justify-content: space-between;
    margin-top: 40px;
}

.info-list li {
    width: 31.25%;
}

.info-list.c4 li {
    width: 23.4375%;
}

.info-list a {
    display: -webkit-box;
    /* Less than android 4.3 */
    display: -webkit-flex;
    /* Less than iOS8 */
    display: flex;
    -webkit-box-orient: vertical;
    /* Less than android 4.3 */
    -webkit-flex-direction: column;
    /* Less than iOS8 */
    flex-direction: column;
    -webkit-box-pack: center;
    /* Less than android 4.3 */
    -webkit-justify-content: center;
    /* Less than iOS8 */
    justify-content: center;
    height: 120px;
    border-bottom: 3px solid #fff;
    box-sizing: border-box;
    text-align: center;
    line-height: 1;
    font-size: 13px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.info-list a:hover {
    background: #fff;
    color: #000;
}

.info-list em {
    margin-bottom: 8px;
    font-size: 24px;
    font-family: "Roboto", Helvetica, sans-serif;
    font-weight: 900;
}

@media screen and (max-width: 800px) {
    .info-list {
        display: block;
        margin-top: 25px;
    }
    .info-list li {
        margin-top: 15px;
        width: 100%;
    }
    .info-list.c4 li {
        margin-top: 15px;
        width: 100%;
    }
    .info-list a {
        height: 80px;
        background: #fff;
        border-bottom: none;
        font-size: 10px;
        color: #000;
    }
    .info-list em {
        margin-bottom: 7px;
        font-size: 17px;
    }
}


/* Info Contact
---------------------------- */

.info-contact {
    margin-top: 68px;
    text-align: center;
    line-height: 1.692307692;
    font-size: 13px;
}

.info-contact dt {
    margin-bottom: 26px;
    line-height: 1;
}

.info-contact dt em {
    display: block;
    margin-bottom: 6px;
    font-size: 24px;
    font-weight: 900;
    font-family: "Roboto", Helvetica, sans-serif;
}

.info-contact dd a {
    display: inline-block;
    vertical-align: top;
    line-height: 1;
    letter-spacing: -0.02em;
    font-size: 55px;
    font-weight: 900;
    font-family: "Roboto", Helvetica, sans-serif;
    cursor: default;
}

.info-contact dd a:before {
    content: "";
    display: inline-block;
    margin-right: 6px;
    background: url(../img/common/icon-tel.png) no-repeat center;
    background-size: contain;
    width: 29px;
    height: 39px;
}

.info-contact ul {
    margin-top: 4px;
}

@media screen and (max-width: 800px) {
    .info-contact {
        margin-top: 30px;
        line-height: 1.6;
        font-size: 10px;
    }
    .info-contact dt {
        margin-bottom: 18px;
        line-height: 1;
    }
    .info-contact dt em {
        margin-bottom: 4px;
        font-size: 21px;
    }
    .info-contact dd a {
        display: block;
        font-size: 33px;
        cursor: pointer;
    }
    .info-contact dd a:before {
        margin-right: 5px;
        width: 16px;
        height: 24px;
    }
    .info-contact ul {
        margin-top: 12px;
    }
}


/* ----------------------------
  Footer
  ---------------------------- */

  @media screen and (max-width: 800px) {
    .footer {
        padding-bottom: 65px;
    }
}


/* Footer Locations
---------------------------- */

.footer-locations {
    background: #000;
}

.footer-locations-inner:after {
    content: "";
    display: block;
    clear: both;
}

.footer-locations li {
    width: 25%;
    float: left;
    position: relative;
}

.footer-locations a {
    display: block;
    overflow: hidden;
    position: relative;
}

.footer-locations a:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    z-index: 2;
}

.footer-locations a:hover:before {
    opacity: 0;
}

.footer-locations p {
    text-align: center;
    line-height: 1.3;
    font-family: "Roboto", Helvetica, sans-serif;
    font-size: 13px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 2;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}


/* 新宿 */

li.f-shinjuku::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    z-index: 2;
}

.f-shinjuku p {
    top: 53%;
}

.footer-locations a:hover p {
    opacity: 0;
}

.footer-locations p em {
    display: block;
    margin-bottom: 6px;
    font-weight: 900;
    font-size: 24px;
}

.footer-locations img {
    display: block;
    max-width: none;
    width: 100%;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.footer-locations a:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

@media screen and (max-width: 800px) {
    .footer-locations li {
        width: 50%;
    }
    .footer-locations p {
        font-size: 10px;
    }
    .footer-locations p em {
        margin-bottom: 5px;
        font-size: 17px;
    }
    /* 新宿 */
    .f-shinjuku p {
        top: 54%;
    }
}


/* Footer Body
---------------------------- */

.footer-body {
    padding: 55px 70px 63px;
    display: -webkit-box;
    /* Less than android 4.3 */
    display: -webkit-flex;
    /* Less than iOS8 */
    display: flex;
    -webkit-box-pack: justify;
    /* Less than android 4.3 */
    -webkit-justify-content: space-between;
    /* Less than iOS8 */
    justify-content: space-between;
    -webkit-box-align: center;
    /* Less than android 4.3 */
    -webkit-align-items: center;
    /* Less than iOS8 */
    align-items: center;
    background: #000;
    color: #fff;
}

.footer-body a {
    display: block;
    color: #fff;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.footer-body a:hover {
    opacity: 0.6;
}

@media screen and (max-width: 800px) {
    .footer-body {
        display: block;
        padding: 35px 20px;
    }
}


/* Footer Body Banners
---------------------------- */

.footer-body-banners {
    display: -webkit-box;
    /* Less than android 4.3 */
    display: -webkit-flex;
    /* Less than iOS8 */
    display: flex;
    -webkit-box-align: center;
    /* Less than android 4.3 */
    -webkit-align-items: center;
    /* Less than iOS8 */
    align-items: center;
}

.footer-body-banners li {
    margin-right: 16px;
}

.footer-body-banners_up {
    display: none;
}

@media screen and (max-width: 800px) {
    .footer-body-banners {
        -webkit-box-pack: center;
        /* Less than android 4.3 */
        -webkit-justify-content: center;
        /* Less than iOS8 */
        justify-content: center;
    }
    .footer-body-banners li:first-child {
        width: 107px;
    }
    .footer-body-banners li:last-child {
        width: 195px;
        margin-right: 0;
    }
    .footer-body-banners_up {
        display: block;
        align-items: center;
        margin-bottom: 20px;
    }
    .footer-body-banners_up img {
        width: 100%;
        height: auto;
    }
}


/* Footer Body List
---------------------------- */

.foot-bottom {
    /* display: -webkit-box; */
    /* Less than android 4.3 */
    /* display: -webkit-flex; */
    /* Less than iOS8 */
    /* display: flex; */
    -webkit-box-align: center;
    /* Less than android 4.3 */
    -webkit-align-items: center;
    /* Less than iOS8 */
    align-items: center;
    font-size: 12px;
}

.foot-bottom li {
    margin-left: 10px;
    padding-left: 12px;
    position: relative;
    display: inline-block;
}

/* .footer-body-list li:before {
    content: "";
    display: block;
    width: 1px;
    height: 1em;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
} */

/* .footer-body-list li:first-child {
    margin-left: 0;
    padding-left: 0
}

.footer-body-list li:first-child:before {
    display: none;
}

.foot-bottom.cf li {
    float: left;
} */

@media screen and (max-width: 800px) {
  footer .foot-bottom {
    margin-top: 28px;
    padding: 0 0 30px;
     text-align: center;
    display: block;
}
.cf {
    zoom: 1;
}
footer .foot-bottom ul {
    text-align: center;
    display: block;
}
footer .foot-bottom li {
    font-size: 11px;
    line-height: 18px;
    margin: 0 7px;
    display: inline-block;
}

}

@media screen and (max-width: 320px) {
    .footer-body-list li {
        margin-left: 9px;
        padding-left: 10px;
    }
}


/* Footer Top
---------------------------- */

.footer-top {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.footer-top.visible {
    opacity: 1;
    visibility: visible;
}

.footer-top a {
    display: block;
    width: 100%;
    height: 100%;
    background: #fabebe url(../img/common/icon-arrow-up-on.png) no-repeat center;
    background-size: 9px auto;
    position: relative;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.footer-top a.kisarazu {
    background: #000 url(../img/common/icon-arrow-up-on_b.png) no-repeat center;
}

.footer-top a.sendai {
    background: #a4e0c5 url(../img/common/icon-arrow-up-on.png) no-repeat center;
}

.footer-top a.sendai:hover {
    background: #fff url(../img/common/icon-arrow-up-on_g.png) no-repeat center;
}

.footer-top a:hover {
    background-color: #fff;
}

.footer-top img {
    display: block;
    margin: auto;
    width: 9px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.footer-top a:hover img {
    opacity: 0;
}

@media screen and (max-width: 800px) {
    .footer-top {
        display: none;
        width: 40px;
        height: 40px;
    }
}


/* Footer Copy
---------------------------- */

.footer-copy small {
    display: block;
    line-height: 50px;
    font-family: "Roboto", Helvetica, sans-serif;
    font-size: 11px;
}

@media screen and (max-width: 800px) {
    .footer-copy small {
        text-align: center;
        line-height: 40px;
        font-size: 10px;
    }
}


/* ----------------------------
  Menu
  ---------------------------- */

  .menu {
    width: 260px;
    height: 100%;
    height: -webkit-calc(100% - 55px);
    height: calc(100% - 55px);
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #FFF;
    color: #000;
    position: fixed;
    top: 55px;
    right: 0;
    bottom: 0;
    z-index: 10001;
    visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.menu.view {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    visibility: visible;
}

.menu-inner {
    padding: 0 15px;
}

ul.g_menu {
    margin-bottom: 25px;
}

ul.g_menu li {
    border-bottom: 1px #d9d9d9 solid;
}

ul.g_menu li a {
    display: block;
    padding: 25px 0;
    font-size: 15px;
    letter-spacing: 0.02em;
    line-height: 1;
    font-weight: 900;
    background: url(../img/common/menu_arrow.png) no-repeat right center;
    background-size: 4px auto;
}

ul.f_menu {
    margin-bottom: 30px;
}

ul.f_menu li {}

ul.f_menu li a {
    display: block;
    padding: 12px 0;
    font-size: 10px;
    letter-spacing: 0.02em;
    line-height: 1;
    font-weight: 900;
}

@media screen and (max-width: 800px) {
    .menu {
        display: block;
    }
}


/* Menu Close
---------------------------- */

.menu-close button {
    margin-left: auto;
    padding: 14px 0;
    width: 25px;
}

.menu-close button svg {
    margin: 0 auto;
}


/* Menu List
---------------------------- */

.menu-list {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.menu-list-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}


/* Menu List Head
---------------------------- */

.menu-list-head {
    display: block;
    padding: 19px 0;
    font-size: 13px;
    font-weight: bold;
    position: relative;
}

.menu-list-head svg {
    margin: auto 0;
    width: 24px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}

.menu-list-head.on svg {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

.menu-list-head rect:nth-child(2) {
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}

.menu-list-head.on rect:nth-child(2) {
    opacity: 0;
}


/* Menu List Inner
---------------------------- */

.menu-list-inner {
    padding-bottom: 6px;
    display: none;
}

.menu-list-inner:after {
    content: "";
    display: block;
    clear: both;
}

.menu-list-inner li {
    width: 50%;
    float: left;
    font-size: 10px;
    font-weight: bold;
}

.menu-list-inner a {
    display: block;
    padding-bottom: 16px;
    text-decoration: underline;
}


/* Menu Info
---------------------------- */

.menu-info {
    margin-top: 16px;
    font-size: 10px;
    font-weight: bold;
}

.menu-info a {
    display: block;
    padding: 8px 0;
    text-decoration: underline;
}


/* Menu Lang
---------------------------- */

.menu-lang {
    margin-top: 8px;
    margin-bottom: 35px;
    font-size: 10px;
    font-weight: bold;
}

.menu-lang a {
    text-decoration: underline;
}

.menu-lang i {
    margin: 0 11px;
}


/* ----------------------------
  Slick Base Style
  ---------------------------- */

  .slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}


/* modal
---------------------------- */

#modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s 0s ease;
    transition: all 0.5s 0s ease;
}

#modal.view {
    visibility: visible;
    opacity: 1;
}

#modal .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

#modal .inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 550px;
    margin-left: -275px;
    -webkit-transform: scale3d(1, 1, 1) translate(0px, -50%) rotate(0deg);
    transform: scale3d(1, 1, 1) translate(0px, -50%) rotate(0deg);
    background: #FFF;
    padding: 67px 0;
}

#modal .inner .close {
    position: absolute;
    display: block;
    top: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    -webkit-transition: all 0.5s 0s cubic-bezier(0.875, 0.005, 0.090, 0.990);
    transition: all 0.5s 0s cubic-bezier(0.875, 0.005, 0.090, 0.990);
}

#modal .inner .close:hover {
    -webkit-transform: scale3d(1, 1, 1) translate(0px, 0%) rotate(90deg);
    transform: scale3d(1, 1, 1) translate(0px, 0%) rotate(90deg);
}

#modal .inner .close .l1 {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    width: 24px;
    height: 2px;
    background: #f19eb4;
}

#modal .inner .close .l2 {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 24px;
    height: 2px;
    background: #f19eb4;
}

#modal .inner .date {
    margin: 0 75px;
    font-size: 14px;
    border-bottom: 2px #f19eb4 solid;
    display: inline-block;
    line-height: 18px;
    font-family: "Roboto", Helvetica, sans-serif;
}

#modal .inner .title {
    margin: 0 75px;
    font-size: 30px;
    font-family: "Roboto", Helvetica, sans-serif;
    font-weight: 900;
        margin-bottom: 20px;
    line-height: 1.6;
}

#modal .inner .entry {
    margin: 0 75px;
    font-size: 13px;
    line-height: 24px;
/*        overflow: scroll;*/
/*    max-height: 40vh;*/
}

#modal .inner .entry small {
    font-size: 12px;
    line-height: 22px;
}

#modal .inner .entry a {
    text-decoration: underline;
}

@media screen and (max-width: 800px) {
    #modal .inner {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 80vw;
        margin-left: -40vw;
        padding: 25px 0;
    }
    #modal .inner .close {
        top: 10px;
        right: 10px;
    }
    #modal .inner .close .l1 {
        width: 14px;
        height: 2px;
    }
    #modal .inner .close .l2 {
        width: 14px;
        height: 2px;
    }
    #modal .inner .date {
        margin: 0 8vw;
        font-size: 3.2vw;
        line-height: 4vw;
        margin-bottom: 2px;
    }
    #modal .inner .title {
        margin: 0 8vw;
        font-size: 5.4vw;
        margin-bottom: 5px;
    }
    #modal .inner .entry {
        margin: 0 8vw;
        font-size: 3.4vw;
        line-height: 5.6vw;
    }
    #modal .inner .entry small {
        font-size: 2.9vw;
        line-height: 5.6vw;
    }
}


/*  */

#banner-lt {
    width: 150px;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 73px;
    left: 18px;
    opacity: 0;
    -webkit-transform: translateY(16px);
    transform: translateY(16px);
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    -webkit-transition-delay: 1.3s;
    transition-delay: 1.3s;
}

.loaded #banner-lt {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

@media only screen and (min-width: 768px) {
    #banner-lt {
        top: 105px;
        left: 50px;
    }
}


/* 2019/03/11 */

.header-menu-reserve a {
    /*background: #fff352;*/
    background: #69dbc8;
    color: #000;
}

.header-menu-reserve a:hover {
    color: #000;
}

.footer-top a {
    /*background: #fff352;*/
    background: #69dbc8;
}


/*****************************************
***** PCのMV下にあるTodayとGroupボタン *****
*****************************************/

.top_reservation_contact {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 10px auto;
    font-size: 23px;
    line-height: 50px;
    max-width: 1100px;
}

.top_reservation_contact .axi {
    width: 48%;
}

.top_reservation_contact .axi a {
    display: block;
    color: #fff;
    background-color: #adaaaa;
    text-align: center;
    border-radius:8px;
}

.top_reservation_contact .axi a:hover {
    color: #666;
}

@media screen and (max-width: 800px) {
    .top_reservation_contact {
        display: none;
    }
}
