@charset 'utf-8';

/* ------------------------------------------------------------ LINK ------------------------------------------------------------ */

/*--------------------------------
	Font
--------------------------------*/

a:focus				{ color:#333; text-decoration:none; }
a:link				{ color:#333; text-decoration:none; }
a:link:hover		{ color:#bfc9c6; text-decoration:none; }
a:link:active		{ color:#bfc9c6; text-decoration:none; }
a:visited			{ color:#333; text-decoration:none; }
a:visited:hover		{ color:#bfc9c6; text-decoration:none; }
a:visited:active	{ color:#bfc9c6; text-decoration:none; }

/* ------------------------------------------------------------ COMMON ------------------------------------------------------------ */

body {
	margin: 60px auto 0;
	width:100%;
	line-height:1.8;
	color:#333;
	font-family:'TBゴシック M','メイリオ','meiryo', sans-serif;
}

p,h1,h2,h3,h4,h5 {
	transform: rotate(0.01deg); /* webfontをwin環境で仮想アンチエイリアス */
	font-family:'TBゴシック M', sans-serif;
}

/* ボーダーボックス */

* {
	box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
}

/* 基本 */

.inner {
	width:990px;
	padding:0 15px;
	margin:0 auto;
	min-height:1px;
	zoom:1;
	clear:both;
}

.inner:after {
	content:".";
	display:block;
	clear:both;
	height:0px;
	visibility:hidden;
	font-size:0px;
}

section {
	width:100%;
	min-width:990px;
	margin: 0 auto;
	text-align: center;
	min-height:1px;
	zoom:1;
	clear:both;
}

section:after {
	content:".";
	display:block;
	clear:both;
	height:0px;
	visibility:hidden;
	font-size:0px;
}


/* ヘッダー */

header {
	height: 60px;
	line-height: 60px;
	z-index: 999;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	background: #fff;
	box-shadow: 0px 2px 2px rgba(0,0,0,0.05); /* CSS3 */
	-moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.05); /* Firefox */
	-webkit-box-shadow: 0px 2px 2px rgba(0,0,0,0.05); /* Safari and Chrome */
	min-height:1px;
	zoom:1;
	clear:both;
}

header:after {
	content:".";
	display:block;
	clear:both;
	height:0px;
	visibility:hidden;
	font-size:0px;
}

header .inner {
	position: relative;
}

header h1 {
	width: 140px;
	padding: 12px 0 0;
	float: left;
	text-align: center;
	color: #fff;
}

header h1 img {
	display: block;
	width: 100%;
	height: auto;
}

header #nav_btnwrapper {
	display: none;
}

header nav {
	width: 770px;
	font-size: 14px;
	float: right;
}

header nav ul {
	margin: 0 auto;
	text-align: center;
	font-size:0;
	height: 60px;
}

header nav ul li {
	display: inline-block;
	margin: 0 14px 0 0;
	height: 60px;
	line-height: 60px;
	padding: 0;
	font-size: 14px;
}

header nav ul li a {
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	-ms-transition: 0.2s;
	transition: 0.2s;
}

header nav ul.nav_main {
	float: left;
}

header nav ul.nav_icon {
	float: right;
}

header nav ul.nav_icon li {
	display: inline-block;
	margin: 0 0 0 10px;
	/* line-height: 0; */
}

header nav ul.nav_icon li:last-child {
	margin: 0 0 0 12px;
}

header nav ul.nav_icon li a {

}
header nav ul.nav_icon li img {
	vertical-align: middle;
}

header nav ul.nav_icon li a:hover {
	opacity: 0.7;
}

header nav ul li:nth-child(8) {
	margin: 0 5px 0 0;
}

/* ヘッダー右ボタン */

header nav ul li.nav_sp_blog,
header nav ul li.nav_sp_buy {
	display: inline-block;
	width: 70px;
}

header nav ul li.nav_sp_blog a,
header nav ul li.nav_sp_buy a {
	display: inline-block;
	width: 100%;
	height: 30px;
	line-height: 30px;
	padding: 0;
	text-align: center;
	border-radius: 5px; /* CSS3 */
	-moz-border-radius: 5px; /* Firefox */
	-webkit-border-radius: 5px; /* Safari and Chrome */
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;	
}

header nav ul li.nav_sp_blog a {
	background: rgba(202,235,225,1);
}

header nav ul li.nav_sp_buy a {
	background:  rgb(55, 173, 100);
}

header nav ul li.nav_sp_blog a:hover,
header nav ul li.nav_sp_buy a:hover {
	background: #46c894;
}

header nav ul li.nav_sp_buy a:focus 		{ color:#fff; }
header nav ul li.nav_sp_buy a:link			{ color:#fff; }
header nav ul li.nav_sp_buy a:link:hover		{ color:#fff; }
header nav ul li.nav_sp_buy a:link:active	{ color:#fff; }
header nav ul li.nav_sp_buy a:visited		{ color:#fff; }
header nav ul li.nav_sp_buy a:visited:hover	{ color:#fff; }
header nav ul li.nav_sp_buy a:visited:active	{ color:#fff; }

header nav ul li.nav_sp_blog a:focus 			{ color:#25894b; }
header nav ul li.nav_sp_blog a:link				{ color:#25894b; }
header nav ul li.nav_sp_blog a:link:hover		{ color:#fff; }
header nav ul li.nav_sp_blog a:link:active		{ color:#fff; }
header nav ul li.nav_sp_blog a:visited			{ color:#25894b; }
header nav ul li.nav_sp_blog a:visited:hover	{ color:#fff; }
header nav ul li.nav_sp_blog a:visited:active	{ color:#fff; }


/* 「購入する」ボタン */

#buy {
	padding: 80px 0;
}
section#buy2 {
	background: #d7efe0;
	padding: 90px 0 60px;
}
section#buy h2,
section#buy2 h2{
	margin: 0 0 30px;
	font-size: 34px;
	font-family: "TBゴシック SL", sans-serif;
}
section#buy2 h2{
	border: none;
	color: #333;
}

section#buy a.btn_green,
section#buy2 a.btn_green{
	width: 185px;
}

/* フッター */

footer {
	width:100%;
	margin: 0 auto;
	background: #f0f3f2;
	text-align: center;
	min-height:1px;
	zoom:1;
	clear:both;
}

footer:after {
	content:".";
	display:block;
	clear:both;
	height:0px;
	visibility:hidden;
	font-size:0px;
}

footer .inner {
	position: relative;
	background: #f0f3f2;
	padding: 35px 15px 10px;
}

footer .inner .footer_sns {
	width: 323px;
	height: 84px;
	background: url(/common/images/footer_sns.png) no-repeat center center;
	background-size: contain;
	margin: 0 auto;
	padding: 45px 0 0 40px;
}

footer .inner .footer_sns > * {
  vertical-align: bottom !important;
  margin: 0 5px 0 0;
}

footer .inner .footer_contact {
	margin: 30px auto;
}

footer .inner .footer_contact a {
	display: inline-block;
	margin: 0 5px;
	background: #92a399;
	font-size: 17px;
	padding: 0 30px;
	vertical-align: bottom;
	height: 44px;
	line-height: 44px;
	border-radius: 22px; /* CSS3 */
	-moz-border-radius: 22px; /* Firefox */
	-webkit-border-radius: 22px; /* Safari and Chrome */
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}

footer .inner .footer_contact a:focus			{ color:#fff; }
footer .inner .footer_contact a:link			{ color:#fff; }
footer .inner .footer_contact a:link:hover		{ color:#fff; background: rgba(160,200,174,1);}
footer .inner .footer_contact a:link:active		{ color:#fff; background: rgba(160,200,174,1);}
footer .inner .footer_contact a:visited			{ color:#fff; }
footer .inner .footer_contact a:visited:hover	{ color:#fff; background: rgba(160,200,174,1);}
footer .inner .footer_contact a:visited:active	{ color:#fff; background: rgba(160,200,174,1);}

footer .inner ul {
	float: left;
	color: #92a399;
	font-size: 13px;
	margin: 0 0 10px;
	clear: both;
}

footer .inner ul li {
	display: inline-block;
	margin: 0 20px 0 0;
}

footer .inner ul li a:focus				{ color:#92a399; }
footer .inner ul li a:link				{ color:#92a399; }
footer .inner ul li a:link:hover		{ color:rgba(160,200,174,1); }
footer .inner ul li a:link:active		{ color:rgba(160,200,174,1); }
footer .inner ul li a:visited			{ color:#92a399; }
footer .inner ul li a:visited:hover		{ color:rgba(160,200,174,1); }
footer .inner ul li a:visited:active	{ color:rgba(160,200,174,1); }

footer .copyright {
	color: #92a399;
	font-size: 9px;
	margin: 0 0 10px;
	float: left;
	clear: both;
}

footer .pagetop {
	position: fixed;
	right: 20px;
	bottom: 20px;
	zoom:1;
	background-color: #92a399;
	width:44px;
	height:44px;
	text-indent: -9999px;
	border-radius: 22px; /* CSS3 */
	-moz-border-radius: 22px; /* Firefox */
	-webkit-border-radius: 22px; /* Safari and Chrome */
	display: none;
}

footer .pagetop:hover {
	background-color: rgba(160,200,174,1);
}

footer .pagetop a {
	display: block;
	width: 100%;
	height: 100%;
	background-image: url(/common/images/pagetop.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 12px auto;
	-webkit-background-size: 12px auto;
}

footer .pagetop a img { /* for less than IE8 */
	margin: 12px 0 0 0;
}

/*--------------------------------
	ボタン
--------------------------------*/

.btn_green {
	height: 48px;
	line-height: 48px;
	border-radius: 5px; /* CSS3 */
	-moz-border-radius: 5px; /* Firefox */
	-webkit-border-radius: 5px; /* Safari and Chrome */
	background: rgb(55, 173, 100);
	display: inline-block;
	width: 150px;
	text-align: center;
	font-size: 17px;
	letter-spacing: 0.1em;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}

.btn_green:hover {
	background: #46c894;
}

.btn_green:focus			{ color:#fff; }
.btn_green:link				{ color:#fff; }
.btn_green:link:hover		{ color:#fff; }
.btn_green:link:active		{ color:#fff; }
.btn_green:visited			{ color:#fff; }
.btn_green:visited:hover	{ color:#fff; }
.btn_green:visited:active	{ color:#fff; }


/* ------------------------------------------------------------ TOPPAGE ------------------------------------------------------------ */

#top_concept {
	background: url(/images/top_concept.jpg) no-repeat center center;
	background-size: cover;
	width: 100%;
	min-height: 200px;
	max-height: 600px;
	position: relative;
}

#top_concept h2 {
	position: absolute;
	top:25%;
	left: 10%;
	width: 250px;
}

#top_concept h2 img {
	display: block;
	margin: 0 0 20px;
}

#top_concept .top_scroll {
	position: fixed;
	bottom:20px;
	left: 50%;
	margin: 0 -20px 0 0;
}

.firstViewOver #top_concept .top_scroll {
	display: none;
}

#top_case {
	padding: 30px 0;
}

#top_case h2 {
	font-size: 24px;
	margin: 0 0 15px;
    font-family: "TBゴシック SL", sans-serif;
}

#top_case h2 + p {
	font-size: 16px;
}

#top_case h2 span {
	font-size: 18px;
	color: rgb(55, 173, 100);
	display: inline-block;
	margin: 0 20px 0 0;
}

#top_case ul {
	font-size: 0;
	margin: 30px 0 0;
}

#top_case ul li {
	display: inline-block;
	width: 300px;
	margin: 0 30px 0 0;
	height: 170px;
	position: relative;
	border: 1px solid #ccc;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	-ms-transition: 0.2s;
	transition: 0.2s;
}

#top_case ul li:hover {
	opacity: 0.7;
}

#top_case ul li:nth-of-type(1) { background: url(/images/top_case_13.jpg) no-repeat center top; background-size: cover; }
#top_case ul li:nth-of-type(2) { background: url(/images/top_case_12.jpg) no-repeat center top; background-size: cover; }
#top_case ul li:nth-of-type(3) { background: url(/images/top_case_11.jpg) no-repeat center top; background-size: cover; margin: 0;  }


#top_case ul li a {
	display: block;
	width: 100%;
	height: 100%;
}

#top_case ul li p {
	display: block;
	width: 240px;
	height: 30px;
	line-height: 30px;
	background: rgb(55, 173, 100);
	font-size: 13px;
	position: absolute;
	bottom: 15px;
	left: 50%;
	margin: 0 0 0 -120px;
	color: #fff;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

#top_news {
	background: #f0f3f2;
	padding: 30px 0 20px;
}

#top_news .inner {
	position: relative;
}

#top_news .inner a.top_news_sp {
	font-size: 26px;
	line-height: 1.5;
}

#top_news .inner a.top_news_sp:focus			{ color:rgb(55, 173, 100); }
#top_news .inner a.top_news_sp:link				{ color:rgb(55, 173, 100); }
#top_news .inner a.top_news_sp:link:hover		{ color:rgba(160,200,174,1); }
#top_news .inner a.top_news_sp:link:active		{ color:rgba(160,200,174,1); }
#top_news .inner a.top_news_sp:visited			{ color:rgb(55, 173, 100); }
#top_news .inner a.top_news_sp:visited:hover	{ color:rgba(160,200,174,1); }
#top_news .inner a.top_news_sp:visited:active	{ color:rgba(160,200,174,1); }

#top_news h2 {
	width: 100%;
	padding: 30px 0 0;
/*
	position: absolute;
	top: -90px;
	left: 0;
*/
	font-size: 24px;
	font-family: "TBゴシック SL", sans-serif;
}

#top_news dl {
	width: 800px;
	padding: 30px 0 0;
	margin: 0 auto 0 auto;
	text-align: left;
	font-size: 15px;
	min-height:1px;
	zoom:1;
	clear:both;
}

#top_news dl:after {
	content:".";
	display:block;
	clear:both;
	height:0px;
	visibility:hidden;
	font-size:0px;
}

#top_news dl dt {
	float: left;
	width: 11em;
	clear: right;
	margin: 0 0 15px;
	color: rgb(55, 173, 100);
}

#top_news dl dd {
	margin: 0 0 15px 11em;
}

#top_news dl + a {
	float: right;
	font-size: 12px;
	margin: 0 80px 0 0;
}

#top_video {
	padding: 90px 0;
}

#top_video h2 {
	margin: 0 0 50px;
	font-size: 34px;
	font-family: "TBゴシック SL", sans-serif;
}

#top_video h2 ruby rt {
	font-size: 9px;
}

#top_video .top_video {
  position: relative;
  margin: 0 auto;
  width: 800px;
  height: 450px;

}

#top_feature1,
#top_feature2,
#top_feature3,
#top_feature4 {
	/* text-shadow: 1px 1px 3px rgba(255,255,255,0.75); */
	text-align: left;
	min-height: 520px;
	margin: 0 0 10px;
}

#top_feature1 h2,
#top_feature2 h2,
#top_feature3 h2,
#top_feature4 h2 {
	margin: 0 0 10px;
	font-size: 32px;
	font-family: "TBゴシック SL", sans-serif;
}

#top_feature1 p,
#top_feature2 p,
#top_feature3 p,
#top_feature4 p {
	font-size: 17px;
	line-height: 1.8;
}

#top_feature1 p b,
#top_feature2 p b,
#top_feature3 p b,
#top_feature4 p b {
	text-decoration: underline;
	font-weight: normal;
}

#top_feature1 a.btn_green,
#top_feature2 a.btn_green,
#top_feature3 a.btn_green,
#top_feature4 a.btn_green {
	margin: 20px 0 0;
	text-shadow: none;
}

#top_feature1 {
	background: url(/images/top_feature1.jpg) no-repeat center center;
	background-size: cover;
	padding: 170px 0 0;
}

