@charset "utf-8";
/* CSS Document */
*{
	margin:0;
	padding:0;
	font-family:Tahoma, Geneva, sans-serif;
	}
/** Body Gradation **/
.gradation {
	background: linear-gradient(180deg, #8DB3E0, #FFFFFF, #8DB3E0);
}
body {
	-webkit-text-size-adjust: 100%;
	background-color:  transparent;
}
#top {
	width: 100%;
	height: 100px;
	background-color: #0F4C95; 
	/*background-color: #FFF;*/
	/*================= Moving Japanese language Button with scroll =====================*/
	position: fixed;
	display: flex;
	z-index: 100;
	/*===================================================================================*/
}
.solidsun {
	display: none;
}
#top_container {
	height:100px;
	width: 1200px;
	margin-right: auto;
	margin-left: auto;
	background-color: #0F4C95;
	/*================= Moving Japanese language Button with scroll =====================*/
	/*position: fixed;
	display: flex;
	z-index: 100;
	left: 50%;
	transform: translateX(-50%);
	-webkit- transform:  translateX(-50%);*/
	/*===================================================================================*/
	/*background-color: #FFF;*/
}
#topmenu {
	height: 50px;
	width: 55px;
	float: right;
	padding-top: 50px;
	position: relative;
	margin: 0;
	z-index: 100;
}
/* ===========================================*/
#language {
	/*================= Moving Japanese language Button with scroll =====================*/
	/*position: fixed;
	display: flex;*/
	/*===================================================================================*/
	width: auto;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
	margin: 0;
	position: relative;
}
#language li {
	width: 60px;
	position:relative;
	margin: 0 10px;
	display: inline-block;
}
#language a {
	font-family:  "メイリオ", meiryo, "游ゴシック", "YuGothic", sans-serif;
	font-size: 18px;
	color: #900;
	font-weight: bold;
	text-decoration: none;
	display: block;
	position: relative;
	padding-bottom: 3px;
}
#language a:hover {
	color: #900;
	display: inline-block;
	text-decoration: none;
}
/* ===========================================*/
#language a:after{
	content: '';
	width: 0;
	margin-top: 0px;
	transition: all 0.5s ease;
	border-bottom: 3px solid #900;
	display: block;
}
#language a:hover:after {
	width: 100%;
	border-bottom: 3px solid #900;
}
#logo {
	height: 80px;
	width: 215px;
	margin-top: 10px;
	float:left;
	position: relative;
	/*================= Moving Logo with scroll =====================*/
	/*border:none;
	position: fixed;*/
	/*===============================================================*/
	background-color:;
	z-index: 100;
}
img.logo {
	width: 106px;
	height: 80px;
	float:left;
	border:none;
}
#menu_container {
	height: 100px;
	width: 75%;
	position: relative;
	background-color: #0F4C95; 
	/*background-color: #FFF;*/
	z-index: 100;
	float: left;
	/*========== moving menu with scroll =================*/
	/*left: 200px;*/
	/*====================================================*/
}
#menu_content {
	height: 100px;
	width: auto;
	padding-top: 0px;
	padding-right: auto;
	padding-bottom: 0px;
	padding-left:auto;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	text-align: center;
	background-position:center;
	z-index: 100;
}

/*----------------------------------------------------------------------------*/
/*------------------------- Main Container -------------------------------------*/
/*----------------------------------------------------------------------------*/
#main_container {
	width: 1200px;
	/*height: auto;*/
	height: 1500px;
	position: relative;
	margin-right: auto;
	margin-left: auto;
	/*top: 100px;*/
	z-index: 0;
}
#sun {
	width: 100%;
	height: auto;
}
.sunrising {
	width: 100%;
	height: 700px;
}
h2.firm-name {
	position:absolute;
	font-size:50px;
	color:#0F4C95;
	z-index:100;
	top: 350px;
	left:50%;
	transform: translateX(-50%);
	text-align:center;
}
#tabs {
	width: 100%;
	height: 50px;
	margin: 20px auto 50px auto;
	position: relative;
	float: left;
}
#tabs p {
	font-family:Tahoma, Geneva, sans-serif;
	font-size:18px;
	/*padding: 10px;
	line-height: 200%;*/
}
#tabs ul {
	overflow:hidden; 
	width: 100%;
	height: 150px;
	list-style:none; 
	/*border-bottom:1px solid #cccccc;
	height:2em; */
}
#tabs li {
	width: 30%;
	/*height: 50px;*/
	float:left; 
	display:inline; 
	margin-left:3%; 
	padding:10px;
	text-align: center;
	/*border:1px solid #ccc;
	border-bottom:none;
	border-radius:10px; */
}
	/* 最初はパネルは非表示 */
#tabs .panel {
	display:none;
}
	/*#tabs li a {
		font-family:Tahoma, Geneva, sans-serif;
		color: #FFF;
		text-decoration: none;
	}
	#tabs li a:hover {
		color: #0F4C95;
		background: #FFF;
	}*/
	/* ===========================================*/
