/* ========================================
   Store page — sports gym design
   ======================================== */

/* ----------------------------------------
   Design tokens
   ---------------------------------------- */
.store_page {
  --s-black:   #07090d;
  --s-dark:    #0d1520;
  --s-dark-2:  #111d2b;
  --s-card:    #141f2e;
  --s-teal:    #0dcfe8;
  --s-teal-dk: #09a0b6;
  --s-text:    #dce8ef;
  --s-muted:   #6a8fa0;
  --s-white:   #ffffff;
  --s-line:    #06c755;
  --s-book:    #0ea5c9;
  --s-radius:  12px;
  --s-easing:  cubic-bezier(.22, .68, 0, 1.2);
}

/* ----------------------------------------
   Back nav
   ---------------------------------------- */
.store_back_bar {
  background: #fff;
  padding: 12px 0;
  border-bottom: 1px solid #e8edf2;
}

.store_back_link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #1a5f7a;
  letter-spacing: 0.04em;
  transition: opacity 0.2s ease;
}

.store_back_link:hover {
  opacity: 0.7;
}

.store_back_link i {
  font-size: 11px;
}

/* ----------------------------------------
   Hero
   ---------------------------------------- */
.store_hero {
  position: relative;
  min-height: 700px;
  background-color: var(--s-dark);
  background-size: cover;
  background-position: center 30%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

/* 底部ティール発光ライン */
.store_hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--s-teal) 25%, var(--s-teal) 75%, transparent 100%);
  z-index: 3;
}

.store_hero__mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7, 9, 13, 0.08) 0%,
    rgba(7, 9, 13, 0.35) 35%,
    rgba(7, 9, 13, 0.88) 75%,
    rgba(7, 9, 13, 0.97) 100%
  );
}

.store_hero__content {
  position: relative;
  z-index: 1;
  padding-bottom: 72px;
  padding-top: 40px;
}

.store_hero__logo_wrap {
  margin-bottom: 32px;
}

.store_hero__logo {
  max-width: 380px;
  max-height: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.store_hero__name {
  font-size: clamp(38px, 5.5vw, 66px);
  font-weight: 800;
  color: var(--s-white);
  line-height: 1.1;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.55);
}

/* 名前の前にティールアクセントバー */
.store_hero__name::before {
  content: '';
  display: block;
  width: 52px;
  height: 4px;
  background: linear-gradient(90deg, var(--s-teal), var(--s-teal-dk));
  border-radius: 2px;
  margin-bottom: 20px;
  box-shadow: 0 0 12px rgba(13, 207, 232, 0.6);
}

.store_hero__address {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.store_hero__address i {
  color: var(--s-teal);
  font-size: 13px;
}


@media (max-width: 600px) {
  .store_hero {
    min-height: 540px;
  }
  .store_hero__name {
    font-size: clamp(30px, 8vw, 44px);
  }
  .store_hero__content {
    padding-bottom: 52px;
  }
  .store_hero__logo {
    max-width: 260px;
    max-height: 90px;
  }
}

/* ----------------------------------------
   Ribbon
   ---------------------------------------- */
.store_ribbon {
  background: linear-gradient(135deg, #090e17 0%, var(--s-dark) 60%, #0a1520 100%);
  border-bottom: 1px solid rgba(13, 207, 232, 0.15);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}

.store_ribbon__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.store_ribbon__tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--s-white);
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.store_ribbon__tel i {
  font-size: 18px;
  color: var(--s-teal);
}

.store_ribbon__tel:hover {
  color: var(--s-teal);
}

.store_ribbon__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store_ribbon__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  padding: 12px 24px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  transition: transform 0.2s var(--s-easing), box-shadow 0.2s ease;
}

.store_ribbon__btn:hover {
  transform: translateY(-2px);
}

.store_ribbon__btn--line {
  background: var(--s-line);
  color: #fff;
  box-shadow: 0 4px 16px rgba(6, 199, 85, 0.35);
}

.store_ribbon__btn--line:hover {
  box-shadow: 0 8px 24px rgba(6, 199, 85, 0.45);
}

.store_ribbon__btn--book {
  background: var(--s-teal);
  color: var(--s-dark);
  box-shadow: 0 4px 16px rgba(13, 207, 232, 0.3);
}

.store_ribbon__btn--book:hover {
  box-shadow: 0 8px 24px rgba(13, 207, 232, 0.4);
}

.store_ribbon__btn--line-sub {
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(6, 199, 85, 0.3);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  box-shadow: none;
}

.store_ribbon__btn--line-sub i {
  color: var(--s-line);
  opacity: 0.8;
}

