.default_tab_content_design {
    width: 100%;
    align-self: start;
}

.tab_title_area {
    height: 48px;
    width: 100%;
    background-color: #ececec;
    text-align: left;
}

.tab_content_title {
    height: 100%;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    margin-left: 12px;
}

.tab_content_detail {
    /* width: 90%; */
    margin: 0 12px;
}

.explain_img {
    /* width: 360px; */
    text-align: center;
}
.explain_img>img {
    width: 100%;
}

.disaster_block {
    display: flex;
    flex-direction: column;
    padding: 12px;
    gap: 12px;
    background-color: #F3F4FB;
    border-radius: 4px;
}

.disaster_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 72px;
    width: 72px;
    min-width: 72px; /* これがないとアイコン右のテキストが長い時にアイコン幅が小さくなる */
    padding: 6px;
    border: 2px solid #002596;
    border-radius: 6px;
    box-sizing:border-box;
}

.hazardmap_legend {
    display:flex;
    height: 26px;
    width: 80px;
    min-width: 80px; /* これがないとアイコン右のテキストが長い時にアイコン幅が小さくなる */
    box-sizing:border-box;
}

/* タブレット用 */
@media screen and (min-width: 481px) {
    .default_tab_content_design {
        max-width: 488px;
    }
}

/* PC用 */
@media screen and (min-width: 960px) {
  
}