@charset "UTF-8";

/* 全体 */
.wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

body {
  background: linear-gradient(#E8EFEA 0%,
      #e8eced 30%,
      #e8eeeb 50%,
      #eeede8 65%,
      #EEEBE8 80%,
      #e3dfdb 90%,
      #E3DFDB 100%);

  /* background-color: #E8EFEA 100%; */
  /* background-color: #ffebcd; */
  /* animation: bgchange 20s ease infinite; */
  font-family: Yu Gothic, YuGothic, ヒラギノ角ゴ ProN, Hiragino Kaku Gothic ProN, メイリオ, Meiryo, sans-serif;
  ;
}


/* @keyframes bgchange {
  0% {
    background: #e8eeeb
  }

  30% {
    background: #e8eced
  }

  55% {
    background: #eeede8
  }

  80% {
    background: #ede8ed
  }

  100% {
    background: #e3dfdb
  }
} */


/*横スクロールなし */
html,
header {
  overflow-x: hidden;
}

/* 常にリンク色同じにしたい */
a,
a:link {
  color: #000000;
  text-decoration: none;
}

/* 訪れた後 */
a:visited {
  color: #000000;
}


li {
  list-style-position: inside;
}


/* タイトル見出し 共通部分*/
h1 {
  letter-spacing: 5px;
}



/*========= btn ===============*/
.openbtn {
  /* color: #3a2b1e; */
  position: absolute;
  z-index: 9999;
  /*ボタンを最前面に*/
  top: 2%;
  right: 6%;
  cursor: pointer;
  width: 80px;
  height: 80px;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #ffffff;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}



/*========= ナビゲーションのためのCSS ===============*/

#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: absolute;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 50%;
  height: 95vh;
  /*ナビの高さ*/
  border-radius: 50%;
  /*角丸*/
  /* background: #9999ff; */
  background: #a3b7cc;
  /*動き*/
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
}


/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
}

/*リストのレイアウト設定*/

#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav li a {
  color: #ffffff;
  font-size: 1.3em;
  text-decoration: none;
  padding: 14px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}




/* main visial area */

.main-visual-area {
  width: 100%;
  position: relative;
}

.circle-area {
  width: 100%;
  position: relative;
  display: flex;
}

.main-visual-circle-position {
  width: 200px;
  height: 200px;
  position: absolute;
  top: 0%;
  right: 2%;
}

/*==================================================
animation circle
===================================*/
.circle {
  width: 100%;
  height: 100%;
  animation: circle-anime 30s linear infinite;
}

@keyframes circle-anime {

  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(-360deg);
  }

}

.main-visual-circle-child {
  width: 100%;
  height: 100%;
  border-radius: 30% 70% 60% 40% / 30% 40% 60% 70%;
  animation: circle-child_anime 8s linear infinite;
  background-color: #a3b7cc;
}

@keyframes circle-child-anime {

  0% {
    border-radius: 30% 70% 60% 40% / 30% 40% 60% 70%;
  }

  25% {
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
  }

  50% {
    border-radius: 70% 30% 30% 70% / 50% 70% 30% 50%;
  }

  75% {
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
  }

  100% {
    border-radius: 30% 70% 60% 40% / 30% 40% 60% 70%;
  }

}


.main-visual-title {
  width: 20%;
  height: 40%;
  text-align: left;
  writing-mode: vertical-rl;
  font-size: 2.3em;
  font-weight: bold;
  line-height: 1em;
  position: absolute;
  top: 58%;
  left: -1%;
  color: #011733;
}


/* video */
video {
  width: 600px;
  max-width: 100%;
  height: auto;
  /* video 枠線消す iOS */
  filter: drop-shadow(0px 0px #000);
  margin: 0 auto;
}




/* concept */
.about-content {
  width: 100%;
  margin: 100px 0px;
}

.about-area {
  width: 100%;
  position: relative;
}


.about-circle-position {
  width: 350px;
  height: 350px;
  position: absolute;
  top: -20%;
  right: 8%;
}

/* circle は共通 */

.about-circle-child {
  width: 100%;
  height: 100%;
  border-radius: 40% 70% 60% 40% / 30% 40% 60% 70%;
  animation: circle-child_anime 5s linear infinite;
  background-color: #ffffff;
}

.about-title-1 {
  writing-mode: vertical-rl;
  font-size: 2.2em;
  font-weight: bold;
  position: absolute;
  top: -14%;
  right: 18%;
}


.about-content img {
  margin: 0% 0% 0% 28%;
  display: block;
}

.about-circle-position-2 {
  width: 600px;
  height: 600px;
  position: absolute;
  top: 57%;
  left: 4%;
}

/* circle は共通 */

.about-circle-child-2 {
  width: 100%;
  height: 100%;
  border-radius: 80% 70% 60% 90% / 80% 60% 80% 70%;
  animation: circle-child_anime 8s linear infinite;
  background-color: #fdfdfd;
}

.about-title-2 {
  font-size: 1em;
  line-height: 1.9em;
  font-weight: bold;
  padding: 10px auto;
  position: absolute;
  top: 80%;
  left: 10%;
}




/* web-design */
.web-design-title-area {
  width: 100%;
  margin: 20% auto 3% auto;
}

.web-design-title {
  text-align: center;
  font-size: 40px;
}

/* web-design */
/* slide */
.web-design-container {
  margin: 30px auto 0;
  max-width: 1000px;
  width: 300%;
}

/* web-design */
/* 中央以外のスライド */
.slick-img img {
  height: auto;
  opacity: .3;
  transform: scale(.8);
  transition: opacity .5s, transform .5s;
  width: 100%;
}

/* web-design */
/* 中央のスライド */
.slider .slick-center img {
  opacity: 1;
  transform: scale(1);
}




/* graphic */
#graphic {
  width: 100%;
  margin: 0 auto;
}

