@charset "UTF-8";

.contents_btn01 .content_wrapper>a {
    min-width: 210px;
}
/*---------追従ボタン---------*/
.m_top_btn {
    display: block;
    position: absolute;
    right: 5px;
    bottom: calc(100% + 120px);
    background: var(--i_btn_color);
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    width: 80px;
    height: 80px;
}
.m_top_btn a {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    width: 100%;
    height: 100%;
    pointer-events: auto;
    transition: .4s ease-in-out;
}
.m_top_btn a:hover {
   opacity: 0.7;
}
.m_top_btn a img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
@media screen and (max-width: 768px) {
.m_top_btn {
    width: 70px;
    height: 70px;
}
.m_top_btn a img {
    width: 32px;
    height: 32px;
}
}