@charset "UTF-8";

/*== ボタン タイプ００１ */
.btn_type001{
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    border: 1px solid #A01559;
    padding: 14px 50px;
    text-align: center;
    outline: none;
    transition: ease .2s;
    border-radius: 6px;
    background-color: white;
    color: #A01559;
    transition: .4s;
}
.btn_type001 span {
    position: relative;
    z-index: 3;
    font-weight: bold;
    padding-left: 20px;
}

.btn_type001 span:before {
    content: "";
    position: absolute;
    top: 30%;
    left: -10px;
    width: 8px;
    height: 8px;
    border: 1px solid;
    border-color: #A01559 #A01559 transparent transparent;
    transform: rotate(45deg);
}
.btn_type001:hover{
    opacity: initial;
    color: white !important;
    background-color: #A01559;
}
.btn_type001:hover span:before {
    border-color: #fff #fff transparent transparent;
}


/* 光が走るアニメーション */
.btnshine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    transform: skewX(-25deg);
}
.btnshine:hover::before {
    animation: shine 0.7s;
}
@keyframes shine {
    100% {
        left: 125%;
    }
}

/* /光が走るアニメーション */


/* 拡大・縮小するアニメーション */
.zoomIn{
    animation-name:zoomInAnime;
    animation-duration:0.4s;
    animation-fill-mode:forwards;
}

@keyframes zoomInAnime{
  from {
    transform: scale(0.6);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* 縮小 */
.zoomOut{
    animation-name:zoomOutAnime;
    animation-duration:0.4s;
    animation-fill-mode:forwards;
}

@keyframes zoomOutAnime{
  from {
    transform: scale(1.2);
    opacity: 0;
  }

  to {
    transform:scale(1);
    opacity: 1;
  }
}
.zoomInTrigger,
.zoomOutTrigger{
    opacity: 0;
}
/* /拡大・縮小するアニメーション */
