@charset "UTF-8";

/* ========================================
lower fv
======================================== */

.lower-fv {
    position: relative;
    min-height: 500px;
    padding-top: 150px;
    background: url("../img/paper-bg.png") repeat center top / 900px auto;
    overflow: hidden;
}

.lower-fv::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    z-index: 1;
    width: 100%;
    height: 240px;
    background: #f3eee9;
    clip-path: polygon(0 62%,
            6% 50%,
            14% 48%,
            22% 42%,
            30% 28%,
            38% 20%,
            46% 34%,
            54% 35%,
            62% 18%,
            72% 16%,
            82% 28%,
            91% 20%,
            100% 31%,
            100% 100%,
            0 100%);
}

.lower-fv__inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.lower-fv__inner h1 {
    margin: 0;
    color: #81756e;
    font-size: clamp(48px, 5vw, 72px);
    line-height: 1;
    letter-spacing: .24em;
}

.lower-fv__inner p {
    margin-top: 20px;
    color: #81756e;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .18em;
}

.lower-fv__bird {
    right: 8%;
    bottom: 150px;
    width: clamp(90px, 9vw, 150px);
    z-index: 3;
}

/* ========================================
breadcrumb
======================================== */

.breadcrumb {
  background: #f3eee9;
  padding: 28px 0 80px;
}

.breadcrumb__inner {
    width: min(100% - 80px, 1320px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #81756e;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .28em;
}

.breadcrumb__inner a {
    transition: .3s ease;
}

.breadcrumb__inner a:hover {
    opacity: .6;
}

.breadcrumb__current {
    display: inline-block;
    max-width: 420px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #2f2926;
}

/* SP */
@media screen and (max-width: 900px) {
    .breadcrumb__inner {
        width: calc(100% - 40px);

        gap: 6px;

        font-size: 10px;
        letter-spacing: .18em;
    }

    .breadcrumb__current {
        max-width: 140px;
    }
}

/* ========================================
news detail
======================================== */

.news-detail {
    padding: 90px 0 0;
    background: #f3eee9;
}

.news-detail__inner {
    width: min(100% - 80px, 1120px);
    margin: 0 auto;
    padding: 42px 48px 70px;
    border-radius: 8px;
    background: #fff;
}

.news-detail__meta {
    display: flex;
    align-items: center;
    gap: 28px;
}

.news-detail__meta time {
    color: #2b2522;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
}

.news-detail__meta span {
    min-width: 120px;
    padding: 8px 18px;
    border: 1px solid #2b2522;
    text-align: center;
    color: #2b2522;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
}

.news-detail__title {
    margin: 42px 0 26px;
    padding-bottom: 30px;
    border-bottom: 1px solid #8d8179;
    color: #2b2522;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: .16em;
}

.news-detail__content p {
    margin: 0 0 34px;
    color: #2b2522;
    font-size: 14px;
    font-weight: 500;
    line-height: 2.4;
    letter-spacing: .12em;
}

.news-detail__content figure {
    margin: 58px auto;
    max-width: 500px;
    width: 100%;
}

.news-detail__content figure img {
    width: 100%;
    border-radius: 8px;
}

.news-detail__content h2 {
    margin: 54px 0 34px;
    padding: 12px 18px;
    background: #463a32;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: .14em;
}

.news-detail-back {
    padding: 90px 0 140px;
    background: #f3eee9;
}

.news-detail-back__inner {
    width: min(100% - 80px, 1320px);
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.news-detail-back__button {
    letter-spacing: .18em;
}

/* ========================================
SP
======================================== */

@media screen and (max-width: 900px) {
    .news-detail {
        padding: 20px 0 0;
    }

    .news-detail__inner {
        width: calc(100% - 40px);
        padding: 32px 22px 48px;
    }

    .news-detail__meta {
        gap: 14px;
        flex-wrap: wrap;
    }

    .news-detail__meta span {
        min-width: 100px;
        padding: 7px 14px;
    }

    .news-detail__title {
        margin: 32px 0 24px;
        padding-bottom: 24px;
        font-size: 18px;
        letter-spacing: .1em;
    }

    .news-detail__content p {
        font-size: 13px;
        line-height: 2.1;
        letter-spacing: .08em;
    }

    .news-detail__content figure {
        margin: 42px auto;
    }

    .news-detail__content h2 {
        margin: 44px 0 28px;
        font-size: 15px;
    }

    .news-detail-back {
        padding: 60px 0 90px;
    }

    .news-detail-back__inner {
        width: calc(100% - 40px);
    }
}