html,
body,
input,
textarea,
button,
select {
    font-family: dnp-shuei-gothic-kin-std, sans-serif;
    font-style: normal;
    font-weight: 400;
}

.pc-only {
    display: inline-block;
}

.sp-only {
    display: none;
}

.breadcrumb {
    display: flex;
    align-items: center;
    max-width: 1280px;
    margin: auto;
    padding: 0 20px;
    font-size: 13px;
    margin-bottom: 24px;
    color: #28529E;
}

.breadcrumb-home {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #28529E;
}

.breadcrumb-home img {
    width: 16px;
    height: auto;
    display: block;
}

.breadcrumb-home-text {
    line-height: 1;
}

.breadcrumb-separator::before {
    content: "/";
    margin: 0 8px;
    color: #999;
}

.lower-layer_section {
    padding: 50px 0;
}

@media screen and (max-width: 819px) {
    .lower-layer_section {
        padding: 0px 0 50px;
    }

    .breadcrumb {
        flex-wrap: wrap;
        row-gap: 6px;
        font-size: 14px;
        margin-bottom: 20px;
    }
}


@media screen and (max-width: 819px) {
    .pc-only {
        display: none;
    }

    .sp-only {
        display: inline-block;
    }
}

main {
    width: 100%;
}

p {
    font-size: 16px;
    white-space: normal;
    overflow-wrap: anywhere;
}

.embed-card {
    display: flex;
    gap: 20px;
    padding: 16px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    background: #fff;
    text-decoration: none !important;
    color: inherit;
    margin: 30px auto;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.embed-card__thumb {
    width: 160px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
}

.embed-card__thumb img {
    width: 100%;
    height: auto;
    object-fit: initial;
    display: block;
}

.embed-card__body {
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
    overflow: hidden;
}

.embed-card__title,
.embed-card__excerpt,
.embed-card__site {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.embed-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.embed-card__excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.embed-card__footer {
    font-size: 12px;
    color: #888;
    display: none;
}

@media (max-width: 819px) {
    .embed-card {
        flex-direction: column;
    }

    .embed-card__thumb {
        width: 50%;
        margin: auto;
    }
}