.store_ribbon__btn--line-sub:hover {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(6, 199, 85, 0.6);
  box-shadow: none;
}


@media (max-width: 600px) {
  .store_ribbon__tel {
    font-size: 18px;
  }
  .store_ribbon__inner {
    justify-content: center;
  }
}

/* ----------------------------------------
   Detail section
   ---------------------------------------- */
.store_detail {
  background: #fff;
  padding: 0 0 80px;
  position: relative;
}

/* 上部ティールストライプ */
.store_detail::before {
  content: '';
  display: block;
  height: 5px;
  background: linear-gradient(90deg, var(--s-teal) 0%, var(--s-teal-dk) 40%, rgba(13, 207, 232, 0.1) 100%);
  margin-bottom: 72px;
}

.store_detail__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}

/* section label (EN, small caps) */
.store_label_en {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--s-teal-dk);
  margin-bottom: 12px;
}

.store_label_en--light {
  color: var(--s-teal);
}

/* description */
.store_desc {
  margin-bottom: 40px;
}

.store_desc__text {
  font-size: 15px;
  line-height: 2;
  color: #444;
}

/* hours box */
.store_hours_box {
  background: linear-gradient(135deg, var(--s-dark) 0%, #0a1622 100%);
  border-radius: var(--s-radius);
  padding: 28px 32px;
  border-left: 4px solid var(--s-teal);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18), inset 0 0 40px rgba(13, 207, 232, 0.03);
  position: relative;
  overflow: hidden;
}

.store_hours_box::after {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 207, 232, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.store_hours_box .store_label_en {
  color: var(--s-teal);
  margin-bottom: 16px;
}

.store_hours_box__content {
  font-size: 14px;
  line-height: 2;
  color: var(--s-text);
  font-weight: 500;
}

/* CTA group */
.store_detail__right .store_label_en {
  margin-bottom: 20px;
}

.store_cta_group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.store_cta_btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-radius: var(--s-radius);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.03em;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s var(--s-easing), box-shadow 0.2s ease;
}

.store_cta_btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background 0.2s ease;
}

.store_cta_btn:hover {
  transform: translateY(-3px);
}

.store_cta_btn:hover::before {
  background: rgba(255, 255, 255, 0.07);
}

.store_cta_btn i:first-child {
  font-size: 20px;
  flex-shrink: 0;
}

.store_cta_btn span {
  flex: 1;
}

.store_cta_btn__arrow {
  font-size: 13px;
  opacity: 0.7;
  flex-shrink: 0;
}

.store_cta_btn--icon_only {
  align-self: flex-start;
  justify-content: center;
  width: 54px;
  min-height: 54px;
  padding: 0;
  gap: 0;
}

.store_cta_btn--icon_only i:first-child {
  font-size: 24px;
  line-height: 1;
}

.store_cta_btn--insta.store_cta_btn--icon_only i:first-child {
  font-size: 24px;
  color: #e4405f;
}

.store_cta_btn--line {
  background: linear-gradient(135deg, #07d45e 0%, #05b84f 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(6, 199, 85, 0.28);
}

.store_cta_btn--line:hover {
  box-shadow: 0 8px 28px rgba(6, 199, 85, 0.38);
}

.store_cta_btn--line-sub {
  background: #fff;
  color: #3a8f56;
  border: 1.5px solid rgba(6, 199, 85, 0.3);
  box-shadow: 0 1px 6px rgba(6, 199, 85, 0.06);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 20px;
}

.store_cta_btn--line-sub i:first-child {
  color: #06c755;
  font-size: 18px;
}

.store_cta_btn--line-sub:hover {
  background: rgba(6, 199, 85, 0.04);
  border-color: rgba(6, 199, 85, 0.55);
  box-shadow: 0 3px 12px rgba(6, 199, 85, 0.1);
}

.store_cta_btn--book {
  background: linear-gradient(135deg, var(--s-teal) 0%, var(--s-teal-dk) 100%);
  color: var(--s-dark);
  box-shadow: 0 4px 20px rgba(13, 207, 232, 0.25);
  animation: store-book-pulse 3.5s ease infinite;
}

@keyframes store-book-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(13, 207, 232, 0.25); }
  50%       { box-shadow: 0 6px 32px rgba(13, 207, 232, 0.5); }
}

.store_cta_btn--book:hover {
  box-shadow: 0 10px 32px rgba(13, 207, 232, 0.5);
  animation: none;
}

