@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500&display=swap');

/* http://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126 License: none (public domain) */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline;}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block;}
body { line-height: 1;}
ol, ul { list-style: none;}
blockquote, q { quotes: none;}
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none;}
table { border-collapse: collapse; border-spacing: 0;}
*, *:before, *:after { -webkit-box-sizing: border-box; box-sizing: border-box}

html { font-size: 16px; font-family: 'Noto Sans JP', sans-serif; font-weight: 300;}
@media (max-width: 1920px) { html{ font-size: calc(100vw * 16 / 1920);}}

.pc {display: block;}
.sp {display: none;}

html { 
  scroll-behavior: smooth;
}
::selection {background: #808080;}

body {
  position: relative;
}

/* loader */
#loader {
  width: 100vw;
  height: 100vh;
  background-color: #000;
  z-index: 10000;
  position: fixed;
  top: 0;
  left: 0;
}
#loader.loaded {
  animation: fadeOut 1s forwards;
}
@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        display: none;
        opacity: 0;
        z-index: -1;
    }
}
#loader img {
  width: 150px;
  height: auto;
}
#loader p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  margin: auto;
  text-align: center;
  color: #FFF;
  font-size: 0.625rem;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.1;
}


/* jsonアニメ */
#intro {
  height: 100vh;
  width: 100vw;
  background: #000;
}
#wrapper {
  height: 100vh;
  overflow: hidden;
  position: relative;
}
#layer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}


#contents {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  top: 0;
  left: 0;
  opacity: 0;
  background: #FFF;
}
#contents.loaded {
  animation: contents_anim 1s ease-out both;
}
@keyframes contents_anim {
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
#contents img {
  width: 100%;
  height: auto;
}


navi {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #FFF;
  z-index: 100;
}
navi > ul {
  width: 100%;
  max-width: 1920px;
  aspect-ratio: 24 / 1;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
navi > ul > li {
  margin: 0 1.3%;
  color: #1E1E1E;
  font-size: 0.75rem;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
  display: flex;
}
navi > ul > li a {
  text-decoration: none;
  color: #1E1E1E;
  position: relative;
}
navi > ul > li a.uL:after{
  position: absolute;
  bottom: -5px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background-color: #1E1E1E;
  transition: all .3s;
  transform: scaleX(0);
}
navi > ul > li a.uL:hover:after {
  width:100%;
  transform: scaleX(1);
}
navi > ul > li.contact {
  width: 9%;
  margin: 0 0.5% 0 1.3%;
  display: inline-block;
}
navi > ul > li.contact a {
  width: 100%;
  height: 40%;
  border: 1px solid #1E1E1E;
  border-radius: 9% / 50% ;
  justify-content: center;
  align-items: center;
  display: flex;
}
navi > ul > li.contact a:hover {
  border: 1px solid #999;
  background: #999;
  color: #FFF;
}
navi > ul > li.inst{
  width: 9%;
  margin: 0 2.6% 0 0.5%;
  display: inline-block;
}
navi > ul > li.inst a {
  width: 100%;
  height: 40%;
  border: 1px solid #1E1E1E;
  border-radius: 9% / 50% ;
  justify-content: center;
  align-items: center;
  background: #1E1E1E;
  color: #FFF;
  display: flex;
}
navi > ul > li.inst a:hover {
  border: 1px solid #999;
  background: #999;
  color: #FFF;
}

/* ハンバーガーボタン */
.humberger {
  display: none;
}

#pageTop {
  position: fixed;
  width: 100%;
  max-width: 1920px;
  bottom: 1.5%;
  z-index: 1000;
  mix-blend-mode: difference;
  pointer-events: none;
}
#pageTop a {
  width: 6.4%;
  margin-right: 2.6%;
  float: right;
  transition: transform .6s ease;
  pointer-events: auto;
}
#pageTop a:hover {
  transform: scale(1.1);
}


