@charset "UTF-8";
html {
  scroll-padding-top: 80px;
}
/*カラム横並び*/
.column-3,.column-2,.column-1{
	display:flex;
}
/*カラム幅32%*/
.ellipse-3{
	width:32%;
}
/*カラム幅49%*/
.ellipse-2{
	width:49%;
}
.half{
	width:50%;
}
/*カラム余白右*/
.m-r-2{
	margin-right:2%;
}
/*カラム余白左右2%*/
.ellipse-center{
	margin:0 2%;
}
/*カラム上下余白20px*/
.m-b-20{
	margin-bottom:20px;
}
/*囲み4pxブルー*/
.border{
	border:solid 4px #004c9e;
	border-radius:30px;
}
/*画像周りに余白10px*/
.ellipse-3>img,.ellipse-2>img,.half>img{
	padding:10px;
}
/*テキスト18px太字*/
.bold_text{
	font-size:18px;
	font-weight:bold;
}
/*余白20px*/
.m-20{
	margin:20px;
}
/*テキスト中央揃え*/
.centering{
	text-align:center;
}
/*縦のフレックスボックス*/
.box{
	display:flex;
	flex-direction: column;
}
.box p{
	flex-grow: 1;
} 
.back-white{
	background-color:white;
}
.flex-centering{
	display:flex;
	justify-content: center;
	align-items: center;
}
.left{
	display: inline-block;
	text-align: left;
}
