@charset "utf-8";
/* CSS Document */
/*ローディング画面*/
/*
.logo_fadein{
	background: #f8f6f0;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 10000;
}

.logo_fadein p{
  width: 214px;
  height: 130px;
	position: relative;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 10000;
}
.logo_fadein img{
  width: 100%;
  height: auto;
}
*/
.loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #F8f6f0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  opacity: 1;
  visibility: visible;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loading.is-active {
  opacity: 0;
  visibility: hidden;
}

.loading-animation {
  width: 111px;
  height: 60px;
  transition: all 1s;
  position: relative;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
}
.loading-animation p{
  font-size: 2.0rem;
  font-weight: 700;
}
.loading-animation span{
  display: inline-block;
  width: 111px;
  height: 2px;
}
.loading-animation span:nth-of-type(1){
  display: inline-block;
  width: 111px;
  height: 2px;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  animation-name: slide-bar01;
  animation-duration: 0;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}
@keyframes slide-bar01{
  0%{
    transform: translate(0,0);
  }
  100%{
    transform: translate(5px,-10px);
  }
}

.loading-animation span:nth-of-type(2){
  display: inline-block;
  width: 2px;
  height: 60px;
  background-color: #000;
  position: absolute;
  top: 0;
  right: 0;
  animation-name: slide-bar02;
  animation-duration: 0;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}
@keyframes slide-bar02{
  0%{
    transform: translate(0,0);
  }
  100%{
    transform: translate(5px,0);
  }
}
.loading-animation span:nth-of-type(3){
  display: inline-block;
  width: 111px;
  height: 2px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  right: 0;
  animation-name: slide-bar03;
  animation-duration: 0;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}
@keyframes slide-bar03{
  0%{
    transform: translate(0,0);
  }
  100%{
    transform: translate(-5px,10px);
  }
}
.loading-animation span:nth-of-type(4){
  display: inline-block;
  width: 2px;
  height: 60px;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  animation-name: slide-bar04;
  animation-duration: 0;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}
@keyframes slide-bar04{
  0%{
    transform: translate(0,0);
  }
  100%{
    transform: translate(-5px,0);
  }
}
.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}
/*メインビジュアル*/
main{
  overflow: hidden;
}
.mainvisual{
  max-width: 400px;
  margin: 0 auto 74px;
  padding: 0 5%;
  position: relative;
  z-index: 0;
}
.subtitle{
  width: 280px;
  height: 40px;
  padding: 0 10px;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}
.subtitle.slide-bg::before{
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #ffeb3b;
  border: 2px solid #000;
  border-radius: 4px;
  box-sizing: border-box;
  animation-name: slide;
  animation-duration: 0.3s;
  animation-iteration-count: 1;
}
@keyframes slide {
    from {
      transform: translateX(-100%);
    }

    to {
      transform: translateX(0);
    }
}
.subtitle p{
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 40px;
}

.mainvisual .name{
  padding-top: 10px;
  margin-bottom: 20px;
}
.mainvisual .name p{
  font-size: 4.6rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  line-height: 1.2;
  text-align: left;
}

/*JQ用*/
.subtitle, .name {
	overflow: hidden;
	display: block;
}
.mainvisual .subtitle p,
.mainvisual .name p{
	transition: .8s ease-in-out;
	transform: translate3d(0,100%,0) skewY(12deg);
	transform-origin: left;
	display: block;
}
.subtitle p.smoothTextAppear{
  transform: translate3d(0,0,0) skewY(0);
}
.name p.smoothTextAppear{
  transform: translate3d(0,0,0) skewY(0);
}

