/* --------------------------------------------- */
/* value */
/* --------------------------------------------- */
/* --------------------------------------------- */
/* ease */
/* --------------------------------------------- */
/* --------------------------------------------- */
/* color */
/* --------------------------------------------- */
/* --------------------------------------------- */
/* font */
/* --------------------------------------------- */
/* --------------------------------------------- */
/* font icon */
/* --------------------------------------------- */
/* --------------------------------------------- */
/* function */
/* --------------------------------------------- */
/* --------------------------------------------- */
/* mixin */
/* --------------------------------------------- */
/* --------------------------------------------- */
/* keyframes */
/* --------------------------------------------- */
@-webkit-keyframes fadein {
  0% {
    display: none;
    opacity: 0; }
  1% {
    display: block;
    opacity: 0; }
  100% {
    display: block;
    opacity: 1; } }
@keyframes fadein {
  0% {
    display: none;
    opacity: 0; }
  1% {
    display: block;
    opacity: 0; }
  100% {
    display: block;
    opacity: 1; } }

@-webkit-keyframes fadeout {
  0% {
    display: block;
    opacity: 1; }
  99% {
    display: block;
    opacity: 0; }
  100% {
    display: none;
    opacity: 0; } }

@keyframes fadeout {
  0% {
    display: block;
    opacity: 1; }
  99% {
    display: block;
    opacity: 0; }
  100% {
    display: none;
    opacity: 0; } }

/* --------------------------------------------- */
/* container */
/* --------------------------------------------- */
/* --------------------------------------------- */
/* contents */
/* --------------------------------------------- */
/* --------------------------------------------- */
/* multi device background */
/* --------------------------------------------- */
/* --------------------------------------------- */
/* multi device background */
/* --------------------------------------------- */
/* --------------------------------------------- */
/* button */
/* --------------------------------------------- */
/*------------------------------------------------
   Reset
------------------------------------------------*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

body {
  line-height: 1; }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

ul, ol {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none; }

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none; }

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold; }

del {
  text-decoration: line-through; }

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0; }

input, select {
  vertical-align: middle; }

em {
  font-style: normal; }

b {
  font-weight: normal; }

/* ----------------------------------------------------------------------------------------------------

Super Form Reset

A couple of things to watch out for:

- IE8: If a text input doesn't have padding on all sides or none the text won't be centered.
- The default border sizes on text inputs in all UAs seem to be slightly different. You're better off using custom borders.
- You NEED to set the font-size and family on all form elements
- Search inputs need to have their appearance reset and the box-sizing set to content-box to match other UAs
- You can style the upload button in webkit using ::-webkit-file-upload-button
- ::-webkit-file-upload-button selectors can't be used in the same selector as normal ones. FF and IE freak out.
- IE: You don't need to fake inline-block with labels and form controls in IE. They function as inline-block.
- By turning off ::-webkit-search-decoration, it removes the extra whitespace on the left on search inputs

----------------------------------------------------------------------------------------------------*/
input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  line-height: 1;
  /* Browsers have different default form fonts */
  font-size: inherit;
  font-family: inherit; }

/* Remove the stupid outer glow in Webkit */
input:focus {
  outline: 0; }

/* Box Sizing Reset
-----------------------------------------------*/
/* All of our custom controls should be what we expect them to be */
input,
textarea {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }

/* These elements are usually rendered a certain way by the browser */
button,
input[type=reset],
input[type=button],
input[type=submit],
input[type=checkbox],
input[type=radio],
select {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

input[type=checkbox],
input[type=radio],
select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }

/* Text Inputs
-----------------------------------------------*/
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=range],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

/* Button Controls
-----------------------------------------------*/
input[type=checkbox],
input[type=radio] {
  width: 13px;
  height: 13px; }

/* File Uploads
-----------------------------------------------*/
/* Search Input
-----------------------------------------------*/
/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none; }

/* Buttons
-----------------------------------------------*/
button,
input[type="reset"],
input[type="button"],
input[type="submit"] {
  /* Fix IE7 display bug */
  overflow: visible;
  width: auto; }

/* IE8 and FF freak out if this rule is within another selector */
::-webkit-file-upload-button {
  padding: 0;
  border: 0;
  background: none; }

/* Textarea
-----------------------------------------------*/
textarea {
  /* Move the label to the top */
  vertical-align: top;
  /* Turn off scroll bars in IE unless needed */
  overflow: auto; }

/* Selects
-----------------------------------------------*/
select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none; }

select[multiple] {
  /* Move the label to the top */
  vertical-align: top; }

/* --------------------------------------------- */
/* common style */
/* --------------------------------------------- */
html {
  width: 100%;
  height: 100%; }

