@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: #de5490;
background: radial-gradient(circle, rgba(222, 84, 144, 1) 0%, rgba(148, 158, 209, 1) 100%);
}

footer {
	padding: 15px;
	background: #6b8e23;
	color: #fff;
	margin-top: 30px;
	text-align: center;
}

/* 見出しh1～h3 */
h2{
	text-align: center;
    color: darkgreen;
}

h1{
    color: whitesmoke;
    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: darkcyan;
margin: 7px;
border-radius: 5px;
}
.menu li a:hover {
background-color: midnightblue;
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(25% 0%, 100% 0%, 75% 100%, 0% 100%);    
}

.bg02{
background-color: yellow;
margin: 60px 0;
text-align: center;
clip-path: polygon(0 0, 68% 0, 100% 100%, 33% 100%);    
}

.bg03{
background-color: whitesmoke;
margin: 60px 0;
text-align: center;
clip-path: polygon(25% 0%, 100% 0%, 86% 100%, 0% 100%);    
}

.bg04{
background-color: skyblue;
margin: 60px 0;
text-align: center;
clip-path: polygon(0 0, 68% 0, 100% 100%, 33% 100%);;   
}