@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Hurricane&display=swap');

body {
  font-family: heisei-kaku-gothic-std, sans-serif;
  font-style: normal;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;

  background: url(../images/bg-portfolio.png) no-repeat;
  background-size: cover;
}


*{
  box-sizing: border-box;
}


a {
  text-decoration: none;
  color: #fff;
}

html{
  scroll-behavior: smooth;
}

img{
  width: 100%;
  height: auto;
  max-width: 100%;
}

header{
  height: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

li{
  list-style: none;
}

video{
  max-width: 100%;
}

nav{
  text-transform: capitalize;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
}

/*.wrap-all{
  background: url(../img/bg-portfolio.png) no-repeat;
  background-size: cover;
}*/

.smartphone{
  display: none;
}







.title.open{
  display: none;
}




.logo{
   max-width: 325px;
   height: 48px;
   min-width: 80px;

   margin-left: 83px;
}


#portfolio h1{
  font-size: 60px;
  font-family: 'Josefin Sans', sans-serif;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.p-h1-wrap{
  max-width: 80vw;
  border-bottom: solid 2px #fff;
  margin: 0 auto;
}









button {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  border: 0;
  background: transparent;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

button:hover {
  cursor: pointer;
}

.btn.js-btn:hover {
    border: solid 1px #fff;
}

/**************** 以下、ハンバーガーボタンのスタイリング ****************/
.btn {
  /* ボタンの配置位置  */
  position: fixed;
  top: 16px;
  right: 16px;
  /* ボタンの大きさ  */
  width: 58px;
  height: 48px;
  /* バーガーの線をボタン範囲の中心に配置 */
  display: flex;
  justify-content: center;
  align-items: center;
  /* 最前面に */
  z-index: 10;

  display: none;
}

/***** 真ん中のバーガー線 *****/
.btn-line {
  /* 線の長さと高さ */
  width: 100%;
  height: 4px;
  /* バーガー線の色 */
  background-color: #fff;
  /* バーガー線の位置基準として設定 */
  position: relative;
  transition: .2s;
}

/***** 上下のバーガー線 *****/
.btn-line::before,
.btn-line::after {
  /* 基準線と同じ大きさと色 */
  position: absolute;
  transition: .5s;
}


.btn-line::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  /* 上の線の位置 */
  transform: translateY(-16px);
}


.btn-line::after {
  content: "menu";
  /* 下の線の位置 */
  display: block;
  width: 100%;
  text-align: center;
  transform: translateY(8px);
  color: #fff;
}

/***** メニューオープン時 *****/
.btn-line.open {
  transition: .5s;
}

.btn-line.open::before {
  content: "";
  transform: translateY(0);
}

.btn-line.open::after {
  content: "close";
  color: #fff;
}
/* ここまでボタンアニメーション */

/**************** ここまで、ハンバーガーボタンのスタイリング ****************/

/**************** 以下、メニューのスタイリング ****************/
header ul.menu {
  max-width: 719px;
  display: flex;
  justify-content: flex-end;
  margin-right: 45px;
  font-size: 22px;
}

header ul li.menu-list {
  width: 100%;
  padding: 20px;
  margin-left: 1vw;
  text-align: center;
}

.menu-list:hover {
  color: #333;
  background-color: rgba(255, 255, 255, 0.5);
  transition: .3s;
  cursor: pointer;
}

/***** メニューオープン時位置0にして画面内に *****/
header ul.menu.open {
  transform: translateX(0%);
  background-color: rgba(204, 204, 204, 0.3);
  max-width: 300px;
  /*transform: translateY(0%);*/
  position: fixed;
  top: 70px;
  right: 0;
  z-index: 99;
  margin-right: 0;

  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

header ul.menu.open li {
    margin-left: 0;
    padding: 20px;
    width: 100%;
}

header ul.menu-list.open{
  display: block;
}


/* 600px以上はハンバーガーボタン非表示、ヘッダー固定 */



/**************** ここまで、メニューのスタイリング ****************/

/*中心から外に線が伸びる（下部）===================================*/

.gnavi li a{
    /*線の基点とするためrelativeを指定*/
  position: relative;
  padding-bottom: 5px;
}

.gnavi li.current a,
.gnavi li a:hover{
  color:#f1f850;
}

.gnavi li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 0%;
    /*線の形状*/
    width: 100%;
    height: 2px;
    background:#f1f850;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: center top;/*上部中央基点*/
}

/*現在地とhoverの設定*/
.gnavi li.current a::after,
.gnavi li a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}






.ScrollTop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 40px;
  height: 40px;
  
  
  opacity: 0;
  transition: all 0.65s;
}

.ScrollTop.isActive {
  opacity: 1;
  transition: all 0.65s;
}









.img-box{
  height: 300px;
  width: 300px;
  object-fit: cover;
}

.img-box:hover {
  transform: scale(1.1);
  transition-duration: 0.5s;
}




/*ここからアコーディオン装飾*/
.nav > li {
  position: relative;
  /*width: 100px;
  border-right: 1px solid #0071b9;*/
}
.nav > li:first-child{
  /*border-left: 1px solid #0071b9;*/
}

