@charset "utf-8";

/*
************************************************************************
* button ボタン
************************************************************************
*/

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


/*ボタンの上にあるリボン*/
.button-contact .ribbon {
    position: absolute;
    left: 10%;
    bottom: 10%;
    transition-duration: 3s;
    transition-property: all;
    transition-timing-function: ease;
}
.button-contact .ribbon img.off-img,
.block-button-contact:hover .button-contact .ribbon img.on-img {
    display: block;
}
.block-button-contact:hover .button-contact .ribbon img.off-img,
.button-contact .ribbon img.on-img {
    display: none;
}
.button-contact .ribbon img {
    width: 240px;
    height: auto;
}
.block-button-contact:hover .button-contact .ribbon {
    left: 1%;
    bottom: 1%;
    transition-duration: 3s;
    transition-property: all;
    transition-timing-function: ease;
}
.block-button-contact:hover .button-contact .ribbon img {
    width: 250px;
}



/*ボタン*/
button {
	background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}
button.button-contact {
	display: block;
	color: #fff;
	text-align: center;
	font-size: 2.1em;
	font-weight: bold;
	border-radius: 9999px;
}
button.button-contact.animation {
    transition-duration: 3s;
}
button.animation.animation-button-contact {
    transition-duration: 3s;
    transition-property: all;
    transition-timing-function: ease;
}


/*ボタンの色と大きさ*/
button.button-contact.button-contact-mama {
    margin-bottom: 1em;
    padding: 1.2em 0;
    max-width: 660px;
    width: 60%;
    background-color: rgba(255, 96, 0 ,0.75);
}
button.button-contact.button-contact-mama:hover {
    max-width: 90%;
    width: 90%;
    background-color: rgba(188, 119, 72,0.49);
}

button.button-contact.button-contact-company {
    padding: 1em 0;
    max-width: 910px;
    width: 70%;
    background-color: rgba(255, 96, 0 ,1);
}

/*ボタンの中にあるテキスト*/
button.button-contact .button-link {
    margin-right: 1em;
}

/*ボタンの外にあるテキスト*/
.button-contact + .button-contact-text{
	position: absolute;
	opacity: 0;
	top: 50%;
	right: 10%;

	transform: translateY(-50%);

	transition-duration: 3s;
    transition-property: all;
    transition-timing-function: ease;

    font-size: 1.5em;
    line-height: 1.1;
    color: #fff;
}
.button-contact:hover + .button-contact-text{
	opacity: 1;
	transition-duration: 3s;
    transition-property: all;
    transition-timing-function: ease;
}



.box-button {
    display: flex;
    flex-wrap: nowrap;
}
.box-button.box-button-2 {
    justify-content: space-around;
}
.box-button.box-button-1 {
    justify-content: center;
}
.box-button .button-item {
    margin-top: 3em;
}



.button-reserve {
    
    text-align: center;
}
.button-reserve a {
    display: inline-block;
    width: 350px;
    border-radius: 0.2em;
    background-color: #EE7B35;
    color: #fff;
    font-size: 1.25em;
    padding: 0.5em 0;
}








