@charset "utf-8";

/*全ページの初期化*/
*{
	margin: 0;
	padding: 0;
}	
/*全ページの色指定*/
body {
      background-color: #ffefef;
      margin-left: 45px;
      padding: 0;
}

h1 {
     text-align: center;
     margin: 30px 0 30px 0;
}
h2 {
      color: #a0522d;
      margin-left: 40px;
}
#ayumi {
      margin: 50px 110px 200px 110px;
}      


/*マウスオーバーによる画像ポップアップ*/
a.p:hover {
    position: relative;
    text-decoration: none;
}
a.p span {
    display: none;
    position: absolute;
    top: 1em;
    left: 0;
}
a.p:hover span {
    border: none;
    display: block;
    width: 150px;
}