@charset "UTF-8";
/* CSS Document */

.lead{
  font-size: 16px;
  line-height: 1.9;
  margin: 10px 0 30px;
  color: #333;
}

/* 中央画像を上品に */
.frame{
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  margin: 20px 0 30px;
}

/* CTAボタン */
.cta{
  margin: 30px 0 10px;
}
.square_btn2{
  display:inline-block;
  padding:12px 22px;
  margin:5px 8px 5px 0;
  border:1px solid #333;
  color:#000;
  text-decoration:none;
  font-weight:500;
  transition: all .25s ease;
}
.square_btn2:hover{
  background:#111;
  color:#fff;
}

/* 情報ボックス（既存.boxの拡張） */
.box.subtle{
  background:#f9f9f7;
  border:1px solid #ddd;
}

/* 箇条書きの読みやすさ */
.box .list li{
  line-height:1.7;
  margin-bottom:8px;
}

/* 注意書き */
.note{
  font-size: 13px;
  color:#666;
  margin-top:12px;
}

/* セクション間の余白を整える */
.content{
  margin-bottom: 50px;
}


.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.choice-card {
  display: block;
  padding: 24px 22px;
  background: #fafafa;
  border-radius: 14px;
  text-decoration: none;
  color: #222;
  border: 1px solid #e6e6e6;
  transition: 0.25s ease;
}

.choice-card:hover {
  background: #f3f3f3;
  border-color: #ccc;
}
.choice-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
  line-height: 1.4;
}
.choice-card p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 12px;
  color: #555;
}
.choice-card .tag {
  display: inline-block;
  font-size: 12px;
  color: #666;
  background: #eee;
  padding: 4px 10px;
  border-radius: 999px;
}
