.rp-box {
  border: solid;
  text-align: center;
  padding: 1rem 1rem 2rem;
}

.sp{
  display: none;
}


/* Global-Activities Section */
#global-activities p {
  line-height: 2;
}

.feature-img-sm {
  max-width: 45%;
  flex: 0 0 auto;
}

.activity-title {
  position: relative;
  font-size: 1.5rem;
  line-height: 1.2;
}

.activity-block {
  margin-top: 5rem;
}

.activity-block h3 {
  margin-bottom: 2rem;
}

.activity-block p {
  margin-top: 2rem;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.media-grid img {
  width: 100%;
  height: 100%;
}

.media-grid--3 {
  grid-template-columns: repeat(3, 1fr);

}

.media-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Responsive */
@media (max-width: 768px) {
  .feature-row {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "image"
      "body";
    gap: 0;
  }

  .feature-text {
    display: contents;
  }

  .activity-title {
    font-size: clamp(1.2rem, 0.8379rem + 1.3793vw, 1.5rem);
    grid-area: title;
    text-align: center;
  }

  .feature-img-sm {
    grid-area: image;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }

  .feature-img-sm img {
    width: 100%;
    aspect-ratio: 2 / 1;
  }

  .feature-row p {
    grid-area: body;
  }

  .activity-block {
    margin-top: 4rem;
    flex-direction: column;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .media-grid img {
    aspect-ratio: 2.5 / 1;
  }

  .media-grid--3 {
    grid-template-columns: 1fr;
  }
}



/* =================================== */
/* 国際活動-レポート */
/* =================================== */

.ga-r {
  margin-top: 30px;
}

.ga-r p {
  margin-bottom: 2rem;
}

/* news */
.news-wrap {
  border: solid 3px #000000;
  padding: 3rem 2rem;
  text-align: center;
}

/* video */
.ga-video-flex {
  display: flex;
  gap: 1rem;
  padding: 2rem 0;
}

.ga-video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.ga-video-news {
  width: 50%;
}

.ga-video-wrap video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-grid--video-right {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.media-grid--video-right>.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.media-grid--video-right>.media-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
}

.media-grid--video-right>.ga-video-wrap {
  height: 100%;
}

.media-grid--video-right>.ga-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ga-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  display: flex;
  align-items: center;
  justify-content: center;

  width: 80px;
  height: 80px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  transition: background .3s;
}

.ga-play-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}


/* link */
.ga-news-link {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 9999px;
  background: #c99b00;
  text-decoration: none;
}

.ga-news-label {
  flex-shrink: 0;
  min-width: 130px;
  padding: 12px 24px;
  border-radius: 9999px;
  background: #fff;
  color: #555;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.ga-news-text {
  flex: 1;
  color: #7b2800;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.ga-news-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  color: #777;
  font-size: 28px;
  font-weight: 700;
  transition: .3s;
}

.ga-news-link:hover .ga-news-arrow {
  transform: translateX(4px);
}



/* img */
.sec {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.ga-feature-img-sm {
  width: 47%;
}

.media-grid--sec1 {
  grid-template-columns: 1fr 1fr 2fr;
}


@media (max-width: 768px) {

  .pc {
    display: none;
  }

  .u-hero--report {
    height: auto;
    display: block;
    overflow: visible;
  }

  .u-hero--report .hero-fade-img {
    position: static;
    display: block;
    width: 100%;
    height: auto;
    object-fit: initial;
  }

  .ga-video-flex {
    flex-wrap: wrap;
  }

  .ga-video-news {
    width: 100%;
  }

  .ga-feature-img-sm {
    width: 100%;
  }

  .media-grid--video-right,
  .media-grid--video-right>.media-grid {
    grid-template-columns: initial;
    aspect-ratio: 1 / 2;
  }

  .media-grid--sec1 {
    grid-template-columns: initial;
    aspect-ratio: 1 / 2;
  }

  .ga-news-link {
    gap: 10px;
    padding: 8px;
    border-radius: 9999px;
  }

  .ga-news-label {
    min-width: 95px;
    padding: 8px 12px;
    font-size: 11px;
    line-height: 1.3;
  }

  .ga-news-text {
    font-size: 12px;
    line-height: 1.5;
  }

  .ga-news-arrow {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
}