/*
|---------------------------------------------------------------
| qinc2026-futureshop-consultation.css
|---------------------------------------------------------------
*/

.futureshop-consultation {
  position: relative;
  background: #00418f;
  padding: clamp(64px, 8vw, 120px) 0;
  overflow: hidden;
}

.futureshop-consultation__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: min(50%, 560px);
  pointer-events: none;
}

.futureshop-consultation__bg-img {
  display: block;
  width: 100%;
  height: auto;
}

.futureshop-consultation__inner {
  position: relative;
  z-index: 1;
}

.futureshop-consultation__list {
  max-width: 920px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
}

.futureshop-consultation__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px;
  background-color: #fff;
  border-radius: 16px;
}

.futureshop-consultation__item + .futureshop-consultation__item {
  margin-top: 15px;
}

.futureshop-consultation__item:last-child {
  border-bottom: 0;
}

.futureshop-consultation__check {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  margin-top: 2px;
  border-radius: 50%;
  background: #1e2c63;
}

.futureshop-consultation__check::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 6px;
  width: 7px;
  height: 12px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
}

.futureshop-consultation__item-text {
  flex: 1 1 auto;
  font-size: 18px;
  line-height: 1.7;
  color: #343434;
  font-weight: 500;
}

@media (max-width: 768px) {
  .futureshop-consultation__item-text {
    font-size: 14px;
  }
}
