/*------------------------------------------------------------------------------------

  reset

------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p,
	blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn,
	em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var,
	b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
	table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas,
	details, embed, figure, figcaption, footer, header, hgroup, menu, nav,
	output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup,
	menu, nav, section {
	display: block;
}

ol, ul {
	list-style: none;
}

table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}

a {
	text-decoration: none;
}

/*------------------------------------------------------------------------------------

  base

------------------------------------------------------------------------------------*/
*, *:before, *:after {
	box-sizing: inherit;
}

html {
	height: 100%;
	box-sizing: border-box;
}

body {
	height: 100%;
	line-height: 1.6;
	background-image: url(../img/bg.png);
	word-break: break-all;
	word-wrap: break-word;
	-webkit-text-size-adjust: 100%;
}

body, table, input, textarea, select, option {
	color: #444;
	font-family: "Helvetica Neue", "Hiragino Kaku Gothic ProN", Meiryo,
		Arial, sans-serif;
	font-size: 14px;
}

input, textarea, select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid #aaa;
	border-radius: 0;
}

input:-ms-input-placeholder, input:-moz-input-placeholder, input:-webkit-input-placeholder,
	textarea:-ms-input-placeholder, textarea:-moz-input-placeholder,
	textarea:-webkit-input-placeholder {
	color: #aaa;
}

button:focus {
	outline: none;
}

a {
	color: #2aacf3;
}

a:hover {
	color: #69c5f7;
}

/*------------------------------------------------------------------------------------
  wrapper
------------------------------------------------------------------------------------*/
.container {
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.16);
	background-color: #fff;
}

.container:last-of-type {
	margin-bottom: 0;
}

.title_sub {
	color: #2aacf3;
	font-size: 16px;
	padding-bottom: .5em;
}

.text_area p {
	margin-bottom: 10px;
}

/*------------------------------------------------------------------------------------
  tab
------------------------------------------------------------------------------------*/
.tab_area {
	margin-bottom: 32px;
	border-bottom: 1px solid #ccc;
}

.tab_area ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}

.tab_area ul li {
	width: 33%;
	margin-right: 16px;
}

.tab_area ul li:last-child {
	margin-right: 0;
}

.tab_area ul li a, .tab_area ul li>div {
	display: block;
	cursor: pointer;
	padding: 16px 16px 14px;
	background-color: #f5f5f5;
	color: #666;
	text-align: center;
	transition: all .17s ease-in;
}

.tab_area ul li a:hover, .tab_area ul li>div:hover {
	color: #999;
}

.tab_area ul li.active a, .tab_area ul li.active>div {
	position: relative;
	z-index: 1;
	border-right: 1px solid #ccc;
	border-left: 1px solid #ccc;
	background-color: #fff;
	color: #2aacf3;
}

.tab_area ul li.active a:before, .tab_area ul li.active>div:before {
	position: absolute;
	top: 0;
	left: -1px;
	width: 100%;
	height: 4px;
	box-sizing: content-box;
	border-right: 1px solid #2aacf3;
	border-left: 1px solid #2aacf3;
	background-color: #2aacf3;
	content: "";
	transition: all .17s ease-in;
}

.tab_area ul li.active a:hover:before, .tab_area ul li.active>div:hover:before
	{
	background-color: #69c5f7;
}

.tab_area ul li.active a:after, .tab_area ul li.active>div:after {
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 100%;
	height: 1px;
	background-color: #fff;
	content: "";
}

.tab_area ul li.active a:hover, .tab_area ul li.active>div:hover {
	color: #69c5f7;
}

/*------------------------------------------------------------------------------------
  faq
------------------------------------------------------------------------------------*/
.faq_contain {
	letter-spacing: .1rem;
}

.faq_content {
	width: 100%;
	position: relative;
	padding-top: 20px;
	background: url("../img/border_dot.png") left bottom repeat-x;
	-webkit-background-size: auto 1px;
	background-size: auto 1px;
}

.faq_content:first-of-type {
	padding-top: 0;
}

