/*ホームページに関するcss*/


/*横の幅*/
:root{
	--PaddingSide: 400px; /*左右幅*/
	--ContentSide: 350px; /*コンテンツ左右幅*/
}

.homeContents{
	display: flex;
    flex-direction: column;   /* 子divを縦並び */
    justify-content: center;  /* 縦方向の中央 */
    align-items: center;      /* 横方向の中央 */
	
	margin-right: var(--PaddingSide);
	margin-left: var(--PaddingSide);
	background-color: #140e0b;
}

.homeContents a {
	text-decoration:none;
	color: #dddddd;
}

.homeContents p {
	text-decoration:none;
	color: #dddddd;
}

.homeContents div{
/* 	text-align: center; */
}

#topIconImg {
	margin-left: 10px;
	margin-right :10px;
}

#topTexts {
	margin-left:40px;
	margin-right:40px;
}

#topContents {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-right: 20px;
	padding-left: 20px;
	padding-bottom: 30px;
	padding-top: 100px;
}