@charset "utf-8";
/* CSS Document */

html,body {
	height: 100%;
}

body {
	font-family: source-han-serif-japanese, serif;
	font-style: normal;
	font-weight: 200;
}

img {
	max-width: 100%;
	height: auto;
}
.w1444 {
	max-width: 1444px;
	margin: auto;
}@media screen and (max-width: 1444px) {
	.w1444 {
		padding: 0 60px;
	}
}
@media screen and (max-width: 767px) {
	.w1444 {
		padding: inherit;
	}
}

header {
	position: absolute;
	top: 1vh;
	left: 0;
	right: 0;
	margin: auto;
	display: flex;
	justify-content: space-between;
	z-index: 100;
}@media screen and (max-width: 767px) {
	header {
		position: fixed;
		background: rgba(255,255,255,0.9);
		flex-flow: column;
		justify-content: center;
		top: 0;
		height: 100%;
		transform: translateX(100%);
		opacity: 0;
		transition: ease .4s;
	}
}

header .logo {
	width: 10vw;
	min-width: 120px;
}@media screen and (max-width: 767px) {
	header .logo {
		margin: auto;
	}
}

header .menu {
	width: 960px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}@media screen and (max-width: 767px) {
	header .menu {
		width: auto;
		justify-content: center;
		flex-flow: column;
		height: 60vh;
	}
}

header .menu .gmenu {
	width: 500px;
	margin-right: 100px;
	display: flex;
	justify-content: space-between;
}@media screen and (max-width: 767px) {
	header .menu .gmenu {
		width: auto;
		margin: 0;
		flex-flow: column;
	}
}

@media screen and (max-width: 767px) {
	header .menu .gmenu li {
		margin: 20px 0;
	}
}


header .menu .gmenu li a {
	color: #000;
}@media screen and (max-width: 767px) {
	header .menu .gmenu li a {
		font-size: 20px;
	}
}

header .menu .sns {
	width: 6vw;
	display: flex;
	justify-content: space-between;
}@media screen and (max-width: 767px) {
	header .menu .sns {
		justify-content: center;
		margin-top: 60px;
	}
}

header .menu .sns li {
	width: 2.5vw;
	min-width: 30px;
}@media screen and (max-width: 767px) {
	header .menu .sns li {
		width: 44px;
		margin: 0 10px;
	}
}

.header__hamburger {
  width: 48px;
	position: fixed;
	right: 10px;
	top: 20px;
}

.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}

@media screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 1px;
  background-color: #000;
  position: relative;
  transition: ease .4s;
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}


/* ハンバーガーメニュークリック後のスタイル */
header.active {
  transform: translateX(0);
	opacity: 100%;
}

.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;

}

.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}

.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
	z-index: 0;
}

.hero__bg {
  position: absolute;
  z-index:10;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100vh;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  animation: anime 36s 0s infinite;
}

.hero__bg:nth-of-type(2) {
  animation-delay: 3s;
}
.hero__bg:nth-of-type(3) {
  animation-delay: 9s;
}
.hero__bg:nth-of-type(4) {
  animation-delay: 15s;
}
.hero__bg:nth-of-type(5) {
  animation-delay: 21s;
}
.hero__bg:nth-of-type(6) {
  animation-delay: 27s;
}

@keyframes anime {
  0% {
        opacity: 0;
    }
    8% {
        opacity: 1;
    }
    17% {
        opacity: 1;
    }
    25% {
        opacity: 0;
/*        transform: scale(1.2) ;*/
         z-index:9;
    }
    100% { opacity: 0 }
}
.main {
	height: 100%;
	background: no-repeat top center;
	background-size: cover;
}

.main .w1444 {
	position: relative;
}


@media screen and (max-width: 767px) {
	.main#m0 img {
		padding: 0 10vw;
	}
}

.main#m1 {
	background-image: url("images/top/main1.jpg");
}

.main#m1 img {
	width: 35%;
	position: absolute;
	top: 20vh;
	left: 100px;
}@media screen and (max-width: 767px) {
	.main#m1 img {
		width: 80vw;
		left: 6vw;
	}
}

