@charset "utf-8";
/* CSS Document */

/* ------------------------------------------------------------------------ */

/*  Reset

/* ------------------------------------------------------------------------ */

html {
	overflow-y: scroll;
	height: 100%;
}

body {
	-webkit-text-size-adjust: 100%;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, p, blockquote {
	margin: 0;
	padding: 0;
}

fieldset {
	display: inline;
}

address, caption, cite, code, dfn, em, strong, th, var {
	font-style: normal;
}

body
/**/

table {
	font-size: 12px;
	line-height: 1.5;
}

q:before, q:after {
	content: '';
}

object, embed {
	vertical-align: top;
}

hr, legend {
	display: none;
}

h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
}

img, abbr, acronym, fieldset {
	border: 0;
}

li {
	list-style-type: none;
}

/* ------------------------------------------------------------------------ */

/*  Basic Style

/* ------------------------------------------------------------------------ */

html {
	font-size: 62.5%;
}

body {
	font-family: "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, MS PGothic, arial, sans-serif;
	font-size: 1.6rem;
	font-size: 16px;
	line-height: 1.5;
	height: 100%;
	margin: 0;
	padding: 0;
	text-align: center;
	vertical-align: middle;
	color: #444;
	-webkit-text-size-adjust: 100%;
}

body *, body *:before, body *:after {
	box-sizing: border-box;
	overflow-wrap: break-word;
	word-wrap: break-word;
}

#wrap {
	margin: 0 auto;
	text-align: left;
	overflow: hidden;
	position: relative;
	/* height: 100%; */
}

/* Responsive Style
--------------------------------------------------------------------------- */

.pc_style {
	display: block;
}

.sp_style {
	display: none;
}

.tab_style {
	display: none;
}



@media screen and (max-width: 768px) {
	.tab_style {
		display: block;
	}

}

@media screen and (max-width: 767px) {
	.sp_style {
		display: block;
	}
	.pc_style {
		display: none;
	}
}

/* Link
--------------------------------------------------------------------------- */

a {
	text-decoration: none;
	color: #333;
}


/* Other

/* ------------------------------------------------------------------------ */

.inner {
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
}

/* ------------------------------------------------------------------------ */

/* Contents

/* ------------------------------------------------------------------------ */

#mainBlock {
	height: 100%;
}

#contentsBlock {
	padding: 50px 0;
	height: 100%;
}

@media screen and (max-width: 425px) {
#contentsBlock {
	padding: 30px 0;
}
}
/* ヘッダー
--------------------------------------------------------------------------- */

header{
	height: 65px;
	line-height: 65px;
	border-bottom: 5px solid #00A29E;
}

header .inner img{
	padding: 20px 10px;
}

header .inner span{
	font-size: 25px;
	font-weight: bold;
	margin-left: 10px;
	line-height: 85px;
}


@media screen and (max-width: 425px) {

header{
	height: auto;
	line-height: auto;
}

header .inner img{
}

header .inner span{
	display: block;
	width: 100%;
	text-align: center;
	font-weight: bold;
	line-height: 22px;
	margin-left: 0;
	margin-bottom: 10px;
}
}


/* テキストボックス
--------------------------------------------------------------------------- */

.input {
	width: 350px;
	height: 35px;
	font-size: 16px;
}


/* ボタン
--------------------------------------------------------------------------- */

.btnArea{
	margin-top: 30px;
	text-align: center;
	display: flex;
	justify-content: space-around;
}

.btnArea .btn {
	padding: 20px 0;
	background-color: #777;
	color: #fff;
	display: inline-block;
	min-width: 300px;
	margin: 0 2%;
	border-radius: 3px;		/* CSS3 */
	-webkit-border-radius: 3px;	/* Safari,Google Chrome用 */
	-moz-border-radius: 3px;	/* Firefox用 */
}

.btn:hover {
	background-color: #999;
}


@media screen and (max-width: 480px) {

.btnArea{
	margin-top: 30px;
	text-align: center;
	display: block;
}

.btnArea .btn {
	width: 90%;
	margin-bottom: 10px;
	padding: 4% 0;
	min-width: auto;

}

}

/* ページタイトル
--------------------------------------------------------------------------- */

#pageTitle{
	border-bottom: 2px solid #C00;
	width: 100%;
	font-size: 28px;
	margin-bottom: 20px;
	font-weight: bold;
}

#pageTitle span{
	margin-left:20px;
	margin-right:20px;
}

@media screen and (max-width: 485px) {
#pageTitle span{
	margin-left:10px;
	margin-right: 0;
}
}

@media screen and (max-width: 425px) {
#pageTitle{
	text-align: center;
}

#pageTitle span{
	margin: 0;
}

}

