@charset "utf-8";

/* -----------------------------------
   COMMON
----------------------------------- */
html body #container {
  font-family: 'YuGothic', 'Yu Gothic Medium', 'Hiragino Sans', 'Meiryo', sans-serif;
  font-feature-settings: "palt";
}

#container {
  padding-top: 0;
  width: auto;
}

#container:before,
#container #lNav {
  display: none;
}

#lightContent {
  position: relative;
  overflow: hidden;
}

#lightContent section,
#lightLead {
  border-top: 5px solid #9c6;
}

#lightContent section h2 {
  position: absolute;
  left: -10px;
  top: 30px;
}

#lightContent section > div {
  margin: 0 auto;
  width: 740px;
  position: relative;
  padding: 40px 0 40px 220px;
}

#lightContent .toHead {
  margin-top: 0;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
  background: rgba(255, 220, 200, 0.7);
  text-align: center;
  border-radius: 50%;
  z-index: 1000;
}

#lightContent .toHead:before {
  display: none;
}

#lightContent .toHead a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 85%;
  vertical-align: middle;
  box-sizing: border-box;
}

#lightContent .toHead a:before {
  padding-top: 10px;
  content: '3';
  font-family: "icons";
  display: block;
  font-size: 200%;
}

#lightContent .spV {
  display: none !important;
}

#lightContent .pcV {
  display: block !important;
}


/* COMMON ------------------------- */


/* -----------------------------------
   KEYFRAMES -- General only
----------------------------------- */


/* blur */

@keyframes blur {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes blur {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


/* fadeIn */

@keyframes fadeIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
    opacity: 1;
  }
  80% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
    opacity: 1;
  }
  80% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}


/* fadeInDouble */

@keyframes fadeInDouble {
  0% {
    transform: scale(0);
    opacity: 0.0;
  }
  20% {
    transform: scale(1.2);
    opacity: 1;
  }
  40% {
    transform: scale(0.8);
    opacity: 1;
  }
  60% {
    transform: scale(1.1);
    opacity: 1;
  }
  80% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes fadeInDouble {
  0% {
    transform: scale(0);
    opacity: 0.0;
  }
  20% {
    transform: scale(1.2);
    opacity: 1;
  }
  40% {
    transform: scale(0.8);
    opacity: 1;
  }
  60% {
    transform: scale(1.1);
    opacity: 1;
  }
  80% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}


/* tossing */

@keyframes tossing {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}

@-webkit-keyframes tossing {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}


/* CSS3 ANIMATION ----------------- */


/* -----------------------------------
   SCROLL
----------------------------------- */

.scrNav {
  position: fixed;
  right: 30px;
  top: 50%;
  z-index: 100;
  margin-top: -90px;
  color: #9c6;
}

.scrNav li {
  width: 30px;
  height: 26px;
  line-height: 26px;
  position: relative;
  font-size: 13px;
  font-family: "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
  text-align: center;
}

.scrNav li span {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  right: 26px;
  top: 0;
  border-radius: 13px;
  line-height: 26px;
  font-size: 12px;
  font-family: Sans-Serif;
  white-space: nowrap;
  text-align: right;
  padding: 0 10px;
  color: #fff;
  display: none;
}

.scrNav li:hover span {
  display: block;
}

.scrNav li a {
  color: #9c6;
}

.scrNav li.active:after {
  content: "●";
  display: block;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 26px;
  line-height: 26px;
}


/* SCROLL ------------------------- */


/* -----------------------------------
   HEADER
----------------------------------- */

#lightContent header {
  width: 100%;
  height: 320px;
  background-image: -webkit-linear-gradient(top, #003366 0%, #dba376 50%, #ffffff 88%);
  background-image: linear-gradient(to bottom, #003366 0%, #dba376 50%, #ffffff 88%);
  background-size: 100% 500%;
  background-position: 0 100%;
  position: relative;
  animation: headerLightOn 4s forwards;
  -webkit-animation: headerLightOn 4s forwards;
}

@keyframes headerLightOn {
  0% {
    background-position: 0 100%;
  }
  100% {
    background-position: 0 0;
  }
}

@-webkit-keyframes headerLightOn {
  0% {
    background-position: 0 100%;
  }
  100% {
    background-position: 0 0;
  }
}

#headerAnimation {
  width: 100%;
  height: 320px;
  background: url(../images/light_header_bg2.png) no-repeat 50% 0;
  position: absolute;
  left: 0;
  top: 0;
  clip: rect(0, 0, 320px, 0);
  transition: clip 16s ease-in-out;
  z-index: 1;
}

#headerAnimation.lightOn {
  clip: rect(0, 3000px, 320px, 0);
}

