@charset "UTF-8";

/* btn
------------------------------ */

a.button{
	display:block ;
    width: 220px ;
    padding:7px 10px;
    margin-left:0 auto;
    margin-right:0 auto;
    text-align: center ;
    text-decoration: none ;
    background: #656565 ;/*ボタン色*/
    color: #fff ;
    border-bottom: solid 4px #656565 ;
    border-radius: 3px ;

}
a.button:active{
    -ms-transform: translateY(4px);
    -webkit-transform: translateY(4px);
    transform: translateY(4px);/*下に動く*/
    border-bottom: none;/*線を消す*/
}

a.childBtn:before{
    content:'';
    height:100%;
    display:inline-block;
    vertical-align:middle;
}
a.childBtn{
    font-size: 1.2rem;
    line-height: 5rem;
    margin: 2% auto;
    color:#fff;
    border:none;
    position:relative;
    text-align: center;
    height:80px;
    padding: 0 ;
    cursor:pointer;
    transition:800ms ease all;
    outline:none;
    background:#081d2c;
     }
a.childBtn:hover{
    background:#fff;
    color:#081d2c;
     }
a.childBtn:before,
a.childBtn:after{
    content:'';
    position:absolute;
    top:0;
    right:0;
    height:2px;
    width:0;
    transition:400ms ease all;
    background: #081d2c;
     }
a.childBtn:after{
    right:inherit;
    top:inherit;
    left:0;
    bottom:0;
}
a.childBtn:hover:before,
a.childBtn:hover:after{
    width:100%;
    transition:800ms ease all;
}


a.btn-border {
    text-align: center;
    margin: 0 auto;
    border: 2px solid #081d2c;
    border-radius: 0;
    background: #fff;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    font-size: 1.2rem;
    width: 300px;
    height: 52px;
    padding: 2.5% 3%;
    color: #081d2c;
    font-weight: normal;
}

a.btn-border:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 100%;
    content: '';
    -webkit-transition: all .4s;
    transition: all .4s;
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
    border-radius: 0 50% 50% 0;
    background: #081d2c;
}

a.btn-border:hover:before {
    font-family: 'Font Awesome 5 Free';
    font-weight: bold;
    line-height: 30px;
    width: 30px;
    height: 30px;
    content: '\f061';
    -webkit-transform: translateX(950%) translateY(.6rem);
    transform: translateX(950%) translateY(.6rem);
    color: #fff;
    border-radius: 50%;
}

a.seriesBtn{  
    margin: 0 auto;
    display:block;
    padding: 3% 0;
    font-size: 1.1rem;
    letter-spacing: .1rem;
    text-align: center;
    text-decoration: none;
    border: 1px solid #505050 ;
    color: #505050;
    }
a.seriesBtn:hover{
    opacity: 10!important;
    color: #fff;
    background: #505050;
}


/* --------------------------------
* モール
* -------------------------------- */
@media screen and (max-width: 840px) {
    
.seriesBtn{ 
    margin: 4% 10% 10%;
    font-size: 1rem;
}
p.see{
    font-size: 1rem;
    font-weight: bold;
    text-align: right;
    color: #555;
}
}



  /* --------------------------------
  * SP
  * -------------------------------- */
@media screen and (max-width:639px) {
    
.seriesBtn{  
    margin: 2%;
    font-size: .9rem;
}
p.see{
    font-size: .9rem;
    font-weight: bold;
    text-align: right;
}
}