@charset "utf-8";
/* CSS Document */

@media only screen and (max-width: 640px) {
	
/* -------------画像をフレキシブル ------------- */
img {
	max-width: 100%;
	width:auto;
	height: auto;
	width: auto\9; /* ie8 */
	vertical-align:top;
/*	
	-ms-interpolation-mode: bicubic;
	image-rendering:optimizeSpeed; // Legal fallback
    image-rendering:-moz-crisp-edges; // Firefox
    image-rendering:-o-crisp-edges; // Opera
    image-rendering:-webkit-optimize-contrast; // Chrome, Safari
    image-rendering:crisp-edges; // CSS3 Proposed
    -ms-interpolation-mode:bicubic; // IE8+
	*/
}

figure { text-align:center;}

header {
	height: 60px;
	z-index: 2;
	background-color: #38944b;/*e09628;*/
/*	
	position: fixed;*/
	top: 0;
	right: 0;
	left: 0;
	
		/* starting point */
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
header h1 {
	color: #ffffff;
	text-align: center;
	padding-left: 0;
	display: block;
}
.burger {display: block;}


/*  Nav Drawer Layout  */
nav {position: relative;}

nav ul {
	height: auto;
	overflow-y: auto;
}
nav li {
	display: block;
	float: none;
}
nav li a {
	padding: 22px 25px;
	letter-spacing: 3px;
	font-size: 14px;
}
nav li a.logo {
	display: none;
}
nav li a.active {
	color: #fff;
	background-color: #141e23;
}
nav li a:hover {
	color: #fff;
	background-color: #19252c;
}
nav li:first-child a.active,
nav li:first-child a:hover 
{border-radius: 10px 0 0 0;}

.header-section {margin-top: 60px;}


/* NAVIGATION ANNIMATION */
nav {
	width: 93%;
	height: auto;
	position: fixed;
	left: 0;
	top: 0;
	margin: 0;
	background-color: #1d2d35;
	border-radius: 8px;
	
	/* starting point */
	opacity: .3;
	-webkit-transform: translate3d(5%,0,0)scale(.97);
	-moz-transform: translate3d(5%,0,0)scale(.97);
	transform: translate3d(5%,0,0)scale(.97);
}

/*Nav Expanding Open Effect*/
nav.open {
	opacity: 1;

	-webkit-transform: translate3d(0,0,0)scale(1);
	-webkit-animation: slideIn .35s ease-in-out;
	
	-moz-transform: translate3d(0,0,0)scale(1);
	-moz-animation: slideIn .35s ease-in-out;
	
	transform: translate3d(0,0,0)scale(1);
	animation: slideIn .35s ease-in-out;
}
@-webkit-keyframes slideIn {
	0%       {opacity: .3;
				-webkit-transform: translate3d(5%,0,0)scale(.97);}
	100%  {opacity: 1;
				-webkit-transform: translate3d(0,0,0)scale(1);}
}
@-moz-keyframes slideIn {
	0%      {opacity: .3;
				-moz-transform: translate3d(5%,0,0)scale(.97);}
	100%  {opacity: 1;
				-moz-transform: translate3d(0,0,0)scale(1);}
}
@keyframes slideIn {
	0%      {opacity: .3;
				transform: translate3d(5%,0,0)scale(.97);}
	100%  {opacity: 1;
				transform: translate3d(0,0,0)scale(1);}
}

/*Nav Shrinking Closed Effect*/
nav.close {
	opacity: .3;
	
	-webkit-transform: translate3d(5%,0,0)scale(.97);
	-webkit-animation: slideOut .3s ease-in-out;
	
	-moz-transform: translate3d(5%,0,0)scale(.97);
	-moz-animation: slideOut .3s ease-in-out;
	
	transform: translate3d(5%,0,0)scale(.97);
	animation: slideOut .3s ease-in-out;
}
@-webkit-keyframes slideOut {
	0%      {opacity: 1;
				-webkit-transform: translate3d(0,0,0)scale(1);}
	100%  {opacity: .3;
				-webkit-transform: translate3d(5%,0,0)scale(.97);}
}
@-moz-keyframes slideOut {
	0%      {opacity: 1;
				-moz-transform: translate3d(0,0,0)scale(1);}
	100%  {opacity: .3;
				-moz-transform: translate3d(5%,0,0)scale(.97);}
}
@keyframes slideOut {
	0%      {opacity: 1;
				transform: translate3d(0,0,0)scale(1);}
	100%  {opacity: .3;
				transform: translate3d(5%,0,0)scale(.97);}
}



/* CONTENT ANNIMATION */
.content {
	/* starting point */
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	z-index: 1;
}

/*Content Sliding Open Effect*/
header.open,
.content.open 
{   
	-webkit-transform: translate3d(240px,0,0);
	-webkit-animation: open .5s ease-in-out;
	
	-moz-transform: translate3d(240px,0,0);
	-moz-animation: open .5s ease-in-out;
	
	transform: translate3d(240px,0,0);
	animation: open .5s ease-in-out;
}
@-webkit-keyframes open {
	0%      {-webkit-transform: translate3d(0,0,0);}
	70%    {-webkit-transform: translate3d(260px,0,0);}
	100%  {-webkit-transform: translate3d(240px,0,0);}
}
@-moz-keyframes open {
	0%      {-moz-transform: translate3d(0,0,0);}
	70%    {-moz-transform: translate3d(260px,0,0);}
	100%  {-moz-transform: translate3d(240px,0,0);}
}
@keyframes open {
	0%      {transform: translate3d(0,0,0);}
	70%    {transform: translate3d(260px,0,0);}
	100%  {transform: translate3d(240px,0,0);}
}

/*Content Sliding Closed Effect*/
header.close,
.content.close 
{
	-webkit-transform: translate3d(0,0,0);
	-webkit-animation: close .3s ease-in-out;
	
	-moz-transform: translate3d(0,0,0);
	-moz-animation: close .3s ease-in-out;
	
	transform: translate3d(0,0,0);
	animation: close .3s ease-in-out;
}
@-webkit-keyframes close {
	0%      {-webkit-transform: translate3d(240px,0,0);}
	100%  {-webkit-transform: translate3d(0,0,0);}
}
@-moz-keyframes close {
	0%       {-moz-transform: translate3d(240px,0,0);}
	100%  {-moz-transform: translate3d(0,0,0);}
}
@keyframes close {
	0%       {transform: translate3d(240px,0,0);}
	100%  {transform: translate3d(0,0,0);}
}
.container { background-color:#ffffff;}
#main{ width:98%; margin:0 auto;}

.body-section { padding:2% background-color: #ffffff; }/*padding:70px 2% 2%;*/
.body-section .placefiller {font-size: 16px; margin:0; padding:2% 5%;}/*border: 1px dashed rgba(190, 196, 202, 0.5); */

.top { text-align:center; margin:10px 0 20px;}
.ins{  margin:0; padding:0;}
.ins p{ line-height:160%; font-size:18px; margin:0; padding:0; width:100%;}

/*
.body-section ul { font-size:14px; line-height:20px; }
.body-section li { width:98%; }
.body-section li img { margin-bottom:30px; }
.body-section li:last-child { width:98%; }
*/

.body-section li { margin-bottom:0.8em;}

.leftbox { 	width:100%; margin:0; padding:0;}
.leftbox img { margin-bottom:30px; }
.rightbox{ width:100%;}

.leftbox2{ width:100%; margin:0; padding:0;}
.rightbox2{ width:100%;}
.rightbox2 p { font-size:80%;}


.cbox{ width:98%;}
.cbox table{ width:100% !important; margin-left:0; padding-left:0;}
.cbox tr,td{ padding:0 10px 20px 0;}

.footer-section { padding:20px 10px 10px 10px; color:#fff; background-color:#00A73B; text-align: center;}
.footer-section .placefiller { height:20px; }

/*  AddStyle CSS  */
.body-section h2{ font-size:18px; margin:0 0 15px 0;}
.body-section h3{ font-size:16px;}

.terms{ width:100%; font-size:12px; }
.terms h4{font-weight:bold; font-size:13px;}
.terms ul{ margin-bottom:10px; font-weight:bold;}
.terms ol{ margin-bottom:10px;}
.terms ul li{font-weight:normal; margin-bottom:10px; line-height:1.3em;}
.terms ol li{font-weight:normal; list-style-type:decimal; margin-bottom:10px; line-height:1.3em;}

.help{ font-size:16px; margin-left:0px; width:90%;}

.hlbox{
	 float:left;
	 width:98%;
	 margin-bottom:15px;
	}
	
.hrbox{
	 float:rightt;
	 width:98%;
	 margin-bottom:15px;
	}


		
}

