@charset "utf-8";

/* -----------------------------------------------------------------
LAYOUT CSS
LAST UPDATE:
--------------------------------------------------------------------*/

html {
	color: #333;
	font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	font-size: 62.5%;
	/*10px*/
	line-height: 1.4;
	word-wrap: break-word;
	-webkit-text-size-adjust: 100%;
}

body {
	font-size: 1.0rem;
	min-width: 1020px;
}

input,
textarea,
select {
	font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	-webkit-appearance: none;
}

/*================================
LINk
=================================*/

body a {
	color: #0087ca;
	text-decoration: none;
}

body a:hover {
	color: #0087ca;
	text-decoration: underline;
}

body a:focus {
	outline: none;
}

body a:hover img {
	opacity: 0.8;
}

/*================================
setting
=================================*/

.wrap {
	overflow: hidden;
	margin-bottom: -25px;
}

.area-in {
	width: 1020px;
	margin: 0 auto;
}

.area-in-l {
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	display: flex;
	justify-content: center;
}


.contents-main {
	width: 1020px;
	margin: 0 auto;
	padding: 30px 0 80px;
}

.contents-main .contents-main-in {
	width: 100%;
}

.sp-only {
	display: none !important;
}

@media screen and (max-width: 768px) {

	/* 768px以下用（タブレット／スマートフォン用）の記述 */
	body {
		min-width: inherit;
		width: 100%;
	}

	.wrap {
		overflow: auto;
		width: 100%;
		margin-bottom: -13px;
	}

	.area-in,
	.area-in-l {
		width: 100%;
	}

	.contents-main {
		width: 100%;
		padding: 15px 15px 30px;
	}

	.pc-only {
		display: none !important;
	}

	.sp-only {
		display: block !important;
	}
}

/*================================
header
=================================*/

header {
	overflow: hidden;
	width: 1020px;
	margin: 0 auto 15px;
}

header .logo {
	float: left;
}

header .area-header-link {
	float: right;
}

header .area-header-link .logout {
	float: left;
	margin: 10px 0 0 30px;
}

header .area-header-link .logout a {
	font-size: 1.2rem;
	color: #5a5a5a;
}

header .area-header-link ul {
	overflow: hidden;
	float: right;
	margin: 0 0 6px 20px;
}

header .area-header-link ul li {
	float: left;
	font-size: 1.4rem;
	color: #fff;
	padding: 6px 6px 6px 32px;
}

header .area-header-link ul li a {
	color: #fff;
}

header .area-header-link ul li:first-child {
	background: url(/member/common/img/ico_header_01.png)no-repeat 10px 50% #1eb9ee;
	padding: 6px 13px 6px 25px;
}

header .area-header-link ul li:first-child + * {
	margin-left: 6px;
	padding: 0;
}

header .area-header-link ul li:first-child + * a {
	display: block;
	background: url(/member/common/img/ico_header_02.png)no-repeat 14px 50% #1eb9ee;
	padding: 6px 14px 6px 40px;
}

header .area-header-link .time {
	clear: both;
	float: left;
	display: table;
	margin-left: 55px;
}

header .area-header-link .rest {
	float: left;
	display: table;
	margin-left: 6px;
}

header .area-header-link .time span,
header .area-header-link .rest span {
	display: table-cell;
	font-size: 1.2rem;
	background: #f3f3f3;
	color: #707070;
	padding: 6px 10px;
}

header .area-header-link .time span:first-child,
header .area-header-link .rest span:first-child {
	background: #c1c1c1;
	color: #fff;
}

header .sp-menu {
	display: none;
}

@media screen and (max-width: 768px) {

	/* 768px以下用（タブレット／スマートフォン用）の記述 */
	header {
		width: 100%;
		padding: 6px 15px 0;
		margin-bottom: 0;
		border-bottom: solid 2px #32bff0;
	}

	header .logo {
		width: 165px;
		margin: 8px 0 0 0;
	}

	header .logo img {
		width: 100%;
		height: auto;
	}

	header .area-header-link {
		display: none;
	}

	header .sp-menu {
		float: right;
		display: block;
		margin: -8px -15px 0 0;
		width: 57px;
		height: 55px;
		text-indent: -9999px;
		overflow: hidden;
		background: url(/member/common/img/btn_spmenu_01.png)no-repeat;
		background-size: 57px 55px;
	}

	header .sp-menu:hover {
		cursor: pointer;
	}

	header .sp-menu.is-current {
		background: url(/member/common/img/btn_spmenu_01_cr.png)no-repeat;
		background-size: 57px 55px;
	}
}

/*================================
breadcrumb
=================================*/

.area-bread-crumb {
	position: relative;
	z-index: 1;
}

.area-bread-crumb ul {
	width: 1020px;
	margin: 0 auto;
	overflow: hidden;
	padding: 13px 0;
}

