@charset "utf-8";



.newsline {
    margin:0 auto 30px;
    border-bottom: solid 10px #a4cb34;
    padding-bottom: 10px;
    font-size: 1.6em;
    font-weight: bold;
    display: inline;
  padding-left: 2rem;
  padding-right: 2rem;
   
}


.osusume01 {
color: #ff9100;
font-size: 1.5rem;
font-weight: bold;
}

.osusume02 {
font-size: 1.5rem;
font-weight: bold;
}

.orange {
color: #ff9100;
}

.kimidori {
	color: #a4cb34;
}

.btn-success {
    color: #fff;
    background-color: #ff9100;
    border-color: #ff9100;
}
.box {
background-color: #fff;
border-radius: 15px;
}

.num-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #a4cb34;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.5px;
  /* 以下の1行を追加 */
  aspect-ratio: 1 / 1;
}

.small-icon {
  font-size: 18px !important;
}

.btnwid {
	width: 50%;
}
@media(min-width:768px) {
.btnwid {
	width: 30%;
}
}


.custom-btn-circle {
  /* 背景色と文字色 */
  background-color: #ff9100; /* 例: Bootstrapのprimaryカラー */
  color: #fff;
  
  /* 角を丸くする */
  border-radius: 9999px; /* または大きなピクセル値（例: 50px） */
  
  /* ボタンのサイズと余白 */
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  
  /* 文字のスタイル */
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  
  /* ホバー時のアニメーション */
  transition: background-color 0.2s ease-in-out;
    text-decoration: none; /* これを追加 */
	width: 50%;
	  display: inline-block; /* これを追加 */
}

@media(min-width:768px) {
.custom-btn-circle {
	width: 30%;
}
}

.custom-btn-circle:hover {
  background-color: #d47900; /* ホバー時の背景色 */
  color:#fff;
}