@charset "UTF-8";

/* main */

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 2em;
  letter-spacing: 0.13em;
  font-family: 'PT Sans','Noto Sans JP', sans-serif;
  color: #3e4550;
  background-color: #fcfcfc;
  overflow-x: hidden;
  text-align: center;
}

h1 p.small {
  font-weight: 400;
  display: inline;
  margin-left: 24px;
}

h1.left {
  position: absolute;
  z-index: 100;
}

h1.right {
  position: absolute;
  right: 0;
  z-index: 100;
}

h1 svg {
  opacity: 0.9;
}

h2 {
  font-size: 32px;
  letter-spacing: 0.02em;
}

h3 {
  font-size: 16px;
}

p.small {
  margin-top: 15px;
  font-size: 14px;
}

p.sub_small {
  font-size: 14px;
}

.mt-20 {
  margin-bottom: 20px;
}

.mr-120 {
  margin-right: -120px;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

/* カーソルはスキップ */

/* header */
header {
  width: 100%;
  height: 80px;
  position: fixed;
  background-color: #fcfcfc;
  z-index: 200;
}

div.header {
  display: flex;
  padding: 20px 45px;
  align-items: center;
  justify-content: space-between;
}

header div.logo img {
  width: 30%;
  display: block;
}

header nav ul {
  display: flex;
  align-items: center;
}

header nav ul li {
  margin-left: 40px;
  font-size: 13px;
}

header nav ul li img.icon {
  vertical-align: sub;
}

/* top */
main.top {
  overflow: hidden;
  padding-bottom: 70px;
  width: 95%;
  padding: 0 2.5% 0;
  box-sizing: content-box;
}

section.mv {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  max-width: 1440px;
  margin: 0 auto 120px auto;
}

div.mv_title {
  margin-left: 100px;
  z-index: 10;
}

p.site_title {
  font-weight: bold;
  font-size: 48px;
  letter-spacing: 8px;
  line-height: 1.5em;
  text-align: left;
  width: 680px;
  -webkit-text-stroke: 1px #FFF;
  text-stroke: 1px #FFF;

}

.typed_wrap p {
  text-align: left;
  color: #E60012;
}

/* 2つスキップ */
.typed::after {
  content: "|";
  animation: blink is infinite;
}

@keyframes blink {
  50%(opacity: 0;)
}

div.mv_img {
  margin-left: -240px;
}

div.mv_img img {
  width: 90%;
  padding-top: 100px;
}

/* スクロールアニメ */
.scrolldown1 {
  position: absolute;
  left: 50px;
  bottom: 10px;
  height: 50px;
}

.scrolldown1 span {
  position: absolute;
  left: -15px;
  top: -30px;
  color: #3E4550;
  font-size: 12px;
  letter-spacing: 0.05em;
  transform: rotate(90deg);
}

.scrolldown1::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 30px;
  background: #3E4550;
  animation: pathmove 1.5s ease-in-out infinite;
}

@keyframes pathmove {
  0%{
    height:0;
    top:0;
    opacity: 0;
  }
  30%{
    height:30px;
    opacity: 1;
  }
  100%{
    height: 0;
    top:50px;
    opacity:0;
  }
}

/* about */
section.about {
  margin: 0 auto 150px auto;
  height: 450px;
  max-width: 1440px;
}

div.about_contents {
  float: right;
  margin: 100px 100px 0 0;
}

div.about_lead {
  color: transparent;
  font-size: 72px;
  letter-spacing: 6px;
  line-height: 1.1em;
  text-align: left;
  -webkit-text-stroke: 1px #5d5d5d;
  text-stroke: 1px #5d5d5d;
  margin-bottom: 32px;
  position: relative;
}

div.about_lead::before {
  content: url('../img/ashirai.png');
  transform: scale(0.5);
  position: absolute;
  top: -500px;
  right: 430px;
  z-index: -10;
  animation: rotate-anime 30s linear inherit;
}

@keyframes rotate-anime {
  0% {transform: rotate(0) scale(0.5);}
  100% {transform: rotate(360deg) scale(0.5);}
}

div.about_desc {
  text-align: left;
}

div.about_more {
  text-align: right;
  font-size: 20px;
  margin-top: 24px;
  position: relative;
}

div.about_more a {
  margin-right: 75px;
}

div.about_more a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  content: '';
  width: 15%;
  height: 1px;
  background: #3e4550;
  transform: scale(1, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}

div.about_more a:hover::after {
  transform: scale(1.5, 1);
}

/* works */
section.works {
  position: relative;
  margin: 0 auto 50px auto;
  max-width: 1440px;
}

