
@charset "UTF-8";

.content_wrapper .anchor_org {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.content_wrapper .anchor_org a {
    width: calc(100% / 3 - 2rem * 2 / 3);
    display: flex;
    align-items: center;
    gap: 1rem;
}
.content_wrapper .anchor_org a img {
    width: 40px;
}
.content_wrapper .anchor_org a span {
    font-size: 1.8rem;
}
@media screen and (max-width: 900px) {
.content_wrapper .anchor_org a {
    width: calc(100% / 2 - 2rem * 1 / 2);
}
}
@media screen and (max-width: 600px) {
.content_wrapper .anchor_org {
    gap: 1rem;
}
.content_wrapper .anchor_org a {
    gap: 1rem;
}
.content_wrapper .anchor_org a img {
    width: 30px;
}
.content_wrapper .anchor_org a span {
    font-size: 1.4rem;
}
}