@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,400,500,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Roboto+Slab:700");

* {
  -webkit-backface-visibility:hidden;
  backface-visibility:hidden;
}

html {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  padding: 0;
  height: 100%;
  color: #333;
  font-size: 75%;
  font-family: 'Noto Sans JP', sans-serif,"メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック",sans-serif;
  line-height: 2.0;
  /* background:linear-gradient(140deg,#eee 0%,#eee 20%,#fff 20%,#fff 100%); */
}

#loading {
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  transform: translate(-50%,-50%);
  top: 50%;
  left: 50%;
  z-index: 8888888888;
}

#loading img {
  display: block;
  width: 20vw;
  height: 20vh;
  position: absolute;
  transform: translate(-50%,-50%) rotate(0deg);
  top: 50%;
  left: 50%;
  -webkit-animation: loading-animate 1s linear infinite;
  -moz-animation: loading-animate 1s linear infinite;
  -ms-animation: loading-animate 1s linear infinite;
  animation: loading-animate 1s linear infinite;
}
@-webkit-keyframes loading-animate {
  0%{ transform: translate(-50%,-50%) rotate(0deg); }
  100%{ transform: translate(-50%,-50%) rotate(360deg); }
}
@-moz-keyframes loading-animate {
  0%{ transform: translate(-50%,-50%) rotate(0deg); }
  100%{ transform: translate(-50%,-50%) rotate(360deg); }
}
@-ms-keyframes loading-animate {
  0%{ transform: translate(-50%,-50%) rotate(0deg); }
  100%{ transform: translate(-50%,-50%) rotate(360deg); }
}
@keyframes loading-animate {
  0%{ transform: translate(-50%,-50%) rotate(0deg); }
  100%{ transform: translate(-50%,-50%) rotate(360deg); }
}


#fade {
    width: 100%;
    height: 100%;
    display: none;
    background-color: #FFFFFF;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 999999999;
}

a {
  text-decoration: none;
  color: #a80000;
  -webkit-transition-duration: 0.35s;
  -moz-transition-duration: 0.35s;
  -ms-transition-duration: 0.35s;
  -o-transition-duration: 0.35s;
  transition-duration: 0.35s;
}
a:hover {
  font-weight: 600;
}

p {
  display: block;
  margin: 0;
  padding: 0;
  font-weight: 300;
  font-size: 0.8rem;
  line-height: 1.8rem;
}
h1 {
  margin: 0;
  padding: 0;
  width: 90%;
}
h2 {
  margin: 0 auto;
  color: #333;
  text-align: left;
  letter-spacing: -0.1rem;
  font-weight: 700;
  font-size: 8rem;
  line-height: 1.6;
  font-family: 'Roboto Slab', serif;
}

.lineClear {
  clear: both;
  line-height: 0;
}
.pageTop {
  margin: 4em 0;
  width: 100%;
  text-align: center;
}
.left {
  display: block;
  float: left;
  width: 460px;
  text-align: left !important;
}
.right {
  display: block;
  float: right;
  overflow-y: hidden;
  width: 460px;
  text-align: left !important;
  word-wrap: break-word;
}
.pc {
  display: block;
}
.sp {
  display: none;
}

/* 画面外にいる状態 */
.fadeinLeft {
  opacity:0.0;
  filter: alpha(opacity=0);
  transition : all 500ms;
  transform : translate(-100px, 0);
  -moz-opacity:0.0;
}
.fadeinRight {
  opacity:0.0;
  filter: alpha(opacity=0);
  transition : all 500ms;
  transform : translate(100px, 0);
  -moz-opacity:0.0;
}
.fadeinBottom {
  opacity:0.0;
  filter: alpha(opacity=0);
  transition : all 500ms;
  transform : translate(0, 100px);
  -moz-opacity:0.0;
}

/* 画面内に入った状態 */
.fadeinLeft.scrollin, .fadeinRight.scrollin, .fadeinBottom.scrollin {
  opacity:1.0;
  filter: alpha(opacity=100);
  transform : translate(0, 0);
  -moz-opacity:1.0;
}

