@charset "UTF-8";

/*------------------------------------------------------------------------
 service
-------------------------------------------------------------------------*/
#service .service-lead {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6em;
  margin-top: 30px;
  text-align: center;
}

#service .service-lead::before,
#service .service-lead::after {
  background: var(--color-orange-top);
  content: "";
  display: block;
  height: 3px;
  width: 64%;
}

#service .service-lead::before {
  margin-bottom: 0.8em;
}

#service .service-lead::after {
  margin-top: 0.8em;
}

.service-list {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  margin-top: 50px;
  padding: 0;
}

.service-block {
  background: #ffffff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  padding: 30px 24px;
}

.service-title {
  align-items: center;
  display: flex;
  font-size: 2rem;
  font-weight: bold;
  gap: 10px;
  line-height: 1.4em;
  margin-bottom: 20px;
}

.service-title::before {
  background: var(--color-orange-top);
  content: "";
  flex-shrink: 0;
  height: 12px;
  width: 12px;
}

.service-figure {
  align-items: center;
  display: flex;
  flex: 1;
  justify-content: center;
  margin-bottom: 20px;
  min-height: 120px;
}

.service-figure img {
  height: auto;
  max-height: 120px;
  max-width: 100%;
  object-fit: contain;
  width: auto;
}

.service-text {
  font-size: 1.4rem;
  line-height: 1.8em;
}

@media screen and (max-width:1200px) {
  #service .service-lead {
    font-size: 1.6rem;
    text-align: left;
  }

  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-block {
    border-radius: 10px;
    padding: 24px 20px;
  }
}

@media screen and (max-width:720px) {
  .service-list {
    grid-template-columns: 1fr;
  }
}

/*------------------------------------------------------------------------
 faq
-------------------------------------------------------------------------*/
#faq {
  background: var(--color-gray-top);
}

#faq .section-title {
  margin-bottom: 40px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #ffffff;
  border-radius: 20px;
  padding: 25px 30px;
}

.faq-q,
.faq-a {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.faq-q {
  align-items: center;
  margin-bottom: 16px;
}

.faq-icon {
  flex-shrink: 0;
  height: 40px;
  width: 40px;
}

.faq-q-text {
  color: var(--color-black);
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6em;
  margin: 0;
}

.faq-a-text {
  color: var(--color-black);
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.8em;
  margin: 0;
}

@media screen and (max-width:1200px) {
  .faq-item {
    border-radius: 10px;
    padding: 20px;
  }

  .faq-q,
  .faq-a {
    gap: 12px;
  }

  .faq-icon {
    height: 32px;
    width: 32px;
  }

  .faq-q-text {
    font-size: 1.4rem;
  }

  .faq-a-text {
    font-size: 1.3rem;
  }
}
