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



/*===「会長あいさつ」「スポーツ協会について」「概要」「組織図」ボタン===*/
.pagebtn {
	display: block;
	vertical-align: middle;
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 0.1em;
	width: 400px;
	padding: 2rem;
	margin: 1rem;
	background-color: #efefef;
	border-radius: 0.3rem;
	transition: 0.5s;
}
@media screen and (max-width:800px) {
	.pagebtn {
		width: 90%;
		font-size: 18px;
		margin:20px auto;
	}
}
.pagebtn:hover {
	background-color: #0068b7;
	color: #fff;
}


/*----丸の中に右向き三角の図形CSS----*/
.dli-caret-circle-fill-right {
  display: inline-block;
  vertical-align: text-top;
  color: #0068b7;
  line-height: 1;
  position: relative;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  background: currentColor;
  border-radius: 50%;
  box-sizing: content-box;
  margin-right: 10px;
}
.pagebtn:hover .dli-caret-circle-fill-right {
	color: #fff;
}

.dli-caret-circle-fill-right::before {
  content: '';
  color: #fff;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.18em 0.3em;
  border-left-color: currentColor;
  border-right: 0;
  transform: translateX(15%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.pagebtn:hover .dli-caret-circle-fill-right::before {
	color: #0068b7;
}

.btn-flex {
	display: flex;
	justify-content: center;
}
@media screen and (max-width:800px) {
	.btn-flex {
		display: block;
		margin: auto;
		width: 100%;
	}
}



/*========================================*/


















