@charset "utf-8";





.tb {
  display: none!important;
}
.sp {
  display: none!important;
}
.pc {
  display: block!important;
}



body {
  font-family: "Noto Serif JP", serif;
}


.fadeIn {
  opacity: 0;
  transform: translate(0, 50px); /* フェードインで動く高さを指定 */
  transition: all 1000ms; /* フェードインにかかる時間を指定 */
}
.effect-scroll {
  opacity: 1;
  transform: translate(0, 0);
}
.fadeIn2 {
  opacity: 0; /*初期状態*/
  animation: 500ms fadeIn2 forwards;   /*animation: 時間 アニメーション名 終了時の挙動*/
  animation-delay: 1300ms;/*サンプル用に遅延時間を設定*/
}
@keyframes fadeIn2 {
  from{opacity: 0;}
  to{opacity:1;}
}


/* ヘッダー */

.header {  
  z-index: 100;
  display: flex;
  flex-wrap: wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.header.change a {
  color: #707070;
}
.header.change svg path {
  fill: #707070;
}

.header.change .nav::before {
  background-color: #707070;
}



.logo { 
  margin: 46px 50px;
}

.logo img {
  width: 43px;
}


.logo :hover {
  transition: 0.5s ease;
  opacity: 70%;
}





/* フッター */

.footer {
  position: relative;
  width: 100%;
}

.copy {
  position:absolute;
  right:-19px;
  bottom:85px;
  font-family: 'Crimson Text', serif;
  font-size: 13px;
  letter-spacing: 0.07em;
  transform: rotate( 90deg )
}

.copy a {
  color:#707070;
}

.triangle {
  position: absolute;
  right: 20px;
  bottom: 13px;
}

.triangle a {
  font-size: 12px;
  color:#707070;
}




/* tb */

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

  .pc {
    display: none!important;
  }
  .sp{
    display: none !important;
  }
  .tb{
    display: block!important;
  }
  
  
}




/* sp */


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


  .pc {
    display: none!important;
  }
  .tb {
    display: none!important;
  }
  .sp {
    display: block!important;
  }
  
  /* ヘッダー */


  .header {  
    top: 0;
    left: 0;
    width: 100%;
  }

 
  .header.change span {
    background-color: #707070;
  }



  .logo {
    position: fixed;
    z-index: 100;
    top:0px;
    margin: 25px 30px;
    transition: 0.5s ease;
  }
  .logo-img {
    width: 70%;
  }
  .logo.active svg path {
    fill: #707070;
    transition: 0.5s ease;
  }

 
   

  /* アクティブの場合 */
  .navbar.active span:nth-child(1) {
    transform: translate(0,4.5px) rotate(-45deg);
    background-color: #707070;
  }
  .navbar.active span:nth-child(2) {
    transform: translate(0,-4.5px) rotate(45deg);
    background-color: #707070;
  }


  .menu {
    position: fixed;
    top: 0;
    left: 120%;
    background-color: white;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    transition: 0.5s ease;
  }


  .menu.active {
    left: 0;
    opacity: 1;
    transition: 0.5s ease;
  }

  .logo.active {
    opacity: 1;
    transition: 1s ease;
    transition-delay: 0.5s;
  }

  
  .menuContent{
    position: relative;
    width: 100%;
    height: 100%;
  }

  .spContent {
    opacity: 0;
    display: inline;
    position: absolute;
    top: 56%;
    transform: translate(0%,-55%);    
    transition: 1s ease;
    transition-delay: 0.5s;
    /* transform: translateY(-50%); */
  }

  .spContent.active {
    opacity: 1;
  }

  .nav::before {
    display: none;
  }

  .nav ul {
    display: block;
    margin-left: 50px;
    font-family: 'Crimson Text', serif;
    font-size: 16px;
    letter-spacing: 0.05em;    
  }

  .list {
    padding: 0;
    
  }

  .item01 {
    padding: 0;
    margin-bottom: 60px;
    color: #474645;
  }
  .item02 {
    padding: 0;
    margin-bottom: 70px;
    color: #474645;
  }
  .item a {
    color: #474645;
  }

  .menuInsta {
    margin-left: 50px;
    font-family: 'Crimson Text', serif;
    font-size: 14.5px;
    color: #474645;
  }

  .link01 {
    color: #474645;
  }





  /* フッター */

  .footer {
    position: relative;
    width: 100%;
  }




  .copy {
    position: static;
    text-align: center;
    margin-bottom: 10px;
    font-family: 'Crimson Text', serif;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.07em;
    transform: none;
  }

  .triangle {
    position: absolute;
    right: 10px;
    bottom: 0px;
  }

}