.mainvisual .silhouette{
  width: 265px;
  height: auto;
  margin-bottom: 60px;
  margin-left: auto;
  display: block;
  /*JQでふわっと動かす用*/
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: opacity 1s,visibility 1s, transform 1s;
}
.mainvisual .silhouette.load{
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
/*.mainvisual .text{
  width: auto;
  height: 39px;
  position: absolute;
  top: 340px;
  z-index: -1;
  animation: loop 50s linear infinite;
}*/
.mainvisual .loop-text{
  display: none;
  /*display: flex;*/ /*JQでflexにする*/
  position: absolute;
  top: 340px;
  left: calc(50% - 50vw);
  z-index: -1;
  /*JQでふわっと動かす用*/
  animation-name:fadeInAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity:0;
}
@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.mainvisual .loop-text p{
  flex: 0 0 auto;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  color: #f8f6f0;
  -webkit-text-stroke: 1px #000;
  text-stroke: 1px #000;
  white-space: nowrap;
  padding-right: 20px;
  padding-left: 20px;
}
.mainvisual .loop-text p{
  animation: slideText 20s linear infinite;
}

@keyframes slideText {
    0% {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/*@keyframes loop2 {
    0% {
        transform: translateX(0);
    }
    to {
        transform: translateX(-200%);
    }
}*/
.mainvisual .scroll-wrapper{
  display: flex;
}
.mainvisual .scroll-wrapper .material-symbols-outlined{
  background-color: #ffeb3b;
  width: 32px;
  height: 32px;
  border-radius: 100px;
  line-height: 32px;
  margin-right: 10px;
}
.mainvisual .scroll-wrapper .scrolldown{
  font-size: 2.0rem;
  font-weight: 700;
}
@media (min-width: 440px){
  .mainvisual{
    max-width: none;
    margin: 0 0 74px 0;
  }
  .subtitle{
    width: 63.636364vw;
    height: 9.090909vw;
  }
  .subtitle p{
    font-size: 3.636364vw;
    line-height: 9.090909vw;
  }
  .mainvisual .name p{
    font-size: 10.454545vw;
  }
  .mainvisual .silhouette{
    width: 60.227273vw;
    height: auto;
  }
  .mainvisual .loop-text{
    top: 77.272727vw;
  }
}
@media (min-width: 700px){
  .mainvisual{
    margin-bottom: 100px;
  }
  .mainvisual .inner{
    position: relative;
  }
  .mainvisual .flex-wrapper{
    display: flex;
    column-gap: 20px;
    justify-content: center;
  }
  .mainvisual .text-wrapper{
    display: inline-block;
    margin-top: 30px;
  }
  .subtitle{
    /*font-size: 1.6rem;
    width: 280px;
    height: 40px;
    line-height: 40px;*/
    width: 40vw;
    height: 5.714286vw;
  }
  .subtitle p{
    /*font-size: 1.6rem;
    width: 280px;
    height: 40px;
    line-height: 40px;*/
    font-size: 2.285714vw;
    line-height: 5.714286vw;
  }
  .mainvisual .name p{
    /*font-size: 4.6rem;*/
    font-size: 6.571429vw;
  }
  .mainvisual .silhouette{
    /*width: 265px;*/
    width: 45.714286vw;
    height: auto;
    display: inline-block;
    margin: 0;
  }
  .mainvisual .loop-text{
    /*top: 220px;*/
    top: 31.428571vw;
  }
  .mainvisual .scroll-wrapper{
    position: absolute;
    top: 42.857143vw;
    /*left: 40px;*/
  }
}
@media (min-width: 900px){
  .mainvisual{
    margin-bottom: 154px;
  }
  .mainvisual .subtitle{
    width: 380px;
    height: 54px;
  }
  .mainvisual .subtitle p{
    font-size: 2.2rem;
    line-height: 54px;
  }
  .mainvisual .name p{
    font-size: 6.8rem;
  }
  .mainvisual .silhouette{
    width: 437px;
  }
  .mainvisual .loop-text{
    top: 290px;
  }
  .mainvisual .scroll-wrapper{
    top: 400px;
  }
}
@media (min-width: 1040px){
  .mainvisual{
    padding: 0;
    max-width: 867px;
    margin: 0 auto 154px;
  }
  .mainvisual .flex-wrapper{
    column-gap: 50px;
  }
}

/*Works*/
#works{
  padding: 0 5%;
  margin-bottom: 150px;
}
#works h2{
  font-size: 4.8rem;
  /*display: inline-block;*/
  text-align: left;
}
#works h2 span{
  display: inline-block;
  font-size: 1.4rem;
  margin-left: 20px;
  vertical-align: middle;
}

