@charset "UTF-8"; 
/* CSS Document */

/*
========================================================
Media Queriesで、ブラウザの横幅 960px, 480px を境に
違うCSSが適用されるようにしています。
========================================================
*/

/*
========================================================
デスクトップPCに適用するCSS
========================================================
*/

ul,ol{
	list-style-type: none;
	}
body{
	font-family: "メイリオ","Hiragino Kaku Gothic ProN", sans-serif; /* フォント指定 */
	background-color:#8AC539;
	-webkit-text-size-adjust: 100%;
	}

/* 見出し */
h1{
	margin:10px auto 5px 0;
	}
h2{
	font-size:26px;
	margin-bottom:10px;
	}
h2 br{
	display:none; /* PCでは改行しない */
	}
h3 {
	font-size:26px;
	margin-bottom:10px;
	}
h3 br{
	display:none; /* PCでは改行しない */
	}
h4 {
	font-size:20px;
	font-weight:bold;
	text-align:left;
	margin:50px auto 20px 65px;
	padding:;
	color:#008837;
	}

/* メインコンテンツ領域の最大横幅を確定・中央寄せ */
.wrapper{ 
	width:960px;
	margin:0 auto;
	}


/*
========================================================
ヘッダー
========================================================
*/

#header{
	width:100%;
	background-color:#fff;
	padding-bottom:10px;
	border-top: 6px solid #008837;
	box-shadow: 0 2px 2px 0 rgba(0,0,0,0.4);
	-webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.4);
	}

/*
========================================================
メインコンテンツ
========================================================
*/
#main{
	width:960px;
	background-color:#FFF;
	text-align:center;
	margin:40px auto 50px ;
	padding:50px 0 50px;
	border-radius: 20px;        /* CSS3草案 */  
	-webkit-border-radius: 20px;    /* Safari,Google Chrome用 */  
	}

/* インデックスの、各ページへのリンク */ 
.btn{
	text-align: center;
	letter-spacing: -.40em; /* 文字間を詰めて隙間を削除する */
	}
.btn li{
	display: inline-block;
	letter-spacing: normal; /* 文字間を通常に戻す */
	padding:50px 10px 0;
	}
.btn li p{
	padding:0 0 15px;
	}
.btn li a img{
	/* マウスオーバーの変化にアニメーション付与 */
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	/* サイズ変更前 */
	-webkit-transform: scale(1);
	transform: scale(1);
	}
.btn li a:hover img{
	/* マウスオーバーで半透明になる */
	opacity: 0.5;
	/* マウスオーバーで大きくなる */
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
	}

/* 利用規約 */
.kiyaku{
	margin:30px 65px 30px;
	padding:20px 40px;
	width:;
	font-size:12px;
	line-height:1.4;
	text-align:left;
	color:#828282;
	border: 1px solid #999;
	border-radius: 3px;  
	-webkit-border-radius: 3px;
	}
/* トップの利用規約（スタイル追加） */
.kiyaku_top{
	margin:25px 80px 20px;
	}


/* 各国のDLページ */
.dl-area{
	margin:0 auto 0 65px;
	overflow: hidden;
	zoom: 1;
	}
.img-area{
	float: left; 
	width: 200px;
	margin-right:40px;
	}
.txt-area{
	float: left; 
	width:auto ;
	text-align:left;
	line-height:1.3;
	}
.btn_dl{
	margin-top:10px;
	}
