/* --------------------------------------------------- */
#sec01 {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto 40px 5%;
}

#sec01 .inner {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 40px;
}

#sec01 .box {
  width: 30%;
  margin: 0 5% 4% 0;
}

#sec01 .box:nth-child(3n) {
  margin-right: 0;
}

#sec01 .box a {}

#sec01 .box a .img {
  position: relative;
  width: 100%;
  padding-top: 100%;
  margin-bottom: 10px;
}

#sec01 .box a .img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  object-fit: cover;
  z-index: 0;
}

#sec01 .box a .img::before,
#sec01 .box a .img::after {
  content: "";
  position: absolute;
  z-index: 1;
}

#sec01 .box a .img::before {
  width: auto;
  height: 5px;
  background-color: rgba(228, 228, 228, .35);
  left: 0;
  right: 0;
  bottom: 0;
}

#sec01 .box a .img::after {
  z-index: 2;
  width: 0;
  height: 5px;
  background-color: rgba(228, 228, 228, 1);
  left: 0;
  bottom: 0;
  transition: .3s;
}

#sec01 .box a:hover .img::after {
  width: 100%;
  right: 8px;
}

#sec01 .box a .ttl1 {
  line-height: 140%;
}

#sec01 .box a .time {
  font-size: 11px;
  font-weight: 400;
}

@media screen and (max-width: 680px) {
  #sec01 {
    margin: 0 auto 10px;
  }

  #sec01 .box,
  #sec01 .box:nth-child(3n) {
    width: 47.5%;
    margin: 0 5% 4% 0;
  }

  #sec01 .box:nth-child(2n) {
    margin-right: 0;
  }

  #sec01 .box a .ttl1 {
    font-size: .9em;
  }

  #sec01 .box a .time {
    font-size: 10px;
  }
}

@media screen and (max-width: 480px) {}

/* --------------------------------------------------- */
#sec02 {
  max-width: 900px;
  width: 90%;
  margin: 0 auto 40px 5%;
}

#sec02 p {
  margin-bottom: 20px;
}

#sec02 .img {
  margin-bottom: 30px;
}

#sec02 .ttl1 {
  font-size: 1.3em;
  line-height: 140%;
}

#sec02 .ttl2 {
  font-size: 1.2em;
  line-height: 140%;
}

#sec02 .time {
  font-size: 13px;
  font-weight: 400;
}

#sec02 .gallery {
  margin: 0;
  padding: 0;
  line-height: 110%;
  margin-bottom: 50px;
}

#sec02 .gallery span {
  display: inline-block;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  line-height: 110%;
}

#sec02 .gallery span::before {
  content: "＜";
}

#sec02 .gallery span::after {
  content: "＞";
}

@media screen and (max-width: 680px) {}

@media screen and (max-width: 480px) {}

/* --------------------------------------------------- */


.p-single-content figure {
  margin-bottom: 30px;
}

.c-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.c-pagination li a,
.c-pagination li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: .3s;
}

.c-pagination .current {
  color: #fff;
  background: #111;
}
.c-pagination .page-numbers :hover {
    color: #fff;
  background: #111;
}
@media (hover: hover) {
  .c-pagination .page-numbers:hover {
    color: #fff;
    background: #111;
  }
}