@charset "UTF-8";

html {
    font-size: 100%;
}

body {
    background-color: #f0f0f0;
    color: #000;
    font-size: 0.875rem;
    font-family: "Sawarabi Gothic", serif;
}

a {
    color: #000;
    font-size: 0.875rem;
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

li {
    list-style: none;
}

.logo {
    width: 260px;
    line-height: 1px;

}

.logo a {
    display: block;
}

.wrapper {
    width: 100%;
    max-width: 1032px;
    padding: 0 16px;
    margin: 0 auto;
}

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

.icon-tab::after {
    content: "";
    display: inline-block;
    background-image: url('/img/icon-tab-g.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    width: 1em;
    height: 1em;
    margin-left: 6px;
}

/*
ボタン
*/
.btn-more a {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: auto;
    max-width: 180px;
    padding: 10px 25px;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    color: #004D6A;
    font-family: "Quicksand", serif;
}

.btn-more a:before {
    content: '';
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    transform: translateY(calc(-50% - 2px)) rotate(30deg);
    width: 12px;
    height: 2px;
    background-color: #004D6A;
    transition: 0.3s;
}

.btn-more a:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 60px;
    height: 2px;
    background-color: #004D6A;
    transition: 0.3s;
}

.btn-more a:hover:before,
.btn-more a:hover:after {
    right: -0.5em;
    background-color: #159895;
}

.btn-more a:hover {
    color: #159895;
}

.btn-back a {
    position: relative;
    display: flex;
    justify-content: end;
    align-items: center;
    margin-right: auto;
    max-width: 180px;
    padding: 10px 25px;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    color: #004D6A;
    font-family: "Quicksand", serif;
}

.btn-back a:before {
    content: '';
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    transform: translateY(calc(-50% - 2px)) rotate(150deg);
    width: 12px;
    height: 2px;
    background-color: #004D6A;
    transition: 0.3s;
}

.btn-back a:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 60px;
    height: 2px;
    background-color: #004D6A;
    transition: 0.3s;
}

.btn-back a:hover:before,
.btn-back a:hover:after {
    left: -0.5em;
    background-color: #159895;
}

.btn-back a:hover {
    color: #159895;
}

/* ふわっと表示 */
.load-fade {
    opacity: 0;
    visibility: hidden;
    transition: all 1s;
}

.load-fade.is-show {
    opacity: 1;
    visibility: visible;
}

.scroll-up {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: all 1s;
}

.scroll-up.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

/*-------------------------------------------
Loading画面
-------------------------------------------*/

.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background-color: #004D6A;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeOut 1.5s 2.5s forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

.loading__logo {
    opacity: 0;
    animation: logo_fade 2s 0.5s forwards;
    width: 40%;
}

@keyframes logo_fade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    60% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
    }
}

/*-------------------------------------------
ヘッダー
-------------------------------------------*/
#header {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 11;
}

.reserve {
    position: fixed;
    right: 20px;
    top: 20px;
    width: 180px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #004D6A;
    color: #fff;
    text-decoration: none;
    opacity: 0;
    transition: all 0.65s;
    letter-spacing: 0.2rem;
    font-family: "Quicksand", serif;
}

.reserve.isActive {
    opacity: 1;
    transition: all 0.65s;
}

.reserve.isActive:hover {
    background-color: #159895;
}

.icon-tab-w::after {
    content: "";
    display: inline-block;
    background-image: url('/img/icon-tab.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    width: 1em;
    height: 1em;
    margin-left: 6px;
}

/*-------------------------------------------
Mainvisual
-------------------------------------------*/
#mainvisual {
    position: relative;
    height: 100vh;
    width: 100%;
}

.slideshow-fade {
    position: relative;
    width: 100%;
    height: 100vh;
    object-fit: cover;

    li {
        list-style: none;
        width: 100%;
        height: 100%;

        img {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
        }
    }
}

.mv-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
}

.scroll {
    position: absolute;
    right: 3%;
    bottom: 20%;
    writing-mode: vertical-rl;
    color: #fff;
}

/* 線のアニメーション部分 */
.scroll::before {
    animation: scroll 2s infinite;
    background-color: #fff;
    bottom: -115px;
    content: "";
    height: 100px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 1px;
}

/* 線のアニメーション */
@keyframes scroll {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }

    50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }

    51% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }

    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}

/*-------------------------------------------
News
-------------------------------------------*/
#news {
    width: 80%;
    margin: -75px auto 120px;
    background: #fff;
    padding: 60px;
    z-index: 10;
    position: sticky;
}

.news-container {
    display: flex;
}

.title-news {
    width: 160px;
}

.list li {
    display: flex;
    margin-bottom: 1em;
}

.date-area {
    margin-right: 20px;
}

/*-------------------------------------------
About
-------------------------------------------*/
#about {
    display: flex;
    margin-bottom: 120px;
}

.title-concept {
    width: 200px;
}

