@charset "utf-8";
/* =============================================================================
   Basic portion 
   ========================================================================== */
html{
	position: relative;
	width: 100%;
}



*{
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	list-style: none;
	margin: 0px;
	padding: 0px;
}



article,aside,dialog,figure,footer,header,nav,section{
	display: block;
	font-size: 100%;
}



body{
	width: 100%;
	font-size: small;
	font-family: verdana, "ｍｓ ｐゴシック", osaka, "ヒラギノ角ゴ pro w3";
	background: #fff;
	cursor: none;
}



body {
	animation: fadeIn 2s ease 0s 1 normal;
	-webkit-animation: fadeIn 2s ease 0s 1 normal;
}



@keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}



@-webkit-keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}



a{color: #333;}



a img.linkimg{background: none!important;}



a:hover img.linkimg{
			opacity: 0.7;
			filter: alpha(opacity=70);
			-ms-filter: "alpha( opacity=70 )";
			background: none!important;cursor: none;
}



a {text-decoration: none;cursor: none;}



#container {
		width: 100%;
		height: auto;
		margin: 0px auto 0px auto;
		text-align: center;
		background: #fff;
		position: relative;
}



section{width: 100%;} 



#cursor {
	position: fixed;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background: #0000ff;
	width: 5px;
	height: 5px;
	border-radius: 100%;
	pointer-events: none;
	z-index: 9999;
}



#cursor.active {transform: scale(0);}



#stalker {
	position: fixed;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background: #ffff00;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	transition: 0.2s;
	opacity: .6;
	pointer-events: none;
	z-index: 9998;
}



#stalker.active {transform: scale(3);z-index: 1000;}



.clearfix {display: inline-block;}

/* Dreamweaverバグ用 */
.clearfix {overflow: hidden;}



/* MacIE用 */
*+html .clearfix { height: 1%; }
* html .clearfix { height: 1%; }
.clearfix { display: block; }