.graphic-circle-position {
  width: 330px;
  height: 330px;
  position: absolute;
  top: 1%;
  left: 7%;
}

/* circle は共通 */

.graphic-circle-child {
  width: 100%;
  height: 100%;
  border-radius: 30% 70% 60% 40% / 30% 40% 60% 70%;
  animation: circle-child_anime 8s linear infinite;
  background-color: #fdfdfd;
}

.graphic-title {
  font-size: 2.5em;
  writing-mode: vertical-rl;
  text-align: center;
  position: absolute;
  top: 4%;
  left: 17%;
}

.graphic-item-1 {
  position: relative;
  top: 10%;
  left: 110%;
}

.graphic-item-2 {
  position: relative;
  top: -12%;
  left: 195%;
}

.graphic-item-3 {
  position: relative;
  top: -28%;
  left: 120%;
}




/* notes */
#notes {
  width: 100%;
  margin: 0 auto;
}

.notes-circle-position {
  width: 250px;
  height: 250px;
  position: relative;
  top: -130%;
  left: 45%;
}

/* circle は共通 */

.notes-circle-child {
  width: 100%;
  height: 100%;
  border-radius: 30% 70% 60% 40% / 30% 40% 60% 70%;
  animation: circle-child_anime 8s linear infinite;
  background-color: #fdfdfd;
}

.notes-title {
  font-size: 2.5em;
  text-align: center;
  position: absolute;
  top: -90%;
  left: 15%;
}

.notes-content {
  width: 50%;
  margin: -30% auto 0% auto;
}

.notes-content ul {
  list-style: none;
}

.notes-content li {
  display: flex;
  margin: 5% auto;
}

.notes-text-box {
  display: flex;
  flex-direction: column;
  padding: 0% 5%;
}

.notes-ttl {
  font-weight: bold;
  font-size: 1.1em;
}

.notes-date {
  padding: 2% 0%;
}

.notes-txt {
  font-size: 1em;
}






/* header */
header {
  width: 850px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px auto;
  position: relative;
}

.logo {
  font-size: 1.8em;
  letter-spacing: 4px;
  padding: 0px 0px 0px 80px;
}

/*close btn*/
header img {
  position: relative;
  top: 10px;
  right: -50px;
}


/* works page */
/* ふわっ その場で */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}



.works_container {
  width: 60%;
  margin: 0 auto;
  /* border: 1px solid #290ea0 */
}

/*accordion*/
.accordion {
  width: 90%;
  margin: 0 auto;
  /* border: 1px solid #a00e4b */
}

/*check box なし*/
.toggle {
  display: none;
}

.Label {
  /*タイトル*/
  padding: 1em;
  display: block;
  color: #030303;
}

.border {
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  padding: 10px;
}

.Label::before {
  /*タイトル横の矢印*/
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 3px);
  right: 20px;
  transform: rotate(135deg);
}

.Label,
.content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

.content {
  /*本文*/
  color: #585858;
  width: 80%;
  margin: 0 auto;
  height: 0;
  margin-bottom: 10px;
  overflow: hidden;
}

.toggle:checked+.Label+.content {
  /*開閉時*/
  height: auto;
  padding: 20px;
  transition: all .3s;
}

.toggle:checked+.Label::before {
  transform: rotate(-45deg) !important;
}

/* works page title*/
h3 {
  font-size: 1.6em;
  letter-spacing: 5px;
  text-align: center;
}

/* works page skill*/
h4 {
  width: 100%;
  font-size: 1.2em;
  letter-spacing: 2px;
  margin: -10px 0px 10px 0px;
}