.btn_dl a{
	display:inline-block;
	position: relative; /* 子要素にabsoluteを使うので、親要素にこれを入れる */ 
	font-size:16px;
	font-weight:bold;
	color:#fff;
	text-decoration:none;
	text-align: center;
	background:#009844;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#009844), color-stop(50%,#009844), color-stop(51%,#007531), color-stop(100%,#007531)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #009844 0%,#009844 50%,#007531 51%,#007531 100%); /* Chrome10+,Safari5.1+ */
	background: linear-gradient(to bottom, #009844 0%,#009844 50%,#007531 51%,#007531 100%); /* W3C */
	margin:0 20px 0 0;
	padding:15px 40px 15px 50px;
	border-radius: 10px;  /* CSS3草案 */  
	-webkit-border-radius: 10px;  /* Safari,Google Chrome用 */  
	}
.btn_dl a:hover{
	background:#007531;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#007531), color-stop(50%,#007531), color-stop(51%,#009844), color-stop(100%,#009844)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #007531 0%,#007531 50%,#009844 51%,#009844 100%); /* Chrome10+,Safari5.1+ */
	background: linear-gradient(to bottom, #007531 0%,#007531 50%,#009844 51%,#009844 100%); /* W3C */
	}
/* ボタン左の三角マーク */
.btn_dl a:before{
	display: block;
	content: "";   /* これがないと表示されません */  
	position: absolute;
	top: 50%;
	left: 20px;
	width: 0;
	height: 0; 
	margin-top: -8px;  
	border: 8px solid transparent;   /* 左ボーダー以外は非表示 */  
	border-left: 8px solid #fff;    /* 左ボーダーで三角形を作る */  
	}
	
/* TJPのみ LINEストアリンク装飾 */
.l_store{
	font-size:22px;
	font-weight:bold;
	margin-top:-5px;
	}
.l_store a{
	color:#008837;
	position: relative; /* 子要素にabsoluteを使うので、親要素にこれを入れる */
	padding:2px 0 0 32px;
	text-decoration: none;
	}
.l_store a:hover{
	color:#8AC539;
	text-decoration: none;
	}
.l_store a:before{
	display: block; 
	content: "";   /* これがないと表示されません */  
	position: absolute; 
	top: 50%; 
	left: 0;
	width: 20px; 
	height: 20px;
	margin-top: -12px;
	border: 2px solid #008837;
	border-radius: 4px;  /* 丸を作る */
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	}
.l_store a:after{
	display: block; 
	content: ""; 
	position: absolute; 
	top: 50%; 
	left: 10px;
	width: 0;   /* 三角を作る */
	height: 0; 
	margin-top: -6px;  
	border: 6px solid transparent;
	border-left: 6px solid #008837; 
	}

/* スタンプ画像を個別に並べたエリア */
.stamp-area{
	margin:0 auto ;
	text-align: center;
	letter-spacing: -.40em; /* 文字間を詰めて隙間を削除する */
	line-height:4;
	width:820px;
	}
.stamp-area li{
	letter-spacing: normal; /* 文字間を通常に戻す */
	display: inline-block;
	width:164px;
	height:auto;
	}
.stamp-area li img{
	width:90%;
	height:auto;
	}	
	
/*
========================================================
フッター
========================================================
*/
#footer{
	width:100%;
	background-color:#000;
	text-align:center;
	padding:30px 0 30px;
	color:#fff;
	font-size:12px;
	}

/*
========================================================
TOPへ戻るボタン
========================================================
*/
.pagetop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 15px;
}
.pagetop a {
    display: block;
    background-color: #000;
    text-align: center;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    padding: 5px 10px;
	filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}
.pagetop a:hover {
    display: block;
    background-color: #b2d1fb;
    text-align: center;
    color: #fff;
    text-decoration: none;
    padding:5px 10px;
	filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}






