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

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}

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);
}



.hero {
    position: relative;
    width: 95%;
    margin-top: 10vw;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/main.png);
    background-size: 100% 100%;
}

.hero .hero-flex {
    display: flex;
    width: 100%;
}

.hero .hero-flex .left-text {
    width: 13%;
    margin-top: 18vw;
    margin-left: 7vw;
}

.hero .hero-flex .left-text img {
    width: 100%;
}

.hero .hero-flex .center-img {
    width: 40%;
    margin-left: auto;
    margin-right: auto;
    margin-top: -3vw;
}

.hero .hero-flex .center-img img {
    display: block;
    width: 100%;
}

.hero .hero-flex .right-text {
    width: 10%;
    margin-top: 18vw;
    margin-right: 8vw;
}

.hero .hero-flex .right-text img {
    width: 100%;
}

.hero .mizu {
    position: absolute;
    top: -11vw;
}

.intro {
    margin-top: 6vw;
    width: 100%;
}

.intro .intro1 {
    width: 35%; 
}

.intro .intro1 img {
    display: block;
    width: 100%;
    margin-left: 26vw;
}

.intro .intro2 {
    width: 30%;
}

.intro .intro2 img {
    display: block;
    width: 100%;
    margin-top: 10vw;
    margin-left: 36vw; 
}

.intro .intro3 {
    width: 35%; 
}

.intro .intro3 img {
    display: block;
    width: 100%; 
    margin-top: 10vw;
    margin-left: 50vw;
}

.intro .intro4 {
    width: 49%;
    margin-left: auto;
    margin-right: auto;
}

.intro .intro4 img {
    display: block;
    width: 100%;
    margin-top: 15vw;  
}

.intro .intro5 {
    width: 60%;
}

.intro .intro5 img {
    display: block;
    width: 100%;
    margin-left: 30vw;
    margin-top: 15vw;
}

.intro .intro6 {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.intro .intro6 img {
    display: block;
    width: 100%;
    margin-top: 15vw;   
}



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

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

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

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

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

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

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

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

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

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

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

.intro-mizu6 img {
    display: block;
    width: 100%;
    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: -100vw;
    left: 20vw;
    animation: anime1 60s;
    z-index: 100;
}

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

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

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

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

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

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

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

.intro-back {
    width: 100%;
    position: relative;
}

.intro-back img {
    width: 100%;
    position: absolute;
    top: -217vh;
    z-index: 200;
    opacity: 0.2;
}


.frex {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: linear-gradient(to bottom, #fffafa 0%, #66cdaa 40%, #20b2aa 80%, #fffafa 100% );
}

.frex .left {
    margin-top: 20vw;
    padding-left: 3vw;
    padding-bottom: 20vw;
    width: 95%;
}

.frex .left .text {
    width: 53%;
}

.frex .left .text img {
    width: 70%;
}

.left h2 {
    color: white;
    margin-top: 5vw;
    margin-bottom: 5vw;
    font-size: 4vw;
    font-family: serif;
}

.left p {
    color: white;
    font-size: 2vw;
    line-height: 2;
    letter-spacing: 0.1em;
}

.left p:nth-of-type(4) {
    text-indent: 1em;
    margin-top: 2vw;
    margin-bottom: 2vw;
    background-image: linear-gradient(90deg, rgba(196, 182, 197, 1), rgba(35, 117, 163, 1));
}

.back-collar {
    color: #66cdaa;
    background-color: whitesmoke;
    margin-left: 1vw;
    margin-right: 1vw;
}


.big {
    font-weight: 700;
    font-size: 1.4vw;
}

.frex .right {
    width: 80%;
}

.right .png {
    width: 100%;
}

.right .png img {
    display: block;
    width: 100%;
    padding-bottom: 20vw;
    margin-left: 5vw;
}

.item {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10vw;
}

.item .item-flex {
    display: flex;
    margin-bottom: 2vw;
}

.item .blur{
    transition: all 1s;
    filter: blur(10px);
    &.scrollin{
      filter: blur(0);
    }
}

.item .item-flex .left-img {
    width: 50%;
}

.item .item-flex .left-img img {
    width: 100%;
    height: 40vh;
    vertical-align: bottom;
}

.item-flex .right-text {
    width: 50%;  
}

.item-flex .one {
    background-image: linear-gradient(90deg, rgba(141, 139, 226, 1), rgba(220, 216, 242, 1) 0%, rgba(245, 195, 207, 1));
}

.item-flex .two {
    background-image: linear-gradient(90deg, rgba(229, 210, 230, 1), rgba(228, 210, 230, 1) 0%, rgba(197, 224, 239, 1));
}

.item-flex .three {
    background-image: linear-gradient(90deg, rgba(228, 210, 230, 1), rgba(205, 216, 222, 1) 0%, rgba(229, 210, 230, 1));
}

.item-flex .four {
    background-image: linear-gradient(90deg, rgba(229, 210, 230, 1), rgba(235, 217, 237, 1) 0%, rgba(192, 219, 234, 1));
}
    

.item-flex .right-text h2 {
    margin-top: 5vw;
    font-size: 4vw;
    margin-left: 5vw;
}

.item-flex .right-text p:nth-of-type(1) {
    font-size: 1.5vw;
    margin-left: 5vw;
}

.item-flex .right-text p:nth-of-type(2) {
    font-size: 3vw;
    margin-top: 3vw;
    margin-left: 5vw;
}


.item-flex .right-text p:nth-of-type(3) {
    font-size: 3vw;
    margin-top: 1vw;
    margin-left: 5vw;
}

.item-flex .right-text p:nth-of-type(4) {
    font-size: 2vw;
    margin-top: 3vw;
    margin-left: 5vw;
}

.item-flex .right-text p:nth-of-type(5) {
    font-size: 2vw;
    margin-top: 1.5vw;
    margin-left: 5vw;
}

.item-flex .right-text p:nth-of-type(6) {
    font-size: 2vw;
    margin-left: 5vw;
}

.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;
}











































