@charset "utf-8";
/* 基本設定 */
.sp,
.show1050
/* ,
.sp-header,
.menu-lists */
 {
    display: none;
}

@media screen and (max-width: 1050px) {
    .show1050 {
        display: block;
    }
}
@media screen and (max-width: 768px) {
    .sp {
        display: block;
    }
    .pc {
        display: none;
    }
}
html,
body {
    font-family: '小塚ゴシック Pro','Kozuka Gothic Pro',YakuHanJP,sans-serif;
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
    position: relative;
    font-weight: normal;
    background: url('images/bg-img-re.png') center center;
    background-position: bottom;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main {
    flex: 1;
    overflow-x: hidden;
}
h1,
h2 {
    font-family: 'Ropa Sans', sans-serif;
    font-weight: bold;
}
img {
    width: 100%;
    height: auto;
}
a {
    transition: .3s;
}
.flx {
    display: flex;
}
section {
    padding: 0 15%;
    opacity: 0;
    animation: late-open 0.8s ease-in 3s forwards;
}

/* footer */
#start {
    width: 100%;
}
#foot-box {
    width: 100%;
    background-color: #000;
    height: 57px;
    position: fixed;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    z-index: 99;
}
.foot {
    font-family: 'Ropa Sans', sans-serif;
    font-weight: bold;
    letter-spacing: 1px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: #fff;
    background-color: #000;
    padding: 10px 15px;
    margin: 0 auto;
    max-width: 1080px;
    width: 100%;
    height: 57px;
}
.foot h1 {
    max-width: 264px;
    width: 100%;
    letter-spacing: 2px;
    line-height: 1;
}
.foot ul {
    display: flex;
}
.foot ul li {
    font-size: 15px;
    line-height: 1;
}

/* about */
#about {
    text-align: center;
    font-size: 15px;
    margin-bottom: 190px;
    animation: late-open 0.8s ease-in 1.5s forwards;
    opacity: 0;
}
@keyframes late-open {
      to {
        opacity: 1;
      }
    }
#about h2 {
    font-size: 26px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}
#about p {
  line-height: 2.2;
  letter-spacing: 2px;
}

/* pro1 */
#pro1,
#pro2,
#pro3,
#pro4,
#pro5 {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}
#pro1 {
    margin-bottom: 120px;
}
#pro1 figure,
#pro2 figure,
#pro3 figure,
#pro4 figure,
#pro5 figure {
    width: 100%;
}
.pro-img-link figure a{
    z-index: 9;
    position: absolute;
    max-width: 420px;
    width: 35%;
    left:50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    bottom: 19%;
}
.pro-img-link figure a img {
    filter: drop-shadow(0 5px 0.5rem #938f8f);
    transition: 0.2s;
    padding-top: 50px;
}
.pro-img-link figure a img:hover {
    transform: scale(1.05,1.05);
}
/* ツールチップ設定 */
.description {
    z-index: 10;
    display: none;
    position: absolute;
    padding: 35px 70px;
    background: #fff;
    border: 1px solid #000;
    max-width: 500px;
}

.description::before {
    content: "";
    position: absolute;
    top: calc(100% + 1px);
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    border-style: solid;
    border-color: #000 transparent transparent transparent;
    border-width: 48px 50px 48px 0px;
    cursor: pointer;
}
.description h3 {
    font-family: 'Sawarabi Gothic', sans-serif;
    font-size: 21px;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 2px;
}
.description h3 span {
    display: block;
    font-size: 14px;
    font-weight: bold;
    font-family: 'Ropa Sans', sans-serif;
    letter-spacing: 2px;
}
.description .more-text {
    transition: 0.3s;
}
.description .more-text a {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-family: 'Ropa Sans', sans-serif;
    letter-spacing: 2px;
    margin-top: 30px;
    position: relative;
}
.description .more-text a span {
    position: absolute;
    top: 0;
    right: 3px;
}
.description .more-text a:hover span {
    right: 0px;
}
.description .more-text a::before {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: rgb(0, 0, 0);
    margin-right: 10px;
}
.description .more-text a span {
    transition: 0.3s;
}
.pro-img-link:hover .description{
    display: inline-block;
    bottom: 53%;
    left:50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    animation: bubbleUp 0.3s 1;
}
/*アニメーションの内容*/
@-moz-keyframes bubbleUp {
0% {bottom:50%; opacity:0;}
100% {bottom:53%; opacity:1;}
}
@-webkit-keyframes bubbleUp {
0% {bottom:50%; opacity:0;}
100% {bottom:53%; opacity:1;}
}
@-o-keyframes bubbleUp {
0% {bottom:50%; opacity:0;}
100% {bottom:53%; opacity:1;}
}
@keyframes bubbleUp {
0% {bottom:50%; opacity:0;}
100% {bottom:53%; opacity:1;}
}


@media screen and (max-width: 1415px) {
    .description {
        padding: 30px 30px;
    }
    .description .more-text a {
        margin-top: 10px;
    }
}

@media screen and (max-width: 1120px) {
    .description h3 {
        font-size: 19px;
    }
}
@media screen and (max-width: 1050px) {
    .description {
        padding: 30px 20px;
    }
    .description1 {
        width: 100%;
    }
}


/* title */
#title {
    position: relative;
}
#title figure {
    max-width: 1200px;
    margin: 0 auto;
}
#title h1 {
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    bottom: 4%;
    /* font-size: 43px;
    line-height: 1.5;
    padding-left: 20px;
    border-left: 1px solid #000; */
    
    /* 再表示 */
    opacity: 0;
    /* animation: late-open 1s ease-in 4s forwards; */
    max-height: 182px;
    height: 15vw;
    /* width: auto;
    right: 0;
    left: 1.9vw; */
    /* margin: auto; */
    text-align: center;
    margin-left: -207px;
}
@media screen and (max-width: 1170px) {
  #title h1 {
    margin-left: -25%;
  }
}