.area-bread-crumb ul li {
	float: left;
	padding: 0 12px 0 14px;
	background: url(/member/common/img/ico_breadcrumb_arrow.png)no-repeat left center;
	color: #8b8b8b;
	font-size: 1.2rem;
}

.area-bread-crumb ul li:first-child {
	padding-left: 0;
	background: none;
}

.area-bread-crumb ul li a {
	color: #8b8b8b;
}

.area-bread-crumb ul li a img {
	vertical-align: middle;
}

@media screen and (max-width: 768px) {

	/* 768px以下用（タブレット／スマートフォン用）の記述 */
	.area-bread-crumb {
		display: none;
	}
}

/*================================
main-visual
=================================*/

.area-mainvisual {
	min-height: 180px;
	background: #f4f4f1;
	margin-top: -42px;
}

.area-mainvisual .mainvisual-in {
	width: 1020px;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}

.area-mainvisual .mainvisual-in h2 {
	font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝体", "Yu Mincho", YuMincho, serif;
	position: relative;
	z-index: 1;
	font-size: 2.6rem;
	color: #fc7397;
	padding: 72px 0;
}

.area-mainvisual .mainvisual-in .mainvisual-img {
	position: absolute;
	right: -20px;
	top: 0;
}

@media screen and (max-width: 768px) {

	/* 768px以下用（タブレット／スマートフォン用）の記述 */
	.area-mainvisual {
		width: 100%;
		min-height: 75px;
		margin-top: 0;
	}

	.area-mainvisual .mainvisual-in {
		width: 100%;
		display: table;
	}

	.area-mainvisual .mainvisual-in h2 {
		font-size: 1.6rem;
		padding: 0 20px;
		display: table-cell;
		vertical-align: middle;
		height: 75px;
	}

	.area-mainvisual .mainvisual-in .mainvisual-img {
		opacity: 0.5;
		height: 75px;
		text-align: right;
	}

	.area-mainvisual .mainvisual-in .mainvisual-img img {
		width: auto;
		height: 100%;
	}
}

/*================================
nav
=================================*/

nav {
	width: 1020px;
	margin: 0 auto;
}

nav ul {
	overflow: hidden;
}

nav ul li {
	display: none;
}

nav ul li:nth-child(3),
nav ul li:nth-child(4),
nav ul li:nth-child(5) {
	position: relative;
	float: left;
	width: 339px;
	display: block;
	margin-left: 1px;
}

nav ul li:nth-child(3) {
	margin-left: 0;
}

nav ul li:nth-child(3):after,
nav ul li:nth-child(4):after,
nav ul li:nth-child(5):after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -13px;
	width: 0;
	height: 27px;
	border-right: dotted 1px #a5a5a5;
}

nav ul li:nth-child(3):before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -13px;
	width: 0;
	height: 27px;
	border-right: dotted 1px #a5a5a5;
}

nav ul li a {
	font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝体", "Yu Mincho", YuMincho, serif;
	text-align: center;
	display: block;
	color: #1eb9ee;
	width: 100%;
	padding: 20px 0;
	border-bottom: solid 3px #1eb9ee;
}

nav ul li a span {
	display: inline-block;
	font-size: 1.6rem;
	font-weight: bold;
}

nav ul li a:hover,
nav ul li a.is-current {
	color: #fc7397;
	border-bottom: solid 6px #fc7397;
	padding: 20px 0 17px;
}

nav ul li:nth-child(3) a span,
nav ul li:nth-child(4) a span,
nav ul li:nth-child(5) a span {
	padding-left: 32px;
}

nav ul li:nth-child(3) a span {
	background: url(/member/common/img/ico_nav_01.png)no-repeat left center;
}

nav ul li:nth-child(4) a span {
	background: url(/member/common/img/ico_nav_02.png)no-repeat left center;
}

nav ul li:nth-child(5) a span {
	background: url(/member/common/img/ico_nav_03.png)no-repeat left center;
}

nav ul li:nth-child(3) a:hover span,
nav ul li:nth-child(3) a.is-current span {
	background: url(/member/common/img/ico_nav_01_on.png)no-repeat left center;
}

nav ul li:nth-child(4) a:hover span,
nav ul li:nth-child(4) a.is-current span {
	background: url(/member/common/img/ico_nav_02_on.png)no-repeat left center;
}

nav ul li:nth-child(5) a:hover span,
nav ul li:nth-child(5) a.is-current span {
	background: url(/member/common/img/ico_nav_03_on.png)no-repeat left center;
}