#top_feature2 {
	background: url(/images/top_feature2.jpg) no-repeat center center;
	background-size: cover;
	padding: 200px 0 0;
}

#top_feature2 h2 {
	width: 350px;
	float: right;
}

#top_feature2 p {
	width: 350px;
	clear: both;
	float: right;
}

#top_feature2 .inner div {
	float: right;
	clear: both;
	margin: 20px 0;
	width: 350px;
}

#top_feature2 a.btn_green {
	margin: 0 15px 0 0;
}

#top_feature2 a.top_app_btn {
	display: inline-block;
	width: 135px;
	height: 40px;
	vertical-align: bottom;
}

#top_feature3 {
	background: url(/images/top_feature3.jpg) no-repeat center center;
	background-size: cover;
	padding: 35px 0 0;
}

#top_feature4 {
	background: url(/images/top_feature4.jpg) no-repeat center center;
	background-size: cover;
	padding: 35px 0 0;
}

#top_feature4 h2 {
	width: 450px;
	float: right;
	margin-top: 10%;
}

#top_feature4 p {
	width: 450px;
	clear: both;
	float: right;
}

#top_feature4 .inner div {
	float: right;
	clear: both;
	margin: 20px 0;
	width: 450px;
}

#top_feature4 a.btn_green {
	margin: 0 15px 0 0;
}

#top_feature4 a.top_app_btn {
	display: inline-block;
	width: 135px;
	height: 40px;
	vertical-align: bottom;
}


#top_slide {
	margin: 30px auto 60px;
	max-height: 750px;
	overflow: hidden !important;
}

#top_slide a.btn_green {
	margin: 30px 5px;	
}

#top_case2 {
	background: url(/images/top_case.jpg) no-repeat center center;
	background-size: cover;
	min-height: 460px;
	margin: 0 0 10px;
}

#top_history {
	background: url(/images/top_history.jpg) no-repeat center center;
	background-size: cover;
	min-height: 460px;
}

#top_case2 h2,
#top_history h2 {
	padding: 50px 0;
	color: #fff;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.75);
	font-size: 32px;
	font-family: "TBゴシック SL", sans-serif;
}

#top_case2 p,
#top_history p {
	color: #fff;
	font-size: 18px;
	line-height: 1.8;
	letter-spacing: 0.1em;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.75);
	margin: 0 0 50px;
}

#top_case2 a.btn_green,
#top_history a.btn_green {
	width: 185px;
}

#top_media {
	padding: 70px 0;
	background: #f0f3f2;
}

#top_media h2 {
	font-size: 24px;
	font-family: "TBゴシック SL", sans-serif;
}

#top_media ul {
	width:960px;
	padding:0 15px;
	margin:40px auto 0;
	text-align: center;
	overflow: hidden;
}

#top_media ul li {
	display: block;
	margin: 0 auto 40px;
	line-height: 1;
}

#top_media ul li:nth-child(1) { margin-right: 100px; font-size: 31px; }
#top_media ul li:nth-child(2) { margin-right: -300px; font-size: 42px; }
#top_media ul li:nth-child(3) { margin-right: 280px; font-size: 24px; }
#top_media ul li:nth-child(4) { margin-right: -60px; font-size: 42px; }

#top_media ul li:last-child { margin-bottom: 0; }

#top_media ul li blockquote {
	display: inline-block;
	position: relative;
	text-align: left;
	font-family: "TBゴシック M", sans-serif;
}

#top_media ul li blockquote:before {
    content: "“";
    font-size: 80px;
    color: rgba(149,183,177,1);
    float: left;
    margin: 0 10px 0 0;
    position: absolute;
    left: -40px;
    top: -5px;
}

#top_media ul li blockquote:after {
    content: "”";
    font-size: 80px;
    color: rgba(160,200,174,1);
    float: right;
    margin: 0 0 0 10px;
    position: absolute;
	right: -40px;
    top: -5px;
}

#top_media ul li a {
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	-ms-transition: 0.2s;
	transition: 0.2s;
}

#top_media ul li blockquote span {
	display: block;
	text-align: left;
	letter-spacing: 0.1em;
	font-size: 12px;
	margin: 10px 0 0;
}

/* ------------------------------------------------------------ SECONDPAGE ------------------------------------------------------------ */

.second_ttl h2 {
	font-size: 34px;
}

.second_detail {
	text-align: center;
}

.second_detail h3 {
	display: inline-block;
	height: 60px;
	line-height: 58px;
 	margin: 150px 0 0;
 	padding: 0 50px;
 	min-width: 50%;
	font-size: 30px;
	font-family: "TBゴシック SL", sans-serif;
  	color: rgb(55, 173, 100);
	border: 2px solid rgb(55, 173, 100);
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
}

.second_detail h4 {
	font-size: 24px;
	margin: 50px 0 0;
}

.second_detail p {
	margin: 30px 0;
	font-size: 15px;
}

.second_detail h4 + p {
	margin: 25px 0 50px;
}

.second_detail p span {
	font-size: 11px;
}

