@charset "EUC-JP";

.c-top-firstView{
  --firstViewSlideHeight:100vh;
}

.c-top-firstView.withNews{
  --firstViewSlideHeight:calc(100vh - 70px);
}

.c-top-firstView{
  width:65%;
  height:auto;
  margin:0 auto;
  overflow:hidden;
  position:relative;
}

@media screen and (max-width:767px){
  .c-top-firstView{
    width:100%;
  }
}

.c-top-firstViewSlider,
.c-top-firstViewSlider a,
.c-top-firstViewSlider img,
.c-top-firstViewSlider picture{
  width:100%;
  height:auto;
  display:block;
  outline:none;
}

.c-top-firstViewSlider img{
  object-fit:cover;
  object-position:center;
}

.c-top-firstViewSlider a:hover{
  opacity:1;
}

@media screen and (max-width:1024px){
  .c-top-firstView{
    --firstViewSlideHeight:calc(100vh - 60px);
    --firstViewSlideHeight:calc(100svh - 60px);
  }

  .c-top-firstView.withNews{
    --firstViewSlideHeight:calc(100vh - 60px - 100px);
    --firstViewSlideHeight:calc(100svh - 60px - 100px);
  }
}

/* トップスライドボタン */

.c-top-firstView .top-sliderPrev,
.c-top-firstView .top-sliderNext{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:10;
  cursor:pointer;
  width:35px;
  height:35px;
}

.c-top-firstView .top-sliderPrev{
  left:20px;
}

.c-top-firstView .top-sliderNext{
  right:20px;
}

.c-top-firstView .top-sliderPrev::before,
.c-top-firstView .top-sliderNext::before{
  content:"";
  display:block;
  width:35px;
  height:35px;
  background:#F5F6F5;
}

.c-top-firstView .top-sliderPrev::after,
.c-top-firstView .top-sliderNext::after{
  content:"";
  width:8px;
  height:8px;
  position:absolute;
  top:50%;
  transform:translateY(-50%) rotate(45deg);
}

.c-top-firstView .top-sliderPrev::after{
  left:14px;
  border-left:1px solid var(--defaultColor);
  border-bottom:1px solid var(--defaultColor);
}

.c-top-firstView .top-sliderNext::after{
  right:14px;
  border-top:1px solid var(--defaultColor);
  border-right:1px solid var(--defaultColor);
}

@media screen and (max-width:1024px){
  .c-top-firstView .top-sliderPrev{
    left:10px;
  }

  .c-top-firstView .top-sliderNext{
    right:10px;
  }

  .c-top-firstView .top-sliderPrev,
  .c-top-firstView .top-sliderNext{
    width:30px;
    height:30px;
  }

  .c-top-firstView .top-sliderPrev::before,
  .c-top-firstView .top-sliderNext::before{
    width:30px;
    height:30px;
  }

  .c-top-firstView .top-sliderPrev::after{
    left:12px;
  }

  .c-top-firstView .top-sliderNext::after{
    right:12px;
  }
}

/* インフォメーション */

.c-top-news{
  --topNewsHeight:70px;
  width:100%;
  height:var(--topNewsHeight);
  position:relative;
  z-index:2;
}

.c-top-news::before{
  content:"";
  width:calc(100% - 120px);
  height:100%;
  left:0;
  top:0;
  position:absolute;
  background:var(--defaultColor);
  opacity:0.05;
}

.c-top-news .l-content{
  height:var(--topNewsHeight);
  overflow:hidden;
  position:relative;
}

@media screen and (min-width:1025px){
  .c-top-news .l-content{
    padding-right:120px;
  }
}

.c-top-news a,
.c-top-news span{
  font-size:16px;
  height:var(--topNewsHeight);
  line-height:var(--topNewsHeight);
  white-space:nowrap;
  width:100%;
  text-overflow:ellipsis;
  display:block;
  color:var(--defaultColor);
  overflow:hidden;
}

.c-top-news a:hover{
  text-decoration:underline;
}

.c-top-newsListNext,
.c-top-newsListPrev{
  width:60px;
  height:var(--topNewsHeight);
  position:absolute;
  top:0;
  right:0;
  cursor:pointer;
  z-index:3;
}

.c-top-newsListPrev{
  right:60px;
}

