@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
*:focus {
    outline: none;
}
html {
    font-size: 62.5%;
    margin: 0 !important;
    padding: 0 !important;
}
a {
    text-decoration: none;
    color: #fff;
}
img {
    width: 100%;
    height: 100%;
    vertical-align: middle;
}
li {
    text-align: left;
    list-style: none;
}

/*//////////////////
pc/smp
////////////////////*/

body {
    font-style: normal;
    word-break: break-all;
    font-size: 1.3rem;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.8;
    font-family: sans-serif;
    background-color: #222;
}

/*//////////////////
Loading Screen
////////////////////*/

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease-out;
    backdrop-filter: blur(10px);
}

#loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-logo {
    width: 200px;
    animation: logoFadeIn 0.6s ease-in;
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media screen and (max-width: 767px) {
    .loading-logo {
        width: 150px;
    }
}


.pc{
    display: block;
}
.smp{
    display: none;
}
@media screen and (max-width: 979px) {
    .pc{
        display: none;
    }
    .smp{
        display: block;
    }
}

.mb-30{
    margin:0 auto 30px !important;
}
.mb-60{
    margin:0 auto 60px !important;
}
.mb-80{
    margin:0 auto 80px !important;
}
.mb-120{
    margin:0 auto 120px !important;
}
.mb-150{
    margin:0 auto 150px !important;
}
.mt-40{
    margin:40px auto 0;
}
.margin-auto{
    margin: auto;
}
.w-45{
    width: 45%;
}
.w-90{
    width: 90%;
}
.w-100{
    width: 100%;
}
.flex-start{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
.align-center{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.justify-center{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.direction-column{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
.space-between{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.button{
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    padding: 15px;
    border-radius: 3px;
    display: block;
    text-align: center;
    letter-spacing: .15rem;
    font-size: 1.2rem;
}

.button.bg-white{
    background-color: #fff;
    color: #000;
}
.button.bg-black{
    background-color: #000;
    color: #fff;
}
.button.bg-brown{
    background-color: #83785a;
    color: #fff;
}
.button.bg-green{
    background-color: #5e8a68;
    color: #fff;
}
.button.bg-blue{
    background-color: #5e8c92;
    color: #fff;
}
.button.bg-instagram{
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    color: #fff;
}
.button.bg-map{
    background: 
    linear-gradient(135deg, #bf6767 8%, #bf6767 0%, transparent 0%, transparent 0%, #4183be 0%, #4183be 15%, transparent 0%),
    linear-gradient(-45deg, transparent -60%, #bfae6c 10%, #bfae6c 0%, transparent 0%, transparent 0%, #5c9a69 0%, #5c9a69 0%);
    color: #fff;
}
.button.bg-line{
    background-color: #06c755;
    color: #fff;
}
.button.bg-white-color-blue{
    background-color: #fff;
    color: #4183be;
}
.button.bg-white-color-brown{
    background-color: #fff;
    color: #83785a;
}


.single--ourbrands-contact-button{
    margin:0 auto 30px;
    background-color: #5e8a68;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
}
.single--ourbrands-contact-button img{
    width: 20px;
    margin: 0 10px 0 0;
}


.bg-wrap{
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: -1;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.bg-wrap::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.bg-video{
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.content-wrap{
    width: 360px;
    background-color: #222;
    position: absolute;
    right: 15%;
}

.hero-wrap{
    position: relative;
    margin: 0 0 70px;
}

.hero-wrap .news{
    position: absolute;
    bottom: 40px;
    background-color: #00000095;
    color: #fff;
    padding:15px 15px;
    border-radius: 3px;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    z-index: 3;
}
.hero-wrap .news .title{
    margin: 0 10px 0 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.2rem;
    font-weight: 600;
}
.hero-wrap .news .title .date{
    margin: 0 10px 0 0;
    font-family: "Outfit", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
}
.hero-wrap .news .contents{
    text-decoration: underline;
}
.hero-wrap .banner{
    position: relative;
}

/* バナーSwiper */
.banner-swiper{
    width: 100%;
}

.banner-swiper .swiper-slide{
    width: 100%;
}

.banner-swiper .banner-media{
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.banner-swiper .banner-media img,
.banner-swiper .banner-media video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* オーバーレイ */
.banner .banner-overlay{
    display: none;
}


.hero-wrap .banner .banner-title{
    display: none;
}


.section-wrap{
    margin: 0 0 100px;
    background-color: #222;
}
.section-wrap .section-title{
    font-family: "Cormorant Garamond", serif;
    font-size: 6rem;
    font-weight: 400;
    line-height: 1;
    width: 90%;
    margin: 0 auto 30px;
}
.section-wrap .section-title > span{
    font-family: serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1;
    display: block;
    margin: 10px 0 0;
}

.site-title{
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 2;
    width: 12%;
}

.archive-site-title{
    position: absolute;
    top: 47%;
    left: 30%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 2;
}
.archive-site-title h2{
    font-family: "Cormorant Garamond", serif;
    font-size: 4vw;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
}
.archive-site-title h2 > span{
    font-family: serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1;
    display: block;
}

.single-ourbrands-site-title{
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 2;
}
.single-ourbrands-site-title img{
    height: 15vw;
}

.under-header-section{
    margin: 60px 0 0;
}
.under-header-section .section-title{
    font-family: "Cormorant Garamond", serif;
    font-size: 6rem;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1;
    width: 90%;
    margin: 0 auto 30px;
}
.under-header-section .section-title > span{
    font-family: serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1;
    display: block;
    margin: 10px 0 0;
}




#top--about-section{
    padding: 80px 0 100px;
    color: #fff;
    position: relative;
    background-size: cover;
    background-position: center;
}
#top--about-section::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 1;
}
#top--about-section .contents-wrap{
    position: relative;
    z-index: 2;
}

#top--about-section .contents h3{
    margin: 0 0 30px;
    font-family: serif;
    font-size: 2.4rem;
    font-weight: 300;
}
#top--about-section .contents p{
    line-height: 1.8;
    font-family: serif;
    font-weight: 300;
}


.img-links{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 20px 0;
    margin: -1px 0 0;
}
.img-links-inner{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 80%;
}
.img-links-inner img{
    width: 50%;
    object-fit: cover;
    margin: 0 20px 0 0;
}
.img-links-text h5{
    font-family: "Cormorant Garamond", serif;
    font-size: 3rem;
    font-weight: 400;
}
.img-links-text p{
    font-size: 1.4rem;
    font-weight: 400;
}
.img-links-arrow{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 20px;
    height: 20px;
}

.news-link{
    display: flex;
    flex-direction: column;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 20px 0;
    margin: -1px 0 0;
}
.news-link .news-link-date-cat{
    display: flex;
    align-items: center;
    margin: 0 0 10px;
}
.news-link .news-link-date-cat .date{
    margin: 0 10px 0 0;
    font-family: "Outfit", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: .15rem;
}
.news-link .news-link-date-cat .category{
    font-size: 1rem;
    padding: 3px 10px;
    background-color: #83785a;
    color: #fff;
    border-radius: 2px;
}

/* カテゴリごとの色分け */
.news-link .news-link-date-cat .category.cat-info {
    background-color: #fff;
    color: #000;
}
.news-link .news-link-date-cat .category.cat-saito {
    background-color: #835a5a;
}
.news-link .news-link-date-cat .category.cat-karasawa {
    background-color: #5a8382;
}

/* カテゴリプルダウン */
.category-pull-down {
    background-color: #2a2a2a;
    border: 1px solid #444;
    border-radius: 3px;
    overflow: hidden;
}

.category-pull-down-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    background-color: #333;
    transition: background-color 0.3s ease;
}

.category-pull-down-header:hover {
    background-color: #3a3a3a;
}

.category-pull-down-header span:first-child {
    font-size: 1.4rem;
    font-weight: 400;
}

.category-arrow {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.category-pull-down.active .category-arrow {
    transform: rotate(180deg);
}

.category-pull-down-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.category-pull-down.active .category-pull-down-list {
    max-height: 500px;
}

.category-pull-down-list li {
    border-top: 1px solid #444;
}

.category-pull-down-list li a {
    display: block;
    width: 100%;
    padding: 15px 20px;
    color: #fff;
    font-size: 1.3rem;
    transition: background-color 0.3s ease;
}

.category-pull-down-list li a:hover {
    background-color: #3a3a3a;
}

.top--ourbrands-swiper .swiper-wrapper {
    transition-timing-function: linear;
}
.top--ourbrands-swiper .swiper-slide {
    position: relative;
}
.top--ourbrands-swiper .swiper-slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 3px;
    z-index: 1;
}
.top--ourbrands-swiper .swiper-slide .bg-img img {
    object-fit: cover;
    width: 100%;
    border-radius: 3px;
    height: 300px;
}
.top--ourbrands-swiper .swiper-slide .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.top--ourbrands-swiper .swiper-slide .logo img{
    height: 160px;
    object-fit: contain;
}



.under-border-button-wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #fff;
    padding: 20px 0;
    width: 90%;
    margin: 0 auto;
}
.under-border-button-wrap > img{
    width: 20px;
    height: 20px;
}
.under-border-button-wrap > h3{
    font-family: serif;
    font-weight: 300;
}

#archive--ourbrands-section .brand-img{
    margin: 0 0 20px;
    position: relative;
}
#archive--ourbrands-section .brand-img .bg-img {
    position: relative;
}
#archive--ourbrands-section .brand-img .bg-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}
#archive--ourbrands-section .brand-img .bg-img img {
    object-fit: cover;
    width: 100%;
    height: 220px;
    display: block;
}
#archive--ourbrands-section .brand-img .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
#archive--ourbrands-section .brand-img .logo img {
    height: 120px;
    object-fit: contain;
}
#archive--ourbrands-section .link-list {
    margin: 0 0 60px;
    display: block;
}
#archive--ourbrands-section .link-list p{
    font-size: 1.4rem;
    font-family: serif;
    font-weight: 300;
    line-height: 1.8;
}


