/* カスタマーハラスメント 禁止行為イメージ */
.harass-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 50px 3%;
}
.harass-list li {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
}
/* 上段2つを中央寄せ・下段3つ */
.harass-list li:nth-child(1) {
    grid-column: 2 / 4;
}
.harass-list li:nth-child(2) {
    grid-column: 4 / 6;
}
.harass-list .img {
    position: relative;
    aspect-ratio: 450 / 325;
    background-color: #fff;
    border: 4px solid #38894f;
    border-bottom: none;
    border-radius: 50% 50% 0 0 / 69.2% 69.2% 0 0;
    overflow: hidden;
    box-sizing: border-box;
}
.harass-list .img img {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 94%;
    height: auto;
    transform: translateX(-50%);
}
.harass-list .label {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #38894f;
    border-radius: 0 0 10px 10px;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    text-align: center;
    padding: 22px 10px;
}
.correspondence ul {
	  background-color: #f8f6f3;
    border: #218D49 1px solid;
    padding: 30px 45px;
    border-radius: 12px;
    margin-bottom: 30px;
}
.correspondence ul li {
    list-style-position: inside;
    list-style-type: disc;
    font-size: 16px;
    padding: 8px;
    border-bottom: #218D49 1px dashed;
}
.correspondence ul li:last-child {
		border-bottom: none;
}
.correspondence p {
    font-size: 16px;
    font-weight: 600;
    color: #218d49;
}

@media screen and (max-width:1150px){
    .harass-list .label {
        font-size: 18px;
        padding: 18px 10px;
    }
}
@media screen and (max-width:640px){
    .harass-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px 4%;
    }
    .harass-list li {
        width: 48%;
    }
    .harass-list .img {
        border-width: 3px;
    }
    .harass-list .label {
        font-size: 14px;
        padding: 12px 5px;
        border-radius: 0 0 6px 6px;
    }
		.correspondence ul {
			padding: 15px 25px;
			margin-bottom: 20px;
		}
		.correspondence ul li {
			font-size: 15px;
		}
}
