﻿@charset "utf-8";
.l_sitemap {
    padding: 0;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 3em;
    align-content: center;
    justify-items: start;
    align-items: start;
    justify-content: start;
}
.l_sitemap div h3{
	margin-bottom: 1em;
}
.l_sitemap div{
	background: #F5F5F5;
	width: 85%;
	height: 95%;
	padding: 1em 2em 2em 2em;
}
.l_sitemap div ul li{
	padding-bottom: .5em;
}
@media (max-width : 768px) {
	.l_sitemap {
		display: block;
	}
	.l_sitemap h3{
margin-top: 2em;		
	}
}
/* Google Map */
.l_map_wrap  {
   max-width: 660px;
   width: 100%;
   margin: 0 auto;
   clip-path: inset(0 round 30px); /*角丸を付ける場合*/
}
.l_map  {
   height: 0;
   overflow: hidden;
   padding-bottom: 56.25%;
   position: relative;
   }
.l_map iframe {
   position: absolute;
   left: 0;
   top: 0;
   height: 100%;
   width: 100%;
}