@charset "utf-8";
* {
	font-family: "M PLUS 1p", sans-serif;
	color: #6c6c6c;
	list-style: none;
}
html {
	font-size: 100%;
	scroll-behavior: smooth;
}
body {
	max-width: 100%;
	background-color: #fff;
	color: black;
	margin: 0;
	padding: 0;
}

p {
	font-size: 16px;
	line-height: 220%;
	color: #414141;
}

.inner {
	max-width: 1000px;
	margin: 0 auto;
}

.text-center {
	text-align: center;
	margin-bottom: 140px;
}

.iv,
.ivo {
	opacity: 0;
}


.p-r {
	position: relative;
}

h4 {
	color: ##414141;
	margin: 0 0 30px 0;
	font-size: clamp(1.2rem, 2.5vw, 1.4rem);
	font-weight: 500;
	letter-spacing: 1px;
}
h5 {
	color: #54906c;
	margin-top: 30px;
}


#main {
position: relative;
}

.pc{display: inline;}
.sp{display: none;}

@media screen and (max-width: 999px) {
	#main {
	width: 100%;
	overflow: hidden;
	}
	.inner {
	width: 95%;
	overflow: hidden;
	}
}

@media screen and (max-width: 599px) {
.pc{display: none;}
.sp{display: inline;}
}
/********************************************/

.button-01 a {
	border-radius: 10px;
	background: #005a00;
	padding: 10px 65px 10px 35px;
	color: #fff;
	font-weight: 500;
	letter-spacing: 1px;
	display: inline-block;
	position: relative;
	transition: 0.3s;
	font-size: 14px;
	}
	
	.button-01 a::before {
	/* くの字の表示設定 */
	content: "";
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 32px;
	width: 13px; /* くの字を山なりに見た時、左側の長さ */
	height: 13px; /* くの字を山なりに見た時、右側の長さ */
	border-top: 2px solid #fff; /* くの字を山なりに見た時、左側の太さと色 */
	border-right: 2px solid #fff; /* くの字を山なりに見た時、右側の太さと色 */
	transform: rotate(45deg);
	transition: 0.3s;
	}
	
	.button-01 a:hover {
	background: #107c10;
	}
	
	.button-01 a:hover::before {
	right: 40px;
	}
	
/********************************************/

.outer-menu {
	display: none;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 999;
}

@media (max-width: 999px) {
	.outer-menu {
	display: inline;
	}
}

.outer-menu .checkbox-toggle {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 2;
	cursor: pointer;
	width: 60px;
	height: 60px;
	opacity: 0;
}

.outer-menu .checkbox-toggle:checked + .hamburger > div {
	transform: rotate(135deg);
}

.outer-menu .checkbox-toggle:checked + .hamburger > div:before,
.outer-menu .checkbox-toggle:checked + .hamburger > div:after {
	top: 0;
	transform: rotate(90deg);
}

.outer-menu .checkbox-toggle:checked + .hamburger > div:after {
	opacity: 0;
}

.outer-menu .checkbox-toggle:checked ~ .menu {
	pointer-events: auto;
	visibility: visible;
}

.outer-menu .checkbox-toggle:checked ~ .menu > div {
	transform: scale(1);
	transition-duration: 0.75s;
}

.outer-menu .checkbox-toggle:checked ~ .menu > div > div {
	opacity: 1;
	transition: opacity 0.4s ease 0.4s;
}

