/* =============== 電話認証ページ =============== */
.i_number {
  font-weight: bold;
  font-size: 1rem;
}
.button-container {
  text-align: center;
  margin: 1rem 0;
}

.call-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #114d8f;
  color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  max-width: 400px;
  margin: 0 auto;
}

.call-button:hover {
  background-color: #0077ae;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.call-button:active {
  background-color: #004494; /* タップ時の背景色変化 */
  color: #fff; /* タップ時も文字色を維持 */
}

.call-button span {
  color: #fff; /* 親要素の色を継承 */
  text-decoration: none; /* 下線を削除 */
}

.icon-container {
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon {
  width: 48px;
  height: 48px;
}

.text-container {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.button-title {
  font-size: 16px;
  font-weight: bold;
}

.phone-number {
  font-size: 14px;
  color: #e0e0e0;
}

/* =============== ボタン設定 =============== */
.btn-call {
  border-radius: 0;
  margin: 1rem 10% 2rem 10%;
  padding: 1rem;
  color: #FFF;
  border: none;
  outline: none;
}

.btn-sms {
  border-radius: 0;
  margin: 1rem 10% 2rem 10%;
  padding: 1rem;
  color: #FFF;
  border: none;
  outline: none;
}

.btn-call:disabled {
	opacity:.65
}

.btn-sms:disabled {
	opacity:.65
}