/*========グラフQ1========*/
.pie-chart-003 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pie-chart-003 > div {
    width: 300px;
    height: 300px;
    margin: 0;
    border-radius: 50%;
    background-image: conic-gradient(#fe8074 83.6%, #a8cded 83.6% 100%);
}

.pie-chart-003 li {
    display: flex;
    list-style-type: none;
    align-items: center;
    font-size: .8em;
	margin-left: 30px;
}

.pie-chart-003 li::before {
    display: inline-block;
    width: 1.5em;
    height: .8em;
    margin-right: 5px;
    content: '';
}

.pie-chart-003 li:nth-child(1)::before {
    background-color: #fe8074;
}

.pie-chart-003 li:nth-child(2)::before {
    background-color: #a8cded;
}

.pie-chart-003 span {
    margin-right: 10px;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .pie-chart-003 {
        justify-content: center;
        align-items: center;
    }
    
    .pie-chart-003 > div {
        width: 100px;
        height: 100px;
        margin: 0;
        border-radius: 50%;
        background-image: conic-gradient(#74a7fe 83.6%, #cce8b5 83.6% 100%);
    }
    
    .pie-chart-003 li {
        list-style-type: none;
        align-items: center;
        font-size: .8em;
        margin-left: 30px;
    }
    
    .pie-chart-003 li::before {
        display: inline-block;
        width: 1.5em;
        height: .8em;
        margin-right: 5px;
        content: '';
    }
    
    .pie-chart-003 li:nth-child(1)::before {
        background-color: #74a7fe;
    }
    
    .pie-chart-003 li:nth-child(2)::before {
        background-color: #cce8b5;
    }
    
    .pie-chart-003 span {
        margin-right: 10px;
        font-weight: 600;
    }
  }


  
/*======質問回答のためのcss=====*/
.balloon-009 {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 0 22px;
}

.balloon-009 img {
    max-width: 70px;
    height: 100%;
    border: 3px solid #e6edf3;
    border-radius: 50%;
}

.balloon-009 p {
    position: relative;
    max-width: 900px;
    margin: 3px 0 0;
    padding: .8em 1em;
    border-radius: 5px;
    background-color: #e0efff;
    color: #333333;
}

.balloon-009 p::before {
    position: absolute;
    left: -15px;
    width: 15px;
    height: 30px;
    background-color: #e0efff;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
    content: '';
}



/*=====方眼紙======*/
.box-003 {
    max-width: 920px;
    margin: 0 auto;
    padding: 1em 1.5em;
    box-shadow: 0 4px 4px rgb(0 0 0 / 5%), 0 2px 3px -2px rgb(0 0 0 / 1%);
    background-image: linear-gradient(transparent calc(100% - 1px), #e6edf3 50%, #e6edf3), linear-gradient(90deg, transparent calc(100% - 1px), #e6edf3 50%, #e6edf3);
    background-size: 15px 15px;
    background-repeat: repeat;
    background-color: #fff8f4;
    color: #333333;
}