.main#m2 {
	background-image: url("images/top/main2.jpg");
}@media screen and (max-width: 767px) {
	.main#m2 {
		background-position: bottom;
	}
}

.main#m2 img {
	width: 35%;
	position: absolute;
	top: 18vh;
	right: 100px;
}@media screen and (max-width: 767px) {
	.main#m2 img {
		top: 50vh;
		width: 80vw;
		right: 8vw;
	}
}

.main#m3 {
	background-image: url("images/top/main3.jpg");
}

.main#m3 img {
	width: 65%;
	position: absolute;
	top: 19vh;
	left: 0;
}@media screen and (max-width: 767px) {
	.main#m3 img {
		width: 80vw;
		left: 6vw;
	}
}

.main#m4 {
	background-image: url("images/top/main4.jpg");
}

.main#m4 img {
	width: 40%;
	position: absolute;
	top: 19vh;
	left: 100px;
}@media screen and (max-width: 767px) {
	.main#m4 img {
		width: 80vw;
		left: 6vw;
		top: 30vh;
	}
}

.main#m5 {
	background-image: url("images/top/main5.jpg");
}

.main#m5 img {
	width: 40%;
	position: absolute;
	top: 19vh;
	left: 0;
	right: 0;
	margin: auto;
}@media screen and (max-width: 767px) {
	.main#m5 img {
		width: 80vw;
		top: 28vh;
	}
}

.main#m0 {
	display: flex;
	align-items: center;
	justify-content: center;
}
.main#m0 img {
	width: 960px;
	margin: auto;
}

h2 {
	font-family: "futura-pt", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 80px;
	letter-spacing: 4px;
	margin-left: 2px;
}@media screen and (max-width: 1600px) {
	h2 {
		font-size: 60px;
	}
}@media screen and (max-width: 767px) {
	h2 {
		font-size: 40px;
	}
}


.content01 {
	background: #00b2ae url("images/top/back1.png") no-repeat bottom center;
	background-size: 1600px;
	text-align: center;
	padding: 100px 0 580px;
	color: #FFF;
}@media screen and (max-width: 767px) {
	.content01 {
		padding: 60px 5vw 180px;
		background-size: contain;
	}
}

.content01 .flex {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 60px;
}@media screen and (max-width: 767px) {
	.content01 .flex {
		flex-flow: column;
	}
}

@media screen and (min-width: 768px) {
	.sp {
		display: none;
	}
}
@media screen and (max-width: 767px) {
	.pc {
		display: none;
	}
}

.content01 .flex h3 {
	font-size: 40px;
}@media screen and (max-width: 1600px) {
	.content01 .flex h3 {
		font-size: 30px;
	}
}@media screen and (max-width: 767px) {
	.content01 .flex h3 {
		font-size: 24px;
	}
}

.content01 .flex p {
	font-size: 20px;
	line-height: 200%;
	text-align: left;
	margin-left: 22px;
}@media screen and (max-width: 1600px) {
	.content01 .flex p {
		font-size: 18px;
	}
}@media screen and (max-width: 767px) {
	.content01 .flex p {
		font-size: 14px;
		margin-top: 60px;
	}
	.content01 .flex p br {
		display: none;
	}
}

.content02 {
	padding: 100px 0;
	text-align: center;
	color: #FFF;
	background: #8fc31f;
	position: relative;
}@media screen and (max-width: 767px) {
	.content02 {
		padding: 60px 5vw;
	}
}

.content02 .earth {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 60vw;
}@media screen and (max-width: 767px) {
	.content02 .earth {
		display: none;
	}
}

.content02 p.catch {
	font-size: 30px;
	margin-top: 20px;
}@media screen and (max-width: 767px) {
	.content02 p.catch {
		font-size: 24px;
	}
}

.content02 .flex {
	margin-top: 60px;
	display: flex;
	justify-content: center;
}@media screen and (max-width: 767px) {
	.content02 .flex {
		flex-flow: column;
	}
}

.content02 .flex .box {
	border: #FFF solid 1px;
	padding: 60px 25px;
	margin: 0 30px;
}@media screen and (max-width: 767px) {
	.content02 .flex .box {
		margin: 0 0 25px;
	}
}

