@charset "utf-8";
.service__fv {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-bottom: 230px;
  margin-top: -77px;
}
.service__fv::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
  z-index: 1;
}
.service__fv::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/bg-filter.svg) repeat center center/contain;
  pointer-events: none;
  z-index: 1;
}

.service__fv-slider {
  pointer-events: auto;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.service__fv-swiper {
  width: 100%;
  height: 100%;
}

.service__fv-swiper .swiper-slide-active img,
.service__fv-swiper .swiper-slide-duplicate-active img,
.service__fv-swiper .swiper-slide-prev img {
  animation: zoomUp 7s linear 0s normal both;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

.service__fv-swiper-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.service__fv-content {
  pointer-events: none;
  padding-inline: clamp(20px, 2.93vw, 40px) clamp(20px, 3.3vw, 45px);
  padding-top: 87px;
  position: relative;
  z-index: 3;
  width: 100%;
  color: var(--color-white);
}

.service__fv-text-wrapper1,
.service__fv-text-wrapper2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: auto;
}
@media screen and (min-width: 768px) {
  .service__fv-text-wrapper1,
  .service__fv-text-wrapper2 {
    gap: 31px;
  }
}

.service__fv-text-wrapper1 {
  margin-top: 38px;
  align-items: flex-end;
}

.service__fv-text {
  width: auto;
  height: clamp(39px, 6.08vw, 83px);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.service__fv-text img {
  width: auto;
  height: 100%;
  object-fit: contain;
  display: block;
}
.service__fv-text.is-visible {
  /* このクラス全体を追加 */
  opacity: 1;
  transform: translateY(0);
}

.service__fv-sub-text-wrap {
  pointer-events: auto;
  text-align: center;
}

.service__fv-sub-text {
  margin-top: 37px;
  font-size: clamp(28px, 2.35vw, 32px);
  font-weight: 700;
  letter-spacing: calc(100 / 1000 * 1em);
  line-height: calc(54.4 / 32);
  position: relative;
  padding-inline: 55px;
  display: inline-block;
}

.service__fv-sub-text::before {
  content: "";
  position: absolute;
  background: url(../images/service__fv-sub-text-l) no-repeat center
    center/contain;
  width: 66px;
  height: 62px;
  top: -10px;
  left: -7px;
}
.service__fv-sub-text::after {
  content: "";
  position: absolute;
  background: url(../images/service__fv-sub-text-r) no-repeat center
    center/contain;
  width: 66px;
  height: 62px;
  bottom: -18px;
  right: 0;
}

.service__fv-text-wrapper2 {
  margin-top: 72px;
}

.service__fv-box {
  pointer-events: auto;
  position: relative;
  margin-top: 200px;
  text-align: center;
  margin-inline: auto;
  max-width: 500px;
}

@media screen and (min-width: 768px) {
  .service__fv-box {
    max-width: 600px;
  }
}

@media screen and (min-width: 1000px) {
  .service__fv-box {
    max-width: 800px;
  }
}

.service__fv-box-text {
  text-align: left;
  font-size: clamp(13px, 1.62vw, 22px);
  font-weight: 700;
  letter-spacing: calc(50 / 1000 * 1em);
  line-height: calc(52.8 / 22);
}

.service__fv-box-text + .service__fv-box-text {
  margin-top: 40px;
}
.service__fv-box-text br {
  display: none;
}
@media screen and (min-width: 500px) {
  .service__fv-box-text {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .service__fv-box-text br {
    display: block;
  }
}

.service__fv-text-deco {
  position: absolute;
  bottom: -3%;
  right: clamp(-558px, -40.85vw, -242px);
  aspect-ratio: 1119/425;
  width: auto;
  height: clamp(200px, 33.09vw, 452px);
  z-index: 3;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.service__fv-text-deco img {
  width: 100%;
  object-fit: contain;
  display: block;
}
.service__fv-text-deco.is-visible {
  /* このクラス全体を追加 */
  opacity: 1;
  transform: translateY(0);
}

.service__fv-deco1 {
  position: absolute;
  top: 49%;
  right: 20px;
  aspect-ratio: 223/223;
  width: clamp(100px, 16.33vw, 223px);
  height: auto;
}
.service__fv-deco1 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .service__fv-deco1 {
    top: 53%;
  }
}

.service__fv-deco2 {
  position: absolute;
  top: 83%;
  left: 20px;
  aspect-ratio: 223/223;
  width: clamp(100px, 16.33vw, 223px);
  height: auto;
}
.service__fv-deco2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (min-width: 768px) {
  .service__fv-deco2 {
    top: 62%;
  }
}

.service__fv-deco3 {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 67%;
  aspect-ratio: 223/223;
  width: clamp(100px, 16.33vw, 223px);
  height: auto;
}
.service__fv-deco3 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ==========================
数字でみるエクシード
============================ */
.service__main {
  margin-top: -36px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  background: url(../images/main-blue-bg.png) no-repeat center center / cover;
  padding-block: 122px 199px;
}
.service__main::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/bg-filter.svg) repeat center center/contain;
  pointer-events: none;
  z-index: -1;
}

.service__number {
  padding-inline: clamp(20px, 3.67vw, 50px);
  margin-inline: auto;
  color: var(--color-white);
}

.service__number-container {
  color: var(--color-white);
}

.service__number-head {
  margin-bottom: 60px;
}

.service__number-head-title-en {
  height: clamp(43px, 3.88vw, 53px);
  width: auto;
}

.service__number-head-title-en img {
  width: auto;
  height: 100%;
  display: block;
}

.service__number-head-title-ja {
  margin-top: 15px;
  font-size: clamp(18px, 1.47vw, 20px);
  font-weight: 700;
  letter-spacing: calc(80 / 1000 * 1em);
}

.service__number-cards {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.service__number-cards,
.service__number-cards2 {
  display: grid;
  grid-template-columns: 1fr;
}

@media screen and (min-width: 768px) {
  .service__number-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .service__number-cards2 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.service__number-card {
  padding: 20px;
  text-align: right;
  position: relative;
}
.service__number-card:not(:first-of-type)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 96%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
@media screen and (min-width: 768px) {
  .service__number-card:not(:first-of-type)::after {
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 1px;
    height: 90%;
  }
}
.service__number-card-icon {
  width: auto;
  height: clamp(100px, 10.25vw, 140px);
  opacity: 0.3;
  justify-self: flex-start;
  margin-left: 20px;
}
.service__number-card-icon--none {
  opacity: 1;
}

.service__number-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (min-width: 768px) {
  .service__number-card-icon {
    justify-self: flex-end;
  }
}

.service__number-card-text {
  margin-top: -5px;
  margin-right: 14.2%;
  height: 54px;
  width: auto;
}
.service__number-card-text img {
  max-width: 100%;
  height: 100%;
  width: auto;
}
@media screen and (min-width: 768px) {
  .service__number-card-text {
    height: 36px;
  }
}
@media screen and (min-width: 900px) {
  .service__number-card-text {
    height: 47px;
  }
}

@media screen and (min-width: 1200px) {
  .service__number-card-text {
    height: 63px;
  }
}

.service__number-card-label {
  margin-top: 9px;
  margin-right: 14.2%;
  font-size: clamp(12px, 1.1vw, 15px);
  letter-spacing: calc(30 / 1000 * 1em);
  line-height: calc(33 / 15);
}

.service__number-cards03 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  padding: 20px;
}
.service__number-cards03-image {
  aspect-ratio: 353/218;
  max-width: 353px;
  width: 100%;
  height: auto;
  display: inline-block;
}
.service__number-cards03-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.service__number-card03-label {
  margin-top: 10px;
  font-size: clamp(12px, 1.1vw, 15px);
  letter-spacing: calc(30 / 1000 * 1em);
  line-height: calc(33 / 15);
}

/* ==========================
slider
============================ */
.service__slider {
  position: relative;
  width: 100%;
  background: var(--color-grade);
}
.service__slider::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 68px;
  bottom: 0;
  left: 0;
  background: var(--color-white);
}
.service__slider::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/bg-filter.svg) repeat center center/contain;
  pointer-events: none;
}

