@charset "utf-8";

*{
	box-sizing: border-box;
	font-size: 16px;
}

/*大きさの計算*/
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
_::-webkit-full-page-media,
_:future,
:root 



/*iOSフォーム要素の初期化*/
input, button, textarea, select {
	-webkit-appearance: none;
	appearance: none;
}

body {
	box-sizing: border-box;
	-webkit-text-size-adjust: 100%; /*スマホ横向き時のフォントサイズ*/
	text-size-adjust: 100%; /*スマホ横向き時のフォントサイズ*/
	-webkit-font-feature-settings: 'palt';/*文字詰め*/
	font-feature-settings: 'palt';/*文字詰め*/
}

body *{
  box-sizing: inherit; /* box-sizingの値は継承されないので明示的に設定 */
  width: 100%;
}

body{
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; 
	line-height: 2;
	color: #333;
	max-width: 100%;
	
}

.content{
	max-width: 750px;
	margin: 0 auto;
	background: white;
	
}

h1{
	font-size: 40px;
	padding: 30px;
	text-align: center;
	background: #ccc;
	color: #333;
}
h2{
	font-size: 24px;
	padding-left: 20px;
	border-left: 2px solid #464646;
}

h3{
	font-size: 18px;
}

.footer{
	background: #ccc;
	text-align: center;
}

.footer-inner {
	margin-left: auto;
	margin-right: auto;
	text-align: center;	
}

.footer a {
    color: black;
    font-size: 1rem;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
