@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%;
}
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;
}

#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: fixed;
  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: absolute;
    top: 0px;
    left: 0px;
    z-index: 999999999;
}

a {
  color: #a80000;
  text-decoration: none;
  -webkit-transition-duration: 0.35s;
  -moz-transition-duration: 0.35s;
  transition-duration: 0.35s;
}

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

.lineClear {
  clear: both;
  line-height: 0;
}
.pageTop {
  display: block;
  margin: 3em auto;
  width: 30%;
  text-align: center;
}
.left {
  float: none;
  width: 100%;
}
.right {
  float: none;
  width: 100%;
}
.pc {
  display: none;
}
.sp {
  display: block;
}

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

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

.worksIn {
  z-index: 999;
  background-color: rgba(255,255,255,0);
  -webkit-transition : -webkit-transform 1000ms;
  -moz-transition : all 1000ms;
  transition: all 1000ms;

  -webkit-transform: rotate3d(0.5,0,0,90deg);
  -moz-transform: rotate3d(0.5,0,0,90deg);
  transform: rotate3d(0.5,0,0,90deg);
}
.worksIn.scrollin {
  z-index: 999999;
  background-color: rgba(255,255,255,0);
  -webkit-transition : -webkit-transform 1000ms;
  -moz-transition : all 1000ms;
  transition: all 1000ms;
  background-color: rgba(255,255,255,0);

  -webkit-transform: rotate3d(0,0,0,90deg);
  -moz-transform: rotate3d(0,0,0,90deg);
  transform: rotate3d(0,0,0,90deg);
}

/*header*/
header {
  position: fixed;
  z-index: 9989;
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 4rem;
  background-color: rgba(255,255,255,0.7);
}
#headerArea {
  margin: 0 auto;
  width: 100%;
}
.logoArea {
  margin: 0 0 0 1rem;
  max-height: 1.8rem;
  width: 70%;
}
#gnavi {
  display: none;
}