.second_detail p a {
	color: rgb(55, 173, 100);
	display: inline-block;
	margin: 30px 0 0;
	font-size: 108%;
}

.second_detail p.p_ex {
	font-size: 12px;
	text-align: right;
	margin-bottom: 0;
}

.second_detail p.p_ex a {
	margin: 0;
	font-size: 12px;
}

.second_detail p.p_ex a:focus			{ color:#000; text-decoration:underline; }
.second_detail p.p_ex a:link			{ color:#000; text-decoration:underline; }
.second_detail p.p_ex a:link:hover		{ color:#bfc9c6; text-decoration:none; }
.second_detail p.p_ex a:link:active		{ color:#bfc9c6; text-decoration:none; }
.second_detail p.p_ex a:visited			{ color:#000; text-decoration:underline; }
.second_detail p.p_ex a:visited:hover	{ color:#bfc9c6; text-decoration:none; }
.second_detail p.p_ex a:visited:active	{ color:#bfc9c6; text-decoration:none; }

.second_detail .second_video {
	margin: 60px 0 0;
}

/*--------------------------------
	特長
--------------------------------*/

.feature_ttl1 {
	background: url(/feature/images/feature_ttl1.jpg) no-repeat center center;
	background-size: cover;
	padding: 50px 0 0;
	min-height: 500px;
	max-height: 600px;
	text-align: left;
}

.feature_ttl2 {
	background: url(/feature/images/feature_ttl2.jpg) no-repeat center center;
	background-size: cover;
	padding: 50px 0 0;
	margin: 100px auto 0;
	min-height: 600px;
	text-align: left;
}

@media screen and (min-width:1350px) {
	.feature_ttl2 .inner {
		width: 74%;
	}
}

.feature_ttl1 h2,
.feature_ttl2 h2 {
	margin: 0 0 10px;
	font-size: 32px;
	font-family: "TBゴシック SL", sans-serif;
}

.feature_ttl1 p,
.feature_ttl2 p {
	font-size: 17px;
	line-height: 1.8;
}

.feature_ttl1 h2 {
	margin: 200px 0 10px;
}

.feature_ttl2 h2 {
	margin: 250px 0 10px;
	width: 330px;
	float: right;
}

.feature_ttl2 p {
	width: 330px;
	float: right;
	clear: both;
}

.feature_wscan {
	min-height:1px;
	zoom:1;
	clear:both;
}

.feature_wscan:after {
	content:".";
	display:block;
	clear:both;
	height:0px;
	visibility:hidden;
	font-size:0px;
}

.feature_wscan p {
	display: block;
	float: left;
	width: 30%;
}

.feature_wscan p:first-child {
	width: 40%;
}

/*--------------------------------
	楽しみ方
--------------------------------*/

.fun_ttl1 {
	background: url(/fun/images/fun_ttl.jpg) no-repeat center center;
	background-size: cover;
	padding: 50px 0 0;
	min-height: 500px;
	max-height: 600px;
	text-align: left;
}

.fun_scene_ttl {
	background: url(/fun/scene/images/fun_ttl.jpg) no-repeat center center;
	background-size: cover;
	padding: 50px 0 0;
	min-height: 500px;
	max-height: 600px;
	text-align: left;
}

@media screen and (min-width:1350px) {
	.fun_ttl1 .inner,
	.fun_scene_ttl .inner,{
		width: 74%;
	}
}

.fun_ttl1 h2 {
	margin: 0 0 10px;
	font-size: 32px;
	font-family: "TBゴシック SL", sans-serif;
}

.fun_ttl1 p {
	font-size: 17px;
	line-height: 1.8;
}

.fun_scene_ttl h2 {
        margin: 7% 0 0 50%;
	font-size: 32px;
	font-family: "TBゴシック SL", sans-serif;
	}

.fun_scene_ttl p {
        margin-left: 50%;
	font-size: 17px;
	line-height: 1.8;
	}


.fun_detail {
	width:990px;
	padding:0 15px;
	margin:0 auto;
}

.fun_detail h3 {
	display: inline-block;
	padding: 0 50px;
	color: rgb(55, 173, 100);
	height: 60px;
	line-height: 58px;
 	margin: 150px 0 0;
	font-size: 30px;
	font-family: "TBゴシック SL", sans-serif;
	border: 2px solid rgb(55, 173, 100);
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
}

.fun_detail h4 {
	color: rgb(55, 173, 100);
	font-size: 17px;
	margin: 30px 0 0;
}

.fun_detail p {
	font-size: 15px;
	margin: 30px 0;
}

.fun_detail p.b {
	color: rgb(55, 173, 100);
	margin: 10px 0 0;
}

.fun_detail a {
	color: rgb(55, 173, 100);
	font-size: 85%;
	display: inline-block;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	-ms-transition: 0.2s;
	transition: 0.2s;
}

.fun_detail a:hover img {
	opacity: 0.7;
}

.fun_detail a span {
	display: block;
	margin: 5px auto;
	font-size: 16px;
}

.fun_detail ul {
	margin: 50px auto 0;
	letter-spacing: -1em;
	min-height:1px;
	zoom:1;
	clear:both;
}

.fun_detail ul:after {
	content:".";
	display:block;
	clear:both;
	height:0px;
	visibility:hidden;
	font-size:0px;
}

.fun_detail ul li {
	width: 25%;
	font-size: 12px;
	display: inline-block;
	text-align: center;
	letter-spacing: 0;
	vertical-align: top;
}

.fun_detail ul li a {
	color: #000;
	font-size: 100%;
}

.fun_detail ul li a img {
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	border: 1px solid #dfe3e2;
	display: inline-block;
}

.fun_detail ul li a p {
	font-size: 100%;
	margin: 20px auto;
}

.fun_detail ul li a b {
	display: block;
	margin: 10px 0;
	font-size: 17px;
}

.fun_detail ul.fun_strage li {
	width: 30%;
}

.fun_detail ul.fun_strage li img {
	border: none;
}

.fun_detail .fun_ex {
	max-width: 740px;
	width: 100%;
	border: 1px solid rgb(55, 173, 100);
	padding: 30px 20px;
	margin: 150px auto 100px;
}

.fun_detail .fun_ex h4 {
	margin: 0 auto 20px;
	font-size: 20px;
}

.fun_detail .fun_ex p {
	margin: 0 auto 20px;
}

.fun_detail .fun_ex p a {
	font-size: 15px;
}

/*--------------------------------
	使いかた
--------------------------------*/

.manual_navi {
	padding: 50px 0 0;
}

.manual_contents + .manual_navi {
	padding: 0 0 100px;
}

.manual_navi ul {
	min-height:1px;
	zoom:1;
	clear:both;
}

.manual_navi ul:after {
	content:".";
	display:block;
	clear:both;
	height:0px;
	visibility:hidden;
	font-size:0px;
}

.manual_navi ul li {
	display: inline-block;
	margin: 0 10px;
	font-size: 17px;
	width: 150px;
}

.manual_navi ul li a {
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	-ms-transition: 0.2s;
	transition: 0.2s;
}

.manual_navi ul li a:focus			{ color:rgb(55, 173, 100); }
.manual_navi ul li a:link			{ color:rgb(55, 173, 100); }
.manual_navi ul li a:link:hover		{ color:rgba(160,200,174,1); }
.manual_navi ul li a:link:active	{ color:rgba(160,200,174,1); }
.manual_navi ul li a:visited		{ color:rgb(55, 173, 100); }
.manual_navi ul li a:visited:hover	{ color:rgba(160,200,174,1); }
.manual_navi ul li a:visited:active	{ color:rgba(160,200,174,1); }

.manual_navi ul li span {
	display: block;
	position: relative;
	margin: 0 auto 10px;
	width: 70px;
	height: 70px;
}

.manual_navi ul li img {
	width: 100%;
	height: auto;
}

.manual h2 {
	margin: 0 auto 60px;
	display: inline-block;
 	padding: 0 50px;
 	min-width: 50%;
	color: rgb(55, 173, 100);
	height: 60px;
	line-height: 58px;
	font-size: 30px;
	font-family: "TBゴシック SL", sans-serif;
	border: 2px solid rgb(55, 173, 100);
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
}

.manual_contents {
	width: 800px;
	min-width: 800px;
	margin: 0 auto;
	padding: 100px 0;
}

.manual_contents .large_top {
	text-align: left;
	font-size: 15px;
	margin: 0 0 60px;
}

.manual_contents .large_top img {
	float: right;
	margin: 0 0 30px 30px;
	max-width: 450px;
	height: auto;
}

.manual_contents .large_top p span {
	display: block;
	font-size: 12px;
	margin: 10px 0 0;
}

.manual_contents div {
	margin: 0 auto 60px;
	min-height:1px;
	zoom:1;
	clear:both;
}

.manual_contents div:after {
	content:".";
	display:block;
	clear:both;
	height:0px;
	visibility:hidden;
	font-size:0px;
}

.manual_contents .manual_flow h3 {
	width: 200px;
	height: 34px;
	padding: 0 17px 0 30px;
	margin: 0 0 15px;
	line-height: 30px;
	float: left;
	position: relative;
	color: rgb(55, 173, 100);
	font-size: 18px;
	border: 2px solid rgb(55, 173, 100);
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.manual_contents .manual_flow h3 span {
	display: inline-block;
	height: 100%;
	width: 34px;
/* 	border-right: 2px solid rgb(55, 173, 100); */
	position: absolute;
	left: 0;
}

.manual_contents .manual_flow img {
	display: block;
	float: right;
	border: 1px solid #dfe3e2;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.manual_contents .manual_flow p {
	float: left;
	clear: left;
	text-align: left;
	font-size: 15px;
}

.manual_contents .manual_flow p span {
	font-size: 12px;
	display: block;
	margin: 10px 0 0;
}

.manual_contents .manual_flow p a {
	border-bottom: 1px solid rgb(55, 173, 100);
}

.manual_contents .manual_flow p a:hover {
	border: none;
}

.manual_contents .manual_ex {
	border: 1px solid rgb(55, 173, 100);
	padding: 30px 20px;
	margin: 80px auto;
	width: 100%;
	min-height:1px;
	zoom:1;
	clear:both;
}

.manual_contents .manual_ex:after {
	content:".";
	display:block;
	clear:both;
	height:0px;
	visibility:hidden;
	font-size:0px;
}

.manual_ex h4 {
	color: rgb(55, 173, 100);
	font-size: 15px;
	margin: 0 0 10px;
}

.manual_ex p {
	margin: 0 0 20px;
}

.manual_ex ul {
	margin: 0 auto;
	min-height:1px;
	zoom:1;
	clear:both;
}

.manual_ex ul:after {
	content:".";
	display:block;
	clear:both;
	height:0px;
	visibility:hidden;
	font-size:0px;
}

.manual_ex ul > li {
	float: left;
	width: 48%;
	margin: 0 1%;
}

.manual_ex ul > li img {
	margin: 0 5px;
}

.manual_ex ul > li h4 {
	background: #f0f3f2;
	padding: 3px;
	margin: 0 0 15px;
}

.manual_ex ul > li > ol.manuel_ex_day {
	text-align: left;
	padding: 0 0 0 20px;
	margin: 0 0 20px;
}

.manual_ex ul > li > ol.manuel_ex_day li {
	list-style: disc;
}

.manual_ex ul ol.manuel_ex_img li {
	float: left;
	width: 50%;
	text-align: center;
}

.manual_ex ul ol.manuel_ex_img li p {
	text-align: center;
	font-size: 11px;
}

.manual_contents .manual_ex > div {
	width: 60%;
	margin: 30px auto 0;
}

.manual_contents .manual_ex > div img {
	float: right;
	margin: 0 0 20px 20px;
}

.manual_contents .manual_ex > div p {
	text-align: left;
}

.manual_contents .manual_ex > div p span {
	color: rgb(55, 173, 100);
	display: block;
}

.manual_contents .manual_ex > div p span em {
	color: #ade6c7;
}

.manual_next {
	text-align: left;
}

.manual_next p {
	font-size: 15px;
	color: rgb(55, 173, 100);
	float: none;
	text-align: right;
	margin: 0;
}

.manual_next a {
	border-bottom: 1px solid rgb(55, 173, 100);
}

.manual_next a:hover {
	border: none;
}

.manual_contents .manual_edit h3 {
	width: 180px;
	height: 34px;
	margin: 0 0 15px;
	line-height: 30px;
	float: left;
	position: relative;
	color: rgb(55, 173, 100);
	font-size: 18px;
	border: 2px solid rgb(55, 173, 100);
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.manual_contents .manual_edit h3 img {
	display: inline-block;
	float: left;
	margin: 0;
}

.manual_contents .manual_edit img {
	display: block;
	float: right;
	margin: 0 100px 0 0;
}

.manual_contents .manual_edit p {
	float: left;
	clear: left;
	text-align: left;
	font-size: 15px;
}

.manual_contents .manual_edit p img {
	margin: 20px 0;
	float: none;
}

.manual_contents .print_top {
	margin: 0 0 60px;
}

.manual_contents .print_top p {
	text-align: left;
	font-size: 15px;
}

.manual_contents .print_top span {
	display: block;
	font-size: 85%;
	margin: 10px 0 0;
}

.manual_contents .print_top p a {
	display: inline-block;
	margin: 20px 0 0;
}

.manual_contents .print_top p a:focus			{ color:rgb(55, 173, 100); }
.manual_contents .print_top p a:link			{ color:rgb(55, 173, 100); }
.manual_contents .print_top p a:link:hover		{ color:rgba(160,200,174,1); }
.manual_contents .print_top p a:link:active	{ color:rgba(160,200,174,1); }
.manual_contents .print_top p a:visited		{ color:rgb(55, 173, 100); }
.manual_contents .print_top p a:visited:hover	{ color:rgba(160,200,174,1); }
.manual_contents .print_top p a:visited:active	{ color:rgba(160,200,174,1); }

.manual_contents .print_top img {
	float: right;
	margin: 0 0 30px 30px;
	height: auto;
}

.manual_contents .print_flow h3 {
	width: 180px;
	height: 34px;
	padding: 0 17px 0 30px;
	margin: 0 0 15px;
	line-height: 30px;
	float: left;
	position: relative;
	color: rgb(55, 173, 100);
	font-size: 18px;
	border: 2px solid rgb(55, 173, 100);
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.manual_contents .print_flow h3 span {
	display: inline-block;
	height: 100%;
	width: 34px;
	position: absolute;
	left: 0;
}

.manual_contents .print_flow img {
	display: block;
	float: right;
	margin: 0 0 20px;
}

.manual_contents .print_top + .print_flow p + img {
	margin: 0 120px 0 0;
}

.manual_contents .print_flow h4 {
	float: left;
	clear: both;
	font-size: 16px;
	font-weight: bold;
	color: rgb(55, 173, 100);
	margin: 10px 0 5px;
}

.manual_contents .print_flow p {
	float: left;
	clear: left;
	width: 300px;
	text-align: left;
	font-size: 15px;
}

#print_detail h3 {
	color: rgb(55, 173, 100);
	font-size: 17px;
	text-align: left;
	margin: 60px 0 20px;
}

#print_detail h3 span {
	display: inline-block;
	margin: 0 0 0 10px;
	color: #636363;
}

#print_detail table {
	border: 1px solid #dfe3e2;
	width: 100%;
	margin: 0 0 20px;
	font-size: 15px;
}

#print_detail th {
	background: #daf5e4;
	width: 33.3333333%;
	border: 1px solid #dfe3e2;
	text-align: center;
	vertical-align: middle;
	padding: 5px 0;
}

#print_detail td {
	width: 33.3333333%;
	border: 1px solid #dfe3e2;
	text-align: center;
	vertical-align: middle;
	padding: 5px 0;
}

#print_detail table br {
	display: none;
}

#print_detail table + p {
	text-align: left;
}

#print_detail h3 + p {
	border: 2px solid #dfe3e2;
	padding: 10px 15px;
	text-align: left;
	font-size: 15px;
}

/*--------------------------------
	仕様
--------------------------------*/

.spec {
	padding: 30px 0;
}

.spec h2 {
	margin: 40px 0 30px;
	display: inline-block;
 	padding: 0 50px;
 	min-width: 50%;
	color: rgb(55, 173, 100);
	height: 60px;
	line-height: 58px;
	font-size: 30px;
	font-family: "TBゴシック SL", sans-serif;
	border: 2px solid rgb(55, 173, 100);
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
}

.spec h2 + img {
	display: block;
	margin: 0 auto 30px;
}

.spec table {
	border: 1px solid #dfe3e2;
	width: 100%;
	margin: 0 0 100px;
}

.spec table tr {
	width: 100%;
	border-bottom: 1px solid #dfe3e2;
}

.spec table td {
	border-right: 1px solid #dfe3e2;
	padding: 5px;
	vertical-align: middle;
}

.spec table td:first-child {
	width: 25%;
	vertical-align: middle;
}

.spec table tr:last-child td:last-child {
	font-size: 12px;
	padding: 10px 0;
}

.spec table tr:last-child td:last-child a img {
	margin: 10px;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	-ms-transition: 0.2s;
	transition: 0.2s;
}

.spec table tr:last-child td:last-child a img:hover {
	opacity: 0.7;
}

.spec table tr:last-child td:last-child a:nth-of-type(1) img {
	width: 200px;
	height: auto;
	margin: 35px 10px;
}

.spec table tr:last-child td:last-child a:nth-of-type(2) img,
.spec table tr:last-child td:last-child a:nth-of-type(3) img {
	width: 130px;
	height: auto;
}

.spec table tr:last-child td:last-child p {
	display: block;
	text-align: right;
	margin: 10px 10px 0;
}

.spec_app {
	vertical-align: bottom;
	margin: 0 auto 30px auto;
}

.spec_app a:first-child img {
	border: 2px solid rgb(55, 173, 100);
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	display: inline-block;
	margin:0 10px 0 0;
}

.spec_ex {
	text-align: left;
	font-size: 12px;
	margin: 60px 0 50px;
}

.award {
	font-size: 0;
	width: 100%;
	text-align: left;
	margin: 30px auto 0;
}

.award li {
	display: inline-block;
	width: 300px;
	height: auto;
	margin: 0 45px 60px 0;
	font-size: 13px;
	vertical-align: top;
	text-align: center;
}

.award li:nth-of-type(3n){
	margin: 0 0 60px;
}

.award li h3 {
	font-size: 16px;
	font-weight: bold;
	font-family: "TBUDゴシック B", sans-serif;
	letter-spacing: 0.05em;
}

.award li h3 a {
	display: block;
}

.award li p {
	margin: 15px 0 0;
	text-align: left;
}

.award li p a {
	display: block;
}

/*--------------------------------
	活用事例
--------------------------------*/

.case_slide ul li a p {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 800px;
	margin: 0 0 0 -400px;
	font-size: 26px;
	text-align: left;
	color:#fff;
	text-shadow: 1px 1px 5px rgba(0,0,0,1), 0px 0px 10px rgba(0,0,0,0.5);
	font-family: "TBゴシック M", sans-serif;
	-webkit-font-smoothing: antialiased;
}

.case_slide ul li a p span {
	display: block;
	margin: 20px 0 0;
	font-size: 18px;
}

.case_slide ul li a p span small {
	display: inline-block;
	font-size: 13px;
	margin: 0 3px;
}

.case_slide .bx-wrapper {
	margin: 0 auto;
}

.case_slide .bx-wrapper .bx-prev {
	left: 30px;
	background: url(/common/images/slides_left_w.png) no-repeat;
}

.case_slide .bx-wrapper .bx-next {
	right: 30px;
	background: url(/common/images/slides_right_w.png) no-repeat;
}

.case_slide .bx-wrapper .bx-pager {
	color: #fff;
	position:absolute;
	width: auto;
	bottom: 20px;
	right: 20px; 
}

.case_slide .bx-wrapper .bx-pager.bx-default-pager a {
	background: #fff;
	width: 10px;
	height: 10px;
	margin: 0 8px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.case_slide .bx-wrapper .bx-pager.bx-default-pager a:hover,
.case_slide .bx-wrapper .bx-pager.bx-default-pager a.active {
	background: rgb(55, 173, 100);
}

.case_ttl {
	height: 260px;
	padding: 30px 0 0;
	font-family: "TBゴシック SL", sans-serif;
	text-align: center;
	background: #EFEFEF;
	min-height:1px;
	zoom:1;
	clear:both;
}

.case_ttl:after {
	content:".";
	display:block;
	clear:both;
	height:0px;
	visibility:hidden;
	font-size:0px;
}

.case_ttl .inner {
	position: relative;
}

.case_ttl .inner > h2 {
	font-size: 28px;
	margin: 0 auto 30px;
}

.case_ttl .inner > p {
	font-size: 24px;
}

.case_ttl .case_top_sp {
	position: absolute;
	right: 0;
	top: 0;
	width: 200px;
	height: 200px;
	background: #fff;
	padding: 30px 0 0;
	line-height: 1.5;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;	
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	-ms-transition: 0.2s;
	transition: 0.2s;
}

.case_ttl .case_top_sp:hover {
	opacity: 0.7;
}

.case_ttl .case_top_sp a {
	display: block;
	width: 100%;
	height: 100%;
}

.case_ttl .case_top_sp img {
	width: 39px;
	height: auto;
}

.case_ttl .case_top_sp h3 {
	font-size: 16px;
	color: rgb(55, 173, 100);
}

.case_ttl .case_top_sp h3 small {
	font-size: 12px;
	display: inline-block;
	margin: 0 5px 0 0;
}

.case_ttl .case_top_sp p {
	margin: 10px 0;
}

.case_top {
	background: #EFEFEF;
}

.case_top .case_library .inner > h3 {
	display: none;
}

.case_top .case_library ul {
	width: 100%;
	min-height:1px;
	zoom:1;
	clear:both;
}

.case_top .case_library ul:after {
	content:".";
	display:block;
	clear:both;
	height:0px;
	visibility:hidden;
	font-size:0px;
}

.case_top .case_library ul li {
	float: left;
	width: 300px;
	margin: 0 30px 30px 0;
}

.case_top .case_library ul li:nth-of-type(3n) {
	margin: 0 0 30px;
}

.case_top .case_library ul li a {
	position: relative;
	display: block;
	background: #fff;
	overflow: hidden;
	text-align: left;
	line-height: 0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	-ms-transition: 0.2s;
	transition: 0.2s;
}

.case_top .case_library ul li a:focus				{ color:#333; }
.case_top .case_library ul li a:link				{ color:#333; }
.case_top .case_library ul li a:link:hover		{ color:#333; }
.case_top .case_library ul li a:link:active		{ color:#333; }
.case_top .case_library ul li a:visited			{ color:#333; }
.case_top .case_library ul li a:visited:hover		{ color:#333; }
.case_top .case_library ul li a:visited:active	{ color:#333; }

.case_top .case_library ul li a:hover {
	opacity: 0.7;
}

.case_top .case_library ul li.case_new a:before {
	content: "";
	width: 60px;
	height: 60px;
	background: url(/case/images/icon_new.png) no-repeat center center;
	background-size: contain;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 998;
	-moz-border-radius: 5px 0 0 0;
	-webkit-border-radius: 5px 0 0 0;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
	-webkit-animation:blink 1.5s ease-in-out infinite alternate;
    -moz-animation:blink 1.5s ease-in-out infinite alternate;
    animation:blink 1.5s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0.2;}
    30% {opacity: 1;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0.2;}
    30% {opacity: 1;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0.2;}
    30% {opacity: 1;}
    100% {opacity:1;}
}
/*
@keyframes blink {
  75% { opacity: 0; }
}
@-webkit-keyframes blink {
  75% { opacity: 0; }
}
*/

.case_top .case_library ul li a > img {
	width: 100%;
	height: auto;
}

.case_top .case_library ul li a h3 {
	padding: 10px;
	height: 75px;
	font-size: 16px;
	line-height: 1.8;
}

.case_top .case_library ul li a div {
	padding: 10px;
	border-top: 1px solid #EFEFEF;
	line-height: 1.8;
	min-height:1px;
	zoom:1;
	clear:both;
}

.case_top .case_library ul li a div:after {
	content:".";
	display:block;
	clear:both;
	height:0px;
	visibility:hidden;
	font-size:0px;
}

.case_top .case_library ul li a div img {
	float: left;
	width: 80px;
	height: auto;
	margin: 0 15px 0 0;
}

.case_top .case_library ul li a div p {
	display: inline-block;
	font-size: 15px;
	margin: 15px 0 0;
}

.case_top .case_library ul li a div p em {
	font-size: 12px;
	color: #898989;
	display: block;
}

.case_top .case_library ul li a div p small {
	font-size: 12px;
}

.case_top .case_library ul li > p {
	color: rgb(55, 173, 100);
	margin: 5px 0 0;
	font-size: 12px;
}

.case_top > p {
	padding: 60px 0;
	font-size: 24px;
}

.case_detail_top {
	width: 100%;
	padding: 50px 0 0;
	min-height: 500px;
	max-height: 600px;
}

.case_1 { background: url(/case/images/detail1_top.jpg) no-repeat center top; background-size: cover; }
.case_2 { background: url(/case/images/detail2_top.jpg) no-repeat center top; background-size: cover; }
.case_3 { background: url(/case/images/detail3_top.jpg) no-repeat center top; background-size: cover; }
.case_4 { background: url(/case/04/images/case_top.jpg) no-repeat center top; background-size: cover; }
.case_5 { background: url(/case/05/images/case_top.jpg) no-repeat center top; background-size: cover; }
.case_6 { background: url(/case/06/images/case_top.jpg) no-repeat center top; background-size: cover; }
.case_7 { background: url(/case/07/images/case_top.jpg) no-repeat center top; background-size: cover; }
.case_8 { background: url(/case/08/images/case_top.jpg) no-repeat center top; background-size: cover; }
.case_9 { background: url(/case/09/images/case_top.jpg) no-repeat center top; background-size: cover; }
.case_10 { background: url(/case/10/images/case_top.jpg) no-repeat center top; background-size: cover; }
.case_11 { background: url(/case/11/images/case_top.jpg) no-repeat center top; background-size: cover; }
.case_12 { background: url(/case/12/images/case_top.jpg) no-repeat center top; background-size: cover; }
.case_13 { background: url(/case/13/images/case_top.jpg) no-repeat center top; background-size: cover; }

.case_detail_top h2 {
	width: 700px;
	margin: 0 auto;
	padding: 200px 0 0;
	font-size: 26px;
	text-align: left;
	color:#fff;
	text-shadow: 1px 1px 5px rgba(0,0,0,1), 0px 0px 10px rgba(0,0,0,0.5);
	-webkit-font-smoothing: antialiased;
}

.case_detail_top.case_child h2 {
	padding: 150px 0 0;
	color:#000;
	text-shadow: 0px 0px 5px rgba(255,255,255,1), 0px 0px 8px rgba(255,255,255,1), 0px 0px 8px rgba(255,255,255,1);
}

.case_detail_top.case_family h2 {
	padding: 150px 0 0;
}

.case_detail_top h2 span {
	display: block;
	margin: 20px 0 0;
	font-size: 18px;
}

.case_detail_top h2 span small {
	font-size: 13px;
	display: inline-block;
	margin: 0 10px 0 0;
}

.case_detail_txt {
	width: 700px;
	padding: 80px 0;
	margin: 0 auto;
}

.case_detail_txt h3 {
	font-size: 24px;
	text-align: center;
	margin: 0 0 30px;
}

.case_detail_txt p {
	font-size: 17px;
	text-align: left;
}

.case_detail_txt p small {
	font-size: 13px;
}

.case_detail_txt p a:focus			{ color:#000; text-decoration:underline; }
.case_detail_txt p a:link			{ color:#000; text-decoration:underline; }
.case_detail_txt p a:link:hover		{ color:#bfc9c6; text-decoration:none; }
.case_detail_txt p a:link:active	{ color:#bfc9c6; text-decoration:none; }
.case_detail_txt p a:visited		{ color:#000; text-decoration:underline; }
.case_detail_txt p a:visited:hover	{ color:#bfc9c6; text-decoration:none; }
.case_detail_txt p a:visited:active	{ color:#bfc9c6; text-decoration:none; }

.case_detail_txt p span {
	display: block;
	text-align: right;
	font-size: 13px;
	margin: 20px 0 0;
}

.case_detail_img img {
	width: 100%;
	height: auto;
}

.case_detail_movie video {
	width: 100%;
	height: auto;
}

.case_detail_person,
.case_detail_link {
	padding: 30px 0;
	border-bottom: 1px solid #ccc;
}

.case_detail_link .inner > div,
.case_detail_person .inner > div {
	float: left;
	width: 48%;
	text-align: left;
	min-height:1px;
	zoom:1;
}

.case_detail_link .inner > div:after,
.case_detail_person .inner > div:after {
	content:".";
	display:block;
	clear:both;
	height:0px;
	visibility:hidden;
	font-size:0px;
}

.case_detail_link .inner > div:first-child,
.case_detail_person .inner > div:first-child {
	margin: 0 4% 0 0;
}

.case_detail_person .inner > div p {
	font-size: 18px;
	margin: 0 0 20px;
	line-height: 1.6;
	overflow: auto;
}

.case_detail_person .inner > div p span {
	font-size: 12px;
}

.case_detail_person .inner > div p:nth-of-type(2) {
	font-size: 14px;
	margin: 0;
}

.case_detail_person .inner > div p:nth-of-type(2) a {
	text-decoration: underline;
}

.case_detail_link .inner > div a {
	display: inline-block;
	float: left;
	margin: 0 15px 0 0;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	-ms-transition: 0.2s;
	transition: 0.2s;
}

.case_detail_link .inner > div a:hover {
	opacity: 0.7;
}

.case_detail_person .inner > div img {
	float: left;
	margin: 0 15px 0 0;
}

.case_detail_person .inner > div:nth-of-type(2) img {
	border: 1px solid #ccc;
}

.case_detail .case_library {
	padding: 60px 0 30px;
	border-bottom: 1px solid #ccc;
}

.case_detail .case_library .inner > h3 {
	color: rgb(55, 173, 100);
	background: #F0F3F2;
	font-size: 24px;
	margin: 0 auto 30px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.case_detail .case_library ul li {
	float: left;
	width: 225px;
	margin: 0 20px 30px 0;
	text-align: left;
}

.case_detail .case_library ul li:nth-of-type(4n) {
	margin: 0 0 30px;
}

.case_detail .case_library ul li a {
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	-ms-transition: 0.2s;
	transition: 0.2s;
}

.case_detail .case_library ul li a:hover {
	opacity: 0.7;
}

.case_detail .case_library ul li a img {
	width: 100%;
	height: auto;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.case_detail .case_library ul li a h3 {
	line-height: 1.6;
	margin: 0 0 5px;
}

.case_detail .case_library ul li p small {
	font-size: 12px;
}

.case_detail .case_library ul li a div img,
.case_detail .case_library ul li a div p em,
.case_detail .case_library ul li > p {
	display: none;
}

/*--------------------------------
	 ヒストリー
--------------------------------*/

.history {
	padding: 0;
}

.history > div {
	width: 100%;
	margin: 0;
	background: #efefef;
	position: relative;
}

.history > div span {
	font-size: 0;
	width: 100px;
	height: 100%;
	overflow: hidden;
	position: absolute;
	left: 30px;
	top: 0;
	z-index: 900;
}

.history .his_img {
	min-height: 550px;
	max-height: 600px;
	position: relative;
}

.history h2 {
	font-size: 28px;
	font-family: "TBゴシック SL", sans-serif;
	color: #fff;
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: 30px;
}

.history .his_txt {
	width: 100%;
	max-width: 990px;
	margin: auto;
	padding: 70px 0;
	color: #3b3b3b;
	font-size: 17px;
}

.history .his_txt h3 {
	margin: 0 0 30px;
	font-size: 24px;
}

.history .history_2010 .his_img {
	background: url(/history/images/history01.jpg) no-repeat center center;
	background-size: cover;
}

.history .history_2010 span {
	background: url(/history/images/his_2010.png) no-repeat center top;
}

.history .history_2011 .his_img {
	background: url(/history/images/history02.jpg) no-repeat center center;
	background-size: cover;
}

.history .history_2011 span {
	background: url(/history/images/his_2011.png) no-repeat center top;
}

.history .history_2013 .his_img {
	background: url(/history/images/history03.jpg) no-repeat center center;
	background-size: cover;
}

.history .history_2013 span {
	background: url(/history/images/his_2013.png) no-repeat center top;
}

.history .history_2015 .his_img {
	background: url(/history/images/history04.jpg) no-repeat center center;
	background-size: cover;
}

.history .history_2015 span {
	background: url(/history/images/his_2015.png) no-repeat center top;
}

.history .history_2016 .his_img {
	background: url(/history/images/history05.jpg) no-repeat center center;
	background-size: cover;
}

.history .history_2016 span {
	background: url(/history/images/his_2016.png) no-repeat center top;
}

.history_next .his_img {
	background: url(/history/images/history06.jpg) no-repeat center center;
	background-size: cover;
}

.history .history_next span {
	background: url(/history/images/his_next.png) no-repeat center top;
}

/*--------------------------------
	購入する
--------------------------------*/

.second_buy {
	padding: 50px 0 0;
}

.second_buy a:focus				{ color:rgb(55, 173, 100); text-decoration: underline; }
.second_buy a:link				{ color:rgb(55, 173, 100); text-decoration: underline; }
.second_buy a:link:hover		{ color:rgba(160,200,174,1); }
.second_buy a:link:active		{ color:rgba(160,200,174,1); }
.second_buy a:visited			{ color:rgb(55, 173, 100); text-decoration: underline; }
.second_buy a:visited:hover		{ color:rgba(160,200,174,1); }
.second_buy a:visited:active	{ color:rgba(160,200,174,1); }

.second_buy h2 {
	text-align: center;
	margin: 150px 0 40px;
	display: inline-block;
 	padding: 0 50px;
 	min-width: 50%;
	color: rgb(55, 173, 100);
	height: 60px;
	line-height: 58px;
	font-size: 30px;
	font-family: "TBゴシック SL", sans-serif;
	border: 2px solid rgb(55, 173, 100);
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
}

.second_buy h2.border {
	border-bottom: solid 1px #dfe3e2;
}

.second_buy h2 span {
	font-size: 14px;
	margin-left: 10px;
}

.second_buy h2 + p {
	margin: 0 0 30px;
	font-size: 15px;
}

.second_buy .second_buy_shop {
	width: 330px;
	margin: 10px 0;
	font-size: 0;
}

.second_buy .second_buy_shop a {
	width: 49%;
	margin: 0 0 10px;
	display: inline-block;
	font-size: 13px;
	background: rgb(55, 173, 100);
	height: auto;
	padding:15px 0;
	text-align: center;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;

	border: 2px solid rgb(55, 173, 100);
}

.second_buy .second_buy_shop a:nth-child(2n+1) {
	margin: 0 2% 10px 0;
}

.second_buy .second_buy_shop a:nth-child(4) {
	background-color: #fff;
	color: #37ad64;
}

.second_buy .second_buy_shop a:hover {
	background: #ccc;
	border: 2px solid #ccc;
}

.second_buy .second_buy_shop a:focus			{ color:#fff; text-decoration:none; }
.second_buy .second_buy_shop a:link				{ color:#fff; text-decoration:none; }
.second_buy .second_buy_shop a:link:hover		{ color:#fff; text-decoration:none; }
.second_buy .second_buy_shop a:link:active		{ color:#fff; text-decoration:none; }
.second_buy .second_buy_shop a:visited			{ color:#fff; text-decoration:none; }
.second_buy .second_buy_shop a:visited:hover	{ color:#fff; text-decoration:none; }
.second_buy .second_buy_shop a:visited:active	{ color:#fff; text-decoration:none; }

.second_buy .second_buy_shop a:nth-child(4):focus			{ color:#37ad64; text-decoration:none; }
.second_buy .second_buy_shop a:nth-child(4):link			{ color:#37ad64; text-decoration:none; }
.second_buy .second_buy_shop a:nth-child(4):link:hover		{ color:#fff; text-decoration:none; }
.second_buy .second_buy_shop a:nth-child(4):link:active		{ color:#fff; text-decoration:none; }
.second_buy .second_buy_shop a:nth-child(4):visited			{ color:#37ad64; text-decoration:none; }
.second_buy .second_buy_shop a:nth-child(4):visited:hover	{ color:#fff; text-decoration:none; }
.second_buy .second_buy_shop a:nth-child(4):visited:active	{ color:#fff; text-decoration:none; }

.second_buy .second_buy_shop img {
	display: block;
	margin: 0 auto;
}

.second_buy .buy_sp {
	margin: 20px 0 0;
	border: 2px solid rgb(55, 173, 100);
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	padding: 20px;
}

.second_buy .second_buy_shop + h3 {
	margin-top: 50px !important;
}

.second_buy .second_buy_shop + h3 + h3 {
	margin-top: 20px !important;
}

.second_buy .buy_sp h4 {
	margin: 0 0 10px;
	font-size: 15px;
	color: rgb(55, 173, 100);
}

.second_buy .buy_sp img {
	float: left;
	margin: 0 10px 0 0;
	width: 120px;
	height: auto;
}

.second_buy .buy_sp p {
	margin: 0 0 0 130px;
}

.second_buy .second_buy_slide {
	width: 48%;
	max-height: 550px;
	float: left;
	overflow: hidden;
}

.second_buy .second_buy_slide .bx-wrapper {
	border: 1px solid #dfe3e2;
	margin: 0 0 10px;
	overflow: hidden;
}

.second_buy .second_buy_slide #bx-pager {
	min-height:1px;
	zoom:1;
	clear:both;
}

.second_buy .second_buy_slide #bx-pager:after {
	content:".";
	display:block;
	clear:both;
	height:0px;
	visibility:hidden;
	font-size:0px;
}

.second_buy .second_buy_slide #bx-pager a {
	width: 14.285%;
	margin: 0;
	display: block;
	float: left;
}

.second_buy .second_buy_slide #bx-pager a.active {
	border: 1px solid #dfe3e2;
}

.second_buy .second_buy_slide #bx-pager a img {
	width: 100%;
	height: auto;
}

.second_buy .second_buy_spec {
	width: 48%;
	float: right;
	text-align: left;	
}

.second_buy .second_buy_spec h2 {
	text-align: left;
	margin: 0 0 5px;
	padding: 0;
	font-size: 34px;
	height: auto;
	line-height: 1.5;
	font-family: "TBゴシック M", sans-serif;
	border: none;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
}

.second_buy .second_buy_spec h2 + p {
	font-size: 16px;
}

.second_buy .second_buy_spec h3 {
	margin: 30px 0 0;
	font-size: 18px;
}

.second_buy .second_buy_spec ul li {
	display: block;
	float: left;
	width: 50%;
	text-align: center;
}

.second_buy .second_buy_spec ul li h4 {
	/* font-family:'TBゴシック M'; */
	font-size: 17px;
}

.second_buy .second_buy_doukon img {
	width: 100%;
	max-width: 960px;
	height: auto;
}

.second_buy .second_buy_doukon ul {
	text-align: left;
	font-size: 12px;
	margin: 50px 0 0;
}

.second_buy #option #option_presser, .second_buy #option #option_case {
	padding: 40px 0 150px;
	text-align: left;
	min-height:1px;
	zoom:1;
	clear:both;
}

.second_buy #option #option_presser .second_buy_shop, .second_buy #option #option_case .second_buy_shop {
	float: right;
	margin: 0;
}

.second_buy #option #option_presser:after, .second_buy #option #option_case:after {
	content:".";
	display:block;
	clear:both;
	height:0px;
	visibility:hidden;
	font-size:0px;
}

.second_buy #option h3 {
	font-size: 20px;
}

.second_buy #option h3 span {
	margin: 0 0 0 20px;
}

.second_buy #option h3 em {
	font-size: 12px;
}

.second_buy #option p {
	font-size: 14px;
	margin: 10px 0 20px;
}

.second_buy #option #option_presser .option_product,
.second_buy #option #option_case .option_product {
	width: 600px;
	margin: 0 30px 20px 0;
	float: left;
	letter-spacing: -1em;
}

.second_buy #option #option_presser .option_product img,
.second_buy #option #option_case .option_product img {
	width: 100%;
	height: auto;
}

.second_buy #option #option_presser .option_spec,
.second_buy #option #option_case .option_spec {
	width: 330px;
	float: right;
}

.second_buy #option #option_presser .option_spec p,
.second_buy #option #option_case .option_spec p {
	clear: both;
}

/* 展示販売店舗 */

.second_buy #buy_shoplist h3 {
	text-align: left;
	margin: 0 0 30px;
	padding: 5px 10px 5px 55px;
	font-size: 24px;
	-webkit-font-smoothing: antialiased;
	position: relative;
	border: 2px solid rgb(55, 173, 100);
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	cursor: pointer;
}

.second_buy #buy_shoplist h3:before {
	content:'\f054';
	font-family: FontAwesome;
	color:rgb(55, 173, 100);
	font-weight: normal;
	position: absolute;
	top: 6px;
	left: 15px;
	-webkit-transition: all .15s linear;
    -moz-transition: all .15s linear;
    -o-transition: all .15s linear;
	-ms-transition: all .15s linear;
    transition: all .15s linear;
}
.second_buy #buy_shoplist h3.open:before {
	transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform:  rotate(90deg);
}
.second_buy #buy_shoplist h3:hover {
	border: 2px solid rgb(55, 173, 100);
	color: #fff;
	background-color: rgb(55, 173, 100);
	-webkit-transition: 0.1s;
	-moz-transition: 0.1s;
	-o-transition: 0.1s;
	-ms-transition: 0.1s;
	transition: 0.1s;
}
.second_buy #buy_shoplist h3:hover:before {
	color: #fff;
}

.second_buy #buy_shoplist h3 + div {
	margin: 0 0 30px 0;
}
.second_buy #buy_shoplist h3 + div table {
	margin: 0 auto;
	width: 100%;
	text-align: left;
	font-size: 15px;
	border-bottom: 1px solid #dfe3e2;
}

.second_buy #buy_shoplist h3 + div table th {
	background: rgb(55, 173, 100);
	color: #fff;
	padding: 10px 7px;
}

.second_buy #buy_shoplist h3 + div table tr {
	border-top: 1px solid #dfe3e2;
}

.second_buy #buy_shoplist h3 + div table tr td {
	padding: 15px 7px;
}

.second_buy #buy_shoplist h3 + div table tr td.table_area {
	width:100px;
}

.second_buy #buy_shoplist h3 + div table tr td:last-child {
	width:150px;
	text-align: right;
}

.second_buy #buy_shoplist h4 {
	text-align: left;
	margin: 0 0 15px;
	padding: 3px 10px 3px 55px;
	font-size: 18px;
	-webkit-font-smoothing: antialiased;
	position: relative;
	/* border: 2px solid rgb(55, 173, 100); */
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	cursor: pointer;
	background-color: #f0f3f2;
}

.second_buy #buy_shoplist h4:before {
	content:'\f054';
	font-family: FontAwesome;
	color:rgb(55, 173, 100);
	font-weight: normal;
	position: absolute;
	top: 6px;
	left: 15px;
	-webkit-transition: all .15s linear;
    -moz-transition: all .15s linear;
    -o-transition: all .15s linear;
	-ms-transition: all .15s linear;
    transition: all .15s linear;
}
.second_buy #buy_shoplist h4.open:before {
	transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform:  rotate(90deg);
}
.second_buy #buy_shoplist h4:hover {
	/* border: 2px solid rgb(55, 173, 100); */
	color: #fff;
	background-color: rgb(55, 173, 100);
	-webkit-transition: 0.1s;
	-moz-transition: 0.1s;
	-o-transition: 0.1s;
	-ms-transition: 0.1s;
	transition: 0.1s;
}
.second_buy #buy_shoplist h4:hover:before {
	color: #fff;
}
.second_buy #buy_shoplist h4 + div {
	margin: 0 0 15px 0;
}