body {
  width: 100%;
  height: 100%;
  font-size: 14px;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #000;
  background: #fff;
  -webkit-font-smoothing: antialiased; }

h1, h2, h3, h4, h5 {
  font-weight: inherit;
  font-style: normal; }

b {
  font-weight: inherit; }

::selection {
  color: inherit;
  background: transparent; }

input::selection, textarea::selection {
  color: inherit;
  background: rgba(100, 100, 100, 0.3); }

a:link {
  color: #1f1f1f;
  text-decoration: none; }

a:visited {
  color: #1f1f1f; }

a:hover {
  color: #1f1f1f;
  opacity: 0.7; }

a:active {
  color: #1f1f1f; }

* {
  -webkit-text-size-adjust: none; }

/* --------------------------------------------- */
/* transition */
/* --------------------------------------------- */
/* fade */
.fade-enter, .fade-enter-active, .fade-enter-to {
  -webkit-transition: opacity 1200ms ease-in-out 0ms;
  transition: opacity 1200ms ease-in-out 0ms; }

.fade-enter {
  opacity: 0; }

.fade-enter-to {
  opacity: 1; }

.fade-leave, .fade-leave-active, .fade-leave-to {
  -webkit-transition: opacity 600ms ease-in-out 0ms;
  transition: opacity 600ms ease-in-out 0ms; }

.fade-leave {
  opacity: 1; }

.fade-leave-to {
  opacity: 0; }

/* --------------------------------------------- */
/* animate */
/* --------------------------------------------- */
@keyframes fadein {
  100% {
    opacity: 1; } }

@-webkit-keyframes translatein {
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1; } }

@keyframes translatein {
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1; } }

#head .hnav {
  -webkit-transform: translate(0, -10px);
          transform: translate(0, -10px);
  opacity: 0;
  -webkit-animation: translatein 500ms ease 500ms 1 forwards;
          animation: translatein 500ms ease 500ms 1 forwards; }

#head .copy {
  -webkit-transform: translate(10px, 0);
          transform: translate(10px, 0);
  opacity: 0;
  -webkit-animation: translatein 500ms ease 500ms 1 forwards;
          animation: translatein 500ms ease 500ms 1 forwards; }

#foot {
  opacity: 0;
  -webkit-animation: fadein 500ms ease 1000ms 1 forwards;
          animation: fadein 500ms ease 1000ms 1 forwards; }

/* --------------------------------------------- */
/* head */
/* --------------------------------------------- */
#head {
  position: fixed;
  width: 100%;
  height: 94px;
  background: rgba(255, 255, 255, 0.9);
  z-index: 999; }
  #head .hnav {
    position: fixed;
    left: 60px;
    top: 40px;
    z-index: 999; }
    #head .hnav ul:after {
      content: "";
      display: block;
      clear: both; }
      #head .hnav ul:after:after {
        content: "";
        display: block;
        clear: both; }
    #head .hnav ul li {
      position: relative;
      float: left;
      padding: 0 40px 0 0; }
      #head .hnav ul li:after {
        content: "";
        position: absolute;
        top: -5px;
        right: 20px;
        display: block;
        height: 28px;
        border-right: #000 solid 1px; }
      #head .hnav ul li:last-child {
        padding: 0; }
        #head .hnav ul li:last-child:after {
          display: none; }
      #head .hnav ul li a {
        display: block;
        text-indent: -9999px;
        overflow: hidden;
        background-size: contain;
        -webkit-transition: opacity 200ms cubic-bezier(0.645, 0.045, 0.355, 1);
        transition: opacity 200ms cubic-bezier(0.645, 0.045, 0.355, 1); }
        #head .hnav ul li a.lab {
          width: 127px;
          height: 18px;
          background-image: url(/static/img/logo_alldlab.svg); }
        #head .hnav ul li a.alld {
          width: 68px;
          height: 18px;
          background-image: url(/static/img/logo_alld.svg);
          opacity: 0.1; }
        #head .hnav ul li a:hover {
          opacity: 0.5; }
  #head .copy {
    position: fixed;
    right: 60px;
    top: 40px;
    font-size: 10px;
    z-index: 999; }