#lightContent header:after {
  content: "";
  width: 100%;
  height: 320px;
  background: url(../images/light_header_bg.png) no-repeat 50% 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

#lightContent header h1 {
  margin: 0 auto;
  padding-top: 40px;
  width: 960px;
  position: relative;
  z-index: 10;
  opacity: 0;
  animation: blur 0.1s 6s 3 forwards;
  -webkit-animation: blur 0.1s 6s 3 forwards;
}


/* HEADER ------------------------- */


/* -----------------------------------
   LEAD
----------------------------------- */

#lightLead h2 {
  display: none !important;
}

#lightLead p {
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
  font-size: 120%;
  position: relative;
}

#lightLead p a {
  margin: 20px auto 0;
  display: block;
  animation: blur 0.5s alternate 3;
  -webkit-animation: blur 0.5s alternate 3;
}

#lightLead ul {
  margin: 0 auto;
  width: 840px;
  display: table;
  table-layout: fixed;
}

#lightLead ul li {
  display: table-cell;
  text-align: center;
  padding: 0 5px;
}

#lightLead ul li a {
  padding: 10px;
  border-radius: 10px;
  background: #9c6;
  color: #fff;
  display: block;
}

#lightLead ul li a:hover {
  opacity: 0.7;
}


/* LEAD --------------------------- */


/* -----------------------------------
   PROFILE
----------------------------------- */

#corporateProfile ul {
  margin: 0 auto;
}

#corporateProfile ul li {
  padding-top: 30px;
  color: #333;
  position: relative;
  font-size: 90%;
  opacity: 0;
}

/* #corporateProfile ul li:nth-child(1),
#corporateProfile ul li:nth-child(2) {
  display: inline-block;
  width: 350px;
} */

/* #corporateProfile ul li:first-child .pcV {
  display: inline !important;
}

#corporateProfile ul li:nth-child(1) p {
  text-align: right;
  width: 314px;
}

#corporateProfile ul li:nth-child(2) p {
  text-align: right;
  width: 289px;
} */

#corporateProfile li:after {
  content: "";
  display: block;
  position: absolute;
  top: 30px;
  z-index: 10;
  opacity: 0;
}

/* #corporateProfile li:nth-child(1):after {
  background: url(../images/corporate2_1_figure.png) no-repeat 0 0;
  background-size: contain;
  width: 100px;
  height: 50px;
  left: 132px;
}

#corporateProfile li:nth-child(2):after {
  background: url(../images/corporate2_2_figure.png) no-repeat 0 0;
  background-size: contain;
  width: 70px;
  height: 50px;
  left: 89px;
} */

#corporateProfile li:nth-child(1):after {
  background: url(../images/corporate3_figure.png) no-repeat 0 0;
  background-size: contain;
  width: 132px;
  height: 50px;
  left: 62px;
}

#corporateProfile li:nth-child(2):after {
  background: url(../images/corporate4_figure.png) no-repeat 0 0;
  background-size: contain;
  width: 90px;
  height: 56px;
  left: 300px;
  top: 34px;
}

#corporateProfile li:nth-child(3):after {
  background: url(../images/corporate5_figure.png) no-repeat 0 0;
  background-size: contain;
  width: 66px;
  height: 50px;
  left: 210px;
}

