@charset "UTF-8";
*{
    padding: 0;
    margin: 0;
}

body {
    font-family: serif;
}

header {
    margin-top: 2vw;
    width: 100%;
    display: flex;
    position: fixed;
    top: 0px;
    z-index: 1000;
}

h1 {
    width: 50%;     
}

h1 a {
    display: block;
    font-size: 5vw; 
    margin-left: 4vw;
    text-decoration: none;
    color: #101010;
}


/*ナビメニューのスタイルを指定*/
nav.NavMenu {
	position: fixed; /*表示位置を固定*/
	z-index: 2; /*重ね順を変更*/
	top: 0; /*表示位置を指定*/
	left: 50%; /*表示位置を指定*/
	width: 50%; /*全幅表示*/
	transform: translateY(-100%); /*ナビを上に隠す上から出したい場合は、transform: translateYを使う。*/
	transition: all 0.6s; /*アニメーションの時間を指定*/
}

nav.NavMenu ul {
	list-style-type: none;
	background-color: #f5f5f5; /*背景*/
}

nav.NavMenu ul li {
	width: 100%;
	border-bottom: 1px dotted #808080;
}

nav.NavMenu ul li:last-child {
	border-bottom: none; /*最後のメニュー項目のみ下線を消す*/
}

nav.NavMenu ul li a {
	display: block; /*クリックできる領域を広げる*/
	text-align: center; /*テキストを中央揃え*/
	text-decoration: none;
	line-height: 3;
	color: #a9a9a9;
	font-size: 3vw;
}

/*トグルボタンが押されたときに付与するクラス*/
nav.NavMenu.active {
	transform: translateY(0%);/*上から出したい場合は、transform: translateYを使う。*/
}

/*トグルボタンのスタイルを指定*/
.Toggle {
	position: fixed;/* bodyに対しての絶対位置指定 */
	right: 13px;
	top: 12px;
	width: 42px;
	height: 42px;
	cursor: pointer;/*divだけどカーソルが変わるようにしている*/
	z-index: 3;/*ボタンを一番上にしている(押せなくなるから)*/
}

.Toggle span {
	display: block;
	position: absolute;
	left: 6px;
	width: 30px;
	border-bottom: solid 3px #a9a9a9;
	transition: .35s ease-in-out;/*変化の速度を指定*/
}

.Toggle span:nth-child(1) {
	top: 9px;
}

.Toggle span:nth-child(2) {
	top: 18px;
}

.Toggle span:nth-child(3) {
	top: 27px;
}

/* 最初のspanをマイナス45度に */
.Toggle.active span:nth-child(1) {
	top: 18px;
	left: 6px;
	transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
	top: 18px;
	transform: rotate(45deg);
}



.main-flex {
    width: 100%;
    margin-top: 10vw;
}

.main-flex .left-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
}

.main-flex .left-img img {
    width: 100%;
    margin-top: 10vw;
}

.right-text {
    width: 90%;
}

.right-text .text {
    width: 28vw;
    position: relative;
} 

.right-text .text img {
    position: absolute;
    top: -80vw;
    left: 5vw;
    display: block;
    width: 100%;
    background-image: linear-gradient(90deg, rgba(226, 207, 255, 1), rgba(251, 253, 191, 1));
    padding: 3vw; 
}

h3:nth-of-type(1) {
    margin-top: 6vw;
}

h3 {
    color: #101010;
    font-size: 4vw;
    margin-left: 5vw;
    margin-top: 1vw;
}

.first {
    line-height: 2;
    font-size: 3vw;
    color: #101010;
    margin-left: 5vw;
    margin-top: 1vw;
}

.three-frex {
    flex-direction: column;
    width: 100%;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10vw;
   
}

.three-frex .zu-1 {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    
}

.three-frex .zu-2 {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10vw;
   
}

.three-frex .zu-3 {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10vw;
}

.zu-png {
    width: 30%;
    padding-bottom: 2vw;
    border-bottom: 2px solid #20b2aa;
}

.zu-png img {
    width: 100%;
}

.zu-png2 {
    width: 100%;
    margin-top: 3vw;
}

.zu-png2 img {
    width: 100%;
}

h4 {
    font-size: 3vw;
    color: #696969;
    letter-spacing: 0.1em;
}

h4:nth-of-type(1) {
    margin-top: 3vw;
}

.three-frex p {
    margin-top: 3vw;
    line-height: 2;
}

/*水のアニメーション*/
.intro-mizu {
    position: relative;
    width: 5%;
}

.intro-mizu img {
    display: block;
    width: 100%;
    position: absolute;
    top: -410vw;
    left: 30vw;
    animation: anime1 55s;
    z-index: 100;
}

.intro-mizu2 {
    position: relative;
    width: 15%;
}

.intro-mizu2 img {
    display: block;
    width: 100%;
    position: absolute;
    top: -410vw;
    left: 10vw;
    animation: anime1 70s;
    z-index: 100;
}

.intro-mizu3 {
    position: relative;
    width: 5%;
}

