@charset "UTF-8";
/* CSS Document */
.body-inner {
  overflow-x: hidden;
}
body {
  font-family: serif;
}
#cursor{
  position: fixed;

  /*丸の大きさと色の指定*/
  background: #474E5B;
  border-radius:10px;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;/*真ん中にくるようにマイナスマージンで調整*/

  z-index: 2;/*一番手前に来るように*/
  pointer-events: none;/*クリックできなくなるのを防ぐため。noneで対応*/
  opacity: 0;
}

/*ちょっと遅れてついてくるストーカー要素*/
#stalker{
  position: fixed;

  /*丸の大きさと色の指定*/
  background: #dcdcdc;
  width: 60px;
  height: 60px;
  border-radius:30px;
  margin: -30px 0 0 -30px;/*真ん中にくるようにマイナスマージンで調整*/
  z-index: 1;/*カーソルの後ろに来るように*/
  pointer-events: none;/*クリックできなくなるのを防ぐため。noneで対応*/
  opacity: 0;
}

/*<js実装>h2タイトルフェードアップ*/
.scroll-up {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 1.5s;
}
.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
#page-top {
  /* opacity: 0;*/
  transition: all 0.3s;
  width: 60px;
  position: fixed;
  bottom: 5%;
  right: 1.5%;
  z-index: 1000;
}
/*<実装>ページトップ右から出現動き　*/
#page-top.RightMove {
  animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 1;
    transform: translateX(100px);
  }
}

/* ヘッダー -----------------------------------------------*/


/*<css実装>ハンバーガーメニュー*/
.drawer-menu__wrapper {
  display: none;
}
a {
  text-decoration: none;
  color: #fff;
}
ul {
  list-style: none;
}
.menu-checkbox {
  display: none;
}
.drawer-menu {
  position: fixed;
  display: flex;
  align-items: center;
  top: 0;
  right: 0;
  height: 100%;
  width: 30vw;
  transform: translateX(100%);
  transition: all 0.5s ease-in-out 0s;
  background-color: #fff;
  z-index: 1000;
  text-align: left;
  padding: 0 120px;
}

.drawer-menu-list {
  margin-top: 60px;
}
.drawer-menu-item {
  padding: 15px 0px;
  border-bottom: solid 1px #fff;
}
.menu-checkbox:checked ~ .drawer-menu {
  transform: translateX(0);
}
.drawer-icon {
  cursor: pointer;
  position: fixed;
  top: 50px;
  right: 60px;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  background-color: #fff;
}
.drawer-icon span, .drawer-icon span:before, .drawer-icon span:after {
  content: '';
  display: block;
  height: 1.5px;
  width: 40px;
  border-radius: 1.5px;
  background-color: #878787;
  position: absolute;
  transition: all 0.5s ease-in-out 0s;
}
.drawer-icon span::before {
  bottom: 12px;
}
.drawer-icon span::after {
  top: 12px;
}
.drawer-menu {
   background-color: #474E5B;
  opacity: 0.85;
}
.menu-checkbox:checked ~ .drawer-icon {
  background-color: #474E5B;
}
.menu-checkbox:checked ~ .drawer-icon span {
  background-color: rgba(255, 255, 255, 0);
}
.menu-checkbox:checked ~ .drawer-icon span::before {
  bottom: 0;
  transform: rotate(-45deg);
  background-color: #878787;
}
.menu-checkbox:checked ~ .drawer-icon span::after {
  top: 0;
  transform: rotate(45deg);
  background-color: #878787;
}
.menu-background {
  display: none;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: all 0.5s ease-in-out 0s;
}
.menu-checkbox:checked ~ .menu-background {
  display: block;
  opacity: 0.3;
}

.drawer-menu__wrapper {
  display: block;
}
.section-about__name {
  font-size: 16rem;
    font-family: "Shippori Mincho", serif;
}
.about__kind img {
  width: 130px;
  padding: 10px;
}
.about__kind {
  padding: 30px 20px 0px;
}
p.about__skills {
  font-size: 2.6rem;
  color: #fff;
  padding-bottom: 20px;
}
p.about__career {
  font-size: 2.6rem;
  color: #fff;
  padding-bottom: 20px;
}
p.about__loves {
  font-size: 2.6rem;
  color: #fff;
  padding-bottom: 20px;
}
li.drawer-menu-item {
  width: 80%;
}
li.drawer-menu-item:last-child {
  border-bottom: solid 1px #fff;
}



/*フェード切り替え*/
.container{
  position: relative;
  width: 85%;
  height: 100vh;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 auto;
}

.image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background-size: cover;
  background-position: center center;
  
  animation: image-switch-animation 25s infinite;
}