.faq_content:last-of-type {
	background: none;
}

.faq_box-wrap-q {
	padding-bottom: 5px;
}

.faq_box-wrap-a {
	padding-bottom: 20px;
}

.faq_number {
	display: table-cell;
	width: 1em;
	line-height: 1.5;
	font-family: "Helvetica neue", Arial;
	font-size: 26px;
	font-weight: bold;
	text-align: center;
}

.faq_text-wrap {
	display: table-cell;
	padding-left: 14px;
	vertical-align: middle;
}

.faq_a-text {
	padding-top: 4px;
	line-height: 1.8;
}

.faq_answer-color {
	color: #2aacf3;
}

/*------------------------------------------------------------------------------------
  button
------------------------------------------------------------------------------------*/
.btn_blue {
	display: inline-block;
	cursor: pointer;
	background-color: #2aacf3;
	border: 0;
	color: #fff;
	text-align: center;
	transition: background-color .17s ease-in;
}

.btn_blue:hover {
	background-color: #55bdf5;
	color: #fff;
}

.btn_blue_ol {
	display: inline-block;
	cursor: pointer;
	border: 1px solid #2aacf3;
	background-color: #fff;
	color: #2aacf3;
	text-align: center;
	transition: all .17s ease-in;
}

.btn_blue_ol.next {
	position: relative;
}

.btn_blue_ol.next:before {
	position: absolute;
	top: 50%;
	width: 8px;
	height: 8px;
	margin-top: -3px;
	border-top: 2px solid #2aacf3;
	border-right: 2px solid #2aacf3;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	content: "";
	transition: border-color .17s ease-in;
}

.btn_blue_ol.prev {
	position: relative;
}

.btn_blue_ol.prev:before {
	position: absolute;
	top: 50%;
	width: 8px;
	height: 8px;
	margin-top: -3px;
	border-top: 2px solid #2aacf3;
	border-right: 2px solid #2aacf3;
	-ms-transform: rotate(225deg);
	-webkit-transform: rotate(225deg);
	transform: rotate(225deg);
	content: "";
	transition: border-color .17s ease-in;
}

.btn_blue_ol:hover {
	border-color: #69c5f7;
	color: #69c5f7;
}

.btn_blue_ol:hover:before {
	border-color: #69c5f7;
}

.btn_white_ol {
	display: inline-block;
	cursor: pointer;
	border: 1px solid #fff;
	background-color: transparent;
	color: #fff;
	text-align: center;
	transition: opacity .17s ease-in;
}

.btn_white_ol:hover {
	opacity: .8;
}

.text_link a {
	position: relative;
	display: inline-block;
	padding-right: 16px;
}

.text_link a:before {
	content: " ";
	position: absolute;
	right: 0;
	top: 50%;
	width: 6px;
	height: 11px;
	margin-top: -5px;
	display: block;
	background: url(../img/arrow_text-link.png) center center no-repeat;
	-webkit-background-size: 6px 11px;
	background-size: 6px 11px;
}

.text_link a:hover:before {
	opacity: .6;
}

/*------------------------------------------------------------------------------------
  contact
------------------------------------------------------------------------------------*/
.contact-block {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	letter-spacing: .1rem;
}

.contact-block label {
	display: block;
}

.contact-block input {
	margin: 0;
	-moz-appearance: none;
	-webkit-appearance: none;
	border: 1px solid #a9a9a9;
}