#works .category{
  display: flex;
  column-gap: 10px;
  margin-bottom: 20px;
}
#works .category .tab {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background-color: #000;
  border-radius: 100px;
  padding: 0 10px 0;
  height: 30px;
  line-height: 30px;
  cursor: pointer;
}
#works .category .tab::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 500px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #252525;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}
#works .category .tab:hover{
  opacity: 0.7;
}

#works .category .tab.active:hover{
  opacity: 1.0;
}
.tab.active{
  background-color: #ffeb3b !important; 
  color: #000 !important;
  border: 2px solid #000;
  line-height: 26px !important; 
}

#works .gallery {
  display: none;
}
#works .gallery.active {
  display: flex;
}
#works .gallery{
  /*display: flex;*/
  flex-direction: column;
  grid-row-gap: 50px;
}
/*作品を順番に表示*/
#works .gallery .fadein{
  opacity : 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: opacity 1s,visibility 1s, transform 1s;
}
#works .gallery .fadein.active{
  opacity : 1;
  visibility: visible;
  transform: translateY(0px);
}
/*.delay01 {
  transition-delay: .2s;
}
.delay02 {
  transition-delay: .4s;
}
.delay03{
  transition-delay: .6s;
}
.delay04 {
  transition-delay: .8s;
}
.delay05 {
  transition-delay: 1.0s;
}
.delay06 {
  transition-delay: 1.2s;
}
.delay07 {
  transition-delay: 1.4s;
}
.delay08 {
  transition-delay: 1.6s;
}
.delay09 {
  transition-delay: 1.8s;
}
.delay10 {
  transition-delay: 2.0s;
}
.delay11 {
  transition-delay: 2.2s;
}
.delay12 {
  transition-delay: 2.4s;
}*/

