/*======質問内容のためのcss======*/
  .list-009 {
    list-style-type: disc;
    list-style-position: inside;
    padding: 1em;
    border: 3px solid #25d0cd;
	margin-left:15%;
	margin-right:15%;
}

.list-009 li {
    padding: .5em;
}

.list-009 li:not(:last-child) {
    border-bottom: 3px dashed #25d0cd;
}

.list-009 li::marker {
    color: #25d0cd;
    font-size: 1.1em;
}



/*======質問回答のためのcss=====*/
.balloon-009 {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 0 22px;
	margin-left: 0;
}

.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: '';
}



/*=======右吹き出し=====*/
.balloon-013 {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 0 22px;
}

.balloon-013 img {
    max-width: 70px;
    height: 100%;
    border: 3px solid #f2f7b7;
    border-radius: 50%;
}

.balloon-013 p {
    position: relative;
    max-width: 800px;
    margin: 3px 0 0;
    padding: .8em 1em;
    border-radius: 5px;
    background-color: #f2f7b7;
    color: #333333;
}

.balloon-013 p::before {
    position: absolute;
    right: -15px;
    width: 15px;
    height: 30px;
    background-color: #f2f7b7;
    clip-path: polygon(0 0, 100% 50%, 0 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: #f4fdff;
    color: #333333;
  }