@charset 'utf-8';

/*--------------------------------------------------------
support
--------------------------------------------------------*/
.content_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.content_list li {
  width: 30%;
}

.content_list li:nth-of-type(n + 4) {
  margin-top: 5rem;
}

.item_num span {
  font-family: "Archivo Black", sans-serif;
  font-size: 2rem;
  font-weight: 400;
}

.content_list li:nth-of-type(odd) span {
  color: var(--color6);
}
.content_list li:nth-of-type(even) span {
  color: var(--color7);
}

.item_card {
  height: 500px;
  padding: 2.5rem 1rem;
  border-radius: 13px;
  box-shadow: 1px 8px 41px 6px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
}

.content_list li:nth-of-type(odd) .item_card {
  background: var(--color4);
}
.content_list li:nth-of-type(even) .item_card {
  background: var(--color5);
}

.item_img {
  margin: 0 auto;
  height: 40%;
  text-align: center;
}

.item_img img {
  height: 100%;
}

.item_ttl {
  margin-top: 1.5rem;
  container-type: inline-size;
}

.item_ttl h2 {
  color: var(--color1);
  font-size: 6cqw;
  font-weight: 700;
  text-align: center;
}

.item_desc {
  margin-top: 1.5rem;
}

.item_desc p {
  font-size: min(1.4cqw, 1rem);
  line-height: 1.5;
  font-weight: 500;
}

@media screen and (max-width: 1000px) {
  .content_list li {
    width: 48%;
  }

  .content_list li:nth-of-type(n + 4) {
    margin-top: 0;
  }
  .content_list li:nth-of-type(n + 3) {
    margin-top: 3rem;
  }

  .item_num span {
    font-size: 1.5rem;
  }

  .item_card {
    height: 400px;
    padding: 1.5rem 1rem 0;
    box-shadow: 1px 6px 20px 4px rgba(0, 0, 0, 0.25);
  }

  .item_img {
    height: min(15cqw, 30%);
  }

  .item_desc p {
    font-size: min(2.2cqw, 0.9rem);
    line-height: 1.5;
    font-weight: 500;
  }
}

@media screen and (max-width: 580px) {
  .content_list li {
    width: 95%;
    margin: 0 auto;
  }

  .content_list li:nth-of-type(n + 2) {
    margin-top: 3rem;
  }

  .item_card {
    height:320px;
  }

  .item_img {
    height: 30%;
  }

  .item_ttl h2 {
    font-size: min(6cqw,1.5rem);
  }

  .item_desc {
    margin-top: 1rem;
  }

  .item_desc p {
    font-size: min(3cqw, 0.9rem);
    line-height: 1.5;
    font-weight: 500;
  }
}
/*--------------------------------------------------------
dedicated
--------------------------------------------------------*/
.dedicated_ttl h2 {
  color: var(--color1);
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
}

.dedicated_content {
  margin-top: 3rem;
}

.dedicated_content dt {
  position: relative;
  margin: 1.75rem 0 0 2rem;
  color: var(--color1);
  font-size: 1.5rem;
  font-weight: 800;
}

.dedicated_content dt::before {
  content: '✔︎';
  color: var(--color1);
  font-size: 1.5rem;
  font-weight: 800;
  position: absolute;
  left: -2rem;
}

.dedicated_content dd {
  margin: 0.5rem 0 0 2rem;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.2;
}

@media screen and (max-width: 1000px) {
  .dedicated_ttl h2 {
    font-size: min(4.75cqw, 2.5rem);
  }

  .dedicated_content dt {
    margin: 1.75rem 0 0 2rem;
    font-size: min(3.5cqw, 1.5rem);
  }

  .dedicated_content dt::before {
    font-size: min(3.5cqw, 1.5rem);
    left: -1.5rem;
  }

  .dedicated_content dd {
    margin: 0.5rem 0 0 2rem;
    font-size: min(2.5cqw, 1.15rem);
    font-weight: 500;
    line-height: 1.2;
  }
}

@media screen and (max-width: 580px) {
  .dedicated_ttl h2 {
    font-size: min(6cqw, 2.5rem);
  }

  .dedicated_content {
    margin-top: 1.5rem;
  }

  .dedicated_content dt {
    margin: 0.75rem 0 0 1.5rem;
    font-size: min(3.5cqw, 1.5rem);
  }

   .dedicated_content dt::before {
    font-size: min(3.5cqw, 1.5rem);
    left: -1rem;
  }

   .dedicated_content dd {
    margin: 0.25rem 0 0 1.5rem;
    font-size: min(2.75cqw, 0.9rem);
    font-weight: 500;
    line-height: 1.2;
  }
}