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

* {
	padding: 0;
	margin: 0;
	
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
img.key{width:100%;}
/* clearfix（任意で） */
*:after { display:block; clear:both; }
/* はみ出し対策 */
body { width:100%; font-size:140%; line-height:2.0; }

header{
	border-top:5px solid #228b22;
	border-bottom:1px solid #888888;
	padding:20px;
}

/* gnav ********************************/
nav {
	width: 100%;
	margin: 0px auto;
	overflow: hidden;	
}

nav ul {
	list-style: none;
	overflow: hidden;
}

nav ul.bdr_top{border-top:20px solid #228b22;}

nav li a {
	color: #555;
	padding: 20px 10px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
		
	/*TRANSISTIONS*/
	-webkit-transition: background 0.5s ease;
	   -moz-transition: background 0.5s ease;
	     -o-transition: background 0.5s ease;
	    -ms-transition: background 0.5s ease;
	        transition: background 0.5s ease;
}

/*HOVER*/
nav li a:hover {
	background: #222;
}

/*SMALL*/
nav small {
	font: 100 20px/1 Helvetica, Verdana, Arial, sans-serif;
	text-transform: none;
	color: #aaa;
}

/*BORDER FIX*/
nav li:last-child a {
	border: none;
}
.menu li{
  float: left;
  border-right: 1px solid #888888;
  border-bottom: 1px solid #888888;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  width: 50%;

  /* この記述！ */
  box-sizing : border-box;

}

section{width:100%;}
div.box{
	margin:100px auto;
	padding:0 5%;
}
div.box h2{
	margin-bottom:40px;
}
div.box p{
	padding:0 5%;
}
div.box ul li span.date{padding-right:20%;}

footer{background-color:#228b22; color:#ffffff; text-align:center; font-size:80%; padding:20px 0;}

/* button ********************************/
.button {
	position: relative;
	background-color: #04da04;
	border-radius: 6px;
	font-size: 200%;
	color: #fff;
	line-height: 112px;
	text-align: center;
	text-decoration:none;
	-webkit-transition: none;
	transition: none;
	box-shadow: 0 5px 0 #228b22;
	margin-top:30px;
}
.button:hover {
	top: -4px;
	box-shadow: 0 9px 0 #228b22;
}
.button:active {
	top: 3px;
	box-shadow: none;
}

/* table ********************************/
section table   { width: 100%; }
section th, section td  {
	padding: 15px 20px;
	background: #eeeeee;
	width: 100%;
    display: block;
    border-top: none;
	text-align: left;
}
section th  { background: #228b22; color:#ffffff; }

/* Google MAP ********************************/
.ggmap {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;
}
 
.ggmap iframe,
.ggmap object,
.ggmap embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

/* Form ********************************/
input,textarea{
	width:100%;
	height:100px;
	font-size:36px;
	padding-left:30px;
	margin-bottom:20px;
}
input[type="checkbox"] {
	display: inline-block;
    border: 1px solid #aaaaaa;
    vertical-align: -30px;
    -webkit-appearance: none;
    position: relative;
    margin-right: 5px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-sizing: border-box;
    width: 40px;
    height: 40px;
    /*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;
}
label.radiolabel {display:inline-block; width:24%; height:40px; font-size:30px; line-height:35px;}
textarea{
	width:100%;
	height:80%;
}

 

.fl_l{float:left;}
.mg_r30{margin-right:30px;}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/*.clearfix { display: inline-table; }*/