@charset "UTF-8";

@font-face
{
font-family: mplus-1p-regular;
src: url('http://mplus-fonts.sourceforge.jp/webfonts/mplus-1p-regular.ttf')
     format("truetype");
}

/* --- 全体の背景・テキスト --- */
body {
margin:5em;
background: #f8ffe8; /* Old browsers */
background: -moz-linear-gradient(top,  #f8ffe8 0%, #e3f5ab 28%, #1a7f72 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f8ffe8), color-stop(28%,#e3f5ab), color-stop(100%,#1a7f72)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  #f8ffe8 0%,#e3f5ab 28%,#1a7f72 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  #f8ffe8 0%,#e3f5ab 28%,#1a7f72 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  #f8ffe8 0%,#e3f5ab 28%,#1a7f72 100%); /* IE10+ */
background: linear-gradient(to bottom,  #f8ffe8 0%,#e3f5ab 28%,#1a7f72 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f8ffe8', endColorstr='#1a7f72',GradientType=0 ); /* IE6-9 */
 /* ページの背景色 */
color: #404040; /* 全体の文字色 */
font-size: 90%; /* 全体の文字サイズ */
}




/* --- 全体のリンクテキスト --- */
a:link { color: #99ff33; }
a:visited { color: #99ff33; }
a:hover { color: #000000; }
a:active { color: #99ff33; }
a {text-decoration: none;}


/* --- コンテナ --- */
#container {
width: 700px; /* コンテナの幅 */
margin: 0 auto; /* センタリング */
}

/* --- ページ --- */
#page {
width: 100%; /* ページの幅 */
margin: 0 auto; /* センタリング */
}

/* --- ヘッダ --- */
#header {
width: 100%; /* コンテンツの幅 */
}

/* --- コンテンツ --- */
#content {
width: 100%; /* コンテンツの幅 */
margin-bottom: 10px; /* コンテンツの下マージン */
}

/* --- フッタ --- */
#footer {
width: 100%; /* コンテンツの幅 */
}

/* --- フッタナビゲーション --- */
div.footerNav {
font-size: 100%;
}

/* --- メニューエリア --- */
div.footerNav ul.nl {
margin: 0;
padding: 0;
list-style-type: none;
text-align: center; /* メニューのセンタリング */
}

/* --- メニュー項目 --- */
div.footerNav ul.nl li {
margin: 0 4px; /* 項目のパディング（上下、左右） */
display: inline;
}

/* --- 右側に表示しましょーーーーーーう --- */
p.inyo {
text-align: right;
}

/* --- 真ん中に表示しましょーーーーーーう --- */
p.center {
text-align: center;
}


/* --- テキスト装飾 --- */

strong {
	color: #404040;
	font-style: normal;
	font-weight: bold;
	font-size: 100%;
}


em {
	color: #1066de;
	font-style: normal;
	font-weight: bold;
	font-size: 140%;
}


/* --- 画像の横にテキスト流す --- */
img.top { float: right; margin: 20px; border: 1px #000000 solid; }



/* --- ボックス内の段落 --- */
div.section {
padding:0 50px 0 50px ; /* 内側の余白 */
margin: 7em 15px 1em 10px; /* 段落のマージン（上右下左） */
}


/* --- トップに戻るやつ --- */
#page-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	font-size: 200%;
}
#page-top a {
	background: #454545;
	text-decoration: none;
	color: #ffffff;
	width: 80px;
	padding: 20px 0;
	text-align: center;
	display: block;
	border-radius: 5px;
}
#page-top a:hover {
	text-decoration: none;
	background: #999999;
}
/* --- トップに戻るやつ --- */


/* --- リスト --- */
ul {
padding:0 50px 0 50px ; /* 内側の余白 */
margin: 1em 10em 1em 10em; /* 段落のマージン（上右下左） */
}


/* --- メニューボタン --- */
.btn04 {
    color: #fff;
    text-decoration: none;
    text-align: center;
    position: relative;
    z-index: 10;
    display: block;
    width: 150px;
    height: 150px;
    line-height: 150px;
}

.btn04::before {
    content: '';
    background-color: #84DCA1;
    display: block;
    position: absolute;
    width: 150px;
    height: 150px;
    z-index: -1;
    border-radius: 50%;
    box-shadow:
        0 0 0 0 #fff,
        0 0 0 0 #84DCA1;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
}
.btn04:hover::before {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    box-shadow:
        0 0 0 25px #fff,
        0 0 0 27px #84DCA1;
}