#title h1 img {
  height: 100%;
  width: auto;
}

/* #title h1 span {
    display: block;
    line-height: 1;
    letter-spacing: 3px;
}
#title h1 span:not(:last-child) {
    margin-bottom: 25px;
} */
#title .catch {
    position: absolute;
    bottom: 23%;
    left: 50%;
    margin-left: -20px;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: upright;
    /* font-family: 'Sawarabi Gothic', sans-serif; */
    font-family: sans-serif;
    font-size: 17px;
    font-weight: bold;
    letter-spacing: 4px;
    
    /* 再表示 */
    opacity: 0;
    /* animation: late-open 1s ease-in 5s forwards; */
    line-height: 1.6;
}


/* 要素フェードインアニメーション */
#title h1.e-v {
  animation: fadeIn 1s ease-in 0s forwards;
}
#title .catch.e-v2 {
  animation: fadeIn 1s ease-in 0s forwards;
}
/* #title .catch.e-v2 {
  animation: fadeIn 1s ease forwards;
} */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY( 0 );
  }
  100% {
    opacity: 1;
    transform: translateY( 0 );
  }
}


@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY( 0 );
  }
  100% {
    opacity: 1;
    transform: translateY( 0 );
  }
}

.scroll-arrow {
  max-width: 11px;
  position: absolute;
  bottom: 100px;
  right: 40px;
  opacity: 0;
  animation: late-open 1s ease-in 2.5s forwards;
}

.scroll-arrow span.sc-arrow1 {
  position: absolute;
  top: -15px;
  left: 0;
  width: 9px;
  height: 9px;
  
  border-right: 2px solid #000;
  border-top: 2px solid #000;
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
  -webkit-animation: sdb 1.5s infinite;
  animation: sdb 1.5s infinite;
  box-sizing: border-box;
}
.scroll-arrow span.sc-arrow2 {
  position: absolute;
  top: -8px;
  left: 0;
  width: 9px;
  height: 9px;
  
  border-right: 2px solid #000;
  border-top: 2px solid #000;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb 1.5s infinite;
  animation: sdb 1.5s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(10px, -10px);
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(10px, -10px);
    opacity: 0;
  }
}