/* パンくず */
.syncer-brcb {overflow: hidden ;list-style-type: none;font-size: 10px;text-align: left;margin: 10px auto 0px auto;color: #000;width: 1200px;}
.syncer-brcb a{color: #000;}
.syncer-brcb li {float: left ;font-weight: 20;}
.syncer-brcb li:after {content: ">" ;padding: 0 8px ;font-weight: 20;}
/* パンくず 一番最後の[li] */
.syncer-brcb li:last-child:after {content: none ;}



/* =============================================================================
   header 
   ========================================================================== */
header{
	width: 100%;
	height: 80px;
	margin: 0 auto 0 auto;
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
	z-index: 1000;
}



#header_bg{
	width: 1200px;
	height: 80px;
	margin: 0 auto 0 auto;
	top: 0;
	text-align: center;
}



.header_logo_box{
	float: left;
	width: 400px;
	height: 80px;
	margin: 0 auto 0 auto;
	text-align: center;
}



/* =============================================================================
   TOP_MAIN
   ========================================================================== */
.top_main_image{
	width: 1200px;
	height: 900px;
	margin: 0 auto 0 auto;
	text-align: center;
	position: -webkit-sticky;
	position: sticky;
	top: 0;
}



@keyframes fadeIn {
	from {opacity: 0;}
	to {opacity: 1;}
}



@keyframes zoom {
	0% {transform: scale(0.5);}
	100% {transform: scale(1.0);}
}



.top_title_image{
	animation: fadeIn 15s, forwards;
	animation-timing-function: ease-in;
	width: 100%;
	height: auto;
	margin: 0 auto 0 auto;
	text-align: center;
	top: 28%;
	position: relative;
}



.top_title_image img{max-width: 100%;animation: zoom 15s, forwards;}



.type{
	position: relative;
	top: 30%;
	width: 100%;
	height: 80px;
	font-size: 45px;
	color: #fff;
	text-align: center;
	font-family: 'Comic Sans MS',sans-serif;
}



.top_scroll_box{
	position: relative;
	top: 37%;
	width: 50%;
	height: 100px;
	margin: 0 auto 0 auto;
	text-align: center;
}



.top_scroll_box a{
	position: relative;
	bottom: 0;
	left: 0%;
	z-index: 2;
	display: inline-block;
	color: #fff;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	text-decoration: none;
}



.top_scroll_box a{padding-top: 65px;}



.top_scroll_box a span{
	position: absolute;
	top: 0;
	left: 50%;
	width: 24px;
	height: 24px;
	margin-left: -12px;
	border-left: 1px solid #fff;
	border-bottom: 1px solid #fff;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-animation: sdb 2s infinite;
	animation: sdb 2s infinite;
	opacity: 0;
	box-sizing: border-box;
}



.top_scroll_box a span:nth-of-type(1){
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
}
.top_scroll_box a span:nth-of-type(2){
	top: 16px;
	-webkit-animation-delay: .15s;
	animation-delay: .15s;
}
.top_scroll_box a span:nth-of-type(3){
	top: 32px;
	-webkit-animation-delay: .3s;
	animation-delay: .3s;
}

@-webkit-keyframes sdb{
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb{
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}



/* =============================================================================
   TOP_GUIDE
   ========================================================================== */
#top_mainarea{
	width: 1200px;
	height: auto;
	margin: 0 auto 0 auto;
	text-align: center;
	background: #fff;
}



.top_main_box{
	width: 100%;
	height: auto;
	margin: 0 auto 0 auto;
	text-align: center;
}

.top_main_box img{max-width: 100%;}



.top_guide{
	width: 100%;
	height: auto;
	margin: 0 auto 0 auto;
	padding-top: 25px;
	padding-bottom: 30px;
	text-align: center;
	background: #fff;
}



.top_title_img{
	width: 100%;
	height: auto;
	margin: 0 auto 0 auto;
	text-align: center;
}



.top_title_img div{float: left;}



.top_title_img img{max-width: 100%;padding-top: 5px;padding-bottom: 5px;text-align: center;}



p.gray_l{color: #555;font-size: 36px;line-height: 72px;}
.gray_m{color: #555;font-size: 16px;line-height: 48px;}
.olive_m{color: #5cc507;font-size: 16px;line-height: 48px;}
.olive_l{color: #5cc507;font-size: 36px;line-height: 72px;}



.type-shine {
	position: relative;
	overflow: hidden;
}

.type-shine:before {
	-webkit-animation: shine 1.5s ease 2.5s;
	animation-iteration-count: infinite;
	content: "";
	position: absolute;
	top: 0;
	left: -250px;
	width: 100%;
	height: 100%;
	transform: rotate3d(0,0,1,-45deg) translate3d(0,-120%,0);
}

@-webkit-keyframes shine {
	0% {transform: rotate3d(0,0,1,-45deg) translate3d(0,-120%,0);background: rgba(255,255,255,0.5);}
	100% {transform: rotate3d(0,0,1,-25deg) translate3d(0,150%,0);background: rgba(255,255,255,0.5);}
}



.main_scroll_box{
	position: relative;
	top: 0%;
	width: 50%;
	height: 100px;
	margin: 30px auto 30px auto;
	text-align: center;
}



.main_scroll_box a{
	position: relative;
	bottom: 0;
	left: 0%;
	z-index: 2;
	display: inline-block;
	color: #808080;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	text-decoration: none;
}



.main_scroll_box a{padding-top: 65px;}



.main_scroll_box a span{
	position: absolute;
	top: 0;
	left: 50%;
	width: 24px;
	height: 24px;
	margin-left: -12px;
	border-left: 1px solid #808080;
	border-bottom: 1px solid #808080;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-animation: sdb 2s infinite;
	animation: sdb 2s infinite;
	opacity: 0;
	box-sizing: border-box;
}



.main_scroll_box a span:nth-of-type(1){
-webkit-animation-delay: 0s;
animation-delay: 0s;
}
.main_scroll_box a span:nth-of-type(2){
top: 16px;
-webkit-animation-delay: .15s;
animation-delay: .15s;
}
.main_scroll_box a span:nth-of-type(3){
top: 32px;
-webkit-animation-delay: .3s;
animation-delay: .3s;
}



#top_contents_title{
	width: 100%;
	height: 600px;
	background: url("../img/top_contents_title.png") no-repeat center;
	margin-top: 40px;
	margin-bottom: 40px;
}

.top_contents_text_box{
	width: 100%;
	height: auto;
	padding-top: 70px;
	font-size: 25px;
	font-family: "M PLUS Rounded 1c";
}

.top_contents_text_box p{
	color: #5cc507;
	font-size: 60px;
	line-height: 120px;
	letter-spacing: 7px;
}

.top_contents_textinner_box{
	width: 350px;
	height: auto;
	margin: 0 auto 0 auto;
	padding-top: 40px;
	font-size: 16px;
	letter-spacing: 2px;
	line-height: 55px;
	text-align: left;
}



#menu_btn{
	width: 100%;
	height: 5650px;
	margin: 50px auto 50px auto;
	text-align: center;
	background: #fff url("../img/topcontents.jpg") no-repeat center;
}

#menu_btn_layer{
	position: relative;
	left: 0;
	width: 100%;
	height: 5650px;
	background:url("../img/top_ani.gif") no-repeat center;
}



.body_contents_web_box{
	float: left;
	width: 600px;
	height: 750px;
	padding: 115px 15px 15px 15px;
	box-sizing: border-box;
	margin: 0 0 0 120px;
}

.body_contents_web_text{
	float: left;
	font-size: 16px;
	letter-spacing: 2px;
	line-height: 35px;
	text-align: left;
}

.body_contents_system_box{
	float: left;
	width: 600px;
	height: 750px;
	padding: 100px 15px 15px 15px;
	box-sizing: border-box;
	margin: 240px 0 0 480px;
}

.body_contents_system_text{
	float: left;
	font-size: 16px;
	letter-spacing: 2px;
	line-height: 50px;
	text-align: left;
}

.body_contents_dtp_box{
	float: left;
	width: 600px;
	height: 750px;
	padding: 115px 15px 15px 15px;
	box-sizing: border-box;
	margin: 240px 0 0 135px;
}

.body_contents_dtp_text{
	float: left;
	font-size: 16px;
	letter-spacing: 2px;
	line-height: 50px;
	text-align: left;
}

.body_contents_consultant_box{
	float: left;
	width: 600px;
	height: 750px;
	padding: 170px 15px 15px 15px;
	box-sizing: border-box;
	margin: 200px 0 0 480px;
}

.body_contents_consultant_text{
	float: left;
	font-size: 17px;
	letter-spacing: 2px;
	line-height: 50px;
	text-align: left;
}

.body_contents_estate_box{
	float: left;
	width: 595px;
	height: 750px;
	padding: 115px 15px 15px 15px;
	box-sizing: border-box;
	margin: 240px 0 0 130px;
}

.body_contents_estate_text{
	float: left;
	font-size: 17px;
	letter-spacing: 2px;
	line-height: 52px;
	text-align: left;
}

.body_contents_support_box{
	float: left;
	width: 600px;
	height: 750px;
	padding: 190px 15px 15px 15px;
	box-sizing: border-box;
	margin: 230px 0 0 480px;
}

.body_contents_support_box .olive_l{
	color: #5cc507;
	font-size: 36px;
	line-height: 72px;
	padding-bottom: 100px;
}

.body_contents_support_text{
	float: left;
	font-size: 16px;
	letter-spacing: 2px;
	line-height: 40px;
	text-align: left;
	text-shadow: 
	#fff 2px 0px,  #fff -2px 0px,
	#fff 0px -2px, #fff 0px 2px,
	#fff 2px 2px , #fff -2px 2px,
	#fff 2px -2px, #fff -2px -2px,
	#fff 1px 2px,  #fff -1px 2px,
	#fff 1px -2px, #fff -1px -2px,
	#fff 2px 1px,  #fff -2px 1px,
	#fff 2px -1px, #fff -2px -1px;
}



.contents_link_btn{
	position: relative;
	float: left;
	width: 100%;
	height: auto;
	margin: 45px auto 0 auto;
	padding-bottom: 120px;
	text-align: center;
}



#menu_btn ul{width: 100%;height: auto;margin: 0 auto 0 auto;text-align: center;box-sizing: border-box;}



#menu_btn ul li{
	float: left;
	width: 50%;
	height: auto;
	margin: 25px auto 0 auto;
	text-align: center;
	overflow: hidden;
}



#menu_btn ul li img{
	width: 95%;
	border: solid 1px #ccc;
	border-radius: 3px;        /* CSS3草案 */  
	-webkit-border-radius: 3px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 3px;   /* Firefox用 */
}



