/* CSS Document */

.pc {
	display: block;
	opacity: 1;
	pointer-events: auto;
}
.sp {
	display: none;
	opacity: 0;
}

div.link-btn a {
    background: rgba(221, 203, 193, .4);
    border-radius: 50px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 260px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
div.link-btn a:hover {
    background: rgba(222, 105, 135, 1);
    color: #fff;
    text-decoration: none;
}
div.link-btn a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #313131;
    border-right: 3px solid #313131;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
div.link-btn a:hover:after {
    border-color: #FFF;
}

@media screen and (max-width: 520px) {

	.pc {
		display: none;
		opacity: 0;
		pointer-events: none;
	}
	.sp {
		display: block;
		opacity: 1;
	}

}