@media screen and (max-width: 1050px) {
    /* #title h1 {
        font-size: 35px;
        bottom: 6%;
    }
    #title h1 span:not(:last-child) {
        margin-bottom: 20px;
    } */
    #title .catch {
        font-size: 16px;
    }
}




/* pro2 */
#pro2 {
    margin-bottom: 25%;
}
.pro-img-link.tooltip2 figure a{
    max-width: 380px;
    width: 32%;
    left:39.7%;
    bottom: 24%;
}
.pro-img-link.tooltip2 figure a img {
    padding: 0;
}

.description2 {
    width: 40%;
}

.description2::before {
    content: "";
    position: absolute;
    top: 48px;
    left: -48px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    border-style: solid;
    border-color: #000 transparent transparent transparent;
    border-width: 48px 0px 50px 48px;
    cursor: pointer;
}
.pro-img-link.tooltip2:hover .description2{
    display: inline-block;
    bottom: auto;
    top: 55%;
    left: auto;
    right:0%;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    animation: bubbleUp2 0.3s 1;
}
/*アニメーションの内容*/
@-moz-keyframes bubbleUp2 {
0% {top:58%; opacity:0;}
100% {top:55%; opacity:1;}
}
@-webkit-keyframes bubbleUp2 {
0% {top:58%; opacity:0;}
100% {top:55%; opacity:1;}
}
@-o-keyframes bubbleUp2 {
0% {top:58%; opacity:0;}
100% {top:55%; opacity:1;}
}
@keyframes bubbleUp2 {
0% {top:58%; opacity:0;}
100% {top:55%; opacity:1;}
}

/* pro3 */
#pro3 {
    margin-bottom: 5%;
}
.pro-img-link.tooltip3 figure a{
    max-width: 500px;
    width: 40%;
    left: 55%;
    bottom: 16%;
}
.pro-img-link.tooltip3 figure a img {
    padding: 0;
}

.description3 {
    width: 40%;
    z-index: 11;
}

.description3::before {
    content: "";
    position: absolute;
    top: 47px;
    left: auto;
    right: -50px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    border-style: solid;
    border-color: #000 transparent transparent transparent;
    border-width: 48px 50px 48px 0px;
    cursor: pointer;
}
.pro-img-link.tooltip3:hover .description3{
    display: inline-block;
    bottom: auto;
    top: 47%;
    left: 2%;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    animation: bubbleUp3 0.3s 1;
}
/*アニメーションの内容*/
@-moz-keyframes bubbleUp3 {
0% {top:50%; opacity:0;}
100% {top:47%; opacity:1;}
}
@-webkit-keyframes bubbleUp3 {
0% {top:50%; opacity:0;}
100% {top:47%; opacity:1;}
}
@-o-keyframes bubbleUp3 {
0% {top:50%; opacity:0;}
100% {top:47%; opacity:1;}
}
@keyframes bubbleUp3 {
0% {top:50%; opacity:0;}
100% {top:47%; opacity:1;}
}


/* pro4 */
#pro4 {
    margin-bottom: 80px;
}

.pro-img-link.tooltip4 figure a{
    max-width: 500px;
    width: 37%;
    left:31.5%;
    bottom: 14%;
}
.pro-img-link.tooltip4 figure a img {

    padding: 0;
}

.description4 {
    width: 40%;
}

.description4::before {
    content: "";
    position: absolute;
    top: 48px;
    left: -48px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    border-style: solid;
    border-color: #000 transparent transparent transparent;
    border-width: 48px 0px 50px 48px;
    cursor: pointer;
}
.pro-img-link.tooltip4:hover .description4{
    display: inline-block;
    bottom: auto;
    top: 55%;
    left: 55%;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    animation: bubbleUp4 0.3s 1;
    z-index: 12;
}
/*アニメーションの内容*/
@-moz-keyframes bubbleUp4 {
0% {top:58%; opacity:0;}
100% {top:55%; opacity:1;}
}
@-webkit-keyframes bubbleUp4 {
0% {top:58%; opacity:0;}
100% {top:55%; opacity:1;}
}
@-o-keyframes bubbleUp4 {
0% {top:58%; opacity:0;}
100% {top:55%; opacity:1;}
}
@keyframes bubbleUp4 {
0% {top:58%; opacity:0;}
100% {top:55%; opacity:1;}
}




