/* all */
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;
}

/* パンくずstyle */
.breadcrumb {
    display: flex;
    align-items: center;
    max-width: 1280px;
    margin: auto;
    padding: 0 20px;
    font-size: 16px;
    margin-bottom: 80px;

}

.breadcrumb-home {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    /* 画像と文字の間 */
    text-decoration: none;
    color: #006E7C;
}

.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;
    }
}

/* h1 {
    font-size: clamp(24px, 6vw, 40px);
    color: #3a3a3a;
}

p {
    font-size: clamp(14px, 3vw, 16px);
    color: #3a3a3a;
    line-height: 1.6;
    letter-spacing: 0.03em;
} */

/* a {
    color: #3a3a3a;
} */

main {
    /* background: radial-gradient(circle at 20% 30%, rgba(173, 216, 230, 0.6), transparent 40%),
        radial-gradient(circle at 80% 40%, rgba(255, 182, 193, 0.5), transparent 35%),
        radial-gradient(circle at 50% 80%, rgba(144, 238, 144, 0.5), transparent 30%),
        linear-gradient(135deg, #f0f9ff, #e0f7fa, #fce4ec);
    background-repeat: no-repeat;
    background-attachment: fixed; */
    width: 100%;
    /* min-height: 100vh; */
    /* padding-top: clamp(75px, 8vw, 150px); */
    ;
}

/* footer {
    width: 100%;
    height: 100px;
    background-color: rgb(249, 205, 121);
} */

/* h1 {
    font-size: clamp(24px, 2.5vw, 32px);
    margin-top: clamp(5px, 1vw, 20px);
    margin-bottom: clamp(20px, 4vw, 50px);
} */
p {
    font-size: 16px;
    white-space: normal;
    overflow-wrap: anywhere;
}



/* 投稿 card */
.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;
}

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

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