@charset "UTF-8";

.store-main {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.store-header {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 30px;
}

.store-title {
  font-size: 3rem;
  font-family: "Montserrat", sans-serif;
}

.store-tabs {
  display: flex;
  gap: 20px;
}

.tab-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  padding: 5px 10px;
}

.tab-btn.active {
  border-bottom: 3px solid #000;
}

/* コンテンツの表示・非表示 */
.store-content {
  display: none;
}
.store-content.active {
  display: block;
}

.store-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.store-left { flex: 1.5; }
.store-right { flex: 1; }

.store-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 30px;
}

.store-map {
  width: 100%;
  height: 300px;
  border-radius: 30px;
  overflow: hidden;
  margin-top: 42px;
}

.store-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* オンラインタブ */
.online-tab {
  color: #ff4dce;
}

/* 購入ボタン */
.store-online-link {
  margin-top: 30px;
}

.shop-btn {
  display: block;
  width: 100%;
  padding: 20px;
  background: linear-gradient(45deg, #ff4dce, #4da6ff);
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 1.5rem;
  text-decoration: none;
  border-radius: 30px;
  transition: transform 0.3s;
}

.shop-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 77, 206, 0.5);
}