@charset "UTF-8";

@font-face {
    font-family: 'CustomFont'; /* フォントの名前 */
    src: url('../fonts/NotoSansJP-ExtraBold.ttf') format('truetype'); /* フォントファイルへのパス */
    font-weight: 900; /* より細いフォントの太さ */
    font-style: normal; /* フォントのスタイル */
  }
@font-face {
    font-family: 'CustomFont2'; /* フォントの名前 */
    src: url('../fonts/GoldenGooseUppercase-VariableVF.ttf') format('truetype'); /* フォントファイルへのパス */
    font-weight: 900; /* より細いフォントの太さ */
    font-style: normal; /* フォントのスタイル */
  }
@font-face {
    font-family: 'CustomFont3'; /* フォントの名前 */
    src: url('../fonts/Medium.ttf') format('truetype'); /* フォントファイルへのパス */
    font-weight: 900; /* より細いフォントの太さ */
    font-style: normal; /* フォントのスタイル */
  }



body {
    font-family: 'CustomFont', sans-serif;  
    overflow-x: hidden;
}

.hero {
  padding: 50px 0 80px;
  width: 100%;
}

.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
    position: relative;
      height: 800px; /* ← 画像と同じ高さを持たせる */
}

.hero-text {
  position: absolute;
  top: 60%;
  left: 24px;
  transform: translateY(-50%);
  z-index: 2;
}
.hero-text h1 {
  font-size: 60px;
  line-height: 1.3;
  margin-bottom: 32px;
  color: #363636;
}

.hero-text h1 span {
  display: block;
  font-weight: 500;
}

.hero-text h1 strong {
  display: block;
  font-weight: 800;
}

.hero-btn {
  display: inline-block;
  padding: 16px 32px;
  background: #41a6ce;
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  font-size: 16px;

  animation: popBtn 6s ease-in-out infinite;
  transform-origin: center;
}

/* ポップアニメーション */
@keyframes popBtn {
  0%   { transform: scale(1); }
  70%  { transform: scale(1); }   /* しばらく止まる */
  75%  { transform: scale(1.1) rotate(-2deg); }
  80%  { transform: scale(0.95) rotate(2deg); }
  85%  { transform: scale(1.05); }
  90%  { transform: scale(1); }
  100% { transform: scale(1); }
}

.hero-images {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);

  width: 700px;
  height: 700px;
  perspective: 1200px;
}

.hero-img {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;

  opacity: 0;
  transform-style: preserve-3d;

  transform:
    translateX(-620px)
    rotateY(-45deg)
    translateZ(-220px)
    scale(0.3);

  transition:
    opacity 1.4s ease,
    transform 1.6s cubic-bezier(.22,1,.36,1);
}
/* 中央で止まる状態 */
.hero-img.show {
  opacity: 1;
  transform:
    translateX(0)
    rotateY(0deg)
    translateZ(0)
    scale(1);
}

/* 退場：右奥へ */
.hero-img.hide {
  opacity: 0;
  transform:
    translateX(620px)
    rotateY(45deg)
    translateZ(-220px)
    scale(0.3);
}
.main_below{
  max-width: 700px;
  width: 100%;
  margin-top: -100px;
  margin-left: -150px;
}

.main_below img{
  width: 100%;
}
/* ===== SP ===== */
@media (max-width: 1200px) {
  .hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
    position: relative;
      height: 600px; /* ← 画像と同じ高さを持たせる */
}
.hero-text h1 {
  font-size: 45px;
  line-height: 1.3;
  margin-bottom: 32px;
  color: #363636;
}
.hero-images {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);

  width: 550px;
  height: 550px;
  perspective: 1200px;
}
.hero-text {
  position: absolute;
  top: 75%;
  left: 24px;
  transform: translateY(-50%);
  z-index: 2;
}
.main_below{
  max-width: 700px;
  width: 100%;
  margin-top: -30px;
  margin-left: -150px;
}
}
/* ===== SP ===== */
@media (max-width: 768px) {
  .hero {
    padding: 0px 0 60px;
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-images {
    top: 35%;
    width: 260px;
    height: 260px;
    margin-bottom: 32px;
  }

  .hero-text h1 {
    font-size: 24px;
  }
.hero-img {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;

  opacity: 0;
  transform-style: preserve-3d;

  transform:
    translateX(-420px)
    rotateY(-45deg)
    translateZ(-220px)
    scale(0.3);

  transition:
    opacity 1.4s ease,
    transform 1.6s cubic-bezier(.22,1,.36,1);
}
/* 退場：右奥へ */
.hero-img.hide {
  opacity: 0;
  transform:
    translateX(220px)
    rotateY(45deg)
    translateZ(-220px)
    scale(0.3);
}
.main_below{
  max-width: 700px;
  width: 100%;
  margin-top: -80px;
  margin-left: -150px;
}
}

/* ここまで */

.store-list {
  padding: 60px 20px;
  background: #fff;
  max-width: 1100px;
  margin: 0 auto;
}

.store-list-heading {
  text-align: center;
  margin-bottom: 32px;
}

.store-list-en {
  display: block;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: #6ec6d9; /* 水色 */
  margin-bottom: 6px;
  font-weight: 600;
}

.store-list-title {
  font-size: 30px;
  font-weight: bold;
  color: #363636;

}
.store-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 54px 0 62px;
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #e0e0e0;   /* 押す前：灰色 */
  color: #000;
  font-size: 13px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn .icon {
  font-size: 14px;
}

.filter-btn.is-active {
  background: #6ec6d9;  /* 押した後：水色 */
  color: #fff;
}

.filter-btn:hover {
  opacity: 0.85;
}
.store-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 240px));
  gap: 24px;
  justify-content: center; /* 余ったら中央寄せ */
}

.store-card {
  display: flex;
  flex-direction: column;
  text-decoration: none; /* 下線消す */
  color: inherit;        /* 文字色継承 */
}
.store-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.store-body {
  display: flex;
  flex-direction: column;
  padding: 0 15px 16px;
  flex: 1; /* 高さを均等化 */
}
.store-body {
  padding: 0px 15px 16px;
  background-color: #fafafa;
  border-radius: 0 0 12px 12px;
}

.store-main-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.store-desc {
  font-size: 14px;
  margin: 12px 0;
}

.store-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  color: #fff;
    margin-top: auto;
      align-self: flex-start;
}

.store-tag.food { background: #f39c12; }
.store-tag.cafe { background: #8e44ad; }
.store-tag.beauty { background: #e84393; }
.store-tag.body { background: #27ae60; }
.store-tag.exp { background: #2980b9; }
.store-tag.shop { background: #d35400; }

.store-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.store-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.store-name {
  font-size: 14px;
  font-weight: bold;
}



/* スマホ */
@media (max-width: 767px) {
  .store-cards {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .store-card {
    width: 100%;
    max-width: 250px;
  }
}