.sns_area {
  margin: 0 auto 1rem auto;
  width: 100%;
}
.sns_title {
	display: flex;
	justify-content: center;
}
.sns_title img {
	width: 100%;
}

/*.sns_area section {
  margin-bottom: 50px;
}*/

.snsPageHead01 {
  position: relative;
  margin: 40px 0 20px;
  font-size: 30px;
}
.snsPageHead01::before {
  position: absolute;
  top: 50%;
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgb(36, 100, 179);
  content: "";
}
.snsPageHead01 span {
  position: relative;
  z-index: 2;
  padding-right: 0.5em;
  background-color: #fff;
}
 .snsList {
	 display: grid;
	 grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
	 grid-auto-rows: 1fr;
	 grid-gap: 2em;
}
.snsListItem {
  box-sizing: border-box;
  min-width: 120px;
  border-radius: 10px;
  background-color: #f5f5f5;
}

.snsListItem a {
  word-break: break-all;
  display: grid;
  place-items: center;
  padding: 2em 0.5em;
}

.snsListItem a:hover {
  text-decoration: underline;
  color: #333;
  opacity: 1;
}

.snsListItem a:hover img {
  opacity: .6;
}

.snsList .img {
  overflow: hidden;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border-radius: 50%;
}
.sns_area .snsList .img img {
  width: 100%;
  /* min-width: 46px; */
  height: auto;
}
.snsList .txt {
  /* margin-left: 10px; */
  margin-top: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
	color: #333;
}
.snsList .txt .handle {
  color: #999;
}

@media (max-width: 949px) {
	.snsList {
	 grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	 grid-gap: 1.5em;

}

	@media (max-width: 482px) {
	.snsList {
	 grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	 grid-gap: 1em;
	}
	 .snsListItem a {
	paddinging:1em .5em;
		}
	}
	
	@media (max-width: 321px) {
	.snsList {
	 grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
	 grid-gap: 1em;
		}
	}
	



