body {
  width: 100%;
  margin: 0;
  background: #D8D8D8;
}

a {
  text-decoration: none;
  color: #000;
}

header {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

/* i.fa-caret-right {
  font-size: 20px;
  padding-top: 5px;
} */




/* メニュー */

#menu {
  width: 94%;
  max-width: 400px;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 110px 0 0 50px;
  box-sizing: border-box;
  background: #000;
  z-index: 2;
  color: #fff;
  font-family: "Teko", "oswald", 'anton', "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 300;
  overflow: hidden;
  transform: translate(120%);
  transition: 0.3s;
  /* background-image: url(../img/ham-bg.svg);
  background-size: cover; */
  /* filter: brightness(150%); */
}

#menu.open {
  transform: translate(0);
}

#menu img {
  height: 90.5%;
  position: absolute;
  top: 0;
  right: -10vh;
  z-index: -1;
  filter: brightness(100%);
}

#menu p {
  font-size: 14px;
  letter-spacing: 5px;
  margin: 0% 5% 30px 0;
  display: inline-block;
}

#menu span {
  width: 30px;
  height: 30px;
  margin: 2%;
  padding: 0px;
  font-size: 20px;
  line-height: 36.5px;
  transition: 0.3s;
  border-radius: 50%;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
  position: relative;
}

#menu span::before {
  content: '';
  width: 0px;
  height: 0px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  z-index: -1;
  border-radius: 50%;
  transition: 0.16s;
}

#menu span:hover::before {
  width: 30px;
  height: 30px;
}
#menu span:hover a {
  color: #000;
}

#menu span a {
  color: #fff;
  transition: 0.16s;
}

#menu span a i {
  padding: 3px;
  border-radius: 50%;
}





#menu ul {
  font-size: 30px;
  padding: 0;
  list-style: none;
}

#menu li {
  margin: 30px auto;
  position: relative;
}

#menu li > a::before {
  content: '';
  width: 0%;
  height: 110%;
  background: #fff;
  position: absolute;
  top: 50%;
  left: -20%;
  transform: translateY(-55%) skewX(30deg);
  transition: 0.2s;
  z-index: -2;
}

#menu li > a:hover::before {
  width: 200%;
}

#menu li a {
  color: #fff;
  transition: 0.2s;
}
#menu li > a:hover {
  color: #000;
}





/* トップ */


.spot-c-top {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  padding: 0 0 27% 0;
}

#top {
  width: 100%;
  height: 70px;
  /* position: fixed; */
  padding: 0 6%;
  display: flex;
  align-items: center;
  transition: 0.3s;
  z-index: 2;
  box-sizing: border-box;
  background: transparent;
}

div#top.open {
  background: transparent;
}

#top-p {
  width: auto;
  height: 40px;
  transition: 0.3s;
}

#top.open > #top-p {
  opacity: 0;
}

#top.top-s {
  height: 50px;
  background: rgba(255, 255, 255, 1);
}
#top-p.top-s {
  height: 40px;
}

#hamburger {
  width: 24px;
  height: 19px;
  position: relative;
  margin: 0 0 0 auto;
  cursor: pointer;
  position: fixed;
  right: 6%;
  z-index: 2;
}

#hamburger.open span {
  background: #fff;
}

#hamburger span {
  width: 24px;
  height: 3px;
  position: absolute;
  left: 0;
  background: #000;
  transition: 0.3s;
}

#hamburger span:nth-child(1) {
  top: 0;
}
#hamburger span:nth-child(2) {
  top: 8px;
  transition: 0.3s;
}
#hamburger span:nth-child(3) {
  top: 16px;
}
#hamburger.open span:nth-child(1) {
  animation: bar1 0.6s both;
}
#hamburger.open span:nth-child(2) {
  opacity: 0;
}
#hamburger.open span:nth-child(3) {
  animation: bar3 0.6s both;
}
#hamburger.close span:nth-child(1) {
  animation: bar1-close 0.6s both;
}
#hamburger.close span:nth-child(2) {
  opacity: 1;
}
#hamburger.close span:nth-child(3) {
  animation: bar3-close 0.6s both;
}

@keyframes bar1 {
  0% {transform: translateY(0px) rotate(0deg);}
  50% {transform: translateY(8px) rotate(0deg);}
  100% {transform: translateY(8px) rotate(45deg);}
}
@keyframes bar3 {
  0% {transform: translateY(0px) rotate(0deg);}
  50% {transform: translateY(-8px) rotate(0deg);}
  100% {transform: translateY(-8px) rotate(-45deg);}
}
@keyframes bar1-close {
  0% {transform: translateY(8px) rotate(45deg);}
  50% {transform: translateY(8px) rotate(0deg);}
  100% {transform: translateY(0px) rotate(0deg);}
}
@keyframes bar3-close {
  0% {transform: translateY(-8px) rotate(-45deg);}
  50% {transform: translateY(-8px) rotate(0deg);}
  100% {transform: translateY(0px) rotate(0deg);}
}