main #fView {
}
main #fView > .mainCopy {
  width: 100%;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
}
main #fView > .mainCopy > h3.txt{
  margin: 4% 0 0 5%;
  color: #1E1E1E;
  font-size: 8.25rem;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  line-height: 1;
  mix-blend-mode: multiply;
}
main #fView > .mainCopy > h3#happiness {
  width: 41%;
  height: auto;
  position: absolute;
  top: 100%;
  left: 3%;
  overflow: hidden;
  background: #9cc2e9;
  mask-image: url("../img/happiness.svg");
  mask-repeat: no-repeat;
  mask-position: 0 0;
  mask-size: 100%;
  -webkit-mask-image: url("../img/happiness.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  -webkit-mask-size: 100%;
}
main #fView > .mainCopy > h3#happiness video {
  width: 240%;
}
main #fView > .mainCopy > .cap {
  margin: 5% 0 0 5%;
  position: absolute;
  top: 140%;
  font-size: 1.125rem;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  line-height: 1.5;
}
main #fView > .mainCopy > .logo {
  width: 4.58%;
  position: absolute;
  top: 260%;
  left: 5%;
}
main #fView > .gallery {
  width: 61.45%;
  aspect-ratio: 118 / 95;
  margin: 4.16% 2.6% 0 35.95%;
  position: relative;
}
main #fView > .gallery > li {
    position: absolute;
    list-style: none;
    visibility: hidden;
    animation: anime_slider_fade 24s 0s infinite;
}
main #fView > .gallery > li:nth-of-type(2) {
    animation-delay: 6s;
}
main #fView > .gallery > li:nth-of-type(3) {
    animation-delay: 12s;
}
main #fView > .gallery > li:nth-of-type(4) {
    animation-delay: 18s;
}
@keyframes anime_slider_fade {
    0% {
        visibility: visible;
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    33.3% {
        opacity: 1;
    }
    48.3% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}


main #about {
  width: 100vw;
  margin: 7.8% calc(50% - 50vw) 7.8%;
  padding: 7.8% 0;
  background: #000;
}
main #about > .inner {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
main #about > .inner > h2 {
  margin: 0 0 0 2.6%;
}
main #about > .inner > h2 .square {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 9%;
  margin: 0.3% 0 0 0 ;
  mask-image: url("../img/square.svg");
  mask-repeat: no-repeat;
  mask-position: 0 0;
  mask-size: 2.4% auto;
  -webkit-mask-image: url("../img/square.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  -webkit-mask-size: 2.4% auto;
}
main #about > .inner > h2 .square video {
  width: 25%;
  margin: -7% 0 0 -15%;
}
main #about > .inner > h2 > .txt {
  margin: 0 0 0 12.5%;
  font-size: 5rem;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  color: #FFF;
  letter-spacing: 0.05em;
}
main #about > .inner > .cap {
  width: 23.18%;
  margin: 11% 0 0 14.6%;
  color: #FFF;
}
main #about > .inner > .cap > h3 {
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}
main #about > .inner > .cap > .txt {
  margin: 13% 0 43% 0;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align:justify;
}
main #about > .inner > .aboutImage {
  width: 43.7%;
  position: absolute;
  right: 11.56%;
  top: 0;
  display: flex;
  flex-wrap: wrap;
}
main #about > .inner > .aboutImage > li:nth-of-type(1) {
  width: 77.47%;
  margin: 0 0 0 18.7%;
}
main #about > .inner > .aboutImage > li:nth-of-type(2) {
  width: 54.83%;
  margin: 8.34% 6.44% 0 0;
}
main #about > .inner > .aboutImage > li:nth-of-type(3) {
  width: 38.73%;
  margin: 4.76% 0 0 0;
}
main #about > .inner > .managementPhilosophy {
  margin: 15% 12.5% 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
main #about > .inner > .managementPhilosophy > h3 {
  width: 100%;
  margin: 0 0 2% 0;
  font-size: 3.125rem;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  color: #FFF;
  letter-spacing: 0.02em;
}
main #about > .inner > .managementPhilosophy > .graph {
  width: 55.5%;
  margin: -5% 0 0 11%;
  display: flex;
  justify-content: center;
  align-items: center;
}
main #about > .inner > .managementPhilosophy > .graph > img {
  width: 100%;
}
main #about > .inner > .managementPhilosophy > ul {
  width: 33.5%;
}
main #about > .inner > .managementPhilosophy > ul > li {
  padding: 5% 0;
  border-bottom: 1px solid #FFF;
}
main #about > .inner > .managementPhilosophy > ul > li:last-child {
  border-bottom: none;
}
main #about > .inner > .managementPhilosophy > ul > li > h4 {
  padding: 0 0 1.875% 0;
  font-size: 1.25rem;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  color: #FFF;
  letter-spacing: 0.05em;
}
main #about > .inner > .managementPhilosophy > ul > li:nth-of-type(1) > h4 {
  color: #C9A0A0;
}
main #about > .inner > .managementPhilosophy > ul > li:nth-of-type(2) > h4 {
  color: #8CB48C;
}
main #about > .inner > .managementPhilosophy > ul > li:nth-of-type(3) > h4 {
  color: #82AAC8;
}
main #about > .inner > .managementPhilosophy > ul > li > p {
  font-size: 1.125rem;
  color: #FFF;
  letter-spacing: 0.1em;
  line-height: 2;
}


