/* ここにCSSコードを追加

例:
.example {
    color: red;
}

CSS の知識に磨きをかけるためにご覧ください。
http://www.w3schools.com/css/css_syntax.asp

コメント終わり */ 

.button_1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
	height: auto;
    margin: 0 auto;
    padding: auto;
    border: 0;
    border-radius: 0;
    background-color: #328f49;
    color: white;
    font-size: 1em;
}

.button_1:hover {
    border: auto;
    background-color: #fff;
    color: #328f49;
    font-weight: 500;
}

.button_2 {
    border: opx 
	background: red;
	color: white;
}

.button_2:hover {
    background: black;
	color: white;
}

.grow-button {
  display: block;
}

.grow-button:hover {
  transform: scale(1.1); /* マウスオーバー時にボタンを1.1倍に拡大 */
  font-weight: bold;
  opacity: 0.8; /* 透明度を下げる */
  color: black !important; /* テキスト色を強制指定 */
}

.button_3 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    margin:0 auto;
    padding: .9em 2em;
    border: 1px solid #2589d0;
    border-radius: 5px;
    background-color: #fff;
    color: #2589d0;
    font-size: 1em;
}

.button_4:hover {
    filter: brightness(1.3);
}
	

/* ここにCSSコードを追加

例:
.example {
    color: red;
}

CSS の知識に磨きをかけるためにご覧ください。
http://www.w3schools.com/css/css_syntax.asp

コメント終わり */ 

.test1: {
  background-color: white !important; /* テキスト色を強制指定 */
}

.test1:hover {
  font-weight: bold; /* テキストを太字に */
  transform: scale(1.1); /* マウスオーバー時にボタンを1.1倍に拡大 */
}