.second_buy ul.second_buy_webshop {
	min-height:1px;
	zoom:1;
	clear:both;
	border-bottom: 1px solid #dfe3e2;
	margin: 0 0 100px;
}

.second_buy ul.second_buy_webshop:after {
	content:".";
	display:block;
	clear:both;
	height:0px;
	visibility:hidden;
	font-size:0px;
}

.second_buy ul.second_buy_webshop li {
	display: block;
	width: 32%;
	padding: 20px 0 20px 0;
	float: left;
	margin: 0 2% 20px 0;
	height: 80px;
	border-top: 1px solid #dfe3e2;
	text-align: left;
	font-size: 15px;
}

.second_buy ul.second_buy_webshop li:nth-child(3n) {
	margin: 0 0 20px 0;
}

.second_buy ul.second_buy_webshop li img {
	float: left;
	display: block;
	margin: 0 20px 0 0;
}

.second_buy ul.second_buy_webshop li a {
	display: block;
	margin: 10px 0 0;
}

/*--------------------------------
	サポート
--------------------------------*/

.support h2 {
	margin: 0 auto 50px;
	display: inline-block;
 	padding: 0 50px;
 	min-width: 50%;
	color: rgb(55, 173, 100);
	height: 60px;
	line-height: 58px;
	font-size: 30px;
	font-family: "TBゴシック SL", sans-serif;
	border: 2px solid rgb(55, 173, 100);
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
}