.src1 {
  background-image: url(../images/pc-mv-2.png);
}
.src2 {
  background-image: url(../images/mv-1-pc.png);
}
.src3 {
  background-image: url(../images/pc-mv-3.png);
}
.src4 {
  background-image: url(../images/mv-1-pc.png);
}
.src5 {
  background-image: url(../images/pc-mv-2.png);
}

.image:nth-of-type(1) {
  animation-delay: 0s;
}
.image:nth-of-type(2) {
  animation-delay: 5s;
}
.image:nth-of-type(3) {
  animation-delay: 10s;
}
.image:nth-of-type(4) {
  animation-delay: 15s;
}
.image:nth-of-type(5) {
  animation-delay: 20s;
}

@keyframes image-switch-animation {
  0%{ opacity: 0;}
  5%{ opacity: 1;}
  25%{ opacity: 1;}
  30%{ opacity: 0;}
  100%{ opacity: 0;}
}
@media(max-width:840px) {
  .container {
    max-width: 480px;
    height: 100vh;
    background-repeat: no-repeat;
    margin: 0 auto;
    background-position-x: center;
  }
.drawer-menu {
  width: 50%;
  }
img.top_name {
  width: 40vw;
}
  .container { 
    height: 80vh;
  }
.src1 {
  background-image: url(../images/mobile-mv-1.png);
}
.src2 {
  background-image: url(../images/mobile-mv-2.png);
}
.src3 {
  background-image: url(../images/mobile-mv-3.png);
}
.src4 {
  background-image: url(../images/mobile-mv-2.png);
}
.src5 {
  background-image: url(../images/mobile-mv-1.png);
}
}
@media(max-width:650px) {
  ul.header__global-menu {
    display: none;
}
}
@media(max-width:480px) {
img.skills__name {
width: 135px;
}
  img.top_name {
  width: 60vw;
}
}
/*section①about-----------------------------------------------------------------------------------------*/
.title-text {
  width: 200px;
}
#about {
  max-width: 1000px;
  margin: 0 auto;
  padding: 90px 10% 200px;
   position: relative;
}
.name {
  font-size: 1.3rem;
  letter-spacing: 0.3rem;
}
.section-abouto__view-more {
  transition-property: opacity;
  transition-duration: 0.5s;
}
 .section-abouto__view-more:hover {
  opacity: 0.3; 
} 
.section-about__wrapper {
  display: flex;
  justify-content: space-around;
  position: relative;
}
.section-about__container {
  display: flex;
  max-width: 1000px;
  justify-content: space-between;
}
.section-about__description {
  font-size: 1.6rem;
  font-family: "Noto Sans JP";
  text-align: left;
  width: 45%;
  position: relative;
  letter-spacing: 0.3rem;
  padding-left: 60px;
}
.section-about__description ul li {
  padding-bottom: 30px;
  list-style: none;
  line-height: 2;
  overflow: hidden;
}
.top_name {
  width: 25vw;
  display: block;
  position: absolute;
  left: 10%;
  top: 20%;
}
.section-abouto__view-more {
  width: 240px;
  padding-top: 55px;
}
/*<js実装>フェードアップ */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(0px);
  }
  to {
    opacity: 1;
    transform: translateY(100);
  }
}

.section-about__name {
  font-size: 2.4rem;
  padding: 35px 0 30px;
  letter-spacing: 0.5rem;
}
.section-about__name2 {
  font-size: 1.3rem;
  font-family: 'Lota', sans-serif;
  letter-spacing: 0.7rem;
}
/*.button {
    width: 155px;
    height: 50px;
    box-sizing: border-box;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.5);
    border-bottom: solid 1.2px #878787; 
    font-size: 1.8rem;
    /* padding: 10px 15px;
*/

@media(max-width:960px) {
  #about {
    padding: 140px 10% 160px;
  }
  #header nav ul {
    display: none;
  }
  .section-about__wrapper {
    display: block;
  }
  .section-about__description {
    width: 80%;
    padding-left: 0;
    margin: 0 auto;
  }
  .section-about__photo {
    margin: 0 auto;
  }
  .section-about__photo__box {
    width: 300px;
    margin-right: 45px;
  }
  .fadeRight {
    width: 70%;
  }
  .circle1 {
    bottom: 20%;
    right: 0%;
    width: 90vw;
  }
}
@media(max-width:750px) {
  .section-about__container {
    display: block;
  }
    .fadeRightTriger {
    margin-bottom: 40px;
}
}
@media(max-width: 480px) {

  #about {
    padding: 30px 7% 160px;
  }
  .section-about__description ul li {
    padding-bottom: 15px;
  }
  .section-about__description {
    width: 100%;
  }
  .top_inner__name {
    font-size: 2rem;
    text-align: left;
    line-height: 1.3;
    letter-spacing: 0.6rem;
    bottom: 82px;
  }
  p.top_inner__message {
    bottom: 48px;
    font-size: 1.3rem;
  }
  .button {
    margin: 0px auto 50px 0px;
    width: 180px;
    height: 45px;
  }
  .button a {
    font-size: 1.6rem;
  }
  .section-about__wrapper p {
    padding-bottom: 20px;
    line-height: 2;
  }
}
/*section②service---------------------------------------------------------------------*/
#service {
  background-image: url("../images/service_bg-min.jpg");
  width: 100vw;
  padding: 110px 0;
  margin: 0 auto;
  position: relative;
  z-index: -1000;
 
}
.section-service_plant {
  position: absolute;
  top: -25%;
  right: 0%;
  width: 55vw;
  z-index: -3;
  opacity: 0.35;
  mix-blend-mode: multiply;
}
#service p {
  color: #fff;
  text-align: left;
}
.service_icon {
  width: 85%;
  margin-bottom: 15px;
}

