@charset "UTF-8";

/* ================================================================
   Gracias &#8212; SSL ページ CSS
   対象: ログイン / 会員登録 / マイアカウント / カート / 決済など
   カラーミー公式カスタマイズクラスのみ使用
   参考: https://help.shop-pro.jp/hc/ja/articles/1500003905761
   ================================================================ */

/* 背景・ベース */
body {
  background-color: #faf6f1;
  color: #2b3230;
}

/* 送信ボタン（主要アクション） */
.c-button--primary,
.c-button--primary:link,
.c-button--primary:hover,
.c-button--primary:active,
.c-button--primary:visited {
  color: #fff;
}
.c-button--primary {
  background: #5d705c;
}
.c-button--primary:hover {
  background: #4d5f4c;
}

/* 通常ボタン（戻る・キャンセルなど） */
.c-button,
.c-button:link,
.c-button:hover,
.c-button:active,
.c-button:visited {
  color: #2b3230;
}
.c-button {
  background: #eff2f0;
}
.c-button:hover {
  background: #e0e5df;
}

/* 解除・退会ボタン（デフォルトのまま） */
.c-button--danger,
.c-button--danger:link,
.c-button--danger:hover,
.c-button--danger:active,
.c-button--danger:visited {
  color: #86251e;
}
.c-button--danger {
  background: #feedeb;
}
.c-button--danger:hover {
  background: #fdd9d7;
}

/* テキスト入力エリア */
.c-input--text {
  border-color: #e0dcd7;
}
.c-input--text:focus {
  border-color: #5d705c;
}