.reserved-call-button-wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.reserved-call-button-wrap .button{
    width: 46%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.reserved-call-button-wrap .button > img{
    width: 20px;
    height: 20px;
    margin: 0 10px 0 0;
}

#single--ourbrands-section .shop-name-title{
    font-family: serif;
    font-size: 2.4rem;
    font-weight: 400;
    width: 90%;
    margin: 0 auto 20px;
    line-height: 1.25;
}
#single--ourbrands-section h3{
    margin: 0 0 20px;
    font-family: serif;
    font-size: 2.4rem;
    font-weight: 300;
}

#single--ourbrands-section .single--ourbrands-main-swiper img {
    object-fit: cover;
    width: 100%;
    height: 200px;
}

#single--ourbrands-section .single--ourbrands-main-text p{
    font-size: 1.4rem;
    font-weight: 400;
    margin: 10px;
    font-family: serif;
}

#single--ourbrands-section .single--ourbrands-main-swiper-thumbnail{
    padding:0 10px;
}

#single--ourbrands-section .single--ourbrands-main-swiper-thumbnail img {
    object-fit: cover;
    width: 100%;
    height: 60px;
}

#single--ourbrands-section .single--ourbrands-main-swiper-thumbnail .swiper-slide {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

#single--ourbrands-section .single--ourbrands-main-swiper-thumbnail .swiper-slide-thumb-active {
    opacity: 1;
}

