@charset "UTF-8";

/*************************************************************
パーパスジャパン
[css/default.css]
17.12.19
**************************************************************/

/* 目次
-------------------------------------------------------------
1) reset css
2) text-align
3) float, clear
4) fonts
5) background
6) section, aside
7) section h2
8) .btn
9) .image
10) padding
-------------------------------------------------------------*/



/* 1) reset css
-------------------------------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
body {
    line-height:1;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
	display:block;
}
address, button, caption, cite, code, dfn, em, input, optgroup, option, select, textarea, th, var {
	font-weight: normal;
	font-style: normal;
}
nav ul, ul li, ol li {
    list-style: none;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
	text-decoration: none;
	color: #3a65ae;
}
mark {
    background-color:#fff;
    font-weight:bold;
}
table {
    border-collapse:collapse;
    border-spacing:0;
}
table, th, td {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid rgba(0,0,0,0.1);
    margin:0;
    padding:0;
}
img {
	max-width: 100%;
	height: auto;
	border: 0;
	vertical-align: bottom;
}
html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
}
body {
	position: relative;
	font-size: 14px;
	line-height: 1.6;
	font-family: Helvetica, ArialMT, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "TT-UDShinMGo-F-Droid-Regular", メイリオ, sans-serif;
	word-wrap: break-word;
	color: #000;
}

/* 2) text-align
-------------------------------------------------------------*/
.acenter { text-align: center; }
.aleft { text-align: left; }
.aright { text-align: right; }
.ajustify { text-align: justify; }

/* 3) float, clear
-------------------------------------------------------------*/
.fleft { float: left; }
.fright { float: right; }
.clear { clear: both; }
.clearfix:after {
	display: block;
	clear: both;
	content: "";
}

/* 4) fonts
-------------------------------------------------------------*/
.normal { font-weight: normal; }
.bold { font-weight: bold; }
.orange { color: #e46a38; }

/* 5) background
-------------------------------------------------------------*/
.bg_gray { background-color: #eee; }

/* 6) section, aside
-------------------------------------------------------------*/
section, aside {
	padding: 25px 20px;
}

/*  7) section h2
-------------------------------------------------------------*/
section h2.tl {
	font-size: 21px;
	line-height: 1;
	border-left: #3a65ae solid 5px;
	padding-left: 15px;
	margin-bottom: 15px;
}

/*  8) .btn
-------------------------------------------------------------*/
.btn a,
input.btn {
	display: block;
	width: 280px;
	max-width: 100%;
	margin: 0 auto;
}
/* カンタンお問い合わせ */
.btn_form a {
	display: block;
	width: 100%;
	max-width: 303px;
	margin: 0 auto;
}

/*  9) .image
-------------------------------------------------------------*/
.image {
	text-align: center;
}	
.image img {
	width: 350px;
	max-width: 100%;
}

/*  10) padding
-------------------------------------------------------------*/
.pbtm0 { padding-bottom: 0; }
.ptop0 { padding-top: 0; }
.ptop25 { padding-top: 25px !important; }