/*
========================================================
タブレットや横幅960px以下のブラウザで適用するCSS
========================================================
*/
@media screen and ( max-width:960px )
{
	#main{
		width:95%;
		margin:30px auto 40px ;
		padding:50px 0 50px;
		}
	#main .img_top img{
		width:95%;
		}
	h2{
		font-size:22px;
		margin:10px auto 10px;
		width:95%;
		}
	h3 {
		font-size:18px;
		}
	h4 {
		margin:40px auto 10px 30px;
		}
	.wrapper{ 
		width:100%;
		margin:0 auto;
		}
	
	/* インデックスの、各ページへのリンク */ 
	.btn{
		width:90%;
		margin:0 auto;
		}
	.btn li{
		padding:20px 20px 0;
		}
	
	/* 各国のDLページ */
	.dl-area{
		margin:0 auto 0 30px;
		}
	.img-area{
		margin-right:20px;
		}
	.btn_dl{
		margin-top:0;
		}
	.btn_dl a{
		display:inline-block; 
		font-size:12px;
		width:;
		margin:10px 15px 0 0;
		padding:15px 25px 15px 35px;
		}
	/* ボタン左の三角マーク */
	.btn_dl a:before{
		top: 50%;
		left: 14px;
		width: 0;
		height: 0; 
		margin-top: -8px;  
		border: 8px solid transparent;   /* 左ボーダー以外は非表示 */  
		border-left: 8px solid #fff;    /* 左ボーダーで三角形を作る */  
		}
	.l_store{
		font-size:18px;
		}
	/* 利用規約 */
	.kiyaku{
		margin:30px 30px 30px;
		padding:20px 25px;
		}
		
	/* スタンプ画像を個別に並べたエリア */
	.stamp-area{
		margin:0 20px -40px;
		width:auto;
		}
	.stamp-area li{
		width:20%;
		}
	.stamp-area li img{
		width:;
		}
		
		
}
/* 閉じタグ忘れないように注意 */


/*
========================================================
スマホだけに適用するCSS
========================================================
*/

/* ウィンドウ幅が0〜480pxの場合に適用するCSS */
@media screen and ( max-width:480px )
{
	body{
		background-color:#fff;
		}
	h1{
		text-align:center;
		padding:10px auto 0;
		}
	h1 img{
		text-align:center;
		width:200px;
		height:auto;
		}
	h2{
		font-size:14px;
		margin:5px auto 10px;
		width:95%;
		}
	h2 br{
		display:inline; /* スマホだけ改行する */
		}
	h3{
		font-size:14px;
		margin:5px auto 10px;
		width:95% ;
		}
	h3 br{
		display:inline; /* スマホだけ改行する */
		}
	h4 {
		font-size:16px;
		text-align:center;
		margin:35px auto 10px;
		}
	#header{
		width:100%;
		background-color:#fff;
		padding-bottom:10px;
		border: none;
		border-bottom: 4px solid #008837;
		box-shadow: none;
		-webkit-box-shadow: 0 0 0 0;
		}
	#main{
		width:100%;
		background-color:#FFF;
		text-align:center;
		margin:0 auto ;
		padding:10px 0 40px;
		border-radius: 0;
		}

	/* インデックスの、各ページへのリンク */ 
	.btn{
		width:100%;
		}
	.btn li{
		width:200px;
		height:auto;
		padding:15px 5px 0;
		}
	.btn li img{
		width:100%;
		}
	.btn li p{
		padding:0 0 10px;
		}
	
	/* 利用規約 */
	.kiyaku{
		padding:20px 15px;
		margin:30px 15px 30px;
		}
	/* トップの利用規約（スタイル追加） */
	.kiyaku_top{
		margin:25px 20px 0;
		}
	
	/* 各国のDLページ */
	.dl-area{
		margin:0 auto 0;
		}
	.img-area{
		float: none;
		margin:20px auto 0;
		}
	.txt-area{
		float: none;
		text-align:center;
		}
	/* 国旗の位置調整 */
	.flag{
		margin:5px -80px 10px auto;
		}
	.flag-cn{
		margin:5px -15px 10px auto;
		}
	.btn_dl{
		width:auto;
		}
	.btn_dl a{
		display:block; 
		font-size:14px;
		width:70%;
		margin:10px auto 0 ;
		padding:12px 20px 12px 30px;
		}
	.l_store{
		margin-top:15px;
	}
	
	/* スタンプ画像を個別に並べたエリア */
	.stamp-area{
		margin:0 10px -30px;
		width:auto;
		}
	.stamp-area li{
		width:33%;
		}
	.stamp-area li img{
		width:90%;
		}

}