@media screen and (max-width: 768px) {

	/* 768px以下用（タブレット／スマートフォン用）の記述 */
	nav {
		display: none;
		background: rgba(43, 43, 43, 0.9);
		width: 100%;
		position: absolute;
		top: 55px;
		left: 0;
		z-index: 100;
	}

	nav ul li {
		display: block;
		float: none;
		padding: 0 16px;
	}

	nav ul li a {
		font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
		text-align: left;
		color: #fff;
		padding: 0;
		border-bottom: none;
	}

	nav ul li a:hover {
		color: #fff;
		border-bottom: none;
		text-decoration: none;
		padding: 0;
	}

	nav ul li a.is-current {
		color: #fc7397;
		border-bottom: none;
		padding: 0;
	}

	nav ul li:nth-child(3),
	nav ul li:nth-child(4),
	nav ul li:nth-child(5) {
		float: none;
		width: 100%;
		display: block;
		margin-left: 0;
	}

	nav ul li:nth-child(3):before,
	nav ul li:nth-child(3):after,
	nav ul li:nth-child(4):after,
	nav ul li:nth-child(5):after {
		content: none;
	}

	nav ul li a span,
	nav ul li:nth-child(3) a span,
	nav ul li:nth-child(4) a span,
	nav ul li:nth-child(5) a span,
	nav ul li:nth-child(3) a:hover span,
	nav ul li:nth-child(4) a:hover span,
	nav ul li:nth-child(5) a:hover span {
		font-weight: bold;
		font-size: 1.2rem;
		display: block;
		background: url(/member/common/img/ico_arrow_02.png)no-repeat 5px 50%;
		background-size: 4px 7px;
		padding: 15px 0 15px 18px;
		border-bottom: dotted 1px #ffffff;
	}

	nav ul li a.is-current span,
	nav ul li:nth-child(3) a.is-current span,
	nav ul li:nth-child(4) a.is-current span,
	nav ul li:nth-child(5) a.is-current span {
		background: url(/member/common/img/ico_arrow_01.png)no-repeat 5px 50%;
		background-size: 4px 7px;
	}

	nav ul li:nth-child(2) a span {
		border-top: dotted 1px #ffffff;
	}

	nav ul li:last-child {
		padding: 15px 16px;
	}

	nav ul li:last-child a {
		text-align: center;
		font-weight: bold;
		padding: 10px;
		background: #646464;
	}

	nav ul li.link-contact {
		padding: 15px 45px 20px;
	}

	nav ul li.link-contact > span:first-child {
		position: relative;
		width: 156px;
		padding: 0 18px;
		display: block;
		margin: 0 auto;
		text-align: center;
		color: #fff;
	}

	nav ul li.link-contact > span:first-child:before {
		content: "";
		position: absolute;
		left: 0;
		top: 1px;
		display: block;
		width: 8px;
		height: 13px;
		background: url(/member/common/img/bg_highlight_01.png)no-repeat;
		background-size: 8px 13px;
	}

	nav ul li.link-contact > span:first-child:after {
		content: "";
		position: absolute;
		right: 0;
		top: 1px;
		display: block;
		width: 8px;
		height: 13px;
		background: url(/member/common/img/bg_highlight_02.png)no-repeat;
		background-size: 8px 13px;
	}

	nav ul li.link-contact a {
		display: block;
		width: 100%;
		margin: 12px auto 0;
		background: #fc7397;
		padding: 2px;
		font-size: 1.3rem;
	}

	nav ul li.link-contact .is-current {
		color: #fff;
	}

	nav ul li.link-contact a span {
		padding: 0;
		display: inline-block;
		border: none;
		background: none;
	}

	nav ul li.link-contact a .btn-inner {
		border: solid 1px #fff;
		padding: 10px;
		display: block;
		text-align: center;
		font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝体", "Yu Mincho", YuMincho, serif;
	}

	nav ul li.link-contact a .btn-inner .txt-01 {
		background: #fff;
		border-radius: 2px;
		color: #fc7397;
		font-size: 1.1rem;
		padding: 1px 7px;
		margin-right: 9px;
	}

	nav ul li.link-contact a .btn-inner .txt-02 {
		font-size: 1rem;
	}
}

@media screen and (min-width: 769px) {

	/* 768px以下用（タブレット／スマートフォン用）の記述 */
	nav {
		display: block !important;
		height: auto !important;
	}
}

/*================================
footer
=================================*/

.wave-wrap .wave-01 {
	width: 100%;
	height: 21px;
	background: url(/member/common/img/footer_b.png)repeat-x 0 bottom;
}

.wave-wrap .wave-02 {
	width: 100%;
	height: 21px;
	background: url(/member/common/img/footer_a.png)repeat-x 0 bottom;
}

footer {
	position: relative;
}

footer .page-top {
	position: absolute;
	right: 60px;
	top: -28px;
	width: 50px;
	height: 50px;
	-webkit-transition: all .3s ease-in-out 0s;
	transition: all .3s ease-in-out 0s;
}

footer .page-top img {
	width: 100%;
	height: auto;
}

footer .page-top:hover {
	cursor: pointer;
}

