html{

	    text-size-adjust:200%;
	}
	body{
	    font-size:1.6rem;/* 16px*/
	    line-height: 2;
	}
	h1 {
	    font-size: 36px;/* IE8以下とAndroid4.3以下用フォールバック */
	    font-size: calc(2.4rem + ((1vw - 0.64rem) * 2.1429));/* 24px~36pxで可変*/
	    line-height: 1.3;
	}
	h2 {
	    font-size: 24px;/* IE8以下とAndroid4.3以下用フォールバック */
	    font-size: calc(2rem + ((1vw - 0.64rem) * 0.7143));/* 20px~24pxで可変*/
	    line-height: 1.3;
	}
	table{
	    font-size:24px;/* 16px*/
	    line-height: 1.2;
	}
	@media (min-width: 1200px) {/* 1200px以上*/
	    h1 {
	        font-size: 3.6rem;/* 36px*/
	    }
	    h2 {
	        font-size: 2.4rem;/* 24px*/
	    }
	    table{
	    	font-size:3.6rem;/* 16px*/
	    	line-height: 2;
	    }
	}
	@media screen and (max-width: 640px) {/* 640px以下*/
	    body{
	    line-height: 2;
	    }
	    h1{
	        font-size: 2.4rem;/* 24px*/
	    }
	    h2 {
	        font-size: 2rem;/* 20px*/
	    }
	    table{
	    	font-size:2.4rem;/* 16px*/
	    	line-height: 2;
	    }
	}