.button {
	font-family:Tahoma, Geneva, sans-serif;
	font-size:16px;
	font-weight:bold;
	position: relative;
	display: inline-block;
	padding: 15px 0 15px 0;
	border: 2px solid #0F4C95;
	/*background: #CCC;*/
	color: #0F4C95;
	/*color: #FFF;*/
	text-align: center;
	text-decoration: none;
	transition: .3s;
	overflow: hidden;
	width: 100%;
	border-radius: 10px;
}
.button:hover {
	color:#FFF;
	/*color: #0F4C95;*/
}
/* ===========================================*/
.button::before {
	position: absolute;
	top: 0;
	left: -5%;
	z-index: -1;
	content: '';
	width: 110%;
	height: 250%;
	background: #0F4C95;
	/*background: #FFF;*/
	transform-origin: left bottom;
	transform: skewY(-10deg) scale(1, 0);
	transition: transform .3s;
}
.button:hover::before {
	transform-origin: left top;
	transform: skewY(-10deg) scale(1, 1);
}
#panel1 {
	width: 100%; 
	height: 500px;
	margin: 0px auto 20px auto;
	position: relative;
	float: left;
	/*border:  #F00 1px solid;*/
}
#panel2 {
	width: 100%; 
	height: 500px;
	margin: 0px auto 20px auto;
	position: relative;
	float: left;
}
#panel3 {
	width: 100%; 
	height: 500px;
	margin: 0px auto 20px auto;
	position: relative;
	float: left;
}
.subject {
	width: 250px;
	margin: 0 auto 20px auto;
	padding: 10px;
	background-color: #0F4C95;
	color: #FFF;
	text-align: center;
	border: #0F4C95 1px solid;
	border-radius: 10px;
}
.text-head {
	width: 95%;
	margin: 0 auto 0 auto;
}
.text-head p {
	line-height: 200%;
	padding: 10px;
}
.text {
	width: 45%;
	margin: 20px 0 20px 5%;
	position: relative;
	float: left;
	/*border: #999 1px solid;*/
}
.text p {
	line-height: 120%;
	padding: 8px;
}
.image {
	width: 45%;
	margin: 20px 0 20px 5%;
	position: relative;
	float: left;
}
/*------- Sliding 1 -----------------------*/
.img-wrap1 {
    width: 100%;
    /*position: relative;
	margin: 20px 0 20px 5%;
	position: relative;
	float: left;*/
}

.img-wrap1 img {
    width:100%;
	height: 350px;
    position: absolute;    
}
------- Sliding 2 ----------------------
.img-wrap2 {
    width: 100%;
    /*position: relative;
	margin: 20px 0 20px 5%;
	position: relative;
	float: left;*/
}

.img-wrap2 img {
    width:100%;
	height: 350px;
    position: absolute;    
}
/*------- Sliding 3 -----------------------*/
.img-wrap3 {
    width: 100%;
    /*position: relative;
	margin: 20px 0 20px 5%;
	position: relative;
	float: left;*/
}

.img-wrap3 img {
    width:100%;
	height: 350px;
    position: absolute;    
}
/*------- End Sliding -----------------------*/
/*----------------------------------------------------------------------------*/
/*--------------------- Consultation Contact----------------------------------*/
/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/*------------------------- Footer -------------------------------------------*/
/*----------------------------------------------------------------------------*/
#footer-2 {
	display: none;
	background-color: #0F4C95;
	height: 250px;
	width: 100%;
	margin: 0px auto 10px auto;
	position: relative;
	float: left;
	/*display: block;*/
}
#firm_name {
	width: 300px;
	height: 50px;
	margin: 20px auto 20px auto;
	text-align: center;
		/*line-height: 50px;*/
	display: block;
}
#firm_name h3 {
	/*font-size: 12px;*/
	color: #FFF;
	padding: 0px;
	line-height: 50px;
}
#footer_menu2 {
	width: 80%;
	height: 150px;
	padding: 0 10% 20px 10%;
}
#footer_menu2 p {
	font-size: 12px;
	color: #FFF;
	padding: 0px;
	line-height: 20px;
}
#footer {
	background-color: #0F4C95;
	height: 250px;
	width: 100%;
	margin: 0px auto 10px auto;
	position: relative;
	float: left;
	display: block;
	font-family:Tahoma, Geneva, sans-serif;
}
#footer h3 {
	color:#FFF;
}
#footer p {
	font-family:  "メイリオ", meiryo, "游ゴシック", "YuGothic", sans-serif;
	font-size: 12px;
	color: #FFF;
	padding: 0px;
	line-height: 20px;
}
#footer_menu {
	width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
#firm_name_sp {
	display: none;
	}
