  /* 投稿 */
  .l-single {
    width: 100%;
    position: relative;
    margin: 0 auto 5rem;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;
    z-index: 10;
  }
  @media (min-width: 1024px) {
    .l-single {
      max-width: 1400px;
    }
  }
  .l-single-main {
    width: 90%;
  }
  @media (min-width: 1024px) {
    .l-single-main {
      max-width: 1300px;
    }
  }
  @media (max-width: 768px) {
    .l-single-main {
      width: 95%;
    }
  }
  .l-single-main a {
    text-decoration: underline;
    color: var(--blue-8);
    font-weight: 600;
  }
  .single-icon {
    color: var(--stone-0);
    text-align: center;
    padding: 0.35rem;
    font-weight: 600;
    border-radius: 0.5rem;
    width: 150px;
    height: 30px;
    background: var(--blue-7);
  }
  .publichike-icon {
    background: var(--yellow-7);
  }
  .single-title {
    width: 100%;
    text-align: left;
  }

  .single-title h1 {
    margin: 1rem 0 2rem;
    transform: none;
    font-weight: 500;
    font-size: 30px;
  }
  .l-single-detail {
    width: 80%;
    margin: 0 auto;
  }
  @media (min-width: 1024px) {
    .l-single-detail {
      max-width: 1200px;
    }
  }
  @media (max-width: 768px) {
    .l-single-detail {
      width: 100%;
    }
  }
  .single-about {
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 2.5em;
  }
  .single-about p {
    text-align: left;
  }
  .single-main-photo {
    text-align: left; 
  }
  .single-main-photo img {
    width: 100%;
    height: auto;
  }
  .single-contents {
    margin-bottom: 3rem;
  }
  .single-contents .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 0.75em 0;
  }
  .single-contents dt {
    width: 150px;
    background: var(--stone-2);
    color: var(--stone-9);
    margin-right: 1em;
    padding: 0.75em;
    font-weight: 500;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center; 
  }
  .single-contents dd {
    margin: 0;
    padding: 8px;
    flex: 1;
    line-height: 2em;
  }
  @media (max-width: 768px) {
    .single-contents dt {
      width: 120px;
      font-size: 0.9em;
      padding: 0.55em;
    }
    .single-contents dd {
      padding: 5px;
      line-height: 1em;
      font-size: 0.9em;
    }
  }
  .single-contact {
    margin-bottom: 3rem;
  }
  .single-contact div{
    padding-left: 1rem;
  }
  .single-contact h3, .single-contact p {
    transform: none;
  }

  /** 写真一覧 */
  .gallery {
    display: grid;
    gap: 10px;
    align-items: center;
    margin: 0 auto;
  }
  .gallery-1 {
    grid-template-columns: 1fr;
    max-width: 800px;
  }
  .gallery-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-5 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-areas:
      "img1 img1 img2 img2 img3 img3"
      "img4 img4 img4 img5 img5 img5";
    gap: 10px;
  }
  .gallery-5 .gallery-img:nth-child(1) { grid-area: img1; }
  .gallery-5 .gallery-img:nth-child(2) { grid-area: img2; }
  .gallery-5 .gallery-img:nth-child(3) { grid-area: img3; }
  .gallery-5 .gallery-img:nth-child(4) { grid-area: img4; }
  .gallery-5 .gallery-img:nth-child(5) { grid-area: img5; }
  .gallery-6plus {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-img img {
    width: 100%;
    height: auto;
    display: block;
  }
  @media (max-width: 1000px) {
    .gallery-3,
    .gallery-6plus {
      grid-template-columns: repeat(2, 1fr);
    }
    .gallery-5 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-template-areas: none;
    }
    .gallery-5 .gallery-img {
      grid-area: auto !important;
      grid-column: auto !important;
    }
  }
  @media (max-width: 768px) {
    .gallery-1,
    .gallery-2,
    .gallery-3,
    .gallery-4,
    .gallery-6plus {
      grid-template-columns: 1fr;
    }
    .gallery-5 {
      display: grid;
      grid-template-columns: 1fr;
      grid-template-areas: none;
    }
    .gallery-5 .gallery-img {
      grid-area: auto !important;
      grid-column: auto !important;
    }
  }