@charset "utf-8";


/* =Reset default browser CSS.
Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
-------------------------------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {border: 0;font-family: inherit;font-size: 100%;font-style: inherit;font-weight: inherit;margin: 0;outline: 0;padding: 0;vertical-align: baseline;}
:focus {outline: 0;}

ol, ul {list-style: none;}
table {border-collapse: separate;border-spacing: 0;}
caption, th, td {font-weight: normal;text-align: left;}
blockquote:before, blockquote:after,q:before, q:after {content: "";}
blockquote, q {quotes: "" "";}
a img{border: 0;}
figure{margin:0}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;}

/*全体の設定
---------------------------------------------------------------------------*/
body {
	background-color: #FFFFFF;
	line-height: 150%;
	scrollbar-3dlight-color : #ecf1d7;
	scrollbar-arrow-color : #8ab13d;
	scrollbar-base-color : #8ab13d;
	scrollbar-darkshadow-color : #ecf1d7;
	scrollbar-face-color : #ecf1d7;
	scrollbar-track-color : #FFFFFF;
	scrollbar-highlight-color : #8ab13d;
	scrollbar-shadow-color : #8ab13d;
	color: #707070;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";/*文字サイズ・行間・フォント設定*/
}

/*テキストを選択する時の色を変更*/

::selection {
  background-color: #72a57f;
  color: #fff;
}

/* Firefox */
::-moz-selection {
  background-color: #72a57f;
  color: #fff;
}

h1{
	position:relative;
	padding: 10px 10px 10px 20px;	/*左から、上、右、下、左側への余白*/
	font-weight: bold;
	font-size: 18px;
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e6e6e6));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e6e6e6);	/*同上*/
	background-image: linear-gradient(#FFF, #e6e6e6);			/*同上*/
	-webkit-box-shadow: 0px 2px 5px #544436;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #544436;			/*同上*/
	font-size: 100%;
	color: #36271a;	/*文字色*/
	border-radius:10px;
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
	}
	
h1:before{
	content:'';
	height:25px;
	width:2px;
	display:block;
	position:absolute;
	left:4px;
	background-color:#72a57f;
	border-left: 4px solid #72a57f;
	border-radius:10px;
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
}


/*リンク（全般）設定
---------------------------------------------------------------------------*/
a{
    color: #a7a7a7;
    -webkit-transition: 0.5s;
     -moz-transition: 0.5s;
     -o-transition: 0.5s;
     -ms-transition: 0.5s;
     transition: 0.5s;
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}
 
a:hover {
    color: #fff;
    text-shadow: -1px 1px 5px #424242, 1px -1px 5px #424242;
}

span.size1 {font-size: 70%; }
.size2 {font-size: 80%; }
.size3 {font-size: 90%; }
.size4 {font-size: 100%; }
.size5 {font-size: 110%; }
.size6 {font-size: 120%; }
.size7 {font-size: 140%; }
.size8 {font-size: 160%; }


td {
	font-size: 12px;
	color: #666666;
}
.sub {
	font-size: 12px;
	color: #666666;
	padding-left: 20px;

}
.error {
	font-size: 14px;
	color: #996666;
}
.txt {
	border-top:1px solid #ffced1;
	border-bottom:1px solid #ffced1;
	border-left:1px solid #FFFFFF;
	border-right:1px solid #FFFFFF;
	background-color: #f9edea;
	font-size: 12px;
	color: #666666;

}
.btn {
	border-top:1px solid #ffced1;
	border-bottom:1px solid #ffced1;
	border-left:1px solid #ffced1;
	border-right:1px solid #ffced1;
	background-color: #f9edea;
	font-size: 12px;
	color: #666666;

}


input[type="checkbox"] {
    border: 1px solid #aaaaaa;
    vertical-align: -8px;
    -webkit-appearance: none;
    position: relative;
    margin-right: 5px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-sizing: border-box;
    width: 26px;
    height: 26px;
    /*Other Browser*/
    background: #e2e2e2;
    /*For Old WebKit*/
    background: -webkit-gradient(
        linear, left top, left bottom,
        color-stop(0.00, #ffffff),
        color-stop(1.00, #e2e2e2)
    );
    /*For Modern Browser*/
    background: linear-gradient(
        to bottom,
        #ffffff 0%,
        #e2e2e2 100%
    );
}

input[type="checkbox"]:checked {
    /*Other Browser*/
    background: #99cc00;
    /*For Old WebKit*/
    background: -webkit-gradient(
        linear, left top, left bottom,
        color-stop(0.00, #99cc00),
        color-stop(1.00, #87b400)
    );
    /*For Modern Browser*/
    background: linear-gradient(
        to bottom,
        #99cc00 0%,
        #87b400 100%
    );
    border: 1px solid #336600;
}

input[type="checkbox"]:checked:before {
    position: absolute;
    left: 1px;
    top: 16px;
    display: block;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .5);
    content: "";
    width: 10px;
    height: 4px;
    background: #ffffff;
    -webkit-transform: rotate(45deg);
    -webkit-transform-origin: right center;
}

input[type="checkbox"]:checked:after {
    display: block;
    position: absolute;
    left: 9px;
    top: 16px;
    content: "";
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .5);
    width: 16px;
    height: 4px;
    background: #ffffff;
    -webkit-transform: rotate(-53deg);
    -webkit-transform-origin: left center;
}


.marker {
  background: linear-gradient(transparent 60%, #ff0 0%);
}

.marker2 {
  background: linear-gradient(transparent 60%, #f9c545 0%);
}

.box {
    background: none repeat scroll 0 0 #F3F3F3;
	padding:.5em;
    border-radius: 3px 3px 3px 3px;
    margin: 40px auto;
    width: 90%;
}

.box2 {
	color: #FFFFFF;/*フォントカラー白　.effect8と併用*/
    background: none repeat scroll 0 0 #F3F3F3;
	padding:.5em;
    border-radius: 3px 3px 3px 3px;
    margin: 40px auto;
    width: 90%;
}


    div.divwite
    {
    color:#666;
    padding:10px;
    background:#f8f8f8;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset,
    0 0 5px rgba(0, 0, 0, 0.3) inset,
    0 1px 2px rgba(0, 0, 0, 0.3);
    margin: 5px 0px;
	border-radius: 6px 6px 6px 6px;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
    }



.effect9 {
    background: none repeat scroll 0 0 #33bcff;
    text-shadow:0 1px 2px #666;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    position: relative;
}


.effect10 {
    background: none repeat scroll 0 0 #72a57f;
    text-shadow:0 1px 2px #666;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    position: relative;
}