/*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;
	margin: 0;
	padding: 5rem 0 0 0;
	width: 18rem;
	height: 100%;
	list-style-type: none;
}

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

nav.globalMenu ul li a {
  position: absolute;
  top: 0;
  left: -100%;
	display: block;
	margin: 0;
	padding: 0.5rem 0;
  width: 100%;
	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;
  line-height: 1.8;
}
nav.globalMenu ul li ul li:nth-last-child(1) {
  padding: 0 0 1.5rem 0;
  border-bottom: solid 1px #fff !important;
}

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

.navToggle {
	position: fixed !important;
	top: 0.4rem;
	right: 0.8rem;
	z-index: 9999;
	display: block;
	width: 3.6rem;
	height: 3.6rem;
	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: 0.75rem;
	display: block;
	width: 60%;
	border-bottom: solid 1px #333;
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
}

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

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

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

.navToggle.active {
  background-color: #fff;
}


/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1) {
	top: 1.6rem;
	left: 1.0rem;
	-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;
  left: 1.0rem;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}




.hero1 {
  position: relative;
  overflow: hidden;
  margin: 0 auto 30px auto;
  width: 100%;
  height: 100vh;
  background-color: #fff;
}
.hero1 video {
  position: absolute;
  top: 55%;
  left: 50%;
  margin: 0;
  padding: 0;
  height: 110vh;
  background-color: #fff;
  transform: translate(-50%,-50%);
}
.hero1 p {
  position: absolute;
  top: 5rem;
  left: 1.6rem;
  display: block;
  font-weight: 700;
  font-size: 400%;
  font-family: 'Roboto Slab', serif;
  line-height: 1.0;
}

.hero1sec {
  position: relative;
  overflow: hidden;
  margin: 0 auto 1rem auto;
  padding: 5rem 0 0 0;
  width: 100%;
  height: 6rem;
}
.hero1sec video {
  position: absolute;
  top: 100%;
  left: 50%;
  margin: 0;
  padding: 0;
  height: 30vh;
  background-color: #fff;
  transform: translate(-50%,-50%);
}
.hero1sec p {
  position: absolute;
  top: 3.5rem;
  left: 1.0rem;
  display: block;
  font-weight: 700;
  font-size: 3rem !important;
  font-family: 'Roboto Slab', serif;
  line-height: 1.0;
}

#statement {
  position: absolute;
  top: 16rem;
  display: block;
  width: 90%;
  letter-spacing: 0rem;
  font-size: 0.7rem !important;
  font-family: 'Noto Sans JP', sans-serif,"メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック",sans-serif;
  line-height: 2.6 !important;
}
#statementSec {
  position: absolute;
  top: 8.5rem;
  letter-spacing: 0.1rem;
  font-size: 0.6rem !important;
  font-family: 'Noto Sans JP', sans-serif,"メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック",sans-serif;
  line-height: 0.5 !important;
}

.decObject {
  position: absolute;
  right: 0em;
  width: 50%;
  -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-mix-blend-mode: multiply;
  -moz-mix-blend-mode: multiply;
  -ms-mix-blend-mode: multiply;
  mix-blend-mode: multiply;
}
@-webkit-keyframes object-animate {
  0%{ top: 20em; }
  100%{ top: 18em; }
}
@-moz-keyframes object-animate {
  0%{ top: 20em; }
  100%{ top: 18em; }
}
@-ms-keyframes object-animate {
  0%{ top: 20em; }
  100%{ top: 18em; }
}
@keyframes object-animate {
  0%{ top: 20em; }
  100%{ top: 18em; }
}

.decObjectSec {
  position: absolute;
  top: 6.5em;
  right: 2rem;
  width: 35%;
  -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-mix-blend-mode: multiply;
  -moz-mix-blend-mode: multiply;
  -ms-mix-blend-mode: multiply;
  mix-blend-mode: multiply;
}
@-webkit-keyframes object-animate-sec {
  0%{ top: 6.5em; }
  100%{ top: 4.8em; }
}
@-moz-keyframes object-animate-sec {
  0%{ top: 6.5em; }
  100%{ top: 4.8em; }
}
@-ms-keyframes object-animate-sec {
  0%{ top: 6.5em; }
  100%{ top: 4.8em; }
}
@keyframes object-animate-sec {
  0%{ top: 6.5em; }
  100%{ top: 4.8em; }
}


.linkArrow {
  margin: 0 auto;
  padding: 0;
  max-width: 1350px;
  width: 90%;
  text-align: right;
}
.linkArrow a {
  position: relative;
  display: block;
  float: right;
  width: 5.5rem;
  height: 2rem;
}
.linkArrowLine1 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  background-color: #333;
  transform: translate(-50%,-50%);
}
.linkArrowLine2 {
  position: absolute;
  top: 0.4rem;
  right: -0.30rem;
  width: 1.5rem;
  height: 1px;
  background-color: #333;
  transform: translate(0%,0%);
  transform: rotate(45deg);
}
.linkArrowLine3 {
  position: absolute;
  top: 1.50rem;
  right: -0.30rem;
  width: 1.5rem;
  height: 1px;
  background-color: #333;
  transform: translate(0%,0%);
  transform: rotate(-45deg);
}


.txtEng {
  display: block;
  margin: 1rem 0 0 0;
  font-weight: 600;
  font-size: 0.5rem;
}


.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;
  opacity:0.6;
  /* -webkit-filter: drop-shadow(5px 5px 30px rgba(0,0,0,0.3));
  filter: alpha(opacity=60); */
  transform: translate(-50%,-50%);
  /* -moz-opacity:0.6;
  -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-mix-blend-mode: multiply;
  -moz-mix-blend-mode: multiply;
  mix-blend-mode: multiply;
}
.triangle1-1 {
  top: 10em;
  left: 40%;
  width: 100%;
}
.triangle1-2 {
  top: 12em;
  left: 10%;
  width: 70%;
}
.triangle1-3 {
  top: 15em;
  left: 65%;
  width: 50%;
}

.triangle2-1 {
  top: 12em;
  left: 20%;
  width: 100%;
}
.triangle2-2 {
  top: 9em;
  left: 50%;
  width: 70%;
}
.triangle2-3 {
  top: 15em;
  left: 70%;
  width: 50%;
}

.triangle3-1 {
  top: 12em;
  left: 50%;
  width: 100%;
}
.triangle3-2 {
  top: 6em;
  left: 10%;
  width: 70%;
}
.triangle3-3 {
  top: 12em;
  left: 35%;
  width: 50%;
}

.triangle4-1 {
  top: 15em;
  left: 20%;
  width: 100%;
}
.triangle4-2 {
  top: 20em;
  left: 50%;
  width: 70%;
}
.triangle4-3 {
  top: 26em;
  left: 35%;
  width: 50%;
}


/*パンくず*/
#breadcrumbs {
  position: relative;
  top: -2.5rem;
  left: 0rem;
  display: block;
  overflow: hidden;
  margin: 0 auto;
  width: 90%;
  height: 1.2rem;
}
#breadcrumbs li {
  float: left;
  margin: 0 0.2rem 0 0;
}
#breadcrumbs li a {
  color: #333;
  font-weight: 400;
  -webkit-transition-duration: 0.35s;
  -moz-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*/
#main section {
}

