/* 申し込み・問い合わせボタンの追加分。旧テーマの CSS は変更していない。

   もともと `/images/form.gif` と `/images/seminar_entry.gif` という
   画像ボタンだった。画像なので拡大すると粗くなり、文字の大きさを変える設定にも
   追従せず、スマートフォンでは押しづらかった。
   「クリックできる要素は実際の <a> / <button> にする」という方針
   （CLAUDE.md）とも食い違っていたため、実体のリンクに置き換えた。

   見た目は元の画像に合わせている（黄色地・青枠・濃い文字）。 */

.cta_button {
	display: inline-block;
	min-width: 320px;
	box-sizing: border-box;
	padding: 14px 32px;
	background-color: #fff100;
	border: 2px solid #001db3;
	color: #333;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
	transition: 0.2s all ease 0s;
}
.cta_button:hover,
.cta_button:focus {
	background-color: #001db3;
	color: #fff;
}

@media all and (max-width: 767px) {
	/* 画面が狭いときは横幅いっぱいに */
	.cta_button {
		display: block;
		min-width: 0;
		width: 100%;
		padding: 14px 16px;
	}
}