/* pro5 */
#pro5 {
    margin-bottom: 5%;
}
.pro-img-link.tooltip5 figure a{
    max-width: 650px;
    width: 53%;
    left: auto;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    right: 4%;
    bottom: 3%;
}
.pro-img-link.tooltip5 figure a img {
    padding: 0;
}

.description5 {
    width: 40%;
    z-index: 11;
}

.description5::before {
    content: "";
    position: absolute;
    top: 47px;
    left: auto;
    right: -50px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    border-style: solid;
    border-color: #000 transparent transparent transparent;
    border-width: 48px 50px 48px 0px;
    cursor: pointer;
}
.pro-img-link.tooltip5:hover .description5{
    display: inline-block;
    bottom: auto;
    top: 60%;
    left: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    animation: bubbleUp5 0.3s 1;
}
/*アニメーションの内容*/
@-moz-keyframes bubbleUp5 {
0% {top:63%; opacity:0;}
100% {top:60%; opacity:1;}
}
@-webkit-keyframes bubbleUp5 {
0% {top:63%; opacity:0;}
100% {top:60%; opacity:1;}
}
@-o-keyframes bubbleUp5 {
0% {top:63%; opacity:0;}
100% {top:60%; opacity:1;}
}
@keyframes bubbleUp5 {
0% {top:63%; opacity:0;}
100% {top:60%; opacity:1;}
}




/* ヘッダー */
header {
    padding: 80px 0 0 15px;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}

header p {
    font-size: 12px;
    font-family: 'Ropa Sans', sans-serif;
    font-weight: bold;
    text-align: left;
    letter-spacing: 2px;
}



