/* event report----------------------------- */
a {
  text-decoration: none;
  color: #000000;
}

.event-report-title {
  width: 50%;
  margin: auto;
}

.event-report{
  padding: 3% 15%;
  background-image: url(../img/president/common/drink_bg2.webp);
  background-position: left;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #000;
}

/* ===== layout ===== */
.event_report_layout{
  display:flex;
  gap: 40px;
  align-items:flex-start;
}

.schedule_date {
  font-size: 26px;
  color: white;
  margin-bottom: 3%;
}

.event_report_side{
  width: 240px;
  flex: 0 0 240px;
}

.event_report_side .side_title{
  color:#fff;
  margin-bottom: 12px;
}

.event_report_main{
  flex:1;
  min-width:0;
}

/* ===== month archive ===== */
.month_block.is-hidden{
  display:none;
}

.month_archive{
  list-style:none;
  padding:0;
  margin:0;
}

.month_archive_item{
  border-top: 1px solid rgba(255,255,255,.25);
}

.month_archive_item:last-child{
  border-bottom: 1px solid rgba(255,255,255,.25);
}

.month_archive_link{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 14px 6px;
  color:#fff;
  text-decoration:none;
}

.month_archive_item.is-active .month_archive_link{
  font-weight:700;
}

/* ===== report card ===== */
.report_left{ grid-area: areaL; }
.report_media{ grid-area: areaR; }

.report_box{
  background-color: #FFF;
  border-radius: 16px;
  padding: 3%;
  display: grid;
  grid-template-columns: 4fr 2fr;
  grid-template-areas: "areaL areaR";
  gap: 10px;
}

/* 左：縦積み（タイトル～登壇者は詰めて、日付だけ下へ） */
.report_left{
  display: flex;
  flex-direction: column;
  gap: 10px;            /* ★ここで「タイトルと登壇者の隙間」調整 */
  min-height: 0;
}

/* タイトル＋サブタイトル：隙間なしで縦積み */
.report_title_wrap{
  display: flex;
  flex-direction: column;
  gap: 0;
}

.report_box h3{
  font-size: 32px;
  margin: 0;
}

/* subtitle */
.report_subtitle{
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.report_guests_wrap{
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* guests */
.report_guests{
  font-size: 30px;
  font-weight: bold;
  line-height: 1.6;
  margin: 0;
}
.report_guests_company{
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
}

/* 日付：左カラム最下部へ */
.report_content_flex{
  display: flex;
  flex-wrap: wrap;
  margin-top: auto;
  align-self: flex-start;
}

.report_content_flex .report_content_title{
  font-weight: 700;
  font-size: 1.2em;
}

.report_content_flex .report_date{
  color: #ababab;
  font-size: 18px;
}

/* 右：画像＋「続きを見る」 */
.report_media{
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.report_img{
  width: 100%;
  height: auto;
  display: block;
}

/* 画像下：続きを見る（ここだけリンク） */
.report_more{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 0px;
  border: 1px solid #222;
  background: #fff;
  color: #222;
  text-decoration: none;
  font-size: 14px;
  text-align: center;
  width: 100%;
}

.report_more_arrow{
  display: inline-block;
  transition: transform .2s ease;
}

.report_more:hover{
  background: #000000;
  color: #fff;
}

.report_more:hover .report_more_arrow{
  transform: translateX(6px);
}

@media (max-width: 1400px) {
  .report_title .br_1200-1400{
    display: block;
  }
}

@media (max-width: 1200px) {
  .report_box h3{
    font-size: 1.3rem;
  }
  .report_title .br_1200-1400{
    display: none;
  }
  .report_subtitle{
    font-size: 14px;
  }
}

/* ===== SP ===== */
@media (max-width: 768px) {
  .event_report_layout{
    display:block;
  }
  .event_report_side{
    width:100%;
    margin-bottom: 18px;
  }
  .event-report{
    padding: 5%;
    background-image: url(../img/president/common/drink_bg_sp.webp);
  }
  .report_box{
    grid-template-columns: 1fr;
    grid-template-areas:
      "areaL"
      "areaR";
    padding: 6%;
  }
  .report_box h3{
    font-size: 1.5rem;
    text-align: center;
  }
  .report_subtitle{
    text-align: center;
  }
  .report_guests {
    font-size: 20px;
    line-height: 1.6;
  }
  .report_guests_company{
    font-size: 13px;
    line-height: 1.6;
  }
  .report_left{
    gap: 12px;
  }
  .report_content_flex{
    justify-content: center;
    align-self: center;
  }
  .report_more{
    width: 100%;
  }
}

/* ---------- PC ---------- */
@media (min-width: 1600px){
  .report_box h3,
  .report_title{
    font-size: 34px;
    font-weight: 600;
  }
  .report_subtitle{
    font-size: 22px;
  }
  .report_guests{
    font-size: 22px;
  }
  .report_guests_company{
    font-size: 16px;
    line-height: 1.6;
  }
  .report_content_flex .report_date{
    font-size: 18px;
  }
}

/* ---------- ノートPC ---------- */
@media (min-width: 1025px) and (max-width: 1439px){
  .report_box h3,
  .report_title{
    font-size: 28px;
    line-height: 30px;
    font-weight: 600;
  }
  .report_subtitle{
    font-size: 15px;
    line-height: 24px;
  }
  .report_guests{
    font-size: 26px;
  }
  .report_guests_company{
    font-size: 16px;
    line-height: 22px;
  }
  .report_content_flex .report_date{
    font-size: 16px;
    line-height: 18px;
  }
}

/* ---------- タブレット ---------- */
@media (min-width: 769px) and (max-width: 1024px){
  .report_box h3,
  .report_title{
    font-size: 18px;
    line-height: 28px;
  }
  .report_subtitle{
    font-size: 14px;
    line-height: 22px;
  }
  .report_guests{
    font-size: 14px;
    line-height: 22px;
  }
  .report_guests_company{
    font-size: 12px;
    line-height: 20px;
  }
  .report_content_flex .report_date{
    font-size: 12px;
    line-height: 18px;
  }
}