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

  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 {
	background-size: 560px auto;
}

/*------------------------------------------------------------------------------------
header
------------------------------------------------------------------------------------*/
.universal_header {
	height: 44px;
	padding: 0 24px;
	background-color: #555;
	white-space: nowrap;
}

.header_inner {
	display: table;
	width: 100%;
	max-width: 960px;
	height: 100%;
	margin: 0 auto;
}

.header_inner h1 {
	display: table-cell;
	vertical-align: middle;
}

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

.header_inner nav {
	display: table-cell;
	overflow: hidden;
	width: 100%;
	text-align: right;
	vertical-align: middle;
}

.header_inner nav ul {
	display: table;
	float: right;
}

.header_inner nav ul li {
	display: table-cell;
	font-size: 13px;
	vertical-align: middle;
}

.header_inner nav ul li a {
	display: block;
	line-height: 44px;
	padding: 0 16px;
	color: #fff;
	transition: background-color .17s ease-in;
}

.header_inner nav ul li span {
	position: relative;
}

.header_inner nav ul li a:hover, .header_inner nav ul li.current a {
	background-color: #6e6e6e;
}

.header_cta {
	display: table-cell;
	padding-left: 16px;
	text-align: right;
	vertical-align: middle;
}

.header_cta .btn_blue {
	height: 32px;
	line-height: 32px;
	padding: 0 16px;
	font-size: 13px;
	white-space: nowrap;
}

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

.humberger {
	display: none;
}

.company_name {
	height: 32px;
	line-height: 32px;
	padding: 0 24px;
}

.company_name dl {
	font-size: 13px;
	text-align: right;
}

.company_name dl dt {
	margin-right: 24px;
}

/*------------------------------------------------------------------------------------
wrapper
------------------------------------------------------------------------------------*/
.wrapper {
	min-height: calc(100% - 88px);
	padding: 24px 24px 48px;
}

.container {
	max-width: 960px;
	margin: 0 auto 24px;
	padding: 24px;
}

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

.container header.title h1 {
	font-size: 22px;
	font-weight: bold;
}

.container_parallel .container {
	display: inline-block;
	min-width: 420px;
	margin-bottom: 0;
}

.container_parallel .container:last-child {
	margin-left: 20px;
}

.text_area-imgbox {
	display: table;
}

.text_area-imgbox div:first-of-type {
	display: table-cell;
	vertical-align: top;
}

.text_area-img {
	display: inline-table;
	margin-left: 24px;
}

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

.definition_list dl {
	display: table-row-group;
}

.definition_list dl dt, .definition_list dl dd {
	display: table-cell;
	padding-bottom: 20px;
}

.definition_list dl dt {
	padding-right: 16px;
	font-weight: bold;
	white-space: nowrap;
	text-align: right;
}

.definition_list dl dd {
	width: 100%;
}

.definition_list dl dd a {
	pointer-events: none;
	color: #444;
}

/*------------------------------------------------------------------------------------
button
------------------------------------------------------------------------------------*/
.btn_wrap button {
	display: table-cell;
}

.btn_wrap button:first-child {
	margin-right: 12px;
	margin-bottom: 0;
}

.btn_wrap button:last-child {
	margin-left: 12px;
}

.btn_wrap button.lrg {
	width: 50%;
	height: 44px;
	font-size: 16px;
}

.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;
}

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

button.lrg, a.lrg {
	height: 44px;
	line-height: 44px;
	padding-top: 0;
	padding-bottom: 0;
	font-size: 16px;
}

/*------------------------------------------------------------------------------------
faq
------------------------------------------------------------------------------------*/
.faq_last-text {
	text-align: right;
}

/*------------------------------------------------------------------------------------
contact
------------------------------------------------------------------------------------*/
.contact_btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-direction: row-reverse;
	-webkit-flex-direction: row-reverse;
	flex-direction: row-reverse;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	margin-bottom: 24px;
}

.contact_btn button, .contact_btn a {
	width: 50%;
	max-width: 320px;
}

.contact_btn .btn_blue_ol {
	margin-right: 24px;
}

/*------------------------------------------------------------------------------------
footer
------------------------------------------------------------------------------------*/
.page_top {
	display: none;
}

.universal_footer {
	height: 44px;
	line-height: 44px;
	padding: 0 16px;
	background-color: #555;
	font-size: 10px;
}

/*------------------------------------------------------------------------------------
media queries tablet
------------------------------------------------------------------------------------*/
@media ( min-width : 768px) and (max-width: 900px) {
	.wrapper {
		min-height: calc(100% - 44px);
		padding: 68px 24px 32px;
	}
	.universal_header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 44px;
		padding: 0;
		background-color: #555;
		z-index: 101;
	}
	.header_inner {
		display: table;
		position: relative;
		width: 100%;
		height: 44px;
		padding-right: 24px;
	}
	.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 {
		display: inline-block;
		width: auto;
		height: 26px;
		vertical-align: middle;
	}
	.header_inner nav {
		display: none;
		position: absolute;
		top: 44px;
		left: 0;
		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: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;
		line-height: 25px;
		padding: 0 10px;
		border-radius: 3px;
		font-size: 12px;
	}
	.humberger {
		display: block;
		float: left;
		width: 54px;
		height: 44px;
		margin-left: 8px;
		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;
	}
}
/*------------------------------------------------------------------------------------
top
------------------------------------------------------------------------------------*/
.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;
	height: calc(100vh - 88px);
	overflow: hidden;
	padding-bottom: 0;
}

.content_top .container_parallel {
	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: start;
	-ms-flex-align: start;
	-webkit-align-items: flex-start;
	align-items: flex-start;
}

.content_top .btn_blue {
	width: 220px;
}

.top_content-img {
	padding-right: 85px;
}

.top_content-text {
	padding-top: 40px;
}

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

.top_content-text p {
	margin-bottom: 50px;
}

/*------------------------------------------------------------------------------------
start
------------------------------------------------------------------------------------*/
.content_start {
	display: table;
	margin: 0 auto;
	text-align: center;
}

.content_start .container_parallel {
	display: table-cell;
	vertical-align: middle;
}

.content_start .container {
	padding: 50px 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 img {
	display: block;
	width: 300px;
	height: auto;
	margin-bottom: 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 0 24px 0;
}

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

.figure_merits .outer {
	display: table;
	table-layout: fixed;
	border-spacing: 24px 0;
	width: 100%;
}

.figure_merits .inner {
	display: table-row-group;
}

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

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

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

.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: 38px;
	height: 48px;
	margin-top: -26px;
	background-image: url(../img/icon_merit01.png);
	background-size: 38px auto;
}

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

.figure_merits-listbox li {
	position: relative;
	margin-bottom: 24px;
	padding-left: 18px;
	font-size: 16px;
}

.figure_merits-listbox li:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 6px;
	height: 6px;
	margin-top: 8px;
	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 40px 66px;
}

.flow_area ul li:before {
	position: absolute;
	top: 0;
	left: 23px;
	width: 6px;
	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: 52px;
	height: 52px;
	border-radius: 50%;
	background-color: #2aacf3;
	text-align: center;
}

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

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

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

.contact_tel br {
	display: none;
}

.contact_tel a {
	pointer-events: none;
	color: #444;
	letter-spacing: .05em;
}

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

.privacy p {
	margin-bottom: 0;
}

.privacy p a.tel {
	pointer-events: none;
	color: #444;
}

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

.privacy ul li {
	position: relative;
	padding-left: 12px;
}

.privacy ul li:before {
	position: absolute;
	top: 7px;
	left: 0;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: #444;
	content: "";
}

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

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

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