/* --------------------------------------------- */
/* foot */
/* --------------------------------------------- */
/* --------------------------------------------- */
/* loader */
/* --------------------------------------------- */
/* --------------------------------------------- */
/* common */
/* --------------------------------------------- */
.common_section {
  width: 620px;
  margin: 0 auto;
  padding: 260px 0; }
  .common_section .title {
    margin: 0 0 80px 0;
    font-size: 18px; }
  .common_section .text {
    font-size: 25px;
    line-height: 2; }
    .common_section .text.ja {
      font-family: "a-otf-futo-min-a101-pr6n";
      font-weight: normal; }
    .common_section .text.en {
      font-size: 18px;
      font-family: "Times New Roman", sans-serif;
      font-weight: normal; }
    .common_section .text p {
      margin: 0 0 1.5em 0;
      -webkit-transform: translateY(50px);
              transform: translateY(50px);
      opacity: 0;
      -webkit-transition: opacity 1000ms cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 1000ms cubic-bezier(0.645, 0.045, 0.355, 1);
      transition: opacity 1000ms cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 1000ms cubic-bezier(0.645, 0.045, 0.355, 1);
      transition: transform 1000ms cubic-bezier(0.645, 0.045, 0.355, 1), opacity 1000ms cubic-bezier(0.645, 0.045, 0.355, 1);
      transition: transform 1000ms cubic-bezier(0.645, 0.045, 0.355, 1), opacity 1000ms cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 1000ms cubic-bezier(0.645, 0.045, 0.355, 1); }
      .common_section .text p.enter {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
        opacity: 1; }
  .common_section .btn {
    padding: 60px 0 0 0; }
    .common_section .btn a {
      text-decoration: underline; }
      .common_section .btn a:before {
        content: "> "; }

/* --------------------------------------------- */
/* animate */
/* --------------------------------------------- */
.gnav {
  -webkit-transform: translate(-10px, 0);
          transform: translate(-10px, 0);
  opacity: 0;
  -webkit-animation: translatein 500ms ease 500ms 1 forwards;
          animation: translatein 500ms ease 500ms 1 forwards; }

.cover_section .logobox {
  opacity: 0;
  -webkit-animation: fadein 1000ms ease 1000ms 1 forwards;
          animation: fadein 1000ms ease 1000ms 1 forwards; }

.cover_section .arrow {
  -webkit-transform: translate(0, -10px);
          transform: translate(0, -10px);
  opacity: 0;
  -webkit-animation: translatein 500ms ease 1500ms 1 forwards;
          animation: translatein 500ms ease 1500ms 1 forwards; }