/*------------------------------------------*/
#topics {
  z-index: 1;
  background-color: #fff;
}
#topics .contentSet {
  position: relative;
  margin: 0 auto;
  padding: 0;
  width: 90%;
}
#topics .contentSet dl {
  margin: 0 auto;
  width: 100%;
  font-weight: 300;
  font-size: 0.8rem;
}
#topics .contentSet dl dt {
  float: left;
  width: 23%;
}
#topics .contentSet dl dd {
  float: left;
  margin: 0;
  width: 77%;
}
/*------------------------------------------*/
#mission {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  min-height: 300px;
  width: 90%;
}
#mission h2 {
  position: absolute;
  top: 15%;
  transform: translate(0%,-50%);
}
#mission p {
  position: absolute;
  top: 24%;
  left: 0%;
  width: 100%;
  font-weight: 200;
  font-size: 1.2rem;
  line-height: 1.8;
}
#mission .linkArrow {
  position: absolute;
  right: 0;
  bottom: 20%;
}

/*------------------------------------------*/
#works {
  position: relative;
  z-index: 3;
  margin: 0 auto;
  min-height: 667px;
  width: 90%;
}
#works p {
  position: absolute;
  top: 5.5rem;
  left: 0%;
  width: 100%;
  font-weight: 200;
  font-size: 1.2rem;
  line-height: 1.8;
}
#works ul {
  padding: 12rem 0 30px 0;
  -webkit-transform: perspective(500);
  -moz-transform: perspective(500);
  transform: perspective(500);
}
#works li {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 1rem auto 0 auto;
  padding: 0;
  width: 100%;
  height: 8rem;
  border: none;
  list-style: none;
}
#works li a {
  position: absolute;
  top: 50.8%;
  left: 50%;
  display: block;
  margin: 0 auto;
  width: 100%;
  transform: translate(-50%,-50%);
}
#works li a img {
  width: 100%;
}
/*------------------------------------------*/
#service {
  position: relative;
  z-index: 4;
  margin: 3rem auto 0 auto;
  min-height: 667px;
  width: 90%;
}
#service p {
  position: absolute;
  top: 5.5rem;
  left: 0%;
  width: 100%;
  font-weight: 200;
  font-size: 1.2rem;
  line-height: 1.8;
}
#service .read {
  position: absolute;
  bottom: 5rem !important;
  left: 0rem !important;
  display: block;
  width: 60%;
  height: 5rem;
}
#service .read p {
  position: inherit;
  top: 0;
  left: 0;
  width: 100%;
  font-weight: 300;
  font-size: 0.8rem !important;
  line-height: 1.6;
}
#serviceImg01 {
  position: absolute;
  top: 10rem;
  left: -10%;
  z-index: 2;
  width: 115.5%;
}
#serviceImg02 {
  position: absolute;
  right: -1.0rem;
  bottom: 3rem;
  z-index: 1;
  width: 50%;
}
/*------------------------------------------*/
#contact {
  position: relative;
  z-index: 5;
  margin: 0 auto;
  min-height: 400px;
  width: 90%;
}
#contact h2 {
  position: absolute;
  top: 15%;
  transform: translate(0%,-50%);
}
#contact p {
  position: absolute;
  top: 24%;
  left: 0%;
  width: 100%;
  font-weight: 200;
  font-size: 1.2rem;
  line-height: 1.8;
}
#contact .read {
  top: 55%;
  font-weight: 300;
  font-size: 0.8rem !important;
  line-height: 1.6 !important;
}
#contact .linkArrow {
  position: absolute;
  right: 0;
  bottom: 5%;
}
/*------------------------------------------*/


/*footer*/
footer {
  display: block;
  padding: 0;
  width: 100%;
  background-color: #333;
}
#footerContent {
  display: block;
  padding: 1rem;
}
#footerContent p {
  display: inline;
  float: none;
  margin: 0;
  padding: 0;
  width: 80%;
  color: #fff;
  font-weight: 300;
  font-size: 0.7rem;
  line-height: 2;
}
#footerContent p span {
  display: inline;
  float: none;
  padding: 1rem 0 0 0;
  width: 20%;
  font-weight: 600;
}
#footerContent p.copyRight {
  display: block;
  margin: 0 !important;
  padding: 0;
  width: 100%;
  text-align: center !important;
}
#footerContent ul {
  display: block;
  float: none;
  margin: 1rem 0 1rem 0;
  list-style: none;
}
#footerContent ul li {
  float: left;
  margin: 0 1rem 1rem 0;
}
#footerContent ul li.facebook img {
  width: 20px;
}
#footerContent ul li.twitter img {
  margin: 3px 0 0 0;
  width: 20px;
}
#footerContent a {
  color: #fff;
}
