@charset "UTF-8";
html{
    font-size: 62.5%;
}
body{
    font-size: 1.5rem;
    min-height: 0vw;
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    background-color: #f2f2f2;
}
a{
    color: #000;
}
img{
    width: 100%;
    vertical-align: bottom;
}
.wrap{display: flex;}
.pc_none{display: none;}
.sp_none{display: block;}

.BaseFont01{
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
.BaseFont02{
    font-family: "Poppins", sans-serif;
    font-style: normal;
}

.inner{
    max-width: 2500px;
    margin: 0 auto;
}

/*見出しanimation*/
.animeTxt .title_bg{
    position: relative;
    display: inline-block;
    margin-top: 12px;
}
.animeTxt.is-active .title_bg::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    transform-origin: left center;
    animation: flow 3s cubic-bezier(0.22, 1, 0.6, 1)forwards;
}
.animeTxt .title_bg .title_in{
    position: relative;
    color: #000;
    font-weight: bold;
    padding: 5px 18px;
    display: inline-block;
    z-index: 1;
}
@keyframes flow{
    0%{
        transform: scaleX(0) translateX(-5%);
        opacity: 0;
    }
    30%{
        transform: scaleX(1) translateX(0);
    }
    100%{
        transform: scaleX(1) translateX(0);
    }
    30%, 100%{
        opacity: 1;
    }
}
 
/*title*/
.title h2{
    font-size: 6rem;
    margin-bottom: 6px;
}
.title p{
    font-size: 1.6rem;
    letter-spacing: .1em;
}
.inner .title p .title_in{
    font-weight: 400;
}
/*more btn*/
.moreBtn{
    display: -ms-inline-grid;
    display: -moz-inline-grid;
    display: inline-grid;
    position: relative;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #000;
    border: solid 1px #000;
    color: #FFF;
    width: 120px;
    height: 33px;
    border-radius: 80px;
    overflow: hidden;
    z-index: 1;
}
.moreBtn p::after{
    content: '';
    background-color: #FFF;
    color: #000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: left top;
    transform: scale(0 ,1);
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
}
.moreBtn:hover p{
    color: #000;
}
.moreBtn:hover p::after{
    transform: scale(1, 1);
}

/*fadein*/
.fadeIn{
    opacity: 0;
}
.fadeInUp{
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
    animation-duration: 1.4s;
    -webkit-animation-duration: 1.4s;
    animation-fill-mode: forwards; 
    -webkit-animation-fill-mode: forwards;
}
@keyframes fadeInUp{
    0%{
        opacity: 0;
        transform: translateY(100px);
        -webkit-transform: translateY(100px);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0);
    }
}
/*-----------------------------------
//  header
/-----------------------------------*/
.sp_header{ display: none; }
.pc_header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    mix-blend-mode: difference;
    filter: invert(1);
    width: 94%;
    max-width: 2500px;
    padding: 20px 3%;
    z-index: 9999;
    left: 50%;
    transform: translateX(-50%);
}
.pc_header .header_logo{
    width: 230px;
}
.pc_header nav{
    width: 90%;
    text-align: end;
    text-align: right;
}
.pc_header nav a,
.header_contents a{
    font-size: 1.7rem;
    margin-right: 2.4%;
    letter-spacing: .04em;
    padding: 1px 8px;
    position: relative;
}
.pc_header nav a:last-of-type{
    margin-right: 0;
    background-color: #000;
    color: #FFF;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 1.56rem;
}
.pc_header nav a::after,
.header_contents a::after{
    content: '';
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
}
.pc_header nav a:hover,
.header_contents a:hover{
    color: #FFF;
}
.pc_header nav a:hover::after,
.header_contents a:hover::after{
    transform: scale(1, 1);
}
.pc_header nav a:last-of-type:hover::after{
    transform: scale(0, 1);
}