.worksIn {
  opacity:0.0;
  -moz-opacity:0.0;
  filter: alpha(opacity=0);
  transition: all 1000ms;
  transform: rotate3d(0.5,0,0,90deg);
}
.worksIn.scrollin {
  opacity:1.0;
  filter: alpha(opacity=100);
  -moz-opacity:1.0;
  transform: rotate3d(0.5,0,0,0deg);
}



/*header*/
header {
  position: fixed;
  top: 0;
  z-index: 9989;
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 70px;
  background-color: rgba(255,255,255,0.7);
}
#headerArea {
  position: absolute;
  top: 0rem;
  left: 50%;
  z-index: 9988;
  margin: 0 auto;
  width: 1270px;
  transform: translate(-50%,0);
  z-index: 9979;
}
.logoArea {
  position: absolute;
  top: 0;
  left: 0;
}
.logoArea img {
  width: 300px;
  height: 10px;
}

/*nav*/
nav.globalMenu {
	position: fixed !important;
	top: 0;
	left: 0;
	z-index: 9998;
  overflow: hidden;
	margin: 0;
	padding: 0;
	width: 110%;
	height: 100%;
	background: rgba(255,255,255,0.90);
  box-shadow: 0 0 3px rgba(0,0,0,0.2);
	color: #000;
	text-align: left;
	text-decoration: none;
	text-indent: 1.0rem;
  font-weight: 100;
	font-size: 2.0rem;
	transition: all 0.6s;
	transform: translateX(100%);
}

nav.globalMenu ul {
  display: block;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
	margin: 0;
	padding: 4rem 0 0 0;
	width: 430px;
	height: 100%;
	list-style-type: none;
  -ms-overflow-style:none;
}
nav.globalMenu ul::-webkit-scrollbar {
  display: none;
}

nav.globalMenu ul li {
	margin: 0;
	padding: 0.5rem 0;
	width: 100%;
	list-style-type: none;
	font-size: 1.2rem;
  line-height: 2;
  font-weight: 300;
  position: relative;
}

nav.globalMenu ul li a {
  position: absolute;
  top: 0;
  left: -100%;
	display: block;
  width: 100%;
	margin: 0;
	padding: 0.5rem 0;
	color: #000;
	text-decoration: none;
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
}
nav.globalMenu ul li a.hoverIn {
  left: 0%;
  background-color: rgba(168,0,0,1.0);
  color: #fff;
}
nav.globalMenu ul li ul {
  display: block;
  margin: 0;
  padding: 0;
}
nav.globalMenu ul li ul li {
  border: none !important;
  font-size: 80%;
  line-height: 1.8;
}
nav.globalMenu ul li ul li:nth-last-child(1) {
  padding: 0 0 1.5rem 0;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenu.active {
	transform: translateX(70%);
}

#navArea {
  position: relative;
  width: 1270px;
  transform: translate(-50%,0);
  top: 0;
  left: 50%;
  z-index: 10000;
}

.navToggle {
	position: absolute;
	top: 0.5rem;
	right: 1rem;
	z-index: 9999;
	display: block;
	width: 3.5rem;
	height: 3.5rem;
  border-radius: 50px;
  background-color: rgba(255,255,255,0);
	text-align: center;
	cursor: pointer;
  -webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
}

.navToggle span {
	position: absolute;    /* .navToggleに対して */
	left: 1.0rem;
	display: block;
	width: 35px;
	border-bottom: solid 1px #000;
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
}

.navToggle span:nth-child(1) {
	top: 1.2rem;
}

.navToggle span:nth-child(2) {
	top: 1.7rem;
}

.navToggle span:nth-child(3) {
	top: 2.2rem;
}

.navToggle.active {
  background-color: rgba(255,255,255,0);
}


