/* Default Options */
/* Media Query */
/**
 * Media Query Mixin
 * @param {string} $mq  - min | max | min-max
 * @param {string} $bp1 - breakpoint key (e.g. "lg")
 * @param {string} $bp2 - breakpoint key (e.g. "xl") for min-max upper bound
 */
/* Transform Font Size */
/* --------------------------------- */
.l-wrapper {
  overflow: hidden;
}
.l-contents {
  row-gap: var(--space-md);
}

/* --------------------------------- */
.p-activity-head {
  padding-block-start: var(--space-xs);
  display: flex;
  flex-direction: column;
  row-gap: var(--space-xs);
}
.p-activity-head .image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--space-xs);
  overflow: hidden;
}
.p-activity-head .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.p-activity-head .wrap {
  display: flex;
  flex-direction: column;
  row-gap: var(--space-xxs);
}
.p-activity-head .wrap .title {
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-size: clamp(1rem, 0.5909090909rem + 1.1363636364vw, 1.5rem);
  font-weight: 600;
  line-height: 1;
}
.p-activity-head .wrap .title .u-txt-font-en {
  width: 24px;
  padding-block-start: 2px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--text-color);
  border-radius: 50%;
  font-size: 0.75rem;
  line-height: 1;
  color: var(--bg-color);
  box-sizing: border-box;
}
.p-activity-head .wrap .name {
  font-size: clamp(1.5rem, -0.1363636364rem + 4.5454545455vw, 3.5rem);
  font-weight: 600;
  line-height: 1;
}
.p-activity-head .wrap p {
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.7);
}
.p-activity-head .repage {
  display: none;
}
.p-activity-contents {
  display: flex;
  flex-direction: column;
  row-gap: var(--space-md);
}
.p-activity-contents .outline {
  display: flex;
  flex-direction: column;
  row-gap: var(--space-xxs);
}
.p-activity-contents .outline .inner {
  padding-block: var(--space-xs);
  padding-inline: 20px;
  display: flex;
  flex-direction: column;
  row-gap: var(--space-xxs);
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: var(--space-xxs);
}
.p-activity-contents .outline .title {
  font-size: clamp(1rem, 0.8977272727rem + 0.2840909091vw, 1.125rem);
  font-weight: 600;
  line-height: 1.2;
}
.p-activity-contents .outline .list {
  padding-inline: 0;
  list-style: none;
  border-block-start: 1px solid rgba(0, 0, 0, 0.15);
  line-height: 1.4;
}
.p-activity-contents .outline .list dt {
  margin-block-end: 5px;
  padding-block-start: 15px;
  font-size: 0.875rem;
  font-weight: 600;
}
.p-activity-contents .outline .list dd {
  padding-block-end: 15px;
  border-block-end: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 0.8125rem;
  color: rgba(0, 0, 0, 0.7);
}
.p-activity-contents .outline div {
  font-size: clamp(0.75rem, 0.6988636364rem + 0.1420454545vw, 0.8125rem);
  line-height: 1.6;
}
.p-activity-inner .small-tit {
  margin-block-end: var(--space-xxs);
  font-size: clamp(1.25rem, 0.6363636364rem + 1.7045454545vw, 2rem);
  font-weight: 600;
  line-height: 1.4;
}
.p-activity-inner p {
  margin-block: var(--space-xxs);
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
  line-height: 1.6;
}
.p-activity-image {
  width: 100%;
  margin-block: var(--space-sm);
  display: flex;
  flex-direction: column;
  row-gap: var(--space-xxs);
}
.p-activity-image figure {
  border-radius: var(--space-xs);
  overflow: hidden;
}
.p-activity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (min-width: 768px) {
  .p-activity-head {
    display: grid;
    grid-template-columns: var(--grid-column-guide);
    column-gap: var(--grid-gap);
  }
  .p-activity-head .image {
    aspect-ratio: 1/1;
    grid-area: 1/6/2/13;
  }
  .p-activity-head .wrap {
    grid-area: 2/1/3/8;
  }
  .p-activity-head .repage {
    grid-area: 2/9/3/13;
    display: flex;
    justify-content: end;
    align-items: center;
  }
  .p-activity-head .repage .c-more {
    flex-direction: row-reverse;
    text-decoration: none;
  }
  .p-activity-head .repage .c-more svg {
    transform: scale(-1, 1);
  }
  .p-activity-contents {
    display: grid;
    grid-template-columns: var(--grid-column-guide);
    column-gap: var(--grid-gap);
  }
  .p-activity-contents .main {
    grid-area: 1/6/2/13;
  }
  .p-activity-contents .outline {
    grid-area: 1/1/2/5;
  }
  .p-activity-image {
    flex-direction: row;
    column-gap: var(--space-xxs);
  }
  .p-activity-image figure {
    flex: 1;
  }
}
/* --------------------------------- */