/*グリッドエリアの作成*/
.grid-container{display: grid; /*グリッド*/
	grid-template-columns: 350px 300px 300px; /*カラム3列*/
	grid-gap: 10px; /*グリッドの隙間幅*/
	justify-content: center; /*コンテナを中央*/
}
.grid-container div:nth-child(1) {grid-row: 1/2; grid-column: 1/2;} 
.grid-container div:nth-child(2) {grid-row: 1/2; grid-column: 2/3;} /*2番目div要素を縦1～2,横2～3で作成*/
.grid-container div:nth-child(3) {grid-row: 1/2; grid-column: 3/4;}

/*グリッドアイテムを中央に配置*/
.item-center {display:grid;
	          place-items: center;}

/*問い合わせボタン*/
.toi-buttan {border: solid 2px;
             border-radius: 5px;
             padding: 10px;
             color: #008b8b;}
.toi-buttan:hover {background-color: #008b8b;
                   color: #fff;
                   transition: all 0.5s ease;}

