@charset "utf-8";
/* CSS Document */

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

	初期設定

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

html,body,div,
dl,dt,dd,ul,ol,li,
tr, th, td,
h1,h2,h3,h4,h5,h6,
p,a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	font-weight: normal;
	font-style: normal;
	border: none;
	line-height: 1.5;
	text-align: left;
	text-decoration:none;
	color:#000;
}

dl,ul,ol,li {
	list-style: none;
}

img {
	vertical-align: bottom;
	border:none;
}

button, input, select, textarea {
	font-family:inherit;
	font-size:100%;
}

*:focus {
	outline: none;
}

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

	メインレイアウト

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

html {
	width:100%;
	height:100%;
}

body {
	width:100%;
	height:100%;
	font-family:'メイリオ', 'Meiryo', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'Osaka', 'ＭＳ Ｐゴシック', 'MS PGothic', 'sans-serif';
	font-size: 14px;
	-webkit-text-size-adjust:100%;
	background:#fff;
}

#wrapper {
	width: 100%;
	height: 100%;
	position: relative;
	height: auto !important;
	min-height: 100%;
}

#contents {
	width:100%;
	padding-bottom: 320px;
}

#contents section {
	width:100%;
	padding: 80px 0;
	border-bottom: solid 1px #E9E9E9;
}

#contents section:last-of-type {
	border-bottom: none;
}

.inner {
    width: 1000px;
	margin:auto;
    padding: 0 20px;
}


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

	共通設定

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

/*----------リンク---------*/

a {
	color: #58962E;
}

a:hover img {
	opacity: 0.8;
}

a:hover {
	text-decoration:underline;
}

/*----------見出し---------*/
.title {
	color: #008745;
	margin-bottom: 20px;
	font-weight:bold;
	font-size: 30px;
}

.title span {
    display: block;
    font-size: 12px;
	font-weight: normal;
}

.top_msg{
	font-size: 25px;
	text-align: center;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight:bold;
	padding-bottom: 40px;
}

.pagettl {
	width: 100%;
	height: 130px;
	background: url(../img/title_bg.jpg) #FFF;
	background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
	position: relative;
	padding-top: 120px;
}

.pagettl h2{
	font-size: 40px;
	text-align: center;
	font-weight: bold;
	color: #fff;
}


.subtitle {
	color: #E18475;
	font-size: 20px;
	text-align:center;
	font-weight:bold;
	margin-bottom: 20px;
}


/*----------文字---------*/
.top_text {
	font-size: 18px;
	text-align:center;
	margin-bottom: 40px;
}

.center {
	text-align:center;
}

.text {
	margin-bottom: 40px;
}

.red {
	color: #F00;
}

.bold {
	font-weight: bold;
}


/*----------テーブル---------*/
table.type01 {
	width:100%;
	border-collapse:collapse;
	margin-bottom:20px;
	border-top: 1px #ccc solid;
}

table.type01 th {
	width: 230px;
	padding: 20px 0px;
	border-bottom: 1px #ccc solid;
	padding-left: 20px;
	vertical-align: top;
	text-align: left;
	font-weight: bold;
}

table.type01 td {
	padding: 20px 0px;
	border-bottom: 1px #ccc solid;
	text-align: left;
}


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

	ヘッダー
	
---------------------------------------*/

/*----------ヘッダー---------*/
header {
	width: 100%;
	height: 90px;
    display: flex;
    position: fixed;
    justify-content: space-between;
    transition: .5s;
    z-index: 999;
	margin-bottom: 10px;
	/*background: rgb(255,255,255);
	background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 30%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.7) 70%);*/
}

header.transform{
    background: rgba(119,194,92,0.8);
}

#header_inner {
	width: 100%;
	padding: 0 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/*----------ロゴ---------*/
#logo {
    margin-right: auto;
}

/*
img {
	-ms-interpolation-mode: bicubic;
}*/


/*----------メニュー---------*/
header nav ul{
	display: flex;
	align-items: center;
	font-size: 0;
}

header nav ul li{
	margin: 0 20px;
	text-align:center;
}

header nav ul li a{
	text-decoration: none;
	font-size: 18px;
	color: #fff;
	position: relative;

}

header nav ul li a:hover {
	text-decoration: none;
}

header nav ul li a:before{
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 1px;
	background: #fff;
	transform: scale(0, 1);
	transition: 0.4s;
}

header nav ul li a:hover:before {
	transform: scale(1);
}


header nav ul li a:active {
}

#nav_toggle{
	display: none;
}

header nav ul li:nth-child(6) img,header nav ul li:nth-child(7) img {
	width: auto;
	height: 26px;
}

header nav ul li:nth-child(8) img,header nav ul li:nth-child(9) img {
	width: 30px;
	height: 30px;
}



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

	トップページ

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

/*----------スライド---------*/
.slide {
	position:relative;
	width: 100%;
	height: 100vh;
	background: no-repeat;
	background-position: center center;
	background-size: cover;
}

@media (max-width: 1040px){
	.slide {
		width: 100%;
		height: 600px;
		background: no-repeat center center;
		position: relative;
		background-size: cover;
	}
}