.support h2 + p {
	font-size: 17px;
}

.support_navi ul {
	padding: 50px 0 0;
	min-height:1px;
	zoom:1;
	clear:both;
}

.support_navi ul:after {
	content:".";
	display:block;
	clear:both;
	height:0px;
	visibility:hidden;
	font-size:0px;
}

#guide + .support_navi ul {
	padding: 150px 0 100px;
}

.support_navi ul li {
	display: inline-block;
	margin: 0 10px;
	font-size: 16px;
	width: 150px;
}

.support_navi ul li a:focus				{ color:rgb(55, 173, 100); }
.support_navi ul li a:link				{ color:rgb(55, 173, 100); }
.support_navi ul li a:link:hover		{ color:rgba(160,200,174,1); }
.support_navi ul li a:link:active		{ color:rgba(160,200,174,1); }
.support_navi ul li a:visited			{ color:rgb(55, 173, 100); }
.support_navi ul li a:visited:hover		{ color:rgba(160,200,174,1); }
.support_navi ul li a:visited:active	{ color:rgba(160,200,174,1); }

.support_navi ul li span {
	display: block;
	position: relative;
	margin: 0 auto 10px;
	width: 70px;
	height: 70px;
}

.support_navi ul li img {
	width: 100%;
	height: auto;
}