/* SP */
@media screen and (max-width: 768px) {
    html,
    body {
        font-size: 14px;
        line-height: 1.5;
    }
    .show1050 {
      display: none;
    }
    .foot {
      padding: 10px;
    }
    .foot h1 {
      width: 45%;
      letter-spacing: 1px;
    }
    .foot h1 a {
      display: flex;
      align-items: flex-start;
    }
    .foot ul li {
      letter-spacing: 0px;
      font-size: 13px;
    }
    section {
        padding: 0;
    }
    #about {
      font-size: 13px;
      margin-bottom: 150px;
    }
    #about h2 {
      font-size: 17px;
      letter-spacing: 0;
    }
    #pro1 {
      margin-top: 125px;
      margin-bottom: 140px;
    }
    
    #title h1 {
      bottom: -2%;
      width: 60%;
      max-width: 300px;
      height: auto;
      margin-left: -21%;
    }
    
    #title .catch {
      font-size: 15px;
      bottom: 20%;
    }
    .description {
      width: 78%;
      padding: 22px 20px;
      font-size: 12px;
      line-height: 1.8;
    }
    .description::before {
      border-width: 35px 37px 35px 0px;
    }
    .description h3 {
      font-size: 16px;
      margin-bottom: 10px;
    }
    .pro-img-link figure a img {
        filter: drop-shadow(0 2px 0.2rem #858181);
    }
    .pro-img-link figure a img:hover {
        transform: scale(1.15,1.15);
    }
    
    /* pro2 */
    #pro2 {
        margin-top: 20%;
        margin-bottom: 30%;
    }
    .description2::before {
        top: calc(100% + 35px);
        left: 50%;
        border-width: 35px 37px 35px 0px;
    }
    .pro-img-link.tooltip2:hover .description2{
        top: auto;
        bottom: 100%;
        right:auto;
        left: 50%;
        -webkit-transform: translate(-50%,0);
        transform: translate(-50%, 0);
    }
    @-moz-keyframes bubbleUp2 {
    0% {bottom:97%; opacity:0;}
    100% {bottom:100%; opacity:1;}
    }
    @-webkit-keyframes bubbleUp2 {
    0% {bottom:97%; opacity:0;}
    100% {bottom:100%; opacity:1;}
    }
    @-o-keyframes bubbleUp2 {
    0% {bottom:97%; opacity:0;}
    100% {bottom:100%; opacity:1;}
    }
    @keyframes bubbleUp2 {
    0% {bottom:97%; opacity:0;}
    100% {bottom:100%; opacity:1;}
    }
    
    /* pro3 */
    .description3::before {
        top: -48px;
        right: auto;
        left: 50%;
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
        border-width: 0px;
        border-bottom: 48px solid #000;
        border-right: 50px solid transparent;
    }
    .pro-img-link.tooltip3:hover .description3{
        top: 86%;
        left: 50%;
        -webkit-transform: translate(-50%,0);
        transform: translate(-50%, 0);
    }
    /*アニメーションの内容*/
    @-moz-keyframes bubbleUp3 {
    0% {top:89%; opacity:0;}
    100% {top:86%; opacity:1;}
    }
    @-webkit-keyframes bubbleUp3 {
    0% {top:89%; opacity:0;}
    100% {top:86%; opacity:1;}
    }
    @-o-keyframes bubbleUp3 {
    0% {top:89%; opacity:0;}
    100% {top:86%; opacity:1;}
    }
    @keyframes bubbleUp3 {
    0% {top:89%; opacity:0;}
    100% {top:86%; opacity:1;}
    }
    
    /* pro4 */
    #pro4 {
        margin-bottom: 20%;
    }
    .description4::before {
        top: -48px;
        right: auto;
        left: 50%;
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
        border-width: 0px;
        border-bottom: 48px solid #000;
        border-right: 50px solid transparent;
    }
    .pro-img-link.tooltip4:hover .description4{
        top: 95%;
        left: 50%;
        -webkit-transform: translate(-50%,0);
        transform: translate(-50%, 0);
    }
    /*アニメーションの内容*/
    @-moz-keyframes bubbleUp4 {
    0% {top:98%; opacity:0;}
    100% {top:95%; opacity:1;}
    }
    @-webkit-keyframes bubbleUp4 {
    0% {top:98%; opacity:0;}
    100% {top:95%; opacity:1;}
    }
    @-o-keyframes bubbleUp4 {
    0% {top:98%; opacity:0;}
    100% {top:95%; opacity:1;}
    }
    @keyframes bubbleUp4 {
    0% {top:98%; opacity:0;}
    100% {top:95%; opacity:1;}
    }
    
    
    /* pro5 */
    #pro5 {
        margin-bottom: 17%;
    }
    .description5::before {
        top: -48px;
        right: auto;
        left: 50%;
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
        border-width: 0px;
        border-bottom: 48px solid #000;
        border-right: 50px solid transparent;
    }
    .pro-img-link.tooltip5:hover .description5{
        top: 95%;
        left: 50%;
        -webkit-transform: translate(-50%,0);
        transform: translate(-50%, 0);
    }
    /*アニメーションの内容*/
    @-moz-keyframes bubbleUp5 {
    0% {top:98%; opacity:0;}
    100% {top:95%; opacity:1;}
    }
    @-webkit-keyframes bubbleUp5 {
    0% {top:98%; opacity:0;}
    100% {top:95%; opacity:1;}
    }
    @-o-keyframes bubbleUp5 {
    0% {top:98%; opacity:0;}
    100% {top:95%; opacity:1;}
    }
    @keyframes bubbleUp5 {
    0% {top:98%; opacity:0;}
    100% {top:95%; opacity:1;}
    }
    
    header {
      padding: 15px 20px;
    }
    
    
    .scroll-arrow {
      max-width: 8px;
      position: absolute;
      bottom: 70px;
      right: 10px;
      opacity: 0;
      animation: late-open 1s ease-in 2.5s forwards;
    }
    
    .scroll-arrow span.sc-arrow1 {
      position: absolute;
      top: -15px;
      left: 0;
      width: 7px;
      height: 7px;
      
      border-right: 2px solid #000;
      border-top: 2px solid #000;
      -webkit-transform: rotate(-30deg);
      transform: rotate(-30deg);
      -webkit-animation: sdb 1.5s infinite;
      animation: sdb 1.5s infinite;
      box-sizing: border-box;
    }
    .scroll-arrow span.sc-arrow2 {
      position: absolute;
      top: -8px;
      left: 0;
      width: 7px;
      height: 7px;
      
      border-right: 2px solid #000;
      border-top: 2px solid #000;
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg);
      -webkit-animation: sdb 1.5s infinite;
      animation: sdb 1.5s infinite;
      box-sizing: border-box;
    }
    @-webkit-keyframes sdb {
      0% {
        -webkit-transform: rotate(-45deg) translate(0, 0);
        opacity: 0;
      }
      50% {
        opacity: 1;
      }
      100% {
        -webkit-transform: rotate(-45deg) translate(10px, -10px);
        opacity: 0;
      }
    }
    @keyframes sdb {
      0% {
        transform: rotate(-45deg) translate(0, 0);
        opacity: 0;
      }
      50% {
        opacity: 1;
      }
      100% {
        transform: rotate(-45deg) translate(10px, -10px);
        opacity: 0;
      }
    }
    
}