.service__slider-swiper {
  position: relative;
  z-index: 2;
  height: clamp(300px, 36.61vw, 500px);
  width: 100%;
}

.service__slider-swiper-wrapper {
  transition-timing-function: linear;
}

.service__slider-swiper-slide {
  width: auto;
  height: 100%;
  aspect-ratio: 486/500;
  margin-left: 10px;
  overflow: hidden;
}

.service__slider-swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================
existence
============================ */
.service__existence {
  padding-block: 120px 113px;
  overflow: hidden;
  position: relative;
}
.service__existence::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/bg-filter.svg) repeat center center/contain;
  pointer-events: none;
}
.service__existence-deco-bg-l {
  position: absolute;
  top: 0;
  left: 0;
  width: 10.91vw;
  height: 100%;
  background: url(../images/existence-l.svg) repeat-y top center/contain;
}
.service__existence-deco-bg-r {
  position: absolute;
  top: 0;
  right: 0;
  width: 10.91vw;
  height: 100%;
  background: url(../images/existence-r.svg) repeat-y bottom center/contain;
}

.service__existence-inner {
  max-width: calc(1046px + 40px * 2);
}
@media screen and (min-width: 1367px) {
  .service__existence-inner {
    max-width: calc(76.58vw + 40px * 2);
  }
}

