@charset "UTF-8";
footer {
position: relative;
background: #fff;
padding: 20px 0 10px;
}
.footerLink {
display: flex;
justify-content: center;
gap: 10px;
margin-bottom: 10px;
}
#fixedTop a {
display: flex;
justify-content: center;
align-items: center;
position: fixed;
right: 40px;
width: 50px;
height: 50px;
font-size: 26px;
background: #fff;
z-index: 1;
border-radius: 10px;
-webkit-transform: translateZ(0);
}
#fixedTop a::before {
    content: "";
    display: block;
    position: relative;
    top: 4px;
    width: 16px;
    height: 16px;
    border-top: 3px solid var(--main-color);
    border-right: 3px solid var(--main-color);
    transform: rotate(-45deg);
}
#fixedTop a:hover {
opacity: 0.6;
}
.disclaimer,footer small {
display: block;
text-align: center;
font-size: clamp(0.75rem, 0.693rem + 0.24vw, 0.875rem);
padding: 0 20px;
}
.disclaimer {
margin-bottom: 5px;
color: #8c8f94;
}
@media screen and (max-width: 768px) {
#fixedTop a {
    right: 10px;
}
}