@media screen and (max-width: 650px) {
  #title h1 {
    margin-left: -25%;
  }
}
@media screen and (max-width: 590px) {
  #title h1 {
    margin-left: -28%;
  }
}

@media screen and (max-width: 499px) {
  #title .catch {
    font-size: 14px;
    bottom: 20%;
  }
  #title h1 {
    margin-left: -32.5%;
  }
  
}
@media screen and (max-width: 365px) {
  #title h1 {
    bottom: 2%;
  }
  #title .catch {
    bottom: 18%;
    letter-spacing: 3px;
  }
  #about {
    font-size: 12px;
    
  }
  #about h2 {
    font-size: 15px;
  }
}



/* パラシュート猫 */
#sky {
    position: relative;
}

#sky .p-cat a {
    position: absolute;
    top: 42%;
    right: 17%;
    max-width: 180px;
    width: 19%;


}

#sky .p-cat a {
    -moz-animation: swing linear 1s infinite;
    -moz-transform-origin: center -12px 0;
    -webkit-animation: swing linear 1s infinite;
    -webkit-transform-origin: center -12px 0;
    -ms-animation: swing linear 4s infinite;
    -ms-transform-origin: center -12px 0;
    -o-animation: swing linear 4s infinite;
    -o-transform-origin:center -12px 0;
    animation: swing linear 4s infinite;
    transform-origin: center -12px 0;
}
#sky .p-cat a img {
    display: block;
    transition: .2s;
}

#sky .p-cat a img:hover {
    transform: scale(1.05,1.05);
}

}

@-moz-keyframes swing {
    0% { -moz-transform: rotate(0deg) }
    25% { -moz-transform: rotate(10deg); }
    50% { -moz-transform: rotate(0deg); }
    75% { -moz-transform: rotate(-10deg); }
    100% { -moz-transform: rotate(0deg); }
}
@-webkit-keyframes swing {
    0% { -webkit-transform: rotate(0deg); }
    25% { -webkit-transform: rotate(10deg); }
    50% { -webkit-transform: rotate(0deg); }
    75% { -webkit-transform: rotate(-10deg); }
    100% { -webkit-transform: rotate(0deg); }
}    
@-o-keyframes swing {
    0% { -o-transform: rotate(0deg); }
    25% { -o-transform: rotate(10deg); }
    50% { -o-transform: rotate(0deg); }
    75% { -o-transform: rotate(-10deg); }
    100% { -o-transform: rotate(0deg); }
}
@-ms-keyframes swing {
    0% { -ms-transform: rotate(0deg); }
    25% { -ms-transform: rotate(10deg); }
    50% { -ms-transform: rotate(0deg); }
    75% { -ms-transform: rotate(-10deg); }
    100% { -ms-transform: rotate(0deg); }
}
@keyframes swing {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(-10deg); }
    100% { transform: rotate(0deg); }
}


