footer .page-top.is-fixed {
	position: fixed;
	bottom: 0;
	top: inherit;
}

footer .area-footer-link {
	overflow: hidden;
	background: #1eb9ee;
	padding-bottom: 30px;
}

footer .area-footer-link .footer-in {
	width: 1020px;
	margin: 0 auto;
}

footer .area-footer-link .footer-logo {
	float: left;
	width: 230px;
	margin-top: 5px;
}

footer .area-footer-link .footer-logo img {
	width: 100%;
	height: auto;
}

footer .area-footer-link .footer-link {
	width: 724px;
	float: right;
	margin-top: 47px;
}

footer .area-footer-link .footer-link ul li {
	display: inline-block;
	margin: 7px 30px 7px 0;
}

footer .area-footer-link .footer-link ul li a {
	background: url(/member/common/img/ico_arrow_02.png)no-repeat left center;
	background-size: 6px auto;
	color: #fff;
	font-size: 1.4rem;
	padding-left: 13px;
}

footer .area-footer-link .footer-time {
	display: none;
}

footer .area-footer-copy {
	background: #fff;
	padding: 22px 0 18px;
	text-align: center;
}

footer .area-footer-copy ul {
	display: block;
	text-align: center;
	padding: 0 0 25px;
}

footer .area-footer-copy ul li {
	display: inline-block;
	padding: 0 20px;
	border-right: solid 1px #383838;
}

footer .area-footer-copy ul li:first-child {
	border-left: solid 1px #383838;
}

footer .area-footer-copy ul li a {
	color: #383838;
	font-size: 1.2rem;
}

footer .area-footer-copy .copy {
	text-align: center;
	color: #383838;
	margin-top: 20px;
}

@media screen and (max-width: 768px) {

	/* 768px以下用（タブレット／スマートフォン用）の記述 */
	.wave-wrap .wave-01,
	.wave-wrap .wave-02 {
		height: 11px;
		background-size: 900px auto;
	}

	footer {
		background-size: 100% auto;
	}

	footer .page-top {
		width: 45px;
		height: 45px;
		top: -32px;
		right: 15px;
	}

	footer .area-footer-link .footer-in {
		float: none;
		width: 280px;
	}

	footer .area-footer-link {
		width: 100%;
		padding: 20px;
		display: table;
	}

	footer .area-footer-link .footer-logo {
		display: table-cell;
		width: 50%;
		vertical-align: middle;
		padding-right: 25px;
		min-width: 167px;
	}

	footer .area-footer-link .footer-link {
		display: none;
	}

	footer .area-footer-link .footer-time {
		display: table-cell;
		width: 50%;
		vertical-align: middle;
	}

	footer .area-footer-link .footer-time p {
		margin-bottom: 10px;
		color: #fff;
	}

	footer .area-footer-link .footer-time p,
	footer .area-footer-link .footer-time p span {
		font-size: 1em;
		line-height: 1.7;
	}

	footer .area-footer-link .footer-time p span {
		display: inline-block;
	}

	footer .area-footer-link .footer-time p .ttl {
		background: #fff;
		color: #1eb9ee;
		padding: 2px 4px;
		margin-bottom: 5px;
		border-radius: 2px;
	}

	footer .area-footer-link .footer-time p .ttl + .hour span {
		padding-right: 1rem;
	}

	footer .area-footer-copy {
		padding: 15px;
	}

	footer .area-footer-copy ul {
		padding-bottom: 3px;
	}

	footer .area-footer-copy ul li {
		margin-bottom: 10px;
		padding: 0 16px;
	}

	footer .area-footer-copy ul li a {
		font-size: 1rem;
	}
}

/*================================
top
=================================*/

.btn-contact {
	position: absolute;
	z-index: 2;
	right: 0;
	top: 160px;
}

.btn-contact02 {
	position: absolute;
	z-index: 2;
	right: 0;
	top: 360px;
}

.btn-contact a {
	display: block;
	background: url(/member/img/btn_contact_fixed_00.png)no-repeat;
	width: 121px;
	height: 186px;
	text-indent: -9999px;
	overflow: hidden;
}

.btn-contact02 a {
	display: block;
	background: url(/member/img/btn_contact_fixed_000.png)no-repeat;
	width: 58px;
	height: 149px;
	text-indent: -9999px;
	overflow: hidden;
}

.btn-contact a:hover {
	opacity: .8; /* マウスが重なった時に少し透過させます */
}

.btn-contact02 a:hover {
	opacity: .8; /* マウスが重なった時に少し透過させます */
}

.btn-contact.is-fixed {
	position: fixed;
	top: 10px;
}

.btn-contact02 .is-fixed02 {
	position: fixed;
	top: 10px;
}