.service__existence-head {
  text-align: center;
  margin-inline: auto;
}

.service__existence-head-en {
  height: clamp(43px, 3.96vw, 54px);
  width: auto;
}

.service__existence-head-en img {
  width: auto;
  height: 100%;
}

.service__existence-head-ja {
  margin-top: 14px;
  font-size: clamp(14px, 1.18vw, 16px);
  font-weight: 700;
  letter-spacing: calc(100 / 1000 * 1em);
  color: var(--color-title-ja);
}

.service__existence-text {
  margin-top: 61px;
  text-align: center;
  font-size: clamp(11px, 1.03vw, 14px);
  font-weight: 500;
  letter-spacing: calc(30 / 1000 * 1em);
  line-height: calc(28 / 14);
}

.service__existence-container {
  margin-top: 80px;
}

.service__existence-cards-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 120px;
}

@media screen and (min-width: 768px) {
  .service__existence-cards-top {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(10px, 4.47vw, 61px);
  }
}

.service__existence-cards-top .service__existence-card {
  display: grid;
  place-items: center;
  position: relative;
}
.service__existence-cards-top .service__existence-card:first-of-type::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  bottom: -76px;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/plus-icon.svg) no-repeat center center / contain;
}

@media screen and (min-width: 768px) {
  .service__existence-cards-top .service__existence-card:first-of-type::after {
    display: none;
  }
}
.service__existence-card-title-img {
  height: 30px;
  width: auto;
}

.service__existence-card-title-img img {
  width: auto;
  height: 100%;
}

.service__existence-card-image {
  margin-top: 15px;
  width: 90%;
  height: auto;
  aspect-ratio: 474/332;
  position: relative;
}

.service__existence-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service__existence-card-title {
  margin-left: clamp(15px, 3.3vw, 45px);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: calc(80 / 1000 * 1em);
}

.service__existence-cards-middle {
  margin-top: -6%;
  position: relative;
}

.service__existence-cards-middle::after {
  content: "";
  position: absolute;
  aspect-ratio: 66/104;
  width: 35px;
  height: auto;
  bottom: -102px;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/down-arrow-icon.png) no-repeat center center /
    contain;
}

@media screen and (min-width: 768px) {
  .service__existence-cards-middle::after {
    display: none;
  }
}

.service__existence-card-middle-image {
  aspect-ratio: 217/193;
  width: max(100px, 15.88vw);
  margin-inline: auto;
  display: none;
}
@media screen and (min-width: 768px) {
  .service__existence-card-middle-image {
    display: block;
  }
}

.service__existence-card-middle-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service__existence-cards-bottom {
  margin-top: 120px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .service__existence-cards-bottom {
    margin-top: 30px;
  }
}

.service__existence-card-bottom-image {
  aspect-ratio: 635/453;
  width: 90%;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .service__existence-card-bottom-image {
    width: 46.49vw;
  }
}

.service__existence-card-bottom-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service__existence-card-deco {
  position: absolute;
  bottom: 31px;
  left: 0;
  aspect-ratio: 462/175;
  width: max(144px, 13.17vw);
}

@media screen and (min-width: 506px) {
  .service__existence-card-deco {
    left: 10%;
  }
}
@media screen and (min-width: 768px) {
  .service__existence-card-deco {
    left: 21%;
  }
}

.service__existence-card-deco img {
  width: 100%;
  height: auto;
  display: block;
}
.service__existence-message-wrap {
  text-align: center;
}
.service__existence-message {
  margin-top: 62px;
  padding: 5px 50px;
  display: inline-block;
  position: relative;
  margin-inline: auto;
}

.service__existence-message p {
  font-size: clamp(18px, 2.05vw, 28px);
  font-weight: 700;
  letter-spacing: calc(100 / 1000 * 1em);
  line-height: calc(54 / 28);
}
.service__existence-message::before,
.service__existence-message::after {
  content: "";
  position: absolute;
  aspect-ratio: 26/22;
  width: 26px;
  height: auto;
}
.service__existence-message::before {
  background: url(../images/message-icon-l.svg) no-repeat top left/contain;
  top: 0;
  left: 0;
}
.service__existence-message::after {
  background: url(../images/message-icon-r.svg) no-repeat bottom right/contain;
  bottom: 0;
  right: 0;
}