.support_navi ul li a:hover i {
	background: rgb(55, 173, 100);
	color: #fff;
}

/* faq */

#faq {
	padding: 100px 15px 0 !important;
}

.faq_nav {
	text-align: left;
	float: left;
	width: 25%;
	margin: 10px 0 20px;
}

.faq_nav ul li {
	margin: 0 0 20px;
	font-size: 15px;
	padding: 3px 0 3px 24px;
	height: 21px;
	line-height: 15px;
	background: url(/support/images/icon.png) no-repeat left center;
	background-size: 16px;
	cursor: pointer;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	-ms-transition: 0.2s;
	transition: 0.2s;
}

.faq_nav ul li:hover {
	color: rgb(55, 173, 100);
}

#faq .faq_contents {
	float: right;
	width: 70%;
	text-align: left;
}

#faq .faq_contents h3 {
	font-size: 20px;
	border-bottom: 1px solid #dfe3e2;
	padding: 0 0 20px;
	margin: 0 0 20px;
}

#faq .faq_contents dl {
	margin: 0 0 70px;
}

#faq .faq_contents > div:last-child dl {
	margin: 0;
}

#faq .faq_contents dl dt {
	margin: 0 0 20px;
	font-size: 15px;
	cursor: pointer;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	-ms-transition: 0.2s;
	transition: 0.2s;
}