.outer-menu .checkbox-toggle:hover + .hamburger {
	box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.outer-menu .checkbox-toggle:checked:hover + .hamburger > div {
	transform: rotate(225deg);
}

.outer-menu .hamburger {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 1;
	width: 60px;
	height: 60px;
	padding: 0.5em 1em;
	background: rgba(0, 90, 0, 0.75);
	border-radius: 50%;
	cursor: pointer;
	transition: box-shadow 0.4s ease;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.outer-menu .hamburger > div {
	position: relative;
	flex: none;
	width: 100%;
	height: 2px;
	background: #fefefe;
	transition: all 0.4s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.outer-menu .hamburger > div:before,
.outer-menu .hamburger > div:after {
	content: "";
	position: absolute;
	z-index: 1;
	top: -10px;
	left: 0;
	width: 100%;
	height: 2px;
	background: inherit;
	transition: all 0.4s ease;
}

.outer-menu .hamburger > div:after {
	top: 10px;
}

.outer-menu .menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	visibility: hidden;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	outline: 1px solid transparent;
	display: flex;
	align-items: center;
	justify-content: center;
}

.outer-menu .menu > div {
	width: 200vw;
	height: 200vw;
	color: #fefefe;
	background: rgba(140, 200, 140, 0.7);
	border-radius: 50%;
	transition: all 0.4s ease;
	flex: none;
	transform: scale(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.outer-menu .menu > div > div {
	text-align: center;
	max-width: 90vw;
	max-height: 100vh;
	opacity: 0;
	transition: opacity 0.4s ease;
	overflow-y: auto;
	flex: none;
	display: flex;
	align-items: center;
	justify-content: center;
}

.outer-menu .menu > div > div > ul {
	list-style: none;
	padding: 0 1em;
	margin: 0;
	display: block;
	max-height: 100vh;
}

.outer-menu .menu > div > div > ul > li {
	padding: 0;
	margin: 1em;
	font-size: 24px;
	display: block;
	text-align: left;
}

.outer-menu .menu > div > div > ul > li > a {
	position: relative;
	display: inline;
	cursor: pointer;
	transition: color 0.4s ease;
	font-size: 16px;
	color: #fff;
}

.outer-menu .menu > div > div > ul > li > a:hover {
	color: #e5e5e5;
}

.outer-menu .menu > div > div > ul > li > a:hover:after {
	width: 100%;
}

.outer-menu .menu > div > div > ul > li > a:after {
	content: "";
	position: absolute;
	z-index: 1;
	bottom: -0.15em;
	left: 0;
	width: 0;
	height: 2px;
	background: #e5e5e5;
	transition: width 0.4s ease;
}


/****************	NAVI	********************/

.site-header {
	background: #fff;
	padding: 20px;
	position: absolute;
	top: 0px;
	width: 100%;
	z-index: 9999;
	display: inline;
	}
	
	@media (max-width: 999px) {
	.site-header {
	display: none;
	}
	}
	
	.site-header.fixed {
	padding: 10px 20px;
	position: fixed;
	top: 0;
	animation: navi 0.3s forwards;
	animation-timing-function: ease-in;
	animation-timing-function: ease-out;
	background: rgba(255, 255, 255, 0.6);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(4px);
	}
	
	@keyframes navi {
	0% {
	top: -80px;
	}
	100% {
	top: 0px;
	}
	}
	
	.site-logo img {
	height: 20px;
	width: auto;
	}
	.gnav__menu {
	display: grid;
	grid-template-columns: 19% 1fr 19% 19% 19%;
	}
	.navi-home,
	.navi-about,
	.navi-price,
	.navi-news,
	.navi-access {
	margin: 20px 0;
	text-align: center;
	}
	.navi-home {
	background: url(../img/navi-home.png) no-repeat;
	background-size: 30px auto;
	background-position: top center;
	padding: 40px 20px 0 20px;
	border-right: solid 1px #ccc;
	}
	.navi-about {
	background: url(../img/navi-about.png) no-repeat;
	background-size: 30px auto;
	background-position: top center;
	padding: 40px 20px 0 20px;
	border-right: solid 1px #ccc;
	}
	.navi-price {
	background: url(../img/navi-price.png) no-repeat;
	background-size: 30px auto;
	background-position: top center;
	padding: 40px 20px 0 20px;
	border-right: solid 1px #ccc;
	}
	.navi-news {
	background: url(../img/navi-news.png) no-repeat;
	background-size: 30px auto;
	background-position: top center;
	padding: 40px 20px 0 20px;
	border-right: solid 1px #ccc;
	}
	.navi-access {
	background: url(../img/navi-access.png) no-repeat;
	background-size: 30px auto;
	background-position: top center;
	padding: 40px 20px 0 20px;
	}
	.gnav__menu__item a {
	color: #333;
	text-decoration: none;
	}
	.navi-logo {
	display: none;
	}
	
	.sp-navi {
	border-right: solid 0px #ccc;
	padding: 0px 0px 20px 40px!important;
	background-position: top 5px left;
	border-bottom: dotted 1px #fff;
	}
	.sp-navi:first-child {
	padding: 10px 0px 10px 0px!important;
	}
	
	.sp-navi a{
	margin-top: 0px;
	}
	
	.site-header.fixed .gnav__menu {
	display: grid;
	grid-template-columns: 12% 16% 1fr 16% 16% 16%;
	}
	
	.site-header.fixed .navi-logo {
	display: inline;
	}
	
	.site-header.fixed .navi-home,
	.site-header.fixed .navi-about,
	.site-header.fixed .navi-price,
	.site-header.fixed .navi-news,
	.site-header.fixed .navi-access {
	margin: 10px 0;
	text-align: center;
	}
	
/*********************TOP***********************/
#container {
display: grid;
grid-template-columns: 350px 1fr 350px;
gap: 1%;
}
	
.main-img {
	padding: 100px 0;
	overflow: hidden;
	aspect-ratio: 16/8;
	object-fit: cover;
	display: block;
	background: url(../img/bg-07.png) repeat;
	background-size: 300px auto;
	position: relative;
	min-height: 600px;
}
.main-img video {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	z-index: -1;
}
.main-title {
	position: relative;
}
.main-title h1 {
	font-size: 50px;
	font-weight: 900;
	line-height: 120%;
	color: #007100;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	text-shadow: 0 0 10px #fff;
}
.main-logo object{
	filter: drop-shadow( 0 0 10px #fff);
}

@media screen and (max-width: 999px) {
#container {
	display: grid;
	grid-template-columns: 60% 1fr ;
	gap: 1%;
	width:	70%;
	margin: 0 auto;
}

.main-img {
	padding: 50px 0;
	aspect-ratio: 16/10;
	max-height: 600px;
	min-height: 400px;
	overflow: hidden;
	width: 100%;
}

.main-img video {
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	width: 150%;
	z-index: -1;
}

.main-title h1 {
	font-size: 34px;
	font-weight: 900;
	line-height: 120%;
	width: 100%;
}
}


@media screen and (max-width: 599px) {
#container {
	display: block;
	gap: 1%;
	width:	90%;
	margin: 0 auto;
}

.main-img {
	padding: 50px 0;
	aspect-ratio: 8/12;
	min-height: 600px;
	overflow: hidden;
}

.main-img video {
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	width: 115%;
}

.main-title {
	position: relative;
	width:100%;
}

.main-title h1 {
	font-size: 25px;
	font-weight: 900;
	line-height: 120%;
	text-align: center;
	color: #007100;
	position: relative;
	top: 30px;
	left: 10px;
	transform: translate(0%, 0%);
	width: 100%;
}

.main-logo{margin-top:50px; height: 300px;}
.main-logo object{height: 100%;}
}
/********************************************/

.top-scroll {
	transform: rotate(90deg);
	position: absolute;
	left: -9%;
	bottom: 0px;
	padding-right: 200px;
	overflow: hidden;
}
.top-scroll a {
	color: #fff;
	font-weight: 700;
	letter-spacing: 2px;
	transition: 0.3s;
	font-family: "Koulen", cursive;
}

.top-scroll a:hover {
	letter-spacing: 2px;
	opacity: 0.6;
}

.top-scroll:before {
	content: "";
	position: absolute;
	left: -200px;
	bottom: 0px;
	width: 200px;
	transform: translateX(-100%);
	border-bottom: solid 1px #fff;
	animation: border_anim 3s infinite forwards;
	animation-timing-function: ease-in;
	animation-timing-function: ease-out;
}

@keyframes border_anim {
	0% {
	left: -140px;
	}
	100% {
	left: 340px;
	}
}
@media screen and (max-width: 999px) {
.top-scroll {
	left: -11%;
	bottom: 0px;
	padding-right: 200px;
	overflow: hidden;
}
}

@media screen and (max-width: 599px) {
.top-scroll {
	left: -25%;
	bottom: 0px;
	padding-right: 200px;
	overflow: hidden;
}
}

.top-01 {
	width: 100%;
	height: 1150px;
	margin-top: 140px;
	margin-bottom: -100px;
	padding-top: 10px;
	background-image: url(../img/top-02-top.svg), url(../img/top-02-bottom.svg),
	url(../img/top-01.png);
	background-repeat: no-repeat, no-repeat;
	background-position: top left, bottom -1px left, top center;
	background-size: 100% auto, 100% auto, cover;
	width: 100%;
	position: relative;
}


.news {
	margin-top: -230px;
	margin-bottom: 80px;
	display: grid;
	grid-template-columns: 150px 1fr;
	gap: 1%;
	background-color: rgba(255, 255, 255, 0.6);
	padding: 15px 0px;
	border-radius: 15px;
	position: relative;
}

.news li {
	margin: 5px 0;
}
.news div {
	text-align: center;
	display: inline-block;
	vertical-align: middle;
}

.top-01 h3 {
	font-size: 30px;
	color: #005a00;
	font-weight: 900;
	margin-bottom: 60px;
}

.top-01 p {
	margin-bottom: 60px;
	text-shadow: 0 0 3px #fff;
}



@media screen and (max-width: 1750px) {
.top-01 {
	background-image: url(../img/top-02-top.svg), url(../img/top-02-bottom.svg),
	url(../img/top-01.png);
	background-repeat: no-repeat, no-repeat;
	background-position: top left, bottom -1px left, top center;
	background-size: 100% auto, 100% auto, 1750px auto;
}
}

@media screen and (max-width: 999px) {
.top-01 {
	margin-top: -25px;
	margin-bottom: -100px;
	background-image: url(../img/top-02-bottom.svg),
	url(../img/top-01.png);
	background-repeat: no-repeat, no-repeat;
	background-position: bottom -1px left, top center;
	background-size: 100% auto, 1750px auto;
	width: 100%;
}

.news {
	margin-top: 30px;
	margin-bottom: 80px;
	display: block;
	background-color: rgba(255, 255, 255, 0.6);
	padding: 15px 0px;
	border-radius: 15px;
	position: relative;
}
.news div {
	text-align: center;
	display: inline-block;
	vertical-align: middle;
	width: 100%;
}

}
@media screen and (max-width: 599px) {
	.top-01 {
		margin-top: -25px;
		margin-bottom: -100px;
		background-image: url(../img/top-02-bottom.svg),
		url(../img/top-01.png);
		background-repeat: no-repeat, no-repeat;
		background-position: bottom -1px left, top center;
		background-size: 100% auto, 1750px auto;
		width: 111%;
}
}
/********************************************/

.bird-01 {
	position: absolute;
	top: 0px;
	left: 40px;
	width: 100px;
	animation: wobbling_x 0.8s ease-in-out infinite alternate,
	wobbling_y 1.1s ease-in-out infinite alternate;
}
.bird-02 {
	position: absolute;
	top: 60px;
	right: 40px;
	width: 200px;
	animation: wobbling_x 1.1s ease-in-out infinite alternate,
	wobbling_y 1.7s ease-in-out infinite alternate;
}
@media screen and (max-width: 999px) {
.bird-01 {
	position: absolute;
	top: 0px;
	left: 40px;
	width: 50px;
	animation: wobbling_x 0.8s ease-in-out infinite alternate,
	wobbling_y 1.1s ease-in-out infinite alternate;
}
.bird-02 {
	position: absolute;
	top: 60px;
	right: 40px;
	width: 100px;
	animation: wobbling_x 1.1s ease-in-out infinite alternate,
	wobbling_y 1.7s ease-in-out infinite alternate;
}
}

@media screen and (max-width: 599px) {

}

@keyframes wobbling_x {
	0% {
	margin-left: 5px;
	}

	100% {
	margin-left: 0px;
	}
}

@keyframes wobbling_y {
	0% {
	margin-top: 0px;
	}

	100% {
	margin-top: 8px;
	}
}
/*
右から左へ
----------------------------*/
@keyframes infinity-scroll-left {
	from {
	transform: translateX(0);
	}
	to {
	transform: translateX(-100%);
	}
}

/*
	IE11対策
	----------------------------*/
_:-ms-lang(x)::-ms-backdrop,
.cloud {
	display: -ms-grid;
	overflow: hidden;
}
/*----------------------------*/

.cloud__wrap {
	display: flex;
	overflow-x: hidden;
	margin-top: 80px;
}
.cloud__wrap2 {
	display: flex;
	overflow-x: hidden;
	margin-top: -90px;
}

.cloud__list {
	display: flex;
	list-style: none;
	justify-content: space-between;
	width: 200%;
}

.cloud__list--left {
	animation: infinity-scroll-left 75s infinite linear 0.5s both;
}

.cloud__list--left2 {
	animation: infinity-scroll-left 145s infinite linear 0.5s both;
}

.cloud__item {
	width: calc(100vw / 6);
}
.cloud__item > img {
	width: 100%;
}
.cloud__item2 {
	width: calc(100vw / 6);
}
.cloud__item2 > img {
	width: 130%;
}
.cloud__list li:nth-child(4n) {
	margin-top: 0px;
}
.cloud__list li:nth-child(2n + 1) {
	margin-top: 50px;
}

.top-02 {
	margin-top: 150px;
	text-align: center;
}

.top-02 h3 {
	font-size: 30px;
	margin-bottom: 50px;
}

.content-01 {
	background-image: url(../img/bg-09.png);
	background-size: 100% 100%;
	background-position: top center;
	background-size: 130% 100%;
	position: relative;
	height: 800px;
	margin: 80px 0 0 0;
}

.content-01 .con-img {
	width: 65%;
	min-width: 700px;
	max-width: 900px;
	padding-top: 60px;
	position: absolute;
	left: 0px;
	z-index: 1;
}
.con-img img {
	width: 100%;
}
.content-01 .con-text {
	background-color: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(9px);
	box-shadow: 0 1px 8px rgba(111, 111, 111, 0.3);
	position: absolute;
	right: 0px;
	bottom: -60px;
	z-index: 99;
	width: 40%;
	padding: 20px 20px 30px 20px;
}

.con-text p {
	text-align: left;
	font-size: 15px;
	margin-bottom: 30px;
}
.content-01 .p-r {
	aspect-ratio: 16/9;
}
.content-01 .p-r object {
	position: absolute;
	top: 0px;
	right: 40px;
	width: 250px;
}

.content-02 {
	background-image: url(../img/bg-10.png);
	background-position: top center;
	background-size: 100% 100%;
	position: relative;
	height: 800px;
	margin: 0 0 0 0;
}
.content-02 .con-img {
	width: 65%;
	min-width: 700px;
	max-width: 900px;
	padding-top: 60px;
	position: absolute;
	right: 0px;
	z-index: 1;
}
.con-img img {
	width: 100%;
}
.content-02 .con-text {
	background-color: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(9px);
	box-shadow: 0 1px 8px rgba(111, 111, 111, 0.3);
	position: absolute;
	left: 0px;
	bottom: -20px;
	z-index: 99;
	width: 40%;
	padding: 20px 20px 30px 20px;
}

.con-text p {
	text-align: left;
	font-size: 15px;
	margin-bottom: 30px;
}

.content-02 .p-r {
	aspect-ratio: 16/9;
}

.content-02 .p-r object {
	position: absolute;
	top: -130px;
	left: 80px;
	width: 180px;
}

.top-03 {
	position: relative;
	z-index: 99;
	margin-top: -100px;
	background: linear-gradient(
	to top,
 rgba(120, 200, 100, 0.5),
 rgba(120, 200, 100, 0)
),
	url(../img/top-07.jpg);
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 150px 0;
}

@media screen and (max-width: 1750px) {
.top-03 {
	background-position: right;
}
}

.top-03 h4{font-size: 30px;}
.top-03 h4,
.top-03 p {
	color: #fff;
	text-shadow: 0 0 5px #107c10;
}
/*----------------------------*/

.news-archive{
	margin-top: 80px;
}

.news-archive li{
	margin-bottom: 20px;
	padding-top: 180px;
    margin-top:-180px;
}

.news-archive li .news-box{
	border-radius: 10px;
	padding: 40px;
	background:rgba(120, 200, 100, 0.1);
	display: block;
}
.news-archive li h4{
	padding-bottom: 15px;
	border-bottom: double 4px #6c6c6c;
	margin-top: 0px;
	margin-bottom: 5px;

}
.news-archive li .time{
	background: #005a00;
	border-radius: 15px;
	padding: 2px 15px;
	color: #fff;
	display: inline;
}
.news-archive li .text{
	padding: 0px;
	padding-top: 20px;
	margin-bottom: 0px;
}

.news-archive li .button-01{
	margin-top: 20px;
}
.news-archive li:nth-child(odd){
	background: url(../img/footer-01.svg);
	background-repeat: no-repeat,repeat;
	background-position: bottom 20px right 20px,center;
	background-size: 150px,cover;
}
.news-archive li:nth-child(even){
	background: url(../img/illust-02.svg);
	background-repeat: no-repeat,repeat;
	background-position: bottom 20px right 20px,center;
	background-size: 120px;
}
.news-archive li:nth-child(3n){
	background: url(../img/illust-03.svg);
	background-repeat: no-repeat,repeat;
	background-position: bottom 20px right 20px,center;
	background-size: 150px;
}

.news-archive li:nth-child(3n-1){
	background: url(../img/footer-02.svg);
	background-repeat: no-repeat,repeat;
	background-position: bottom 20px right 20px,center;
	background-size: 120px;
}
/*----------------------------*/

#footer {
	text-align: center;
	background-image: url(../img/bg-05.svg);
	background-position: center bottom -200px;
	background-size: 100% auto;
	position: relative;
	z-index: 100;
	padding: 80px 0 0 0;
}
	
@media screen and (max-width: 1750px) {
#footer {
	text-align: center;
	background-image: url(../img/bg-05.svg);
	background-position: center bottom -280px;
	background-size: 1750px auto;
}
}

