@charset "utf-8";

.progress-ttl {
    display: flex;
    justify-content: center;
    align-items: center;
}

.progress-ttl h2 {
    font-size: 2rem;
    font-family: "Noto Serif JP", serif;
    font-weight: bold;
    color: #5F4C2D;
}

.circle-progress {
    width: 2.5rem;
    height: 2.5rem;
    transform: translate(0px, 2px);
    margin-right: 1.5rem;
}

.circular-chart {
    display: block;
    max-width: 100%;
    max-height: 250px;
}

.circle-bg {
    fill: none;
    stroke: #c6c6c6;
    stroke-width: 2.8;
}

.circle {
    fill: none;
    stroke: #312c1e;
    stroke-width: 2.8;
    stroke-linecap: butt;
    transform: rotate(0deg);
    transform-origin: center;
    transition: stroke-dasharray 0.5s ease;
}

.percentage {
    fill: #5f4c2c;
    font-size: 0.8rem;
    font-weight: 500;
    text-anchor: middle;
    transform: translate(0px, 2px);
}

@media screen and (max-width: 640px) {
    .percentage {
    font-size: 1.0rem;
}
}