* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

/* ローディングアニメーション */

#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #1b1b1b;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.spinner {
  width: 100px;
  height: 100px;
  margin: 200px auto;
  background-color: #fff;
  border-radius: 100%;
  animation: sk-scaleout 1.0s infinite ease-in-out;
}

@keyframes sk-scaleout {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1.0);
    opacity: 0;
  }
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

/*地の色　黒*/

#wrap {
  background-color: #000;
  z-index: -10;
  position: relative;
}


/*パララックス*/

.bg_scroll {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 0;
  width: 100%;
  height: 100vh;
  background-image: url(img/bg2.jpg);
  background-position: center;
  background-size: cover;
  opacity: 1;
}

.wrapper {
  width: 80%;
  max-width: 1450px;
  height: 100vh;
  margin: 0 auto;
  position: relative;
}


/*メニューバー*/

header {
  margin-top: 70px;
  margin-left: 50px;
  float: left;
  position: absolute;
}

header a img {
  width: 200px;
  margin: 0;
  padding: 0;
}

.topmenu {
  width: 100%;
  height: 70px;
  margin-bottom: 30px;
  display: table-cell;
  vertical-align: middle;
}

.topmenu a img {
  width: 200px;
  margin-left: 50px;
  padding: 0;
  vertical-align: middle;
}
  
@media screen and (max-width:639px) {
  /*スマホ用のcssを記述*/
  header {
    margin-top: 50px;
    margin-left: 0;
    clear: both;
    position: relative;
    text-align: center;

  }


  header a img {
    width: 50%;
   
  }
  }

  @media screen and (max-width:639px) {
    /*スマホ用のcssを記述*/
    .topmenu {
      margin-top: 50px;
      margin-left: 0;
      text-align: center;
  
    }
  
  
    .topmenu a img {
      width: 50%;
     
    }
    }

.menubar {
  width: 100px;
  margin-top: 70px;
  margin-right: 100px;
  float: right;
}

@media screen and (max-width:639px) {
  /*スマホ用のcssを記述*/
  .menubar {
    display: none;
  }
  }


.menubar a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
}

.clearfix {
  clear: both;
}

/*メイン*/

h1 {
  font-family: 'Archivo Black', sans-serif;
  color: #fff;
  font-size: 10vw;
  font-weight: bold;
  text-align: center;
  margin-top: 100px;
  position: relative;
}

.seotext_01 {
  background:linear-gradient(transparent 70%, rgb(255, 255, 0) 0%);
  }

.container {
  padding-top: 50px;
  padding-bottom: 50px;
  margin: 0 auto;
  width: 100vw;
  background-color: #fff;
  z-index: 10;
  position: relative;
}

.container .copy {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 30px;
  color: #181818;
  text-align: center;
}

.container .copy h2 {
  font-weight: bold;
  font-size: 24px;
}

@media only screen and (min-width:640px) and (max-width:1023px) {
  /*tablet用のcssを記述*/
  .container {
    width: 90%;
    height: 100%;

  }
}

@media screen and (max-width:639px) {
  /*スマホ用のcssを記述*/
  .container {
    width: 95%;
    height: 100%;

  }
  }


/*スクロールアニメ*/

.copy {
  text-align: center;
  font-family: 'M PLUS 1p', sans-serif;
  height: auto;
}

.copy p {
  width: 70%;
  line-height: 35px;
  margin: 50px auto 0 auto;
}

@media only screen and (min-width:640px) and (max-width:1023px) {
  /*tablet用のcssを記述*/
  .copy p {
    width: 90%;
    margin: 50px auto 0 auto;
  }
}

@media screen and (max-width:639px) {
  /*スマホ用のcssを記述*/
  .copy p {
    width: 95%;
    margin: 30px auto 0 auto;
  }
}

.copy a {
  margin-top: 100px;
  padding-top: 70px;
  bottom: 20px;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  text-decoration: none;
  color: #fff;
  letter-spacing: 0.35em;
}

.copy a span {
  position: absolute;
  font-size: 20px;
  font-family: 'M PLUS 1p', sans-serif;
  letter-spacing: 0.35em;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid rgb(255, 255, 0);
  border-bottom: 1px solid rgb(255, 255, 0);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb 1.5s infinite;
  animation: sdb 1.5s infinite;
  box-sizing: border-box;
}

@-webkit-keyframes sdb {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}

@keyframes sdb {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}

.container p {
  font-family: 'M PLUS 1p', sans-serif;
}

/*サービス*/

.service_wraper {
  width: 80%;
  max-width: 1450px;
  height: 100%;
  margin: 0 auto;
  position: relative;
}


#service {
  font-family: 'Archivo Black', sans-serif;
  color: #fff;
  font-size: 80px;
  font-weight: bold;
  text-align: left;
  margin: 0;
}



.yellow {
  color: rgb(255, 255, 0);
}

#works {
  font-family: 'Archivo Black', sans-serif;
  color: #fff;
  font-size: 80px;
  font-weight: bold;
  text-align: left;
  margin: 80px 0 30px;
}

