/* ロゴサイズとレイアウトの修正 */

:root{
  --bg: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --link: #111827;
  --accent: #2563eb; 
}

*{ box-sizing: border-box; }

html, body{
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
                Helvetica, Arial, "Hiragino Kaku Gothic ProN",
                "Hiragino Sans", "Noto Sans JP", Meiryo, sans-serif;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

img{
  max-width: 100%;
  height: auto;
  display: block;
}

.page{
  max-width: 820px;
  margin: 64px auto;
  padding: 0 24px;
}

@media (max-width: 640px){
  .page{
    margin: 40px auto;
    padding: 0 18px;
  }
}

/* HERO - ロゴを元の大きさと中央寄りに戻す */
.hero{
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* テキストは左寄せ */
  gap: 16px;
}

.hero-logo{
  width: 100%;
  display: flex;
  justify-content: center; /* ロゴは中央に配置 */
  margin-bottom: 8px;
}

.hero-logo img{
  /* 小さくなったのを修正：幅を広げました */
  width: clamp(240px, 60vw, 520px); 
  height: auto;
}

.divider{
  width: 100%;
  height: 1px;
  background: var(--line);
  margin: 12px 0;
}

.lead{
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 8px;
}

/* SECTION */
.section{ margin-top: 52px; }

.section h2{
  font-size: 1.4rem;
  font-weight: 730;
  margin: 0 0 16px;
}

.section h3{
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 8px;
}

p{ margin: 0 0 12px; }

ul{
  margin: 10px 0 16px;
  padding-left: 24px;
}

li{ margin: 8px 0; }

.note{
  color: var(--muted);
  font-size: 0.9rem;
}

/* BULLETS */
.bullets{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.bullet{
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
}

/* COMPANY INFO */
.company{
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  background: #fdfdfd;
}

/* CTA - QRコードとボタンの配置修正 */
.cta{
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center; /* 中央に揃えてバランスを取る */
  gap: 24px;
  width: 100%;
}

.line-btn img{
  height: 48px;
  width: auto;
}

.line-qr{
  margin: 0;
  text-align: center; /* テキストも中央に */
}

.line-qr img{
  width: 180px; /* QRを少し大きく見やすく */
  border: 1px solid var(--line);
  border-radius: 12px;
  margin: 0 auto;
}

.line-qr figcaption{
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.85rem;
}

/* FOOTER */
.footer{
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.small{
  color: var(--muted);
  font-size: 0.85rem;
}

a{ color: var(--accent); text-decoration: none; }
