@charset "utf-8";
/* CSS Document */

/*--------------------------------------
			基本レイアウト
--------------------------------------*/

#wrapper {
	width: 1000px;
	margin: 100px auto 100px;
	background: #fff;
	border-radius: 8px;
}

header {
	width: 980px;
	height: 200px;
	padding: 10px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

#contents {
	width: 860px;
	margin: 0 auto 0;
	padding: 30px 70px 50px;
	line-height: 2.3;
}

footer {
	width: 960px;
	height: 130px;
	padding: 20px;
	text-align: center;
	font-size: 108%;
}

/*--------------------------------------
			　ヘッダー
--------------------------------------*/

header #navi {
	overflow: hidden;
}

header h1 .img_left {
	margin: 18px 15px 0;
}

header nav {
	margin: 30px 0 0 290px;
}

header nav li {
	float: left;
}

/*　↓ボタンアニメーション↓　*/

/*.btn_p {
	display: block;
	width: 80px;
	height: 80px;
	margin: 0 15px;
	text-align: center;
	line-height: 80px;
	color: #FFFFFF;
	background-color: #C9E8A1;
	border-radius: 50%;
}
*/

.btn_a {
	margin: 0 15px;
    color: #3F3F3F;
    text-decoration: none;
    text-align: center;
    position: relative;
    z-index: 10;
    display: block;
    width: 80px;
    height: 80px;
    line-height: 80px;
}
 
.btn_a::before {
    content: '';
    background-color: #C9E8A1;
    display: block;
    position: absolute;
    width: 80px;
    height: 80px;
    z-index: -1;
    border-radius: 50%;
    box-shadow:
        0 0 0 0 #fff,
        0 0 0 0 #C9E8A1;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
}

.btn_a:hover::before {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    box-shadow:
        0 0 0 15px #fff,
        0 0 0 18px #C9E8A1;
}

.btn_b {
	margin: 0 15px;
    color: #3F3F3F;
    text-decoration: none;
    text-align: center;
    position: relative;
    z-index: 10;
    display: block;
    width: 80px;
    height: 80px;
    line-height: 80px;
}
 
.btn_b::before {
    content: '';
    background-color: #F0ABAD;
    display: block;
    position: absolute;
    width: 80px;
    height: 80px;
    z-index: -1;
    border-radius: 50%;
    box-shadow:
        0 0 0 0 #fff,
        0 0 0 0 #F0ABAD;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
}

.btn_b:hover::before {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    box-shadow:
        0 0 0 15px #fff,
        0 0 0 18px #F0ABAD;
}

/*　↑アニメーションここまで↑*/

header #blog {
	width: 310px;
	height: 32px;
	margin: 40px 30px 20px 640px;
}


/*--------------------------------------
			　メインコンテンツ
--------------------------------------*/

/*#contents h2{
	width: 860px;
	height: 60px;
	margin-bottom: 50px;
	font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	font-size: 189%;
	color: #434343;
	line-height: 60px;
	text-indent: 65px;
	letter-spacing: 3px;
	background-image: url(../images/h2_back.png);
}
　個別CSSの最初に記述しているが、今後全ページまとめて指定する場合があればここで*/

/*--------------------------------------
			　フッター
--------------------------------------*/

footer hr {
	margin-bottom: 20px;
	border: none;
	border-top: dotted 1px #555555;
	height: 1px;
	color: #fff;
}

footer nav {
	margin: 0 10px 70px;
}

footer li {
	float: left;
}

footer li a {
	padding: 10px;
}

footer p {
	clear: both;
}