#single--ourbrands-section .single--ourbrands-cuisine-swiper img {
    object-fit: cover;
    width: 100%;
    height: 200px;
}

#single--ourbrands-section .single--ourbrands-cuisine-text p{
    font-size: 1.4rem;
    font-weight: 400;
    margin: 10px;
    font-family: serif;
}

#single--ourbrands-section .single--ourbrands-cuisine-swiper-thumbnail{
    padding:0 10px;
}

#single--ourbrands-section .single--ourbrands-cuisine-swiper-thumbnail img {
    object-fit: cover;
    width: 100%;
    height: 60px;
}

#single--ourbrands-section .single--ourbrands-cuisine-swiper-thumbnail .swiper-slide {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

#single--ourbrands-section .single--ourbrands-cuisine-swiper-thumbnail .swiper-slide-thumb-active {
    opacity: 1;
}

.shop-info-wrap{
    display: flex;
    flex-direction: column;
    margin: 0 auto 30px;
    width: 90%;
}
.shop-info-item{
    display: flex;
    flex-direction: column;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 20px 0;
    margin: -1px 0 0;
}
.shop-info-item h6{
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 5px;
}
.shop-info-boss{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin: 0 auto 30px;
    width: 90%;
    
}
.shop-info-boss .img{
    width: 48%;
}
.shop-info-boss .career{
    width: 48%;
}
.shop-info-boss .career h6{
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 0 10px;
    font-family: serif;
}
.shop-info-boss .career p{
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.8;
    font-family: serif;
}