/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1) {
	top: 1.6rem;
	left: 1.0rem;
  border-bottom: solid 1px #000;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
	top: 1.6rem;
  border-bottom: solid 1px #000;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}


.hero1 {
  position: relative;
  width: 1270px;
  height: 626px;
  margin: 70px auto 30px auto;
  padding: 0;
  overflow: hidden;
}
.hero1 video {
  width: 1270px;
  height: 656px;
  overflow: hidden;
  background-color: #fff;
  padding: 0px 0 0 60px;
}
.hero1 p {
  display: block;
  position: absolute;
  top: 0rem;
  left: 0rem;
  font-weight: 700;
  font-size: 6rem;
  line-height: 1.0;
  font-family: 'Roboto Slab', serif;
}

.hero1sec {
  position: relative;
  top: 70px;
  width: 1270px;
  height: 210px;
  margin: 0 auto 100px auto;
  padding: 50px 0 0 0;
  overflow: hidden;
}
.hero1sec video {
  width: 1270px;
  height: 110;
  overflow: hidden;
  background-color: #fff;
  position: absolute;
  top: -2rem;
}
.hero1sec p {
  display: block;
  position: absolute;
  top: -3.5rem;
  left: 3rem;
  font-weight: 700;
  font-size: 7rem !important;
  line-height: 1.0;
  font-family: 'Roboto Slab', serif;
}

#statement {
  font-family: 'Noto Sans JP', sans-serif,"メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック",sans-serif;
  font-size: 0.8rem !important;
  line-height: 2.6 !important;
  position: absolute;
  top: 18.5rem;
  letter-spacing: 0.1rem;
}
#statementSec {
  font-family: 'Noto Sans JP', sans-serif,"メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック",sans-serif;
  font-size: 0.8rem !important;
  line-height: 2.6 !important;
  position: absolute;
  top: 7rem;
  letter-spacing: 0.1rem;
}
.decObject {
  position: absolute;
  transform: translate(-50%,-50%);
  top: 0;
  right: -1rem;
  -webkit-mix-blend-mode: multiply;
  -moz-mix-blend-mode: multiply;
  -ms-mix-blend-mode: multiply;
  mix-blend-mode: multiply;
  -webkit-animation: object-animate 5s ease-in-out infinite alternate;
  -moz-animation: object-animate 5s ease-in-out infinite alternate;
  -ms-animation: object-animate 5s ease-in-out infinite alternate;
  animation: object-animate 5s ease-in-out infinite alternate;
}
@-webkit-keyframes object-animate {
  0%{ top: -1rem; }
  100%{ top: -3rem; }
}
@-moz-keyframes object-animate {
  0%{ top: -1rem; }
  100%{ top: -3rem; }
}
@-ms-keyframes object-animate {
  0%{ top: -1rem; }
  100%{ top: -3rem; }
}
@keyframes object-animate {
  0%{ top: 40%; }
  100%{ top: 30%; }
}
.decObject img {
  width: 400px;
}

.decObjectSec {
  position: absolute;
  top: 0;
  right: 5rem;
  -webkit-mix-blend-mode: multiply;
  -moz-mix-blend-mode: multiply;
  -ms-mix-blend-mode: multiply;
  mix-blend-mode: multiply;
  -webkit-animation: object-animate-sec 5s ease-in-out infinite alternate;
  -moz-animation: object-animate-sec 5s ease-in-out infinite alternate;
  -ms-animation: object-animate-sec 5s ease-in-out infinite alternate;
  animation: object-animate-sec 5s ease-in-out infinite alternate;
}
@-webkit-keyframes object-animate-sec {
  0%{ top: -1rem; }
  100%{ top: -3rem; }
}
@-moz-keyframes object-animate-sec {
  0%{ top: -1rem; }
  100%{ top: -3rem; }
}
@-ms-keyframes object-animate-sec {
  0%{ top: -1rem; }
  100%{ top: -3rem; }
}
@keyframes object-animate-sec {
  0%{ top: -1rem; }
  100%{ top: -3rem; }
}



