@charset "UTF-8";
/* report */
.report__ttl { font-size: clamp(18px, 1.875vw/*960*/, 22px); color: var(--blue);}
.report__hl { display: grid; gap: 10px; }
.report__list{
  display: grid;
  grid-template-columns: repeat(auto-fill, 68px);
  gap: 8px;
}

.report-message__container { background: url('../img/report/bg_report.png') top right / 96px no-repeat;}
.report-message__head { height: 100%; grid-column: 1 / span 1;}
.report-message__ttl {
  line-height: 1.5;
  margin: 0 auto;
  writing-mode: vertical-lr;
}
.report-message__head-sub { display: none;}
.report-message__hl {
  display: grid;
  gap: 10px;
}
.report-message__hl-ttl { font-size: clamp(1.6rem, 1.6666vw/*960*/, 1.8rem);}
.report-message__hl-date {
  font-weight:500;
  color: #888;
  line-height: calc(1em + 1px);
}
.report-message__txt { display: grid; gap: 32px;}

.report-archive__body {gap:16px;}
.report-archive__item { width:100%;}
.report-archive__item summary {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  line-height: 1;
  background: var(--box-line);
  border-radius: 3px;
  cursor : pointer;
  padding: 16px 6px 12px 10px;
}
.report-archive__item summary::-webkit-details-marker { display: none;}
.report-archive__item summary span::after {
  width: 16px;
  height: 16px;
  margin-left: auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M11 11V5H13V11H19V13H13V19H11V13H5V11H11Z' fill='%23e4007f'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  content: '';
  transition: transform .3s;
  opacity: .7;
  margin-left: auto;
  flex-shrink: 0;
}
.report-archive__item[open] summary span::after {
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 11H19V13H5V11Z' fill='%23e4007f'%3E%3C/path%3E%3C/svg%3E");
}
.report-archive__item summary span {
  display: flex;
  align-items: center;
  width: 100%;
  line-height: 1.6;
}

.report-archive__item div {
  display: grid;
  gap: 34px;
  line-height: 2;
  margin: 0;
  padding: 32px 0;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform .5s ease, opacity .5s ease;
  @starting-style {
    transform: translateY(-10px);
    opacity: 0;
  }
}
.report-archive__item[open] div {
  transform: translateY(0);
  opacity: 1;
}

.report-archive__img {
  display: block;
  max-width: 256px;
  height: auto;
}
@media (min-width: 600px){
  .report-message__head { height: 100%; grid-column: 1 / span 2;}
  .report-message__container { background-size: 128px;}
  .report-archive__item summary { padding: 16px;}
  .report-archive__item summary span {
  gap:8px;
  width: calc(100% - 4em);
  line-height: 1.6;
}
 .report-archive__item summary span:before {
  content:'';
  display: inline-block;
  background: url('../img/nav/mv-i-mark.svg') center / 14px no-repeat ;
  width : 14px;
  height: 16px;
  flex-shrink: 0;
}
 .report-archive__item div { padding: 32px 16px;}
}
@media (min-width: 768px){
.report__list { gap: 16px; }
.report-message__container { background-size: 160px;}
.report-message__head-sub {
  grid-column: 1 / span 1;
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
  margin-right: auto;
  writing-mode: vertical-lr;
}
.report-message__head {
  grid-column: 2 / span 1;
  justify-content: center;
}
.report-message__hl {
  min-height: 40px;
  background: url('../img/nav/mv-i-mark.svg') left center / 32px no-repeat;
  padding-left: 48px;
}

}
