@charset "utf-8";
/* css-grid-bgm-gr */

.grid-container-home {
	margin-top: 0;
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
	width: 1550px;
	max-width: 90%;
	font-size: 90%;
	font-family: Arial, Helvetica, sans-serif;
	text-align: left;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr lfr lfr;
	grid-template-rows: 200px 200px 200px;
	gap: 15px;
	grid-template-areas:
	"home-item1 home-item1 home-item1 home-item1 home-item2 home-item2"
	"home-item1 home-item1 home-item1 home-item1 home-item2 home-item2"
	"home-item3 home-item3 home-item3 home-item4 home-item4 home-item4";
}

.grid-item-home {
	width: 100%;
	height: auto;
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 20px;
	padding-bottom: 20px;
	gap: 50px;
	border-radius: 15px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.25);

}

.grid-item-home img {
	width: 10%;
	height: auto;
	border-radius: 10px;
}

#home-item1 {
	width: auto;
	grid-area: home-item1;
	flex-direction: column;
	height: 95%;
	padding-top: 30px;
	padding-left: 30px;
	gap: 10px;
	background-color: #fff;
	border: #f5f0e3 solid 1px;
	border-radius: 15px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.25);
}

#home-item2 {
	grid-area: home-item2;
	flex-direction: column;
	height: 95%;
	padding-top: 30px;
	padding-left: 30px;
	gap: 10px;
	background-color: #fff;
	border: #f5f0e3 solid 1px;
	border-radius: 15px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.25);
	overflow: scroll;
}

#home-item3 {
	grid-area: home-item3;
	flex-direction: column;
	height: 95%;
	margin-top: 12px;
	padding-top: 30px;
	padding-left: 30px;
	padding-bottom: 30px;
	gap: 15px;
	background-color: #fff;
	border: #f5f0e3 solid 1px;
	border-radius: 15px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.25);
}

#home-item4 {
	grid-area: home-item4;
	flex-direction: column;
	height: 95%;
	margin-top: 12px;
	padding-top: 30px;
	padding-left: 30px;
	padding-bottom: 30px;
	gap: 15px;
	background-color: #fff;
	border: #f5f0e3 solid 1px;
	border-radius: 15px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.25);
}



@media only screen and (max-device-width: 1024px) and (orientation: portrait){

.grid-container-home {
	width: 100%;
	max-width: calc(90% - 20px);
}

.grid-item-home img {
	width: 18px;
	height: auto;
}
}

@media only screen and (max-device-width: 1024px) and (orientation: landscape){

.grid-container-home {
	width: 100%;
	max-width: calc(90% - 20px);
}

.grid-item-home img {
	width: 100%;
	height: auto;
}
}


@media only screen and (max-width: 481px){
	
.grid-container-home {
	width: 100%;
	grid-template-columns: 1fr;
	grid-template-rows: auto auto auto auto;
	grid-template-areas:
	"home-item1" "home-item2" "home-item3" "home-item4";
}

.grid-item-home img{
	width: 100px; 
	height: 100px;
}

#home-item1 {
	width: auto;
	max-width: calc(90% - 10px);
	height: auto;
	text-align: center;
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 10px;
	padding-bottom: 20px;
}

#home-item2 {
	width: auto;
	max-width: calc(90% - 10px);
	height: 300px;
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 20px;
	padding-bottom: 20px;
	overflow: scroll;
}

#home-item3 {
	width: auto;
	max-width: calc(90% - 10px);
	height: auto;
	margin-top: 0;
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 20px;
	padding-bottom: 20px;
}

#home-item4 {
	width: auto;
	max-width: calc(90% - 10px);
	height: auto;
	margin-top: 0;
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 20px;
	padding-bottom: 20px;
}
}