.linkArrow {
  width: 1270px;
  margin: 0 auto;
  padding: 0;
  text-align: right;
}
.linkArrow a {
  display: block;
  float: right;
  width: 170px;
  height: 56px;
  position: relative;
  overflow: hidden;
}
.linkArrow a:hover {
  width: 120px;
}
.linkArrowLine1 {
  width: 100%;
  height: 1px;
  background-color: #333;
  position: absolute;
  transform: translate(-50%,0%);
  top: 50%;
  left: 50%;
}
.linkArrowLine2 {
  width: 40px;
  height: 1px;
  background-color: #333;
  position: absolute;
  transform: translate(0%,0%);
  transform: rotate(45deg);
  top: 13px;
  right: -6px;
}
.linkArrowLine3 {
  width: 40px;
  height: 1px;
  background-color: #333;
  position: absolute;
  transform: translate(0%,0%);
  transform: rotate(-45deg);
  top: 42px;
  right: -6px;
}


.txtEng {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin: 1rem 0 0 0;
  letter-spacing: 0.05rem;
}


.triangle1-1, .triangle1-2, .triangle1-3,
.triangle2-1, .triangle2-2, .triangle2-3,
.triangle3-1, .triangle3-2, .triangle3-3,
.triangle4-1, .triangle4-2, .triangle4-3 {
  position: absolute;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  mix-blend-mode: multiply;
  opacity:0.6;
  filter: alpha(opacity=60);
  -moz-opacity:0.6;
  -webkit-filter: drop-shadow(5px 5px 30px rgba(0,0,0,0.3));
  -moz-filter: drop-shadow(5px 5px 30px rgba(0,0,0,0.3));
  filter: drop-shadow(5px 5px 30px rgba(0,0,0,0.3));
}
_::-webkit-full-page-media, _:future, :root .triangle1-1,
_::-webkit-full-page-media, _:future, :root .triangle1-2,
_::-webkit-full-page-media, _:future, :root .triangle1-3,
_::-webkit-full-page-media, _:future, :root .triangle2-1,
_::-webkit-full-page-media, _:future, :root .triangle2-2,
_::-webkit-full-page-media, _:future, :root .triangle2-3,
_::-webkit-full-page-media, _:future, :root .triangle3-1,
_::-webkit-full-page-media, _:future, :root .triangle3-2,
_::-webkit-full-page-media, _:future, :root .triangle3-3,
_::-webkit-full-page-media, _:future, :root .triangle4-1,
_::-webkit-full-page-media, _:future, :root .triangle4-2,
_::-webkit-full-page-media, _:future, :root .triangle4-3 {
  -webkit-transform: translate(-50%,0);
  transform: translate(-50%,0);
}

.triangle1-1 {
  width: 633px;
  height: 582px;
  left: 20%;
  z-index: 1;
  -webkit-animation: triangle-animate1-1 5s ease-in-out infinite alternate;
  -moz-animation: triangle-animate1-1 5s ease-in-out infinite alternate;
  -ms-animation: triangle-animate1-1 5s ease-in-out infinite alternate;
  animation: triangle-animate1-1 5s ease-in-out infinite alternate;
}
@-webkit-keyframes triangle-animate1-1 {
  0%{ top: 25rem; }
  100%{ top: 23rem; }
}
@-moz-keyframes triangle-animate1-1 {
  0%{ top: 25rem; }
  100%{ top: 23rem; }
}
@-ms-keyframes triangle-animate1-1 {
  0%{ top: 25rem; }
  100%{ top: 23rem; }
}
@keyframes triangle-animate1-1 {
  0%{ top: 25rem; }
  100%{ top: 23rem; }
}
.triangle1-2 {
  width: 363px;
  height: 351px;
  left: 10%;
  z-index: 2;
  -webkit-animation: triangle-animate1-2 7s ease-in-out infinite alternate;
  -moz-animation: triangle-animate1-2 7s ease-in-out infinite alternate;
  -ms-animation: triangle-animate1-2 7s ease-in-out infinite alternate;
  animation: triangle-animate1-2 7s ease-in-out infinite alternate;
}
@-webkit-keyframes triangle-animate1-2 {
  0%{ top: 22rem; }
  100%{ top: 19rem; }
}
@-moz-keyframes triangle-animate1-2 {
  0%{ top: 22rem; }
  100%{ top: 19rem; }
}
@-ms-keyframes triangle-animate1-2 {
  0%{ top: 22rem; }
  100%{ top: 19rem; }
}
@keyframes triangle-animate1-2 {
  0%{ top: 22rem; }
  100%{ top: 19rem; }
}
.triangle1-3 {
  width: 212px;
  height: 183px;
  left: 35%;
  z-index: 3;
  -webkit-animation: triangle-animate1-3 8s ease-in-out infinite alternate;
  -moz-animation: triangle-animate1-3 8s ease-in-out infinite alternate;
  -ms-animation: triangle-animate1-3 8s ease-in-out infinite alternate;
  animation: triangle-animate1-3 8s ease-in-out infinite alternate;
}
@-webkit-keyframes triangle-animate1-3 {
  0%{ top: 30rem; }
  100%{ top: 26rem; }
}
@-moz-keyframes triangle-animate1-3 {
  0%{ top: 30rem; }
  100%{ top: 26rem; }
}
@-ms-keyframes triangle-animate1-3 {
  0%{ top: 30rem; }
  100%{ top: 26rem; }
}
@keyframes triangle-animate1-3 {
  0%{ top: 30rem; }
  100%{ top: 26rem; }
}