.footer-01 {
	position: absolute;
	top: 50px;
	left: 0;
	width: 140px;
}

.footer-02 {
	position: absolute;
	top: -150px;
	right: 0;
	width: 180px;
}

.footer-info {
	margin: 120px 0 0 0;
	display: grid;
	grid-template-columns: 40% 1fr;
	gap: 1%;
}

.footer-logo {
	width: 100px;
	margin: auto;
}

.footer-info h3{
	color:#005a00;
	font-size: 30px;
	padding:0 0 10px 0;
}
.address-01{
	color:#005a00;
	line-height: 120%;
	border-bottom: dashed 1px #005A00;
	padding-bottom: 20px;
	width: 80%;
	margin: 0 auto 10px auto ;
}
.address-02{
	color:#005a00;
	line-height: 120%;
	padding-top: 10px;
}

	.address-03{
	color:#005a00;
	border-bottom: dashed 1px #005A00;
	padding-bottom: 15px;
	width: 80%;
	margin: 0 auto 10px auto ;

}
.footer-open{
	display: grid;
	grid-template-columns: 20% 1fr;
	padding-top: 15px;
	gap: 1%;
	width: 80%;
	margin: 0 auto 10px auto ;
	color:#005a00;
}

.footer-open-l{
	color:#005a00;
	display: inline-block;
	vertical-align: middle;
}

.footer-open-r{
	display: grid;
	grid-template-columns: 40% 1fr;
	gap: 1%;
}
.footer-open-r div{
	color:#005a00;
}
.footer-open-r div:nth-child(2n){
	text-align: right;
	letter-spacing: 2px;
}
/*----------------------------*/
.copyright {
	width: 100%;
	padding: 20px;
	background-color: #005a00;
	margin: 20px 0 0 0;
	color: #fff;
	font-size: 11px;
	letter-spacing: 2px;
}
/*----------------------------*/


@media screen and (max-width: 599px) {
	.top-02,
	.top-03,
	#footer {
	display: none;
	}
}