/* works page consept*/
h5{
  font-size: 1.2em;
}

.content p{
  font-size: 0.9em;
}

.works_imagebox {
  width: 60%;
  margin: 0 auto;
}

.works_imagebox img {
  margin: 0 auto;
  display: block;
}

/* works page slide は slide-style.css*/




/* footer */
footer {
  width: 58%;
  margin: 7% auto;
  font-size: 0.9em;
}

/*  display: flex は親要素に入れる*/
footer ul {
  display: flex;
}

footer li {
  /*  li 要素の黒ポチ無くす*/
  list-style-type: none;
  padding: 0px 20px;
}

footer li:last-child {
  margin-left: auto;
}






/* about-the-images*/
#rules {
  color: #585858;
  margin: 1% auto;
  position: relative;
  z-index: 20;
}

.About-the-images {
  color: #585858;
  margin: 20px 0px 20px 0px;
}

#container-about {
  width: 55%;
  margin: 0 auto;
  position: relative;
  z-index: 20;
}


.About-the-images-circle-position {
  width: 150px;
  height: 150px;
  position: absolute;
  top: -50%;
  left: 44%;
}

/* circle は共通 */


.About-the-images-circle-child {
  width: 100%;
  height: 100%;
  border-radius: 80% 70% 60% 90% / 80% 60% 80% 70%;
  animation: circle-child_anime 8s linear infinite;
  background-color: #fdfdfd;
}




/* contact */
.contact-circle-position {
  width: 600px;
  height: 600px;
  position: absolute;
  top: -5%;
  left: 25%;
}

/* circle は共通 */


.contact-circle-child {
  width: 100%;
  height: 100%;
  border-radius: 80% 70% 60% 90% / 80% 60% 80% 70%;
  animation: circle-child_anime 8s linear infinite;
  background-color: #fdfdfd;
}


#information {
  color: #585858;
  text-align: center;
  margin: 15px;
  position: relative;
  z-index: 10;
}

#container_information {
  width: 500px;
  text-align: left;
  margin: 0 auto;
  padding: 50px;
  position: relative;
  z-index: 10;
}

#submit {
  width: 100px;
  margin: 20px auto;
  padding: 10px;
  text-align: center;
  border: 1px solid #aaa;
  border-radius: 15px;
}

dd {
  margin: 0% auto 2% auto;
  border: 1px solid #aaa;
  border-radius: 15px;
}




/* privacy-policy */
.privacy-policy {
  margin: 3% auto 3% auto;
}





/*========= * fade in css *===============*/
.scroll-space {
  overflow: hidden;
}

.fadein {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1.5s;

  &.fadein-left {
    transform: translate(-30px, 0);
  }

  &.fadein-right {
    transform: translate(30px, 0);
  }

  /* &.fadein-up{
      transform: translate(0,-30px);
  } */
  &.fadein-bottom {
    transform: translate(0, 30px);
  }

  &.scrollin {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }
}