.intro-mizu3 img {
    display: block;
    width: 105%;
    position: absolute;
    top: -420vw;
    left: 70vw;
    animation: anime1 30s;
    z-index: 100;
}

.intro-mizu4 {
    position: relative;
    width: 18%;
}

.intro-mizu4 img {
    display: block;
    width: 110%;
    position: absolute;
    top: -105vw;
    left: 50vw;
    animation: anime1 43s;
    z-index: 100;
}

.intro-mizu5 {
    position: relative;
    width: 15%;
}

.intro-mizu5 img {
    display: block;
    width: 100%;
    position: absolute;
    top: -410vw;
    left: 10vw;
    animation: anime1 35s;
    z-index: 100;
}

.intro-mizu6 {
    position: relative;
    width: 20%;
}

.intro-mizu6 img {
    display: block;
    width: 410%;
    position: absolute;
    top: -95vw;
    left: 80vw;
    animation: anime1 50s;
    z-index: 100;
}

.intro-mizu7 {
    position: relative;
    width: 3%;
}

.intro-mizu7 img {
    display: block;
    width: 100%;
    position: absolute;
    top: -410vw;
    left: 20vw;
    animation: anime1 60s;
    z-index: 100;
}

.intro-mizu8 {
    position: relative;
    width: 15%;
}

.intro-mizu8 img {
    display: block;
    width: 100%;
    position: absolute;
    top: -420vw;
    left: 40vw;
    animation: anime1 90s;
    z-index: 100;
}

.intro-mizu9 {
    position: relative;
    width: 8%;
}

.intro-mizu9 img {
    display: block;
    width: 100%;
    position: absolute;
    top: -430vw;
    left: 70vw;
    animation: anime1 90s;
    z-index: 100;
}

.intro-mizu10 {
    position: relative;
    width: 6%;
}

.intro-mizu10 img {
    display: block;
    width: 100%;
    position: absolute;
    top: -400vw;
    left: 85vw;
    animation: anime1 60s;
    z-index: 100;
}

@keyframes anime1 {
    0%{transform: translateY(0);}
  100%{transform: translateY(200vh);}
  }



.eco-flex {
    margin-top: 10vw;
    margin-bottom: 10vw;
    display: flex;
    flex-direction: column;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    background-image: linear-gradient(90deg, rgba(155, 179, 198, 1), rgba(167, 198, 136, 1) 100%, rgba(207, 253, 157, 1));
}

.eco-flex .eco-left {
    width: 100%;
    position: relative;
    
}

.eco-flex .eco-left h3 {
    color: white;
    font-size: 15vw;
    font-weight: 100;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin-top: 10vw;
    margin-left: 6vw;
}

.eco-flex .eco-center {
    width: 80%;
}

.eco-flex h4 {
    
   
    
    color: white;
    font-size: 5vw;
    text-align: right;
    margin-right: 1vw;
}

.eco-flex h4:nth-of-type(1) {
    margin-top: 13vw;
}


.eco-flex .eco-right {
    width: 90%;
}

.eco-flex h5 {
    font-size: 4vw;
    padding-top: 10vw;
    color: white;
    margin-left: 1vw;
}

.eco-flex p {
    font-size: 3vw;
    color: white;
    margin-left: 1vw;
}

.eco-flex p:nth-of-type(1) {
    margin-top: 2.5vw;
}

.eco-flex p:nth-of-type(4) {
    margin-top: 1.3vw;
}

.eco-flex p:nth-of-type(6) {
    padding-bottom: 10vw;
}

.img-flex {
    display: flex;
    flex-direction: column;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}

.img-flex .img {
    width: 100%;
}

.img-flex .img img {
    width: 100%;
    height: 100%;
    transition: 2.5s;
}

.img-flex .img img:hover {
    transform: rotateY(180deg);
/*rotateY(180deg)という値は縦軸を基準に１８０度回転するという意味。*/
    transition: 2.5s;
}

.youtube {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10vw;
}


iframe { 
    width: 100%;
}


.footer-flex {
    width: 100%;
    display: flex;
    margin-top: 5vw;
}

.footer-flex .nav {
    width: 50%;
}

.footer-flex .nav ul {
    list-style-type: none;
   
}

.footer-flex .nav ul li a {
    display: block;
    text-decoration: none;
    font-size: 2.5vw;
    color: #808080;
    line-height: 3;
    transition: 1s;
    margin-left: 20vw;
 
}

.footer-flex .nav ul li a:hover {
    color: #101010;
}

.sns-box2 {
    display: flex;
    width: 50%;
    margin-top: 4vw;
    margin-left: 20vw;
}

.sns-box2 a {
    display: block;
}

.sns-box2 i {
    font-size: 4vw;
    color: #a9a9a9;
    margin-left: 2vw;
    transition: 1s;   
}

.sns-box2 i:hover {
    font-size: 4vw;
    color: #101010;
    margin-left: 2vw; 
    transition: 1s;   
}

footer p {
    text-align: center;
    color: #a9a9a9;
    font-size: 2vw;
    margin-bottom: 2vw;
}