#faq .faq_contents dl dt:hover {
	color: rgb(55, 173, 100);
}

#faq .faq_contents dl dt i {
	margin: 0 5px 0 0;
	width: 15px;
	color: rgb(55, 173, 100);
	text-align: center;
	font-size: 12px;
}

#faq .faq_contents dl dd {
	margin: 0 0 30px;
	font-size: 14px;
	display: none;
	padding: 15px 20px;
	background: #f7f7f7;
}

#faq .faq_contents dl dd a {
	border-bottom: 1px solid rgb(55, 173, 100);
}

#faq .faq_contents dl dd a:hover {
	border: none;
}

/* Googleカスタム検索リセット */

.faq_nav .support_search {
	margin: 40px 0 0;
}

.cse .gsc-control-cse, .gsc-control-cse {
	padding: 0 !important;
}

.gsc-search-box-tools .gsc-search-box .gsc-input {
	padding: 0 !important;
	width: 100% !important;
}

.gsib_a {
	padding: 0 !important;
}

.cse .gsc-search-button input.gsc-search-button-v2,
input.gsc-search-button-v2 {
	width: 24px !important;
	height: 24px !important;
	padding: 4px !important;
	margin: 0 0 0 4px !important;
}

/* contact */

#contact {
	padding: 150px 15px 0 !important;
}

#contact ul {
	margin: 50px auto 30px;
	background: #f0f3f2;
	padding: 50px;
	min-height:1px;
	zoom:1;
	clear:both;
}

#contact ul:after {
	content:".";
	display:block;
	clear:both;
	height:0px;
	visibility:hidden;
	font-size:0px;
}

#contact ul li {
	width: 50%;
	display: block;
	float: left;
}

#contact ul li i {
	font-size: 40px;
	color: rgb(55, 173, 100);
}

#contact ul li h3 {
	font-size: 15px;
	margin: 10px 0 20px;
}

#contact ul li a {
	font-size: 24px;
}

#contact ul li a:focus				{ color:rgb(55, 173, 100); }
#contact ul li a:link				{ color:rgb(55, 173, 100); }
#contact ul li a:link:hover			{ color:rgba(160,200,174,1); }
#contact ul li a:link:active		{ color:rgba(160,200,174,1); }
#contact ul li a:visited			{ color:rgb(55, 173, 100); }
#contact ul li a:visited:hover		{ color:rgba(160,200,174,1); }
#contact ul li a:visited:active		{ color:rgba(160,200,174,1); }


#contact ul a[href^="tel:"] { cursor: default; }
#contact ul li a[href^="tel:"]:link:hover		{ color:rgb(55, 173, 100); }
#contact ul li a[href^="tel:"]:link:active		{ color:rgb(55, 173, 100); }
#contact ul li a[href^="tel:"]:visited:hover	{ color:rgb(55, 173, 100); }
#contact ul li a[href^="tel:"]:visited:active	{ color:rgb(55, 173, 100); }

#contact ul li a + p {
	font-size: 12px;
}

#contact ul + p {
	font-size: 12px;
}

#contact p a:link {
	text-decoration: underline;
}

/* download */

#download {
	padding: 150px 15px 0 !important;
}

#download .dl_app {
	vertical-align: bottom;
	margin: 30px auto;
}

#download .dl_app a:first-child {
	overflow: hidden;
	box-shadow: 0 0 0 2px rgb(55, 173, 100);
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	line-height: 0;
	display: inline-block;
	margin: 0 20px 0 0;
}

#download .dl_update {
	border: 1px solid #e5e5e5;
	margin: 30px auto 30px;
	padding: 15px 30px;
	width: 70%;
}

