@charset "utf-8";

/*
************************************************************************
* ボタン類
* @copyright Revolme Inc.
************************************************************************
*/

/* ################################################################################################ */
/* ## PC                         ################################################################## */
/* ################################################################################################ */

.button
{
    -webkit-appearance : none;
    -webkit-tap-highlight-color : rgba(0,0,0,0);
    
    border-radius:0.5em;
    
    display:inline-block;
    
	transition-duration:0.2s;
	transition-property:all;
	transition-timing-function:ease;
}
.button > span
{
    display:block;
    
    padding:0.8em 1.5em;
    
    line-height:1.2;
    
	transition-duration:0.2s;
	transition-property:all;
	transition-timing-function:ease;
}
.button:hover
{
	text-decoration:none;
}
.button:hover > span
{
}

.button.button-small
{
	font-size:0.8em;
}
.button.button-small > span
{
    padding:0.5em 0.6em;
}
.button.button-warning
{
}
.button.button-warning:hover
{
}




/* ################################################################################################ */
/* ## TAB                        ################################################################## */
/* ################################################################################################ */
@media screen and (max-width:1100px) {


}

/* ################################################################################################ */
/* ## スマホサイト用スタイル ###################################################################### */
/* ################################################################################################ */
@media screen and (max-width:640px) {
    button {
        background-color: transparent;
    }
    .select-button-item {
        width: calc(50% - 2em);
        margin: 0.5em 1em;
        text-align: center;
    }
    .select-button {
        border-radius: 3.125vw 0 3.125vw 0;

        padding: 2.34vw 0;
        font-size: 0.9em;
    }
}