.scale-img {
	width: 568px; /*画像の幅*/
	height: 355px; /*画像の高さ*/
	transition-duration: 0.5s; /*変化の時間*/
}



.scale-img:hover {
			transform: scale(1.2,1.2); /*画像の拡大*/
			cursor: pointer; /*カーソルをポインターにする*/
}



.top_main_bottom{
	width: 100%;
	height: 1010px;
	margin: 80px auto 0 auto;
	text-align: center;
	background: url("../img/bottom_wood.png") no-repeat bottom center;
}



.top_main_bottom_text{
	width: 100%;
	height: auto;
	padding-top: 200px;
	padding-bottom: 50px;
	margin: 0 auto 0 auto;
	text-align: center;
}



p.title_gray_l{
	color: #000;
	font-size: 30px;
	line-height: 30px;
	font-family: abel,"abel";
	letter-spacing: 30px;
}



.under_line{width: 50%;height: 4px;text-align: center;margin: 0 auto 30px auto;border-bottom: 1px solid #aaa;}



#page_top{
	width: 90px;
	height: 90px;
	position: fixed;
	right: 0;
	bottom: 440px;
	opacity: 0.6;
	z-index:1001;
}



#page_top a{
	position: relative;
	display: block;
	width: 90px;
	height: 90px;
	text-decoration: none;
}