.contact-input_text {
	width: 100%;
	border: 1px solid #a9a9a9;
	padding: 8px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.contact-input_text:placeholder-shown {
	color: #aaaaaa;
	line-height: 1;
}

.contact-input_text::-webkit-input-placeholder {
	color: #aaaaaa;
	line-height: 1;
}

.contact-input_text:-moz-placeholder {
	opacity: 1;
	color: #aaaaaa;
	line-height: 1;
}

.contact-input_text::-moz-placeholder {
	opacity: 1;
	color: #aaaaaa;
	line-height: 1;
}

.contact-input_text:-ms-input-placeholder {
	color: #aaaaaa;
	line-height: 1;
}

.contact-input_text.error {
	background-color: #fff1f1;
	border-color: #f77474;
}

.contact-input_textarea {
	min-height: 8em;
	resize: vertical;
}

.contact-input_textarea.error {
	background-color: #fff1f1;
	border-color: #f77474;
}

.contact_block {
	display: table;
	width: 100%;
	margin-bottom: 24px;
}

.contact_block:last-of-type {
	margin-bottom: 48px;
}

.contact_block dt {
	display: table-cell;
	width: 145px;
	line-height: 1;
	padding: 9px 24px 0 0;
	text-align: right;
	vertical-align: top;
}

.contact_block dd {
	width: 100%;
}

.contact_block.confirm dt {
	line-height: inherit;
	padding-top: 0;
}

.indicator {
	margin-bottom: 48px;
}

.indicator ul {
	display: table;
	table-layout: fixed;
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
}

.indicator ul li {
	display: table-cell;
	position: relative;
	color: #aaa;
	font-weight: bold;
	text-align: center;
}

.indicator ul li:before, .indicator ul li:after {
	position: absolute;
	content: "";
}

.indicator ul li:before {
	bottom: -10px;
	left: 50%;
	width: 100%;
	height: 4px;
	background-color: #2aacf3;
}

.indicator ul li:last-child:before {
	display: none;
}

.indicator ul li:after {
	bottom: -16px;
	left: 50%;
	width: 16px;
	height: 16px;
	margin-left: -8px;
	border-radius: 50%;
	background-color: #2aacf3;
}

.indicator ul li.current {
	color: #444;
}

.indicator ul li.current:before {
	background-color: #ddd;
}

.indicator ul li.current ~ li:before, .indicator ul li.current ~ li:after
	{
	background-color: #ddd;
}

.indicator ul li.current:after {
	background-color: #2aacf3;
}

.alert_msg {
	margin-bottom: 32px;
	padding: 12px 16px;
	background-color: #fff1f1;
	color: #f77474;
	text-align: center;
}

.alert_msg p {
	display: inline-block;
	text-align: left;
}

.error_txt {
	margin-top: 4px;
	color: #f77474;
	font-size: 13px;
}

.contact_done_txt {
	margin-bottom: 40px;
}

.contact_done_txt strong {
	display: block;
	margin-bottom: 24px;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}

/*------------------------------------------------------------------------------------
  footer
------------------------------------------------------------------------------------*/
.universal_footer {
	display: table;
	width: 100%;
}

.universal_footer p {
	display: table-cell;
	padding-right: 24px;
	white-space: nowrap;
}

.universal_footer p a {
	position: relative;
	color: #fff;
}

.universal_footer p a:before {
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #fff;
	content: "";
}

.universal_footer small {
	display: table-cell;
	width: 100%;
	color: #fff;
	letter-spacing: .05em;
	text-align: right;
}

body {
	-webkit-background-size: 392px auto;
	background-size: 392px auto;
}

/*------------------------------------------------------------------------------------
header
------------------------------------------------------------------------------------*/
.universal_header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 44px;
	background-color: #555;
	z-index: 101;
}

.header_inner {
	display: table;
	position: relative;
	width: 100%;
	height: 44px;
	padding-right: 16px;
}

.header_inner:before, .header_inner:after {
	display: table;
	content: "";
}

.header_inner:after {
	clear: both;
}

.header_inner h1 {
	display: table-cell;
	vertical-align: middle;
	height: 44px;
	text-align: center;
}

.header_inner h1 img {
	width: auto;
	height: 26px;
	vertical-align: middle;
}

.header_inner nav {
	display: none;
	position: absolute;
	top: 44px;
	left: 0;
	width: 100%;
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.12);
	border-top: 1px solid #2d2d2d;
	background-color: #404040;
}

.header_inner nav ul {
	display: block;
	overflow: hidden;
	float: none;
	text-align: left;
}