main #works {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 7.8% 0;
  position: relative;
  overflow: hidden;
}
main #works > h2 {
  margin: 0 0 0 2.6%;
}
main #works > h2 .square {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 69%;
  margin: 0.3% 0 0 0 ;
  mask-image: url("../img/square.svg");
  mask-repeat: no-repeat;
  mask-position: 0 0;
  mask-size: 2.4% auto;
  -webkit-mask-image: url("../img/square.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  -webkit-mask-size: 2.4% auto;
}
main #works > h2 .square video {
  width: 25%;
  margin: -2% 0 0 -4%;
}
main #works > h2 > .txt {
  margin: 0 0 0 72.5%;
  font-size: 5rem;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  color: #1E1E1E;
  letter-spacing: 0.05em;
}
main #works > .thumbnail {
  width: 79.17%;
  margin: 4.6% auto 0;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
main #works > .thumbnail > li {
  width: 29.67%;
  margin: 0 4.6% 5.9% 0;
  background: #FFF;
}
main #works > .thumbnail > li:nth-of-type(3n) {
  margin: 0 0 5.9% 0;
}
main #works > .thumbnail > li a {
  text-decoration: none;
  color: #1E1E1E;
  display: flex;
  flex-wrap: wrap;
}
main #works > .thumbnail > li .img {
  width: 93%;
  margin: 0 0 0 7%;
  border-radius: 5% / 6.36%;
  overflow: hidden;
}
main #works > .thumbnail > li .img img {
  height: auto;
  transition: transform .6s ease;
}
main #works > .thumbnail > li:hover .img img {
  transform: scale(1.2);
}
main #works > .thumbnail > li .txt {
  width: 91%;
  margin: -4% 0 0 0;
}
main #works > .thumbnail > li .txt > .cliant {
  width: 100%;
  margin: 0 0 1.5% 0;
  padding: 0 0 1.5% 0;
  border-bottom: 1px solid #1E1E1E;
  font-size: 2.5rem;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  color: #FFF;
  letter-spacing: 0.02em;
  mix-blend-mode: difference;
}
main #works > .thumbnail > li .txt > .category {
  width: 100%;
  font-size: 0.625rem;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  letter-spacing: 0.1em;
  position: relative;
}
main #works > .thumbnail > li .arrow {
  width: 5.3%;
  margin: 3.5% 0 0 3.7%;
  display: block;
}
main #works > .moreBtn {
  width: 9%;
  margin: 0 auto;
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
}
main #works > .moreBtn a {
  width: 100%;
  height: 2.5em;
  border: 1px solid #1E1E1E;
  border-radius: 11.57% / 50% ;
  justify-content: center;
  align-items: center;
  background: #1E1E1E;
  color: #FFF;
  display: flex;
  text-decoration: none;
}
main #works > .moreBtn a:hover {
  border: 1px solid #999;
  background: #999;
  color: #FFF;
}