.index .area-mainvisual {
	height: 540px;
	padding: 40px 0 22px;
	margin-top: 0;
	background: url(/member/img/bg_top_mainvisual_01.jpg)repeat-x center;
	background-size: auto 100%;
}

.index .area-mainvisual .mainvisual-slider {
	position: relative;
}

.index .area-mainvisual .mainvisual-slider .slick-slide {
	width: 840px;
	height: 440px;
	margin: 0 60px;
	text-align: center;
	opacity: 0.6;
}

.index .area-mainvisual .mainvisual-slider .slick-slide.slick-active {
	opacity: 1;
}

.index .area-mainvisual .mainvisual-slider .slick-slide a {
	display: block;
	position: relative;
	background: #fff;
}

.index .area-mainvisual .mainvisual-slider .slick-slide a:hover img {
	opacity: 0.8;
}

.index .area-mainvisual .mainvisual-slider .slick-prev:focus,
.index .area-mainvisual .mainvisual-slider .slick-next:focus,
.index .area-mainvisual .mainvisual-slider .slick-dots li button:focus {
	outline: none;
}

.index .area-mainvisual .mainvisual-slider .slick-prev {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -45px 0 0 -510px;
	text-indent: -9999px;
	overflow: hidden;
	width: 59px;
	height: 59px;
	background: url(/member/img/btn_top_slide_01.png) no-repeat center;
	border: none;
	z-index: 1;
	opacity: 0.6;
}

.index .area-mainvisual .mainvisual-slider .slick-next {
	position: absolute;
	top: 50%;
	right: 50%;
	margin: -45px -510px 0 0;
	text-indent: -9999px;
	overflow: hidden;
	width: 59px;
	height: 59px;
	background: url(/member/img/btn_top_slide_02.png) no-repeat center;
	border: none;
	z-index: 1;
	opacity: 0.6;
}

.index .area-mainvisual .mainvisual-slider .slick-prev:hover,
.index .area-mainvisual .mainvisual-slider .slick-next:hover {
	opacity: 1;
	cursor: pointer;
}

.index .area-mainvisual .mainvisual-slider .slick-dots {
	display: block;
	text-align: center;
	margin-top: 23px;
}

.index .area-mainvisual .mainvisual-slider .slick-dots li {
	display: inline-block;
	margin: 0 5px;
}

.index .area-mainvisual .mainvisual-slider .slick-dots li button {
	cursor: pointer;
	width: 16px;
	height: 16px;
	background: url(/member/img/btn_top_slider_01.png)no-repeat;
	background-size: 16px 16px;
	border: none;
	text-indent: -9999px;
	overflow: hidden;
	padding: 0;
}

.index .area-mainvisual .mainvisual-slider .slick-dots li.slick-active button,
.index .area-mainvisual .mainvisual-slider .slick-dots li button:hover {
	background: url(/member/img/btn_top_slider_01_cr.png)no-repeat;
	background-size: 16px 16px;
}

.area-news {
	width: 1020px;
	padding: 30px 0;
	margin: 0 auto;
}

.area-news .area-in {
	margin: 0;
	height: 96px;
	overflow: hidden;
}

.area-news ul li {
	display: table;
	margin: 15px 0 0;
}

.area-news ul li:first-child {
	margin-top: 0;
}

.area-news ul li a {
	color: #707070;
}

.area-news ul li a:hover {
	text-decoration: none;
}

.area-news ul li span {
	font-size: 1.4rem;
	display: table-cell;
	vertical-align: top;
}

.area-news ul li .date {
	padding-right: 20px;
}

.area-news ul li a:hover .txt {
	text-decoration: underline;
}

.area-news ul li a.new .txt:after {
	content: "";
	display: inline-block;
	width: 26px;
	height: 13px;
	background: url(/member/common/img/ico_new_pc_01.png)no-repeat right center;
	background-size: 26px 13px;
}

.area-news ul li a[target="_blank"] .txt:after {
	content: "";
	display: inline-block;
	width: 12px;
	height: 12px;
	background: url(/member/common/img/ico_blank_01.png)no-repeat right center;
	background-size: 12px 12px;
}

.area-news ul li .category {
	padding-right: 20px;
}

.area-news ul li .category span {
	min-width: 80px;
	text-align: center;
	color: #fff;
	padding: 2px 10px;
	font-size: 1.1rem;
}

.area-news ul li .cat01 span {
	background: #f24343;
}

.area-news ul li .cat02 span {
	background: #45bb5b;
}

.area-news ul li .cat03 span {
	background: #3bb8e2;
}

.area-news .mCSB_scrollTools .mCSB_draggerRail {
	width: 6px;
	border-radius: 0;
	background-color: transparent;
}

.area-news .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	width: 6px;
	background: #ffbacc;
	border-radius: 0;
}

.area-support {
	padding: 60px 0;
	background: url(/member/img/bg_top_support_01.jpg)no-repeat right center #f4f4f1;
}

