.report-hero-text{
  max-width:860px;
}

.report-intro{
  padding-top:54px;
}

.report-intro-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:52px;
  align-items:center;
}

.report-intro-copy p{
  margin:0 0 18px;
  color:var(--text-light);
}

.report-intro-copy p:last-child{
  margin-bottom:0;
}

.report-intro-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:24px;
  padding:32px;
  box-shadow:var(--shadow);
}

.report-intro-card h3{
  margin:0 0 18px;
  font-size:22px;
  line-height:1.4;
}

.report-check-list{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:14px;
}

.report-check-list li{
  position:relative;
  padding-left:28px;
  color:var(--text-light);
}

.report-check-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.72em;
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--brand);
  transform:translateY(-50%);
}

.report-message-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:52px;
  align-items:center;
}

.report-message-copy p{
  margin:0 0 18px;
  color:var(--text-light);
}

.report-message-copy p:last-child{
  margin-bottom:0;
}

.report-message-image img{
  width:100%;
  aspect-ratio:5 / 4;
  object-fit:cover;
  border-radius:24px;
  box-shadow:var(--shadow);
}

.report-files .section-head{
  margin-bottom:38px;
}

.report-year-list{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:24px;
}

.report-year-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:24px;
  padding:30px;
  box-shadow:var(--shadow);
}

.report-year-card h3{
  margin:0 0 10px;
  font-size:24px;
  line-height:1.4;
}

.report-year-card p{
  margin:0 0 20px;
  color:var(--text-light);
}

.report-file-links{
  display:grid;
  gap:14px;
}

.report-file-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:16px 18px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  color:var(--text);
  font-weight:500;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.report-file-item span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:52px;
  padding:6px 10px;
  border-radius:999px;
  background:var(--brand-soft);
  color:var(--brand-dark);
  font-size:12px;
  font-weight:700;
  letter-spacing:.04em;
}

.report-file-item:hover{
  transform:translateY(-2px);
  border-color:#d8c9c4;
  box-shadow:0 12px 28px rgba(65,40,38,.08);
}

.report-public .section-head{
  margin-bottom:38px;
}

.report-public-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:24px;
}

.report-public-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:24px;
  padding:30px;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  min-height:100%;
}

.report-public-card h3{
  margin:0 0 12px;
  font-size:22px;
  line-height:1.4;
}

.report-public-card p{
  margin:0 0 20px;
  color:var(--text-light);
  flex:1;
}

.report-file-item.single{
  justify-content:center;
}

/* =====================================
   PUBLIC / 定款・法人情報
===================================== */

.public-files-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:24px;
  margin-top:28px;
}

.public-files-grid .report-file-card{
  background:#fff;
  border:1px solid #eadfdb;
  border-radius:20px;
  padding:28px;
  box-shadow:0 10px 24px rgba(65,40,38,.06);
  display:flex;
  flex-direction:column;
  min-height:100%;
}

.public-files-grid .report-file-card h3{
  margin:0 0 14px;
}

.public-files-grid .report-file-card p{
  margin:0 0 22px;
  color:var(--text-light);
  flex:1;
}

.public-files-grid .btn{
  align-self:flex-end;
  margin-top:10px;
}

@media (max-width:960px){
  .report-intro{
    padding-top:34px;
  }

  .report-intro-grid,
  .report-message-grid{
    grid-template-columns:1fr;
    gap:28px;
  }

  .report-message-image{
    order:-1;
  }

  .report-intro-card,
  .report-year-card,
  .report-public-card,
  .report-file-card{
    padding:24px;
    border-radius:20px;
  }

  .report-message-image img{
    border-radius:20px;
  }

  .report-year-list,
  .report-public-grid,
  .public-files-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:640px){
  .report-file-item{
    padding:14px 16px;
    border-radius:14px;
    font-size:15px;
  }

  .report-file-item span{
    min-width:48px;
    padding:5px 9px;
    font-size:11px;
  }

  .report-year-card h3{
    font-size:22px;
  }

  .report-public-card h3,
  .report-intro-card h3{
    font-size:20px;
  }
}