.header_inner nav ul li {
	display: block;
	width: 50%;
	float: left;
	position: relative;
	padding-left: 0;
	border-bottom: 1px solid #2d2d2d;
	border-right: 1px solid #2d2d2d;
	font-size: 14px;
	color: #fff;
	letter-spacing: .1em;
}

.header_inner nav ul li:first-child {
	width: 100%;
}

.header_inner nav ul li:last-child {
	border-bottom: 0;
}

.header_inner nav ul li a {
	display: block;
	padding: 12px 16px;
	color: #fff;
}

.header_inner .header_cta {
	display: table-cell;
	text-align: right;
	vertical-align: middle;
}

.header_inner .header_cta .btn_blue {
	white-space: nowrap;
}

.header_inner .header_cta .btn_blue:hover {
	color: #fff;
}

.header_inner .header_rightBtn {
	height: 25px;
	padding: 4px 10px;
	border-radius: 3px;
	font-size: 12px;
}

.humberger {
	display: block;
	float: left;
	width: 54px;
	height: 44px;
	padding: 15px 16px;
}

.humberger span {
	display: block;
	position: relative;
	width: 22px;
	height: 20px;
	border-top: 2px solid #fff;
	text-indent: -9999px;
	-webkit-transition: all .1s ease-in;
	transition: all .1s ease-in;
}

.humberger span:before, .humberger span:after {
	position: absolute;
	left: 0;
	right: 0;
	width: 22px;
	height: 2px;
	background-color: #fff;
	content: "";
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-webkit-transition: all .1s ease-in;
	transition: all .1s ease-in;
}

.humberger span:before {
	top: 5px;
}

.humberger span:after {
	top: 12px;
}

.humberger.open span {
	border-top: 0;
}

.humberger.open span:before {
	-webkit-transform: rotate(45deg) translate(0, 0);
	transform: rotate(45deg) translate(0, 0);
}

.humberger.open span:after {
	-webkit-transform: rotate(-45deg) translate(5px, -5px);
	transform: rotate(-45deg) translate(5px, -5px);
}

.overlay {
	display: none;
	opacity: 0;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 100%;
	background: #000;
}

/*------------------------------------------------------------------------------------
wrapper
------------------------------------------------------------------------------------*/
.wrapper {
	min-height: calc(100% - 140px);
	padding: 52px 8px 32px;
}

.container {
	margin-bottom: 16px;
	padding: 16px;
}

.container header.title {
	padding: 8px 0 24px;
}

.container header.title h1 {
	font-size: 18px;
	font-weight: bold;
	text-align: center;
}

.container header.title .container_title-subtext {
	display: none;
}

.container_parallel {
	display: block;
}

/*------------------------------------------------------------------------------------
tab
------------------------------------------------------------------------------------*/
.tab_area ul li {
	width: 50%;
	margin-right: 10px;
}

.tab_area ul li a {
	font-size: 13px;
	padding: 10px 14px 8px;
}

/*------------------------------------------------------------------------------------
definition_list
------------------------------------------------------------------------------------*/
.definition_list dl {
	padding-bottom: 20px;
}

.definition_list dl dt {
	font-weight: bold;
}

/*------------------------------------------------------------------------------------
figure_area
------------------------------------------------------------------------------------*/
.figure_area {
	background-color: #dbeef8;
	padding: 8px 8px 0 8px;
}

.figure_area-title {
	display: block;
	font-size: 20px;
	text-align: center;
	margin-bottom: 15px;
}

.fugure_area-box {
	text-align: center;
	padding-bottom: 8px;
}

.fugure_area-box img {
	display: block;
	margin: 0 auto;
	width: 210px;
	height: 180px;
}

.fugure_area-box img:first-of-type {
	padding-bottom: 12px;
}

.fugure_area-listbox {
	font-size: 12px;
}

.fugure_area-listbox:after {
	content: "";
	clear: both;
	display: block;
}

.fugure_area-listbox li {
	display: block;
	float: left;
	width: 49%;
	height: 50px;
	margin-bottom: 8px;
	padding: 8px;
	background: #fff;
}