#download h3 {
	font-size: 18px;
	margin: 0 0 20px;
}

#download dl {
	font-size: 12px;
	margin: 0 auto;
	text-align: left;
}

#download dt {
	width: 200px;
	margin: 0 0 20px;
	float: left;
	clear: left;
}

#download dd {
	margin: 0 0 20px 210px;
}

#download dt,
#download dd {
}

/* guide */

#guide {
	padding: 150px 15px 0 !important;
}

#guide a {
	font-size: 17px;
}

#guide a img {
	margin: 50px auto 15px;
	display: block;
	border: 1px solid #ccc;
}

#guide a:focus				{ color:rgb(55, 173, 100); text-decoration: underline; }
#guide a:link				{ color:rgb(55, 173, 100); text-decoration: underline; }
#guide a:link:hover			{ color:rgba(160,200,174,1); }
#guide a:link:active		{ color:rgba(160,200,174,1); }
#guide a:visited			{ color:rgb(55, 173, 100); text-decoration: underline; }
#guide a:visited:hover		{ color:rgba(160,200,174,1); }
#guide a:visited:active		{ color:rgba(160,200,174,1); }


/*--------------------------------
	ニュース
--------------------------------*/

.news {
	padding: 50px 0;
}

.news h2 {
	font-size: 24px;
	text-align: center;
	margin: 0 0 50px;
	color: rgb(55, 173, 100);
}



.news .news_list {
	width: 700px;
	margin: 30px auto 0 auto;
	text-align: left;
	font-size: 15px;
	min-height:1px;
	zoom:1;
	clear:both;
}

.news .news_list:after {
	content:".";
	display:block;
	clear:both;
	height:0px;
	visibility:hidden;
	font-size:0px;
}


.news .news_list dt {
	float: left;
	width: 140px;
	clear: right;
	margin: 0 0 15px;
	color: rgb(55, 173, 100);
}

.news .news_list dd {
	margin: 0 0 15px 130px;
}

.news .news_list + a {
	float: right;
	font-size: 12px;
}

.news .news_contents {
	text-align: left;
	margin: 0 0 100px;
}

.news .news_contents h3 {
	font-size: 20px;
	margin: 0 0 15px;
}

.news .news_contents .news_date {
	color: rgb(55, 173, 100);
	margin: 10px 0 30px;
}

.news .news_contents .news_text p {
	margin: 0 0 30px;
	font-size: 15px;
}

.news .news_contents .news_text img {
	max-width: 100%;
	width: intrinsic;
	height: auto;
}

.news .news_contents .news_text a:focus				{ color:#333; text-decoration:underline; }
.news .news_contents .news_text a:link				{ color:#333; text-decoration:underline; }
.news .news_contents .news_text a:link:hover		{ color:#bfc9c6; text-decoration:underline; }
.news .news_contents .news_text a:link:active		{ color:#bfc9c6; text-decoration:underline; }
.news .news_contents .news_text a:visited			{ color:#333; text-decoration:underline; }
.news .news_contents .news_text a:visited:hover 	{ color:#bfc9c6; text-decoration:underline; }
.news .news_contents .news_text a:visited:active 	{ color:#bfc9c6; text-decoration:underline; }

.news .news_link {
	width: 100%;
	border-top: 1px solid #dfe3e2;
	padding: 20px 0 0;
	margin: 50px auto 0;
	text-align: right;
}

/* NEWS新モデル */

.news .news_contents.newmodel h2 {
	margin: 0;
}

.news .news_contents.newmodel h3 {
	text-align: center;
	margin: 30px auto;
}

.news .news_contents.newmodel .news_date {
	text-align: center;
	margin: 10px 0 0;
}

.news .news_contents.newmodel h4 {
	margin: 60px 0 20px;
	font-size: 20px;
	color: rgb(55, 173, 100);
}

.news .news_contents.newmodel .newmodel_top {
	padding: 18px;
	border: 2px solid rgb(55, 173, 100);
	margin: 30px auto;
	text-align: center;
}

.news .news_contents.newmodel ul.newmodel_shop {
	margin: 0 0 20px;
	min-height:1px;
	zoom:1;
	clear:both;
}

.news .news_contents.newmodel ul.newmodel_shop:after {
	content:".";
	display:block;
	clear:both;
	height:0px;
	visibility:hidden;
	font-size:0px;
}

.news .news_contents.newmodel ul.newmodel_shop li {
	width: 25%;
	margin: 0 0 5px;
	display: block;
	float: left;
	font-size: 14px;
}

.news .news_contents.newmodel .newmodel_link {
	text-align: center;
}

.news .news_contents.newmodel .newmodel_link a {
	display: block !important;
	margin: 30px auto 0;
	width: 380px;
}

.news .news_contents.newmodel .newmodel_link a:focus			{ color:#fff; text-decoration:none; }
.news .news_contents.newmodel .newmodel_link a:link			{ color:#fff; text-decoration:none; }
.news .news_contents.newmodel .newmodel_link a:link:hover		{ color:#fff; text-decoration:none; }
.news .news_contents.newmodel .newmodel_link a:link:active		{ color:#fff; text-decoration:none; }
.news .news_contents.newmodel .newmodel_link a:visited			{ color:#fff; text-decoration:none; }
.news .news_contents.newmodel .newmodel_link a:visited:hover	{ color:#fff; text-decoration:none; }
.news .news_contents.newmodel .newmodel_link a:visited:active	{ color:#fff; text-decoration:none; }

.news .news_contents.newmodel dl {
	width: 100%;
	margin: 30px auto;
	font-size: 15px;
	min-height:1px;
	zoom:1;
	clear:both;
}

.news .news_contents.newmodel dl:after {
	content:".";
	display:block;
	clear:both;
	height:0px;
	visibility:hidden;
	font-size:0px;
}

.news .news_contents.newmodel dl dt {
	width: 15%;
	float: left;
	clear: left;
	margin: 0 0 10px;
}

.news .news_contents.newmodel dl dd {
	width: 85%;
	margin: 0 0 10px 15%;
}

.news .news_contents.newmodel table {
	width: 100%;
	margin: 30px auto;
	font-size: 15px;
}

.news .news_contents.newmodel table th,
.news .news_contents.newmodel table td {
	border: 1px solid #a8a8a8;
	padding: 5px;
	text-align: center;
}

.news .news_contents.newmodel table th {
	background: rgba(202,235,225,1);
}

.news .news_contents.newmodel p.excuse {
	font-size: 12px;
	text-align: left;
}

.news .news_contents.newmodel .newmodel_contact {
	margin: 60px auto 0;
	text-align: center;
}

.news .news_contents.newmodel .newmodel_contact h5 {
	display: block;
	width: 100%;
	font-size: 18px;
	color: rgb(55, 173, 100);
	margin: 0 0 20px;
}

.news .news_contents.newmodel .newmodel_contact h5:before,
.news .news_contents.newmodel .newmodel_contact h5:after {
	content: "";
	display: inline-block;
	width: 400px;
	margin: 15px  0 0;
	height: 2px;
	background: rgb(55, 173, 100);
}

.news .news_contents.newmodel .newmodel_contact h5:before {
	float: left;
}

.news .news_contents.newmodel .newmodel_contact h5:after {
	float: right;
}

.news .news_contents.newmodel .newmodel_contact ul {
	border-bottom: 2px solid rgb(55, 173, 100);
	margin: 0 auto 30px;
	padding: 0 0 20px;
	min-height:1px;
	zoom:1;
	clear:both;
}

.news .news_contents.newmodel .newmodel_contact ul:after {
	content:".";
	display:block;
	clear:both;
	height:0px;
	visibility:hidden;
	font-size:0px;
}

.news .news_contents.newmodel .newmodel_contact ul li {
	display: inline-block;
	width: 33.3333333%;
	float: left;
	vertical-align: top;
}

.news .news_contents.newmodel .newmodel_contact ul li h6 {
	font-size: 16px;
}

.news .news_contents.newmodel .newmodel_contact ul li:first-child p {
	font-size: 24px;
}

.news .news_contents.newmodel .newmodel_contact ul li p {
	display: block;
	margin: 10px 0 0;
}

.news .news_contents.newmodel .newmodel_contact p.excuse2 {
	border: 1px solid #a8a8a8;
	padding: 10px 15px;
	font-size: 12px;
}

/* ------------------------------------------------------------ not found ------------------------------------------------------------ */

#notfound {
	text-align: center;
	position: relative;
	min-height: 360px;
}

#notfound div {
	width: 100%;
	padding: 70px 0 60px 0;
	text-align: center;
	position: absolute;
	top: 50%;
	margin: -150px auto 0;
}

#notfound img {
	max-width: 90%;
	height: auto;
}

#notfound a.btn_green {
	display: block;
	margin: 60px auto 0;
}

#notfound h2 {
	font-size: 20px;
	margin: 0 0 30px;
}

#notfound ul {
	font-size: 15px;
	max-width: 380px;
	width: 85%;
	text-align: left;
	margin: 0 auto;
}

#notfound ul li {
	list-style: disc;
	margin: 0 0 10px;
}

/* ------------------------------------------------------------ ETC ------------------------------------------------------------ */

/*--------------------------------
	FontAwesome
--------------------------------*/

i {
	font-style: normal;
	font-family: 'FontAwesome';
}

/*--------------------------------
	Hack
--------------------------------*/

/* IE6 hack */
*html {
}

/* IE7 hack */
*:first-child+html{
}

/* IE7,8 hack */
.XXX { example/*\**/: 000px\9; }

/* opera10later hack */
@media not screen and (1) { /* opera10以上 ハック */
	.example {
		style:000px;
	}
}

/* safari hack */
@media screen and (-webkit-min-device-pixel-ratio:0) {
	.example {
		style:000px;
	}
}


@media screen and (min-width: 769px){

/* 2017.11.29 Add */



header nav ul.nav_main li:first-child,
header nav ul.nav_main li:nth-child(4) {
        width: 40px;
        }

header nav ul.nav_main li:nth-child(3) {
        width: 60px;
        }

header nav ul.nav_main li:nth-child(2),
header nav ul.nav_main li:nth-child(5), 
header nav ul.nav_main li:nth-child(6),
header nav ul.nav_main li:nth-child(7),
header nav ul.nav_main li:nth-child(8) {
        width: 75px;
        }

header nav ul.nav_main li ul.sub_menu li{
         width: 220px;
        }


/* 2017.11.29 end of Add */


}/* @media終了 */





