.p-single .s-thumbnail {
  margin-bottom: 4rem;
}

.p-single .i-ttl {
  margin-bottom: 5rem;
}

.p-single .i-ttl__top {
  display: flex;
  gap: 1.5rem;
}

.p-single .i-ttl__ttl {
  margin-top: 1rem;
  font-size: var(--post_ttl_fontSize_pc);
  font-weight: bold;
  line-height: 1.5;
}

@media (--mobile) {
  .p-single .i-ttl__ttl {
    font-size: var(--post_ttl_fontSize_sp);
  }
}

.p-single .s-gallery__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem 3rem;
}

@media (--mobile) {
  .p-single .s-gallery__list {
    gap: 2rem 2rem;
  }
}

@media (--mobile) {
  .p-single .s-gallery__list {
    grid-template-columns: 1fr 1fr;
  }
}

.p-single .s-gallery__list li {
  list-style: none;
}

.p-single .s-gallery__list li a {
  position: relative;
  display: block;
  height: 38rem;
  background: #f4f4f4;
  transition: var(--transition);
}

@media (--mobile) {
  .p-single .s-gallery__list li a {
    height: 17rem;
  }
}

.p-single .s-gallery__list li a:hover {
  opacity: 0.5;
}

.p-single .s-gallery__list li a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-single .s-gallery__list li a p {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1rem 1.5rem;
  background: #fff;
}

@media (--mobile) {
  .p-single .s-gallery__list li a p {
    padding: 0.5rem 1rem;
  }
}

.p-single .s-table table {
  width: 100%;
  margin-top: 3rem;
}

@media (--mobile) {
  .p-single .s-table table tr {
    display: block;
  }
}

.p-single .s-table table th {
  width: 0;
  color: var(--txt-color);
  background: var(--table-bg);
}

@media (--large) {
  .p-single .s-table table th {
    white-space: nowrap;
  }
}

@media (--mobile) {
  .p-single .s-table table th,
  .p-single .s-table table td {
    display: block;
    width: 100%;
  }
}