#corporateProfile li:nth-child(4):after {
  background: url(../images/corporate6_figure.png) no-repeat 0 0;
  background-size: contain;
  width: 70px;
  height: 50px;
  left: 261px;
}

#corporateProfile li:nth-child(5):after {
  background: url(../images/corporate7_figure.png) no-repeat 0 0;
  background-size: contain;
  width: 60px;
  height: 50px;
  left: 278px;
  top: 48px;
}

#corporateProfile li:nth-child(6):after {
  background: url(../images/corporate8_figure.png) no-repeat 0 0;
  background-size: contain;
  width: 150px;
  height: 52px;
  left: 196px;
}


/* animate */

#corporateProfile.areaActive li:after {
  animation: fadeInDouble 0.75s 2s forwards;
  -webkit-animation: fadeInDouble 0.75s 2s forwards;
  transform-origin: 50% 50% 0;
}

#corporateProfile.areaActive li {
  animation: blur 2s forwards;
  -webkit-animation: blur 2s forwards;
}


/* #corporateProfile.areaActive li:nth-child(1) {
  animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
}

#corporateProfile.areaActive li:nth-child(2) {
  animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
} */

#corporateProfile.areaActive li:nth-child(1) {
  animation-delay: 0.3s;
  -webkit-animation-delay: 0.3s;
}

#corporateProfile.areaActive li:nth-child(2) {
  animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
}

#corporateProfile.areaActive li:nth-child(3) {
  animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
}

#corporateProfile.areaActive li:nth-child(4) {
  animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
}

#corporateProfile.areaActive li:nth-child(5) {
  animation-delay: 0.7s;
  -webkit-animation-delay: 0.7s;
}

#corporateProfile.areaActive li:nth-child(6) {
  animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
}


/* PROFILE ------------------------ */


/* -----------------------------------
   ITEM
----------------------------------- */

#item {
  background: url(../images/item_bg.jpg) repeat-x 0 0,
  url(../images/item_bg.jpg) repeat-x 150px 100px,
  url(../images/item_bg.jpg) repeat-x 900px 200px,
  url(../images/item_bg.jpg) repeat-x 500px 300px,
  url(../images/item_bg.jpg) repeat-x 750px 400px,
  url(../images/item_bg.jpg) repeat-x 300px 500px,
  url(../images/item_bg.jpg) repeat-x 600px 600px,
  url(../images/item_bg.jpg) repeat-x 1100px 700px;
  animation: randomItem 30s infinite alternate;
  -webkit-animation: randomItem 30s infinite alternate;
}

@keyframes randomItem {
  0% {
    background-position: 0px 0px, 150px 100px, 900px 200px, 500px 300px, 740px 400px, 300px 500px, 600px 600px, 1100px 700px;
  }
  100% {
    background-position: 1200px 0px, 600px 100px, 0px 200px, 300px 300px, 1100px 400px, 800px 500px, 0px 600px, 400px 700px;
  }
}

@-webkit-keyframes randomItem {
  0% {
    background-position: 0px 0px, 150px 100px, 900px 200px, 500px 300px, 740px 400px, 300px 500px, 600px 600px, 1100px 700px;
  }
  100% {
    background-position: 1200px 0px, 600px 100px, 0px 200px, 300px 300px, 1100px 400px, 800px 500px, 0px 600px, 400px 700px;
  }
}

#item h3 {
  box-sizing: border-box;
  width: 100%;
  height: 670px;
  position: relative;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}

#item h3 img {
  display: block;
}

#item ul {
  position: absolute;
  width: 740px;
  height: 670px;
  top: 40px;
  z-index: 50;
}

#item ul li {
  width: 189px;
  height: 191px;
  position: absolute;
}



/* animate */

#item ul li {
  opacity: 0;
}

#item.areaActive ul li:first-child {
  animation: itemExtend1 1s 0.2s forwards;
}

#item.areaActive ul li:nth-child(2) {
  animation: itemExtend2 1s 0.4s forwards;
}

#item.areaActive ul li:nth-child(3) {
  animation: itemExtend3 1s 0.6s forwards;
}