/* スクロール時の固定予約ボタン */
.sticky-reserved-call-button-wrap {
    position: fixed !important;
    bottom: -200px !important;
    right: 15%;
    width: 360px;
    display: flex !important;
    gap: 10px;
    padding: 15px;
    background-color: rgba(34, 34, 34, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: bottom 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
}

.sticky-reserved-call-button-wrap.show {
    bottom: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.sticky-reserved-call-button-wrap .button {
    flex: 1;
}

.sticky-reserved-call-button-wrap .button img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}


#single--news-section .single-news-wrap{
    margin: 0 auto 80px;
}
#single--news-section .single-news-wrap .thumb{
    margin: 0 0 20px;
}
#single--news-section .single-news-wrap .thumb img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#single--news-section .single-news-wrap .date{
    font-size: 1.2rem;
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    width: 90%;
    margin: 0 auto 10px;
}
#single--news-section .single-news-wrap .title{
    font-size: 2rem;
    font-weight: 400;
    margin: 0 0 20px;
    width: 90%;
    margin: 0 auto 20px;
    font-family: serif;
    line-height: 1.5;
}
#single--news-section .single-news-wrap .content{
    width: 90%;
    margin: 0 auto 30px;
}

.pagination{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
    padding: 20px 0;
}
.pagination .page-numbers{
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0 10px;
    padding: 5px 10px;
    border: 1px solid #fff;
    border-radius: 3px;
}
.pagination .page-numbers.current{
    background-color: #83785a;
    border: 1px solid #83785a;
    color: #fff;
}


.company-info-item{
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 20px 0;
    margin: -1px 0 0;
}
.company-info-item h5{
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 5px;
}
.company-info-item p{
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.8;
}


footer{
    padding: 80px 0 0;
    border-top: 1px solid #333;
}
footer .footer-wrap{
    width: 90%;
    margin: 0 auto 30px;
}
footer .footer-wrap .footer-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
.footer-content-item{
    margin: 0 auto 20px;
}
.footer-content-item.logo{
    width: 100px;
    margin: 0 auto 40px;
}


@media screen and (max-width: 979px) {
    .content-wrap{
        width: 360px;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, 0);
        -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
    }
    .site-title{
        display: none;
    }
    .archive-site-title{
        display: none;
    }
    .single-ourbrands-site-title{
        display: none;
    }
    .hero-wrap .banner .banner-title{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        z-index: 2;
        display: block;
        width: 30%;
    }
    .banner .banner-overlay{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: 1;
        pointer-events: none;
        display: block;
    }
    .sticky-reserved-call-button-wrap {
        width: 100%;
        right: 0;
    }
}
@media screen and (max-width: 767px) {
    menu{
        display: none;
    }
    .bg-wrap{
        display: none;
    }
    .banner-swiper .banner-media{
        height: 80vh;
    }
    .content-wrap{
        width: 100%;
        position: relative;
        right: 0;
        background-color: #222;
    }
    .under-header-section{
        margin: 100px 0 0;
    }
    .bg-wrap{
        display: none;
    }
    .bg-video{
        display: none;
    }
    
    .sticky-reserved-call-button-wrap {
        width: 100%;
        right: 0;
    }

}