.fugure_area-listbox li:nth-child(2n+1) {
	margin-right: 2%;
}

.fugure_area-listbox li p {
	display: table;
	vertical-align: middle;
	width: 100%;
	height: 100%;
}

.fugure_area-listbox li span {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
}

/*------------------------------------------------------------------------------------
button
------------------------------------------------------------------------------------*/
.btn_blue {
	padding: 8px 16px 6px;
	border-radius: 6px;
}

.btn_blue_ol {
	padding: 8px 16px 6px;
	border-radius: 6px;
}

.btn_blue_ol.next {
	padding-right: 28px;
	font-size: 13px;
}

.btn_blue_ol.next:before {
	right: 10px;
}

.btn_blue_ol.prev {
	padding-left: 28px;
	font-size: 13px;
}

.btn_blue_ol.prev:before {
	left: 10px;
}

button.lrg, a.lrg {
	width: 100%;
	height: 44px;
	font-size: 16px;
}

/*------------------------------------------------------------------------------------
list
------------------------------------------------------------------------------------*/
.cont_list {
	margin: 0 -16px;
}

.cont_list li {
	padding: 16px;
	border-bottom: 1px solid #e5e5e5;
}

.cont_list li:last-of-type {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0;
}

/*------------------------------------------------------------------------------------
tab_area
------------------------------------------------------------------------------------*/
.tab_area a span {
	display: block;
}

/*------------------------------------------------------------------------------------
contact
------------------------------------------------------------------------------------*/
.contact_block dt {
	display: block;
}

.contact_btn button, .contact_btn a {
	display: block;
}

.contact_btn button:first-child, .contact_btn a:first-child {
	margin-bottom: 24px;
}

/*------------------------------------------------------------------------------------
footer
------------------------------------------------------------------------------------*/
.page_top {
	height: 44px;
	line-height: 44px;
}

.page_top a {
	display: block;
	background-color: #2aacf3;
	color: #fff;
	text-align: center;
	transition: background-color .17s ease-in;
}

.page_top a:hover {
	background-color: #55bdf5;
}

.page_top a img {
	width: 29px;
	height: 10px;
	margin-right: 16px;
}

.universal_footer {
	display: block;
	height: 96px;
	line-height: 1;
	padding: 24px 16px;
	background-color: #555;
	font-size: 10px;
	text-align: center;
}

.universal_footer p {
	display: inline-block;
	padding: 0 12px;
}

.universal_footer small {
	display: block;
	margin-top: 24px;
	text-align: center;
}

/*------------------------------------------------------------------------------------
top
------------------------------------------------------------------------------------*/
.top_content-img {
	display: none;
}

.content_top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	min-height: calc(100% - 96px);
	overflow: hidden;
	padding: 108px 0 64px;
	text-align: center;
}

.content_top .container_parallel {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}

.content_top .btn_blue {
	width: 220px;
}

.top_content-text {
	text-align: center;
}

.top_content-text .top_logo {
	height: 47px;
	margin-bottom: 32px;
	background: url(../img/logo_black.png) center center no-repeat;
	-webkit-background-size: 242px auto;
	background-size: 242px auto;
	text-indent: -9999px;
}

.top_content-text p {
	margin-bottom: 50px;
	padding: 0 16px;
	text-align: left;
}

@media screen and (max-width: 376px) {
	.top_content-text p {
		display: inline-block;
	}
	.top_content-text p br {
		display: none;
	}
}
/*------------------------------------------------------------------------------------
start
------------------------------------------------------------------------------------*/
.content_start {
	text-align: center;
}

.content_start .container {
	padding: 24px;
}

.content_start .btn_blue {
	width: 220px;
	margin-bottom: 25px;
}

.content_start-title {
	font-size: 20px;
	padding-bottom: 50px;
}

.content_start-title span {
	color: #2aacf3;
}

.content_start-link {
	margin-bottom: 25px;
}