@media only screen and (min-width:640px) and (max-width:1023px) {
  /*tablet用のcssを記述*/
  #service {
  font-size: 60px;
  }

  #works {
    font-size: 60px;
    }
  }
  
  @media screen and (max-width:639px) {
  /*スマホ用のcssを記述*/
  #service{
    font-size: 40px;
    }

    #works {
      font-size: 40px;
      }
  }

  .inbox {
    max-width: 500px;
    min-width: 50%;
    height: auto;
    margin-top: 0;
    margin-bottom: 0;
    float: left;
  }
  
  @media only screen and (min-width:640px) and (max-width:1023px) {
    /*tablet用のcssを記述*/
    .inbox {
      min-width: 100%;
      margin: 0 auto;
    }
    }
    
    @media screen and (max-width:639px) {
    /*スマホ用のcssを記述*/
    .inbox {
      width: 100%;
      margin: 0 auto;
    }
    }
  
  
  .inner {
    margin: 10%;
  }
  
  @media screen and (max-width:639px) {
    /*スマホ用のcssを記述*/
  .inner {
    width: 100%;
    margin: 0;
  }
    }
  
  @media only screen and (min-width:640px) and (max-width:1023px) {
      /*tablet用のcssを記述*/
      .inner {
        width: 100%;
        margin: 0;
      }
      }
  
  
  .inbox_r {
    width: 50%;
    height: auto;
    margin-top: 0;
    margin-bottom: 0;
    float: left;
  }
  
  @media only screen and (min-width:640px) and (max-width:1023px) {
    /*tablet用のcssを記述*/
    .inbox_r {
      width: 100%;
      margin: 0;
    }
    }
    
    @media screen and (max-width:639px) {
    /*スマホ用のcssを記述*/
    .inbox_r {
      width: 100%;
      margin: 0;
    }
    }
  
  
  h3 {
    font-family: 'Archivo Black', 'M PLUS 1p', sans-serif;
    color: #fff;
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    margin: 30px 0;
  }
  
  .inbox p {
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 30px;
    color: #fff;
  }
  
  .inbox_r p {
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 18px;
    line-height: 30px;
    color: #fff;
  }
  
  a {
    position: relative;
  }


/*worksのスライド*/

.main-content {
  width: 80%;
  max-width: 1450px;
  height: auto;
  margin: 0 auto;
}

.sub-content {
width: 95%;
margin: 0 auto 100px; 
  
}

.btn {
  display: inline-block;
  padding: 13px 20px;
  color: #fff;
  text-decoration: none;
  position: relative;
  background: transparent;
  border: 1px solid #e1e1e1;
  font: 12px/1.2 "Oswald", sans-serif;
  letter-spacing: 0.4em;
  text-align: center;
  text-indent: 2px;
  text-transform: uppercase;
  transition: color 0.1s linear 0.05s;
}

.btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e1e1e1;
  z-index: 10;
  opacity: 0;
  transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0.2s;
}

.btn::after {
  transition: border 0.1s linear 0.05s;
}

.btn .btn-inner {
  position: relative;
  z-index: 20;
}

.btn:hover {
  color: #373737;
  transition: color 0.1s linear 0s;
}

.btn:hover::before {
  top: 0;
  height: 100%;
  opacity: 1;
  transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0s;
}

.btn:hover::after {
  border-color: #373737;
  transition: border 0.1s linear 0s;
}

.slideshow {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 95vh;
  z-index: 10;
}

@media only screen and (min-width:640px) and (max-width:1023px) {
  /*tablet用のcssを記述*/
  .slideshow {
    height: 80vh;
  }
  }
  
  @media screen and (max-width:639px) {
  /*スマホ用のcssを記述*/
  .slideshow {
    height: 50vh;
  }
  }

.slideshow .slideshow-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slideshow .slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.slideshow .slide {
  display: none;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slideshow .slide.is-active {
  display: block;
}

.slideshow .slide.is-loaded {
  opacity: 1;
}

.slideshow .slide .caption {
  padding: 0 100px;
}

.slideshow .slide .image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  z-index: 10;
  background-size: cover;
  image-rendering: optimizeQuality;
}