.catchcopy {
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
}

.catchcopy span {
    font-size: 0.875rem;
}

#about .img {
    width: 55%;
}

#about .img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

#about .text {
    width: 45%;
    padding: 0 5%;
}

#about .text p {
    line-height: 2.2;
}

/*-------------------------------------------
menu
-------------------------------------------*/
#menu {
    margin-bottom: 120px;
    font-family: "Quicksand", serif;
}

.title-menu {
    width: 160px;
}

.menu-img {
    height: 230px;
    width: 360px;
    object-fit: cover;
}

#menu .flex {
    display: flex;
    justify-content: space-between;
    padding: 0 10%;
    margin-top: 30px;
}

#menu .flex .left {
    width: 46%;
    margin-top: 100px;
}

#menu .flex .right {
    width: 46%;
}

#menu .flex .item {
    margin-bottom: 80px;
}

#menu .flex .item:last-child {
    margin-bottom: 0;
}

#menu .flex .title {
    margin: 0 0 10px 18px;
    position: relative;
}

/*
疑似要素でタイトルの横線を引く
*/
#menu .flex .title::before {
    content: "";
    width: 8px;
    height: 1px;
    background-color: #000;
    position: absolute;
    top: 50%;
    left: -18px;
}

/*-------------------------------------------
Recommend
-------------------------------------------*/
#recommend {
    margin-bottom: 120px;
}

.title-recommend {
    width: 300px;
}

.caption {
    margin-top: 10px;
}

.swiper-container {
    margin-inline: auto;
    position: relative;
}

.swiper {
    margin-top: 20px;
    padding-left: 105px;
}

/* スライド画像のサイズ */
.swiper-slide img {
    height: 240px;
    width: 100%;
    object-fit: cover;
}

/* ページネーション */
.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -25px;
}

.swiper-button-next,
.swiper-button-prev {
    background-color: #159895;
    height: 60px;
    width: 60px;
    top: 43%;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 0;
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev::after,
.swiper-button-next::after {
    bottom: 0;
    content: "";
    height: 0;
    margin: auto;
    display: inline-block;
}

/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 0;
    border-top: solid 2px #fff;
    border-left: solid 2px #fff;
    transform: rotate(-45deg);
    position: absolute;
    top: 0;
    right: 15px;
    margin: auto;
}

/* 次への矢印カスタマイズ */
.swiper-button-next::after {
    width: 20px;
    height: 20px;
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    left: 15px;
    margin: auto;
}

.lb-image {
    width: 580px !important;
    height: 400px !important;
    object-fit: cover;
}

/*-------------------------------------------
Shop Info
-------------------------------------------*/
#shop-info {
    height: 680px;
    display: flex;
    align-items: center;
    position: relative;
}

.title-info {
    width: 240px;
}

#shop-info .text {
    width: 55%;
    background-color: #fff;
    padding: 100px 8% 100px 6%;
    position: absolute;
    top: 0;
    left: 0;
}

#shop-info .img {
    width: 58%;
    position: absolute;
    top: 168px;
    right: 0;
}

#shop-info .img img {
    width: 100%;
    height: 430px;
    object-fit: cover;
}

#shop-info .info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

#shop-info .info dt {
    width: 20%;
    margin-top: 10px;
}

#shop-info .info dt:first-of-type {
    margin-top: 0;
}

#shop-info .info dd {
    width: 80%;
    margin-top: 15px;
}

#shop-info .info dd:first-of-type {
    margin-top: 0;
}

#shop-info .info .add {
    margin-left: 20%;
    margin-top: 5px;
}

.map {
    text-decoration: underline;
}

/*-------------------------------------------
Calendar
-------------------------------------------*/
#calendar {
    margin-bottom: 120px;
}

.title-calendar {
    width: 240px;
}

.calendar-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#calendar table {
    width: 35%;
    padding: 10px;
    text-align: right;
}

#calendar th,
#calendar td {
    background: #fff;
    padding: 0.5em;
}

.cellTableHead {
    text-align: center;
    background: #fff;
}

.cellSaturday {
    background: #bed2d6 !important;
}

.cellTuesday,
.cellHoliday {
    background: #f8c2c2 !important;
}

.calendar-text {
    text-align: right;
    width: 70%;
    margin: 0 auto;
}

.calendar-text span {
    font-size: 0.8rem;
    margin: 0 5px;
}

.day-red::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #f8c2c2;
    display: inline-block;
}

.day-blue::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #bed2d6;
    display: inline-block;
}

/*-------------------------------------------
footer
-------------------------------------------*/
#footer {
    background-color: #fff;
    padding-bottom: 20px;
}

#footer .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

#footer .flex .logo {
    margin-right: 0;
}

.footer-nav ul li {
    padding: 1em 1.2em;
}

#footer .copyright {
    font-size: 0.625rem;
    text-align: center;
}