#item.areaActive ul li:nth-child(4) {
  animation: itemExtend4 1s 0.8s forwards;
}

#item.areaActive ul li:nth-child(5) {
  animation: itemExtend5 1s 1s forwards;
}

#item.areaActive ul li:nth-child(6) {
  animation: itemExtend6 1s 1.2s forwards;
}

#item.areaActive ul li:nth-child(7) {
  animation: itemExtend7 1s 1.4s forwards;
}

#item.areaActive h3 {
  animation: blur 0.5s 1.8s forwards;
  -webkit-animation: blur 0.5s 1.8s forwards;
}

@keyframes itemExtend1 {
  0% {
    left: 50%;
    top: 50%;
    margin-left: -95px;
    margin-top: -95px;
    opacity: 0;
  }
  10% {
    left: 50%;
    top: 50%;
    margin-left: -95px;
    margin-top: -95px;
    opacity: 1;
  }
  100% {
    left: 4%;
    top: 10%;
    margin-left: 0;
    margin-top: 0;
    opacity: 1;
  }
}

@keyframes itemExtend2 {
  0% {
    left: 50%;
    top: 50%;
    margin-left: -95px;
    margin-top: -95px;
    opacity: 0;
  }
  10% {
    left: 50%;
    top: 50%;
    margin-left: -95px;
    margin-top: -95px;
    opacity: 1;
  }
  100% {
    left: 50%;
    top: 0;
    margin-left: -95px;
    margin-top: 0;
    opacity: 1;
  }
}

@keyframes itemExtend3 {
  0% {
    right: 50%;
    top: 50%;
    margin-right: -95px;
    margin-top: -95px;
    opacity: 0;
  }
  10% {
    right: 50%;
    top: 50%;
    margin-right: -95px;
    margin-top: -95px;
    opacity: 1;
  }
  100% {
    right: 4%;
    top: 10%;
    margin-right: 0;
    margin-top: 0;
    opacity: 1;
  }
}

@keyframes itemExtend4 {
  0% {
    left: 50%;
    bottom: 50%;
    margin-left: -95px;
    margin-bottom: -95px;
    opacity: 0;
  }
  10% {
    left: 50%;
    bottom: 50%;
    margin-left: -95px;
    margin-bottom: -95px;
    opacity: 1;
  }
  100% {
    left: 0;
    bottom: 25%;
    margin-left: 0;
    margin-bottom: 0;
    opacity: 1;
  }
}

@keyframes itemExtend5 {
  0% {
    left: 50%;
    bottom: 50%;
    margin-left: -95px;
    margin-bottom: -95px;
    opacity: 0;
  }
  10% {
    left: 50%;
    bottom: 50%;
    margin-left: -95px;
    margin-bottom: -95px;
    opacity: 1;
  }
  100% {
    left: 20%;
    bottom: 0;
    margin-left: 0;
    margin-bottom: 0;
    opacity: 1;
  }
}

@keyframes itemExtend6 {
  0% {
    right: 50%;
    bottom: 50%;
    margin-right: -95px;
    margin-bottom: -95px;
    opacity: 0;
  }
  10% {
    right: 50%;
    bottom: 50%;
    margin-right: -95px;
    margin-bottom: -95px;
    opacity: 1;
  }
  100% {
    right: 20%;
    bottom: 0;
    margin-right: 0;
    margin-bottom: 0;
    opacity: 1;
  }
}

@keyframes itemExtend7 {
  0% {
    right: 50%;
    bottom: 50%;
    margin-right: -95px;
    margin-bottom: -95px;
    opacity: 0;
  }
  10% {
    right: 50%;
    bottom: 50%;
    margin-right: -95px;
    margin-bottom: -95px;
    opacity: 1;
  }
  100% {
    right: 0;
    bottom: 25%;
    margin-right: 0;
    margin-bottom: 0;
    opacity: 1;
  }
}



/* for tablet and smart phone */