#works .gallery li a{
  overflow: hidden;
  display: inline-block;
  width: 100%;
  height: 66.666667vw;
  border: 2px solid #000;
  border-radius: 4px;
}
#works .gallery li a:hover{
  opacity: 1.0;
}
#works .gallery li img{
  width: 100%;
  height: 66.666667vw;
  object-fit: cover;
  object-position: top;
  margin-bottom: 10px;
  transition: all 0.5s;
}
#works .gallery li img:hover{
  /* ホバーしたら1.1倍サイズに拡大 */
  transform: scale(1.1);
}
#works .gallery li .text{
  width: inherit;
  text-align: left;
}
#works .gallery li h3{
  font-size: 1.6rem;
  font-family: 'Noto Sans JP';
  font-weight: 500;
}
#works .gallery li p{
  font-size: 1.2rem;
  color: #717171;
  font-family: 'Noto Sans JP';
  font-weight: 400;
}
@media (min-width: 700px){
  #works .flex-wrapper{
    display: flex;
    justify-content: space-between;
  }
  #works .category{
    padding-top: 30px;
  }
  #works .gallery{
    /*display: flex;*/
    flex-direction: row;
    flex-wrap: wrap;
    gap: 70px 30px;
  }
  #works .gallery li{
    /*width: 300px;
    height: 280px;*/
    width: 42.857143vw;
    height: 40vw;
  }
  #works .gallery li a{
    width: 100%;
    /*height: 235px;*/
    height: 33.571429vw;
  }
  #works .gallery li img{
    width: 100%;
    /*height: 235px;*/
    height: 33.571429vw;
  }
}
@media (min-width: 900px){
  #works{
    margin-bottom: 160px;
  }
  #works .flex-wrapper{
    margin-bottom: 20px;
  }
  #works h2{
    font-size: 6.4rem;
  }
  #works h2 span{
    font-size: 2.0rem;
    margin-left: 30px;
  }
  #works .category{
    padding-top: 40px;
    margin-bottom: 0;
  }
  #works .category .tab{
    font-size: 1.6rem;
    font-weight: 600;
    padding: 0 20px 0;
    height: 36px;
    line-height: 36px;
  }
  .tab.active{
    line-height: 32px !important; 
  }
  #works .gallery{
    gap: 70px 30px;
  }
  #works .gallery li{
    /*width: 250px;
    height: 270px;*/
    width: 27.777778vw;
    height: 30vw;
  }
  #works .gallery li a{
    width: 100%;
    /*height: 196px;*/
    height: 21.777778vw;
  }
  #works .gallery li img{
    width: 100%;
    /*height: 196px;*/
    height: 21.777778vw;
  }
}
@media (min-width: 1040px){
  #works{
    max-width: 1000px;
    margin: 0 auto 160px;
    padding: 0;
  }
  #works .gallery{
    gap: 70px 20px;
  }
  #works .gallery li{
    width: 320px;
    height: 300px;
  }
  #works .gallery li a{
    width: 100%;
    height: 250px;
  }
  #works .gallery li img{
    width: 100%;
    height: 250px;
  }
}
/*Profile*/
#profile{
  padding: 0 5%;
  margin-bottom: 150px;
}
#profile h2{
  font-size: 4.8rem;
  /*display: inline-block;*/
  text-align: left;
  margin-bottom: 10px;
}
#profile h2 span{
  display: inline-block;
  font-size: 1.4rem;
  margin-left: 20px;
  vertical-align: middle;
}
#profile .inner{
  padding: 45px 20px 50px;
  background-color: #fff;
  border: 3px solid #000;
  border-radius: 4px;
/*JQでふわっと動かす用*/
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: opacity 1s,visibility 1s, transform 1s;
}
#profile .inner.active{
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
#profile .inner .img-area{
  position: relative;
  z-index: 0;
  width: 208px;
  height: 208px;
  margin: 0 auto 20px;
  /*overflow: hidden;*/
}
#profile .inner img{
  width: 208px;
  height: auto;
  border-radius: 1000px;
  border: 2px solid #000;
}
#profile .inner .img-area::before{
  content: '';
  display: block;
  position: absolute;
  width: 208px;
  height: 208px;
  background-color: #000;
  border-radius: 1000px;
  z-index: -1;
  top: 0;
  left: 0;
  /*top: -10px;
  left: -10px;*/
  transition: all .3s;
}
/*JQ用*/
#profile .inner .img-area_2::before{
  content: '';
  display: block;
  position: absolute;
  width: 208px;
  height: 208px;
  background-color: #000;
  border-radius: 1000px;
  z-index: -1;
  top: -13px;
  left: -13px;
  transition: all .3s;
}

#profile .inner .name{
  text-align: left;
  display: inline-block;
  margin: 0 auto 5px;
  
}
#profile .inner .furigana{
  font-size: 1.0rem;
}
#profile .inner h3{
  font-size: 2.0rem;
}
#profile .inner .discription{
  text-align: left;
  margin-bottom: 35px;
}
#profile .inner .btn{
  width: 180px;
  margin: 0 auto; 
  border-radius: 500px;
  overflow: hidden;
}
#profile .inner .btn a{
  display: block;
  background-color: #ffeb3b;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 50px;
  border-radius: 500px;
  padding-left: 40px;
  color: #000;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  transition: .3s;
}
#profile .inner .btn span{
  vertical-align: middle;
  margin: 0 0 1px 20px;
}

