/* リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  display: block;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

.pc-only, .sp-only {
  display: none;
}


body {
    overflow-x: hidden;
    margin: 0;
    font-family: "Yu Gothic", "游ゴシック", sans-serif;
    background-color: #fff;
    color: #333;
    text-align: center;
    background-image: url('background.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
  }
  
  h1, h2, .catch-copy {
    font-family: 'Zen Old Mincho', serif;
  }
  
  h3, .introduction-text {
    font-family: "Yu Gothic", "游ゴシック", sans-serif;
  }

  h4, .access, .other-shops, .contact {
    font-family: 'Noto Sans JP', sans-serif;
  }

  

 /*トップ画面*/
  .top {
    height: 100vh;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
      
  }
  
  .image-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
  }

  .image-row img {
    width: 100%;
    max-width: 300px; 
  }
  
  .logo3 {
    width: 370px;
    margin-bottom: 30px;
  }

  .catch-copy {
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  .scroll-indicator {
    font-family: 'Zen Old Mincho', serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.9rem;
    color: #555;
  }
  
  .arrow {
    font-size: 1rem;
    animation: bounce 2s infinite;
    margin-top: 5px;
  }

  .dli-chevron-down {
    margin: 15px;
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    width: 1em;
    height: 1em;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-25%) rotate(135deg);
    animation: bounce 2s infinite;
  }

  @keyframes bounce {
    0%, 100% {
      transform: translateY(30%) rotate(135deg);
    }
    50% {
      transform: translateY(-30%) rotate(135deg);
    }
  }
  
  

 /*紹介文と画像*/
  .introduction {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: flex-start;
    flex-wrap: wrap;
    text-align: left;
  }
  
  .introduction-text {
    font-family: 'Zen Old Mincho', serif;
    display: flex;
    min-width: 300px;
    font-size: 0.9rem;
    line-height: 1.8;
  }

  @media screen and (min-width: 769px) {
    .pc-only {
      display: block;
    }
    .sp-only {
      display: none; 
    }
  }
  
  .introduction-images {
    display: flex;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  
  .introduction-images img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .img1 { max-width: 170px; align-self: flex-end;}
  .img2 { max-width: 140px; align-self: flex-start; }
  .img3 { max-width: 150px; align-self: flex-end;}
  
  .coming-soon {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.2rem;
    opacity: 0.8;
    text-align: left;
    width: 80%;
  }

/*お店の雰囲気の写真たち*/
.gallery {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  flex: 1;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.gallery-label {
  writing-mode: vertical-rl;
  font-family: 'Futura', sans-serif;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  user-select: none;
}

.gallery-label .text {
  position: absolute;
  bottom: -280px;
  left: -30px;
  transform: rotate(180deg); 
  display: inline-block;
  white-space: nowrap;
}

.gallery-label .line {
  position: absolute;
    bottom: -450px;
    left: -15px;
  display: inline-block;
  height: 140px; 
  border-left: 1.2px solid;
  margin-top: 4px;
}


  

/*店舗の場所*/
  .access {
    text-align: center;
    padding: 120px 20px 60px 20px;
  }
  
  .map-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    display: block;
    margin: 0 auto;
  }

  .address {
    margin-top: 12px;
    font-size: 0.8rem;
  }
  
  .map-btn {
    display: inline-block;
    padding: 10px 110px;
    border: 1px solid #333;
    color: #333;
    text-decoration: none;
    margin-top: 12px;
  }
  

/*その他の店舗情報*/
  .other-shops {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
  }
  
  .shop {
    width: 48%;
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .shop-images {
    margin-bottom: 20px;
  }
  
  .shop-images img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    display: block;
    margin: 0 auto;
  }
  
  h4 {
    margin-bottom: 16px;
    font-size: 0.8rem;
  }

  .hp-btn {
    display: inline-block;
    padding: 10px 130px;
    border: 1px solid #333;
    color: #333;
    text-decoration: none;
    margin-top: 13px;
    font-weight: 400;
    font-size: 0.8rem;
  }

  @media screen and (max-width: 1000px) {
    .other-shops {
      justify-content: center; 
    }
  
    .other-shops .shop {
      width: 100%;
      max-width: 500px; 
    }
  }
  

/*コンタクト*/
  .contact {
    text-align: center;
    padding: 60px 0;
  }
  
  .contact-btn {
    display: inline-block;
    padding: 13px 88px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.8rem;
  }
  

  .footer {
    font-family: "Yu Gothic", "游ゴシック", sans-serif;
    text-align: center;
    padding: 50px 10px;
    font-size: 0.7rem;
  }

/*スマホ版*/
@media screen and (max-width: 768px) {

  .image-row {
    width: 100%;
    max-width: 250px;
  }

  .image-row img {
    width: 100%;
    max-width: 200px;
  }

  .logo1, .logo2 {
    width: 200px;
  }


  .logo3 {
    width: 250px;
    margin-bottom: 20px;
  }

  .catch-copy {
    font-size: 0.9rem;
  }

  .scroll-indicator {
    font-size: 0.7rem;
   }

   .gallery {
    max-width: 340px;
    gap: 0px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-label {
    position: static;     
    writing-mode: horizontal-tb; 
    transform: none;     
    font-size: 1rem;
    margin-bottom: 8px;  
    display: block;
    text-align: center;
    white-space: normal;  
  }
  
  .gallery-label .text {
    position: absolute;
    bottom: 20px;
    left: 40px;
    transform: none !important;
    display: inline-block;
    white-space: nowrap;
  }
  
  .gallery-label .line {
    position: absolute;
    bottom: 28px;
    left: 1px;
    display: inline-block;
    width: 30px;
    border-bottom: 1.2px solid;
    height: 0;
    margin-top: 4px;
  }

  .shop {
    width: 300%;
  }

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

  .sp-only {
    display: block;
  }

  .introduction-text {
    font-size: 0.8rem;
    }

  .introduction-images {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 200px 60px;
    margin-bottom: 40px;
    position: relative; 
  }
  
    img {
      width: 15px; 
      height: auto;
    }
  
    .img1 {
      position:  absolute;
      padding: 20px;
      top: 0;
      left: 60%;
    }
  
    .img2 {
      position:  absolute;
      top: 70px;
      right: 65%;
    }
  
    .img3 {
      position:  absolute;
      top: 250px;
      left: 50%;
    }
  
    .coming-soon {
      display: none; 
    }

    .sp-only .coming-soon-sp {
      font-size: 1.1rem;
      font-weight: bold;
      color: #444;
      font-family: 'Zen Old Mincho', serif;
    }
    

  img {
    max-width: 100%;
  }  

  .map-img {
    max-width: 300px;
  }
} 

/*フェードインアニメーション*/
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}