@charset "UTF-8";

.menu-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #232323; 
}
.menu-btn:hover {
  opacity: 0.5;
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  background-color: bisque;
  position: absolute;
}
.menu-btn span::before {
  bottom:8px;
}
#menu-btn li a:hover {
  opacity: 0.7;
}
.menu-btn span:after {
  top:8px;
}
#menu-btn-check:checked ~ .menu-btn span {
background-color: rgba(255, 255, 255, 0);
}
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}
#menu-btn-check {
  display: none;
}
.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: #f3f3f3;;
}
.menu-content ul {
  padding: 70px 10px 0;
}
.menu-content ul li {
  border-bottom:  solid 1px #ffffff;
  list-style: none;
}
.menu-content ul li a {
  display: block;
  width: 100%;
  font-size:15px;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}
.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right:solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}
.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 100%;
  z-index: 80;
  background-color: #232323;
  transition: all 0.5s;
}
#menu-btn-check:checked ~ .menu-content {
  left: 0;
}
.navi:hover
 {
opacity: 0.6;
}

html {
  font-size: 100%;
}
body {
  color: #24292e;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
}
li {
list-style: none;
}
.wrapper {
  max-width: 960px;
  margin:0 auto 130px auto;
  padding: 0 4%;
}
.site-title  {
  line-height: 1px;
}
.site-title a {
  display: block;
}
.sec-title {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 35px;
}
/* mainvisual */
#mainvisual {
  margin-bottom: 70px;
}
/* #mainvisual .mainimg{
      width: 100%;
      height: 100vh;
      background: url(../img/IMG_0053.jpg) ;
      background-size: cover;
      object-fit: none;
} */
 /* .mainimg {
  width: 100%;
  height: 100vh; */
  /* background-size: cover; */
  /* object-fit: none; */
/* about */
#about ul {
  margin-bottom: 10px;
}
#about li:first-child {
  margin-bottom: 15px;
}
#about p {
  text-align: justify;
}
/* works */
#works ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
#works li {
  width: 31%;
  margin-bottom: 23px;
}
/* news */
#news dl {
  display: flex;
  flex-wrap:wrap;
 border-bottom: solid 1px #c8c8c8;;
 padding: 15px;
}
#news dd {
  width: 80%;
  /* border-bottom:solid 1px #c8c8c8; */
  padding:15px;
}
/* movie */
/* news */
#movie dl {
  display: flex;
  flex-wrap:wrap;
 border-bottom: solid 1px #c8c8c8;;
 padding: 15px;
}
#movie dd {
  width: 80%;
  /* border-bottom:solid 1px #c8c8c8; */
  padding:15px;
}
/*-------------------------------------------
Contact
-------------------------------------------*/
#contact dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
#contact dt {
  width: 15%;
}
#contact dd {
  width: 85%;
  margin-bottom: 10px;
}
#contact dd input,
#contact dd textarea {
  width: 100%;
  border: solid 1px #c8c8c8;
  padding: 10px;
}
#contact dd textarea {
  height: 10rem;
}
#contact .button {
  text-align: center;
}
#contact .button input {
  width: 200px;
  background-color: #24292e;
  color: #fff;
  padding: 15px 0;
  border: solid 1px #24292e;
}
#contact .button input:hover {
  background: #fff;
  color: #24292e;
}
/* フッター */
#footer {
  background-color: #24292e;
  color: #fff;
  font-size: 0.5rem;
  padding: 10px 20px;
  text-align: center;
}
/* SP */
@media screen and (max-width:600px) {
  .wrapper {
    margin-bottom: 70px;
  }
  .site-title {
    margin-top: 20px;
  }
  .sec-title {
    margin-bottom: 40px;
  }
  /* ヘッダー */
  #header {
    max-width: 100%;
    height: auto;
    flex-direction: column;
  }
  #header li {
    font-size: 0.8rem;
    margin-left: 20px;
  }
  #header li:first-child {
    margin-left: 0;
  }
  /* works */
  #works ul {
    flex-direction: column;
  }
  #works li {
    width: 100%;
  }
  /* News */
  #news dl {
    flex-direction: column;
  }
  #news dt {
    width: 100%;
    border-bottom: none;
    padding-bottom: 0;
  }
  #news dd {
    width: 100%;
    padding-top: 0;
  }
    /*-------------------------------------------
  Contact
  -------------------------------------------*/
  #contact dl {
    flex-direction: column;
  }
  #contact dt {
    width: 100%;
  }
  #contact dd {
    width: 100%;
  }

  
}

