/* ===== service ===== */
.p-service-section {
  padding: 3vmax 0;
}
.p-service-section__heading {
  margin-bottom: 1em;
}

.s-needs .c-intro {
  margin-bottom: 3em;
  margin-left: 0.5em;
  font-size: clamp(16px, 2rem, 20px);
}
.s-needs__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5em;
  font-size: clamp(14px, 1.8rem, 18px);
}
.s-needs__list li {
  width: 100%;
  height: 100%;
  padding: 2em 0;
  border-radius: 0.5em;
  background: #002A5C;
  text-align: center;
  color: #fefefe;
  font-weight: 600;
}
@media (max-width: 780px) {
  .s-needs__list li {
    padding: 1.5em 1em;
  }
}

.s-solution .c-content h2 {
  font-size: 3em;
}
.s-solution .c-content h3 {
  font-size: 2em;
}
.s-solution .c-content h4 {
  font-size: 1.5em;
}
.s-solution .c-content h2, .s-solution .c-content h3, .s-solution .c-content h4 {
  margin-bottom: 1em;
  font-weight: 600;
}
.s-solution .c-content ul, .s-solution .c-content ol {
  list-style: disc;
  margin-left: 1em;
}
.s-solution .c-content p, .s-solution .c-content li {
  margin-bottom: 0.5em;
}

.s-case__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
  margin-bottom: 2em;
}
@media (max-width: 780px) {
  .s-case__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3em;
    margin-bottom: 3em;
  }
}
.s-case__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  width: 100%;
  aspect-ratio: 4/3;
}
.s-case__item figcaption {
  display: block;
  margin-bottom: 0.5em;
  font-size: clamp(14px, 1.8rem, 18px);
  font-weight: 600;
  color: #002A5C;
}
.s-case__item img {
  width: 100%;
  height: 100%;
  border-radius: 0.5em;
  -o-object-fit: cover;
     object-fit: cover;
}
.s-case__item-before {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.s-case__item-after {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.s-case__note {
  font-size: clamp(14px, 1.6rem, 16px);
  color: #707070;
  text-align: center;
}
@media (max-width: 780px) {
  .s-case__note {
    text-align: left;
  }
}

.s-faq .c-faq {
  margin-top: 2rem;
  border-top: 1px solid #ddd;
}
.s-faq .c-faq__item {
  border-bottom: 1px solid #ddd;
  padding: 1.2rem 0;
}
.s-faq .c-faq__item dt,
.s-faq .c-faq__item dd {
  margin: 0;
}
.s-faq .c-faq__q {
  font-size: clamp(14px, 1.8rem, 18px);
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  cursor: pointer;
  padding-left: 2em;
}
.s-faq .c-faq__q::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: #002A5C;
}
.s-faq .c-faq__q:hover {
  opacity: 0.8;
}
.s-faq .c-faq__a {
  font-size: clamp(12px, 1.6rem, 16px);
  line-height: 1.7;
  color: #333;
  padding: 0.75em 0 0 2em;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
}
.s-faq .c-faq__item.is-open .c-faq__a {
  display: block;
}

.s-related .c-h2 {
  margin-bottom: 1em;
}
.s-related .c-card-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
}
@media (max-width: 780px) {
  .s-related .c-card-list {
    grid-template-columns: 1fr;
  }
}
.s-related .c-card__body {
  width: 100%;
  padding: 1em;
  border-radius: 0.25em;
  background: #002A5C;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.s-related .c-card__body:hover {
  background: rgb(0, 53.6413043478, 117.5);
}
.s-related .c-card__body:hover .c-card__title {
  color: #FFDA10;
}
.s-related .c-card__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #fefefe;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}/*# sourceMappingURL=service.css.map */