.nav a {
  display: block;
  /*padding: 0.5em 0;
  font-size: 16px;*/
  /*color: #0071b9;*/
  line-height: 1;
  text-align: center;
  z-index: 1;
}
.sub {
  position: absolute;
  left: 0;
  top: 2.3em;
  display: none;
  width: 100%;
  z-index: 3;

  text-transform: uppercase;
}
.sub > li > a {
  font-size: 16px;
  color: #fff;
  line-height: 1.75;
  background-color: #0071b9;
}
.sub > li > a:hover {
  background-color: #004b83;
  opacity: 1;
}

.sub li a::after{
  background: transparent;
}

.sub.open{
  position: static;
}

.sub.open li{
  padding: 5px;
}

.sub.open > li > a{
  background-color: transparent;
}

.sub.open > li > a:hover{
  background-color: rgba(255, 255, 255, 0.3);
}



/*ここまでアコーディオンメニューの装飾*/











.main_post_wrap{
  max-width: 1280px;
  margin: 0 auto;
}

.single_post_container{
  padding: 0;
}


#portfolio,.contact-wrap{
  max-width: 1280px;
  margin: 0 auto;
}

#portfolio{
  padding: 100px 0px;
}

#about{
  margin-bottom: 0;
}

#about p{
  /*text-align: center;*/
  line-height: 1.3;
}


h2{
  font-size: 40px;
  margin-left: 1vw;
  display: inline-block;
  font-family: 'Gotu', 'Noto Sans JP',sans-serif;
}

.about-h{
  font-size: 35px;
  text-align: center;
  padding: 40px;
}

.p-head{
  font-size: 25px;
  margin: 40px 0px;
  border-bottom: 2px solid #fff;
  display: inline-block;
}


.member-h{
  font-size: 28px;
  padding: 13px;
  margin: 30px;
  border-bottom: solid 3px #000;
  display: inline-block;
}




.p-button{
  text-align: center;
    margin: 40px 0px;
    border: solid 2px #000;
    padding: 20px;
    border-radius: 100px;
    width: 400px;
    margin: 0 auto;
}

.p-button:hover{
  background-color: rgba(204, 204, 204, 0.3);
}

.p-button a{
  padding: 20px 90px;
}

.portfolio-list{
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.portfolio-list img{
  max-width: 300px;
}





.works-contents{
  display: flex;
  justify-content: space-between;
}

.w-con,.m-con{
  max-width: 330px;
}

.w-con img{
  padding: 70px 0px;
}

.works-h{
  font-weight: 100;
  padding: 10px 0px;
  line-height: 1.3;
  font-family: sans-serif;
  letter-spacing: 0.05em;
}

.capital-b{
  text-transform: uppercase;
}

.m-con p{
  font-family: sans-serif;
}

.m-con p:first-of-type{
  color: #828282;
}

.m-con p:last-of-type{
  font-size: 12px;
  padding-top: 12px;
}




.w-button{
  text-align: center;
  margin: 40px 0px;
  border: solid 2px #000;
  padding: 20px;
  border-radius: 100px;
}

.w-button:hover{
  background-color: rgba(204, 204, 204, 0.3);
}






.member-contents{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-family: 'Noto Sans JP',sans-serif;

}

.member-contents li{
  padding: 20px 0px;
}



.member-contents:after{
  content: "";
  width: 300px;
}

.gizi1:after{
  content: "";
  width: 620px !important;
}











/*.m-con p:last-of-type{
  text-align: center;
}*/

.size{
  font-size: 3em;
  margin: 20px;
}

.hover:hover {
    background: rgba(204, 204, 204, 0.8);
}







#about-follow{
  /*padding: 100px 0px;*/
  background: url(../img/pink-line.png) no-repeat;
  /*background-size: contain;*/
  background-position: bottom;
}


#about-follow h3{
  text-transform: uppercase;
  /*font-family: 'Josefin Sans', sans-serif;*/
  font: italic normal bold 25px/30px Josefin Sans;
  font-size: 45px;
  text-align: center;
}



.icon{
  display: flex;
  justify-content: center;
}

.icon i{
  font-size: 60px;
  padding: 60px;
}

.insta:hover{
  color:rgba(255,24,216,0.5);
}

.twitter:hover{
  color: rgba(67,186,255,0.8);
}

.youtube:hover{
  color: rgba(255,6,31,0.8);
}

.line:hover{
  color:rgba(8,183,37,0.8);
}


footer{
  background: #242424;
  text-align: center;
}

footer h3 img{
  max-width: 280px;
}

footer ul.menu{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 22px;
}

footer ul.menu li{
  padding: 20px;
}

.c-con-wrap{
  max-width: fit-content;
  margin: 0 auto;
}

.contact-p{
  margin-bottom: 30px;
}

.c-con{
  padding: 3vw;
}

.c-con h3{
  margin-bottom: 50px;
  /*text-align: center;*/
}

.c-con-p{
  padding: 10px 0px;
  letter-spacing: 0.09em;
}















.portfolio-contents{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1250px;
  margin: 0 auto;
}

.name{
  font-size: 30px;
  padding-left: 1vw;
  margin: 70px 0px 30px 0px;
  text-align: center;
}

