/* =========================
   section1
========================= */
.lower-layer_section {
    padding: 50px 0 0;
}

.blog-inner {
    width: clamp(0px, calc(100% - 40px), 1080px);
    margin: 0 auto;
}

.blog-head-wrap {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: clamp(40px, 10.25vw, 140px);
    align-items: end;
    margin-bottom: clamp(2px, 0.37vw, 5px);
}

.blog-title {
    font-family: "ABeeZee", sans-serif;
    font-weight: 400;
    font-size: clamp(48px, 7.32vw, 100px);
    line-height: 1;
    color: #BFD1C6;
    margin: 0;
}

.blog-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    margin-bottom: clamp(4px, 0.73vw, 10px);
    font-family: "dnp-shuei-mgothic-std", sans-serif;
    font-weight: 400;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: clamp(6px, 0.73vw, 10px);
    margin-bottom: clamp(48px, 7.9vw, 108px);
    padding-left: clamp(4px, 0.73vw, 10px);
}

.blog-dot {
    width: clamp(6px, 0.88vw, 12px);
    height: clamp(6px, 0.88vw, 12px);
    background: #006E7C;
    border-radius: 50%;
}

.blog-meta-text {
    font-size: clamp(14px, 1.46vw, 20px);
    color: #000;
    font-family: "dnp-shuei-mgothic-std", sans-serif;
    font-weight: 400;
}

@media screen and (max-width: 819px) {
    .blog-head-wrap {
        grid-template-columns: 1fr;
        row-gap: 12px;
        align-items: start;
    }

    .blog-title {
        font-size: clamp(48px, 12vw, 72px);
    }

    .blog-desc {
        max-width: none;
    }


    /* 見出しブロックだけ制御 */
    .blog-inner:first-of-type {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    /* 中の h2 / desc を同階層にする */
    .blog-inner:first-of-type .blog-head-wrap {
        display: contents;
    }

    /* ▼ 並び順を作る */
    .blog-inner:first-of-type .blog-title {
        order: 1;
    }

    .blog-inner:first-of-type .blog-meta {
        order: 2;
        margin-bottom: 0;
    }

    .blog-inner:first-of-type .blog-desc {
        order: 3;
    }

    /* ▼ それ以外は全部下に送る */
    .blog-inner:first-of-type .blog-category-hint,
    .blog-inner:first-of-type .blog-category {
        order: 10;
    }
}

/* テキストは必ず前面 */
.lower-layer_section>* {
    position: relative;
    z-index: 1;
}

@media (max-width: 1365px) {
    .lower-layer_section::before {
        left: 0;
        top: 130px;
        width: clamp(120px, 17.3vw, 250px);
        height: clamp(120px, 17.3vw, 250px);
    }
}


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

/* =========================
   section2
========================= */
.company__inner {
    width: min(1080px, calc(100% - 40px));
    margin: 0 auto;
}

.company__table {
    font-family: "dnp-shuei-mgothic-std", sans-serif;
    font-weight: 400;
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    font-size: 16px;
    color: #000;

}

.company__table th,
.company__table td {
    padding: clamp(20px, 2.2vw, 30px) 0 clamp(17px, 1.83vw, 25px) 0;
    border-bottom: 1px solid #BFD1C6;
    vertical-align: top;
    line-height: 1.25;
}

.company__table th {
    width: clamp(110px, 10.98vw, 150px);
    font-weight: 400;
    text-align: left;
    position: relative;
}

/* 左側のブルーライン */
.company__table th::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: clamp(110px, 10.98vw, 150px);
    height: 2px;
    background: #006E7C;
}

/* 最終行の下線も維持 */
.company__table tr:last-child th,
.company__table tr:last-child td {
    border-bottom: 1px solid #BFD1C6;
}

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

@media (max-width: 768px) {

    .company__table th {
        display: block;
        width: 50%;
        padding: 20px 0 10px;
    }

    .company__table td {
        display: block;
        width: 100%;
        padding: 20px 0 10px;
    }

    .company__table th {
        border-bottom: none;
    }

    .company__table th::after {
        width: 100%;
    }

    .company__table td {
        margin-bottom: 30px;
    }
}

/* =========================
   section3
========================= */
.officer {
    background-color: #F9F9F9;
    margin: clamp(60px, 8.8vw, 120px) auto;
    padding: clamp(40px, 5.8vw, 80px) 0;
}

.officer__inner {
    width: min(1080px, calc(100% - 40px));
    margin: 0 auto;
}

.officer__heading {
    font-family: "dnp-shuei-mgothic-std", sans-serif;
    font-weight: 600;
    font-size: clamp(20px, 2.6vw, 36px);
    color: #006E7C;
    margin-bottom: clamp(40px, 5.8vw, 80px);
}

.officer__list {
    display: flex;
    flex-direction: column;
    gap: clamp(25px, 3.6vw, 50px);
}

.officer__item {
    display: flex;
    align-items: flex-start;
    gap: clamp(40px, 5.8vw, 80px);
}

.officer__image {
    width: clamp(260px, 36.6vw, 500px);
    overflow: hidden;
    flex-shrink: 0;
}

.officer__image img {
    width: 100%;
    height: auto;
    display: block;
}

.officer__content {
    flex: 1;
    padding-top: clamp(2px, 0.36vw, 5px);
}

.officer__position {
    font-size: 16px;
    color: #000;
    line-height: 1.5;
    font-family: "dnp-shuei-mgothic-std", sans-serif;
    font-weight: 400;
}

.officer__name {
    line-height: 1.5;
    font-size: clamp(22px, 2.05vw, 28px);
    font-family: "dnp-shuei-mgothic-std", sans-serif;
    font-weight: 400;
    margin-bottom: clamp(15px, 2.2vw, 30px);
}

.officer__en {
    line-height: 1.5;
    font-family: "dnp-shuei-mgothic-std", sans-serif;
    font-weight: 400;
    margin-left: clamp(5px, 0.73vw, 10px);
    color: #006E7C;
    font-size: clamp(14px, 1.46vw, 20px);
}

.officer__text {
    font-size: clamp(16px, 1.32vw, 18px);
    line-height: 1.5;
    color: #000;
}

/* =========================================
   SP
========================================= */
@media (max-width: 768px) {
    .officer__image img {
        width: 60%;
    }

    .officer {
        margin: 80px auto;
    }

    .officer__heading {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .officer__item {
        flex-direction: column;
        gap: 32px;
        margin-bottom: 40px;
    }

    .officer__image {
        width: 100%;
    }

    .officer__content {
        padding-top: 0;
    }

    .officer__text {
        max-width: 100%;
    }

    .officer__name {
        font-size: 22px;
    }
}

@media (max-width: 520px) {
    .officer__image img {
        width: 100%;
    }
}