@charset "UTF-8";
:root {
  --primary: #61C0BF;
  --secondary: #BBDED6;
  --tertiary: #FAE3D9;
  --annotations: #FFB6B9;
  --font: #333333;
}

.form-control {
  background: #ecf0f3;
  border-radius: 32px;
  box-shadow: none;
  height: 50px;
  padding-left: 32px;
}

.btn-contact {
  background: var(--primary);
  color: #fff;
}

/* 送信ボタンホバー時 */
.btn-contact:hover {
  background: var(--secondary);
}

/* メッセージ入力欄のplaceholder位置 */
textarea::-moz-placeholder {
  position: relative;
  top: 10px;
}
textarea::placeholder {
  position: relative;
  top: 10px;
}
