/* ========================================
   セクション間の余白
======================================== */
* + .section {
    margin-top: 0.2rem;
}

/* ========================================
   見出し（h1）
======================================== */
h1 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.20rem;
    margin: 0;
}

h1 img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* ========================================
   入力フィールド
======================================== */
.input {
  background-color: #fff !important;
}

/* もしフォーカス時もグレーになっている場合 */
.input:focus {
  background-color: #fff !important;
}

/* ========================================
   ボタン
======================================== */
/* 登録ボタンのみアイコンなし */
.buttonA.-noIcon > span::before {
  display: none !important;
}

.buttonA.-noIcon > span {
  padding-left: 0 !important;
}

/* 非活性状態（デフォルト） */
button[name="do"].disabled {
    background-color: #CFCFCF;
    color: #666;
    cursor: not-allowed;
    pointer-events: none;
}

button[name="do"].disabled > span {
    color: #666;
}

button[name="do"].disabled > span::before {
    display: none;
}

/* SP時は左揃えに上書き */
@media (max-width: 767px) {
  .-textCenter {
    text-align: left;
  }

  .buttonBlock.vertical-layout {
      margin-top: 0.6rem !important;
  }
}