.about-block {
  display: grid;
  grid-template-columns: 1fr 1fr;    
  padding:0rem;
  gap: 1rem;
  align-items: start;
}

.about-block-last {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0.85rem;
  padding-right:10px !important;
}

.about-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin: 0 0 1.25rem;
}
.about-facts {
  list-style: none;
  margin: 0 !important;
  padding: 0 0.7rem !important;
}

.about-facts ul {
    margin-right:3rem !important;
}

.about-facts li {
  display: block;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}


.about-facts li:last-child { border-bottom: 0; }
.about-label {
  color: var(--muted);
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  margin-right:0.4rem;
}
.about-lead {
  margin: 0;
  font-size: 0.95rem;
}
.about-visuals {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}
.about-figure { margin: 0; }
.about-figure-lower { margin-top: 4.5rem; }
.about-photo {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  background: #ece6dc;
  border: 1px solid var(--line);
}
.about-caption {
  margin-top: 0.45rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}

@media (max-width: 800px) {
  .about-block { grid-template-columns: 1fr; }
}


@media (max-width: 800px) {
  .about-visuals { justify-items: center; }
  .about-photo {
    width: auto;
    margin-inline: auto;
  }

  .about-block div{
      box-sizing: border-box !important; /* 余白を横幅の計算に含める */
      max-width: 95%;       /* 親を絶対に超えないようにする */
  }
  .about-block-last div{
      box-sizing: border-box !important; /* 余白を横幅の計算に含める */
      max-width: 95%;       /* 親を絶対に超えないようにする */      
  }
  

  
}

@media (max-width: 800px) {
  .about-figure-lower { margin-top: 0; }
}

