/* Default Options */
/* Media Query */
/* Transform Font Size */
/* --------------------------------- */
.c-ws-section {
  margin-block-start: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.c-ws-section:first-child {
  margin-block-start: 0;
}
.c-ws-section__title {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}
.c-ws-section__title .en {
  font-size: clamp(1.5rem, 1.0909090909rem + 1.1363636364vw, 2rem);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-color);
}
.c-ws-section__title .jp {
  font-size: clamp(1rem, 0.7954545455rem + 0.5681818182vw, 1.25rem);
  font-weight: 600;
}
.c-ws-welfare {
  padding: 0;
  list-style: none;
  border-block-start: 1px solid rgba(0, 0, 0, 0.15);
}
.c-ws-welfare li {
  padding: var(--space-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  border-block-end: 1px solid rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
}
.c-ws-welfare li .icon {
  width: clamp(80px, 10vw, 140px);
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 133, 101, 0.08);
  border-radius: 50%;
}
.c-ws-welfare li .icon svg {
  fill: var(--accent-color);
}
.c-ws-welfare li .icon.build svg {
  width: 60%;
}
.c-ws-welfare li .icon.holiday svg {
  width: 45%;
}
.c-ws-welfare li .icon.regular svg {
  width: 45%;
}
.c-ws-welfare li .icon.woman svg {
  width: 50%;
}
.c-ws-welfare li .icon.referral svg {
  width: 50%;
}
.c-ws-welfare li .icon.stock svg {
  width: 50%;
}
.c-ws-welfare li .title {
  font-size: clamp(1.25rem, 1.0454545455rem + 0.5681818182vw, 1.5rem);
  font-weight: 600;
}
.c-ws-welfare li p {
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
  font-weight: 500;
}
.c-ws-welfare li .si {
  width: 100%;
  padding: var(--space-xxs);
  border: 1px solid var(--accent-color);
  border-radius: 5px;
  color: var(--accent-color);
  font-size: clamp(0.8125rem, 0.7102272727rem + 0.2840909091vw, 0.9375rem);
  line-height: 1.6;
  box-sizing: border-box;
}
.c-ws-welfare li .si dt {
  font-weight: 600;
}
.c-ws-welfare li .si dd {
  font-weight: 500;
}
.c-ws-system {
  padding: 0;
  list-style: none;
  border-block-start: 1px solid rgba(0, 0, 0, 0.15);
}
.c-ws-system li {
  padding: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-block-end: 1px solid rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
}
.c-ws-system li .title {
  font-size: clamp(1.25rem, 1.0454545455rem + 0.5681818182vw, 1.5rem);
  font-weight: 600;
}
.c-ws-system li p {
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
  font-weight: 500;
}
@media screen and (min-width: 576px) {
  .c-ws-welfare {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
  }
  .c-ws-welfare:before {
    content: "";
    width: 1px;
    height: 100%;
    display: block;
    background-color: rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 0;
    left: 50%;
  }
}
@media screen and (min-width: 992px) {
  .c-ws-section__title {
    flex-direction: row;
    gap: 20px;
    align-items: center;
  }
  .c-ws-welfare {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-ws-welfare:before {
    display: none;
  }
  .c-ws-welfare li {
    border-inline-end: 1px solid rgba(0, 0, 0, 0.15);
  }
  .c-ws-welfare li:nth-child(3n) {
    border-inline-end: 0;
  }
  .c-ws-system {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .c-ws-system li {
    border-inline-end: 1px solid rgba(0, 0, 0, 0.15);
  }
  .c-ws-system li:nth-child(4) {
    border-inline-end: 0;
  }
  .c-ws-system li.wide {
    grid-column: 1/4;
    border-inline-end: 0;
  }
}

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