@media only screen and (max-width: 640px) {
  .intro__body-service {
    top: 12%;
  }
}

.service-support__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 7.4rem;
}
@media only screen and (max-width: 640px) {
  .service-support__list {
    margin-top: 6.25vw;
    gap: 3.125vw;
  }
}

.service-support__item {
  background: rgba(61, 27, 18, 0.06);
  display: flex;
  align-items: baseline;
  padding: 0.9rem 0 3.3rem 3.5rem;
}
@media only screen and (max-width: 640px) {
  .service-support__item {
    padding: 1.5625vw 3.125vw 3.125vw 3.125vw;
  }
}

.service-support__number {
  color: #f00;
  font-family: "Cormorant Garamond";
  font-size: 72px;
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 3.6px;
}
@media only screen and (max-width: 640px) {
  .service-support__number {
    font-size: 9.0625vw;
  }
}

.service-support__txt {
  color: #231815;
  font-feature-settings: "halt" on;
  font-family: YakuHanMP, "Noto Serif JP";
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 1.6px;
  padding-left: 3.1rem;
}
@media only screen and (max-width: 640px) {
  .service-support__txt {
    font-size: 4.375vw;
    letter-spacing: 0.25vw;
    padding-left: 1.5625vw;
  }
}

.middle-mttl__service {
  text-align: center;
}

.service-list__container {
  margin-top: 5.8rem;
}

.service-list__wrapper {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.service-list__item {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 640px) {
  .service-list__item {
    flex-direction: column;
    gap: 3.125vw;
  }
}

.service-list__item--reverse {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 640px) {
  .service-list__item--reverse {
    flex-direction: column;
    gap: 3.125vw;
  }
}
.service-list__item--reverse .item__ttl {
  padding-left: 9.5rem;
  position: relative;
}
@media only screen and (max-width: 640px) {
  .service-list__item--reverse .item__ttl {
    padding-left: 0;
  }
}
.service-list__item--reverse .item__ttl::after {
  content: "";
  position: absolute;
  width: 11.8rem;
  height: 0.1rem;
  background: rgb(255, 0, 0);
  left: 0;
  bottom: 0;
}
.service-list__item--reverse .item__text {
  padding: 3.6rem 0 0 9.5rem;
}
@media only screen and (max-width: 640px) {
  .service-list__item--reverse .item__text {
    padding: 3.125vw 0 0 0;
  }
}

.item__body {
  flex: 1;
}

.item__ttl {
  color: #231815;
  font-family: YakuHanMP, "Noto Serif JP";
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 1.6px;
  padding-bottom: 3.6rem;
  position: relative;
}
@media only screen and (max-width: 640px) {
  .item__ttl {
    padding-bottom: 3.125vw;
    font-size: 5.3125vw;
  }
}
.item__ttl::after {
  content: "";
  position: absolute;
  width: 11.8rem;
  height: 0.1rem;
  background: rgb(255, 0, 0);
  right: 0;
  bottom: 0;
}

.item__text {
  font-feature-settings: "halt" on;
  font-family: "Noto Sans JP";
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.8px;
  padding: 3.6rem 9.5rem 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 640px) {
  .item__text {
    padding: 3.125vw 0 0 0;
  }
}

.item__img {
  width: 47.5rem;
  filter: drop-shadow(8px 8px 0 #231815);
}
@media only screen and (max-width: 640px) {
  .item__img {
    width: 100%;
  }
}
.item__img img {
  width: 100%;
}

.middle-mttl__faq {
  text-align: center;
}

.faq__list {
  margin-top: 6.3rem;
}
@media only screen and (max-width: 640px) {
  .faq__list {
    margin-top: 6.25vw;
  }
}

.faq__item {
  padding: 4.7rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 640px) {
  .faq__item {
    padding: 6.25vw 0;
  }
}
.faq__item:first-child {
  padding-top: 0;
}

.faq__question {
  color: #231815;
  font-family: YakuHanMP, "Noto Serif JP";
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 1.4px;
}
@media only screen and (max-width: 640px) {
  .faq__question {
    font-size: 4.375vw;
    letter-spacing: 0.21875vw;
  }
}
.faq__question span {
  color: rgb(255, 0, 0);
  font-family: "Cormorant Garamond";
  font-size: 4rem;
  letter-spacing: 2px;
  margin-right: 1.8rem;
}
@media only screen and (max-width: 640px) {
  .faq__question span {
    font-size: 5.625vw;
    margin-right: 1.5625vw;
  }
}

.faq__answer {
  display: flex;
  padding-left: 4.9rem;
  margin-top: 2.5rem;
}
@media only screen and (max-width: 640px) {
  .faq__answer {
    padding-left: 0;
    margin-top: 3.125vw;
  }
}
.faq__answer span {
  color: #231815;
  font-family: "Cormorant Garamond";
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 2px;
  margin-top: -0.6rem;
}
@media only screen and (max-width: 640px) {
  .faq__answer span {
    font-size: 5.625vw;
    margin-top: 0;
  }
}
.faq__answer p {
  font-feature-settings: "halt" on;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.8px;
  margin-left: 2.4rem;
}
@media only screen and (max-width: 640px) {
  .faq__answer p {
    margin-left: 1.5625vw;
    letter-spacing: normal;
  }
}/*# sourceMappingURL=service.css.map */