.triangle2-1 {
  width: 633px;
  height: 582px;
  left: 20%;
  z-index: 1;
  -webkit-animation: triangle-animate2-1 5s ease-in-out infinite alternate;
  -moz-animation: triangle-animate2-1 5s ease-in-out infinite alternate;
  -ms-animation: triangle-animate2-1 5s ease-in-out infinite alternate;
  animation: triangle-animate2-1 5s ease-in-out infinite alternate;
}
@-webkit-keyframes triangle-animate2-1 {
  0%{ top: 15rem; }
  100%{ top: 13rem; }
}
@-moz-keyframes triangle-animate2-1 {
  0%{ top: 15rem; }
  100%{ top: 13rem; }
}
@-ms-keyframes triangle-animate2-1 {
  0%{ top: 15rem; }
  100%{ top: 13rem; }
}
@keyframes triangle-animate2-1 {
  0%{ top: 15rem; }
  100%{ top: 13rem; }
}
.triangle2-2 {
  width: 363px;
  height: 351px;
  left: 30%;
  z-index: 2;
  -webkit-animation: triangle-animate2-2 7s ease-in-out infinite alternate;
  -moz-animation: triangle-animate2-2 7s ease-in-out infinite alternate;
  -ms-animation: triangle-animate2-2 7s ease-in-out infinite alternate;
  animation: triangle-animate2-2 7s ease-in-out infinite alternate;
}
@-webkit-keyframes triangle-animate2-2 {
  0%{ top: 15rem; }
  100%{ top: 12rem; }
}
@-moz-keyframes triangle-animate2-2 {
  0%{ top: 15rem; }
  100%{ top: 12rem; }
}
@-ms-keyframes triangle-animate2-2 {
  0%{ top: 15rem; }
  100%{ top: 12rem; }
}
@keyframes triangle-animate2-2 {
  0%{ top: 15rem; }
  100%{ top: 12rem; }
}
.triangle2-3 {
  width: 212px;
  height: 183px;
  left: 20%;
  z-index: 3;
  -webkit-animation: triangle-animate2-3 8s ease-in-out infinite alternate;
  -moz-animation: triangle-animate2-3 8s ease-in-out infinite alternate;
  -ms-animation: triangle-animate2-3 8s ease-in-out infinite alternate;
  animation: triangle-animate2-3 8s ease-in-out infinite alternate;
}
@-webkit-keyframes triangle-animate2-3 {
  0%{ top: 16rem; }
  100%{ top: 13rem; }
}
@-moz-keyframes triangle-animate2-3 {
  0%{ top: 16rem; }
  100%{ top: 13rem; }
}
@-ms-keyframes triangle-animate2-3 {
  0%{ top: 16rem; }
  100%{ top: 13rem; }
}
@keyframes triangle-animate2-3 {
  0%{ top: 16rem; }
  100%{ top: 13rem; }
}