.c-top-newsListNext::before,
.c-top-newsListPrev::before{
  content:"";
  width:100%;
  height:100%;
  position:absolute;
  left:0;
  top:0;
  background:var(--defaultColor);
  opacity:0.05;
}

.c-top-newsListNext::after,
.c-top-newsListPrev::after{
  content:"";
  width:10px;
  height:10px;
  position:absolute;
  top:calc(50% - 5px);
  transition:right 0.2s ease-out,left 0.2s ease-out;
}

.c-top-newsListPrev::after{
  right:5px;
  border-top:1px solid var(--defaultColor);
  border-left:1px solid var(--defaultColor);
  transform:rotate(-45deg);
}

.c-top-newsListNext::after{
  left:5px;
  border-top:1px solid var(--defaultColor);
  border-right:1px solid var(--defaultColor);
  transform:rotate(45deg);
}

@media screen and (max-width:1024px){
  .c-top-news{
    --topNewsHeight:100px;
    display:flex;
    align-items:center;
  }

  .c-top-news::before{
    width:100%;
  }

  .c-top-news a,
  .c-top-news span{
    font-size:14px;
    line-height:20px;
    height:60px;
    white-space:normal;
    width:100%;
    padding-right:0;
    margin-top:20px;
    display:-webkit-box;
    display:box;
    overflow:hidden;
    -webkit-line-clamp:3;
    line-clamp:3;
    -webkit-box-orient:vertical;
    box-orient:vertical;
  }

  .c-top-newsListNext,
  .c-top-newsListPrev{
    width:35px;
    height:35px;
  }

  .c-top-newsListPrev{
    right:37px;
  }

  .c-top-newsListNext::before,
  .c-top-newsListPrev::before{
    content:none;
  }

  .c-top-newsListNext::after,
  .c-top-newsListPrev::after{
    content:"";
    width:6px;
    height:6px;
    position:absolute;
    top:calc(50% - 3px);
    transition:right 0.2s ease-out,left 0.2s ease-out;
  }

  .c-top-newsListPrev::after{
    right:5px;
    border-top:1px solid var(--defaultColor);
    border-left:1px solid var(--defaultColor);
    transform:rotate(-45deg);
  }

  .c-top-newsListNext::after{
    left:5px;
    border-top:1px solid var(--defaultColor);
    border-right:1px solid var(--defaultColor);
    transform:rotate(45deg);
  }
}

/* コンセプト */

.c-top-information{
  margin-bottom:60px;
}

.c-top-information .l-content{
  padding-left:0;
  padding-right:0;
}

