/* 撮りごろ ブランドサイト 共通スタイル */
:root {
  --bg-top: #0d0e18;
  --bg-bottom: #171528;
  --card: rgba(255, 255, 255, 0.05);
  --card-border: rgba(255, 255, 255, 0.10);
  --text: #ffffff;
  --text-2: rgba(255, 255, 255, 0.64);
  --text-3: rgba(255, 255, 255, 0.42);
  --gold-1: #ffb84d;
  --gold-2: #f58a3c;
  --blue: #8fa8e8;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
  min-height: 100vh;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold-1); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: 900px; margin: 0 auto; padding: 0 24px; }

/* ヘッダー */
header.site {
  padding: 20px 0;
  border-bottom: 1px solid var(--card-border);
  position: sticky; top: 0;
  backdrop-filter: blur(12px);
  background: rgba(13, 14, 24, 0.72);
  z-index: 10;
}
header.site .wrap { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 20px; color: var(--text); }
.brand .dot {
  width: 26px; height: 26px; border-radius: 8px;
  background: linear-gradient(150deg, #23243f 10%, var(--gold-1) 95%);
}
nav a { color: var(--text-2); margin-left: 18px; font-size: 15px; }
nav a:hover { color: var(--text); text-decoration: none; }

/* ヒーロー */
.hero { padding: 76px 0 40px; display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center; }
.hero h1 { font-size: 40px; line-height: 1.3; letter-spacing: 0.5px; }
.hero .tag { margin-top: 18px; color: var(--text-2); font-size: 17px; }
.hero .note { margin-top: 20px; color: var(--text-3); font-size: 14px; }

/* セクション */
section { padding: 44px 0; }
section > h2 { font-size: 25px; margin-bottom: 8px; }
section > .lead { color: var(--text-2); margin-bottom: 26px; }

/* 図(SVG) */
.figure {
  background: rgba(0,0,0,0.28);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 14px;
}
.figure svg { display: block; width: 100%; height: auto; }
.figure .cap { color: var(--text-3); font-size: 13px; text-align: center; margin-top: 8px; }

/* アプリカード */
.apps { display: grid; gap: 18px; }
.app {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px; background: var(--card);
  border: 1px solid var(--card-border); border-radius: 20px;
}
.app .icon {
  width: 66px; height: 66px; border-radius: 16px; flex: none;
  background: linear-gradient(160deg, #1b1b3a 10%, #f4a259 100%);
}
.app .body h3 { font-size: 18px; margin-bottom: 2px; }
.app .body .meta { color: var(--text-3); font-size: 13px; margin-bottom: 8px; }
.app .body p { color: var(--text-2); font-size: 15px; }
.badge {
  display: inline-block; font-size: 12px; font-weight: 700;
  color: #17120a; background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  padding: 2px 10px; border-radius: 999px; margin-left: 8px; vertical-align: middle;
}
.badge.soon { color: var(--text-2); background: var(--card); border: 1px solid var(--card-border); }

/* 3つの考え方など */
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tile {
  padding: 20px; background: var(--card);
  border: 1px solid var(--card-border); border-radius: 18px;
}
.tile h3 { font-size: 16px; margin-bottom: 6px; }
.tile p { color: var(--text-2); font-size: 14px; }

/* テクニック */
.tech { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: center; margin-bottom: 40px; }
.tech.rev > .figure { order: 2; }
.tech h3 { font-size: 20px; margin-bottom: 8px; }
.tech p { color: var(--text-2); font-size: 15px; }
.tech .tip {
  margin-top: 12px; padding: 12px 14px;
  border-left: 3px solid var(--gold-1);
  background: rgba(255,184,77,0.07);
  border-radius: 0 10px 10px 0;
  color: var(--text-2); font-size: 14px;
}

/* 汎用カード */
.card { padding: 24px; background: var(--card); border: 1px solid var(--card-border); border-radius: 20px; }
.muted { color: var(--text-2); }

footer.site {
  border-top: 1px solid var(--card-border);
  padding: 30px 0; margin-top: 40px;
  color: var(--text-3); font-size: 14px; text-align: center;
}

/* 文書ページ */
.doc h1 { font-size: 30px; padding-top: 30px; }
.doc h2 { margin-top: 32px; font-size: 19px; }
.doc p { color: var(--text-2); margin-top: 10px; }
.doc ul { color: var(--text-2); margin: 10px 0 0 20px; }
.doc li { margin-top: 6px; }
.doc .updated { color: var(--text-3); font-size: 14px; margin-top: 6px; }

@media (max-width: 720px) {
  .hero { grid-template-columns: 1fr; padding-top: 50px; }
  .hero h1 { font-size: 30px; }
  .grid3 { grid-template-columns: 1fr; }
  .tech { grid-template-columns: 1fr; }
  .tech.rev > .figure { order: 0; }
  .app { flex-direction: column; }
  nav a { margin-left: 12px; font-size: 14px; }
}

/* アプリごとのアイコン(CSSアート) */
.app .icon { position: relative; }
.app .icon::after { content: ""; position: absolute; inset: 0; margin: auto; }
.icon-sun::after {
  width: 26px; height: 26px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffe9b0, #f4a259);
}
.icon-cam::after {
  width: 30px; height: 30px; border-radius: 50%;
  border: 5px solid #fbf3e6;
  background: radial-gradient(circle at 35% 35%, #ffe9b0, #f4a259);
}
.icon-vid::after {
  width: 32px; height: 26px; border-radius: 8px;
  border: 4px solid #fbf3e6;
  background: radial-gradient(circle at 50% 50%, #e8443a 0, #e8443a 5px, transparent 6px);
}
.icon-fin::after {
  width: 28px; height: 28px; border-radius: 50%;
  background: conic-gradient(from 0deg, #ffb84d, #e86aa6, #8fa8e8, #7fd8a8, #ffb84d);
}
.icon-alb::after {
  width: 28px; height: 22px; border-radius: 5px;
  border: 3px solid #fbf3e6;
  box-shadow: 5px -5px 0 -1px rgba(251, 243, 230, 0.5);
}

/* 体験の流れ(4ステップのタイル) */
.grid4 {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
a.tile.flow {
  display: block; text-decoration: none;
  padding: 20px; background: var(--card);
  border: 1px solid var(--card-border); border-radius: 18px;
  transition: border-color 0.15s;
}
a.tile.flow:hover { border-color: var(--gold-1); text-decoration: none; }
a.tile.flow h3 { color: var(--gold-1); font-size: 17px; margin-bottom: 6px; }
a.tile.flow p { color: var(--text-2); font-size: 14px; }
@media (max-width: 560px) {
  .grid4 { grid-template-columns: 1fr; }
}


/* 螺旋ヒーロー: 大きな黄金螺旋の渦の中心に、いちばん伝えたい一文を置く */
.spiral-hero {
  position: relative; aspect-ratio: 500 / 332; margin: 26px 0 8px;
  border: 1px solid var(--card-border); border-radius: 20px;
  background: rgba(255, 255, 255, 0.03); overflow: hidden;
}
.spiral-hero svg.bg { position: absolute; inset: 0; width: 100%; height: 100%; }
.spiral-hero .line {
  position: absolute; left: 29.4%; top: 29.3%;
  transform: translate(-50%, -50%);
  margin: 0; font-size: 22px; font-weight: 700; line-height: 2.1;
  color: #fff; text-align: center; letter-spacing: 0.04em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
  white-space: nowrap;
}
@media (max-width: 560px) {
  .spiral-hero .line { font-size: 16px; }
}