/*-----------------------------------
//  Top page
/-----------------------------------*/
/*main_view*/
.main_view{
    position: relative;
    padding: 120px 5%;
}
.main_view .slider{
    width: 80%;
    margin: 0 0 0 auto;
}
.main_viewT_wrap{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.main_viewT01{
    font-size: 7rem;
}
.main_viewT02{
    font-size: 2.4rem;
    letter-spacing: .06em;
}
.main_view button{
    display: none!important;
}

/*what's somewhere*/
.top_what{
    padding: 90px 12%;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.top_what .what_title{
    width: 40%;
    margin-right: 4%;
}
.what_title h2{
    font-size: 4.5rem;
}
.top_what section{
    width: 52%;
    line-height: 2.5;
}


.top_img_btn{
    justify-content: center;
    align-items: flex-start;
}
.top_img_btn a{
    margin-right: 20px;
}
.top_img_btn a:last-of-type{
    margin-right: 0;
}
.top_img_btn a p{
    text-align: center;
    padding: 10px 0;
    letter-spacing: .1em;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.top_img_btn a p::after{
    content: '';
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: left top;
    transform: scale(0 ,1);
    transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
}
.top_img_btn a:hover p{
    color: #FFF;
}
.top_img_btn a:hover p::after{
    transform: scale(1, 1);
}

/*news*/
.top_news{
    padding: 150px 10%;
    justify-content: center;
    align-items: center;
}
.top_news_wrap{
    width: 30%;
}
.top_news_wrap .title{
    margin-bottom: 60px;
}
.news_list{
    width: 60%;
}
.news_list dl{
    display: flex;
    flex-wrap: wrap;
}
.news_list dl dt{
    width: 30%;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: solid 1px;
}
.news_list dl dd{
    width: 70%;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: solid 1px;
}
.top_news .sp_more{
    display: none;
}

/*restaurant*/
.top_restaurant{
    background-color: #000;
    color: #FFF;
}
.top_restaurant .title{
    padding: 40px 10%;
}
.slider02{
    overflow: hidden;
}
.slider02 li{
    margin: 0 1vw;
    position: relative;
    margin-bottom: 60px;
}
.slider02 li a{
    color: #FFF;
    display: block;
}
.Ritem a:hover::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
}
.Ritem a:hover::after{
    content: '';
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50% , -45%);
    background-size: contain;
    background-repeat: no-repeat;
}
.restaurant_marche a:hover::after{
    background-image: url(../img/saros_marche_rogo.png);
    width: 140px;
    height: 60px;
}
.restaurant_xato a:hover::after{
    background-image: url(../img/xato_rogo.png);
    width: 80px;
    height: 80px;
}
.restaurant_yuno a:hover::after{
    background-image: url(../img/yuno_logo.png);
    width: 70px;
    height: 100px;
}
.restaurant_tsubame a:hover::after{
    background-image: url(../img/tsubame_logo.png);
    width: 160px;
    height: 50px;
}
.restaurant_mabo a:hover::after{
    background-image: url(../img/mabotan_rogo.png);
    width: 60px;
    height: 120px;
}
.restaurant_alan a:hover::after{
    background-image: url(../img/alan_rogo.png);
    width: 86px;
    height: 50px;
}
.restaurant_eureka a:hover::after{
    background-image: url(../img/eureka_rogo.png);
    width: 120px;
    height: 30px;
}
.restaurant_lamian a:hover::after{
    background-image: url(../img/lamian_rogo_white.png);
    width: 100px;
    height: 50px;
}
.restaurant_ien a:hover::after{
    background-image: url(../img/ien_rogo.png);
    width: 66px;
    height: 50px;
}

.slider02 li p{
    margin: 10px 0 4px;
    font-size: 1.7rem;
}
.slider02 li span{
    font-size: 1.4rem;
    letter-spacing: .05em;
    color: #e0e0e0;
}

.scroll_item p{
    font-size: 1.6rem;
    margin-top: 15px;
    margin-bottom: 2px;
}
.scroll_item span{
    font-size: 1.25rem;
    letter-spacing: .1em;
}
.btn_wrap{
    text-align: center;
    padding-bottom: 60px;
}
.btn_wrap .moreBtn{
    background-color: #FFF;
    color: #000;
    border: solid 1px #FFF;
}
.top_restaurant .moreBtn p::after{
    background-color: #000;
}
.top_restaurant .moreBtn:hover p{
    color: #FFF;
}


.slick-dots{
    bottom: -35px;
}
.slick-dots li button:before{
    color: #FFF;
    font-size: 6rem;
}
.slick-dots li.slick-active button:before{
    color: #FFF;
}
.slick-prev, .slick-next{
    display: none;
}
.slick-dots li.slick-active button:before{
    opacity: 1;
}
/*--------------------------------
/   Column
/-------------------------------*/
.column{
    padding: 120px 8%;
}
.column_wrap{
    justify-content: center;
}
.column_recruit,
.column_contact{
    position: relative;
    transition: all .3s;
}
.column_recruit{
    margin-right: 4%;
}
.column_recruit::before,
.column_contact::before{
    content: '';
    background-color: rgba(0, 0, 0, .3);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.column_recruit:hover::before,
.column_contact:hover::before{
    background-color: rgba(0,0,0, .6);
}
.column_title{
    color: #FFF;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
}
.column_title h2{
    font-size: 3.4rem;
    letter-spacing: .05em;
}
/*--------------------------------
/   Footer
/-------------------------------*/
.border{
    border-top: solid 1px #000;
}
.footer_wrap{
    justify-content: space-between;
    align-items: flex-end;
    align-items: end;
    padding: 4%;
    flex-wrap: wrap;
}
.footer_wrap .wrap{
    width: 30%;
}
.footer_wrap ul {
    width: 50%;
}
.footer_wrap li{
    font-size: 1.65rem;
    margin-bottom: 8px;
}
.footer_wrap li:last-of-type{
    margin-bottom: 0;
}
.footer_wrap li a{
    display: block;
}


/*================================
/   Company
/================================*/
.page{
    padding: 180px 0;
}
.page .title{
    padding: 0 7%;
    margin-bottom: 60px;
}
/*current*/
.page_view{
    display: flex;
    flex-wrap: wrap;
    padding: 0 7%;
    margin-bottom: 40px;
    text-align: center;
}
.page_item{
    width: 100px;
    margin: 10px 20px 10px 0;
    border: solid 1px;
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 1.56rem;
    background-color: #f2f2f2;
}
.page_view li:last-of-type{
    margin-right: 0;
}
.page_item a{
    color: #000;
}

.page_item.current{
    background-color: #000;
    color: #FFF;
}

.page_item.current a{
    color: #FFF;
}

/*next btn*/
.next_btn{
    border-top: solid 1px;
    border-bottom: solid 1px;
    margin-bottom: 40px;
    height: 240px;
}
.next_btn img{
    width: auto;
    height: 100%;
}
.next_btn .nextT{
    position: relative;
    width: 100%;
    overflow: hidden;
}
.nextT::after{
    content: '';
    background-color: #000;
    color: #FFF;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: left top;
    transform: scale(0 ,1);
    transition: .3s cubic-bezier(0.45, 0.7, 0.42, 0.7);
    z-index: -1;
}
.next_btn .nextT div{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    width: 60%;
}
.next_btn .nextT h3{
    font-size: 4rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.next_btn .nextT p{
    font-size: 1.7rem;
    letter-spacing: .1em;
}
.next_btn .nextT h3::after{
    content: '';
    width: 40px;
    height: 8px;
    border-bottom: solid 1px;
    border-right: solid 1px;
    transform: skew(45deg);
    margin-left: 20px;
}
.next_btn:hover .nextT{
    color: #FFF;
}
.next_btn:hover .nextT::after{
    transform: scale(1, 1);
}


/*概要*/
.company_overview{
    padding: 0 10%;
    margin-bottom: 180px;
}
.sub_title h3{
    font-size: 4rem;
}
.sub_title p{
    font-size: 1.7rem;
    letter-spacing: .1em;
}
.company_overview dl{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 80px;
}
.company_overview dl dt{
    width: 30%;
    border-bottom: solid 1px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    padding-left: 3%;
}
.company_overview dl dd{
    width: 50%;
    border-bottom: solid 1px;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.company_overview dl dd span{
    display: inline-block;
}

/*代表挨拶*/
.message_wrap{
    margin-top: 80px;
    justify-content: space-between;
    align-items: center;
}
.message_wrap img{
    width: 38%;
}
.message_wrap section{
    width: 52%;
    line-height: 2.5;
}
.message_wrap section p:last-of-type{
    margin-top: 40px;
}
.message_philosophy{
    margin: 150px 0;
}
.message_vision h5{
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: .12em;
    margin: 40px 0 20px;
}
.message_vision section{
    line-height: 2.5;
    width: 90%;
}
.message_next_btn .nextT div{
    width: 70%;
}

/*沿革*/
.history_page .page{
    padding-bottom: 0;
}
.history_overview{
    justify-content: space-between;
}
.history_wrap{
    width: 74%;
    padding: 180px 0 180px 3%;
}

.arrow{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0 0 60px;
    padding-right: 7%;
    position: relative;
}
.prev-arrow,
.next-arrow{
    display: block;
    width: 50px;
    height: 50px;
    background-color: #000;
    transition: all .3s ease;
    cursor: pointer;
    position:relative;
}
.prev-arrow{
    transform: rotate(180deg);
    margin-right: 40px;
}
.prev-arrow::before,
.next-arrow::before{
    content: "";
    width: 12px;
    height: 12px;
    border-right: 2px solid #FFF;
    border-top: 2px solid #FFF;
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    margin:auto;
    transform:rotate(45deg);
}

.history_line{
    border-bottom: solid 1px;
    position: relative;
    margin-bottom: 60px;
    height: 20px;
}
.history_line::before{
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #FFF;
    border: solid 1px;
    position: absolute;
    top: 10px;
    left: 0;
}
.slider03 section{
    padding-right: 30px;
}
.slider03 section span{
    display: block;
    margin-bottom: 12px;
    font-size: 2rem;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    font-style: normal;
}
.slider03 section p{
    margin-bottom: 40px;
}
.slider03 section img{
    width: 98%;
}


.overview_wrap{
    width: 22%;
    border-left: solid 1px;
    padding: 90px 0;
}
.overview_wrap .sub_title{
    padding: 0 5%;
}
.overview_wrap .sub_title h3{
    font-size: 3rem;
}
.overview_wrap .sub_title p{
    font-size: 1.6rem;
}
.overview_wrap ul{
    margin-top: 40px;
    padding: 0 5%;
}
.overview_wrap ul li{
    margin-bottom: 20px;
}
.overview_wrap ul li span{
    font-size: 1.45rem;
    letter-spacing: .06em;
}

/*================================
/   Restaurant
/================================*/
.restaurant .page{
    padding-bottom: 60px;
}
.category{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.category_item{
    font-size: 1.65rem;
    border: solid 1px;
    display: inline-block;
    padding: 6px 2%;
    border-radius: 70px;
    cursor: pointer;
    margin: 8px;
}
.category_item.is-show{
    color: #FFF;
    background-color: #000;
    border-radius: 70px;
}
.is-hide{
    display: none;
}

.shop_list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    padding: 60px 5%;
    justify-items: center;
}
.shop_item{
    width: 94%;
    margin-bottom: 80px;
}
.shop_item span{
    display: block;
    font-size: 1.45rem;
    letter-spacing: .04em;
    padding: 10px 5px;
    margin-bottom: 10px;
    border-bottom: solid 1px;
}
.shop_item p{
    font-size: 1.65rem;
    padding: 0 5px;
}
/*================================
/   Contact page
/================================*/
.contact_page{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 60px;
}
#formWrap{
    padding: 0 10% 180px
}
.contact_text{
    margin: 60px 0;
}

.contact_info a{
    display: grid;
    align-items: center;
    justify-content: center;
    width: 260px;
    height: 58px;
    border: solid 1.5px;
    letter-spacing: .1em;
}
.formTable{
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.formTable dt{
    width: 35%;
    border-bottom: solid 1.5px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}
.formTable dd{
    width: 63%;
    border-bottom: solid 1.5px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    overflow: hidden;
}
.formTable input, .formTable select, .formTable textarea{
    padding: 10px;
    border: none;
    background-color: #FFF;
}
.is_requisite{
    color: #FFF;
    background-color: #000;
    font-size: clamp(1.1rem,calc(0.12vw + 1.1rem),1.6rem);
    padding: 1px 0 2px;
    border-radius: 40px;
    margin-left: 5px;
    width: 50px;
    text-align: center;
    min-height: 0vw;
}
.check_btn input {
    width: 80%;
    max-width: 300px;
    height: 54px;
    cursor: pointer;
    font-size: 1.4rem;
    position: relative;
}

.formTable input:focus-visible, .formTable select:focus-visible, .formTable textarea:focus-visible{
    outline: none;
}
.formTable .Ctext_area input{
    height: 26px;
    width: 60%;
}
.check_btn input:first-child{
    background-color: #000;
    color: #FFF;
    border: solid 1.5px #000;
    letter-spacing: 1em;
    text-align: center;
    transition: all 0.5s;
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}
.check_btn input:first-child:hover {
    color: #101010;
    background-color: #FFF;
    border: solid 1.5px #000;
}
.check_btn input:last-child {
    background-color: #FFF;
    color: #101010;
    border: solid 1px #FFF;
    letter-spacing: 1em;
    text-align: center;
}
.check_btn input:last-child:hover {
    background-color: #FFF;
    border: solid 1px #101010;
}

/*--------------------------------
/   Privacy Policy page
/-------------------------------*/
.policy_wrap{
    padding: 180px 6% 120px;
    max-width: 1200px;
    margin: 0 auto;
}
.policy{
    margin: 80px 0;
}
.policy01{
    margin-bottom: 40px;
}
.policy01 p:first-of-type{
    font-size: clamp(1.4rem,calc(0.5vw + 1.5rem),4rem);
    margin-bottom: 12px;
    border-bottom: solid 1.5px #a8a8a8;
    padding-bottom: 6px;
    min-height: 0vw;
}
.policy01 span{
    display: block;
}
.policy_data{
    margin-top: 80px;
}




/*--------------------------------
/   YUNO page
/-------------------------------*/
.yuno_page{
    width: 100%;
    text-align: center;
}
.yuno_page img{
    max-width: 180px;
}
.yuno_page p{
    margin: 30px 0 60px;
    line-height: 2.5;
    padding: 0 5%;
}
.yuno_list{
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto 68px;
    max-width: 2000px;
    padding-top: 120px;
}
.yuno_item{
    width: 25%;
    text-align: center;
}
.yuno_item h5,.yuno_item p,.yuno_item a:last-of-type{
    padding: 0 2%;
}
.yuno_item a{
    cursor: pointer;
}
.yuno_item h5{
    margin: 20px 0;
    font-size: clamp(1.3rem,calc(0.5vw + 1.3rem),2rem);
    letter-spacing: .05em;
    text-align: center;
    font-weight: 400;
    min-height: 0vw;
}
.yuno_item .moreBtn{
    height: 40px;
    margin: 20px auto;
}