@keyframes spItemExtend1 {
  0% {
    left: 50%;
    top: 50%;
    margin-left: -15%;
    margin-top: -15%;
    opacity: 0;
  }
  10% {
    left: 50%;
    top: 50%;
    margin-left: -15%;
    margin-top: -15%;
    opacity: 1;
  }
  100% {
    left: 4%;
    top: 10%;
    margin-left: 0;
    margin-top: 0;
    opacity: 1;
  }
}

@-webkit-keyframes spItemExtend1 {
  0% {
    left: 50%;
    top: 50%;
    margin-left: -15%;
    margin-top: -15%;
    opacity: 0;
  }
  10% {
    left: 50%;
    top: 50%;
    margin-left: -15%;
    margin-top: -15%;
    opacity: 1;
  }
  100% {
    left: 4%;
    top: 10%;
    margin-left: 0;
    margin-top: 0;
    opacity: 1;
  }
}

@keyframes spItemExtend2 {
  0% {
    left: 50%;
    top: 50%;
    margin-left: -15%;
    margin-top: -15%;
    opacity: 0;
  }
  10% {
    left: 50%;
    top: 50%;
    margin-left: -15%;
    margin-top: -15%;
    opacity: 1;
  }
  100% {
    left: 50%;
    top: 0;
    margin-left: -15%;
    margin-top: 0;
    opacity: 1;
  }
}

@-webkit-keyframes spItemExtend2 {
  0% {
    left: 50%;
    top: 50%;
    margin-left: -15%;
    margin-top: -15%;
    opacity: 0;
  }
  10% {
    left: 50%;
    top: 50%;
    margin-left: -15%;
    margin-top: -15%;
    opacity: 1;
  }
  100% {
    left: 50%;
    top: 0;
    margin-left: -15%;
    margin-top: 0;
    opacity: 1;
  }
}

@keyframes spItemExtend3 {
  0% {
    right: 50%;
    top: 50%;
    margin-right: -15%;
    margin-top: -15%;
    opacity: 0;
  }
  10% {
    right: 50%;
    top: 50%;
    margin-right: -15%;
    margin-top: -15%;
    opacity: 1;
  }
  100% {
    right: 4%;
    top: 10%;
    margin-right: 0;
    margin-top: 0;
    opacity: 1;
  }
}

@-webkit-keyframes spItemExtend3 {
  0% {
    right: 50%;
    top: 50%;
    margin-right: -15%;
    margin-top: -15%;
    opacity: 0;
  }
  10% {
    right: 50%;
    top: 50%;
    margin-right: -15%;
    margin-top: -15%;
    opacity: 1;
  }
  100% {
    right: 4%;
    top: 10%;
    margin-right: 0;
    margin-top: 0;
    opacity: 1;
  }
}

@keyframes spItemExtend4 {
  0% {
    left: 50%;
    bottom: 50%;
    margin-left: -15%;
    margin-bottom: -15%;
    opacity: 0;
  }
  10% {
    left: 50%;
    bottom: 50%;
    margin-left: -15%;
    margin-bottom: -15%;
    opacity: 1;
  }
  100% {
    left: 0;
    bottom: 25%;
    margin-left: 0;
    margin-bottom: 0;
    opacity: 1;
  }
}

@-webkit-keyframes spItemExtend4 {
  0% {
    left: 50%;
    bottom: 50%;
    margin-left: -15%;
    margin-bottom: -15%;
    opacity: 0;
  }
  10% {
    left: 50%;
    bottom: 50%;
    margin-left: -15%;
    margin-bottom: -15%;
    opacity: 1;
  }
  100% {
    left: 0;
    bottom: 25%;
    margin-left: 0;
    margin-bottom: 0;
    opacity: 1;
  }
}

@keyframes spItemExtend5 {
  0% {
    left: 50%;
    bottom: 50%;
    margin-left: -15%;
    margin-bottom: -15%;
    opacity: 0;
  }
  10% {
    left: 50%;
    bottom: 50%;
    margin-left: -15%;
    margin-bottom: -15%;
    opacity: 1;
  }
  100% {
    left: 20%;
    bottom: 0;
    margin-left: 0;
    margin-bottom: 0;
    opacity: 1;
  }
}