.triangle3-1 {
  width: 633px;
  height: 582px;
  left: 20%;
  z-index: 1;
  -webkit-animation: triangle-animate3-1 5s ease-in-out infinite alternate;
  -moz-animation: triangle-animate3-1 5s ease-in-out infinite alternate;
  -ms-animation: triangle-animate3-1 5s ease-in-out infinite alternate;
  animation: triangle-animate3-1 5s ease-in-out infinite alternate;
}
@-webkit-keyframes triangle-animate3-1 {
  0%{ top: 18rem; }
  100%{ top: 16rem; }
}
@-moz-keyframes triangle-animate3-1 {
  0%{ top: 18rem; }
  100%{ top: 16rem; }
}
@-ms-keyframes triangle-animate3-1 {
  0%{ top: 18rem; }
  100%{ top: 16rem; }
}
@keyframes triangle-animate3-1 {
  0%{ top: 18rem; }
  100%{ top: 16rem; }
}
.triangle3-2 {
  width: 363px;
  height: 351px;
  left: 30%;
  z-index: 2;
  -webkit-animation: triangle-animate3-2 7s ease-in-out infinite alternate;
  -moz-animation: triangle-animate3-2 7s ease-in-out infinite alternate;
  -ms-animation: triangle-animate3-2 7s ease-in-out infinite alternate;
  animation: triangle-animate3-2 7s ease-in-out infinite alternate;
}
@-webkit-keyframes triangle-animate3-2 {
  0%{ top: 10rem; }
  100%{ top: 7rem; }
}
@-moz-keyframes triangle-animate3-2 {
  0%{ top: 10rem; }
  100%{ top: 7rem; }
}
@-ms-keyframes triangle-animate3-2 {
  0%{ top: 10rem; }
  100%{ top: 7rem; }
}
@keyframes triangle-animate3-2 {
  0%{ top: 10rem; }
  100%{ top: 7rem; }
}
.triangle3-3 {
  width: 212px;
  height: 183px;
  left: 35%;
  z-index: 3;
  -webkit-animation: triangle-animate3-3 8s ease-in-out infinite alternate;
  -moz-animation: triangle-animate3-3 8s ease-in-out infinite alternate;
  -ms-animation: triangle-animate3-3 8s ease-in-out infinite alternate;
  animation: triangle-animate3-3 8s ease-in-out infinite alternate;
}
@-webkit-keyframes triangle-animate3-3 {
  0%{ top: 20rem; }
  100%{ top: 16rem; }
}
@-moz-keyframes triangle-animate3-3 {
  0%{ top: 20rem; }
  100%{ top: 16rem; }
}
@-ms-keyframes triangle-animate3-3 {
  0%{ top: 20rem; }
  100%{ top: 16rem; }
}
@keyframes triangle-animate3-3 {
  0%{ top: 20rem; }
  100%{ top: 16rem; }
}

.triangle4-1 {
  width: 633px;
  height: 582px;
  left: 20%;
  z-index: 1;
  -webkit-animation: triangle-animate4-1 5s ease-in-out infinite alternate;
  -moz-animation: triangle-animate4-1 5s ease-in-out infinite alternate;
  -ms-animation: triangle-animate4-1 5s ease-in-out infinite alternate;
  animation: triangle-animate4-1 5s ease-in-out infinite alternate;
}
@-webkit-keyframes triangle-animate4-1 {
  0%{ top: 30rem; }
  100%{ top: 28rem; }
}
@-moz-keyframes triangle-animate4-1 {
  0%{ top: 30rem; }
  100%{ top: 28rem; }
}
@-ms-keyframes triangle-animate4-1 {
  0%{ top: 30rem; }
  100%{ top: 28rem; }
}
@keyframes triangle-animate4-1 {
  0%{ top: 30rem; }
  100%{ top: 28rem; }
}
.triangle4-2 {
  width: 363px;
  height: 351px;
  left: 10%;
  z-index: 2;
  -webkit-animation: triangle-animate4-2 7s ease-in-out infinite alternate;
  -moz-animation: triangle-animate4-2 7s ease-in-out infinite alternate;
  -ms-animation: triangle-animate4-2 7s ease-in-out infinite alternate;
  animation: triangle-animate4-2 7s ease-in-out infinite alternate;
}
@-webkit-keyframes triangle-animate4-2 {
  0%{ top: 28rem; }
  100%{ top: 25rem; }
}
@-moz-keyframes triangle-animate4-2 {
  0%{ top: 28rem; }
  100%{ top: 25rem; }
}
@-ms-keyframes triangle-animate4-2 {
  0%{ top: 28rem; }
  100%{ top: 25rem; }
}
@keyframes triangle-animate4-2 {
  0%{ top: 28rem; }
  100%{ top: 25rem; }
}
.triangle4-3 {
  width: 212px;
  height: 183px;
  left: 35%;
  z-index: 3;
  -webkit-animation: triangle-animate4-3 8s ease-in-out infinite alternate;
  -moz-animation: triangle-animate4-3 8s ease-in-out infinite alternate;
  -ms-animation: triangle-animate4-3 8s ease-in-out infinite alternate;
  animation: triangle-animate4-3 8s ease-in-out infinite alternate;
}
@-webkit-keyframes triangle-animate4-3 {
  0%{ top: 34rem; }
  100%{ top: 30rem; }
}
@-moz-keyframes triangle-animate4-3 {
  0%{ top: 34rem; }
  100%{ top: 30rem; }
}
@-ms-keyframes triangle-animate4-3 {
  0%{ top: 34rem; }
  100%{ top: 30rem; }
}
@keyframes triangle-animate4-3 {
  0%{ top: 34rem; }
  100%{ top: 30rem; }
}