#page_top a::before{
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f102';
	font-size: 25px;
	color: #000;
	position: absolute;
	width: 25px;
	height: 25px;
	top: -40px;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
}



#page_top a::after{
	content: 'PAGE TOP';
	font-size: 13px;
	color: #000;
	position: absolute;
	top: 45px;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
	color: #000;
}



/* =============================================================================
   footer 
   ========================================================================== */
footer {
	width: 100%;
	height: auto;
	min-width: 1200px;
	position: relative;
	margin: 0px auto 0px auto;
	font-size: 9px;
	color: #000;
	border-top: 1px solid #000;
	text-align: left;
	background: #fff;
	background-image: url("../img/footer_bg.jpg");
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: 94% 88%;
}



#footerbox{
	width: 1200px;
	margin: 0 auto 0 auto;
	padding-bottom: 20px;
	text-align: center;
	height: auto;
	box-sizing: border-box;
}



.footer_logo_box{
	float: left;
	width: 1000px;
	height: 70px;
	margin: 0 auto 15px auto;
	background-image: url("../img/footer_logo.png");
	background-repeat: no-repeat;
	text-align: right;
	position: relative;
}



.footer_logo_box p{
	font-size: 15px;
	line-height: 20px;
	padding-top: 15px;
	padding-right: 85px;
}



.footer_map_box{
	float: left;
	width: 390px;
	height: 215px;
	text-align: center;
	padding: 50px 0px 0px 40px;
}



.navlist{
        float: left;
	text-align: left;
	width: 250px;
        height: 300px;
        padding: 15px 0px 0px 40px;
	color: #000;
}



.navlist li{
	list-style-image: url(../img/limark.png);
	border-bottom: 0.5px dotted #666;
	letter-spacing: 2px;
	font-size: 12px;
	line-height: 36px;
	font-family: 'ヒラギノ丸ゴ ProN','Hiragino Maru Gothic ProN','Meiryo UI',sans-serif;
}



.navlist a{color: #666;}



.navlist a:hover {
	color: #00b400;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-moz-trainsition: all 0.5s ease;
	-o-trainsition: all 0.5s ease;
	-ms-trainsition: all 0.5s ease;
}



.navlist p{
	font-size: 18px;
	line-height: 25px;
	font-weight: bold;
	color: #999;
	margin-left: -20px;
}



.company_box{
	width: 1000px;
        height: auto;
        margin: 0 auto 0 auto;
	box-sizing: border-box;
}



/* =============================================================================
   copyright
   ========================================================================== */
.copyright{
		width: 100%;
        	height: 40px;
		min-width: 1200px;
		background-color: rgba(0,0,0,0.9);
		color: #fff;
		padding-top: 12px;
		bottom: 0;
		text-align: center;
		position: relative;
}

.copyright a{color: #fff;}