.section-service_wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  max-width: 900px;
  margin: 0 auto;
}

  .section-service_kind {
    width: 65%;
    margin-bottom: 15px;
  }
@media(min-width: 841px) {
  .service_icon {
  width: 300px;
  }
  .section_service_display, .section_service_graphic {
    width: 40%;
  }
}
@media(max-width: 840px) {
  #service {
    padding: 60px 0;
  }
  /* 840px以下に適用されるCSS（タブレット用） */
  .section-service_wrapper {
    justify-content: space-evenly;
  }
  .section_service_display {
    width: 35%;
  }
  .section_service_graphic {
    width: 35%;
  }
}
@media(max-width: 480px) {
  #service {
    padding: 45px 0;
  }
  .section-service_wrapper {
    display: grid;
    place-items: center;
    width: 80%;
  }
    .section_service_display, .section_service_graphic {
        width: 85%;
        margin-bottom: 60px;
    }
  .section-service_plant {
    width: 80vw;
    top: -10%;
}
}
/*section③works---------------------------------------------------------------------*/




/*Gsap記述*/
.scroll_wrap {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
}
.scroll_contents {
  display: flex;
}
.scroll_item {
  width: 50%;
  background: #fff;
  margin-right: 10%;
}




#works {
  max-width: 1000px;
  margin: 0 auto;
  padding: 150px 5% 30px;
}
#works img:hover {
   transform:scale(1.05);
  transition:0.8s all;
}
#works p {
  padding-bottom: 60px;
      text-align: center;
}
.works_contents {
  text-align: center;
}
.title-text {
  width: 200px;
  margin-bottom: 40px;
}
h4.scroll-up.works_subtitle.is-show {
    margin-top: -55px;
    text-align: center;
  margin-bottom: 60px;
}
.section-works__web-site p {
  padding-bottom: 60px;
  width: 145%;
}
.section-works__web-site {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  /*max-width: 1000px;*/
  text-align: center;
}
.section-works__banner {
    display: flex;
    justify-content: space-between;
    /* max-width: 1000px; */
    text-align: center;
  flex-wrap: wrap;
}
.section-works__kind {
    text-align: left;
}
.section-works__kind img {
  height: 40px;
  margin: 30px 0;
}
.section-works__item img {
  width: 360px;
}
.section-works__items ul img {
  width: 330px;
  position: relative;
}
.section-works__item p {
  padding-bottom: 60px;
}
p.section-works__kind {
  font-size: 26px;
  padding-bottom: 55px;
  padding-top: 40px;
  text-align: left;
  /*width: 100%;*/
}
.section-works__items ul {
  ist-style: none;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.section-works__webitem img {
  width: 130%;
  max-width: 1000px;
}
.box {
  width: 300px;
  heigh: 200px;
  background-color: #fff;
}
.section-works__items ul li p {
  margin-bottom: 65px;
  margin: 10px 0 150px 30px;
  font-weight: 500;
}
.section-works__mobile-wrapper {
  display: flex;
}
.section-works__mobile-item img {
    width: 95%;
}
/*<js実装>workサムネイルが順番に現れる------------------------*/

.item-demo {
  cursor: pointer;
}
.popup-demo {
  display: none;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}
.popup-content {
  padding: 2rem;
  width: 90vw;
  height: 80vh;
  overflow-y: auto;
  position: relative;
}
.content-demo {
  background: url("../images/card2.jpg") center / contain no-repeat;
}
.popup-show {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.fa-times-circle:before {
  content: "\f057";
}
i.close {
  font-size: 7rem;
  cursor: pointer;
  position: absolute;
  top: 10%;
  right: 15%;
  color: #fff;
}
@media(min-width: 1200px) {
  .section-works__items ul {
    justify-content: space-between;
  }
}
@media(max-width: 1200px) {
  .section-works__items ul img {
    width: 360px;
    height: auto;
    padding: 0;
  }
  .section-works__items ul {
    text-align: center;
    display: block;
    padding-bottom: 0;
  }
  li#section-works__card {
    padding-top: 0px;
  }
  iframe.youtube-cm {
    width: 360px;
    height: 200px;
  }
  .section-works__items ul li p {
    margin: 0;
  }
  .section-works__items ul {
    padding-bottom: 50px;
  }
  p#youtube-cm__title {
    margin: 0 0 0 30px;
  }
}

