@charset "UTF-8";

/* ----------------------------
  Base
---------------------------- */

html,
body {
    height: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 58px;
}


/* ----------------------------
  Parts
---------------------------- */


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

.btn {
    width: 180px;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    opacity: 0;
    -webkit-transition: opacity 0.6s;
    transition: opacity 0.6s;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.on .btn {
    opacity: 1;
}

.btn a {
    display: block;
    width: 100%;
    background-color: #fff;
    height: 90px;
    line-height: 90px;
    text-align: center;
    letter-spacing: 0.04em;
    font-family: "Roboto", Helvetica, sans-serif;
    font-size: 13px;
    color: #000;
    position: relative;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.btn a:hover {
    background-color: transparent;
    color: #fff;
}

@media screen and (max-width: 800px) {
    .btn {
        padding: 0 20px 20px;
        width: 100%;
        box-sizing: border-box;
        left: 0;
    }

    .btn a {
        height: 55px;
        line-height: 55px;
        letter-spacing: 0;
        font-weight: 900;
        font-size: 15px;
    }
}


/* Insta */

.btn-insta a {
    background-image: url(../img/common/logo-instagram-white.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 89px auto;
}

.btn-insta img {
    margin: auto;
    width: 89px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.btn-insta a:hover img {
    opacity: 0;
}

@media screen and (max-width: 800px) {
    .btn-insta a {
        background-size: 110px auto;
    }

    .btn-insta img {
        width: 110px;
    }
}


/* ----------------------------
  Hero
---------------------------- */

.hero {
    height: calc(100vh - 70px);
    position: relative;
}

.hero .pop {
    position: absolute;
    top: 100px;
    right: 50px;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    -webkit-transition-delay: 1.3s;
    transition-delay: 1.3s;
    opacity: 0;
}

.loaded .hero .pop {
    opacity: 1;
}

.hero .pop a {
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}

.hero .pop a:hover {
    opacity: 0.5;
}

.hero-inner {
    height: 100%;
    position: relative;
}

.hero-lead {
    line-height: 1;
    letter-spacing: -0.02em;
    color: #FFF;
    font-size: 55px;
    font-weight: 900;
    font-family: "Roboto", Helvetica, sans-serif;
    position: absolute;
    left: 50px;
    bottom: 41px;
    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 .hero-lead {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.hero-button {
    width: 180px;
    position: absolute;
    right: 50px;
    bottom: 50px;
    opacity: 0;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    -webkit-transition-delay: 1.3s;
    transition-delay: 1.3s;
}

.loaded .hero-button {
    opacity: 1;
}

.hero-button a {
    display: block;
    background: #a4e0c5;
    line-height: 90px;
    text-align: center;
    font-size: 13px;
    font-weight: 900;
    font-family: "Roboto", Helvetica, sans-serif;
    color: #fff;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.hero-button a:hover {
    background: #fff;
    color: #a4e0c5;
}

@media screen and (max-width: 800px) {
    .hero {
        height: 100vh;
        padding-bottom: 65px;
        box-sizing: border-box;
    }

    .hero .pop {
        position: absolute;
        top: 70px;
        right: 15px;
        width: 100px;
    }

    .hero-lead {
        letter-spacing: -0.02em;
        font-size: 35px;
        left: 18px;
        bottom: 15px;
    }

    .hero-lead:before {
        width: 16px;
        height: 56px;
        background-image: url(../img/common/icon-scrolldown_w-sp.png);
        bottom: 6px;
        margin-left: 12px;
    }

    .hero-button {
        display: none;
    }
}


/* Hero Lead Arrow
---------------------------- */

.hero-lead-arrow {
    width: 16px;
    height: 90px;
    position: absolute;
    left: 100%;
    bottom: 8px;
    margin-left: 8px;
    overflow: hidden;
}

.hero-lead-arrow:before,
.hero-lead-arrow:after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-image: url(../img/common/icon-scrolldown_w-pc.png);
    background-size: 16px 100%;
    position: absolute;
    left: 0;
}

.hero-lead-arrow:before {
    top: 0;
}

.hero-lead-arrow:after {
    bottom: 0;
}

.in.hero-lead-arrow:before {
    -webkit-animation: arrowIn 1s 1;
    animation: arrowIn 1s 1;
}

.out.hero-lead-arrow:after {
    -webkit-animation: arrowOut 1s 1;
    animation: arrowOut 1s 1;
}

@media screen and (max-width: 800px) {
    .hero-lead-arrow {
        width: 16px;
        height: 56px;
        bottom: 6px;
        margin-left: 12px;
    }

    .hero-lead-arrow:before,
    .hero-lead-arrow:after {
        background-image: url(../img/common/icon-scrolldown_w-sp.png);
        background-size: 16px 100%;
    }
}

@-webkit-keyframes arrowOut {
    0% {
        height: 100%;
        opacity: 1;
    }

    100% {
        height: 0;
        opacity: 0;
    }
}

@keyframes arrowOut {
    0% {
        height: 100%;
        opacity: 1;
    }

    100% {
        height: 0;
        opacity: 0;
    }
}

@-webkit-keyframes arrowIn {
    0% {
        height: 0;
        opacity: 0;
    }

    100% {
        height: 100%;
        opacity: 1;
    }
}

@keyframes arrowIn {
    0% {
        height: 0;
        opacity: 0;
    }

    100% {
        height: 100%;
        opacity: 1;
    }
}


/* Hero Background
---------------------------- */

.hero-bg {
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    opacity: 0;
    -webkit-transition: opacity 0.6s;
    transition: opacity 0.6s;
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.loaded .hero-bg {
    opacity: 1;
}

.hero-bg .slick-list,
.hero-bg .slick-track {
    height: 100%;
}

.hero-bg [class*="hero-bg-"] {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}


/* Each Backgrond */

.hero-bg-01 {
    background-image: url(../img/sendai/bg01.jpg);
}

.hero-bg-02 {
    background-image: url(../img/sendai/bg02.jpg);
}

.hero-bg-03 {
    background-image: url(../img/sendai/bg03.jpg);
}

.hero-bg-04 {
    background-image: url(../img/sendai/bg04.jpg);
}

.hero-bg-05 {
    background-image: url(../img/sendai/bg05.jpg);
}

.hero-bg-06 {
    background-image: url(../img/sendai/bg06.jpg);
}

.hero-bg-09 {
    background-image: url(../img/sendai/bg09.jpg);
}

.hero-bg-10 {
    background-image: url(../img/sendai/bg10.jpg);
}

@media screen and (max-width: 800px) {
    .hero-bg-01 {
        background-image: url(../img/sendai/bg_sp01.jpg);
    }

    .hero-bg-02 {
        background-image: url(../img/sendai/bg_sp02.jpg);
    }

    .hero-bg-03 {
        background-image: url(../img/sendai/bg_sp03.jpg);
    }

    .hero-bg-04 {
        background-image: url(../img/sendai/bg_sp04.jpg);
    }

    .hero-bg-05 {
        background-image: url(../img/sendai/bg_sp05.jpg);
    }

    .hero-bg-06 {
        background-image: url(../img/sendai/bg06.jpg);
    }

    .hero-bg-09 {
        background-image: url(../img/sendai/bg_sp09.jpg);
    }

    .hero-bg-10 {
        background-image: url(../img/sendai/bg_sp10.jpg);
    }
}


/* ----------------------------
  Intro
---------------------------- */

.intro {
    margin-bottom: 90px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    font-size: 14px;
}

.intro em {
    display: block;
    margin-bottom: 18px;
    letter-spacing: 0.04em;
    line-height: 1.727272727;
    font-size: 30px;
    font-weight: 900;
    font-family: "Roboto", Helvetica, sans-serif;
    text-align: center;
}

.intro p.s em {
    display: block;
    margin-bottom: 3px;
    letter-spacing: 0.02em;
    line-height: 24px;
    font-size: 18px;
}

.s {
    margin-bottom: 45px;
    text-align: center;
    font-size: 14px;
}

@media screen and (max-width: 800px) {
    .intro {
        margin-top: -65px;
        margin-bottom: 0;
        padding: 16px 20px 24px;
        line-height: 1.615384615;
        font-size: 10px;
    }

    .intro em {
        margin-bottom: 10px;
        letter-spacing: 0;
        line-height: 1.5;
        font-size: 16px;
    }

    .intro p.s em {
        font-size: 14px;
    }

    .s {
        margin-bottom: 16px;
    }

    .s span {
        font-size: 10px;
    }
}


/* ----------------------------
  Tile
---------------------------- */

.tile:after {
    content: "";
    display: block;
    clear: both;
}

@media screen and (max-width: 800px) {
    .tile {
        margin-bottom: 1px;
    }
}


/* Tile Align
---------------------------- */

.tile-left {
    float: left;
}

.tile-right {
    float: right;
}


/* Tile Head
---------------------------- */

.tile-head {
    padding-top: 25%;
    width: 50%;
    color: #fff;
    position: relative;
}

.tile-head-inner {
    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;
    /*padding: 0 180px 1.8181818% 12.7272727%;*/
    background: #a4e0c5;
    font-family: "Roboto", Helvetica, sans-serif;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

@media screen and (max-width: 1024px) {
    .tile-head-inner {
        padding-left: 7.5757576%;
    }
}

@media screen and (max-width: 800px) {
    .tile-head {
        padding-top: 50%;
    }

    .tile-head-inner {
        display: block;
        padding: 20px;
    }
}


/* Tile Title
---------------------------- */

.tile-title {
    margin-bottom: 12px;
    line-height: 1;
    padding-left: 12.7272727%;
    font-size: 36px;
    font-weight: 900;
    opacity: 0;
    -webkit-transform: translateY(16px);
    transform: translateY(16px);
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    /*  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;*/
}

.on .tile-title {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    /*-webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;*/
}

@media screen and (max-width: 1024px) {
    .tile-title {
        font-size: 30px;
    }
}

@media screen and (max-width: 800px) {
    .tile-title {
        margin-bottom: 6px;
        font-size: 22px;
    }
}


/* Tile Lead
---------------------------- */

.tile-lead {
    line-height: 1.5625;
    letter-spacing: 0.04em;
    padding-left: 12.7272727%;
    font-size: 16px;
    opacity: 0;
    -webkit-transform: translateY(16px);
    transform: translateY(16px);
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    /*  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;*/
}

.on .tile-lead {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    /*  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;*/
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

@media screen and (max-width: 1024px) {
    .tile-lead {
        font-size: 14px;
    }
}

@media screen and (max-width: 800px) {
    .tile-lead {
        line-height: 1.333333333;
        letter-spacing: 0.02em;
        font-size: 12px;
    }
}


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

.tile-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 0 0px 1.8181818% 0;
    width: 100%;
    background: #a4e0c5;
    letter-spacing: 0.04em;
    font-size: 13px;
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
}

.on .tile-menu {
    opacity: 1;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}


/*.tile-menu:hover {
  background: #fff;
  color: #a4e0c5;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}*/

.tile-menu span {
    text-align: center;
    position: absolute;
    top: 50%;
    width: 180px;
    /*left: 0;*/
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 800px) {
    .tile-menu {
        padding: 0;
        width: 100%;
        background-color: transparent;
        letter-spacing: 0;
        font-weight: 900;
    }

    .tile-menu:hover {
        background: transparent;
        color: #fff;
    }

    .tile-menu span {
        border-bottom: 2px solid;
        top: auto;
        left: auto;
        width: auto;
        right: 25px;
        bottom: 25px;
        -webkit-transform: none;
        transform: none;
    }
}


/* Tile Item
---------------------------- */

[class*="tile-item"] {
    position: relative;
}

[class*="tile-item"]:before {
    content: "";
    display: block;
    padding-top: 100%;
}

[class*="tile-item"] img {
    display: block;
    max-width: none;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}


/* Normal */

.tile-item {
    width: 25%;
}


/* Large */

.tile-item-large {
    width: 50%;
}

@media screen and (max-width: 800px) {
    .tile-item {
        width: 50%;
    }
}


/* ----------------------------
  Region
---------------------------- */

.region {
    font-family: "Roboto", Helvetica, sans-serif;
    color: #fff;
    position: relative;
}

.region .attention {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 12px;
}

@media screen and (max-width: 800px) {
    .region {
        margin-top: 1px;
    }

    .region .attention {
        position: absolute;
        bottom: 90px;
        left: 10px;
        font-size: 12px;
        padding-left: 10px;
    }
}


/* Region Head
---------------------------- */

.region-head {
    padding-top: 70px;
    line-height: 1.111111111;
    font-weight: 900;
    font-size: 36px;
    position: absolute;
    top: 0;
    left: 70px;
    z-index: 2;
    opacity: 0;
    -webkit-transform: translateY(16px);
    transform: translateY(16px);
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.on .region-head {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

@media screen and (max-width: 800px) {
    .region-head {
        padding-top: 24px;
        line-height: 1.083333333;
        font-size: 24px;
        left: 20px;
    }
}


/* Region Background
---------------------------- */

.region-bg {
    padding-top: 50%;
    position: relative;
}

.region-bg picture {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.region-bg img {
    max-width: none;
    width: 100%;
}

@media screen and (max-width: 800px) {
    .region-bg {
        padding-top: 100%;
    }
}


/* Region Background Crossfade
---------------------------- */

[data-photo] {
    overflow: hidden;
}

[data-photo] .slick-list {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}


/* ----------------------------
  Gallery
---------------------------- */

.gallery {
    padding: 50px;
    background: rgba(0, 0, 0, 0.9);
    line-height: 1;
    font-size: 18px;
    font-family: "Roboto", Helvetica, sans-serif;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20000;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}

.gallery-visible .gallery {
    opacity: 1;
    visibility: visible;
}

@media screen and (max-width: 800px) {
    .gallery {
        padding: 20px;
        font-size: 15px;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}


/* Gallery Head
---------------------------- */

.gallery-head {
    font-weight: 900;
    position: absolute;
    top: 50px;
    left: 50px;
}

@media screen and (max-width: 800px) {
    .gallery-head {
        top: 30px;
        left: 20px;
    }
}


/* Gallery Count
---------------------------- */

.gallery-count {
    position: absolute;
    top: 50px;
    right: 50px;
}

@media screen and (max-width: 800px) {
    .gallery-count {
        top: 30px;
        right: 20px;
    }
}


/* Gallery Body
---------------------------- */

.gallery-body {
    margin: auto;
    width: 100%;
    max-width: 720px;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.gallery-body:before {
    content: "";
    display: block;
    padding-top: 66.6666667%;
}

@media screen and (max-width: 910px) {
    .gallery-body {
        width: 79.1208791%;
    }
}

@media screen and (max-width: 800px) {
    .gallery-body {
        margin: 0 20px;
        width: auto;
        max-width: none;
    }
}

@media screen and (max-width: 800px) and (orientation: landscape) {
    .gallery-body {
        width: 50%;
    }
}


/* Gallery Images
---------------------------- */

.gallery-image,
.gallery-image .slick-list {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.gallery-image .slick-track {
    height: 100%;
}

.gallery-item {
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


/* Gallery Arrow
---------------------------- */

.gallery-arrow button {
    margin: auto 0;
    width: 90px;
    height: 90px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px auto;
    position: absolute;
    top: 0;
    bottom: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.gallery-arrow button:hover {
    background-color: #a4e0c5;
}

.gallery-arrow img {
    display: block;
    width: 16px;
    margin: 0 auto;
    opacity: 1;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.gallery-arrow button:hover img {
    opacity: 0;
}

@media screen and (max-width: 800px) {
    .gallery-arrow button {
        width: 40px;
        height: 40px;
        background-size: 8px auto;
    }

    .gallery-arrow img {
        width: 8px;
    }
}


/* Prev */

.gallery-arrow-prev {
    background-image: url(../img/shinjuku/gallery-left-on.png);
    left: -45px;
}


/* Next */

.gallery-arrow-next {
    background-image: url(../img/shinjuku/gallery-right-on.png);
    right: -45px;
}

@media screen and (max-width: 800px) {
    .gallery-arrow-prev {
        left: -20px;
    }

    .gallery-arrow-next {
        right: -20px;
    }
}


/* ----------------------------
  News
---------------------------- */

.news {
    padding: 64px 70px 126px;
    background: #a4e0c5;
    color: #fff;
    position: relative;
}

.news>* {
    opacity: 0;
    -webkit-transform: translateY(16px);
    transform: translateY(16px);
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.news.on>* {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.scrollH {
    height: 200px;
    overflow: scroll;
}

@media screen and (max-width: 800px) {
    .news {
        padding: 28px 20px 104px;
    }
}


/* News Head
---------------------------- */

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

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


/* News List
---------------------------- */

.news-list {
    line-height: 1.5;
    font-size: 14px;
}

.news-list dt {
    margin-bottom: 2px;
    font-family: "Roboto", Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 900;
}

.news-list dd+dt {
    margin-top: 8px;
}

.news-list dd a {
    color: #fff;
}

.news-list dd a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 800px) {
    .news-list {
        font-size: 11px;
    }

    .news-list dt {
        margin-bottom: 0;
        font-size: 15px;
    }

    .news-list dd+dt {
        margin-top: 10px;
    }
}


/* ----------------------------
  Sub Page Layout
---------------------------- */


/* Main Head
---------------------------- */

.main-head {
    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;
    padding-top: 50px;
    height: 350px;
    background-repeat: no-repeat;
    background-position: top center;
    background-image: url(../img/common/bg-sendai.jpeg);
    background-size: cover;
    text-align: center;
    line-height: 1;
    letter-spacing: 0.02em;
    font-size: 18px;
    opacity: 0;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.loaded .main-head {
    opacity: 1;
}

.main-head em {
    display: block;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    font-family: "Roboto", Helvetica, sans-serif;
    font-size: 38px;
    font-weight: 900;
}

@media screen and (max-width: 800px) {
    .main-head {
        padding: 55px 20px 0;
        height: 187.5px;
        text-align: left;
        /* background-image: url(../img/common/bg-shinjuku-sp-sub.jpg); */
        font-size: 11px;
    }

    .main-head em {
        margin-bottom: 7px;
        font-size: 26px;
    }
}


/* Main Body
---------------------------- */

.main-body {
    margin: 0 auto 20px;
    padding: 62px 50px 0;
    max-width: 960px;
    position: relative;
}

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

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


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

.main-menu {
    width: 250px;
    line-height: 2.4;
    font-size: 13px;
    position: absolute;
    top: 62px;
    left: 50px;
    opacity: 0;
    -webkit-transition: opacity 0.6s;
    transition: opacity 0.6s;
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.loaded .main-menu {
    opacity: 1;
}

.main-menu li {
    margin-bottom: 2px;
}

.main-menu a {
    color: #a9a9a9;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.main-menu a:hover,
.main-menu li.current a {
    color: #a4e0c5;
}

@media screen and (max-width: 800px) {
    .main-menu {
        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-bottom: 28px;
        padding: 0 6px;
        width: 100%;
        box-sizing: border-box;
        border-bottom: 1px solid #dcdcdc;
        line-height: 52px;
        font-size: 11px;
        position: static;
    }

    .main-menu li {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 320px) {
    .main-menu {
        padding: 0;
    }
}


/* Main Content
---------------------------- */

.main-content {
    margin-left: 250px;
    letter-spacing: 0.02em;
}

@media screen and (max-width: 800px) {
    .main-content {
        margin-left: 0;
    }
}


/* Main Content Text
---------------------------- */


/* Section */

.main-content>section {
    margin-top: 40px;
}

.main-content>section:first-child {
    margin-top: 0;
}

.main-content>section>section {
    margin-top: 28px;
}

.main-content>section h3+section {
    margin-top: 0;
}

@media screen and (max-width: 800px) {
    .main-content>section {
        margin-top: 22px;
    }

    .main-content>section>section {
        margin-top: 16px;
    }
}


/* Heading */

.main-content h3,
.main-content h4,
.main-content h5 {
    font-weight: bold;
}

.main-content h3 {
    margin-bottom: 25px;
    line-height: 1.727272727;
    font-size: 22px;
}

@media screen and (max-width: 800px) {
    .main-content h3 {
        margin-bottom: 16px;
        line-height: 1.1875;
        font-size: 16px;
    }
}


/* Table */

.main-content table {
    margin: 12px 0 34px;
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    text-align: center;
    font-size: 14px;
}

.main-content th,
.main-content td {
    padding: 10px;
    border: 2px solid #a9a9a9;
    box-sizing: border-box;
}

.main-content thead th {
    border-left-color: #fff;
    border-right-color: #fff;
    background: #a9a9a9;
    color: #fff;
}

.main-content thead th:first-child {
    border-left-color: #a9a9a9;
}

.main-content thead th:last-child {
    border-right-color: #a9a9a9;
}

@media screen and (max-width: 800px) {
    .main-content table {
        margin: 10px 0 15px;
        table-layout: auto;
        font-size: 12px;
    }

    .main-content th,
    .main-content td {
        padding: 7px 10px;
        border: 1px solid #a9a9a9;
    }
}


/* Main Button
---------------------------- */

.main-button {
    margin-top: 32px;
    max-width: 430px;
}

.main-button a {
    display: block;
    padding: 25px 0 23px;
    background: #a4e0c5;
    text-align: center;
    letter-spacing: 0.02em;
    font-size: 14px;
    color: #fff;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.main-button a:hover {
    background: #fff;
    color: #a4e0c5;
}

.main-button.button--multiline a {
    padding: 19px 0 17px;
}

.main-button em {
    display: block;
    line-height: 1;
    letter-spacing: -0.02em;
    font-family: "Roboto", Helvetica, sans-serif;
    font-weight: 900;
    font-size: 24px;
}

.main-button.button--multiline em {
    line-height: 1.5;
}

@media screen and (max-width: 800px) {
    .main-button {
        margin-top: 24px;
    }

    .main-button a {
        padding: 23px 0 22px;
        font-size: 10px;
    }

    .main-button.button--multiline a {
        padding: 17px 0 15px;
    }

    .main-button em {
        margin-bottom: 2px;
        font-size: 17px;
    }
}


/* ----------------------------
  Recruit
---------------------------- */


/* Main Override
---------------------------- */

.recruit .main-head {
    background-image: url(../img/common/bg-shinjuku-recruit.jpg);
}

.recruit .main-body {
    margin-bottom: 0;
    letter-spacing: 0.02em;
}

.recruit .main-body a {
    text-decoration: underline;
}

.recruit .main-body a:hover {
    text-decoration: none;
}

@media screen and (max-width: 800px) {
    .recruit .main-body {
        margin-bottom: 22px;
    }
}


/* Recruit Lead
---------------------------- */

.recruit-lead {
    margin-bottom: 48px;
    text-align: center;
}

@media screen and (max-width: 800px) {
    .recruit-lead {
        margin-top: 36px;
        margin-bottom: 26px;
        text-align: left;
    }
}


/* Recruit Body
---------------------------- */

.recruit-body {
    margin: 0 auto;
    max-width: 700px;
}

.recruit-body table {
    width: 100%;
    text-align: left;
}

.recruit-body th,
.recruit-body td {
    padding: 19px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.recruit-body th {
    width: 160px;
    line-height: 3.076923077;
    font-weight: bold;
    font-size: 13px;
}

.recruit-body td {
    line-height: 2.666666667;
}

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

    .recruit-body th,
    .recruit-body td {
        padding: 13px 0;
    }

    .recruit-body th {
        width: 85px;
        line-height: 2.181818182;
        font-size: 11px;
    }

    .recruit-body td {
        line-height: 2;
        font-size: 12px;
    }
}


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


/* Main Override
---------------------------- */

.contact .main-head {
    background-image: url(../img/common/bg-sendai-contact.jpeg);
}

.contact .main-body {
    margin-bottom: 58px;
}

@media screen and (max-width: 800px) {
    .contact .main-body {
        margin-bottom: 50px;
    }
}


/* Contact Body
---------------------------- */

.contact-body {
    text-align: center;
    letter-spacing: 0.02em;
}

.contact-body em {
    display: block;
    margin-bottom: 15px;
    line-height: 1.727272727;
    letter-spacing: 0.04em;
    font-weight: bold;
    font-size: 22px;
}

@media screen and (max-width: 800px) {
    .contact-body {
        text-align: left;
    }

    .contact-body em {
        margin-top: 38px;
        margin-bottom: 20px;
        line-height: 1.1875;
        font-size: 16px;
    }
}


/* Contact Button
---------------------------- */

.contact-button {
    margin: 32px auto 0;
    max-width: 430px;
    width: 100%;
}

.contact-button a {
    display: block;
    padding: 14px 10px;
    background: #a4e0c5;
    letter-spacing: -0.02em;
    text-align: center;
    font-family: "Roboto", Helvetica, sans-serif;
    font-weight: 900;
    font-size: 36px;
    color: #fff;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    cursor: default;
}

.contact-button a span {
    font-size: 23px;
    vertical-align: middle;
}

@media screen and (max-width: 800px) {
    .contact-button {
        margin-top: 20px;
        max-width: none;
    }

    .contact-button a {
        padding: 15px 10px;
        font-size: 29px;
        cursor: pointer;
    }

    .contact-button a:hover {
        background: #fff;
        color: #f19eb4;
    }

    .contact-button a span {
        font-size: 18px;
    }
}


/* ----------------------------
  Scroll Effect
---------------------------- */


/* Fade */

[data-effect="on"] {
    opacity: 0;
    -webkit-transition: opacity 0.6s;
    transition: opacity 0.6s;
}

[data-effect="on"].on {
    opacity: 1;
}


/* Fadeup */

[data-effect="fadeup"] {
    opacity: 0;
    -webkit-transform: translateY(16px);
    transform: translateY(16px);
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}

[data-effect="fadeup"].fadeup {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1;
}


/*  */

.main-head-block {
    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;
    padding-top: 50px;
    height: 350px;
    background-repeat: no-repeat;
    background-position: top center;
    background-image: url(//opefac.heteml.jp/wildbeach_mirror/assets/img/common/bg-sendai.jpeg);
    background-size: cover;
    text-align: center;
    line-height: 1;
    letter-spacing: 0.02em;
    font-size: 18px;
    opacity: 0;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
    position: relative;
}

.loaded .main-head-block {
    opacity: 1;
}

.main-head-block em {
    display: block;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    font-family: "Roboto", Helvetica, sans-serif;
    font-size: 38px;
    font-weight: 900;
}

@media screen and (max-width: 800px) {
    .main-head-block {
        padding: 55px 20px 42px;
        height: 187.5px;
        text-align: left;
        font-size: 11px;
    }

    .main-head-block em {
        margin-bottom: 7px;
        font-size: 26px;
    }
}

.information {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
}

@media only screen and (min-width: 768px) {
    .information {
        bottom: 20px;
    }
}

.information ul {
    margin: 0;
    padding: 0 20px;
    list-style-type: none;
}

.information li {
    display: inline-block;
    vertical-align: middle;
    width: 32%;
    text-align: center;
}

.information li img {
    width: 100%;
}

@media only screen and (min-width: 568px) and (max-height: 320px) and (orientation: landscape) {
    .information li img {
        width: 70%;
    }
}


/* iPhone 5 */

@media only screen and (min-width: 639px) and (max-height: 375px) and (orientation: landscape) {
    .information li img {
        width: 70%;
    }
}


/* iPhone 678 */

@media only screen and (min-width: 812px) and (max-height: 375px) and (orientation: landscape) {
    .information li img {
        width: 70%;
    }
}


/* iPhone X */

@media only screen and (min-width: 736px) and (max-height: 414px) and (orientation: landscape) {
    .information li img {
        width: 70%;
    }
}


/* iPhone 678 Plus */

@media only screen and (min-width: 768px) {
    .information ul {
        padding: 0;
    }

    .information li img {
        width: 60%;
    }
}


/*  */

.half-image {
    width: 85%;
}

.half-image.mgb {
    margin-bottom: 15px;
}

@media only screen and (orientation: landscape) {
    #banner-lt {
        width: 390px;
    }

    #banner-lt:after {
        content: "";
        display: block;
        clear: both;
    }

    .half-image {
        width: 120px;
        float: left;
    }

    .half-image.mgb {
        margin-right: 15px;
        margin-bottom: 0;
    }
}

@media only screen and (min-width: 813px) {
    #banner-lt {
        width: 150px;
    }

    .half-image {
        width: 100%;
    }

    .half-image.mgb {
        margin-right: 0;
        margin-bottom: 15px;
    }
}


/*  */

.tile-title.lunch-rule {
    letter-spacing: -0.02em;
    font-family: "Roboto", Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 900;
    padding-left: 0;
}

.tile-title.lunch-rule.sptop {
    padding-top: 62px;
}


/* party Body
---------------------------- */

.party-body {
    text-align: center;
    letter-spacing: 0.02em;
    display: -webkit-box;
    display: box;
}

.party-body em {
    display: block;
    margin-bottom: 15px;
    line-height: 1.727272727;
    letter-spacing: 0.04em;
    font-weight: bold;
    font-size: 20px;
}

.party-body em small {
    font-size: 14px;
}

.party-body .text {
    font-size: 10px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.party-body img {
    width: 80%;
    margin-bottom: 30px;
}

.party-body li {
    margin-bottom: 10px;
    font-size: 10px;
}

@media screen and (max-width: 800px) {
    .party-body {
        display: block;
        text-align: left;
    }

    .party-body em {
        margin-top: 38px;
        margin-bottom: 20px;
        line-height: 1.1875;
        font-size: 14px;
    }

    .party-body em small {
        font-size: 12px;
    }

    .party-body img {
        width: 100%;
    }

    .party-body .text {
        font-size: 10px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
}

.party-box {
    -webkit-box-flex: 1;
    box-flex: 1;
    width: 100%;
}

@media screen and (max-width: 800px) {
    .party-box {
        -webkit-box-flex: 0.0;
        box-flex: 0.0;
        margin-bottom: 50px;
    }
}

ul.banner-round {
    display: block;
    position: absolute;
    top: 80px;
    right: 40px;
}

ul.banner-round li {
    float: left;
    margin-left: 6px;
}

ul.banner-round li a img {
    width: 200px;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

ul.banner-round li a:hover img {
    opacity: 0.8;
}

@media screen and (max-width: 800px) {
    ul.banner-round {
        display: block;
        position: absolute;
        right: 0px;
        letter-spacing: -0.4em;
    }

    ul.banner-round li {
        float: right;
        letter-spacing: normal;
        vertical-align: middle;
        display: inline-block;
        margin: 0 2px;
    }

    ul.banner-round li a img {
        width: 120px;
        -webkit-transition: all 0.6s ease;
        transition: all 0.6s ease;
    }

    ul.banner-round li a:hover img {
        opacity: 0.5;
    }
}


/*20200404*/

.campaign_img img {
    width: 100%;
    height: auto;
}

.campaign_img {
    position: absolute;
    max-width: 350px;
    top: 12%;
    right: 1%;
    z-index: 999;
}

.campaign_img.anniv_div {
    left: 5%;
    right: initial;
}

@media only screen and (max-width: 1000px) {
    .campaign_img {
        position: absolute;
        max-width: 250px;
        top: 65px;
        right: 2%;
        z-index: 999;
        bottom: initial;
    }
}

@media only screen and (max-width: 620px) {
    .campaign_img {
        max-width: 200px;
    }
}

@media only screen and (max-width: 500px) {
    .campaign_img {
        position: absolute;
        max-width: 150px;
        top: 65px;
        right: 4%;
        z-index: 999;
        bottom: initial;
    }
}

@media only screen and (max-height: 450px) {
    .campaign_img {
        position: absolute;
        max-width: 153px;
        top: 58px;
        right: 2%;
        z-index: 999;
        bottom: initial;
    }
}


/*  2020 05 12 custom homely oda*/

@media screen and (max-width:800px) {
    h2.tile-title {
        padding-left: 6%;
    }

    p.tile-lead {
        padding-left: 6%;
    }
}


/**************************************
*************** 20210421 **************
***************************************/


/*** header ***/

.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 40px;
    text-align: center;
    font-size: 11px;
    color: #fff;
    transform: translateX(-50%);
}

.hero-scroll::after {
    content: '';
    display: block;
    width: 30px;
    height: 45px;
    margin: 5px auto 0;
    border: 1px solid #fff;
    border-radius: 15px;
}

.hero-scroll::before {
    content: '';
    position: absolute;
    left: calc(50% - 2px);
    top: 37px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #fff;
}

.hero-scroll .hero-lead-arrow {
    left: calc(50% - 8px);
    bottom: auto !important;
    top: 39px;
    height: 50px !important;
    margin: 0 !important;
}

.hero-scroll .hero-lead-arrow:before,
.hero-scroll .hero-lead-arrow:after {
    background-image: url(../img/common/icon-scrolldown_w-sp.png);
}


/**** sendai hero ******/

.slide-animation {
    animation: fadezoom 8s 0s forwards;
}

@keyframes fadezoom {
    0% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.sendai_inner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.sendai_intro {
    padding: 30px 0;
    text-align: center;
    font-size: 20px;
    line-height: 2;
}

.sendai_intro em {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
}

.sendai_intro em span {
    font-size: 200%;
}

.sendai_intro em span.limit {
    font-size: 120%;
    display: block;
    margin-bottom: 30px;
}

.sendai_intro .cafemenu {
    text-align: center;
}

.sendai_intro .cafemenu a {
    display: inline-block;
    width: 50%;
    margin: 0 auto;
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 5px 20px;
    box-sizing: border-box;
    background: #59c3c9;
    transition: all ease .4s;
}

.sendai_intro .cafemenu a:hover {
    opacity: .7;
}

.sendai_intro .planBox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.sendai_intro .planBoxL {
    width: 56%;
}

.sendai_intro .planBoxL img {
    display: block;
    width: 100%;
}

.sendai_intro .planBoxR {
    width: 40%;
    text-align: left;
}

.sendai_intro .planBoxR .sub {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 150%;
    margin-bottom: 10px;
}

.sendai_intro .planBoxR .desc {
    font-size: 1rem;
    letter-spacing: .1em;
    line-height: 1.9;
    margin-bottom: 30px;
    margin-top: 20px;
}


.sendai_intro .planBoxR .link a {
    background: orange;
    transition: all ease .4s;
    box-sizing: border-box;
    padding: 10px 40px;
    font-size: 1.2rem;
}

.sendai_intro .planBoxR .link a:hover {
    opacity: .7;
}

.oneculum {
    margin-bottom: 80px;
}

.oneculum .link {
    text-align: center;
}

.oneculum .link a {
    background: orange;
    transition: all ease .4s;
    box-sizing: border-box;
    padding: 10px 40px;
    font-size: 1.2rem;
}

.oneculum .link a:hover {
    opacity: .7;
}

.sendai_intro .planBoxR.planBoxWide {
    text-align: center;
    width: 100%;
}

.sendai_intro .cafeImg {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sendai_intro .cafeImg li {
    width: 32%;
}

.sendai_intro .cafeImg li img {
    display: block;
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.banner {
    max-width: 850px;
    margin: 0 auto;
}

.sendai_sec {
    padding: 60px 0 80px;
    border-top: 1px solid #707070;
}

.sendai_sec:first-of-type {
    border-top: none;
}

.sendai_ttl {
    margin-bottom: 60px;
    text-align: center;
}

.sendai_ttl h2 {
    display: inline-block;
    padding: 8px 0 15px;
    font-size: 13px;
    font-weight: 500;
    border-top: 3px solid #000;
    border-bottom: 3px solid #000;
}

.sendai_ttl h2 span {
    font-size: 38px;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
}

.area_map li {
    margin-bottom: 80px;
}

.area_map li .liBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

/* .area_map li:nth-child(2n) {
    flex-direction: row-reverse;
} */

.area_map li figure {
    width: 51.5%;
}

.area_map li figure img {
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.area_cont {
    width: 44.5%;
    font-size: 16px;
    /* margin-bottom: 20px; */
}

.area_cont h3 {
    font-size: 14px;
    line-height: 1.5;
}

.area_cont h3 span {
    font-size: 40px;
    /* font-family: 'Lobster', cursive; */
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
}

.area_map li figure h3 {
    font-size: 14px;
    line-height: 1.5;
}

.area_map li figure h3 span {
    font-size: 40px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
}

.area_info {
    font-size: 14px;
    padding-top: 60px;
}

.area_info a {
    color: #1b72b9;
    font-weight: bold;
    text-decoration: underline;
    transition: all ease .4s;
}

.area_info a:hover {
    opacity: .7;
}

.area_info h4 {
    font-size: 20px;
    font-weight: bold;
}

.area_info h4 span {
    font-size: .75rem;
    color: red;
}

.area_info dl {
    font-size: 18px;
    line-height: 2.2;
}

.area_info dl dt {
    margin: 25px 0 10px;
    padding: 2px 20px;
    font-weight: 500;
    background: #EDEDED;
}

span.price_txt {
    padding-left: 15px;
}

.area_equipment {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #000;
}

.area_equipment h3 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 500;
}

.col-red {
    color: #B42E22;
    text-align: center;
}

.sendai_table {
    width: 100%;
    margin-bottom: 10px;
    border-collapse: collapse;
}

.sendai_table tr th,
.sendai_table tr td {
    padding: 5px;
    text-align: center;
    font-size: 18px;
    border: 1px solid #ccc;
    vertical-align: middle;
}

.sendai_table thead tr td {
    font-size: 20px;
    color: #fff;
    background: #333;
}

.sendai_table tbody tr th {
    font-size: 20px;
}

.food_menu,
.drink_menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.food_menu li {
    width: 48%;
    margin-bottom: 40px;
}

.food_menu_ttl {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 15px 0;
}

.food_menu_ttl h3 {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

.food_menu_ttl h3 span {
    /* font-family: 'Lobster', cursive; */
    font-size: 40px;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
}

.food_menu_ttl .tag {
    margin: 25px 0 0 15px;
    padding: 1.5px 15px;
    border: 1px solid #707070;
}

.food_menu_price {
    margin-top: 10px;
    text-align: right;
    font-size: 20px;
}

.food_menu_price .fs_sm {
    font-size: 80%;
}

.food_menu_price .fs_lg {
    font-size: 150%;
}

.food_menu li dl {
    margin-top: 10px;
    border: 1px solid #CBCBCB;
}

.food_menu li dl dt {
    padding: 5px 20px;
    font-size: 18px;
    font-weight: 700;
    background: #EDEDED;
}

.food_menu li dl dd {
    padding: 10px 15px;
}

.food_menu li dl dd span {
    display: inline-block;
    padding-right: 5px;
}

.sendai_btn {
    margin-top: 40px;
    text-align: center;
}

.sendai_btn a {
    display: inline-block;
    width: 100%;
    max-width: 530px;
    padding: 15px;
    font-size: 20px;
    background: #EDEDED;
    box-sizing: border-box;
}

.sendai_btn a span {
    margin-left: 20px;
}

.drink_menu li {
    width: 48%;
    margin-bottom: 10px;
}

.drink_menu_cont {
    margin-top: 20px;
    padding: 10px 20px 20px;
    border: 1px solid #707070;
}

.drink_menu_cont h3 {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.drink_menu_cont h3 span {
    font-size: 40px;
    /* font-family: 'Lobster', cursive; */
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
}

.sp_br {
    display: none;
}

.drink_object {
    margin-top: 30px;
    border: 1px solid #CBCBCB;
}

.drink_object dt {
    padding: 5px 20px;
    font-size: 18px;
    font-weight: 700;
    background: #EDEDED;
}

.drink_object dd {
    padding: 15px 20px;
    font-size: 12px;
}

.drink_object dd p {
    position: relative;
    margin: 5px 0;
    padding-left: 28px;
}

.drink_object dd p em {
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    text-align: right;
    font-weight: bold;
}

.drink_object dd p span {
    font-size: 10px;
}

.btn2 a {
    background: #59c3c9;
    display: block;
    text-align: center;
    padding: 4px;
    box-sizing: border-box;
    color: #fff;
    margin-top: 20px;
    border-radius: 4px;
    transition: all ease .4s;
    width: 60%;
    margin: 0 auto 20px;
}

.btn2 a:hover {
    opacity: .7;
}

.zbutton4 {
    top: 67px;
    bottom: initial;
    left: initial !important;
    right: 5px;
    z-index: 90;
    width: 100px;
}

.zbutton4 li {
    margin-bottom: 8px;
}

@media screen and (max-width: 800px) {
    .sendai_inner {
        padding: 0 15px;
        box-sizing: border-box;
    }

    .text-left {
        text-align: left;
    }

    .sendai_intro .cafeImg li img {
        height: 100px;
    }

    .sendai_intro .planBoxL {
        width: 46%;
    }

    .sendai_intro .planBoxR {
        width: 50%;
    }

    .sendai_intro .planBoxR .sub {
        font-size: 1rem;
        margin-bottom: 0px;
        line-height: 1.6;
    }

    .sendai_intro .planBoxR .desc {
        font-size: .8rem;
        letter-spacing: .06em;
        line-height: 1.6;
    }

    .sendai_intro .planBoxR .link a {
        padding: 10px 14px;
        font-size: 1rem;
    }

    .sendai_intro .planBox {
        margin-bottom: 40px;
    }

    .sendai_intro .cafemenu {
        text-align: center;
    }

    .sendai_intro .cafemenu a {
        font-size: .8rem;
        padding: 6px 20px;
    }

    .sendai_intro em span {
        font-size: 23px;
    }

    .sendai_intro em {
        font-size: 14px;
        text-align: center;
        display: block;
    }

    .sendai_intro,
    .area_info h4,
    .area_info dl,
    .area_equipment h3,
    .sendai_table tbody tr th,
    .sendai_table thead tr td,
    .food_menu_price,
    .food_menu li dl dt,
    .drink_object dt,
    .sendai_btn a {
        font-size: 16px;
    }

    .area_map li figure {
        width: 100%;
        margin-bottom: 20px;
    }

    .area_map li figure img,
    .area_cont,
    .food_menu li,
    .drink_menu li,
    .drink_menu li figure img,
    .food_menu li figure img {
        width: 100%;
    }

    .area_cont,
    .sendai_table tr th,
    .sendai_table tr td {
        font-size: 14px;
    }

    .area_cont h3 span,
    .food_menu_ttl h3 span,
    .drink_menu_cont h3 span {
        font-size: 26px;
        /* font-size: 30px; */
    }

    .new_sendai_sp {
        text-align: center;
        font-size: 14px;
    }

    .sp_br {
        display: block;
    }

    .area_info {
        padding-top: 0px;
    }

    .btn2 a {
        width: 100%;
    }

    .btn2 a {
        width: 100%;
    }
}