/* まとめて手続きCTA */
.both-process-cta {
  background: var(--white);
  border-radius: 10px;
  padding: 25px 16px 40px 16px;
  margin: 30px 0;
  position: relative;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
}

.both-process-cta__speech-bubble {
  background: #F5F5F5;
  color: var(--body-colour);
  padding: 10px 20px;
  border-radius: 15px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  vertical-align: middle;
  display: inline-block;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11;
  white-space: nowrap;
  box-shadow: 0px 4px 4px 0px #00000040;
}

.both-process-cta__speech-bubble::before {
  content: '';
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  border: 14px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.18);
  filter: blur(1.5px);
  z-index: 9;
}

.both-process-cta__speech-bubble::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 12px solid transparent;
  border-top-color: #F5F5F5;
  z-index: 10;
}

.both-process-cta .both-process-cta__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 35px;
  letter-spacing: 0.14em;
  text-align: center;
  vertical-align: middle;
  margin-top: 15px;
}

.both-process-cta__title strong {
  font-size: 16px;
  background: transparent;
  box-shadow: inset 0 -8px 0 rgba(244, 230, 29, 0.65);
  color: var(--body-colour);
}

.both-process-cta__title .red-big-strong {
  font-size: 26px;
  color: var(--lp_primary);
}

.both-process-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 17.4px;
  margin-bottom: 29.98px;
  align-items: center;
  justify-content: center;
}

.both-process-cta__button {
  display: block;
  border-radius: 50px;
  padding:12px 35px;
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
  width: 100%;
  max-width:336px;
}

.both-process-cta__button-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* アイコンの白丸背景 */
.both-process-cta__button-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
}

.both-process-cta__button i { font-size: 19.5px; }

.both-process-cta__button-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  .both-process-cta__button-text-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.both-process-cta__button-text span {
  display: block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #fff;
  white-space: nowrap;
}

.both-process-cta__button-text small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: #fff;
}

.both-process-cta__button--phone {
  background: var(--lp_primary);
  box-shadow: 0 5px var(--lp_primary-accent);
}

/* ホバー効果を無効化（色変更・移動なし） */
.both-process-cta__button--phone:hover { background: var(--lp_primary); }

.both-process-cta__button--web {
  background: var(--lp_secondary);
  box-shadow: 0 5px var(--lp_secondary-accent);
}

.both-process-cta__button--web:hover { background: var(--lp_secondary); }

.both-process-cta__button--phone .both-process-cta__button-icon i { color: var(--lp_primary); }
.both-process-cta__button--web .both-process-cta__button-icon i { color: var(--lp_secondary); }

.both-process-cta__notes {
  font-size: 10px;
  color: #555555;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 425px) {
  .both-process-cta__button {
    padding: 12px 5px 12px 20px;
  }
}

@media (max-width: 320px) {
  .both-process-cta__button-text span {
    font-size: 16px;
  }
}