.flex {
  display: flex;
}
.sns:hover {
  opacity: 0.5;
  }
  .newspage:hover {
    opacity: 0.5;
    }

    .animation_box {
      padding: 10px;
      opacity: 0;
      transform: translateY(-20px);
      transition: 5s ease;
}
/* 動くicon */
.fuwafuwa {
  animation: fuwafuwa 3s infinite ease-in-out .8s alternate;
  background: url(../img/insta.jpg) no-repeat center center / 60px auto;
  display: inline-block;
  transition: 1.5s ease-in-out;
  width: 70px;
  height: 70px;
  margin-top: 15px;
}
 
@keyframes fuwafuwa {
  0% {
    transform:translate(0, 0) rotate(-7deg);
  }
  50% {
    transform:translate(0, -7px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(7deg);
  }
}
.fuwafuwa01 {
  animation: fuwafuwa01 3s infinite ease-in-out .8s alternate;
  background: url(../img/_i_icon_07194_icon_071940_64.jpg) no-repeat center center / 70px auto;
  display: inline-block;
  transition: 1.5s ease-in-out;
  width: 70px;
  height: 70px;
  margin-top: 15px;
}
 
@keyframes fuwafuwa01 {
  0% {
    transform:translate(0, 0) rotate(-7deg);
  }
  50% {
    transform:translate(0, -7px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(7deg);
  }
}
.fuwafuwa02 {
  animation: fuwafuwa02 3s infinite ease-in-out .8s alternate;
  background: url(../img/vinal_48.jpg) no-repeat center center / 100px auto;
  display: inline-block;
  transition: 1.5s ease-in-out;
  width: 100px;
  height: 100px;
  margin-top: 10px;
  vertical-align: -50%;
}
 
@keyframes fuwafuwa02 {
  0% {
    transform:translate(0, 0) rotate(-7deg);
  }
  50% {
    transform:translate(0, -7px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(7deg);
  }
}
.fuwafuwa03 {
  animation: fuwafuwa03 3s infinite ease-in-out .8s alternate;
  background: url(../img/instagram-gaf626edd3_640.png) no-repeat center center / 60px auto;
  display: inline-block;
  transition: 1.5s ease-in-out;
  width: 70px;
  height: 70px;
  margin-top: 10px;
  vertical-align: -15%;
  border-radius: 10%;
}
 
@keyframes fuwafuwa03 {
  0% {
    transform:translate(0, 0) rotate(-7deg);
  }
  50% {
    transform:translate(0, -7px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(7deg);
  }
}
.fuwafuwa04 {
  animation: fuwafuwa04 3s infinite ease-in-out .8s alternate;
  background: url(../img/threelogoJPG.JPG) no-repeat center center / 70px auto;
  display: inline-block;
  transition: 1.5s ease-in-out;
  width: 70px;
  height: 70px;
  vertical-align: -150%;
}
 
@keyframes fuwafuwa04 {
  0% {
    transform:translate(0, 0) rotate(-7deg);
  }
  50% {
    transform:translate(0, -7px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(7deg);
  }
}
.fuwafuwa05 {
  animation: fuwafuwa05 3s infinite ease-in-out .8s alternate;
  background: url(../img/three-logo.jpg) no-repeat center center / 60px auto;
  display: inline-block;
  transition: 1.5s ease-in-out;
  width: 60px;
  height: 60px;
  vertical-align: 10%;
}
 
@keyframes fuwafuwa05 {
  0% {
    transform:translate(0, 0) rotate(-7deg);
  }
  50% {
    transform:translate(0, -7px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(7deg);
  }
}
.fuwafuwa06 {
  animation: fuwafuwa06 3s infinite ease-in-out .8s alternate;
  background: url(../img/IMG_0038.jpg) no-repeat center center / 85px auto;
  display: inline-block;
  transition: 1.5s ease-in-out;
  width: 65px;
  height: 65px;
  vertical-align: -10%;
}
 
@keyframes fuwafuwa06 {
  0% {
    transform:translate(0, 0) rotate(-7deg);
  }
  50% {
    transform:translate(0, -7px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(7deg);
  }
}
.fuwafuwa07 {
  animation: fuwafuwa07 3s infinite ease-in-out .8s alternate;
  background: url(../img/vinal_48.jpg) no-repeat center center / 70px auto;
  display: inline-block;
  transition: 1.5s ease-in-out;
  width: 70px;
  height: 70px;
  vertical-align: -150%;
}
 
@keyframes fuwafuwa07 {
  0% {
    transform:translate(0, 0) rotate(-7deg);
  }
  50% {
    transform:translate(0, -7px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(7deg);
  }
}


/* header アニメーション */
.a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  color: greenyellow;
  text-decoration: none;
}
.a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: greenyellow;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  content: "";
}

.a:hover:after {
  transform: translate(0, 0);
}
/* cssアニメーション */

.cssanimation, .cssanimation span {
  animation-duration: 10s;
  animation-fill-mode: both;
}
.cssanimation span { display: inline-block }

.effect3d { animation-name: effect3d }
@keyframes effect3d {
  to {
      text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, .1), 0 0 5px rgba(0, 0, 0, .1), 0 1px 3px rgba(0, 0, 0, .3), 0 3px 5px rgba(0, 0, 0, .2), 0 5px 10px rgba(0, 0, 0, .25), 0 10px 10px rgba(0, 0, 0, .2), 0 20px 20px rgba(0, 0, 0, .15)
  }
}
.effect3d :hover {
  opacity: 0.5;
}
/* news 項目　hovereffect */
.newsitem {
  display: inline-block;
  position: relative;
  overflow: hidden;
  color: #e72fff;
  text-decoration: none;
}

.newsitem:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #e72fff;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  content: "";
}

.newsitem:hover:after {
  transform: translate(0, 0);
}
/* 3Dfont */
.solid-shadow {
  /* 影を縦方向に重ねる */
  text-shadow: 
  0 0.01em 0 #aaa,
  0 0.02em 0 #999,
  0 0.03em 0 #888,
  0 0.04em 0 #777,
  0 0.05em 0 #666,
  0 0.06em 0 #555,
  0 0.07em 0 #444,
  0 0.08em 0 #333,
  0 0.09em 0 #222,
  0 0.1em 0 #111;
}
/* サンプル用装飾 */
.solid-shadow {
  font-size: 16px;
  font-weight: bold;
  color: #00082E;
}

/* CSS   アニメーション　画面ロゴ表示 */
.shutter{
  width: 100%;
  height: 100%;
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  margin: auto;
  background-color:#fff;
  z-index:99;
  -webkit-animation: byeShutter 2.4s forwards;
  animation: byeShutter 2.4s forwards;
}
.logo {
  position: absolute;
  width: 100px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-animation: logo 0.5s forwards;
  animation: logo 0.5s forwards;
  animation-delay: 0.2s;
}
@keyframes byeShutter {
70% {
  opacity: 1;
}
100% {
  display: none;
  opacity: 0;
  z-index: -1;
}
}
@keyframes logo {
0% {
  opacity: 1;
}
  
50% {
  transform: rotate(0deg);     
}
  100% {
  transform: scale(0.8);
  }
}
