/* ねこBOX A*/
.neko-box-a {
 position: relative;
 margin: 4em auto 3em;
 padding: 20px 30px;
 width: 90%; /* ボックス幅 */
 background: #ffffff; /* ボックス背景色 */
 color: #333333; /* 文字色 */
 font-weight: bold; /* テキスト太字（不要なら行を削除） */
 text-align: center; /* テキスト中央（不要なら行を削除） */
 border: 5px solid #F3983B; /* ボックス枠線(太さ・線種・色) */
 border-radius: 50px;
 z-index: auto;
}
.neko-box-a::before, 
.neko-box-a::after {
 height: 60px;
 width: 60px;
 position: absolute;
 content:'';
 top: -30px;
 z-index: -10;
}
.neko-box-a::before {
 left: 20%;
 background: #555555; /* 左耳背景色 */
 border: 5px solid #F3983B; /* 左耳枠線(太さ・線種・色) */
 border-radius: 10px 50px 100px 50px;
 transform: rotate( 45deg );
}
.neko-box-a::after {
 right: 20%;
 background: #ffc0cd; /* 右耳背景色 */
 border: 5px solid #F3983B; /* 右耳枠線(太さ・線種・色) */
 border-radius: 50px 10px 50px 100px;
 transform: rotate( -45deg );
}
.neko-wrap-a{
 background-color: transparent;
 position: relative;
 z-index: 0;
}
@import url('https://fonts.googleapis.com/css?family=Muli:300,400,700,900');



.buttons{
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.buttons > button{
  margin-right: 30px;
}

.btn-gradient{
background: #1462ff;
    color: white;
    border-radius: 12px;
    padding: 12px 28px;
    box-shadow: 0 6px 30px -10px #4a74c9;
    transition: all 0.5s ease;
    border: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-gradient:hover{
  box-shadow: 0 0px 0px 0 rgba(0, 40, 120, 0);
  transform: scale(0.930);
}

.gradient2{
  background-image: linear-gradient(60deg, #4aa5fb 10%, #1ccafa 50%, #00e1f9 100%);
border-top-left-radius: 20px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 0px;
}

.gradient2:hover{
border-top-left-radius: 0px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 12px;
}

.gradient3{
  background-image: linear-gradient(60deg, #8c38fe 10%, #b72ee4 50%, #9c66e5 100%);
  box-shadow: 0 2px 25px 0 rgba(111, 30, 138, .35);
}

.gradient3:hover{
  box-shadow: 0 10px 30px #8c38fe, 0 5px 0 0 #9c66e5;
    transform: translateY(-5px);
}

.gradient4{
  background-image: linear-gradient(60deg, #43fa84 10%, #3afec0 50%, #38fee3 100%);
  box-shadow: 0 2px 25px 0 rgba(56, 254, 227, .35);
}

.gradient4:hover{
 box-shadow: 0px 10px 12px 0px #48f184b5, 0px 8px 2px 0 #57b396;
 transform: rotateX(50deg);
}