.area-detail {
	background: #fff;
	padding: 60px 0;
}

.area-contact {
	background: url(/member/img/bg_top_contact_01.jpg)repeat-x center;
	padding: 80px 0 90px;
}

.area-contact .area-in .contact-wrap .consultation-wrap,
.area-contact .area-in .contact-wrap .tel-wrap {
	width: 100%;
	display: table;
	background: #fff;
	padding: 35px 57px 35px 40px;
}

.area-contact .area-in .contact-wrap .consultation-wrap {
	margin-bottom: 20px;
}

.area-contact .area-in .contact-wrap .consultation-wrap .txt {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	padding-right: 45px;
}

.area-contact .area-in .contact-wrap .consultation-wrap .txt img {
	width: 47px;
	height: auto;
}

.area-contact .area-in .contact-wrap .consultation-wrap .txt span {
	display: block;
	font-size: 1.4rem;
	padding-top: 10px;
}

.area-contact .area-in .contact-wrap .consultation-wrap .link-contact {
	display: table-cell;
	width: 220px;
	vertical-align: middle;
}

.area-contact .area-in .contact-wrap .consultation-wrap .link-contact a {
	font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝体", "Yu Mincho", YuMincho, serif;
	display: block;
	color: #fff;
	text-decoration: none;
	padding: 5px;
	height: 62px;
	background: #fc7397;
}

.area-contact .area-in .contact-wrap .consultation-wrap .link-contact a span {
	background: url(/member/common/img/ico_arrow_02.png)no-repeat 194px 50%;
	background-size: 4px auto;
	display: block;
	font-size: 1.6rem;
	padding: 14px 10px;
	border: solid 1px #fff;
	text-align: center;
}

.area-contact .area-in .contact-wrap .consultation-wrap .link-contact a:hover {
	background: #f24371;
}

.area-contact .area-in .contact-wrap .tel-wrap .txt {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	padding-right: 45px;
}

.area-contact .area-in .contact-wrap .tel-wrap .txt img {
	width: 238px;
}

.area-contact .area-in .contact-wrap .tel-wrap .txt span {
	display: block;
	font-size: 1.4rem;
	padding-top: 8px;
}

.area-contact .area-in .contact-wrap .tel-wrap ul {
	display: table-cell;
	width: 220px;
	vertical-align: middle;
}

.area-contact .area-in .contact-wrap .tel-wrap ul li {
	text-align: center;
	border: solid 1px #d7d7d7;
}

.area-contact .area-in .contact-wrap .tel-wrap ul li > span {
	color: #1eb9ee;
	font-size: 1.4rem;
	display: block;
	padding: 16px 0;
}

.area-contact .area-in .contact-wrap .tel-wrap ul li a {
	color: #1eb9ee;
	font-size: 1.4rem;
	display: block;
	padding: 16px 0;
}

.area-contact .area-in .contact-wrap .tel-wrap ul li:first-child {
	margin-bottom: 10px;
}

.area-contact .area-in .contact-wrap .tel-wrap ul li.tel > * > span {
	background: url(/member/common/img/ico_tel_01.png)no-repeat left center;
	background-size: 17px auto;
	padding: 2px 0 2px 24px;
}

.area-contact .area-in .contact-wrap .tel-wrap ul li.mail > * > span {
	background: url(/member/common/img/ico_mail_01.png)no-repeat left center;
	background-size: 17px auto;
	padding-left: 38px;
}

.area-contact .area-in .area-bnr {
	float: right;
	width: 360px;
}

.area-contact .area-in .area-bnr ul li {
	margin-bottom: 20px;
}

.area-contact .area-in .area-bnr ul li img {
	width: 100%;
	height: auto;
}

