/* 開設帳戶簡單便捷（参考 Mitrade） */

.page_start_steps[data-hidden-patch="1"] {
  display: none !important;
}

.home-open-account {
  background: #f4f5f7;
  padding: clamp(48px, 6vw, 72px) 0;
  color: #111;
}

.home-open-account__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.18fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  box-sizing: border-box;
}

.home-open-account__title {
  margin: 0 0 8px;
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.15;
  font-family: "Roboto-Bold", sans-serif;
  font-weight: 700;
  color: #111;
}

.home-open-account__subtitle {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  font-family: "Roboto-Regular", sans-serif;
  font-weight: 400;
  color: #667085;
}

.home-open-account__steps {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 22px 0 26px;
}

.home-open-account__step-line {
  width: 43px;
  height: 222px;
  flex-shrink: 0;
  object-fit: contain;
  object-position: top center;
  margin-top: 2px;
}

.home-open-account__step-list {
  flex: 1;
  min-width: 0;
  padding-top: 0;
}

.home-open-account__step-item--1 {
  margin-top: 0;
}

.home-open-account__step-item--2 {
  margin-top: 54px;
}

.home-open-account__step-item--3 {
  margin-top: 54px;
}

.home-open-account__step-item-title {
  display: block;
  margin: 0 0 2px;
  font-size: 16px;
  line-height: 1.25;
  font-family: "Roboto-Bold", sans-serif;
  font-weight: 700;
  color: #111;
}

.home-open-account__step-item-desc {
  display: block;
  font-size: 14px;
  line-height: 1.35;
  font-family: "Roboto-Regular", sans-serif;
  font-weight: 400;
  color: #667085;
}

.home-open-account__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 32px;
  border: none;
  border-radius: 999px;
  background: #006bff;
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
  font-family: "Roboto-Bold", sans-serif;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.home-open-account__btn:hover {
  background: #0056cc;
  color: #fff;
}

.home-open-account__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-open-account__phones {
  width: min(100%, 720px);
  height: auto;
  display: block;
}

@media (max-width: 960px) {
  .home-open-account__inner {
    grid-template-columns: 1fr;
  }

  .home-open-account__visual {
    order: -1;
  }

  .home-open-account__phones {
    width: min(100%, 540px);
  }
}

@media (max-width: 640px) {
  .home-open-account {
    padding: 40px 0 48px;
  }

  .home-open-account__step-line {
    height: 200px;
  }

  .home-open-account__step-item--2,
  .home-open-account__step-item--3 {
    margin-top: 46px;
  }

  .home-open-account__btn {
    width: 100%;
    box-sizing: border-box;
  }

  .home-open-account__phones {
    width: min(100%, 400px);
  }
}