.name-p{
  font-size: 20px;
  padding-bottom: 20px;
}





.one{
  max-width: initial !important;
}


.h3-c{
  text-align: center;
}



.folio-under{
  max-width: 630px;
  padding: 50px 0px;
  font-family: 'Noto Sans JP',sans-serif;
}

.folio-under p{
  line-height: 2 !important;
}

.portfolio-button{
  text-align: center;
    margin: 40px 0px;
    border: solid 2px #000;
    padding: 20px;
    border-radius: 100px;
    width: 300px;
    margin: 0 auto;
}

.portfolio-button:hover{
  background-color: rgba(204, 204, 204, 0.3);
}


dt{
  font-size: 30px;
  padding: 60px 0px 10px 0px;
}




.p-button a{
  padding: 20px 90px;
}

.plus{
  color: #fff;
  background: #000;
  margin-bottom: 30px;
}

.plus:hover{
  background-color: rgba(204, 204, 204, 0.5);
  color: #000;

}





#contact{
  background: #505050;
  color: #fff;
}

#contact h2{
  padding-top: 100px;
  margin-bottom: 100px;
  border-bottom: solid 3px #fff;
}

.contact-wrap{
  margin-bottom: 0px;
}





small{
  text-align: center;
  display: block;
  padding: 15px 0px;
  background: #020b35;
}









/*========= ここからフワッと現れるアニメーションレイアウトのためのCSS ===============*/
/*body {
  overflow: hidden;
}*/

.flex{
  display:flex;
  flex-wrap: wrap;
}

.box{
  max-width: 300px;
  /*padding: 20px;*/
  /*margin: 0 20px 20px 20px;*/
  /*background: #666;*/
  color: #fff;
  
}

/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/

.box{
  opacity: 0;
}

/*==================================================
ふわっ
===================================*/

.fadeUp {
animation-name:fadeUpAnime;
animation-duration:0.8s;
animation-fill-mode:forwards;
opacity: 0;
}

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

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/*========= ここまでフワッと現れるアニメーションレイアウトのためのCSS===============*/











#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 #505050;
  padding:10px;
  color: #fff;
}
table.formTable th{
  width:30%;
  font-weight:normal;
  background:#505050;
  text-align:left;
  color: #fff;
}

#formWrap p{
  padding: 10px 0px;
  color: #fff;
}

th{
  vertical-align: middle;
}


/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width:572px) {
#formWrap {
  width:95%;
  margin:0 auto;
}
table.formTable th, table.formTable td {
  width:auto;
  display:block;
}
table.formTable th {
  margin-top:5px;
  border-bottom:0;
}
form input[type="text"], form textarea {
  width:80%;
  padding:5px;
  font-size:110%;
  display:block;
}
form input[type="submit"], form input[type="reset"], form input[type="button"] {
  display:block;
  width:100%;
  height:40px;
}
}




@media screen and (max-width: 1150px){

  header ul.menu{
    display: none;
  }

  .btn{
    display: flex;
  }

  .logo{
    margin-left: 10px;
  }

  header{
    height: 70px;
  }

  .p-head{
    margin-left: 20px;
  }
}

@media screen and (max-width: 900px){

  .member-contents{
    justify-content: space-around;
  }
}



/*@media screen and (max-width: 990px){

  .gnavi{
    display: none;
  }

}*/

  @media screen and (max-width: 815px){

  .c-con-wrap{
    flex-direction: column-reverse;
  }

  h2{
    font-size: 25px;
    padding: 3px;
    margin-top: 20px;
  }

  .about-h{
    font-size: 4vw;
    line-height: 1.3;
  }

  .c-con{
    text-align: center;
  }

  .icon i{
    padding: 40px 15px 0px 15px;
    font-size: 43px;
   }


}

@media screen and (max-width: 600px){

  .logo{
      display: none;
    }

    .smartphone{
      display: block;
      max-width: 80px;
      padding-left: 10px;

      position: fixed;
      top: 14px;
      left: 0;
      z-index: 98;
    }



  .folio-under{
    flex-direction: column;
  }

  .portfolio-button{
    margin-bottom: 10px;
  }

  .p-head{
    display: block;
    border: 0;
    text-align: center;
  }

  


  #about-follow{
      padding: 10px 0px 15px 0px;
      background-position: bottom;
  }

  #about-follow h3{
      font-size: 28px;
  }



  footer h3 img{
    max-width: 130px;
  }

  .c-con h3{
    margin-bottom: 0;
  }

  footer ul.menu{
    font-size: 13px;
  }

  footer ul.menu li{
    padding: 8px;
  }

  footer ul.menu{
    margin: 10px 0px;
  }



}

@media screen and (max-width: 480px){

  #portfolio h1{
    font-size: 10vw;
  }


  .img-box{
    width: auto;
    height: auto;
  }

  .m-con{
    padding: 0px 0px 20px 20px;
  }

  .img-s{
    width: 100vw;
  }

  .c-con-p{
    font-size: 13px;
  }

  #about-follow{
    background-size: 150%;
  }

  footer{
    padding-top: 10px;
  }
}