@-webkit-keyframes spItemExtend5 {
  0% {
    left: 50%;
    bottom: 50%;
    margin-left: -15%;
    margin-bottom: -15%;
    opacity: 0;
  }
  10% {
    left: 50%;
    bottom: 50%;
    margin-left: -15%;
    margin-bottom: -15%;
    opacity: 1;
  }
  100% {
    left: 20%;
    bottom: 0;
    margin-left: 0;
    margin-bottom: 0;
    opacity: 1;
  }
}

@keyframes spItemExtend6 {
  0% {
    right: 50%;
    bottom: 50%;
    margin-right: -15%;
    margin-bottom: -15%;
    opacity: 0;
  }
  10% {
    right: 50%;
    bottom: 50%;
    margin-right: -15%;
    margin-bottom: -15%;
    opacity: 1;
  }
  100% {
    right: 20%;
    bottom: 0;
    margin-right: 0;
    margin-bottom: 0;
    opacity: 1;
  }
}

@-webkit-keyframes spItemExtend6 {
  0% {
    right: 50%;
    bottom: 50%;
    margin-right: -15%;
    margin-bottom: -15%;
    opacity: 0;
  }
  10% {
    right: 50%;
    bottom: 50%;
    margin-right: -15%;
    margin-bottom: -15%;
    opacity: 1;
  }
  100% {
    right: 20%;
    bottom: 0;
    margin-right: 0;
    margin-bottom: 0;
    opacity: 1;
  }
}

@keyframes spItemExtend7 {
  0% {
    right: 50%;
    bottom: 50%;
    margin-right: -15%;
    margin-bottom: -15%;
    opacity: 0;
  }
  10% {
    right: 50%;
    bottom: 50%;
    margin-right: -15%;
    margin-bottom: -15%;
    opacity: 1;
  }
  100% {
    right: 0;
    bottom: 25%;
    margin-right: 0;
    margin-bottom: 0;
    opacity: 1;
  }
}

@-webkit-keyframes spItemExtend7 {
  0% {
    right: 50%;
    bottom: 50%;
    margin-right: -15%;
    margin-bottom: -15%;
    opacity: 0;
  }
  10% {
    right: 50%;
    bottom: 50%;
    margin-right: -15%;
    margin-bottom: -15%;
    opacity: 1;
  }
  100% {
    right: 0;
    bottom: 25%;
    margin-right: 0;
    margin-bottom: 0;
    opacity: 1;
  }
}


/* ITEM --------------------------- */


/* -----------------------------------
   ENVIRONMENT
----------------------------------- */

#environment ul {
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 430px;
}

#environment ul li {
  margin: 0 30px 0 20px;
  padding: 30px 0;
  width: 200px;
  text-align: center;
  border-bottom: 2px solid #9c6;
  position: relative;
  overflow: hidden;
}

#environment ul li:nth-child(2) { order: 3; }
#environment ul li:nth-child(3) { order: 5; }
#environment ul li:nth-child(4) { order: 2; }
#environment ul li:nth-child(5) { order: 4; }
#environment ul li:nth-child(6) { order: 6; }

#environment ul li h3 {
  padding-bottom: 18px;
}

#environment ul li:before {
  content: "";
  display: block;
  width: 360px;
  height: 360px;
  transform: rotate(-45deg);
  position: absolute;
  left: -60px;
  top: -60px;
  background: #f6f6f6;
  transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  z-index: 1;
}



/* animate */

#environment.areaActive ul li:before {
  animation: clipItem 1s forwards;
  -webkit-animation: clipItem 1s forwards;
}

#environment.areaActive ul li:nth-child(1):before {
  animation-delay: 0.1s;
  -webkit-animation-delay: 0.1s;
}

#environment.areaActive ul li:nth-child(2):before {
  animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
}