.content02 .flex > .fadein:nth-of-type(2) {
	-moz-transition-delay:200ms;
	-webkit-transition-delay:200ms;
	-o-transition-delay:200ms;
	-ms-transition-delay:200ms;
	}

.content02 .flex > .fadein:nth-of-type(3) {
	-moz-transition-delay:400ms;
	-webkit-transition-delay:400ms;
	-o-transition-delay:400ms;
	-ms-transition-delay:400ms;
	}

.content02 .flex .box h3 {
	font-size: 35px;
}@media screen and (max-width: 767px) {
	.content02 .flex .box h3 {
		font-size: 24px;
	}
}

.content02 .flex .box p {
	margin: 30px 0 0;
	line-height: 200%;
	font-size: 20px;
}@media screen and (max-width: 767px) {
	.content02 .flex .box p {
		font-size: 16px;
	}
}

.content03 {
	padding: 100px 0;
	text-align: center;
}@media screen and (max-width: 767px) {
	.content03 {
		padding: 60px 5vw 0;
	}
}

.content03 .flex {
	display: flex;
	justify-content: center;
}@media screen and (max-width: 767px) {
	.content03 .flex {
		flex-flow: column;
	}
}

.content03 .flex > .fadein:nth-of-type(2) {
	-moz-transition-delay:200ms;
	-webkit-transition-delay:200ms;
	-o-transition-delay:200ms;
	-ms-transition-delay:200ms;
	}

.content03 .flex h2 {
	color: #00b2ae;
}

.content03 .flex p.subtext {
	font-size: 25px;
	line-height: 100%;
}@media screen and (max-width: 767px) {
	.content03 .flex p.subtext {
		font-size: 24px;
	}
}

.content03 .flex .left {
	margin: 0 20px;
	width: 700px;
}@media screen and (max-width: 767px) {
	.content03 .flex .left {
		width: auto;
	}
}

.content03 .flex .left .flex2 {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	margin-top: 35px;
}

.content03 .flex .left .flex2 .box {
	width: 45%;
	margin-top: 25px;
}

.content03 .flex .left .flex2 .box img {
	vertical-align: bottom;
}

.content03 .flex .right {
	margin: 0 20px;
	width: 700px;
	position: relative;
	background: url( "images/top/img5.jpg") no-repeat;
	background-position: top 187px center;
}@media screen and (max-width: 1600px) {
	.content03 .flex .right {
		background-position: top 162px center;
	}
}@media screen and (max-width: 767px) {
	.content03 .flex .right {
		width: auto;
		margin: 60px auto 0;
		background-image: none;
	}
}

.content03 .flex .right .box {
	margin-top: 60px;
	position: relative;
}@media screen and (max-width: 767px) {
	.content03 .flex .right .box {
		margin-top: 40px;
	}
}

.content03 .flex .right .box .text {
	position: absolute;
	left: 0;
	right: 0;
	top: 25vh;
}@media screen and (max-width: 767px) {
	.content03 .flex .right .box .text {
		position: inherit;
		top: auto;
	}
}

.content03 .flex .right .box p {
	font-size: 20px;
	line-height: 200%;
}@media screen and (max-width: 767px) {
	.content03 .flex .right .box p {
		font-size: 14px;
	}
}

a.arw {
	border: solid 1px #00b2ae;
	color: #00b2ae;
	border-radius: 5px;
	padding: 10px 20px;
	line-height: 100%;
	display: inline-block;
	font-size: 18px;
	margin: 40px auto;
}

a.arw span {
	margin-left: 30px;
	font-size: 12px;
}

.content04 {
	padding: 60px 0 0;
	text-align: center;
}@media screen and (max-width: 767px) {
	.content04 {
		padding: 60px 5vw 0;
	}
}

.content04 h2 {
	color: #00b2ae;
}

.content04 ul {
	margin: 40px auto 0;
	max-width: 960px;
	height: 196px;
	overflow-y: scroll;
}@media screen and (max-width: 767px) {
	.content04 ul {
		height: 400px !important;
		overflow-y: scroll;
	}
}

