a.link {
  color: #0066B5;
  text-decoration: underline;
}
a.link:hover {
  text-decoration: none;
}
.snsAnchorList {
  background-color: #F2F5F7;
  padding: 10px;
  margin-bottom: 60px;
}
.snsAnchorList > ul {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .snsAnchorList > ul {
    flex-direction: row;
  }
}
.snsAnchorList > ul:nth-of-type(n+2) {
  margin-top: 20px;
}
.snsAnchorList > ul > li {
  width: 100%;
  min-height: 35px;
  padding: 0;
}
.snsAnchorList > ul > li > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 15px 55px;
  background-position: left 15px center;
  background-repeat: no-repeat;
	background-size: 25px;
}
.snsAnchorList > ul > li.fb > a{
	background-image: url(/social_media/img/index/icon_fb.svg);
}
.snsAnchorList > ul > li.ig > a{
	background-image: url(/social_media/img/index/icon_ig.svg);
}
.snsAnchorList > ul > li.yt > a{
	background-image: url(/social_media/img/index/icon_yt.svg);
}
.snsAnchorList > ul > li.line > a{
	background-image: url(/social_media/img/index/icon_line.svg);
}
.snsAnchorList > ul > li.note > a{
	background-image: url(/social_media/img/index/icon_note.svg);
}

.snsAnchorList > ul > li > a:after {
    content: '';
    width: 12px;
    height: 12px;
    border: 0;
    border-top: solid 1.5px #666;
    border-right: solid 1.5px #666;
    transform: rotate(135deg);
    position: absolute;
    top: 0;
    right: 15px;
    bottom: 7px;
    margin: auto;
}
@media screen and (min-width: 768px) {
  .snsAnchorList > ul > li > a {
    justify-content: center;
    padding: 0 30px;
  }
}
.snsAnchorList > ul > li:not(:last-of-type) > a {
  border-bottom: 1px solid #d8d8d8;
}
@media screen and (min-width: 768px) {
  .snsAnchorList > ul > li:not(:last-of-type) > a {
    border-bottom: none;
    border-right: 1px solid #d8d8d8;
  }
}
.h3 {
  font-weight: 500;
}
.accountList {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.accountListItem {
  width: 100%;
  border-bottom: 1px solid #DEDEDE;
}
@media screen and (min-width:768px) {
  .accountListItem {
    width: 47%;
  }
}
.accountListItemCont {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 10px 0;
}
.accountListItemImg img {
  border-radius: 50%;
  border: 1px solid #DEDEDE;
}
.linkTerms a.link {
  position: relative;
  display: inline-block;
  padding-left: 12px;
}
.linkTerms a.link:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #0066B5;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}