#environment.areaActive ul li:nth-child(3):before {
  animation-delay: 0.3s;
  -webkit-animation-delay: 0.3s;
}

#environment.areaActive ul li:nth-child(4):before {
  animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
}

#environment.areaActive ul li:nth-child(5):before {
  animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
}

#environment.areaActive ul li:nth-child(6):before {
  animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
}

#environment.areaActive ul li:nth-child(7):before {
  animation-delay: 0.7s;
  -webkit-animation-delay: 0.7s;
}

#environment.areaActive ul li:nth-child(8):before {
  animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
}

@keyframes clipItem {
  0% {
    left: -60px;
    top: -60px;
  }
  100% {
    left: -400px;
    top: -400px;
  }
}

@-webkit-keyframes clipItem {
  0% {
    left: -60px;
    top: -60px;
  }
  100% {
    left: -400px;
    top: -400px;
  }
}

#environment.areaActive ul li p {
  animation: tossing 0.2s 2 1.5s backwards;
  -webkit-animation: tossing 0.2s 2 1.5s backwards;
}


/* ENVIRONMENT -------------------- */


/* -----------------------------------
   AWARDS
----------------------------------- */

#awards,
#awards a {
  color: #666;
}

#awards h3 {
  padding: 30px 0 20px;
  opacity: 0;
}

#awards h4 {
  font-size: 120%;
  font-weight: normal;
}

#awards p {
  opacity: 0;
}

#awards ul {
  opacity: 0;
}

#awards h3 + p {
  padding-bottom: 20px;
  line-height: 1.5;
}

#awards ul + p {
  padding: 20px;
  line-height: 1.5;
  text-align: center;
}

#awards ul + p a {
  display: inline-block;
  padding: 10px 40px;
  border-radius: 5px;
  background: #9c6;
  color: #fff;
}

#awards ul + p a:hover {
  opacity: 0.75;
}

#awards #awardsSyomeisyo ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

#awards #awardsSyomeisyo ul li {
  width: 177px;
  text-align: center;
}

#awards #awardsSyomeisyo ul li p {
  padding-top: 10px;
  font-size: 110%;
}

#awards #awardsOther ul {
  padding-top: 20px;
  border-top: 2px solid #9c6;
}

#awards #awardsOther ul li {
  padding-bottom: 20px;
  display: table;
}

#awards #awardsOther ul li img,
#awards #awardsOther ul li div {
  display: table-cell;
  vertical-align: middle;
}

#awards #awardsOther ul li div {
  padding-left: 20px;
}


/* animate */

#awards.areaActive h3 {
  animation: blur 0.1s 3 forwards;
  -webkit-animation: blur 0.1s 3 forwards;
}

#awards.areaActive p,
#awards.areaActive ul {
  animation: blur 1s 0.5s forwards;
  -webkit-animation: blur 1s 0.5s forwards;
}


/* AWARDS -------------------------- */


/* -----------------------------------
   EXAMPLES
----------------------------------- */

#examples div ul {
  margin: 40px auto 2em;
  width: 740px;
  min-height: 360px;
  position: relative;
}

#examples ul li {
  position: absolute;
  left: 130px;
  top: 25px;
  box-sizing: border-box;
  background: #ebebeb;
  text-align: center;
  width: 480px;
  height: 360px;
  padding: 9px;
  z-index: 1;
  font-size: 105%;
  opacity: 0;
}

#examples ul li img {
  height: auto;
}

#examples ul li a {
  color: #000;
}

#examples ul li p {
  padding: 5px;
  background: #fff;
}

#examples ul li h3 {
  margin-top: 0.5em;
  font-size: 90%;
  font-weight: normal;
}

#examples ul li span {
  padding: 9px;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 100;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  font-size: 70%;
  text-align: left;
  color: #fff;
  display: none;
  width: 100%;
  height: 100%;
}

#examples ul li span a {
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
}

#examples ul:after {
  content: '';
  position: absolute;
  left: 200px;
  top: 25px;
  width: 560px;
  height: 420px;
  z-index: 100;
  opacity: 0;
  background: #fff;
}


