/* ======================================== */
/* Common
/* ======================================== */

* {
	box-sizing: border-box;
	}

html {
    font-size: 62.5%;
	}

body {
	font-family: "Gotham", Arial, Helvetica, Sans-serif;
	font-weight: 300;
	font-size: 1.4rem;
	line-height: 1.2;
	color: black;
	background: white;
	}
p, h1, h2, h3, h4, h5, h6, li, label {
	font-size: 1.4rem;
	line-height: 1.5;
	color: black;
	}
h1, h2, h3, h4, h5, h6 {
	line-height: 1.2;
	}

strong {
	font-weight: 500;
	}
em {
	font-style: italic;
	}
u {
	text-decoration: underline;
	}

a {
	text-decoration: none;
	color: black;
	}
p > a,
li > a {
	text-decoration: underline;
	}

ul li {
	position: relative;
	padding-left: 45px;
	}
ul li::before {
	content: "•";
	position: absolute;
	top: 0;
	left: 30px;
	color: inherit;
	}
ol {
	counter-reset: step;
	}
ol li {
	position: relative;
	padding-left: 45px;
	counter-increment: step;
	}
ol li::before {
	content: counter(step)".";
	position: absolute;
	top: 0.25em;
	left: 30px;
	font-size: 0.75em;
	color: inherit;
	}

nav ul,
nav ul li {
	padding-left: 0;
	}
nav ul li::before {
	content: none;
	}

blockquote {
	padding-left: 30px;
	border-left: solid 3px #e5e5e5;
	}
blockquote p {
	font-style: italic;
	font-size: 2.4rem;
	color: #cccccc;
	}

h1 {
	font-family: "KeplerStd-Regular";
	font-size: 4.8rem;
	line-height: 1.2;
	color: black;
	}
h2 {
	font-family: "KeplerStd-Regular";
	font-size: 4.8rem;
	line-height: 1.2;
	color: black;
	}
h3 {
	font-family: "Gotham";
	font-weight: 500;
	font-size: 2.4rem;
	color: black;
	}
h4 {
	font-family: "Gotham";
	font-weight: 500;
	font-size: 1.8rem;
	color: black;
	}

/***/

table {
	width: 100%;
	}
table tr:first-child {
	border-top: solid 1px #cbcbcb;
	}
table tr {
	border-bottom: solid 1px #cbcbcb;
	}
table tr th,
table tr td {
	padding: 15px;
	vertical-align: middle;
	}

/***/

label {
	display: block;
	}
button {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	}
/* ======================================== */
/* Main
/* ======================================== */

.section_main {
	margin: 0 auto;
	}

@media screen and (max-width: 767px) {
	
	main{
		padding-top:82px;
	}
	
	}