/* アプリ紹介・サポートページ用。既存ページを巻き込まないよう styles.css とは分ける。 */

.hero {
  margin: 0 -1rem 2rem;
  padding: 3rem 1rem 2.5rem;
  background: linear-gradient(150deg, #0f1020 0%, #2b1f5c 55%, #4b3a8f 100%);
  color: #fff;
}
.hero-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.hero-copy { flex: 1 1 340px; }
.hero h1 { margin: 0 0 .6rem; font-size: 2rem; line-height: 1.3; }
.hero p { margin: 0 0 1.2rem; color: #cfcdf0; font-size: 1.05rem; line-height: 1.8; }
.hero-shot { flex: 0 0 220px; }
.hero-shot img {
  width: 220px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .45);
  display: block;
}

.badges { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.2rem; }
.badge {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 190px;
  padding: .6rem 1.1rem;
  border-radius: .6rem;
  background: #fff;
  color: #16161a;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .5);
}
.badge:hover { opacity: .92; text-decoration: none; }
.badge small { display: block; font-size: .72rem; color: #5c5c6b; letter-spacing: .04em; }
.badge strong { font-size: 1.02rem; }
.badge.is-pending {
  background: rgba(255, 255, 255, .12);
  color: #e6e4ff;
  border: 1px dashed rgba(255, 255, 255, .5);
  cursor: default;
}
.badge.is-pending small { color: #b9b4ef; }

.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; }
.feature {
  border: 1px solid var(--border);
  border-radius: .6rem;
  padding: 1rem 1.1rem;
  background: #fff;
}
.feature h3 { margin: 0 0 .4rem; font-size: 1rem; }
.feature p { margin: 0; color: var(--muted); font-size: .93rem; line-height: 1.75; }

.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; }
.gallery figure { margin: 0; }
.gallery img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
  display: block;
}
.gallery figcaption { margin-top: .5rem; color: var(--muted); font-size: .87rem; text-align: center; }

.faq details {
  border: 1px solid var(--border);
  border-radius: .5rem;
  padding: .85rem 1rem;
  margin-bottom: .6rem;
  background: #fff;
}
.faq summary { cursor: pointer; font-weight: 600; }
.faq summary::marker { color: var(--primary); }
.faq details p { margin: .7rem 0 0; color: var(--muted); line-height: 1.8; }

.spec { width: 100%; border-collapse: collapse; }
.spec th, .spec td { border: 1px solid var(--border); padding: .55rem .75rem; text-align: left; font-size: .93rem; }
.spec th { width: 34%; background: #fafafd; font-weight: 600; }

.note {
  border-left: 3px solid var(--primary);
  padding: .2rem 0 .2rem 1rem;
  color: var(--muted);
  font-size: .93rem;
}

@media (max-width: 640px) {
  .hero { padding: 2rem 1rem; }
  .hero h1 { font-size: 1.6rem; }
  .hero-shot { flex: 1 1 auto; margin: 0 auto; }
  .badge { min-width: 100%; }
}

.crumbs { color: var(--muted); font-size: .85rem; margin: 1rem 0 .5rem; }
.crumbs a { color: var(--primary); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.feature h3 a { text-decoration: none; }
.feature h3 a:hover { text-decoration: underline; }

.inline-shot { float: right; width: 190px; margin: 0 0 1rem 1.5rem; }
.inline-shot img { width: 100%; height: auto; border-radius: 12px; border: 1px solid var(--border); display: block; }
.inline-shot figcaption { margin-top: .4rem; color: var(--muted); font-size: .8rem; text-align: center; line-height: 1.5; }
@media (max-width: 640px) {
  .inline-shot { float: none; width: 60%; margin: 1rem auto; }
}
