@charset "utf-8";

/*

※店舗一覧の開閉　全て見せたいため機能部分をコメントアウトしています。
使う時は、js/index.jsと、index.css↓の、js-accordion-body のdisplay:none; もコメントアウト外す！

*/


/*===================
ローディング
===================*/
/* ローディング全体 */
.loader {
  position: fixed;
  inset: 0;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  /* background: #2f3541; */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  /* transition: opacity 1s ease;
  filter: blur(0);
  transition: filter 1s ease; フォールバックにもなる */
}

/* 非表示状態 */
/* .loader.hidden {
  opacity: 0;
  visibility: hidden;
} */
.loader__logo {
  width: 171px;
  opacity: 0;
}



/*===================
fv
===================*/
.fv {
  position: relative;
  width: 100%;
  height:100vh;
  background-color: #CA5E46;
}
.fv__img{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  /* height: calc(100% + 80px ); */
  object-fit: cover;
  z-index: 0;
}
.fv__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fv__ttl{
  width: 80.15%;
   /* max-width: 928px; */
  max-width: 1026px;
  height: 596px;
  position: absolute;
  top:54%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 1;
}
body.fixed .fv__ttl{
  z-index: -10;
}
.fv__ttlInner{
  position: relative;
  width: 100%;
  height: 100%;
}

.fv__ttlText{
  font-family: instrument-serif, sans-serif;
  font-weight: 400;
  font-size: 130px;
  letter-spacing: -0.02em;
  color: #000;
  position: absolute;
  opacity: 0;
}
.fv__ttlText:nth-child(1){
  top: -20px;
  left: 0;
}
.fv__ttlText:nth-child(2){
  top: 17%;
  left: 60px;
}
.fv__ttlText:nth-child(3){
  bottom:22%;
  right: 87px;
}
.fv__ttlText:nth-child(4){
  bottom:0;
  right: 0;
}
.fv__ttlText span{
  opacity: 0;
}

#page-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 0;
    display: flex;
  align-items: center;
  justify-content: center;
}
#page-wrap #canvas{
  opacity: 0;
  filter: blur(30px);
  transition: opacity 2s ease, filter 2s ease;
  will-change: opacity, filter;
}
#page-wrap.show #canvas{
  opacity: 1;
  filter: blur(0);
}
 /*** canvas ***/
    #canvas {
      width: 340px;
      /* width: 26.56vw; */
      height: 488px;
      /* height: 38.12vw; */
      position:absolute;
      /* top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%); */
      z-index: 0 !important;
      /* background-color: #CA5E46; */
      position: relative;
    }

    canvas {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
}
   .multi-textures {
      /* position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%); */
      width: 340px;
      /* width: 26.56vw; */
      height: 488px;
      /* height: 38.12vw; */
      z-index: 0;
      display: flex;
      justify-content: center;
      align-items: center;
}
    .multi-textures img {
      display: none;
       width: 100%;
       height: 100%;
      object-fit: contain;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 0;
    }


.fv__textWrap {
  width: 100%;
  max-width: 363px;
  position: absolute;
  bottom: 47px;
  left: 40px;
  z-index: 5;
}
.fv__text {
  text-align: left;
  font-size: 14px;
  line-height: 1.78;
  color: #000000;
}


/* スクロールダウン */
.fv__scroll{
  position: absolute;
  bottom: 0;
  right:3.15%;
}
/* @import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap');
* {
  margin: 0;
  padding: 0;
} */
html {
  scroll-behavior: smooth;
}
.scroll_down {
  position: relative;
  width: 100%;
  height: 100vh;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.scroll_down:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(180deg,rgba(#000, 0) 0, rgba(#000, .8) 80%, rgba(#000, .8) 100%);
  }

.scroll_down a {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 13px;
  padding: 10px 10px 110px;
  transition: .2s;
  overflow: hidden;
  margin: auto;
}

.scroll_down a:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 90px;
  background: #ddd;
}

.scroll_down a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 90px;
  background: #000;
}

.scroll_down a:hover {
  opacity: .5;
}

#type01 a:after {
  animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes sdl01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}




@media screen and (max-width: 1280px) {
   #canvas {
      width: 340px;
      height: 488px;
    }

   .multi-textures {
      width: 340px;
      height: 488px;
  }
}
@media screen and (max-width: 1080px) {
  .fv__ttlText{
    font-size: 116px;
  }
  .fv__ttlText:nth-child(2){
    top: 17%;
  }
  .fv__ttlText:nth-child(3){
    bottom: 17%;
  }
}

