@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap')

*{margin:0; padding: 0;}


body{
    color:#000;
    font-size:12px;
    letter-spacing:2.4px;
    line-height:2;
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    background-color: #fcfcfc;
}

article{
    width:90%;
    max-width:600px;
    margin:10% auto;
    margin-bottom: 150px;
}


/* リンク */

a{
    text-decoration:none;
    color:#505050;
    }

a:visited{
	color:#505050;
	}
	
a:hover{
	color:#c55a45;
}

/* コンテンツ */

.con{
    width: 600px;
    padding: 5px;
    text-align: left;
}

textarea{
    width:300px;
	height: 100px;
	border:1px solid #aaa;
	background:#fff;
	color:#505050;
	font-size:12px;
	line-height:1.5;
}

mark{
    background-color: #e6c8a9;
}

p{
    text-align: left;
}

/* メディアクエリ */
	
@media screen and (max-width:758px){
	
	.con{
		width: 330px;
		text-align: left;
		}	
	}