/* FV */
.anbecollected_fv ul{
  @media screen and (min-width:1000px) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem;
  }
  margin-bottom: 2rem;
}
.anbecollected_fv ul > *{
  min-width: 0;
}
.anbecollected_fv ul li:first-child{
  @media screen and (min-width:1000px) {
    order: 2;
  }
}
.anbecollected_fv ul li:last-child{
  @media screen and (min-width:1000px) {
    order: 1;
    font-size: 1.5rem;
  }
}

/* ページ内アンカー */
.canbe_anchor ul{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border-top: solid 1px #CCC;
  border-left: solid 1px #CCC;
  @media screen and (min-width:1000px) {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    border: none;
  }
}
.canbe_anchor ul > *{
  min-width: 0;
}
.canbe_anchor ul li{
  display: flex;
  align-items: center;
  border-right: solid 1px #CCC;
  border-bottom: solid 1px #CCC;
  margin: 0;
  position: relative;
  @media screen and (min-width:1000px) {
    border: none;
  }
}
.canbe_anchor ul li::after{
  content: "";
  width: 1rem;
  height: 1rem;
  background-image: url(../img/service/icon_canbe_cate.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 0.5rem;
  top: 0;
  bottom: 0;
  margin: auto;
  @media screen and (min-width:1000px) {
    background:none;
    position: inherit;
    right: 0;
  }
}
.canbe_anchor ul li a{
  display: block;
  width: 100%;
  color: #333;
  font-weight: 500;
  line-height: 130%;
  text-decoration: none;
  padding: 1rem 0.5rem;
  @media screen and (min-width:1000px) {
    display: inline;
    width: auto;
    position: relative;
  }
}
.canbe_anchor ul li a::after{
  @media screen and (min-width:1000px) {
    content: "";
    width: 1rem;
    height: 1rem;
    background-image: url(../img/service/icon_canbe_cate.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    right: -1rem;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}

/* リスト */
.canbe_list > div{
  text-align: center;
}
.canbe_list h3{
  color: #3089c8;
  font-size: 1.5rem;
  text-align: center;
  margin: 1.5rem auto;
  @media screen and (min-width:1000px) {
    text-align: left;
  }
}
.canbe_list ul{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  @media screen and (min-width:1000px) {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  }
}
.canbe_list ul li{
  text-align: left;
  padding-left: 1rem;
  position: relative;
  margin: 0.5rem 0;
}
.canbe_list ul li::before{
  content: "●";
  font-size: 0.5rem;
  color: #3089c8;
  position: absolute;
  left: 0;
  top: 0.6rem;
}
.canbe_list .gray_bg{
  border-radius: 1rem;
  padding: 1.5rem;
  @media screen and (min-width:1000px) {
    padding: 1.5rem 1.5rem 1.5rem 3rem;
  }
}
.canbe_list ul li a{
  color: #333;
  display: block;
}