@media screen and (max-width: 750px) {
  .fv{
    height: 100svh;
  }
  .fv__scroll{
    right: 35px;
  }
  .fv__textWrap{
    max-width: 259px;
    left: 22px;
    bottom: 28px;
  }
  .fv__text{
    font-size: 10px;
  }

  .fv__ttl{
    top:50%;
    width: 88.26%;
    /* height: 121.6vw; */
    height: 135.86vw;
    max-height: 600px;
  }
  .fv__ttlText{
    font-size: min(106px,21.3333vw);
  }
  
   .fv__ttlText:nth-child(1){
    /* top:0; */
    top: 5px;
    left:0;
  }
   .fv__ttlText:nth-child(2){
    /* top: 84px; */
    /* top:12.4vw; */
    top:10.4vw;
    left: auto;
    right: 0;
  }
  .fv__ttlText:nth-child(3){
    /* bottom:87px; */
    bottom: 13.5vw;
    right:auto;
    left: 0;
  }
  .fv__ttlText:nth-child(4){
     bottom: 0;
  }
  #canvas {
      width: 60.5333vw;
      height: 87.7333vw;
      max-width: 340px;
      max-height: 488px;
    }

   .multi-textures {
      width: 60.5333vw;
      height: 87.7333vw;
      max-width: 340px;
      max-height: 488px;
  }
  .scroll_down a:before{
    height: 76px;
  }
  .scroll_down a:after{
    height: 76px;
  }
  /* .fixedScrollBar{
    bottom: 2px;
    width: 24px;
    height: 70px;
    right: -2px;
  } */

/* 代用画像 */
  .fv__side{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
   width: 56.26vw;
  height: 80.26vw;
  opacity: 0  ;
   filter: blur(30px);
  transition: opacity 2s ease, filter 2s ease;
  will-change: opacity, filter;
  z-index: 1;
}
.fv__side.show{
  opacity: 1;
    filter: blur(0);
}
/* .fv__ttlText:nth-child(2){
  z-index: 100;
} */
}

@media screen and (max-width: 600px) {
 .fv__ttlText:nth-child(4){
     bottom: -3.8333vw;
  }
}

