@charset "utf-8";
/* CSS Document */
/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  width: 100%;
  overflow-x: hidden; /* 横スクロールを無効化 */
}
/* Googleフォントの適用 */
body {
  font-family: 'Noto Serif JP', serif;
  background-color: #3e3a39;
  color: white;
}

@media (min-width: 751px) {
a[href*="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
  color: #FFFFFF;
}
}

header {
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
header h1 {
  font-size: 50px;
  letter-spacing: .2em;
}
.rogo img{
  max-width: 100%;
  margin: auto;
}

.rogo{
  margin: 0 auto 30px;
  max-width: 250px;
}


header .group {
  margin-top: 30px;
  font-size: 20px;
  letter-spacing: 0.1em;
  text-transform: lowercase;
}
main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px; /* ページの端にスペースを確保 */
}
.store-section {
  margin-bottom: 80px;
  padding-bottom: 40px;
  padding-left: 15px; /* 左右のスペースを確保して、画面幅に収まるように調整 */
  padding-right: 15px;
}
.section-title {
  font-size: 25px;
  margin-bottom: 10px;
  font-weight: 300;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.2rem;
  opacity: 0; /* 初期状態では透明 */
  transform: translateY(20px); /* 初期状態で少し下に移動 */
  transition: opacity 0.8s ease, transform 0.8s ease; /* フワッと表示のトランジション */
}
.section-title span {
  font-size: 20px;
}
/* スクロール時に表示 */
.scroll-active .section-title {
  opacity: 1; /* 表示 */
  transform: translateY(0); /* 元の位置に戻る */
}
.scroll-active .section-title::after {
  width: 1000px; /* アニメーション後に1000pxに固定 */
  transition: width 0.5s ease-out; /* 左から右へのアニメーション */
  left: 50%;
  transform: translateX(-50%);
}
.line {
  position: relative;
  display: block;
  width: 0; /* 初期状態で幅は0 */
  height: 1px;
  background-color: white;
  margin: 20px auto 80px auto;
  transition: width 0.5s ease; /* アニメーション */
}
.scroll-active .line {
  width: 100%; /* アニメーションで幅を100%に広げる */
}
h3.store-name img {
  height: 25px; /* 画像の高さを30pxに設定 */
  width: auto; /* 横幅は自動で調整 */
  display: block; /* 画像をブロック要素として扱い、余計な隙間をなくす */
  margin-bottom: 30px; /* 画像下に少し余白を設けたい場合は調整 */
}

@media (max-width: 768px) {
  
h3.store-name {
    text-align: center; /* 親要素である h3 要素を中央寄せ */
}

h3.store-name img {
    height: 22px; /* 画像の高さを25pxに設定 */
    width: auto; /* 横幅は自動で調整 */
    display: block; /* 画像をブロック要素として扱い、余計な隙間をなくす */
    margin: 20px auto 30px; /* 画像を中央に寄せる */
}
  
}
.store-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
}
.store-image {
  width: 45%;
  height: auto;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.5s ease;
}
.store-details {
  width: 45%;
  text-align: left;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s ease;
}

.store-meta {
  font-size: 15px;
  line-height: 1.5; /* 行間を調整して、読みやすくする */
  float: left;
}

@media (max-width: 768px) {
  .store-meta {
  font-size: 15px;
  line-height: 1.5; /* 行間を調整して、読みやすくする */
  float: none;
    margin:0 auto 20px auto;
    width: fit-content;

}
}
.store-tel {
  font-size: 18px;
  letter-spacing: .1rem;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .store-tel {
  font-size: 1rem;
  letter-spacing: .1rem;
  margin-bottom: 20px;
}
  
}
.time {
  font-size: 15px;
  margin-bottom: 30px;
  line-height: 180%;
}
.social-icons {
  display: flex; 
  justify-content: flex-start;
  gap: 15px; /* アイコン間のスペース */
  width: fit-content;
 
}

.social-icons img {
  width: 25px;
  height: 25px;
}
.construction-notice {
  display: block; 
  opacity: 1; 
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease; 
  border: 2px solid white;
  padding: 20px;
  font-size: 20px;
  margin: 80px auto;
  max-width: 600px;
  text-align: center;
}
.scroll-active .construction-notice {
  opacity: 1;
  transform: translateY(0); /* 元の位置に戻す */
}
footer {
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #3e3a39;
}
footer p {
  font-size: 14px;
}
/* Animations */
.scroll-active .section-title::after {
  width: 100%;
}
.scroll-active .store-image {
  opacity: 1;
  transform: translateX(0);
}
.scroll-active .store-details {
  opacity: 1;
  transform: translateX(0);
}
/* Responsive */
@media (max-width: 768px) {
  .store-info {
    flex-direction: column;
    text-align: center;
    max-width: 100%;
  }
  .store-image, .store-details {
    width: 100%; /* 横幅を100%に */
  }
  .store-details {
    margin-top: 20px;
    padding: 0 15px; /* 左右のスペースを確保 */
  }
 
  main {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px; /* 画面の両端に余白を設定 */
  }
  
 
  .tel-link {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 18px;
  }
  .construction-notice {
    display: block; 
    opacity: 1; 
    transform: translateY(20px); 
    transition: opacity 0.8s ease, transform 0.8s ease; 
    border: 2px solid white;
    padding: 20px;
    font-size: clamp(16px, 2vw, 24px); /* ビューポートに応じて文字サイズを可変 */
    margin: 80px auto;
    max-width: 600px;
    text-align: center;
}
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: #FFFFFF;
  }
  }

.store-sub {
float: left;
  overflow: hidden;
  max-width: 400px;
  padding: 0 20px;
}

@media (max-width: 768px) {
  
.store-sub {
    width: fit-content;
    margin: 0 auto; /* 左右のマージンを自動で中央寄せ */
    text-align: left; /* テキストを左寄せ */
  float: none;
   padding: 0px;
  }

  .store-ad, .store-tel, .time, .social-icons {
    display: block; 
    margin-bottom: 15px;
    width: fit-content;
  }


}
  