/* sp responsive */
@media screen and (max-width: 1024px) {

  html,
  body {
    overflow-x: hidden;
  }


  img {
    /* SPの長押し禁止 */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-touch-callout: none;
    -moz-user-select: none;
    user-select: none;
  }


  /*btn*/
  .openbtn {
    top: 1%;
  }

  #g-nav {
    /* right: -120%; */
    width: 85%;
    /*ナビの高さ*/
    height: 60vh;
  }

  #g-nav li a {
    font-size: 1em;
    padding: 5%;
  }



  /* main visial area */
  .main-visual-circle-position {
    width: 150px;
    height: 150px;
    position: absolute;
    top: 0%;
    right: 0%;
    z-index: 10;
  }

  .main-visual-title {
    font-size: 28px;
    letter-spacing: 0.2em;
    position: absolute;
    top: 70%;
    left: 2%;
    z-index: 20;
    color: #011733;
  }


  /* video */
  video {
    margin: 30% 0% 30% 2%;
    position: relative;
  }


  /* about */
  .about-circle-position {
    width: 250px;
    height: 250px;
    position: absolute;
    top: -31%;
    right: -20%;
  }

  .about-title-1 {
    font-size: 1.7em;
    position: absolute;
    letter-spacing: 0.1em;
    top: -25%;
    right: 10%;
  }

  .about-circle-position-2 {
    width: 370px;
    height: 370px;
    position: absolute;
    top: 70%;
    left: -15%;
  }

  .about-title-2 {
    width: 50%;
    font-size: 0.8em;
    position: absolute;
    top: 78%;
    left: 8%;
  }

  /* 画像真ん中*/
  .about-content img {
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }






  /* web-design */
  .web-design-title-area {
    margin: 80% auto 7% auto;
  }

  .web-design-title {
    font-size: 30px;
  }

  /* web-design */
  /* slide */
  .web-design-container {
    width: 75%;
    margin: 0 auto;
  }

  /* web-design */
  /* 中央以外のスライド */
  .slick-img img {
    height: auto;
    opacity: .3;
    transform: scale(.8);
    transition: opacity .5s, transform .5s;
    width: 100%;
  }

  /* web-design */
  /* 中央のスライド */
  .slider .slick-center img {
    opacity: 1;
    transform: scale(1);
  }




  /* graphic */
  .graphic-circle-position {
    width: 250px;
    height: 250px;
    position: absolute;
    top: 8%;
    left: -5%;
  }

  .graphic-title {
    font-size: 1.8em;
    position: absolute;
    top: 10%;
    left: 17%;
  }

  .graphic-content {
    margin: 35% auto 0% auto;
  }

  .graphic-content img {
    width: 85%;
    margin: 0% auto 0% 7%;
  }

  .graphic-item-1 {
    position: relative;
    top: 15%;
    left: 0%;
  }
  
  .graphic-item-2 {
    position: relative;
    top: 15%;
    left: 0%;
  }
  
  .graphic-item-3 {
    position: relative;
    top: 15%;
    left: 0%;
  }

  

  /* notes */
  .notes-circle-position {
    width: 200px;
    height: 200px;
    position: relative;
    top: 90%;
    left: 3%;
  }

  .notes-title {
    font-size: 1.7em;
    position: absolute;
    top: 130%;
    left: 15%;
  }

  .notes-content {
    width: 70%;
    margin: -20% auto 0% auto;
  }

  .notes-content ul{
    margin: 110% auto 0% auto;
  }

  .notes-content li {
    display: flex;
    flex-direction: column;
  }
  
  .notes-txt {
    font-size: 1em;
  }

  


  /* footer */
  footer {
    width: 80%;
    margin: 15% auto 10% auto;
  }

  .index-footer {
    width: 70%;
    margin: 50% auto 10% auto;
  }

  footer li {
    font-size: 0.7em;
    white-space: nowrap;
    justify-content: space-between
  }

  footer li:last-child {
    margin-left: auto;
  }


 

  /* about the images */
  #container-about {
    width: 75%;
  }

  .About-the-images-circle-position {
    width: 150px;
    height: 150px;
    position: absolute;
    top: -45%;
    left: 35%;
  }

  #rules {
    margin: -5% auto 2% auto;
  }

  #container-about li {
    font-size: 0.9em;
    margin: 2% auto;
  }






  /* contact */
  #information {
    margin: -2% auto 5% auto;
  }

  .contact-circle-position {
    width: 400px;
    height: 400px;
    position: absolute;
    top: 0%;
    left: 1%;
  }

  #container_information {
    width: 80%;
    padding: 0%;
  }


  dt {
    width: 80%;
    margin: 0 auto;
  }

  dd {
    width: 80%;
    margin: 0% auto 2% auto;
  }

  #container_information p {
    width: 35%;
  }

  .sendbtn {
    color: #000000;
  }



  .privacy-policy {
    font-size: 0.9em;
  }








  /* header */
  header {
    width: 100%;
    height: 100px;
  }

  .logo {
    width: 90%;
    padding: 10px 0px 0px 35px;
    font-size: 19px;
    letter-spacing: 5px;
    text-align: center;
  }

  /*close btn*/
  header img {
    position: relative;
    top: 10px;
    left: -25px;
  }

 /* works page */
  /* ふわっ その場で */
  .fadeIn {
    animation-name: fadeInAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    opacity: 0;
  }

  @keyframes fadeInAnime {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }


/* works page */
  .works_container {
    width: 100%;
    margin: 0 auto;
  }

  /*accordion*/
  .accordion {
    width: 100%;
    margin: 0 auto;
    /* border: 1px solid #a00e4b */
  }

  /*check box なし*/
  .toggle {
    display: none;
  }

  .Label {
    /*タイトル*/
    padding: 1em;
    display: block;
    color: #030303;
  }

  .border {
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 10px;
  }

  .Label::before {
    /*タイトル横の矢印*/
    right: 40px;
  }

  .content {
    /*本文*/
    width: 90%;
  }

  .content p{
    /* works page 本文*/
    font-size: 12px;
    width: 100%;
  }

  /* works page title*/
h3 {
  font-size: 1.4em;
  letter-spacing: 4px;
  text-align: center;
}

h4 {
  font-size: 0.8em;
}

h5 {
  font-size: 0.9em;
}

.works_imagebox {
  width: 90%;
}

/* works page 画像真ん中*/
.works_imagebox img {
  width: 90%;
  text-align: center;
}


  /* works page slide は slide-style.css*/





}