main #furniture {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 7.8% 0;
  background: #000;
}
main #furniture > .inner {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
main #furniture > .inner > h2 {
  margin: 0 0 0 2.6%;
}
main #furniture > .inner > h2 .square {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 4.7%;
  margin: 0.3% 0 0 0 ;
  mask-image: url("../img/square.svg");
  mask-repeat: no-repeat;
  mask-position: 0 0;
  mask-size: 2.4% auto;
  -webkit-mask-image: url("../img/square.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  -webkit-mask-size: 2.4% auto;
}
main #furniture > .inner > h2 .square video {
  width: 25%;
  margin: -0.5% 0 0 -20%;
}
main #furniture > .inner > h2 > .txt {
  margin: 0 0 0 8.2%;
  font-size: 5rem;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  color: #FFF;
  letter-spacing: 0.05em;
}
main #furniture > .inner > .cap {
  width: 23.18%;
  margin: 8.5% 0 0 10.7%;
  color: #FFF;
}
main #furniture > .inner > .cap > h3 {
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}
main #furniture > .inner > .cap > .txt {
  margin: 13% 0 22% 0;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align:justify;
}
main #furniture > .inner > .cap > .contactBtn {
  width: 39%;
  margin: 0;
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
}
main #furniture > .inner > .cap > .contactBtn a {
  width: 100%;
  height: 2.5em;
  border: 1px solid #FFF;
  border-radius: 11.57% / 50% ;
  justify-content: center;
  align-items: center;
  background: #FFF;
  color: #1E1E1E;
  display: flex;
  text-decoration: none;
}
main #furniture > .inner > .cap > .contactBtn a:hover {
  border: 1px solid #999;
  background: #999;
  color: #FFF;
}
main #furniture > .inner > .aboutImage {
  width: 52%;
  margin: 4.48% 0 0 0;
  position: absolute;
  right: 7%;
  top: 0;
  display: flex;
  flex-wrap: wrap;
}


main #profile {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 7.8% 0;
  position: relative;
  overflow: hidden;
}
main #profile > h2 {
  margin: 0 0 0 2.6%;
}
main #profile > h2 .square {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 61%;
  margin: 0.3% 0 0 0 ;
  mask-image: url("../img/square.svg");
  mask-repeat: no-repeat;
  mask-position: 0 0;
  mask-size: 2.4% auto;
  -webkit-mask-image: url("../img/square.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  -webkit-mask-size: 2.4% auto;
}
main #profile > h2 .square video {
  width: 25%;
  margin: -9% 0 0 -4%;
}
main #profile > h2 > .txt {
  margin: 0 0 0 64.5%;
  font-size: 5rem;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  color: #1E1E1E;
  letter-spacing: 0.05em;
}
main #profile > .companyProfile {
  margin: 3.5% 12.5% 7% ;
  display: flex;
  justify-content: center;
  align-items: center;
}
main #profile > .companyProfile > .logo {
  width: 33.5%;
  margin: 0 11% 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
main #profile > .companyProfile > .logo > img {
  width: 52%;
}
main #profile > .companyProfile > ul {
  width: 55.5%;
}
main #profile > .companyProfile > ul > li {
  padding: 5% 0;
  border-bottom: 1px solid #1E1E1E;
}
main #profile > .companyProfile > ul > li:last-child {
  border-bottom: none;
}
main #profile > .companyProfile > ul > li > h4 {
  padding: 0 0 1.875% 0;
  font-size: 1.25rem;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  color: #1E1E1E;
  letter-spacing: 0.05em;
}
main #profile > .companyProfile > ul > li > p {
  font-size: 1.125rem;
  color: #1E1E1E;
  letter-spacing: 0.1em;
  line-height: 2;
}
main #profile > .companyProfile > ul > li:last-child > p {
  font-size: 1rem;
  text-align:justify;
}
main #profile > .companyEmployee {
  margin: 0 12.5%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
main #profile > .companyEmployee > h3 {
  width: 100%;
  margin: 0 0 4% 0;
  font-size: 3.125rem;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  color: #1E1E1E;
  letter-spacing: 0.02em;
  text-align: center;
}
main #profile > .companyEmployee > ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
main #profile > .companyEmployee > ul > li {
  width: 15.25%;
  margin: 0 5.5% 5.9% 0;
  background: #FFF;
}
main #profile > .companyEmployee > ul > li:nth-of-type(5n) {
  margin: 0 0 5.9% 0;
}
main #profile > .companyEmployee > ul > li .img {
  width: 91%;
  margin: 0 0 0 9%;
  border-radius: 5%;
  overflow: hidden;
}
main #profile > .companyEmployee > ul > li .img img {
  height: auto;
  transition: filter .6s ease;
  filter: grayscale(1);
}
main #profile > .companyEmployee > ul > li:hover .img img {
  filter: grayscale(0);
}
main #profile > .companyEmployee > ul > li .txt {
  width: 91%;
  margin: -4% 0 0 0;
}
main #profile > .companyEmployee > ul > li .txt > .name {
  width: 100%;
  margin: 0 0 2% 0;
  padding: 0 0 2% 0;
  border-bottom: 1px solid #1E1E1E;
  font-size: 1.875rem;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  color: #FFF;
  letter-spacing: 0.02em;
  mix-blend-mode: difference;
}
main #profile > .companyEmployee > ul > li .txt > .name > span {
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.5;
}
main #profile > .companyEmployee > ul > li .txt > .post {
  width: 100%;
  font-size: 0.625rem;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.02em;
  position: relative;
}