/*-------------------------------------------
  News一覧、詳細
  -------------------------------------------*/
.news-header {
    background: #ffffffbf;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-bg {
    background-image: url(/img/brume-cafe-03.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 20px;
    margin-bottom: 80px;
}

.news-header .header-logo {
    width: 240px;
    margin-left: 20px;
}

.news-list {
    margin-top: 80px !important;
}

.news-list ul li {
    margin-bottom: 2.5em;
    display: flex;
}

.mainvisual-news {
    height: 50vh;
}

.news-reserve {
    width: 180px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #004D6A;
    color: #fff;
    text-decoration: none;
    transition: all 0.65s;
    letter-spacing: 0.2rem;
    font-family: "Quicksand", serif;
    margin-right: 20px;
}

.news-reserve:hover {
    background-color: #159895;
}

.news-list h3 {
    margin-top: 5px;
    margin-bottom: 30px;
}

.eyecatch img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 30px;
}

.news-text {
    margin-bottom: 30px;
}

/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 900px) {
    .logo {
        width: 240px;
        margin: 8px 0;
    }

    .section-title {
        margin: 30px 0;
    }

    .loading__logo {
        width: 60%;
    }

    /*-------------------------------------------
  ヘッダー
  -------------------------------------------*/
    #header .inner {
        flex-direction: column;
        align-items: flex-start;
    }

    #header .contact {
        display: none;
    }

    /*-------------------------------------------
  Mainvisual
  -------------------------------------------*/
    #mainvisual {
        margin-bottom: 80px;
    }

    .mv-logo {
        width: 60%;
    }

    .slideshow-fade {
        img {
            height: 100%;
            object-fit: cover;
        }
    }

    .scroll {
        font-size: 0.6rem;
        bottom: 25%;
    }

    /*-------------------------------------------
  News
  -------------------------------------------*/
    #news {
        margin-bottom: 80px;
        padding: 20px;
    }

    .title-news {
        width: 120px;
    }

    #news .list {
        flex-direction: column;
    }

    #news .list li {
        width: 100%;
        border-right: none;
        padding: 10px 0;
        margin-bottom: 20px;
        flex-direction: column;
    }

    /*-------------------------------------------
  About
  -------------------------------------------*/
    #about {
        flex-direction: column;
        margin-bottom: 80px;
    }

    .title-concept {
        width: 160px;
    }

    #about .img {
        width: 100%;
        margin-bottom: 30px;
    }

    #about .img img {
        height: 300px;
    }

    #about .text {
        width: 100%;
        padding: 0 16px;
    }

    /*-------------------------------------------
  Menu
  -------------------------------------------*/
    #menu {
        margin-bottom: 80px;
    }

    .title-menu {
        width: 120px;
    }

    #menu .flex {
        flex-direction: column;
        padding: 0;
    }

    #menu .flex .left {
        width: 100%;
        margin: 0 0 30px 0;
    }

    #menu .flex .right {
        width: 100%;
    }

    #menu .flex .item {
        text-align: center;
        margin-bottom: 30px;
    }

    #menu .flex .title {
        text-align: left;
    }

    /*-------------------------------------------
  Recommend
  -------------------------------------------*/

    #recommend {
        margin-bottom: 80px;
    }

    .title-recommend {
        width: 210px;
    }

    .swiper {
        padding-left: 0;
    }

    .lb-image {
        width: 300px !important;
        height: 239px !important;
    }

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

    #shop-info {
        height: auto;
        flex-direction: column;
        position: static;
        margin-bottom: 80px;
    }

    #shop-info .text {
        width: 100%;
        padding: 40px 20px 80px;
        position: static;
    }

    #shop-info .img {
        width: 80%;
        padding: 0;
        position: static;
        margin: -60px 0 0 auto;
    }

    #shop-info .info {
        flex-direction: column;
    }

    #shop-info .info dt {
        width: 100%;
        margin-top: 20px;
    }

    #shop-info .info dd {
        width: 100%;
        margin-top: 5px;
        padding-left: 14px;
    }

    #shop-info .info dd:first-of-type {
        margin-top: 5px;
    }

    #shop-info .info .add {
        margin-left: 0;
    }

    #calendar {
        margin-bottom: 80px;
    }

    /*-------------------------------------------
  footer
  -------------------------------------------*/
    #footer .flex {
        flex-direction: column;
    }

    .sns-icons {
        flex-direction: row !important;
    }

    #footer .flex .logo {
        margin: 0 auto 20px;
    }
}

@media screen and (max-width: 515px) {
    #calendar table {
        width: 100%;
    }

    .calendar-box {
        flex-direction: column;
        align-items: center;
    }

    .calendar-text {
        width: 80%;
    }

    .news-header .header-logo {
        width: 135px;
        margin-left: 15px;
    }

    .reserve {
        width: 135px;
    }

    .news-reserve {
        width: 140px;
        margin-right: 10px;
    }
}