@media screen and (max-width: 768px) {

	/* 768px以下用（タブレット／スマートフォン用）の記述 */
	.btn-contact {
		display: none;
	}

	.index .area-mainvisual {
		height: auto;
		padding: 15px 0 8px;
	}

	.index .area-mainvisual .mainvisual-slider .slick-slide {
		height: auto;
		margin: 0;
		opacity: 1;
	}

	.index .area-mainvisual .mainvisual-slider .slick-slide img {
		width: 100%;
		height: auto;
	}

	.index .area-mainvisual .mainvisual-slider .slick-dots {
		margin-top: 8px;
	}

	.index .area-mainvisual .mainvisual-slider .slick-dots li {
		margin: 0 4px;
	}

	.index .area-mainvisual .mainvisual-slider .slick-dots li button {
		cursor: pointer;
		width: 13px;
		height: 13px;
		background: url(/member/img/btn_top_slider_01.png)no-repeat;
		background-size: 13px 13px;
		border: none;
		text-indent: -9999px;
		overflow: hidden;
		padding: 0;
	}

	.index .area-mainvisual .mainvisual-slider .slick-dots li.slick-active button,
	.index .area-mainvisual .mainvisual-slider .slick-dots li.slick-active button:hover {
		background: url(/member/img/btn_top_slider_01_cr.png)no-repeat;
		background-size: 13px 13px;
	}

	.index .area-mainvisual .mainvisual-slider .slick-dots li button:hover {
		background: url(/member/img/btn_top_slider_01.png)no-repeat;
		background-size: 13px 13px;
	}


	.area-news ul li {
		margin: 15px 0 0;
	}

	.area-news ul li .date,
	.area-news ul li .category {
		display: inline-block;
	}

	.area-news ul li .date {
		padding: 2px 10px 0 0;
		font-size: 1rem;
	}

	.area-news ul li .category span {
		font-size: 1rem;
		min-width: inherit;
		padding: 2px 4px;
	}

	.area-news ul li a.new .txt:after {
		content: "";
		display: inline-block;
		width: 20px;
		height: 10px;
		background: url(/member/common/img/ico_new_sp_01.png)no-repeat right center;
		background-size: 20px 10px;
	}

	.area-news ul li .txt {
		padding-top: 8px;
	}

	.area-detail,
	.area-support {
		padding: 30px;
	}

	.area-support {
		background: #edede7;
	}

	.area-news {
		width: 100%;
		padding: 20px 0 20px 14px;
	}

	.area-news .area-in {
		height: 150px;
	}

	.area-news .mCSB_scrollTools {
		right: -5px;
	}

	.area-contact {
		padding: 30px 30px 80px;
		background-size: auto 100%;
	}

	.area-contact .area-in .contact-wrap .consultation-wrap .txt span,
	.area-contact .area-in .contact-wrap .tel-wrap .txt span {
		font-size: 1rem;
	}

	.area-contact .area-in .contact-wrap,
	.area-contact .area-in .area-bnr,
	.area-contact .area-in .contact-wrap .consultation-wrap {
		float: none;
		width: 100%;
		margin: 0;
	}

	.area-contact .area-in .contact-wrap .consultation-wrap {
		padding: 20px 10px;
	}

	.area-contact .area-in .contact-wrap .tel-wrap {
		padding: 20px 10px;
	}

	.area-contact .area-in .contact-wrap .consultation-wrap .txt img {
		width: 33px;
		height: auto;
	}

	.area-contact .area-in .contact-wrap .consultation-wrap .txt span {
		padding-bottom: 10px;
	}

	.area-contact .area-in .contact-wrap .tel-wrap,
	.area-contact .area-in .area-bnr ul li {
		margin: 15px 0 0;
	}

	.area-contact .area-in .contact-wrap .tel-wrap ul li:first-child {
		margin-bottom: 5px;
	}

	.area-contact .area-in .contact-wrap .consultation-wrap .txt,
	.area-contact .area-in .contact-wrap .consultation-wrap .link-contact,
	.area-contact .area-in .contact-wrap .tel-wrap .txt,
	.area-contact .area-in .contact-wrap .tel-wrap ul {
		display: block;
		width: 100%;
		padding: 0;
	}

	.area-contact .area-in .contact-wrap .tel-wrap .txt {
		padding: 0 35px;
	}

	.area-contact .area-in .contact-wrap .tel-wrap .txt span {
		padding: 5px 0 10px;
	}

	.area-contact .area-in .contact-wrap .tel-wrap .txt img {
		width: 165px;
	}

	.area-contact .area-in .contact-wrap .tel-wrap ul li > span,
	.area-contact .area-in .contact-wrap .tel-wrap ul li a {
		font-size: 1.2rem;
		padding: 12px 0;
	}

	.area-contact .area-in .contact-wrap .tel-wrap ul {
		padding: 0 35px;
	}


	.area-contact .area-in .contact-wrap .tel-wrap ul li.mail > * > span {
		padding: 0px 17px 0 38px
	}

	.area-contact .area-in .contact-wrap .consultation-wrap .link-contact {
		width: 100%;
		padding: 0 35px;
		margin: 0 auto;
	}

	.area-contact .area-in .contact-wrap .consultation-wrap .link-contact a {
		display: block;
		height: 40px;
		padding: 2px;
	}

	.area-contact .area-in .contact-wrap .consultation-wrap .link-contact a span {
		background: none;
		font-size: 1.2rem;
		padding: 9px 0;
	}

	.area-contact .area-in .contact-wrap .consultation-wrap .txt span br {
		display: none;
	}
	
	.bn-area ul{
	display: block;
	margin-bottom: 10px;

}

.bn-area ul li img{
	width: 300px;
}
}

/*================================
Heading
=================================*/

.device-ttl-01 {
	font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝体", "Yu Mincho", YuMincho, serif;
	font-size: 2.0rem;
	font-weight: bold;
	color: #1eb9ef;
	margin: 0 0 30px;
	padding: 15px 0 15px 30px;
	border-left: 10px solid #1eb9ef;
}