main #recruit {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 7.8% 0;
  background: #000;
}
main #recruit > .inner {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
main #recruit > .inner > h2 {
  margin: 0 0 0 2.6%;
}
main #recruit > .inner > h2 .square {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 23.4%;
  margin: 0.3% 0 0 0 ;
  mask-image: url("../img/square.svg");
  mask-repeat: no-repeat;
  mask-position: 0 0;
  mask-size: 2.4% auto;
  -webkit-mask-image: url("../img/square.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  -webkit-mask-size: 2.4% auto;
}
main #recruit > .inner > h2 .square video {
  width: 25%;
  margin: 0 0 0 -9%;
}
main #recruit > .inner > h2 > .txt {
  margin: 0 0 0 26.9%;
  font-size: 5rem;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  color: #FFF;
  letter-spacing: 0.05em;
}
main #recruit > .inner > .cap {
  width: 100%;
  margin: 4.2% 0 0 0;
  color: #FFF;
}
main #recruit > .inner > .cap > .txt {
  margin: 0 0 5.2% 0;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align:justify;
  text-align: center;
}
main #recruit > .inner > .cap > .recruitSiteLink {
  width: 20%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
main #recruit > .inner > .cap > .recruitSiteLink > .readMoreBtn {
  width: 45%;
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
}
main #recruit > .inner > .cap > .recruitSiteLink > .readMoreBtn span {
  width: 100%;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align:justify;
  text-align: center;
}
main #recruit > .inner > .cap > .recruitSiteLink > .readMoreBtn a {
  width: 100%;
  height: 2.5em;
  border: 1px solid #FFF;
  border-radius: 11.57% / 50% ;
  justify-content: center;
  align-items: center;
  background: #FFF;
  color: #1E1E1E;
  display: flex;
  text-decoration: none;
}
main #recruit > .inner > .cap > .recruitSiteLink > .readMoreBtn a:hover {
  border: 1px solid #999;
  background: #999;
  color: #FFF;
}


main #copyright {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 7.8% 0 3%;
  position: relative;
  overflow: hidden;
}
main #copyright > p {
  font-size: 0.75rem;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  letter-spacing: 0.02em;
  text-align: center;
  
}





