@charset "UTF-8";

.contents-feature {
  display: flow-root;
  margin-block-end: 80px;
  margin-block-start: 40px;
  margin-inline: auto;
  border-color: rgba(0,0,0,0.1);
  border-radius: 4px;
  border-style: solid;
  border-width: thin;
  inline-size: var(--contents-width);
  --feature-margin: 60px;
}
.contents-feature > header {
  display: flex;
  align-items: center;
  gap: calc(var(--feature-margin) / 2);
  margin-block-start: -1px;
  margin-inline: -1px;
  border-start-start-radius: inherit;
  border-start-end-radius: inherit;
  border-block-end-color: inherit;
  border-block-end-style: inherit;
  border-block-end-width: inherit;
  background-color: rgba(46,167,224,0.07);
  padding-inline: var(--feature-margin);
}
.contents-feature > header > h3 {
  margin-block: calc(var(--feature-margin) / 2);
  font-size: 30px;
}
.contents-feature > header > svg {
  flex-shrink: 0;
  margin-block: calc(var(--feature-margin) / 2);
  border-radius: 50%;
  background-color: rgba(46,167,224,1);
  padding: calc(var(--feature-margin) / 4);
  block-size: calc(var(--feature-margin) / 1.5);
  inline-size: calc(var(--feature-margin) / 1.5);
  aspect-ratio: 1/1;
  color: rgba(255,255,255,1);
}
.contents-feature > section {
  margin-block: var(--feature-margin);
  margin-inline: var(--feature-margin);
}
.contents-feature > section > table {
  border-collapse: collapse;
  min-inline-size: 100%;
}
.contents-feature > section > table > caption {
  margin-block-end: calc(var(--feature-margin) / 3);
  text-align: start;
  color: rgba(46,167,224,1);
  font-size: 24px;
  font-weight: bold;
}
.contents-feature > section > table > tbody {}
.contents-feature > section > table > tbody > tr {}
.contents-feature > section > table > tbody > tr > td,
.contents-feature > section > table > tbody > tr > th {
  border-block-color: rgba(0,0,0,0.2);
  border-block-style: dotted;
  border-block-width: 1px;
  padding-block: calc(var(--feature-margin) / 3);
  text-align: start;
  vertical-align: top;
}
.contents-feature > section > table > tbody > tr > th {
  font-weight: bold;
}
.contents-feature.type\:admin > header::after,
.contents-feature.type\:schedule > header::after,
.contents-feature.type\:webinar > header::after {
  content: "";
  display: block;
  align-self: stretch;
  flex-grow: 1;
  margin-block-start: calc(var(--feature-margin) / 6);
  background-position-x: 100%;
  background-position-y: 100%;
  background-repeat: no-repeat;
  background-size: contain;
}
.contents-feature.type\:admin > header::after {
  background-image: url("/src/img/features/clipart/admin.png");
}
.contents-feature.type\:schedule > header::after {
  background-image: url("/src/img/features/clipart/schedule.png");
}
.contents-feature.type\:webinar > header::after {
  background-image: url("/src/img/features/clipart/webinar.png");
}
@media (min-width: 1px) and (max-width: 520.99px) {
  .contents-feature {
    --feature-margin: 20px;
  }
  .contents-feature > header > h3 {
    font-size: 20px;
  }
  .contents-feature > section > table,
  .contents-feature > section > table > caption,
  .contents-feature > section > table > tbody,
  .contents-feature > section > table > tbody > tr,
  .contents-feature > section > table > tbody > tr > td,
  .contents-feature > section > table > tbody > tr > th {
    display: block;
  }
  .contents-feature > section > table > caption {
    font-size: 18px;
  }
  .contents-feature > section > table > tbody > tr > td {
    border-block-width: 0;
    padding-block-start: 0;
  }
  .contents-feature > section > table > tbody > tr > th {
    border-block-end-width: 0;
    padding-block-end: 0;
  }
}
@media (min-width: 521px) and (max-width: 768.99px) {
  .contents-feature {
    --feature-margin: 30px;
  }
  .contents-feature > header > h3 {
    font-size: 24px;
  }
  .contents-feature > section > table,
  .contents-feature > section > table > caption,
  .contents-feature > section > table > tbody,
  .contents-feature > section > table > tbody > tr,
  .contents-feature > section > table > tbody > tr > td,
  .contents-feature > section > table > tbody > tr > th {
    display: block;
  }
  .contents-feature > section > table > caption {
    font-size: 20px;
  }
  .contents-feature > section > table > tbody > tr > td {
    border-block-width: 0;
    padding-block-start: 0;
  }
  .contents-feature > section > table > tbody > tr > th {
    border-block-end-width: 0;
    padding-block-end: 0;
  }
}
@media (min-width: 769px) and (max-width: 1199.99px) {
  .contents-feature {
    --feature-margin: 60px;
  }
  .contents-feature > header > h3 {
    font-size: 30px;
  }
  .contents-feature > section > table > tbody > tr > th {
    padding-inline-end: 1em;
    inline-size: 30%;
    word-break: keep-all;
  }
}
@media (min-width: 1200px) {
  .contents-feature {
    --feature-margin: 60px;
  }
  .contents-feature > header > h3 {
    font-size: 30px;
  }
  .contents-feature > section > table > tbody > tr > th {
    padding-inline-end: 1em;
    inline-size: 30%;
    word-break: keep-all;
  }
}