.slide_logo {
	width: 400px;
	padding: 40px 0;
    text-align: center;
	position:absolute;
	left:50%;
	top:50%;
	transform:translateY(-50%) translateX(-50%);
	z-index:99;
	background: rgba(255,255,255,0.4);
}


.about_list {
	width: 100%;
	font-size: 0px;
	margin-top: 20px;
}

.about_list li {
	width: 333px;
	height: 500px;
	display: inline-block;
	vertical-align: top;
}

.about_list li a {
	display:block;
	height: 500px;
    background-size: 200% 100%;	
    background-image: -webkit-linear-gradient(left, transparent 50%, rgba(255,255,255,0.2) 50%);	
    background-image: linear-gradient(to right, transparent 50%, rgba(255,255,255,0.2) 50%);
    -webkit-transition: background-position .3s cubic-bezier(0.19, 1, 0.22, 1) .1s, color .5s ease 0s, background-color .5s ease;
    transition: background-position .3s cubic-bezier(0.19, 1, 0.22, 1) .1s, color .5s ease 0s, background-color .5s ease;
}

.about_list li a:hover {
	text-decoration: none;
    background-color: rgba(255,255,255,0.2);
    background-position: -100% 100%;
}

.about_list li h3 {
	padding: 20px 0 0 20px;
	font-size: 35px;
	color:#FFF;
	text-shadow:2px 2px 2px #000;
}



.about_list li:first-child{
	background: url(../img/about01.jpg) no-repeat center;
}

.about_list li:nth-child(2) {
	background: url(../img/about02.jpg) no-repeat center;
	margin-top: 30px;
}

.about_list li:nth-child(3) {
	background: url(../img/about03.jpg) no-repeat center;
	margin-top: 60px;
}



/*----------事業内容---------*/
.product_list {
	width: 100%;
	font-size: 0px;
	margin-top: 20px;
}

.product_list li {
	width: 500px;
	height: 250px;
	display: inline-block;
	vertical-align: top;
}

.product_list li a {
	display:block;
	height: 250px;
    background-size: 200% 100%;	
    background-image: -webkit-linear-gradient(left, transparent 50%, rgba(255,255,255,0.2) 50%);	
    background-image: linear-gradient(to right, transparent 50%, rgba(255,255,255,0.2) 50%);
    -webkit-transition: background-position .3s cubic-bezier(0.19, 1, 0.22, 1) .1s, color .5s ease 0s, background-color .5s ease;
    transition: background-position .3s cubic-bezier(0.19, 1, 0.22, 1) .1s, color .5s ease 0s, background-color .5s ease;
}

.product_list li a:hover {
	text-decoration: none;
    background-color: rgba(255,255,255,0.2);
    background-position: -100% 100%;
}

.product_list li h3 {
	padding: 20px 0 0 20px;
	font-size: 35px;
	color:#FFF;
	text-shadow:2px 2px 2px #000;
}

.product_list li:first-child{
	background: url(../img/product01.jpg) no-repeat center;
}

.product_list li:nth-child(2) {
	background: url(../img/product02.jpg) no-repeat center;
	margin-top: 30px;
}

.product_list li:nth-child(3) {
	background: url(../img/product03.jpg) no-repeat center;
	margin-top: 30px;
}

.product_list li:nth-child(4) {
	background: url(../img/product04.jpg) no-repeat center;
	margin-top: 60px;
}


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

	子ページ

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

/*----------会社概要---------*/
.map li {
	margin-bottom: 20px;
}

.map li h3 {
	font-weight: bold;
	font-size:18px;
	margin-bottom: 5px;
	color: #339f6a;
}

.map li p {
	margin-bottom: 15px;
}


/*----------お問い合わせ---------*/
.contact {
	width: 956px;
	margin-top: 40px;
	border: 2px solid #77C25C;
	padding: 20px;
	font-size: 0;
}

.contact h3 {
	font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #008745;
	text-align:center;
}

.contact div {
	width: 600px;
	margin: 0 auto;
}

.contact p {
	width: 50%;
	font-size: 25px;
    font-weight: bold;
	display:inline-block;
	text-align:center;
}

.contact i {
	margin-right: 10px;
}


#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
	z-index: 999;
}

#page-top a:hover {
    text-decoration: none;
}




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

	フッター

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

footer {
	width:100%;
	position:absolute;
	bottom:0;
	font-size: 12px;
	background: #77C25C;	
	padding: 30px 0;
	color: #fff;
}


#footer_inner {
	position:relative;
}

#footer_in {
	width: 1000px;
	margin: 0 auto;
	display: table;
}

#footer_in span {
	font-weight: bold;
}

#footer_in  ul {
	margin: 30px 0;
	font-size: 0;
}

#footer_in li {
	width: 292px;
	vertical-align: top;
	border-right: 1px solid #fff;
	padding: 20px;
	color:#fff;
	display: inline-block;
	font-size: 12px;
}

#footer_in li:last-child {
	border-right: none;
}

#footer_inner .copy {
	text-align:center;
	color: #fff;
}


