/*************
  ヘッダー
 *************/
header {
  .pay-label {
    padding: 5px 8px;
    border-radius: 5px;
  }
}
article {
  /* バランスカード */
  .balance-card {
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    position: relative;
    /* ポイント名 */
    .card-title {
      font-size: 1.2em;
      .pay-label {
        padding: 5px 8px;
      }
    }
    /* ポイント枠 */
    .wrap-flex-area {
      display: flex;
      align-items: center;
      justify-content: space-between;
      /* ポイント所持数 */
      .balance-amount {
        font-size: 2.5em;
        font-weight: bold;
        margin: 10px 0;
        width: 60%;
        /* ポイント単位 */
        .labelUnit {
          text-align: right;
        }
      }
      /* ポイントアイコン */
      .dog-icon img {
        width: 100px;
      }
    }
    /* 受け取るボタン */
    .view-card-button {
      padding: 8px 12px;
      border: none;
      border-radius: 8px;
      font-weight: bold;
      cursor: pointer;
      margin-top: 20px;
      font-size: 0.9em;
    }
  }
  /* アイコンメニュー */
  .icon-menu {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
    font-weight: bold;
    /* メニュー */
    .menu-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      font-size: 0.9em;
    }
  }
}
/*--------------------------
  モーダルフォーム
-----------------------------*/
/*******
  QRコード表示機能
********/
.viewQR {
  margin: 20px auto;
  max-width: 300px;
  width: 90%;
}
/*******
  送る処理機能
********/
.current-balance {
  font-size: 1.5em;
  font-weight: bold;
}
.balance-info,
.point-input {
  margin-bottom: 10px;
}
#sendPointInput {
  text-align: right;
}