/*パンくず*/
#breadcrumbs {
  position: relative;
  top: -4rem;
  left: 0;
  display: block;
  overflow: hidden;
  margin: 0 auto;
  padding: 0;
  width: 1270px;
  height: 2em;
}
#breadcrumbs li {
  list-style: none;
  float: left;
  margin: 0 0.2rem 0 0;
}
#breadcrumbs li:nth-child(1) {
  margin: 0 0 0 3.5rem;
}
#breadcrumbs li a {
  color: #333;
  font-weight: 400;
  -webkit-transition-duration: 0.35s;
  -moz-transition-duration: 0.35s;
  -ms-transition-duration: 0.35s;
  -o-transition-duration: 0.35s;
  transition-duration: 0.35s;
}
#breadcrumbs.sec, #breadcrumbs.sec li a {
  color: #fff !important;
}
#breadcrumbs li a:hover {
  font-weight: 800;
}


/*contents*/
/*------------------------------------------*/
#topics {
  background-color: #fff;
  z-index: 1;
}
#topics .contentSet {
  position: relative;
  margin: 0 auto;
  padding: 30px 20px 30px 20px;
  width: 40%;
}
#topics .contentSet dl {
  margin: 0 auto;
  width: 480px;
  font-weight: 300;
  font-size: 0.8rem;
}
#topics .contentSet dl dt {
  float: left;
  width: 20%;
}
#topics .contentSet dl dd {
  float: left;
  margin: 0;
  width: 80%;
}
/*------------------------------------------*/
#mission {
  background-color: #fff;
  z-index: 2;
  width: 1270px;
  margin: 0 auto;
  position: relative;
  min-height: 880px;
}
#mission h2 {
  position: absolute;
  transform: translate(0%,-50%);
  top: 45%;
  z-index: 4;
}
#mission p {
  position: absolute;
  width: 50%;
  left: 50%;
  top: 35%;
  font-size: 34px;
  line-height: 1.8;
  font-weight: 200;
  z-index: 5;
}
#mission .linkArrow {
  position: absolute;
  bottom: 35%;
  z-index: 5;
}