@media screen and (max-height: 750px) {

   .fv__textWrap {
    /* bottom: -50px; */
    bottom: 8px;
  }
   .scroll_down a:before{
    height: 60px;
  }
  .scroll_down a:after{
    height: 60px;
  }
  .fv__scroll{
    bottom: -20px;
  }
  .about{
    padding-top: 100px;
  background-color: #CA5E46;
  }
}
@media screen and (max-height: 660px) {
  /* .fv__ttl{
    max-height: 450px;
  } */
  .fv__ttlText:nth-child(2){
    top: 10%;
  }
  .fv__ttlText:nth-child(4) {
    bottom: -16px;
  }
}
/*===================
about
===================*/
.about{
  /* padding-top: 80px; */
}
.about__bg{
  background-image: url(../imgs/index/about_bg.jpg?v=1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about__wrap{
  padding-top: 115px;
  padding-bottom: 160px;
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 45px;
}
.about__ttl{
  color: #E8E8E8;
}
.about__textWrap{
  padding-top: clamp(50px,13.33vw,120px);
}
.about__text{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.75;
  letter-spacing:-0.02em;
  color: #E8E8E8;
}
.about__text:not(:last-child){
  margin-bottom: 50px;
}
.about__btm{
  background-color: #000;
}


@media screen and (max-width: 980px) {
  .about__wrap{
    padding-top: 102px;
    padding-bottom: 135px;
    display: block;
    max-width: 330px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 750px) {
  .about__ttl{
    font-size: 50px;
  }
  .about__text{
    font-size: 15px;
  }
  .about__text:not(:last-child) {
    margin-bottom: 35px;
}
}

/*===================
shopInfo
===================*/
.shopInfo{
  padding-top: 172px;
  padding-bottom: 180px;
  background-color: #F0E3DB;
}
.shopInfo__ttlWrap{
  margin-bottom: 80px;
}
.shopInfo__ttl--sub{
  font-size: 18px;
  letter-spacing: -0.02em;
  line-height: 1.66;
}
.shopInfo__select{
}
.shopInfo__select-list{
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 13px;
}
.shopInfo__select-btn{
  width: 205px;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  font-size: 15px;
  letter-spacing: -0.02em;
  line-height: 1.86 ;
}

.shopInfo__select-link{
  display: block;
  width: 100%;
  height: 100%;
  padding: 8px 0 8px 15px;
  position:relative;
  cursor: pointer;
  z-index: 20;
}
.shopInfo__select-link:hover{
  background-color: #DBCEC6;
}
.shopInfo__select-link::after{
  content: url(../imgs/index/shop_arrow.svg);
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
.shopInfo__head-ttl{
  margin-bottom: 90px;
  padding-bottom: 17px;
  font-size: 24px;
  letter-spacing: -0.02em;
  border-bottom: 1px solid #3C2E22;
}
.shopInfo__wrap{
  padding-top: 152px;
}
.shopInfo__list{
  max-width: 1015px;
  margin:  0 auto;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-wrap: wrap;
  gap: 98px 45px;
  position: relative;
}


.shopInfo__list-item{
  width: calc((100% - 90px) / 3 );
   position: relative;
    z-index: 11;
}

.shopInfo__list-ttl{
  margin-bottom: 15px;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.shopInfo__list-imgWrap{
  margin-bottom: 20px;
  width: 100%;
  height: 210px;
  overflow: hidden;
  position: relative;
}
.shopInfo__list-img{
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.5s;
}
.shopInfo__list-img:hover{
  transform: scale(1.2);
}
.shopInfo__list-date:not(:last-child){
  margin-bottom: 20px;
}
.shopInfo__list-dateFlex{
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 22px;
}
.shopInfo__list-dateFlex:not(:last-child){
  margin-bottom: 15px;
}
.shopInfo__list-date dt{
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.64;
}
.shopInfo__list-date dd{
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1.64;
}
.shopInfo__list-dateMap{
  position: relative;
  padding-right: 15px;
}
.shopInfo__list-dateMap::after{
   content: '';
    display: block;
    width: 10px;
    height: 10px;
    background-image: url(../imgs/common/shop_link-arrow.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    right :0;
    transform: translateY(-50%);

}

.shopInfo__list-btm{
  display: flex;
  justify-content: center;
  align-items: center;
  gap:20px;
}

.shopInfo__list-btmLink{
  width:calc(50% - 10px);
  height: 41px;
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #F0E3DB;
  display: flex;
  justify-content: center;
  align-items: center;
  position:relative;
}
.shopInfo__list-btmLink::after{
  content: url(../imgs/index/shop_arrow-right.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}
.shopInfo__list-btmLink.btmLink--01{
  background-color: #3C2E22;
}
.shopInfo__list-btmLink.btmLink--02{
  background-color: #CA5E46
}
.shop-content__imgSingle--rogo{
    position: absolute;
    top: 10px;
    left: 10px;
    width: 30%;
    z-index: 3  ;
}



@media screen and (max-width: 980px) {
 .shopInfo__list-item{
        width: calc((100% - 45px) / 2);
  }
}
@media screen and (max-width: 750px) {
  .shopInfo{
    padding-top: 150px;
    padding-bottom: 108px;
  }
  .shopInfo__wrap{
    padding-top: 0;
  }
  .shopInfo__ttlWrap{
    margin-bottom: 73px;
  }
  .shopInfo__area-head{
    display: block;
    width: 100%;
    height: 100%;
    padding: 12px 0 12px 15px;
    position: relative;
    cursor: pointer;
    border-bottom: 1px solid #3C2E22;
    font-size: 15px;
    letter-spacing: -0.02em;
    line-height: 1.86;
    border-top: 1px solid #3C2E22;
  }

  .shopInfo__area-head::after{
    content: url(../imgs/index/shop_arrow.svg);
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    transition: all .3s ease;
  }
  
  .shopInfo__listWrap{
    margin-bottom: 125px;
    padding-bottom:60px ;
    border-bottom:1px solid #A5A5A5;
  }
  .shopInfo__wrap--02 .shopInfo__listWrap{
    margin-bottom: 0;
    border-bottom:none;
  }
   /* .js-accordion-body {
    display: none;
  } */
  .is-open .js-accordion-body {
    display: block;
  }
  .js-accordion-header {
    cursor: pointer;
  }
  .js-accordion-header.is-active {
  background-color: #DBCEC6; /* 好きな色に */
}
  .js-accordion-header.is-active::after{
    transform: rotate(180deg);
    top:24%;
  }

  .shopInfo__list{
    padding-top: 50px;
    gap:50px 20px;
      border-top:none;
  }
  .shopInfo__wrap--02  .shopInfo__list{
   border-top:none;
   
  }
  .shopInfo__list-item{
    width: calc((100% - 20px) / 2);
  }
  body.fixed .shopInfo__list-item{
    z-index: 0;
  }
 
}
@media screen and (max-width: 620px) {
  .shopInfo__list{
    display: block;
    padding-top: 0;
  }
  .shopInfo__list-item{
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 63px;
    border-bottom:1px solid #A5A5A5;
    z-index: 9;
  }
    .shopInfo__list-item:last-child{
      padding-bottom: 0;
      border-bottom: none;
  }
  
}

/*===================
recruit
===================*/
/* .recruit{
} */
.recruit__bg{
  padding-top: 108px;
  padding-bottom: 145px;
  background-image: url(../imgs/index/recruit_bg.jpg?v=1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.recruit__ttl{
  margin-bottom: 130px;
  padding-top: 8px;
  color: #F5E9E2;
  font-size: 23px;
  letter-spacing: 0.07em;
  border-top:1px solid #F5E9E2;
}
.recruit__wrap{
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.recruit__catch{
  width: 48%;
  margin-right: 2%;
  font-size: 37px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.56;
  color: #F5E9E2;
}
.recruit__textWrap{
  margin-right: 5%;
  width: 45%;
  max-width: 350px;
}
.recruit__text{
  margin-bottom: 40px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 2.5;
  color: #F5E9E2;
}
.recruit__text:last-of-type {
  margin-bottom: 94px;
}
.recruit__btn{
  width: 100%;
  max-width: 269px;
  margin-right: auto;

}
.recruit__btnLink{
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #F5E9E2;
  border: 1px solid #F5E9E2;
  text-align: center;
  padding: 17px 0;
  position: relative;
  transition: all 0.3s ease;
  z-index: 11;

}
.recruit__btnLink:hover{
  background-color: #F5E9E2;
  color: #3C2E22;
}
.recruit__btnLink::after{
  content: url(../imgs/index/shop_arrow-right.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}
.recruit__btnLink:hover::after{
  content: url(../imgs/index/news_arrow-right.svg);
  right: 13px;
}

@media screen and (max-width: 980px) {
  .recruit__wrap{
    display: block;
  }
  .recruit__catch{
    width: 100%;
    max-width: 400px;
    margin: 0 auto 70px;
    font-size: 30px;
  }
  .recruit__textWrap{
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
  }
}
@media screen and (max-width: 750px) {
  .recruit__bg{
    padding-bottom: 110px;
    background-image: url(../imgs/index/recruit_bg-sp.jpg?v=1);
  }
  .recruit__ttl{
    margin-bottom: 85px;
  }
  .recruit__catch{
    margin-bottom: 58px;
    line-height: 1.7;
  }
  .recruit__text{
    margin-bottom: 35px;
    font-size: 15px;
    line-height: 2.26;
  }
  .recruit__text:last-of-type{
    margin-bottom: 72px;
  }
  .recruit__btn{
    margin-left:auto;
  }
}

/*===================
news
===================*/
.news{
  padding-top: clamp(95px,25.33vw,135px);
  padding-bottom: 115px;
  background-color: #F0E3DB;
}
.news__ttl{
  margin-bottom: 35px;
}
.news__catch{
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 2.14;
}
.news__wrap{
  margin-right: 88px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 100px;
}
.news__listWrap{
  width: 63%;
  margin-top: 100px;
  border-top:1px solid #A5A5A5;
}
.news__list-item{
  padding-top: 25px;
  position: relative;
  z-index: 11;
}
.news__list-item:first-child{
 border-bottom:1px solid #A5A5A5;
 padding-bottom: 65px;
}
.news__list-item:not(:last-child){
 border-bottom:1px solid #A5A5A5;
padding-bottom: 65px;
}
.news__list-link{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  height: 80px;
  position:relative;
}
.news__list-dateWrap{
  display: flex;
  justify-content: start;
  align-items: center;
}
.news__list-dateWrap p{
  font-size: 12px;
  letter-spacing: 0.04em;
}
.news__list-day{
  margin-right: 8px;
  padding-right: 8px;
  border-right: 1px solid #A5A5A5;
}
.news__list-ttl{
  font-size: 17px;
  line-height: 1.52;
}
.news__list-more{
  position: absolute;
  bottom:0;
  right: 0;
  font-size: 11px;
  letter-spacing: 0.04em;
}
.news__list-more::after{
  margin-left: 10px;
  content: "";
  display: inline-block;
  background-image: url(../imgs/index/news_arrow-right.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 8px;
  height: 7px;
  vertical-align: middle;
}
.news__list-link:hover .news__list-more::after{
 transform: translateX(5px);
 transition: .3s ease;
}




@media screen and (max-width: 980px) {
 .news__wrap{
  display: block;
  margin-right: 0;
 }
 .news__listWrap{
  width: 100%;
 }
}

@media screen and (max-width: 750px) {
  .news{
    padding-bottom: 95px;
  }
  .news__ttl{
    margin-bottom: 28px;
  }
 .news__catch{
  font-size: 13px;
 }
 .news__list-ttl{
  font-size: 15px;
 }

 body.fixed .news__list-item{
  z-index: 0;
 }
}


@media screen and (max-width: 375px) {
.recruit__catch{
  font-size: 25px;
}

}