/* Default Options */
/* Media Query */
/* Transform Font Size */
/* --------------------------------- */
.c-sc-wrap {
  display: flex;
  flex-direction: column;
  row-gap: var(--space-xs);
}
.c-sc-section {
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  overflow: hidden;
}
.c-sc-section.new {
  background-color: rgb(42, 42, 42);
}
.c-sc-section.new .c-sc-header .title {
  color: var(--accent-color);
}
.c-sc-section.seasoned {
  background-color: var(--accent-color);
}
.c-sc-section.seasoned .c-sc-header .title {
  color: var(--bg-color);
}
.c-sc-header .image {
  width: 100%;
  aspect-ratio: 3/2;
}
.c-sc-header .image picture,
.c-sc-header .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.c-sc-header .title {
  padding-block: var(--space-sm);
  padding-inline: var(--space-xs);
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}
.c-sc-header .title .en {
  font-size: clamp(2rem, 0.3636363636rem + 4.5454545455vw, 4rem);
  font-weight: 600;
  text-transform: uppercase;
}
.c-sc-header .title .jp {
  font-size: clamp(1rem, 0.5909090909rem + 1.1363636364vw, 1.5rem);
  font-weight: 500;
}
.c-sc-contents {
  padding-inline: var(--space-xs);
}
.c-sc-contents .item {
  padding-block: var(--space-xs);
  display: grid;
  grid-template-columns: clamp(50px, 5vw, 70px) 1fr;
  grid-template-rows: repeat(2, auto);
  row-gap: 10px;
  border-block-end: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--bg-color);
}
.c-sc-contents .item.noborder, .c-sc-contents .item:last-child {
  border-block-end: 0;
}
.c-sc-contents .item .time {
  grid-area: 1/1/2/2;
  font-size: clamp(1rem, 0.7954545455rem + 0.5681818182vw, 1.25rem);
  font-weight: 500;
}
.c-sc-contents .item .title {
  grid-area: 1/2/2/3;
  font-size: clamp(1rem, 0.7954545455rem + 0.5681818182vw, 1.25rem);
  font-weight: 600;
}
.c-sc-contents .item p {
  grid-area: 2/2/3/3;
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
  font-weight: 500;
}
.c-sc-image ul {
  padding: 0;
  list-style: none;
}
.c-sc-image ul li {
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .c-sc-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: var(--space-xxs);
  }
}

/* --------------------------------- */
/* --------------------------------- */