.content04 ul li {
	border-top: #8B8B8B solid 1px;
	color: #333333;
	display: flex;
	padding: 20px 0;
	font-size: 16px;
}@media screen and (max-width: 767px) {
	.content04 ul li {
		flex-flow: column;
		text-align: left;
	}
}

.content04 ul li:last-of-type {
	border-bottom: #8B8B8B solid 1px;
}

.content04 ul li a {
	color: #333333;
	margin-left: 60px;
	font-size: 16px;
}@media screen and (max-width: 767px) {
	.content04 ul li a {
		margin: 20px 0 0;
		
	}
}

.footer-contact {
	background: url("images/common/contact.png") no-repeat;
	background-size: cover;
	padding: 100px 0;
	text-align: center;
	color: #FFF;
	margin-top: 100px;
}@media screen and (max-width: 767px) {
	.footer-contact {
		padding: 60px 5vw;
		margin-top: 60px;
	}
}

.footer-contact p.catch {
	font-size: 16px;
}

.footer-contact .flex {
	display: flex;
	justify-content: space-between;
	width: 1200px;
	margin: 60px auto 0;
	align-items: center;
}@media screen and (max-width: 767px) {
	.footer-contact .flex {
		width: auto;
		flex-flow: column;
		margin: 30px auto 0;
	}
}

.footer-contact a.arw {
	border-color: #FFF;
	color: #FFF;
	margin: 0;
}@media screen and (max-width: 767px) {
	.footer-contact a.arw {
		width: 280px;
		position: relative;
		margin: 10px auto 0;
	}
	.footer-contact a.arw span {
		position: absolute;
		right: 20px;
	}
}

.footer-contact .sns {
	width: 100px;
	display: flex;
}@media screen and (max-width: 767px) {
	.footer-contact .sns {
		margin: 30px auto;
	}
}


.footer-contact a.facebook {
	width: 44px;
	margin: 0 10px;
}

.footer-contact a.instagram {
	width: 44px;
}

.footer-contact a.tel {
	width: 340px;
}

footer {
	padding: 100px 0;
	text-align: center;
}@media screen and (max-width: 767px) {
	footer {
		padding: 60px 5vw;
	}
}

footer .flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 400px;
	text-align: left;
	border-bottom: #333 solid 1px;
	padding-bottom: 20px;
	margin: 0 60px;
}@media screen and (max-width: 767px) {
	footer .flex {
		width: 260px;
		max-width: 100%;
	}
}

footer .flex a.homest {
	color: #333;
	font-size: 20px;
	line-height: 130%;
}@media screen and (max-width: 767px) {
	footer .flex a.homest {
		font-size: 14px;
		white-space: nowrap;
	}
}

footer .flex a.arw {
	margin: 0;
	padding: 10px 25px;
}

footer .flex a.arw span {
	margin: 0;
	font-size: 20px;
}

footer .flex2 {
	margin-top: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}@media screen and (max-width: 767px) {
	footer .flex2 {
		flex-flow: column;
	}
}

footer .flex2 .logo {
	width: 240px;
	margin-bottom: 45px;
}@media screen and (max-width: 767px) {
	footer .flex2 .logo {
		margin: 25px auto 0;
		width: 60%;
	}
}

footer .flex2 h3 {
	margin: 0 25px;
	font-size: 35px;
}@media screen and (max-width: 767px) {
	footer .flex2 h3 {
		font-size: 16px;
		margin: 30px 0;
	}
}

footer .flex2 p.address {
	font-size: 14px;
	text-align: left;
}

footer .link-area {
	display: flex;
	justify-content: center;
	align-items: center;
}@media screen and (max-width: 767px) {
	footer .link-area {
		flex-flow: column;
	}
}

footer .link-area .michiue {
	width: 400px;
	margin: 0 60px;
}@media screen and (max-width: 767px) {
	footer .link-area .michiue {
		width: 260px;
		margin: 20px auto;
	}
}

@media screen and (max-width: 767px) {
	footer .copyright {
		margin-top: 30px;
		font-size: 12px;
		color: #555555;
	}
}



/* 画面外にいる状態 */
.fadein {
	opacity : 0.1;
	transform : translate(0, 50px);
	transition : all 800ms;
	}

/* 画面内に入った状態 */
.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
	}