.device-ttl-02 {
	font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝体", "Yu Mincho", YuMincho, serif;
	font-size: 2.6rem;
	font-weight: bold;
	color: #fd7397;
	margin: 30px 0 30px;
	padding: 10px 0 30px 0;
	background: url(/member/common/img/bg_device02.png) no-repeat left bottom;
}

.device-ttl-03 {
	font-size: 1.8rem;
	font-weight: bold;
	color: #707070;
	margin: 25px 0 25px;
	padding: 10px 0;
	background: url(/member/common/img/bg_device02.png) no-repeat left bottom;
}

@media screen and (max-width: 768px) {

	/* 768px以下用（タブレット／スマートフォン用）の記述 */
	.device-ttl-01 {
		font-size: 1.5rem;
		margin: 5px 0 0;
		padding: 10px 0 10px 14px;
		border-left: 5px solid #1eb9ef;
	}

	.device-ttl-02 {
		font-size: 1.6rem;
		margin: 5px 0 15px;
		padding: 10px 0 9px 0;
	}

	.device-ttl-03 {
		font-size: 1.4rem;
		margin: 5px 0 15px;
		padding: 10px 0 9px 0;
		background: url(/member/common/img/bg_device02.png) no-repeat -130px 100%;
	}

}

/*================================
program
=================================*/
#program{
	text-align: center;
}
@media screen and (max-width: 768px) {
	#program{
		text-align: center;
		margin-top: 50px;
}
}

/*================================
bn-area
=================================*/

.bn-area{
	max-width: 1000px;
	margin: 0 auto;
}

.bn-area ul{
	display: flex;
	justify-content: center;
	
}

.bn-area ul:first-child{
	margin-bottom: 15px;
}

.bn-area ul:last-child{
	margin-bottom: 50px;
}

.bn-area ul li{
	margin-left: 15px;
}

.bn-area ul li img{
	width: 370px;
}

@media screen and (max-width: 768px) {
	.bn-area{
		margin: 20px auto;
		text-align: center;
	}
	
	.bn-area ul{
		display: block;
	}
	
	.bn-area ul:first-child{
		margin:0;
	}

	.bn-area ul:last-child{
		margin:0;
	}
	
	.bn-area ul li{
		margin:0 0 10px 0;
	}
	
	.bn-area ul li img{
		width: 300px;
	}
}

/*================================
line-bn
=================================*/

.line-bn{
	text-align: center;
    margin-top: 40px;
}

@media screen and (max-width: 768px){
	.line-bn{
		margin-top: 20px;
	}
	
	.line-bn img{
		max-width: 90%;
	}
	
	.line-bn img:hover{
		opacity: 0.7;
	}
}

/*================================
area-info
=================================*/

.area-info{
	width: 1000px;
	margin: 0 auto;
	padding-top: 40px;
	font-size: 14px;
}

.area-info .wapper{
	margin: 0;
	height: 180px;
	overflow: scroll;
	overflow-x: hidden;
}

.area-info .wapper ul li{
	padding: 14px 0 5px;
	border-bottom: 2px dotted #4A4A4A;
}

.area-info .wapper ul li a{
	display: flex;
	color: #000;
}

.area-info .wapper ul li a:hover{
	text-decoration: none;
}

.area-info .wapper ul li a div{
	margin-right: 15px;	
}
.area-info .wapper ul li a div:last-child{
	margin-right: 0;
}


.area-info .wapper ul li div.cate01{
	font-size: 12px;
	background-color: #009B03;
	color: #fff;
	padding: 3px 4px;
}

.area-info .wapper ul li div.cate02{
	font-size: 12px;
	background-color: #FF0004;
	color: #fff;
	padding: 3px 4px;
}

.area-info .wapper ul li div.cate03{
	font-size: 12px;
	background-color: #FF8600;
	color: #fff;
	padding: 3px 4px;
}

.area-info .wapper ul li div.txt:hover{
	color: #00ADEC;
}

p.wrap-txt{
	margin: 40px auto;
	max-width: 936px;
}

@media screen and (max-width: 768px) {
	.area-info{
		width: 90%;
		margin: 0 auto;
		padding-top: 20px;
		font-size: 14px;
	}

	.area-info .wapper{
		margin: 0;
		height: 305px;
		overflow: scroll;
		overflow-x: hidden;
	}
	
	.area-info .wapper ul li a{
		display: block;
	}
	
	.area-info .wapper ul li a div{
		margin-right: 15px;
		display: inline-block;
	}
	
	.area-info .wapper ul li a div.txt{
	padding-top: 8px;	
}
	
	p.wrap-txt{
	margin: 30px auto;
	max-width: 325px;
}
	
}