/* animate */

#examples ul li:hover span {
  display: block;
  animation: fadeIn 0.5s forwards;
}

#examples.areaActive ul li:first-child {
  animation: examples1 .5s 0.5s forwards;
}

#examples.areaActive ul li:nth-child(2) {
  animation: examples2 .5s 1s forwards;
}

#examples.areaActive ul li:nth-child(3) {
  animation: examples3 .5s 1.5s forwards;
}

#examples.areaActive ul li:nth-child(4) {
  animation: examples4 .5s 2s forwards;
}

#examples.areaActive ul li:nth-child(5) {
  animation: examples5 .5s 2.5s forwards;
}

#examples.areaActive ul li:nth-child(6) {
  animation: examples6 .5s 3s forwards;
}

#examples.areaActive ul li:nth-child(7) {
  animation: examples7 .5s 3.5s forwards;
}

#examples.areaActive ul li:nth-child(8) {
  animation: examples8 .5s 4s forwards;
}

#examples.areaActive ul:after {
  animation: delete 0.1s 4.5s forwards;
}

@keyframes examples1 {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  70% {
    opacity: 1;
    width: 480px;
    height: 360px;
    left: 130px;
    top: 25px;
  }
  100% {
    width: 179px;
    height: 179px;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 1;
  }
}

@keyframes examples2 {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  70% {
    opacity: 1;
    width: 480px;
    height: 360px;
    left: 130px;
    top: 25px;
  }
  100% {
    width: 179px;
    height: 179px;
    top: 0;
    left: 187px;
    z-index: 0;
    opacity: 1;
  }
}

@keyframes examples3 {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  70% {
    opacity: 1;
    width: 480px;
    height: 360px;
    left: 130px;
    top: 25px;
  }
  100% {
    width: 179px;
    height: 179px;
    top: 0;
    left: 374px;
    z-index: 0;
    opacity: 1;
  }
}

@keyframes examples4 {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  70% {
    opacity: 1;
    width: 480px;
    height: 360px;
    left: 130px;
    top: 25px;
  }
  100% {
    width: 179px;
    height: 179px;
    top: 0;
    left: 561px;
    z-index: 0;
    opacity: 1;
  }
}

@keyframes examples5 {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  70% {
    opacity: 1;
    width: 480px;
    height: 360px;
    left: 130px;
    top: 25px;
  }
  100% {
    width: 179px;
    height: 179px;
    left: 0;
    top: 187px;
    z-index: 0;
    opacity: 1;
  }
}

@keyframes examples6 {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  70% {
    opacity: 1;
    width: 480px;
    height: 360px;
    left: 130px;
    top: 25px;
  }
  100% {
    width: 179px;
    height: 179px;
    left: 187px;
    top: 187px;
    z-index: 0;
    opacity: 1;
  }
}

@keyframes examples7 {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  70% {
    opacity: 1;
    width: 480px;
    height: 360px;
    left: 130px;
    top: 25px;
  }
  100% {
    width: 179px;
    height: 179px;
    left: 374px;
    top: 187px;
    z-index: 0;
    opacity: 1;
  }
}

@keyframes examples8 {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  70% {
    opacity: 1;
    width: 480px;
    height: 360px;
    left: 130px;
    top: 25px;
  }
  100% {
    width: 179px;
    height: 179px;
    left: 561px;
    top: 187px;
    z-index: 0;
    opacity: 1;
  }
}

@keyframes delete {
  0% {
    z-index: 100;
  }
  99% {
    z-index: 100;
  }
  100% {
    z-index: -1;
  }
}


/* for tablet and smart phone */

@keyframes examplesSP {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes examplesSP {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}


/* EXAMPLES ------------------------ */

.to_page_top a {
    display: none;
}

/* a link */

#lightLead p a:link,
.toHead a:link {
  color: #069;
}

#lightLead p a:visited,
.toHead a:visited {
  color: #036;
}

#lightLead p a:hover,
.toHead a:hover {
  color: #09c;
}