/* --------------------------------------------- */
/* index */
/* --------------------------------------------- */
.gnav {
  position: fixed;
  left: 60px;
  top: 50%;
  z-index: 999; }
  .gnav ul {
    -webkit-transform: rotate(90deg) translateX(-50%);
            transform: rotate(90deg) translateX(-50%);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0; }
    .gnav ul:after {
      content: "";
      display: block;
      clear: both; }
      .gnav ul:after:after {
        content: "";
        display: block;
        clear: both; }
    .gnav ul li {
      float: left; }
      .gnav ul li:last-child a:after {
        display: none; }
      .gnav ul li a {
        font-size: 13px;
        color: #aaa;
        -webkit-transition: opacity 200ms cubic-bezier(0.645, 0.045, 0.355, 1);
        transition: opacity 200ms cubic-bezier(0.645, 0.045, 0.355, 1); }
        .gnav ul li a:after {
          content: "";
          position: relative;
          top: 2px;
          display: inline-block;
          height: 13px;
          margin: 0 13px;
          border-right: #aaa solid 1px; }
        .gnav ul li a.active {
          color: #000; }
        .gnav ul li a:hover {
          opacity: 0.5; }

.cover_section {
  width: 100vw;
  height: 100vh; }
  .cover_section .logobox {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; }
    .cover_section .logobox .logo img {
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      margin: auto;
      width: 540px;
      height: auto; }
    .cover_section .logobox .arrow {
      position: absolute;
      left: 50%;
      bottom: 40px;
      margin: 0 0 0 -11.5px; }
      .cover_section .logobox .arrow a:hover img {
        -webkit-transform: translateY(6px);
                transform: translateY(6px); }
      .cover_section .logobox .arrow img {
        width: 23px;
        height: auto;
        -webkit-transition: -webkit-transform 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
        transition: -webkit-transform 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
        transition: transform 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
        transition: transform 300ms cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 300ms cubic-bezier(0.645, 0.045, 0.355, 1); }

.about_section {
  margin: 0 100px;
  padding: 260px 0 0 0; }
  .about_section .title {
    width: 550px;
    margin: 0 auto 80px auto;
    font-size: 18px;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
    -webkit-transition: opacity 1000ms cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 1000ms cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: opacity 1000ms cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 1000ms cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 1000ms cubic-bezier(0.645, 0.045, 0.355, 1), opacity 1000ms cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 1000ms cubic-bezier(0.645, 0.045, 0.355, 1), opacity 1000ms cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 1000ms cubic-bezier(0.645, 0.045, 0.355, 1); }
    .about_section .title.enter {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
      opacity: 1; }
    .about_section .title:after {
      content: " :";
      position: relative;
      top: -1px;
      font-family: "Gotham A", "Gotham B", sans-serif;
      font-weight: 400;
      font-style: normal; }
  .about_section .text {
    position: relative;
    font-size: 24px;
    line-height: 2; }
    .about_section .text.ja {
      margin: 0 0 60px 0;
      font-family: "a-otf-futo-min-a101-pr6n";
      font-weight: normal; }
    .about_section .text.en {
      padding: 60px 0 130px 0;
      font-size: 17px;
      font-family: "Times New Roman", sans-serif;
      font-weight: normal; }
    .about_section .text .inner {
      width: 550px;
      margin: 0 auto; }
      .about_section .text .inner p {
        margin: 0 0 1.5em 0;
        -webkit-transform: translateY(50px);
                transform: translateY(50px);
        opacity: 0;
        -webkit-transition: opacity 1000ms cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 1000ms cubic-bezier(0.645, 0.045, 0.355, 1);
        transition: opacity 1000ms cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 1000ms cubic-bezier(0.645, 0.045, 0.355, 1);
        transition: transform 1000ms cubic-bezier(0.645, 0.045, 0.355, 1), opacity 1000ms cubic-bezier(0.645, 0.045, 0.355, 1);
        transition: transform 1000ms cubic-bezier(0.645, 0.045, 0.355, 1), opacity 1000ms cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 1000ms cubic-bezier(0.645, 0.045, 0.355, 1); }
        .about_section .text .inner p.enter {
          -webkit-transform: translateY(0px);
                  transform: translateY(0px);
          opacity: 1; }
      .about_section .text .inner span.bracket.lt {
        top: -12px;
        height: 24px; }
        .about_section .text .inner span.bracket.lt:before {
          top: 50%; }
      .about_section .text .inner span.bracket.rt {
        top: -12px;
        height: 24px; }
        .about_section .text .inner span.bracket.rt:before {
          top: 50%; }

.project_section {
  margin: -1px 0 0 0; }
  .project_section .trad {
    position: relative;
    margin: 0 100px 0 100px;
    padding: 200px 50px 50px 50px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    .project_section .trad .title {
      margin: 0 0 30px 0;
      -webkit-transform: translateY(50px);
              transform: translateY(50px);
      opacity: 0;
      -webkit-transition: opacity 1000ms cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 1000ms cubic-bezier(0.645, 0.045, 0.355, 1);
      transition: opacity 1000ms cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 1000ms cubic-bezier(0.645, 0.045, 0.355, 1);
      transition: transform 1000ms cubic-bezier(0.645, 0.045, 0.355, 1), opacity 1000ms cubic-bezier(0.645, 0.045, 0.355, 1);
      transition: transform 1000ms cubic-bezier(0.645, 0.045, 0.355, 1), opacity 1000ms cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 1000ms cubic-bezier(0.645, 0.045, 0.355, 1); }
      .project_section .trad .title.enter {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
        opacity: 1; }
      .project_section .trad .title h1 {
        margin: 0 0 35px 0; }
        .project_section .trad .title h1 a img {
          width: 360px;
          height: auto; }
      .project_section .trad .title p {
        font-size: 12px;
        font-family: "Times New Roman", sans-serif;
        font-weight: normal;
        line-height: 1.5; }
    .project_section .trad .pbox {
      position: relative;
      margin: 0 0 50px 0; }
      .project_section .trad .pbox .head {
        position: absolute;
        left: 50px;
        top: 200px;
        font-family: "Times New Roman", sans-serif;
        font-weight: normal;
        line-height: 1.5;
        z-index: 2; }
        .project_section .trad .pbox .head h2 {
          font-size: 24px; }
          .project_section .trad .pbox .head h2:after {
            content: " / ";
            font-size: 20px;
            color: #999; }
        .project_section .trad .pbox .head p {
          font-size: 12px; }
      .project_section .trad .pbox .images {
        position: relative; }
        .project_section .trad .pbox .images li {
          position: absolute;
          left: 50%;
          top: 50%;
          z-index: 1;
          -webkit-transform: translateY(50px);
                  transform: translateY(50px);
          opacity: 0;
          -webkit-transition: opacity 1000ms cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 1000ms cubic-bezier(0.645, 0.045, 0.355, 1);
          transition: opacity 1000ms cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 1000ms cubic-bezier(0.645, 0.045, 0.355, 1);
          transition: transform 1000ms cubic-bezier(0.645, 0.045, 0.355, 1), opacity 1000ms cubic-bezier(0.645, 0.045, 0.355, 1);
          transition: transform 1000ms cubic-bezier(0.645, 0.045, 0.355, 1), opacity 1000ms cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 1000ms cubic-bezier(0.645, 0.045, 0.355, 1); }
          .project_section .trad .pbox .images li.enter {
            -webkit-transform: translateY(0px);
                    transform: translateY(0px);
            opacity: 1; }
          .project_section .trad .pbox .images li:hover {
            z-index: 6 !important; }
          .project_section .trad .pbox .images li a {
            display: block;
            position: absolute;
            left: 0;
            top: 0;
            font-size: 0;
            -webkit-transition: opacity 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
            transition: opacity 300ms cubic-bezier(0.645, 0.045, 0.355, 1); }
            .project_section .trad .pbox .images li a.on {
              opacity: 0.15; }
            .project_section .trad .pbox .images li a:hover {
              opacity: 1; }
      .project_section .trad .pbox.layout1 .images {
        height: 1100px; }
        .project_section .trad .pbox.layout1 .images li a img {
          width: 500px;
          height: auto; }
        .project_section .trad .pbox.layout1 .images li:nth-child(1) {
          left: calc(50% + -340px * 1);
          top: calc(50% + -486px * 1);
          z-index: 3; }
        .project_section .trad .pbox.layout1 .images li:nth-child(2) {
          left: calc(50% + -82px * 1);
          top: calc(50% + -384px * 1);
          z-index: 5; }
        .project_section .trad .pbox.layout1 .images li:nth-child(3) {
          left: calc(50% + -500px * 1);
          top: calc(50% + -127px * 1);
          z-index: 4; }
        .project_section .trad .pbox.layout1 .images li:nth-child(4) {
          left: calc(50% + 0px * 1);
          top: calc(50% + -239px * 1);
          z-index: 1; }
        .project_section .trad .pbox.layout1 .images li:nth-child(5) {
          left: calc(50% + -116px * 1);
          top: calc(50% + 112px * 1);
          z-index: 2; }
      .project_section .trad .pbox.layout2 .images {
        height: 1100px; }
        .project_section .trad .pbox.layout2 .images li a img {
          width: 500px;
          height: auto; }
        .project_section .trad .pbox.layout2 .images li:nth-child(1) {
          left: calc(50% + -380px * 1);
          top: calc(50% + -486px * 1);
          z-index: 3; }
        .project_section .trad .pbox.layout2 .images li:nth-child(2) {
          left: calc(50% + -82px * 1);
          top: calc(50% + -384px * 1);
          z-index: 5; }
        .project_section .trad .pbox.layout2 .images li:nth-child(3) {
          left: calc(50% + -480px * 1);
          top: calc(50% + -170px * 1);
          z-index: 4; }
        .project_section .trad .pbox.layout2 .images li:nth-child(4) {
          left: calc(50% + -20px * 1);
          top: calc(50% + -70px * 1);
          z-index: 1; }
      .project_section .trad .pbox.layout3 .images {
        height: 1100px; }
        .project_section .trad .pbox.layout3 .images li a img {
          width: 500px;
          height: auto; }
        .project_section .trad .pbox.layout3 .images li:nth-child(1) {
          left: calc(50% + -395px * 1);
          top: calc(50% + 20px * 1);
          z-index: 4; }
        .project_section .trad .pbox.layout3 .images li:nth-child(2) {
          left: calc(50% + -210px * 1);
          top: calc(50% + -440px * 1);
          z-index: 2; }
        .project_section .trad .pbox.layout3 .images li:nth-child(3) {
          left: calc(50% + -20px * 1);
          top: calc(50% + -140px * 1);
          z-index: 5; }
        .project_section .trad .pbox.layout3 .images li:nth-child(4) {
          left: calc(50% + -110px * 1);
          top: calc(50% + 170px * 1);
          z-index: 1; }
        .project_section .trad .pbox.layout3 .images li:nth-child(5) {
          left: calc(50% + -480px * 1);
          top: calc(50% + -220px * 1);
          z-index: 3; }
      .project_section .trad .pbox.layout4 .images {
        height: 1100px;
        background-size: 960px auto; }
        .project_section .trad .pbox.layout4 .images li a img {
          width: 500px;
          height: auto; }
        .project_section .trad .pbox.layout4 .images li:nth-child(1) {
          left: calc(50% + -283px * 1);
          top: calc(50% + -475px * 1);
          z-index: 1; }
        .project_section .trad .pbox.layout4 .images li:nth-child(2) {
          left: calc(50% + -20px * 1);
          top: calc(50% + -255px * 1);
          z-index: 5; }
        .project_section .trad .pbox.layout4 .images li:nth-child(3) {
          left: calc(50% + -480px * 1);
          top: calc(50% + -160px * 1);
          z-index: 3; }
          .project_section .trad .pbox.layout4 .images li:nth-child(3) a img {
            width: 595px; }
        .project_section .trad .pbox.layout4 .images li:nth-child(4) {
          left: calc(50% + -100px * 1);
          top: calc(50% + 55px * 1);
          z-index: 2; }
        .project_section .trad .pbox.layout4 .images li:nth-child(5) {
          left: calc(50% + -400px * 1);
          top: calc(50% + 90px * 1);
          z-index: 4; }
          .project_section .trad .pbox.layout4 .images li:nth-child(5) a img {
            width: 510px; }
  .project_section .a46d {
    position: relative;
    margin: 0 100px 0 100px;
    padding: 120px 0 120px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-family: "Helvetica Neue", Arial, sans-serif; }
    .project_section .a46d .title {
      position: absolute;
      left: 50px;
      top: 120px;
      -webkit-transform: translateY(50px);
              transform: translateY(50px);
      opacity: 0;
      -webkit-transition: opacity 1000ms cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 1000ms cubic-bezier(0.645, 0.045, 0.355, 1);
      transition: opacity 1000ms cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 1000ms cubic-bezier(0.645, 0.045, 0.355, 1);
      transition: transform 1000ms cubic-bezier(0.645, 0.045, 0.355, 1), opacity 1000ms cubic-bezier(0.645, 0.045, 0.355, 1);
      transition: transform 1000ms cubic-bezier(0.645, 0.045, 0.355, 1), opacity 1000ms cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 1000ms cubic-bezier(0.645, 0.045, 0.355, 1); }
      .project_section .a46d .title.enter {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
        opacity: 1; }
      .project_section .a46d .title h1 a img {
        width: 480px;
        height: auto; }
      .project_section .a46d .title p {
        font-size: 12px;
        font-family: "Times New Roman", sans-serif;
        font-weight: normal;
        line-height: 1.5; }
    .project_section .a46d .concept {
      position: absolute;
      right: calc(4%);
      top: calc(20%);
      width: 485px; }
      .project_section .a46d .concept dl {
        position: relative;
        color: #2f2f2f; }
        .project_section .a46d .concept dl.jp {
          margin: 0 0 40px 0;
          font-size: 12px;
          letter-spacing: 0.1em;
          line-height: 2.4; }
          .project_section .a46d .concept dl.jp dt {
            display: block;
            margin: 0 0 10px 0;
            font-size: 14px; }
          .project_section .a46d .concept dl.jp dd {
            display: block;
            margin: 0 0 20px 0; }
        .project_section .a46d .concept dl.en {
          font-size: 10px;
          letter-spacing: 0.06em;
          line-height: 1.4;
          opacity: 0.7; }
          .project_section .a46d .concept dl.en dt {
            font-size: 10px;
            font-weight: 500; }
          .project_section .a46d .concept dl.en dd {
            margin: 0 0 3px 0; }
    .project_section .a46d .motion {
      pointer-events: none; }
      .project_section .a46d .motion .video {
        width: 100%;
        height: auto;
        -webkit-box-sizing: border-box;
                box-sizing: border-box; }

/* brackets */
span.bracket {
  position: absolute;
  width: 12px;
  height: 12px; }
  span.bracket:before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    background-color: #aaa; }
  span.bracket:after {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    position: absolute;
    background-color: #aaa; }
  span.bracket.lt {
    left: 0;
    top: 0; }
    span.bracket.lt:before {
      left: 0;
      top: 0; }
    span.bracket.lt:after {
      left: 0;
      top: 0; }
  span.bracket.rt {
    right: 0;
    top: 0; }
    span.bracket.rt:before {
      right: 0;
      top: 0; }
    span.bracket.rt:after {
      right: 0;
      top: 0; }
  span.bracket.rb {
    right: 0;
    bottom: 0; }
    span.bracket.rb:before {
      right: 0;
      bottom: 0; }
    span.bracket.rb:after {
      right: 0;
      bottom: 0; }
  span.bracket.lb {
    left: 0;
    bottom: 0; }
    span.bracket.lb:before {
      left: 0;
      bottom: 0; }
    span.bracket.lb:after {
      left: 0;
      bottom: 0; }

/*------------------------------------------------
   layout
------------------------------------------------*/
@media screen and (max-width: 1280px) {
  /* head */
  /* foot */
  /* loader */
  /* index */
  .gnav ul li a {
    font-size: 11px; }
  .cover_section .logobox .logo img {
    width: 400px; }
  .about_section .title {
    width: 440px;
    font-size: 15px; }
  .about_section .text {
    font-size: 19px; }
    .about_section .text.en {
      font-size: 14px; }
    .about_section .text .inner {
      width: 440px; }
  .project_section .trad {
    padding: 120px 50px 120px 50px; }
    .project_section .trad .title {
      margin: 0 0 60px 0; }
      .project_section .trad .title h1 a img {
        width: 260px; }
    .project_section .trad .pbox .head {
      position: relative;
      left: auto;
      top: auto; }
    .project_section .trad .pbox.layout1 .images {
      height: 748px; }
      .project_section .trad .pbox.layout1 .images li a img {
        width: 340px;
        height: auto; }
      .project_section .trad .pbox.layout1 .images li:nth-child(1) {
        left: calc(50% + -340px * 0.68);
        top: calc(50% + -486px * 0.68);
        z-index: 3; }
      .project_section .trad .pbox.layout1 .images li:nth-child(2) {
        left: calc(50% + -82px * 0.68);
        top: calc(50% + -384px * 0.68);
        z-index: 5; }
      .project_section .trad .pbox.layout1 .images li:nth-child(3) {
        left: calc(50% + -500px * 0.68);
        top: calc(50% + -127px * 0.68);
        z-index: 4; }
      .project_section .trad .pbox.layout1 .images li:nth-child(4) {
        left: calc(50% + 0px * 0.68);
        top: calc(50% + -239px * 0.68);
        z-index: 1; }
      .project_section .trad .pbox.layout1 .images li:nth-child(5) {
        left: calc(50% + -116px * 0.68);
        top: calc(50% + 112px * 0.68);
        z-index: 2; }
    .project_section .trad .pbox.layout2 .images {
      height: 748px; }
      .project_section .trad .pbox.layout2 .images li a img {
        width: 340px;
        height: auto; }
      .project_section .trad .pbox.layout2 .images li:nth-child(1) {
        left: calc(50% + -380px * 0.68);
        top: calc(50% + -486px * 0.68);
        z-index: 3; }
      .project_section .trad .pbox.layout2 .images li:nth-child(2) {
        left: calc(50% + -82px * 0.68);
        top: calc(50% + -384px * 0.68);
        z-index: 5; }
      .project_section .trad .pbox.layout2 .images li:nth-child(3) {
        left: calc(50% + -480px * 0.68);
        top: calc(50% + -170px * 0.68);
        z-index: 4; }
      .project_section .trad .pbox.layout2 .images li:nth-child(4) {
        left: calc(50% + -20px * 0.68);
        top: calc(50% + -70px * 0.68);
        z-index: 1; }
  .project_section .a46d {
    padding: 120px 50px 120px 50px; }
    .project_section .a46d .title {
      position: relative;
      left: auto;
      top: auto;
      margin: 0 0 60px 0; }
      .project_section .a46d .title h1 a img {
        width: 360px; }
    .project_section .a46d .concept {
      position: relative;
      right: auto;
      top: auto; }
    .project_section .a46d .motion {
      margin: 0 0 60px 0; }
      .project_section .a46d .motion .video {
        border: #eee solid 1px; } }

/*------------------------------------------------
   layout
------------------------------------------------*/
@media screen and (max-width: 667px) {
  /* head */
  #head .hnav {
    left: 0;
    top: 0;
    width: 100%;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.9); }
    #head .hnav ul {
      position: absolute;
      left: 50%;
      top: 30px;
      -webkit-transform: scale(0.75) translateX(-50%);
              transform: scale(0.75) translateX(-50%);
      -webkit-transform-origin: 0 0;
              transform-origin: 0 0; }
      #head .hnav ul li:after {
        top: -2px;
        height: 18px; }
      #head .hnav ul li a.lab {
        width: 95.25px;
        height: 13.5px; }
      #head .hnav ul li a.alld {
        width: 51px;
        height: 13.5px; }
  #head .copy {
    display: none; }
  /* foot */
  /* loader */
  /* index */
  .gnav {
    left: 30px; }
    .gnav ul li a {
      font-size: 10px; }
  .cover_section .logobox .logo img {
    width: 200px; }
  .about_section {
    padding: 120px 0 60px 0;
    margin: 0 55px; }
    .about_section .title {
      width: 260px;
      margin-bottom: 40px;
      font-size: 12px; }
    .about_section .text.ja {
      margin: 0 0 45px 0;
      font-size: 15px; }
    .about_section .text.en {
      padding: 0;
      font-size: 12px; }
    .about_section .text .inner {
      width: 260px; }
      .about_section .text .inner br.spoff {
        display: none; }
      .about_section .text .inner span.bracket {
        display: none; }
  .project_section {
    margin: 0 55px;
    padding: 60px 0 0 0; }
    .project_section .trad {
      margin: 0;
      padding: 90px 0 0 0; }
      .project_section .trad .title h1 {
        margin: 0 0 20px 0; }
        .project_section .trad .title h1 a img {
          width: 140px; }
      .project_section .trad .title p {
        font-size: 10px; }
      .project_section .trad .pbox .head {
        position: relative;
        left: auto;
        top: auto;
        margin: 0 0 20px 0; }
      .project_section .trad .pbox .images {
        height: 500px; }
      .project_section .trad .pbox.layout1 .images {
        height: 330px; }
        .project_section .trad .pbox.layout1 .images li a img {
          width: 150px;
          height: auto; }
        .project_section .trad .pbox.layout1 .images li:nth-child(1) {
          left: calc(50% + -340px * 0.3);
          top: calc(50% + -486px * 0.3);
          z-index: 3; }
        .project_section .trad .pbox.layout1 .images li:nth-child(2) {
          left: calc(50% + -82px * 0.3);
          top: calc(50% + -384px * 0.3);
          z-index: 5; }
        .project_section .trad .pbox.layout1 .images li:nth-child(3) {
          left: calc(50% + -500px * 0.3);
          top: calc(50% + -127px * 0.3);
          z-index: 4; }
        .project_section .trad .pbox.layout1 .images li:nth-child(4) {
          left: calc(50% + 0px * 0.3);
          top: calc(50% + -239px * 0.3);
          z-index: 1; }
        .project_section .trad .pbox.layout1 .images li:nth-child(5) {
          left: calc(50% + -116px * 0.3);
          top: calc(50% + 112px * 0.3);
          z-index: 2; }
      .project_section .trad .pbox.layout2 .images {
        height: 330px; }
        .project_section .trad .pbox.layout2 .images li a img {
          width: 150px;
          height: auto; }
        .project_section .trad .pbox.layout2 .images li:nth-child(1) {
          left: calc(50% + -380px * 0.3);
          top: calc(50% + -486px * 0.3);
          z-index: 3; }
        .project_section .trad .pbox.layout2 .images li:nth-child(2) {
          left: calc(50% + -82px * 0.3);
          top: calc(50% + -384px * 0.3);
          z-index: 5; }
        .project_section .trad .pbox.layout2 .images li:nth-child(3) {
          left: calc(50% + -480px * 0.3);
          top: calc(50% + -170px * 0.3);
          z-index: 4; }
        .project_section .trad .pbox.layout2 .images li:nth-child(4) {
          left: calc(50% + -20px * 0.3);
          top: calc(50% + -70px * 0.3);
          z-index: 1; }
      .project_section .trad .pbox.layout3 .images {
        height: 330px; }
        .project_section .trad .pbox.layout3 .images li a img {
          width: 150px;
          height: auto; }
        .project_section .trad .pbox.layout3 .images li:nth-child(1) {
          left: calc(50% + -395px * 0.3);
          top: calc(50% + 20px * 0.3);
          z-index: 4; }
        .project_section .trad .pbox.layout3 .images li:nth-child(2) {
          left: calc(50% + -210px * 0.3);
          top: calc(50% + -440px * 0.3);
          z-index: 2; }
        .project_section .trad .pbox.layout3 .images li:nth-child(3) {
          left: calc(50% + -20px * 0.3);
          top: calc(50% + -140px * 0.3);
          z-index: 5; }
        .project_section .trad .pbox.layout3 .images li:nth-child(4) {
          left: calc(50% + -110px * 0.3);
          top: calc(50% + 170px * 0.3);
          z-index: 1; }
        .project_section .trad .pbox.layout3 .images li:nth-child(5) {
          left: calc(50% + -480px * 0.3);
          top: calc(50% + -220px * 0.3);
          z-index: 3; }
      .project_section .trad span.bracket {
        display: none; }
    .project_section .a46d {
      margin: 0;
      padding: 90px 0 90px 0;
      border-top: #eee solid 1px;
      border-bottom: #eee solid 1px; }
      .project_section .a46d .title {
        margin: 0 0 40px 0; }
        .project_section .a46d .title h1 a img {
          width: 230px; }
      .project_section .a46d .concept {
        width: auto; }
        .project_section .a46d .concept dl.jp {
          text-align: justify; }
          .project_section .a46d .concept dl.jp br {
            display: none; }
      .project_section .a46d .motion {
        margin: 0 0 40px 0; }
        .project_section .a46d .motion .video {
          border: #eee solid 1px; }
      .project_section .a46d span.bracket {
        display: none; } }

/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsImZpbGUiOiJtYWluLmNzcyIsInNvdXJjZVJvb3QiOiIifQ==*/