@media screen and (min-width: 769px) {
  .popup-content {
    width: 70vw;
    /*max-width:60rem;*/
    height: 100vh;
  }
}

@media(max-width: 960px) {
  #works {
    padding: 160px 10% 0px;
  }
  .section-works__items img {
    padding: 0;
    width: 100%;
  }
  .section-works__items ul li p {
    margin: 0 0 40px;
  }
  .section-works__items ul li:last-child {
    padding-top: 0;
  }
  .section-works__mobile-wrapper {
    flex-direction: column;
}
}
@media(max-width: 915px) {
  .section-works__web-site, .section-works__banner{
     justify-content: center;
}
  .white-box {
    display: none;
  }
  .section-works__web-site img{
    width: 145%;
  }
  }
@media(max-width: 840px) {
  #works {
    padding-top: 60px;
  }
}
  @media(max-width: 480px) {
    #works {
      padding: 60px 7%;
    }
    .section-works__items ul img {
      width: 100%;
      height: auto;
    }
  .section-works__banner {
    place-items: center;
    display: block;
    padding-bottom: 60px;
}
.section-works__mobile-wrapper {
    display: flex;
    flex-direction: column;
}
    .section-works__mobile-item img {
    width: 100%;
}
    .section-works__webitem img {
      width: 145%;
    }
}
  /*section③contact---------------------------------------------------------------------*/
  #contact {
    margin: 0 auto;
    padding: 0 0 200px;
    position: relative;
  }



.section-contact_plant {
 position: absolute;
    top: 0%;
    left: -15%;
    width: 55vw;
    z-index: 0;
    opacity: 0.35;
  /*mix-blend-mode: multiply;*/
}
  .section-contact__title {
    max-width: 1040px;
    margin: 0 auto;
    padding: 50px;
    margin-bottom: 90px;
  }
  .section-contact__gradation {
    width: 100%;
    background-size: cover;
    background-color: #f1f1f1;
    z-index: -1;
    padding-top: 90px;
    height: 300px;
  }
  .section-contact__innner {
    padding: 90px 0;
    max-width: 900px;
    background-color: #fff;
    margin: 0 auto;
    margin-top: -200px;
  }

  #contact p {
    padding: 0 60px 40px;
    text-align: left;
  }
  .lead-form {
    text-align: center;
    font-size: 20px;
  }
  form {
    margin: 0 auto;
    padding: 0 60px;
  }
  .form-item {
    margin-bottom: 25px;
    text-align: left;
  }
  .inputs {
    width: 100%;
    max-width: 1040px;
  }
  input[type="text"], input[type="email"] {
   border: none;
    font-size: 1.8rem;
    height: 50px;
    box-sizing: border-box;
    background-color: #f1f1f1;
}
  textarea {
    border: none;
    height: 160px;
    font-size: 1.8rem;
    box-sizing: border-box;
    background-color: #f1f1f1;
  }
  input[type="submit"] {
    width: 220px;
    height: 50px;
    box-sizing: border-box;
    text-align: center;
    background-color: #fff;
    border: none;
    font-size: 1.8rem;
    padding: 10px;
    letter-spacing: 0.2rem;
    margin-top: 55px;
    color: #fff;
    font-family: serif;
    background-color: #474E5B;
  }
  .form-label {
    display: block;
    text-align: left;
    margin-top: 50px;
  }
  #formWrap {
    width: 700px;
    margin: 0 auto;
    color: #555;
    line-height: 120%;
    font-size: 90%;
  }
  table.formTable {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
  }
  table.formTable td, table.formTable th {
    border: 1px solid #ccc;
    padding: 10px;
  }
  table.formTable th {
    width: 30%;
    font-weight: normal;
    background: #efefef;
    text-align: left;
  }
  input[type="submit"] {
    -webkit-appearance: none;
    border-radius: 0;
  }
@media(max-width:840px) {
  #contact {
    padding: 0;
  }
}
@media(max-width:480px) {
  form {
    padding: 0px 7% ;
  }
  #contact p {
    padding: 0 7% 40px;
  }
  .section-contact_plant {
    top: -10%;
  }
}


















  /*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*