h1.works::before {
  content: url('');
  position: absolute;
  z-index: -10;
  transform: scale(0.5);
  left: -110px;
  top: -200px;
  animation: rotate-anime 25s linear infinite;
}

@keyframes rotate-anime {
  0% {transform: rotate(360deg) scale(0.5);}
  100% {transform: rotate(0) scale(0.5);}
}

a.link {
  color: #608EAE;
}

a.ex_link {
  color: #608EAE;
}

a.note {
  color: #608EAE;
  margin: 15px 0;
  display: block;
}

div.works_list {
  width: 85%;
  margin: auto;
}

ul.tab {
  text-align: right;
  padding-top: 50px;
}

.is-active {
  color: #276BAF;
  font-weight: bold;
}

.is-hide {
  display: none;
}

li.tab_member {
  display: inline;
  margin-left: 10px;
}

li.tab_member:not(:first-child){
  border-left: 1px solid #DDDDDD;
  padding-left: 20px;
}

div.list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

div.list::after {
  display: block;
  content: "";
  width: 330px;
}

div.list div.contents {
  width: 330px;
  margin-top: 50px;
}

div.contents img {
  width: 100%;
}

div.contents p {
  margin-top: 10px;
  text-align: left;
}
div.contents p.small {
  font-size: 12px;
  color: #a3a3a3;
  margin-top: -5px;
}

div.col {
  text-align: right;
  font-size: 42px;
  margin: 30px 0;
  font-weight: 100;
}

div.col a {
  position: relative;
}

div.col a::before {
  content: '';
  background-image: url("../svg/record2.svg");
  position: absolute;
  display: inline-block;
  height: 560%;
  width: 500%;
  /* top: -80px; */
  top: -150px;
  right: -90px;
  animation: 15s linear infinite rotate_anime;
}

@keyframes rotate_anime {
  0% {
    transform: rotate(0deg);
    }
  100% {
    transform: rotate(-360deg);
  }
}

/* footer */
footer {
  background: #f0f0f0;
  color: #3E4550;
  padding: 0 0 10px 0;
  width: 100%;
}

div.footer_contents {
  width: 85%;
  margin: 0 auto;
  padding: 50px 0;
  display: flex;
  justify-content: space-between;
}

div.footer_logo a {
  font-size: 20px;
  position: relative;
}

div.footer_logo a::before {
  content: url("");
  position: absolute;
  transform: scale(0.3);
  top: -60px;
  left: -72px;
}

div.footer_nav {
  display: inherit;
}

ul.footer {
  margin-left: 70px;
}

ul.footer li {
  font-size: 16px;
  margin-bottom: 16px;
}

p.copyright {
  font-size: 12px;
}

/* スクロール  色々消える？*/
/* div.scroll-up {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;
}

div.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
} */

/* 下層ページ とりあえあず無視*/


/* レスポンシブデザイン */


@media screen and (max-width:1024px){
  div.mv_title {
    margin-left: 60px;
  }

  div.mv_img img {
    margin-left: -360px;
  }

  div.mv_img img {
    width: 100%;
  }

  div.about_contents {
    margin: 60px 0px;
  }

}

