@charset "utf-8";
/* CSS Document */

body {
	margin: 0;
	font-family:sans-serif;
	color:#252525;
	font-size:16px;
	line-height: 1.7;
	background-color: #fff;
}

.container {
	margin: 0 auto;
	max-width: 960px;
	padding: 30px;
}

header {
	padding: 20px;
	text-align: center;
	background-image:url("../img/bg.jpg");
	
background-size: cover;

}

footer {
	padding: 15px;
	background-color:lightpink;
	color: #fff;
	margin-top: 30px;
	text-align: center;
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 50% 75%, 0% 75%)
}

/* 見出しh1～h3 */
h2{
	text-align: center;
}

h1{
    color:white;
    font-size: 34px;
}
/* ナビゲーション */
.menu {
margin: 10px 0 30px;
padding: 0;
list-style-type: none;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.menu li a {
display: block;
padding: 10px 20px;
color: #fff;
text-decoration: none;
text-align: center;
background-color: darkseagreen;
margin: 7px;
border-radius: 5px;
}
.menu li a:hover {
background-color:dodgerblue;
color: #fff;
}


/* 画像レスポンシブ*/
img{
max-width:100%;
height:auto;
}

/* テキストや画像をセンター*/
.naka{
text-align: center;
}

/* スムーススクロールにする */
html{
scroll-behavior: smooth;
}

/* リンク画像をマウスオーバーで明るく */
a img:hover {
opacity: 0.6;
}

/* 回り込みの指定 */
.migi{
margin:0 0 25px 25px;
float:right;
}

.hidari{
margin: 0 25px 25px 0;
float: left;
}

@media only screen and (max-width:767px){
img.migi, img.hidari{
display:block;margin:5px auto;
}
.migi,.hidari{
float:none;
}
}


/* bg*/

.bg01{
background-color: mistyrose;
margin: 60px 0;
text-align: center;
clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%)
}

.bg02{
background-color:mediumpurple;
margin: 60px 0;
text-align: center;
clip-path: polygon(0 0, 85% 0, 100% 100%, 15% 100%);
    
}

.bg03{
background-color:lightpink;
margin: 60px 0;
text-align: center;
clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%)
}

.bg04{
background-color:indianred;
margin: 60px 0;
text-align: center;
clip-path: polygon(0 0, 85% 0, 100% 100%, 15% 100%);
}