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

/*見出し*/
/*小見出し*/
.bh1{
	color: #424FAD;
	font-weight: bold;

}
/*余白*/
.yh1{
	padding-bottom: 0px;
	padding-top: 0px;
	margin-bottom: -30px;
	margin-top: -10px;
	margin-left: 60px;
}
.inj-btns {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.inj-btns__item {
	flex: 1;                 /* ← これで均等幅！ */
	max-width: 270px;        /* ← 広がりすぎ防止（任意） */
	padding: 12px 20px;
	background-color: #DAE6FF;
	border: 1px solid #A8B6C9;
	border-radius: 30px;
	font-size: 1.2em;
	color: #4b3f35;
	text-align: center;
}

/* ホバーで少し浮く */
.inj-btns__item:hover {
	background-color: #E4EDFF;
	transform: translateY(-2px);
}
.kk1{
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	display: block;
}
@media screen and (max-width: 768px) {
	/*余白*/
.yh1{
	padding-bottom: 0px;
	padding-top: 0px;
	margin-bottom: 0px;
	margin-top: -10px;
	margin-left: 0px;
}

  .inj-btns {
    flex-direction: column;   /* ← 縦並び */
    align-items: center;      /* ← 中央寄せ */
  }

  .inj-btns__item {
    width: 80%;               /* ← ボタン幅（お好みで） */
    max-width: 300px;
  }
}