.c-top-informationImage{
  width:100%;
  position:relative;
  background-image:url(https://img06.shop-pro.jp/PA01017/666/etc_base64/cGl4dGFfMTIwMzgwNTZfTA.jpg?cmsp_timestamp=20260220113522);
  background-repeat:no-repeat;
  background-position:center center;
  background-size:cover;
}

.c-top-informationImage::before{
  content:"";
  padding-top:50%;
  display:block;
}

.c-top-informationMessage{
  width:680px;
  max-width:80%;
  padding:30px 30px 0 30px;
  line-height:200%;
  margin:-100px 0 0 auto;
  background:var(--defaultBackgroundColor);
  position:relative;
  z-index:3;
}

@media screen and (max-width:1024px){
  .c-top-informationMessage{
    width:calc(100% - 8vw);
    max-width:100%;
    padding:30px 4vw 0 4vw;
    line-height:180%;
    margin:-4vw auto 0 auto;
  }
}

.c-top-informationMessage .news-box{
  border:none;
  margin:0;
}

@media screen and (max-width:767px){
  .c-top-informationMessage .news-box{
    max-height:200px;
  }
}

/* TOP 各セクションの余白 */

.c-top-interval,
.c-top-ranking,
.c-top-message,
.c-top-freespace{
  margin-top:120px;
}

@media screen and (max-width:1024px){
  .c-top-interval,
  .c-top-ranking,
  .c-top-message,
  .c-top-freespace{
    margin-top:90px;
  }
}

.c-top-intervalImage{
  width:100%;
  max-height:40vw;
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.c-top-intervalImage img{
  position:static;
}

.c-top-interval br{
  display:none;
}

/* RANKING */

.c-top-ranking .c-sliderPrev{
  position:absolute;
  right:52px;
  top:50%;
  transform:translatey(-50%);
}

.c-top-ranking .c-sliderNext{
  position:absolute;
  right:0;
  top:50%;
  transform:translatey(-50%);
}

@media screen and (max-width:1024px){
  .c-top-ranking .c-sliderPrev{
    right:37px;
  }
}

/* ==================================================
   U-KOMI CUSTOMER REVIEWS
================================================== */

.ss-review-section{
  width:100%;
  margin-top:120px;
  padding:60px 0 70px;
  background:#fafafa;
  border-top:1px solid #eeeeee;
  border-bottom:1px solid #eeeeee;
  box-sizing:border-box;
}

.ss-review-inner{
  width:100%;
  margin:0 auto;
  box-sizing:border-box;
}

.ss-review-heading{
  margin:0 0 45px;
  padding:0;
  text-align:center;
}

.ss-review-heading-en{
  margin:0 0 10px;
  padding:0;
  font-size:13px;
  font-weight:400;
  line-height:1.5;
  letter-spacing:0.22em;
  color:#888888;
}

.ss-review-heading h2{
  margin:0;
  padding:0;
  font-size:24px;
  font-weight:500;
  line-height:1.6;
  letter-spacing:0.08em;
  color:#222222;
}

.ss-review-section .review-container{
  width:100%;
  margin:0 auto;
}

@media screen and (max-width:1024px){
  .ss-review-section{
    margin-top:90px;
    padding:50px 0 60px;
  }

  .ss-review-heading{
    margin-bottom:35px;
  }
}

@media screen and (max-width:767px){
  .ss-review-section{
    margin-top:60px;
    padding:40px 0 45px;
  }

  .ss-review-heading{
    margin-bottom:28px;
  }

  .ss-review-heading-en{
    margin-bottom:7px;
    font-size:11px;
    letter-spacing:0.18em;
  }

  .ss-review-heading h2{
    font-size:19px;
    line-height:1.6;
    letter-spacing:0.05em;
  }
}

/* フリースペース */

.image-grid-section{
  padding:40px 0;
}

.image-grid{
  display:grid;
  gap:20px;
}

.image-grid--col3{
  grid-template-columns:repeat(3,1fr);
}

.image-grid__item{
  display:block;
  overflow:hidden;
}

.image-grid__item img{
  display:block;
  width:100%;
  height:auto;
}

/* タブレット */

@media screen and (max-width:1024px){
  .image-grid--col3{
    grid-template-columns:repeat(2,1fr);
  }
}

/* スマホ */

@media screen and (max-width:767px){
  .image-grid{
    gap:12px;
  }

  .image-grid--col3{
    grid-template-columns:1fr;
  }
}

/* 店舗情報 */

.c-top-messageImage{
  width:100%;
  position:relative;
}

.c-top-messageImage::before{
  content:"";
  padding-top:48.08%;
  display:block;
}

.c-top-message .l-content{
  width:100%;
  margin-top:40px;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
}

.c-top-messageManager{
  width:33%;
}

.c-top-messageComment{
  width:calc(100% - 33% - 40px);
  line-height:200%;
}

.c-top-messageManagerName{
  font-family:var(--boldfont);
  font-weight:bold;
  font-size:24px;
  line-height:150%;
}

.c-top-messageLink{
  display:inline-block;
  margin-top:1em;
  color:var(--defaultColor);
  font-size:16px;
  line-height:150%;
  position:relative;
}

.c-top-messageLink::before{
  content:"";
  position:absolute;
  width:100%;
  height:1px;
  left:0;
  bottom:0;
  background:var(--defaultColor);
  opacity:0.5;
}

@media screen and (max-width:1024px){
  .c-top-messageImage{
    width:100%;
    position:relative;
  }

  .c-top-message .l-content{
    display:block;
  }

  .c-top-messageManager{
    width:100%;
    text-align:center;
  }

  .c-top-messageComment{
    width:100%;
    line-height:180%;
    margin-top:40px;
  }

  .c-top-messageManagerName{
    font-size:20px;
  }

  .c-top-messageLink{
    display:inline-block;
    margin-top:1em;
    color:var(--defaultColor);
    font-size:16px;
    line-height:150%;
    position:relative;
  }
}