/* ==========================
service__faq-b
============================ */
.service__faq-b {
  padding-block: 80px;
  background: var(--color-grade-t);
}
.service__faq-b::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/bg-filter.svg) repeat center center/contain;
}

@media screen and (min-width: 768px) {
  .service__faq-b {
    padding-block: 120px;
  }
}

.service__faq-b-inner {
  max-width: calc(800px + 40px * 2);
}
@media screen and (min-width: 1367px) {
  .service__faq-b-inner {
    max-width: calc(58.57vw + 40px * 2);
  }
}

.service__faq-head {
  text-align: center;
}

.service__faq-head-en {
  height: clamp(43px, 3.96vw, 54px);
  width: auto;
}
.service__faq-head-en img {
  width: auto;
  height: 100%;
}

.service__faq-head-ja {
  margin-top: 14px;
  font-size: clamp(14px, 1.18vw, 16px);
  font-weight: 700;
  letter-spacing: calc(100 / 1000 * 1em);
  color: var(--color-title-ja);
}

.service__faq-boxes {
  margin-top: 60px;
  border-top: 1px solid #c7c7c7;
}
/* ==========================
service__bottom
============================ */
.service__bottom {
  padding-block: 80px;
}
@media screen and (min-width: 7678px) {
  .service__bottom {
    padding-block: 120px;
  }
}

.service__bottom-inner {
  max-width: calc(1266px + 40px * 2);
}

.service__bottom-head {
  text-align: center;
}

.service__bottom-head-en {
  height: clamp(43px, 3.96vw, 54px);
  width: auto;
}

.service__bottom-head-en img {
  width: auto;
  height: 100%;
}

.service__bottom-head-ja {
  margin-top: 14px;
  font-size: clamp(14px, 1.18vw, 16px);
  font-weight: 700;
  letter-spacing: calc(100 / 1000 * 1em);
  color: var(--color-title-ja);
}