@media screen and (max-width: 639px) {

  html{ font-size: calc(100vw * 16 / 390);}

  .pc {display: none;}
  .sp {display: block;}

  /* loader */
  #loader {
  }
  #loader.loaded {
  }
  #loader img {
    width: 65%;
  }
  #loader p {
  }


  /* jsonアニメ */
  #intro {
  }
  #wrapper {
  }
  #layer {
  }


  #contents {
  }
  #contents.loaded {
  }
  #contents img {
  }


  navi {
    width: 100vw;
    height: 100vh;
    max-width: none;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    opacity: 0;
    transition: all .5s;
    pointer-events: none;
  }
  navi.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  navi > ul {
    width: 100%;
    aspect-ratio: auto;
    margin: 0 auto;
    display: block;
  }
  navi > ul > li {
    width:100%;
    margin: 13% auto 0;
    color: #FFF;
    font-size: 1.2rem;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    letter-spacing: 0.1em;
    display: flex;
    justify-content: center;
  }
  navi > ul > li:first-child {
    margin: 0% auto 0;
  }
  navi > ul > li a {
    color: #FFF;
  }
  navi > ul > li a.uL:after{
    background-color: #FFF;
  }
  navi > ul > li a.uL:hover:after {
  }
  navi > ul > li.contact {
    width: 100%;
    margin: 17% auto 0;
    display: inline-block;
  }
  navi > ul > li.contact a {
    width: 60%;
    height: auto;
    aspect-ratio: 39 / 7;
    margin: 0 auto;
    border: 1px solid #FFF;
  }
  navi > ul > li.contact a:hover {
    border: 1px solid #999;
    background: #999;
    color: #FFF;
  }
  navi > ul > li.inst{
    width: 100%;
    margin: 8% auto 0;
    display: inline-block;
  }
  navi > ul > li.inst a {
    width: 60%;
    height: auto;
    aspect-ratio: 39 / 7;
    margin: 0 auto;
    border: 1px solid #FFF;
    background: #FFF;
    color: #1E1E1E;
  }
  navi > ul > li.inst a:hover {
    border: 1px solid #999;
    background: #999;
    color: #FFF;
  }

  /* ハンバーガーボタン */
  .humberger {
    width: 15%;
    aspect-ratio: 1 / 1;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
    background: #000;
    display: block;
  }
  .humberger.active {
    background: #FFF;
  }
  .humberger > .line {
    margin: 20% 20%;
    background: #FFF;
    display: block;
    height: 2px;
    position: absolute;
    transition:transform .3s;
    width: 60%;
  }
  .humberger > .line.top {
    top: 10%;
  }
  .humberger > .line.center {
    top: 28.46%;
  }
  .humberger > .line.bottom {
    bottom: 10%;
  }
  .humberger > .line.active {
    width: 62%;
  }
  .humberger > .line.top.active {
    background: #1E1E1E;
    top: 28.46%;
    transform: rotate(45deg);
  }
  .humberger > .line.center.active {
    transform:scaleX(0);
  }
  .humberger > .line.bottom.active {
    background: #1E1E1E;
    bottom: 28.46%;
    transform: rotate(135deg);
  }

  #pageTop {
  }
  #pageTop a {
    width: 20%;
  }
  #pageTop a:hover {
  }


  main #fView {
  }
  main #fView > .mainCopy {
    width: 100%;
    margin: 65% 0 0 0;
    position: absolute;
    top: 0;
    left: 0;
  }
  main #fView > .mainCopy > h3.txt{
    margin: 4% 0 0 2%;
    font-size: 4rem;
  }
  main #fView > .mainCopy > h3#happiness {
    width: 98%;
    height: auto;
    position: absolute;
    top: 100%;
    left: 1%;
    overflow: hidden;
  }
  main #fView > .mainCopy > h3#happiness video {
    width: 240%;
  }
  main #fView > .mainCopy > .cap {
    margin: 15% 0 0 3%;
    position: absolute;
    top: 140%;
    font-size: 0.8rem;
  }
  main #fView > .mainCopy > .logo {
    width: 16%;
    position: absolute;
    top: 260%;
    left: 3%;
  }
  main #fView > .gallery {
    width: 100%;
    aspect-ratio: 118 / 95;
    margin: 0 0 110%;
    position: relative;
  }
  main #fView > .gallery > li {
  }
  main #fView > .gallery > li:nth-of-type(2) {
  }
  main #fView > .gallery > li:nth-of-type(3) {
  }
  main #fView > .gallery > li:nth-of-type(4) {
  }


  main #about {
    margin: 30% calc(50% - 50vw) 0;
    padding: 30% 0;
  }
  main #about > .inner {
  }
  main #about > .inner > h2 {
    margin: 0 0 0 8%;
  }
  main #about > .inner > h2 .square {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0.3% 0 0 0 ;
    mask-size: 7.5% auto;
    -webkit-mask-size: 7.5% auto;
  }
  main #about > .inner > h2 .square video {
    width: 75%;
    margin: -21% 0 0 -45%;
  }
  main #about > .inner > h2 > .txt {
    margin: 0 0 0 10%;
    font-size: 3rem;
  }
  main #about > .inner > .cap {
    width: 90%;
    margin: 10% 5% 0 5%;
  }
  main #about > .inner > .cap > h3 {
    font-size: 1.125rem;
  }
  main #about > .inner > .cap > .txt {
    margin: 9% 0 0 0;
    font-size: 0.875rem;
  }
  main #about > .inner > .aboutImage {
    width: 90%;
    margin: 10% auto;
    position: static;
    display: flex;
    flex-wrap: wrap;
  }
  main #about > .inner > .aboutImage > li:nth-of-type(1) {
    width: 77.47%;
    margin: 0 0 0 18.7%;
  }
  main #about > .inner > .aboutImage > li:nth-of-type(2) {
    width: 54.83%;
    margin: 8.34% 6.44% 0 0;
  }
  main #about > .inner > .aboutImage > li:nth-of-type(3) {
    width: 38.73%;
    margin: 4.76% 0 0 0;
  }
  main #about > .inner > .managementPhilosophy {
    width: 90%;
    margin: 20% auto 0;
    flex-direction: column;
  }
  main #about > .inner > .managementPhilosophy > h3 {
    margin: 0 0 5% 0;
    font-size: 2.5rem;
    order: 1;
  }
  main #about > .inner > .managementPhilosophy > .graph {
    width: 100%;
    margin: 5% 0;
    order: 2;
  }
  main #about > .inner > .managementPhilosophy > .graph > img {
    width: 100%;
  }
  main #about > .inner > .managementPhilosophy > ul {
    width: 100%;
    order: 3;
  }
  main #about > .inner > .managementPhilosophy > ul > li {
    padding: 8% 0 5%;
    border-bottom: 1px solid #FFF;
  }
  main #about > .inner > .managementPhilosophy > ul > li:last-child {
    border-bottom: none;
  }
  main #about > .inner > .managementPhilosophy > ul > li > h4 {
    padding: 0 0 2% 0;
    font-size: 1.125rem;
  }
  main #about > .inner > .managementPhilosophy > ul > li:nth-of-type(1) > h4 {
  }
  main #about > .inner > .managementPhilosophy > ul > li:nth-of-type(2) > h4 {
  }
  main #about > .inner > .managementPhilosophy > ul > li:nth-of-type(3) > h4 {
  }
  main #about > .inner > .managementPhilosophy > ul > li > p {
    font-size: 0.875rem;
  }


  main #works {
    padding: 30% 0;
  }
  main #works > h2 {
    margin: 0 0 0 8%;
  }
  main #works > h2 .square {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0.3% 0 0 0 ;
    mask-size: 7.5% auto;
    -webkit-mask-size: 7.5% auto;
  }
  main #works > h2 .square video {
    width: 75%;
    margin: -6% 0 0 -12%;
  }
  main #works > h2 > .txt {
    margin: 0 0 0 10%;
    font-size: 3rem;
  }
  main #works > .thumbnail {
    width: 85%;
    margin: 10% 0 0 5%;
  }
  main #works > .thumbnail > li {
    width: 100%;
    margin: 0 0 12% 0;
  }
  main #works > .thumbnail > li:nth-of-type(3n) {
    margin: 0 0 12% 0;
  }
  main #works > .thumbnail > li a {
  }
  main #works > .thumbnail > li .img {
  }
  main #works > .thumbnail > li .img img {
  }
  main #works > .thumbnail > li:hover .img img {
  }
  main #works > .thumbnail > li .txt {
  }
  main #works > .thumbnail > li .txt > .cliant {
    font-size: 1.8rem;
  }
  main #works > .thumbnail > li .txt > .category {
  }
  main #works > .thumbnail > li .arrow {
  }
  main #works > .moreBtn {
    width: 44.3%;
  }
  main #works > .moreBtn a {
  }
  main #works > .moreBtn a:hover {
  }


  main #furniture {
    margin: 0 calc(50% - 50vw);
    padding: 30% 0;
  }
  main #furniture > .inner {
  }
  main #furniture > .inner > h2 {
    margin: 0 0 0 8%;
  }
  main #furniture > .inner > h2 .square {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0.3% 0 0 0 ;
    mask-size: 7.5% auto;
    -webkit-mask-size: 7.5% auto;
  }
  main #furniture > .inner > h2 .square video {
    width: 75%;
    margin: -1.5% 0 0 -60%;
  }
  main #furniture > .inner > h2 > .txt {
    margin: 0 0 0 10%;
    font-size: 3rem;
  }
  main #furniture > .inner > .cap {
    width: 90%;
    margin: 10% 5% 0 5%;
  }
  main #furniture > .inner > .cap > h3 {
    font-size: 1.125rem;
  }
  main #furniture > .inner > .cap > .txt {
    margin: 9% 0 ;
    font-size: 0.875rem;
  }
  main #furniture > .inner > .cap > .contactBtn {
    width: 49.2%;
    margin: 0 auto;
  }
  main #furniture > .inner > .cap > .contactBtn a {
  }
  main #furniture > .inner > .cap > .contactBtn a:hover {
  }
  main #furniture > .inner > .aboutImage {
    width: 90%;
    margin: 10% auto;
    position: static;
    display: flex;
    flex-wrap: wrap;
  }


  main #profile {
    padding: 30% 0 25%;
  }
  main #profile > h2 {
    margin: 0 0 0 8%;
  }
  main #profile > h2 .square {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0.3% 0 0 0 ;
    mask-size: 7.5% auto;
    -webkit-mask-size: 7.5% auto;
  }
  main #profile > h2 .square video {
    width: 75%;
    margin: -27% 0 0 -12%;
  }
  main #profile > h2 > .txt {
    margin: 0 0 0 10%;
    font-size: 3rem;
  }
  main #profile > .companyProfile {
    width: 90%;
    margin: 10% auto 0 ;
    flex-wrap: wrap;
  }
  main #profile > .companyProfile > .logo {
    width: 100%;
    margin: 10% 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  main #profile > .companyProfile > .logo > img {
    width: 40%;
  }
  main #profile > .companyProfile > ul {
    width: 100%;
    margin: 10% 0;
  }
  
  main #profile > .companyProfile > ul > li {
    padding: 8% 0 5%;
  }
  main #profile > .companyProfile > ul > li:last-child {
    border-bottom: none;
  }
  main #profile > .companyProfile > ul > li > h4 {
    padding: 0 0 2% 0;
    font-size: 1.125rem;
  }
  main #profile > .companyProfile > ul > li > p {
    font-size: 0.875rem;
  }
  main #profile > .companyProfile > ul > li:last-child > p {
    font-size: 0.875rem;
  }
  main #profile > .companyEmployee {
    width: 90%;
    margin: 0 auto;
  }
  main #profile > .companyEmployee > h3 {
    margin: 0 0 8% 0;
    font-size: 2.5rem;
    text-align: left;
  }
  main #profile > .companyEmployee > ul {
    width: 95%;
    margin: 0 auto;
  }
  main #profile > .companyEmployee > ul > li {
    width: 45%;
    margin: 0 10% 8% 0;
    background: #FFF;
  }
  main #profile > .companyEmployee > ul > li:nth-of-type(5n) {
    margin: 0 10% 8% 0;
  }
  main #profile > .companyEmployee > ul > li:nth-of-type(2n) {
    margin: 0 0 8% 0;
  }
  main #profile > .companyEmployee > ul > li .img {
  }
  main #profile > .companyEmployee > ul > li .img img {
  }
  main #profile > .companyEmployee > ul > li:hover .img img {
  }
  main #profile > .companyEmployee > ul > li .txt {
  }
  main #profile > .companyEmployee > ul > li .txt > .name {
    font-size: 1.35rem;
  }
  main #profile > .companyEmployee > ul > li .txt > .name > span {
    font-size: 0.625rem;
    font-weight: 300;
    line-height: 1.5;
  }
  main #profile > .companyEmployee > ul > li .txt > .post {
  }
  

  main #recruit {
    margin: 0 calc(50% - 50vw);
    padding: 30% 0;
  }
  main #recruit > .inner {
  }
  main #recruit > .inner > h2 {
    margin: 0 0 0 8%;
  }
  main #recruit > .inner > h2 .square {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0.3% 0 0 0 ;
    mask-size: 7.5% auto;
    -webkit-mask-size: 7.5% auto;
  }
  main #recruit > .inner > h2 .square video {
    width: 75%;
    margin: 0 0 0 -27%;
  }
  main #recruit > .inner > h2 > .txt {
    margin: 0 0 0 10%;
    font-size: 3rem;
  }
  main #recruit > .inner > .cap {
    width: 90%;
    margin: 10% 5% 0 5%;
  }
  main #recruit > .inner > .cap > .txt {
    margin: 9% 0 ;
    font-size: 0.875rem;
  }
  main #recruit > .inner > .cap > .recruitSiteLink {
    width: 100%;
    display: block;
  }
  main #recruit > .inner > .cap > .recruitSiteLink > .readMoreBtn {
    width: 49.2%;
    margin: 0 auto 5%;
  }
  main #recruit > .inner > .cap > .recruitSiteLink > .readMoreBtn span {
  }
  main #recruit > .inner > .cap > .recruitSiteLink > .readMoreBtn a {
  }
  main #recruit > .inner > .cap > .recruitSiteLink > .readMoreBtn a:hover {
  }


  main #copyright {
    width: 100%;
    padding: 20% 0;
  }
  main #copyright > p {
    font-size: 0.75rem;
  }


}