.slideshow .slide .image-container::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.slideshow .slide .image {
  width: 100%;
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.slideshow .slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slideshow .slide .title {
  margin: 0 auto 15px;
  max-width: 1000px;
  font: 300 50px/1.2 "Oswald", sans-serif;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

@media only screen and (min-width:640px) and (max-width:1023px) {
  /*tablet用のcssを記述*/
  .slideshow .slide .title {
  font: 300 40px/1.2 "Oswald", sans-serif;
}
  }
  
  @media screen and (max-width:639px) {
  /*スマホ用のcssを記述*/
  .slideshow .slide .title {
    font: 300 18px/1.2 "Oswald", sans-serif;
  }
  }



.slideshow .slide .text {
  margin: 0 auto;
  max-width: 1000px;
  font-size: 18px;
  line-height: 1.4;
}

@media screen and (max-width:639px) {
  /*スマホ用のcssを記述*/
  .slideshow .slide .text {
    font-size: 17px;
  }
  }


.slideshow .slide .btn {
  margin: 15px 0 0;
  border-color: #fff;
}

.slideshow .slide .btn::before {
  background: #fff;
}

.slideshow .pagination {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translate(-50%);
  -webkit- transform: translateX(-50%);
  height: 12px;
  cursor: default;
  z-index: 20;
  text-align: center;
}

.slideshow .pagination .item {
  display: inline-block;
  padding: 15px 5px;
  position: relative;
  width: 46px;
  height: 32px;
  cursor: pointer;
  text-indent: -999em;
  z-index: 10;
}

.slideshow .pagination .item+.page {
  margin-left: -2px;
}

.slideshow .pagination .item::before {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  left: 5px;
  width: 36px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.2s ease;
}

.slideshow .pagination .item::after {
  width: 0;
  background: #fff;
  z-index: 20;
  transition: width 0.2s ease;
}

.slideshow .pagination .item:hover::before, .slideshow .pagination .item.is-active::before {
  background-color: #fff;
}

.slideshow .arrows .arrow {
  margin: -33px 0 0;
  padding: 20px;
  position: absolute;
  top: 50%;
  cursor: pointer;
  z-index: 30;
}

.slideshow .arrows .prev {
  left: 30px;
}

.slideshow .arrows .prev:hover .svg {
  left: -10px;
}

.slideshow .arrows .next {
  right: 30px;
}

.slideshow .arrows .next:hover .svg {
  left: 10px;
}

.slideshow .arrows .svg {
  position: relative;
  left: 0;
  width: 14px;
  height: 26px;
  fill: #fff;
  transition: left 0.2s ease;
}

/*works本文*/



/*プロフィール*/

.profile-content {
  width: 80%;
  max-width: 1450px;
  height: auto; 
  margin: 0 auto;
}

.profile_text {
  margin: 0 auto;
}

/*.profile-content .profile .profile_innner img {
  width: 500px;
  height: 500px;
  object-fit: cover;
  border-radius: 50%;
  object-position: -130px 0px;
  margin: 50px;
  float: left;
}*/

@media only screen and (min-width:640px) and (max-width:1023px) {
  /*tablet用のcssを記述*/
  .profile-content .profile .profile_innner img {
clear: left;  }
  }
  
  @media screen and (max-width:639px) {
  /*スマホ用のcssを記述*/

  .profile-content .profile .profile_innner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
    clear: both;  
    margin: 0 0 30px 0;
    object-position: 0px 0px;
  }
  }


.profile_innner {
  vertical-align: top; 
  
  margin: 0 auto;
  
}

ul li {
  list-style: none;
  letter-spacing: 0.1em;
  color: #fff;
  font-size: 18px;
  font-family: 'Archivo Black', 'M PLUS 1p', sans-serif;
  margin-bottom: 10px;
  line-height: 1.7em;
}

/* CTA */
.button007 a {
  background: #eee;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 30px auto 0;
  max-width: 240px;
  padding: 10px 25px;
  color: #000000;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}
.button007 a:before {
  content: '';
  position: absolute;
  top: calc(50% - 2px);
  right: -1em;
  transform: translateY(calc(-50% - 2px)) rotate(30deg);
  width: 12px;
  height: 2px;
  background-color: rgb(255, 255, 0);
  transition: 0.3s;
}
.button007 a:after {
  content: '';
  position: absolute;
  top: 50%;
  right: -1em;
  transform: translateY(-50%);
  width: 40px;
  height: 2px;
  background-color: rgb(255, 255, 0);
  transition: 0.3s;
}
.button007 a:hover:before, .button007 a:hover:after {
  right: -0.5em;
}
.button007 a:hover {
  background: #edf6ff;
  color: #000000;
}

/*フッター*/

.footer {
  margin-top: 5px;
  padding-top: 6em;
  padding-bottom: 3em;
  background-color: #000;
  line-height: 1.1;
  color: #fff;
  text-align: center;
}



.footer_innner {
  width: 80%;
  max-width: 1450px;
  margin: 0 auto;
  text-align: center;

}

.footer_innner a img {
  width: 180px;

}

.saigo a {
  margin-top: 130px;
  padding-top: 70px;
  bottom: 20px;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  text-decoration: none;
  color: #fff;
  letter-spacing: 0.35em;
}

.saigo a span {
  position: absolute;
  font-size: 20px;
  font-family: 'M PLUS 1p', sans-serif;
  letter-spacing: 0.35em;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid rgb(255, 255, 0);
  border-bottom: 1px solid rgb(255, 255, 0);
  -webkit-transform: rotate(45deg);
  transform: rotate(135deg);
  -webkit-animation: aaa 1.5s infinite;
  animation: aaa 1.5s infinite;
  box-sizing: border-box;
}

@-webkit-keyframes aaa {
  0% {
    -webkit-transform: rotate(135deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(135deg) translate(20px, 20px);
    opacity: 0;
  }
}

@keyframes aaa {
  0% {
    transform: rotate(135deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(135deg) translate(-20px, 20px);
    opacity: 0;
  }
}

.footer .sns img {

  margin: 10px;
    
  }