/*------------------------------------------------------------------------------------
abut
------------------------------------------------------------------------------------*/
.text_area-img.about-img {
	overflow: hidden;
}

.text_area-img.about-img img {
	display: block;
	width: 100%;
	max-width: 400px;
	height: auto;
	margin: 0 auto 24px;
}

.text_area-img.about-img img:last-child {
	margin-bottom: 0;
}

/*------------------------------------------------------------------------------------
merits
------------------------------------------------------------------------------------*/
.figure_merits {
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.06) inset;
	background-color: #dbeef8;
	padding: 32px 24px 24px;
}

.figure_merits h2 {
	line-height: 1;
	margin-bottom: 32px;
	font-size: 15px;
	font-weight: bold;
	text-align: center;
}

.figure_merits-box {
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.08);
	margin-bottom: 16px;
	padding: 48px 24px 8px 24px;
	background: #fff;
}

.figure_merits-box h3 {
	line-height: 1;
	margin-bottom: 32px;
	color: #2aacf3;
	font-size: 16px;
	text-align: center;
}

.figure_merits-box h3 span {
	position: relative;
	padding-left: 42px;
}

.figure_merits-box h3 span:before {
	position: absolute;
	top: 50%;
	left: 0;
	background-repeat: no-repeat;
	background-position: center center;
	content: "";
}

.figure_merits-box h3.ttl_merit01 span:before {
	width: 28px;
	height: 35px;
	margin-top: -19px;
	background-image: url(../img/icon_merit01.png);
	background-size: 28px auto;
}

.figure_merits-box h3.ttl_merit02 span:before {
	width: 30px;
	height: 30px;
	margin-top: -15px;
	background-image: url(../img/icon_merit02.png);
	background-size: 30px auto;
}

.figure_merits-box:last-of-type {
	margin-bottom: 0;
}

.figure_merits-listbox li {
	position: relative;
	margin-bottom: 12px;
	padding-left: 12px;
	font-size: 14px;
}

.figure_merits-listbox li:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 5px;
	margin-top: 7px;
	border-radius: 50%;
	background-color: #777;
	content: "";
}

/*------------------------------------------------------------------------------------
howto
------------------------------------------------------------------------------------*/
.flow_area {
	display: none;
}

.flow_area.active {
	display: block;
}

.flow_area ul li {
	position: relative;
	padding: 0 0 32px 56px;
}

.flow_area ul li:before {
	position: absolute;
	top: 0;
	left: 18px;
	width: 4px;
	height: 100%;
	background-color: #2aacf3;
	content: "";
}

.flow_area ul li:last-child:before {
	display: none;
}

.flow_area ul li span {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #2aacf3;
	text-align: center;
}

.flow_area ul li span img {
	width: 25px;
	height: auto;
	margin-top: 9px;
}

.flow_area ul li strong {
	line-height: 40px;
	color: #2aacf3;
	font-size: 18px;
	font-weight: bold;
}

/*------------------------------------------------------------------------------------
contact
------------------------------------------------------------------------------------*/
.contact_tel {
	margin-bottom: 24px;
	padding: 12px 16px 8px;
	background-color: #f5f5f5;
	font-size: 14px;
	text-align: center;
}

.contact_tel span {
	display: none;
}

.contact_tel a {
	font-size: 15px;
	letter-spacing: .05em;
}

.contact_block {
	display: block;
}

.contact_block dt {
	text-align: left;
	margin-bottom: 8px;
}

.contact_btn button {
	width: 230px;
}

/*------------------------------------------------------------------------------------
privacy
------------------------------------------------------------------------------------*/
.privacy h2 {
	margin: 24px 0 4px;
	font-size: 15px;
	font-weight: bold;
}

.privacy p {
	margin-bottom: 0;
}

.privacy .lead_txt {
	margin-bottom: 32px;
}

.privacy ol li {
	position: relative;
	padding-left: 1.8em;
}

.privacy ol span {
	position: absolute;
	left: -.6em;
}

/*# sourceMappingURL=sp.css.map */