#profile .inner .btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 500px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #252525;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}
#profile .inner .btn a:hover {
  color: #ffeb3b;
  opacity: 1.0;
}
#profile .inner .btn a:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
@media (min-width: 700px){
  #profile .inner{
    display: flex;
    justify-content: center;
    column-gap: 20px;
  }
  #profile .inner .text-wrapper{
    /*width: 335px;*/
    width: 47.857143vw;
  }
  #profile .inner .name-wrapper{
    text-align: left;
  }
  #profile .inner .btn{
    margin: 0;
  }
}
@media (min-width: 900px){
  #profile{
    padding: 0 5%;
    margin-bottom: 170px;
  }
  #profile h2{
    font-size: 6.4rem;
    margin-bottom: 20px;
  }
  #profile h2 span{
    font-size: 2.0rem;
    margin-left: 30px;
  }
  #profile .inner{
    padding: 76px 20px /*124px*/;
  }
  #profile .inner .img-area{
    position: relative;
    z-index: 0;
    /*width: 264px;
    height: 264px;*/
    width: 250px;
    height: 250px;
    margin: 0 auto;
  }
  #profile .inner img{
    width: 250px;
    height: auto;
  }
  #profile .inner .img-area::before{
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    transition: all .3s;
  }
  /*JQ用*/
  #profile .inner .img-area_2::before{
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    transition: all .3s;
  }
  #profile .inner .text-wrapper{
    margin-top: 20px;
    max-width: 500px;
  }
  #profile .inner .furigana{
    font-size: 1.2rem;
  }
  #profile .inner h3{
    font-size: 2.4rem;
  }
  #profile .inner .discription{
    font-size: 1.5rem;
  }
}
@media (min-width: 1040px){
  #profile{
    max-width: 1000px;
    margin: 0 auto 170px;
    padding: 0;
  }
  #profile .inner{
    column-gap: 50px;
  }
  
}

/*Skill*/
#skill{
  padding: 0 5%;
  margin-bottom: 128px;
}
#skill h2{
  font-size: 4.8rem;
  /*display: inline-block;*/
  text-align: left;
  margin-bottom: 10px;
}
#skill h2 span{
  display: inline-block;
  font-size: 1.4rem;
  margin-left: 20px;
  vertical-align: middle;
}
#skill .wrapper{
  overflow-x: scroll;
}
#skill .inner{
  display: flex;
  column-gap: 20px;
  
}
#skill .inner li{
  /*position: relative;
  z-index: 0;*/
  width: 320px;
  height: 372px;
  /*JQ用*/
	opacity: 0;
}
.fadeUp {
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}
/*#skill .inner li::before{
  content: '';
  width: 310px;
  height: 362px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  z-index: -1;
  top: 10px;
  left: 10px;
}*/
#skill .inner li .list-wrapper{
  width: 310px;
  height: 362px;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 4px;
  padding: 37px 30px 40px;
  /*box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 1);*/
  transition: all .3s;
}
#skill .inner li .list-wrapper.active{
  box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 1);
}
#skill .inner li .img-area{
  width: 150px;
  height: 150px;
  background-color: #ffeb3b;
  border-radius: 1000px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
}
#skill .inner li img{
  width: 77px;
  height: auto;
  margin: 0 auto;
}
#skill .inner li h3{
  font-size: 2.0rem;
  margin-bottom: 15px;
}
#skill .inner li p{
  font-size: 1.4rem;
  text-align: left;
}
@media (min-width: 900px){
  #skill h2{
    font-size: 6.4rem;
    margin-bottom: 20px;
  }
  #skill h2 span{
    font-size: 2.0rem;
    margin-left: 30px;
  }
  #skill .wrapper{
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
    -ms-overflow-style: none;
  /*Firefoxへの対応*/
    scrollbar-width: none;
  }
  /*Google Chrome、Safariへの対応*/
  #skill .wrapper::-webkit-scrollbar{
    display: none;
  }
  #skill .inner li p{
    font-size: 1.5rem;
  }
}
@media (min-width: 1040px){
  #skill{
    max-width: 1000px;
    margin: 0 auto 170px;
    padding: 0;
  }
}