#top-bg {
  width: 100%;
  height: 70px;
  transition: 0.3s;
}

#top-bg.top-s {
  height: 70px;
}




/* トップメイン */

#main {
  width: 100%;
  /* max-width: 1200px; */
  height: auto;
  overflow: hidden;
  filter: brightness(85%);
  position: relative;
  /* background-image: url(../img/top-bg.svg); */
  /* background-repeat: no-repeat;
  background-size: 220%; */
  display: flex;
  flex-direction: column;
}

.main-bg {
  width: 108%;
  height: auto;
  position: absolute;
  top: -4%;
  left: 25%;
  z-index: -1;
  filter: brightness(85%);
}

.main-bg-pc {
  display: none;
}

.main-logo {
  width: 70%;
  height: auto;
  margin: 14% 20% 6% 10%;
}

.sub_menu {
  width: 80%;
  height: auto;
  color: #000;
  margin: 0 auto 8% auto;
  font-family: "Teko", "oswald", 'anton', "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 300;
}

.sub_menu ul {
  width: 70%;
  height: auto;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.sub_menu li {
  font-size: 16px;
  line-height: 14px;
  display: inline-block;
  text-align: left;
  position: relative;
  box-sizing: border-box;
  margin-left: -3px;
  padding: 4px 3px 0 3px;
  overflow: hidden;
}

.sub_menu li::before {
  content: '';
  width: 0%;
  height: 19px;
  background: #000;
  position: absolute;
  top: 0;
  left: -20%;
  transform: skewX(30deg);
  transition: 0.16s;
  z-index: -1;
}

.sub_menu li:hover::before {
  width: 140%;
}

.sub_menu li::after {
  content: '';
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

/* .sub_menu li > a > div {
  width: 120%;
  height: 1px;
  position: absolute;
  bottom: 13%;
  left: -10%;
  background: #000;
  z-index: -1;
  transition: 0.16s;
} */

/* .sub_menu li > a:hover div {
  height: 100%;
} */

.sub_menu li a {
  transition: 0.16s;
}
.sub_menu li:hover a {
  color: #fff;
}



.home {
  position: absolute;
  top: -20px;
  font-size: 13px;
}

.enjoy {
  position: absolute;
  top: 27px;
  font-size: 10px;
  letter-spacing: 0.5em;
  font-weight: 400;
  white-space: nowrap;
}





.industry {
  width: 65%;
  margin: 0% 25% 39% 10%;
  font-size: 17px;
  font-family: "Teko", "oswald", 'anton', "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 300;
}

.industry > p:first-child {
  font-size: 32px;
  margin: 0;
  height: 33px;
  line-height: 33px;
}

.industry > p {
  margin: 0px 0 3% 0;
}




/* コンセプト */


.bg-black {
  width: 100%;
  height: auto;
  background: #000;
  color: #fff;
}

#concept {
  width: 80%;
  height: auto;
  position: relative;
  margin: 0% auto 0 auto;
}

.concept-p-c {
  width: 100%;
  height: auto;
  /* display: flex;
  justify-content: space-between;
  align-items: flex-start; */
  margin: 0 0 0% 0;
  position: relative;
}

.concept-p-c > img {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: -36%;
}

.concept-p-c > img:nth-child(3) {
  position: relative;
  width: 78%;
  height: auto;
}

.concept-p-c > img:nth-child(4) {
  width: 54%;
  height: auto;
  top: 56%;
  left: 50%;
}

.concept-p-c > img:first-child {
  width: 30%;
  height: auto;
  top: -8%;
  left: 68%;
  /* animation: rtt 50s infinite linear reverse; */
}

.concept-p-c > img:nth-child(2) {
  width: 22%;
  height: auto;
  top: 160%;
  left: 36%;
  /* animation: rtt 39s infinite linear; */
}

/* @keyframes rtt {
  0% {transform: rotate(0deg);}
  100% {transform: rotate(360deg);}
} */


/* .concept-ps {
  width: 100%;
  margin: -38% 0 0 0;
}
.concept-pl {
  display: none;
} */

.concept-t-c {
  width: 100%;
  height: auto;
  margin: 32% 0 0 0;
}

.concept-t1, .concept-t2, .concept-t3 {
  font-family: "Teko", "oswald", 'anton', "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 300;
}

.concept-t1 {
  font-size: 60px;
  letter-spacing: -1px;
  margin: -4% 0 0 0;
}

/* .concept-t2 {
  font-size: 43px;;
  letter-spacing: -1px;
  margin-top: -32px;
}

.concept-t3 {
  font-size: 24px;
  letter-spacing: -0.2px;
  margin-top: -17px;
} */

.concept-t4 {
  width: 100%;
  height: auto;
  margin-top: 3px;
  font-size: 13px;
  line-height: 27px;
  letter-spacing: 0.8px;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.concept-t5 {
  width: 100%;
  height: auto;
  margin-top: 20px;
  font-size: 12px;
  line-height: 27px;
  letter-spacing: 0.8px;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}




/* ワークス */

.works1 {
  width: 100%;
  height: auto;
  margin: 12% 0% 0 0%;
  position: relative;
  font-family: "Teko", "oswald", 'anton', "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 300;
  text-align: center;
  overflow: hidden;
  text-align: center;
}

.works-title {
  font-size: 60px;
  letter-spacing: -1px;
  margin: 0 0 3% 10%;
  line-height: 76px;
  text-align: left;
}

.work-c {
  width: 80%;
  height: auto;
  margin: 0% auto 0% auto;
  padding: 0% 0 8% 0;
  display: flex;
  flex-direction: column;
  text-align: left;
  position: relative;
}

.work-img {
  width: 80vw;
  /* max-width: 600px; */
  height: 75vw;
  /* max-height: 337.5px; */
  overflow: hidden;
  text-align: center;
  order: 1;
  z-index: 1;
}

.work-img > a > img {
  width: 80vw;
  /* max-width: 600px; */
  height: 75vw;
  /* max-height: 337.5px; */
  object-fit: cover;
  transition: 0.3s;
  vertical-align: bottom;
}

.work-img > a > img:hover {
  transform: scale(1.1);
  filter: brightness(50%);
}

/* .works1 > .work-c:nth-child(2) {
  padding: 0 0 30% 0;
} */

/* .works1 > .work-c:nth-child(3) {
  position: absolute;
  top: 70%;
} */

.work-num {
  width: 30%;
  height: auto;
  /* font-size: 150px;
  line-height: 100px; */
  color: #2E2E2E;
  position: absolute;
  top: 2%;
  left: 2%;
  filter: brightness(10%);
  z-index: 2;
}

/* .work-num > p {
  width: 50%;
  font-size: 10px;
  line-height: 18px;
  letter-spacing: 1px;
  font-family: 'Orbitron', "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  display: inline-block;
} */

.work-info {
  width: 100%;
  height: 48px;
  color: #fff;
  margin: 5% 0 0 0;
  padding: 2.4px 0 0 0;
  box-sizing: border-box;
  position: relative;
  /* overflow: hidden; */
  transition: 0.3s;
  order: 2;
  /* z-index: 0; */
}

.work-info > a {
  width: 100%;
  display: flex;
  align-items: center;
}

.work-info p {
  position: relative;
  color: #fff;
  z-index: 1;
}

.work-info::before {
  content: '';
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -30%;
  background: #fff;
  transform: skewX(30deg);
  transition: 0.2s;
  z-index: 0;
}

.work-info:hover p {
  color: #000;
}

.work-info:hover::before{
  width: 150%;
  left: -25%;
}

.work-info::after {
  content: '';
  width: 200%;
  height: 2px;
  background: #fff;
  position: absolute;
  /* top: 95%; */
  bottom: 0;
}

.work-t {
  width: auto;
  font-size: 28px;
  line-height: 48px;
  white-space: nowrap;
  margin: 0% 3% 0 0%;
}

.work-d {
  width: auto;
  white-space: nowrap;
  font-size: 15px;
  line-height: 48px;
  margin: 0% 0 0 0;
}

p.work-m {
  width: auto;
  flex: 1;
  font-size: 12px;
  line-height: 48px;
  margin: 0;
  letter-spacing: 3px;
  text-align: right;
  color: #585858;
  white-space: nowrap;
}

.works2 {
  width: 100%;
  height: auto;
  margin: 0% 0% 0 0%;
  position: relative;
  font-family: "Teko", "oswald", 'anton', "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 300;
  text-align: center;
  overflow: hidden;
}

.works2 > .work-c {
  margin: 8% auto 0 auto;
}

.works2 > .work-c > .work-num {
  color: #BDBDBD;
}

.works2 > .work-c > .work-info > a .work-t, .works2 > .work-c > .work-info > a .work-d {
  color: #000;
}

.works2 > .work-c > .work-info::before {
  background: #000;
}

.works2 > .work-c > .work-info::after {
  background: #000;
}

.works2 > .work-c > .work-info:hover a p {
  color: #fff;
}

.works2 > .work-c > a:hover .work-info::before{
  left: -10%;
}








/* .spot-c {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}

.spot1, .spot2, .spot3 {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  color: #fff;
  text-align: center;
  z-index: -2;
  filter: blur(50px);
}

.spot1 {
  width: 900px;
  height: 700px;
  background: #BDBDBD;
  border-radius: 50%;
  animation: spot1 69s infinite linear alternate;
  opacity: 0.8;
  filter: saturate(100%);
}

@keyframes spot1 {
  0% {transform: translate(000px, -200px) rotate(0deg);}
  10% {transform: translate(50px, -100px) rotate(72deg);}
  20% {transform: translate(120px, 30px) rotate(144deg);}
  30% {transform: translate(150px, 90px) rotate(216deg);}
  40% {transform: translate(110px, 160px) rotate(288deg);}
  50% {transform: translate(60px, 80px) rotate(360deg);}
  60% {transform: translate(-50px, 0px) rotate(288deg);}
  70% {transform: translate(-100px, -50px) rotate(216deg);}
  80% {transform: translate(-20px, -80px) rotate(144deg);}
  90% {transform: translate(70px, 120px) rotate(72deg);}
  100% {transform: translate(30px, -150px) rotate(0deg);}
}

.spot2 {
  width: 800px;
  height: 700px;
  top: 30%;
  left: 100%;
  background: #BDBDBD;
  border-radius: 50%;
  animation: spot2 29s infinite linear alternate;
  opacity: 1;
}

@keyframes spot2 {
  0% {transform: translate(0px, 0px) rotate(0deg);}
  10% {transform: translate(-200px, 100px) rotate(72deg);}
  20% {transform: translate(-320px, 180px) rotate(144deg);}
  30% {transform: translate(-430px, 90px) rotate(216deg);}
  40% {transform: translate(-510px, 160px) rotate(288deg);}
  50% {transform: translate(-720px, 260px) rotate(360deg);}
  60% {transform: translate(-550px, 350px) rotate(288deg);}
  70% {transform: translate(-400px, 210px) rotate(216deg);}
  80% {transform: translate(-500px, 110px) rotate(144deg);}
  90% {transform: translate(-320px, 200px) rotate(72deg);}
  100% {transform: translate(-100px, 350px) rotate(0deg);}
}

.spot3 {
  width: 1000px;
  height: 900px;
  background: #D8D8D8;
  top: 70%;
  left: -20%;
  border-radius: 50%;
  animation: spot3 36s infinite linear alternate;
  opacity: 0.4;
}

@keyframes spot3 {
  0% {transform: translate(0px, 0px) rotate(0deg);}
  10% {transform: translate(-300px, 100px) rotate(72deg);}
  20% {transform: translate(-420px, 180px) rotate(144deg);}
  30% {transform: translate(-360px, 350px) rotate(216deg);}
  40% {transform: translate(-310px, 160px) rotate(288deg);}
  50% {transform: translate(-520px, -60px) rotate(360deg);}
  60% {transform: translate(-450px, -350px) rotate(288deg);}
  70% {transform: translate(-190px, -610px) rotate(216deg);}
  80% {transform: translate(-0px, -310px) rotate(144deg);}
  90% {transform: translate(-60px, -200px) rotate(72deg);}
  100% {transform: translate(-300px, 50px) rotate(0deg);}
} */






.more-works {
  width: 80%;
  height: 10vw;
  line-height: 10vw;
  margin: 3% auto 11% auto;
  /* padding: 0 0 0 15px; */
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.3em;
  font-family: "Teko", "oswald", 'anton', "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 300;
  text-align: center;
  background-color: #000;
  position: relative;
  transition: 0.3s;
  box-sizing: border-box;
  border: 2px solid #fff;
  overflow: hidden;
  opacity: 0;
}

.more-works::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 10vw;
  background: #fff;
  position: absolute;
  top: 0%;
  left: -20%;
  transform: skewX(30deg);
  z-index: 0;
  transition: 0.3s;
}

.more-works a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  transition: 0.3s;
}

.more-works:hover a {
  color: #000;
}

.more-works:hover::before {
  width: 200%;
}

#back-to-top {
  width: 100px;
  margin: 15% auto 15% auto;
  font-size: 15px;
  letter-spacing: 0.3em;
  font-family: "Teko", "oswald", 'anton', "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 300;
  text-align: center;
  cursor: pointer;
}

#back-to-top::before {
  content: "▲";
  font-size: 15px;
  display: block;
  /* margin-bottom: 5px; */
}

#back-to-top:hover::before {
  animation: btt 0.3s;
}

@keyframes btt {
  0% {transform: translate(0, 0);}
  50% {transform: translate(0, -6px);}
  100% {transform: translate(0, 0);}
}




/* フッター */

footer {
  width: 100%;
  height: 85px;
  background-color: #000;
  text-align: center;
}

footer img {
  width: 220px;
  height: auto;
  margin: 15px 0 -5px 0;
  /* display: block; */
}

small {
  display: block;
  color: #fff;
  font-family: "Teko", "oswald", 'anton', "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 300;
  letter-spacing: 0.5px;
  font-size: 10px;
}
