/* 全体 */
body {
  font-family: "Noto Sans JP", sans-serif;
  background: #fffdf5; /* 優しい薄い黄色 */
  color: #333;
  margin: 0;
  padding: 40px 20px;
  line-height: 1.8;
}

h1 {
  text-align: center;
  font-weight: 500;
  margin-bottom: 10px;
}

.subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}
.card-container {
  display: flex;          /* 横並びにする */
  flex-wrap: wrap;       /* 画面が狭いときは折り返す */
  gap: 10px;             /* カード同士の隙間 */
  justify-content: center; /* 左詰めに配置 */
  margin-top: 20px;
  width: 100%;           /* コンテナ自体を全幅にする */
}

/* フリー（主役カード） */
.free-card {
  flex: 0 1 350px;       /* 基本の幅を300pxに設定（調整可） */
  max-width: 420px;
  margin: 0;
  background: #fff7d6;
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  box-sizing: border-box;
}

.free-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 16px;
}

.free-title {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.free-desc {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 16px;
}

.free-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ffd85a;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.free-btn:hover {
  background: #ffcd3a;
}

/* 有料（別枠） */
.paid-section {
  max-width: 700px;
  margin: 0 auto;
  background: #1e2a45; /* 濃紺 */
  color: #f0f0f0;
  padding: 24px;
  border-radius: 14px;
}

.paid-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 16px;
  opacity: 0.9;
}

.paid-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.paid-item:last-child {
  border-bottom: none;
}

.paid-name {
  font-weight: 500;
}

.paid-desc {
  flex: 1;
  margin: 0 12px;
  font-size: 0.9rem;
  opacity: 0.85;
}

.paid-link {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  border: 1px solid #fff;
  padding: 4px 10px;
  border-radius: 6px;
  opacity: 0.9;
}

.paid-link:hover {
  opacity: 1;
}
.manual-inner {
  max-width: 600px;
  margin: 20px auto 40px;
  background: #fffef8;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.manual-wrapper .manual-title {
  display: block;
}

.manual-inner .manual-title {
  display: none;
}
/* アイコン専用 */
.app-icon {
  width: 80px;        /* ここで大きさを統一 */
  height: 80px;
  object-fit: contain;
  margin-bottom: 16px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.support-link {
  color: #666;
  font-size: 0.85rem;
  text-decoration: none;
  opacity: 0.8;
}

.support-link:hover {
  opacity: 1;
}

/* フッター */
footer {
  text-align: center;
  margin-top: 60px;
  color: #777;
  font-size: 0.85rem;
}
