@charset "UTF-8";

.sitelist {

}
.sitelist ul {
	display: flex;
  flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    padding:0.25rem
}

.sitelist ul li {
	width: 33.33%;
}


.sitelist ul li a {
	padding: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sitelist ul li h3 {
  text-align: justify;
    line-height: 1.2;
	color:#444;
	font-weight: normal;
  margin-top: .5rem;
}
.sitelist ul li figure {
	position: relative;
    overflow: hidden;

}

.sitelist ul li figure img {
  width: 7rem;
    height: 7rem;
    object-fit: cover;
    display: block;
    border: 1px solid #ccc;
}

.sitelist ul li figcaption {
  flex:1;
}

.sitelist ul li figure::after {
    content: "";
    background-image: url(../img/linkArrow.svg);
    width: 1.4rem;
    height: 1.4rem;
    position: absolute;
    filter: drop-shadow(0 0 .1em #000);
    background-size: auto 100%;
    background-repeat: no-repeat;
    bottom: 0.5rem;
    left: 0.5rem;
    z-index: 10;
}


.sitelist_grade-10 figure::before {
    content: "優 良";
    position: absolute;
    z-index: 1;
    top: 0.4em;
    left: -1.75em;
    width: 100%;
    text-align: center;
    background: #f00;
    color: #fff;
    font-weight: 900;
    transform: rotate(-45deg);
    transform-origin: center;
    font-size: 1.2em;
    border: 2px solid #fff;
}


.closed figure::before {
    content: "閉 鎖";
    position: absolute;
    z-index: 1;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(51, 51, 51, 0.847);
  pointer-events: none;
  z-index: 9;
}

.verify figure::before {
    content: "検証中";
    position: absolute;
    z-index: 1;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(169, 51, 0, 0.674);
  pointer-events: none;
  z-index: 9;
}




@media screen and (min-width: 744px) {

  .sitelist > div {
    max-width: 760px;
        margin: 0 auto;
  }

	.sitelist ul li {
	width: 20%;
}
.sitelist ul {
  justify-content: flex-start;
  padding: 1rem 0;
}

.sitelist_grade-10 figure::before {
    left: -2.4em;
}

.sitelist ul li figure::after {
    bottom: 0.4rem;
    left: 0.4rem;
}
.sitelist ul li figure img {
    width: 9rem;
    height: 9rem;
}

}