#footer a {
	text-decoration:none;
	color:#FFF;
}
#address_left {
	float: left;
	height: 140px;
	width: 350px;
	margin: 50px 0px 10px 0px;
}
#firm_center {
	text-align: center;
	height: 140px;
	width: 420px;
	margin: 50px 40px 10px 40px;
	float: left;
}
#address_right {
	float: right;
	height: 140px;
	width: 350px;
	text-align: right;
	margin: 50px 0px 10px 0px;
}
.tel-number a {
	color:#FFF;
	text-decoration: none;
}
@media screen and (max-width: 1024px){
	#top {
		width: 100%;
		height: 55px;
	}
	#top_container {
		width: 100%;/*ok*/
		height: 55px;
	}
	#topmenu {
		display: none;
	}
	#main_container {
		width: 100%;
		height: 1500px;
		/*top: 500px;*/
	}
	#logo {
		display: block;
		height: 40px;
		width: 53px;
		margin-top: 10px;
		margin-right: 10px;
		float: right;
		position: relative;
		z-index: 100;
	}
	img.logo {
		width: 53px;
		height: 40px;
		float: right;
		border:none;
	}
	#language {
		display: none;
	}
	#menu_container {
		height: 0;
	}
	#menu_content {
		height: 0;
	}
	h1.firm-name {
		font-size: 36px;
	}
	.picture1 {
		width: 100%;
	}
	.details {
		width: 100%;
	}
	.a {
		width: 25%;
	}
	.b {
		width: 75%;
	}
	.sunrising {
		width: 100%;
		height: 600px;
	}
	h2.firm-name {
		top: 250px;
	}
	/*.text {
		width: 45%;
		margin: 20px 0 20px 5%;
		position: relative;
		float: left;
		/*border: #999 1px solid;*/
	/*}
	/*.text p {
		line-height: 120%;
		padding: 8px;
	}*/
	.image {
		/*width: 40%;*/
		margin: 20px 0 20px 2%;
		/*position: relative;
		float: left;*/
	}
	#footer-2 {
		background-color: #0F4C95;
		height: 250px;
		width: 100%;
		margin: 0px auto 10px auto;
		position: relative;
		float: left;
		display: block;
		font-family:Tahoma, Geneva, sans-serif;
		top: 700px;
	}
	#firm_name {
		width: 300px;
		height: 50px;
		margin: 20px auto 20px auto;
		text-align: center;
			/*line-height: 50px;
		display: none;*/
	}
	#firm_name h3 {
		/*font-size: 12px;*/
		color: #FFF;
		padding: 0px;
		line-height: 50px;
	}
	#footer_menu2 {
		width: 80%;
		height: 150px;
		padding: 0 10% 20px 10%;
		
	}
	#footer_menu2 p {
		font-size: 12px;
		color: #FFF;
		padding: 0px;
		line-height: 20px;
	}
	.tel-number a {
		color:#FFF;
		text-decoration: none;
	}
	#footer {
		display: none;
	}
}
@media screen and (max-width: 896px) {
	#main_container {
		/*height: 2000px;*/
	}
	.sunrising {
		width: 100%;
		height: 500px;
	}
	h2.firm-name {
		top: 200px;
	}
	#tabs li {
		width: 31%;
		/*height: 50px;
		float:left; 
		display:inline;*/ 
		margin-left:1%; 
		padding:2px;
		/*text-align: center;
		border:1px solid #ccc;
		border-bottom:none;
		border-radius:10px; */
	}
	
	#footer-2 {
		top: 900px;
	}
	/*#details {
		width: 95%;
		height: auto;
		position: relative;
		float: left;
		margin: 0 15px 50px 0;
		/*padding: 10px 0x 10px 0px;
	}*/
	.a {
		width: 30%;
	}
	.b {
		width: 70%;
	}
}
@media screen and (max-width: 480px) {
	#logo {
		height: 35px;
		width: 53px;
	}
	img.logo {
		width: 53px;
		height:35px;
	}
	#menu_container {
		height: 0px;
	}
	#menu_content {
		height: 0px;
	}
	.sunrising {
		width: 100%;
		height: 300px;
	}
	h2.firm-name {
		font-size: 24px;
		top: 150px;
	}
	.text {
		width: 90%;
		margin: 20px 0 20px 5%;
		position: relative;
		float: left;
		/*border: #999 1px solid;*/
	}
	/*.text p {
		line-height: 120%;
		padding: 8px;
	}*/
	.image {
		width: 90%;
		margin: 20px 0 20px 5%;
		position: relative;
		float: left;
	}
	.img-wrap1 img {
		/*width:100%;*/
		height: 300px;
		/*position: absolute;*/  
	}
	.img-wrap2 img {
		/*width:100%;*/
		height: 300px;
		/*position: absolute;*/  
	}
	.img-wrap3 img {
		/*width:100%;*/
		height: 300px;
		/*position: absolute;*/  
	}
	#footer-2 {
		top: 1200px;
	}
	/*	#details {
		width: 95%;
		height: 200px;
		position: relative;
		float: left;
		margin: 0 10px 50px 10px;
		/*padding: 10px 0x 10px 0px;
	}*/
	.details p {
		padding: 3px 0 3px 5px;
		text-align: left;
		line-height: 25px;
		font-size: 15px;
	}
	.a {
		width: 20%;
	}
	.b {
		width: 80%;
	}
	span.sp {
		display: none;
	}
}