/*------------------------------------------*/
#works {
  background-color: #fff;
  z-index: 3;
  width: 1270px;
  margin: 0 auto;
  position: relative;
  min-height: 880px;
}
#works h2 {
  position: relative;
  z-index: 4;
}
#works p {
  position: absolute;
  width: 50%;
  left: 50%;
  top: 20px;
  font-size: 34px;
  line-height: 1.8;
  font-weight: 200;
  z-index: 5;
}
#works ul {
  position: relative;
  padding: 0 0 30px 0;
  transform-style:preserve-3d;
  perspective:1000px;
  z-index: 6;
}
#works li {
  width: 1270px;
  height: 400px;
  list-style: none;
  margin: 30px auto 0 auto;
  padding: 0;
  display: block;
  border: solid 1px #333;
  overflow: hidden;
  position: relative;
}
#works li a {
  display: block;
  width: 100%;
  margin: 0 auto;
  position: absolute;
  transform: translate(-50%,-50%);
  top: 50.8%;
  left: 50%;
  -webkit-transition-duration: 3s;
  -moz-transition-duration: 3s;
  -ms-transition-duration: 3s;
  -o-transition-duration: 3s;
  transition-duration: 3s;
}
#works li a:hover {
  width: 110%;
}
#works li a img {
  width: 100%;
}
/*------------------------------------------*/
#service {
  background-color: #fff;
  z-index: 4;
  width: 1270px;
  margin: 0 auto;
  padding: 120px 0 0 0;
  position: relative;
  min-height: 1400px;
}
#service h2 {
  position: relative;
  z-index: 4;
}
#service p {
  position: absolute;
  width: 50%;
  left: 50%;
  top: 7rem;
  font-size: 34px;
  line-height: 1.8;
  font-weight: 200;
  z-index: 5;
}
#service .read {
  display: block;
  position: absolute;
  bottom: 7rem !important;
  left: 8rem !important;
  width: 55%;
  height: 5rem;
  z-index: 6;
}
#service .read p {
  position: inherit;
  font-weight: 200;
  font-size: 18px !important;
  line-height: 2;
  width: 100%;
  top: 0;
  left: 0;
}
#serviceImg01 {
  position: absolute;
  z-index: 2;
  width: 97%;
}
#serviceImg02 {
  position: absolute;
  bottom: 0;
  right: 2rem;
  z-index: 1;
}
/*------------------------------------------*/
#contact {
  background-color: #fff;
  z-index: 5;
  width: 1270px;
  margin: 0 auto;
  position: relative;
  min-height: 880px;
}
#contact h2 {
  position: absolute;
  transform: translate(0%,-50%);
  top: 48%;
  z-index: 4;
}
#contact p {
  position: absolute;
  width: 50%;
  left: 50%;
  top: 35%;
  font-size: 34px;
  line-height: 1.8;
  font-weight: 200;
  z-index: 5;
}
#contact .read {
  font-size: 18px !important;
  font-weight: 300;
  top: 50%;
}
#contact .linkArrow {
  position: absolute;
  bottom: 28%;
  z-index: 6;
}
/*------------------------------------------*/


/*footer*/
footer {
  display: block;
  padding: 0;
  width: 100%;
  background-color: #333;
}
#footerContent {
  display: block;
  margin: 0 auto;
  padding: 1rem 0;
  width: 90%;
}
#footerContent p {
  display: block;
  float: left;
  margin: 0 0 1rem 0;
  padding: 0;
  width: 50%;
  color: #fff;
  font-weight: 300;
  font-size: 0.7rem;
  line-height: 2;
}
#footerContent p span {
  display: block;
  float: left;
  width: 4rem;
  font-weight: 600;
}
#footerContent p.copyRight {
  display: block;
  margin: 0 !important;
  padding: 0;
  width: 100%;
}
#footerContent ul {
  display: block;
  float: right;
  margin: 0 0 0.5rem 0;
  list-style: none;
}
#footerContent ul li {
  float: left;
  margin: 0 20px 0 0;
}
#footerContent ul li.facebook img {
  width: 20px;
}
#footerContent ul li.twitter img {
  margin: 3px 0 0 0;
  width: 20px;
}
#footerContent a {
  color: #fff;
  -webkit-transition-duration: 0.35s;
  -moz-transition-duration: 0.35s;
  -ms-transition-duration: 0.35s;
  -o-transition-duration: 0.35s;
  transition-duration: 0.35s;
}
#footerContent a:hover {
	opacity:0.5;
  filter: alpha(opacity=50);
	-webkit-opacity:0.5;
	-moz-opacity:0.5;
	-ms-opacity:0.5;
	-o-opacity:0.5;
}
