
/* INITIALIZE */





/* HEADER */





/* CONTENT */
.content {
	margin: 3rem 0;
}

.content > p {
	line-height: 2.5rem;
}

.content-image {
	margin: 0 auto;
	width: 10rem;
	height: 10rem;
	background-image: url("img/ilpiedino_logo.jpg");
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 50%;
}

.content > h2,
.content > p {
	text-align: center;
}

/* ---------- CONTENT (BUTTON MENU) */
.button-menu-box {
	margin: 0 auto;
	padding: 2rem 2rem 0;
	max-width: 1300px;
}
ul.button-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.button-menu li {
	margin-bottom: 1rem;
	transform: scale(1.0);
	transition: transform var(--animation-speed);
}

.button-menu li:hover {
	transform: scale(1.02);
}

.button {
	top: 0px;
	left: 0px;
}

.button-content {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	padding: 0.5rem 1rem;
	min-height: 4rem;
	background-color: var(--background-color-b);
	border-radius: 2rem;
	box-shadow: 0px 0.2rem 0.8rem rgba(0, 0, 0, 0.15);
}

.button-img {
	margin-right: 1rem;
	width: 3rem;
	height: 3rem;
	overflow: hidden;
}

.button-img img {
	width: 100%;
	height: 100%;
}

.button-content p {
	margin: 0;
}





/* FOOTER */





/* COPYRIGHT */
.copyright {
	color: var(--main-color);
	text-align: center;
}








/* === SMART PHONE === */
@media screen and (max-width:767px) {
}
/* === SMART PHONE (BEFORE) === */
@media screen and (max-width:389px) {
}




/* === TABLET === */
@media screen and (min-width:768px) {

	/* CONTENT */
	.button-menu {
		display: flex;
		flex-flow: row wrap;
		justify-content: space-between;
	}

	.button-menu li {
		min-width: 48%;
	}
}
/* === TABLET ONLY === */
@media screen and (min-width:768px) and (max-width:1023px) {
}




/* === PC === */
@media screen and (min-width:1024px) {
}




/* === HOVER === */
@media (any-hover:hover) {
}