.service__bottom-manda {
  margin-top: 71px;
  border-top: 1px solid #d2d9e0;
  padding: 70px clamp(20px, 5.86vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

@media screen and (min-width: 768px) {
  .service__bottom-manda {
    gap: clamp(30px, 4.4vw, 60px);
    flex-direction: row;
    justify-content: space-between;
  }
}

.service__bottom-manda-image {
  border-radius: 5px;
  aspect-ratio: 368/260;
  max-width: 368px;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.service__bottom-manda-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service__bottom-manda-title {
  font-size: clamp(20px, 1.47vw, 24px);
  font-weight: 700;
  letter-spacing: calc(80 / 1000 * 1em);
}

.service__bottom-manda-text {
  margin-top: 40px;
  font-size: clamp(12px, 1.03vw, 14px);
  font-weight: 500;
  letter-spacing: calc(30 / 1000 * 1em);
  line-height: calc(28 / 14);
}
.service__bottom-cards {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid #d2d9e0;
  border-bottom: 1px solid #d2d9e0;
}

@media screen and (min-width: 768px) {
  .service__bottom-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service__bottom-card {
  position: relative;
  padding: 80px 6.08vw 60px 5.72vw;
  color: #303332;
  display: grid;
  grid-row: span 4;
  justify-items: center;
  gap: 25px;
}

.service__bottom-card:nth-of-type(2) {
  border-top: 1px solid #d2d9e0;
  border-bottom: 1px solid #d2d9e0;
  padding: 80px 6.01vw 60px 5.64vw;
}
@media screen and (min-width: 768px) {
  .service__bottom-card:nth-of-type(2) {
    border-top: none;
    border-bottom: none;
    border-left: 1px solid #d2d9e0;
    border-right: 1px solid #d2d9e0;
  }
}

.service__bottom-card-image {
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 260/290;
  width: 100%;
  height: auto;
}

.service__bottom-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service__bottom-card-number {
  width: 7px;
  height: auto;
  position: absolute;
  top: 83px;
  left: 3.81vw;
}

.service__bottom-card-number img {
  width: 100%;
  height: auto;
}

.service__bottom-card-title {
  font-size: clamp(18px, 1.47vw, 20px);
  font-weight: 700;
  letter-spacing: calc(30 / 1000 * 1em);
  line-height: calc(29 / 20);
}

.service__bottom-card-text {
  font-size: 13px;
  font-weight: 500;
  line-height: calc(26 / 13);
}

.service__bottom-card-button .c-button p::after {
  width: clamp(26px, 2.64vw, 36px);
  height: clamp(26px, 2.64vw, 36px);
}

/* ==========================
下層ページ
============================ */
.service__box-flex {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media screen and (min-width: 768px) {
  .service__box-flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .service__box-flex .page2__content-text {
    max-width: 385px;
  }
}

.service__gray-boxes {
  margin-top: 73px;
}

.service__gray-box {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media screen and (min-width: 768px) {
  .service__gray-box {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media screen and (min-width: 1400px) {
  .service__gray-box {
    gap: 80px;
  }
}

.service__gray-boxes-image-wrapper {
  position: relative;
}

.service__gray-boxes-image {
  aspect-ratio: 305/200;
  width: 100%;
  height: auto;
}

.service__gray-boxes-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .service__gray-boxes-image {
    width: 305px;
  }
}

.service__gray-boxes-number {
  position: absolute;
  z-index: 1;
  top: -30px;
  right: -10px;
  aspect-ratio: 75/60;
  width: clamp(65px, 5.5vw, 75px);
  height: auto;
}

.service__gray-boxes-number img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service__gray-boxes-text-wrap {
  padding-block: 40px 83px;
  border-top: 1px solid #d2d9e0;
}

@media screen and (min-width: 768px) {
  .service__gray-boxes-text-wrap {
    max-width: 400px;
  }
}
@media screen and (min-width: 1400px) {
  .service__gray-boxes-text-wrap {
    max-width: 100%;
  }
}

.service__gray-boxes-title {
  font-size: clamp(16px, 1.32vw, 18px);
  font-weight: 600;
  letter-spacing: calc(60 / 1000 * 1em);
}

.service__gray-boxes-text {
  margin-top: 30px;
  font-size: clamp(12px, 1.03vw, 14px);
  letter-spacing: calc(30 / 1000 * 1em);
  line-height: calc(28 / 14);
}

.service__flow-boxes {
  margin-top: 54px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service__flow-box-head {
  display: flex;
  align-items: center;
  gap: 20px;
}
.service__flow-box-head-number {
  aspect-ratio: 47/37;
  width: 47px;
  height: auto;
}

.service__flow-box-head-number img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service__flow-box-title {
  font-size: clamp(16px, 1.32vw, 18px);
  font-weight: 700;
  letter-spacing: calc(60 / 1000 * 1em);
}

.service__flow-box-bottom {
  margin-top: 12px;
  padding: 6px 0 35px 48px;
  margin-left: 26px;
  position: relative;
}

.service__flow-box:not(:last-of-type) .service__flow-box-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: url(../images/dot-line.svg) repeat-y center center/contain;
}

.service__flow-box-bottom-text {
  font-size: clamp(12px, 1.03vw, 14px);
  letter-spacing: calc(30 / 1000 * 1em);
  line-height: calc(28 / 14);
}

.service__faq {
  margin-top: 50px;
  border-top: 1px solid #c7c7c7;
}

.service__faq-box {
  padding-block: 35px;
  border-bottom: 1px solid #c7c7c7;
}

.service__faq-box-q {
  position: relative;
  padding-left: 61px;
  font-size: clamp(12px, 1.03vw, 14px);
  font-weight: 700;
  color: var(--color-title-ja);
}
.service__faq-box-q::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 20px;
  background: var(--color-title-ja);
  left: 36px;
  top: 0;
}
.service__faq-box-q::after {
  content: "Q";
  position: absolute;
  font-size: clamp(12px, 1.03vw, 14px);
  font-weight: 700;
  color: var(--color-title-ja);
  left: 0;
  top: 0;
}

.service__faq-box-a {
  margin-top: 35px;
  position: relative;
  padding-left: 61px;
  font-size: clamp(12px, 1.03vw, 14px);
  line-height: calc(28 / 14);
}
.service__faq-box-a::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 20px;
  background: var(--color-base);
  left: 36px;
  top: 3px;
}
.service__faq-box-a::after {
  content: "A";
  position: absolute;
  font-size: clamp(12px, 1.03vw, 14px);
  font-weight: 700;
  color: var(--color-base);
  left: 0;
  top: 0;
}

.service__product {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service__product-item p {
  min-width: 177px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: clamp(12px, 1.03vw, 14px);
  font-weight: 600;
  letter-spacing: calc(50 / 1000 * 1em);
  line-height: calc(30 / 14);
  color: var(--color-title-ja);
  background: #e8eef2;
  border-radius: 5px;
}
.service__product-item p::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--color-title-ja);
  border-radius: 50%;
  flex-shrink: 0;
}