.store_cta_btn--tel {
  background: var(--s-dark);
  color: var(--s-white);
  border: 1px solid rgba(13, 207, 232, 0.25);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.store_cta_btn--tel:hover {
  border-color: rgba(13, 207, 232, 0.5);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.store_cta_btn--insta {
  background: #fff;
  color: #222;
  border: 1px solid #e0e6ea;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.store_cta_btn--insta:hover {
  border-color: #c8d0d6;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
}

.store_cta_btn--line-sub.store_cta_btn--icon_only {
  padding: 0;
}

.store_cta_btn--line-sub.store_cta_btn--icon_only i:first-child {
  font-size: 24px;
}

.store_cta_btn--insta.store_cta_btn--icon_only {
  padding: 0;
}

.store_cta_btn--map {
  background: #fff;
  color: #1a5f7a;
  border: 1px solid rgba(26, 95, 122, 0.2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.store_cta_btn--map:hover {
  border-color: rgba(26, 95, 122, 0.4);
  box-shadow: 0 5px 16px rgba(26, 95, 122, 0.1);
}

@media (max-width: 860px) {
  .store_detail__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 600px) {
  .store_detail {
    padding: 0 0 52px;
  }
  .store_detail::before {
    margin-bottom: 48px;
  }
}

/* ----------------------------------------
   Section header (shared)
   ---------------------------------------- */
.store_section_header {
  margin-bottom: 52px;
}

.store_section_h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  color: var(--s-white);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 10px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.store_section_h2--dark {
  color: #0d1520;
}

.store_section_lead {
  font-size: 15px;
  color: var(--s-muted);
  line-height: 1.7;
}

.store_section_lead--dark {
  color: #666;
}

/* ----------------------------------------
   Customer voices
   ---------------------------------------- */
.store_voices {
  background: var(--s-black);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

/* 背景装飾: 大きなグロー（右上） */
.store_voices::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 207, 232, 0.09) 0%, transparent 70%);
  pointer-events: none;
}

/* 左下グロー */
.store_voices::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 207, 232, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.store_voices .inner {
  position: relative;
  z-index: 1;
}

.store_voices__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* voice card */
.store_voice_card {
  background: linear-gradient(160deg, #17233a 0%, var(--s-card) 100%);
  border-radius: 16px;
  border-top: 3px solid var(--s-teal);
  padding: 28px 28px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--s-easing), box-shadow 0.25s ease;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.store_voice_card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(13, 207, 232, 0.1);
}

/* 星評価 */
.store_voice_card__stars {
  font-size: 15px;
  letter-spacing: 3px;
  color: #fbbf24;
  margin-bottom: 16px;
  text-shadow: 0 0 8px rgba(251, 191, 36, 0.4);
}

/* 大きなクォートマーク装飾 */
.store_voice_card__quote {
  position: absolute;
  top: -12px;
  right: 20px;
  font-size: 110px;
  font-family: Georgia, serif;
  font-weight: 800;
  color: var(--s-teal);
  opacity: 0.07;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.store_voice_review {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.store_voice_review__name {
  font-size: 14px;
  font-weight: 800;
  color: var(--s-teal);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.store_voice_review__name::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--s-teal);
  margin-top: 6px;
  border-radius: 2px;
  opacity: 0.5;
}

.store_voice_review__text {
  font-size: 14px;
  line-height: 1.95;
  color: var(--s-text);
}

/* reply area */
.store_voice_reply {
  background: rgba(13, 207, 232, 0.05);
  border-radius: 10px;
  border-left: 3px solid rgba(13, 207, 232, 0.3);
  padding: 16px 18px;
}

.store_voice_reply__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--s-teal);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.store_voice_reply__label i {
  font-size: 12px;
  transform: scaleX(-1);
}

.store_voice_reply__text {
  font-size: 13px;
  line-height: 1.85;
  color: var(--s-muted);
}

@media (max-width: 720px) {
  .store_voices__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .store_voices {
    padding: 60px 0;
  }
  .store_voice_card {
    padding: 24px 20px 20px;
  }
}

/* ----------------------------------------
   Map section
   ---------------------------------------- */
.store_map_section {
  background: linear-gradient(160deg, #edf4f9 0%, #e5f0f7 100%);
  padding: 80px 0;
  border-top: 1px solid rgba(26, 95, 122, 0.08);
}

.store_map_section .store_section_header {
  margin-bottom: 36px;
}

.store_map_wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(13, 21, 32, 0.18), 0 0 0 1px rgba(26, 95, 122, 0.1);
}

.store_map_wrap iframe {
  display: block;
  width: 100%;
  height: 460px;
  max-height: 60vh;
  border: 0;
}

@media (max-width: 600px) {
  .store_map_section {
    padding: 48px 0;
  }
  .store_map_wrap iframe {
    height: 300px;
  }
}