@media screen and (max-width: 960px){
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }

  header {
    height: auto;
    background-color: transparent;
  }

  div.header {
    padding: 20px;
  }

  div.logo a img {
    width: 20%
  }
  /* メニュー-sp */
  nav {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2;
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: opacity 0s linear 0s, -webkit-transform 0s linear 0s ;
    transition: opacity 0s linear 0s,-webkit-transform 0s linear 0s;
    transition: opacity 0s linear 0s,transform 0s linear 0s;
    transition: opacity 0s linear 0s,transform 0s linear 0s,-webkit-transform 0s linear 0s;
    pointer-events: none;
  }

  nav.open {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
    -webkit-transition-delay: 0s,0s;
    pointer-events: visible;
  }

  div.nav-bg.open {
    -webkit-transform: none;
    transform: none;
  }

  div.nav-bg.open::before {
    -webkit-transform: none;
    transform: none;
  }

  div.nav-bg {
    background-color: transparent;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

  /* bgのsvg */
  div.nav-bg::before {
      content: url("../svg/bg2.svg");
    display: block;
    width: 100%;
    height: 100%;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: -webkit-transform .6s ease-in .1s;
    transition: -webkit-transform .6s ease-in .1s;
    transition: transform .6s ease-in .1s;
    transition: transform .6s ease-in .1s,-webkit-transform .6s ease-in .1s;
  }

  nav.g-navi.open ul {
    transition: all 3s 0s ease;
    -webkit-transition: all 2s .3s ease;
    opacity: 1;
  }

  nav ul {
    flex-direction: column;
    font-size: 36px;
    font-weight: 600;
    margin-top: 100px;
    opacity: 0;
  }

  nav ul li {
    display: block;
    padding: 32px 0;
    margin: auto;
    color: #ffffff;
    z-index: 4;
  }

  nav ul li.sns {
    font-size: 20px;
    font-weight: 400;
    padding: 24px 0 0 0;
  }

  .btn-gnavi {
    position: fixed;
    right: 20px;
    width: 30px;
    height: 15px;
    z-index: 3;
    box-sizing: border-box;
    -webkit-transition: all 400ms;
    transition: all 400ms;
  }

  .btn-gnavi.open span{
    background: #ffffff;
  }

  /* ハンバーガー */
  .btn-gnavi span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: #333333;
    -webkit-transition: all 400ms;
    transition: all 400ms;
  }

  .btn-gnavi span:nth-child(1) {
    top: 0;
  }

  .btn-gnavi span:nth-child(2) {
    top: 7px;
    width: 18px;
  }

  .btn-gnavi span:nth-child(3) {
    top: 14px;
  }

  .btn-gnavi.open span:nth-child(1) {
    top: 0;
    left: 20px;
    transform: translateY(6px) rotate(-135deg);
    width: 80%;
  }

  .btn-gnavi.open span:nth-child(2) {
    opacity: 0;
  }

  .btn-gnavi.open span:nth-child(3) {
    top: 12px;
    left: 20px;
    transform: rotateY('-6px') rotate(135deg);
    width: 80%;
  }

  /* メインビジュアル-sp */
  section.mv {
    flex-direction: column;
    align-items: flex-start;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
  }

  div.mv_title {
    position: absolute;
    top: 110px;
    left: 10px;
    margin: 0 20px;
  }

  div.mv_img{
    position: absolute;
    bottom: 20px;
    left: -120px;
    margin: 0;
  }

  div.mv_img img {
    width: 140%;
  }

  p.site_title {
    font-size: 36px;
    letter-spacing: 3px;
    line-height: 1.4em;
  }

  .typed_wrap p {
    margin-top: 5px;
  }

  div.scrolldown1 {
    left: 30px;
  }

  h1.left,
  h1.right {
    transform: scale(0.6);
  }

  h1.works::before {
    left: -30px;
  }


  /* アバウト */
  section.about {
    margin: 80px auto;
  }

  div.about_contents {
  width: 80%;
  margin: 100px auto;
  }

  div.about_lead {
    font-size: 42px;
    letter-spacing: 4px;
    line-height: 1.1em;
    margin-bottom: 24px;

  }

  div.about_lead::before {
    transform: scale(0.3);
    top: -550px;
    right: 80px;
  }

  div.about_more a::after {
    right: 36px;
    bottom: 0px;
    width: 80px;
  }

  /* リスト?? */
  div.list {
    justify-content: space-around;
  }

  div.list div.contents {
    margin: 20px 10px;
  }

  ul.tab {
    font-size: 12px;
    padding-top: 70px;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  li.tab_member {
    margin-left: 10px;
  }

  li.tab_member:not(:first-child) {
    padding-left: 10px ;
  }

  div.list div.contents {
    width: 280px;
  }

  /* footer */
  div.footer_contents {
    justify-content: center;
    padding: 30px 0 40px 0;
  }

  div.footer_nav {
    display: none;
  }

  div.footer_logo a {
    font-size: 14px;
    padding-left: 32px ;
  }

  div.footer_logo a::before {
    transform: scale(0.2);
    top: -65px;
    left: -32px;
  }

  /* コピーライト */
  p.copyright {
    font-size: 10px;
  }


  /* 下層は無視 1172 */

}


@media  screen and (max-width: 599px) {
  body {
    font-size: 14px;
  }

  section.about {
    margin: 0 auto 100px auto;
    height: 500px;
  }

  div.about_lead::before {
    right: -160px;
  }
/* bgのsvgはまだない */
  div.nav-bg::before {
    content: url("../svg/bg.svg");
  }

  div.pdf object{
    height: 220px;
  }

  div.col {
    margin: 50px 0 10px 0;
  }

  div.col a {
    margin-right: 5px;
    font-size:20px;
  }

  div.col a.mr-120 {
  margin-right: -35px;
  }

  div.col a::before {
    height: 500%;
    width: 600%;
    top: -52px;
    right: -54px;
  }

  .iframe-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
  }

  .iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  div.col a::before {
    content: '';
    background-image: url("../svg/record2.svg");
    position: absolute;
    display: inline-block;
    height: 600%;
    width: 500%;
    /* top: -80px; */
    top: -80px;
    right: -45px;
    animation: 15s linear infinite rotate_anime;
  }
}





