@charset "utf-8";

/* ============================================
   歯科衛生士ページ (hygienist)
   Figma: PC_歯科衛生士ページ(1920) / SP_歯科衛生士ページ(390)
============================================ */

#hygienist__page main {
    --hyg-gold: #ae8d5e;
    --hyg-badge: #9B844C;
    --hyg-navy: #02193c;
    --hyg-text: #44474e;
    font-family: var(--sans);
}

/* --------------------------------------------
   MV
-------------------------------------------- */
.hyg_mv {
    position: relative;
}

.hyg_mv_photo img {
    width: 100%;
    height: min(594px, 30.94vw);
    object-fit: cover;
    object-position: center top;
}

.hyg_mv_box {
    position: absolute;
    top: calc(50% + 3.65vw); /* Figma: ボックス中心は写真中心より70px下 (70/1920) */
    transform: translateY(-50%);
    left: 11.9vw;
    max-width: 700px;
    padding: 40px 56px 36px 48px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.85) 45%, rgba(255, 255, 255, 0));
}

.hyg_mv_en {
    color: var(--hyg-gold);
    font-family: var(--sans);
    font-size: 17px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 24px;
}

.hyg_mv_title {
    color: #333;
    font-family: var(--sans);
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    padding-bottom: 28px;
    border-bottom: 1px solid #b5b5b5;
    margin-bottom: 24px;
}

.hyg_mv_lead {
    color: #333;
    font-family: var(--sans);
    font-size: 18px;
    font-weight: 300;
    line-height: 2;
    white-space: nowrap;
}

@media (max-width: 1279px) {
    .hyg_mv_box {
        left: 6vw;
        padding: 32px 40px 28px 32px;
    }

    .hyg_mv_title {
        font-size: 40px;
    }

    .hyg_mv_lead {
        font-size: 16px;
        white-space: normal;
    }
}

@media (max-width: 767px) {
    .hyg_mv {
        background-image: url("/recruit/assets/img/hygienist/bg-pattern.jpg");
        background-size: 12px 12px;
    }

    .hyg_mv_photo img {
        height: 94vw;
        object-position: center;
    }

    .hyg_mv_box {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 88%;
        max-width: none;
        margin: -24vw auto 0 0;
        padding: 20px 6vw 24px;
        background: rgba(255, 255, 255, 0.92);
    }

    .hyg_mv_en {
        font-size: 12px;
        margin-bottom: 14px;
    }

    .hyg_mv_title {
        font-size: 26px;
        padding-bottom: 16px;
        margin-bottom: 16px;
    }

    .hyg_mv_lead {
        font-size: 14px;
    }
}

/* --------------------------------------------
   ABOUT（予防歯科の主役として）
-------------------------------------------- */
.hyg_about {
    background-image: url("/recruit/assets/img/hygienist/bg-pattern.jpg");
    background-size: 12px 12px;
    padding: 120px 0 100px;
}

.hyg_about_inner {
    max-width: 1140px;
    width: 92%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 500px) minmax(0, 49%);
    grid-template-areas:
        "head photo"
        "body photo";
    justify-content: space-between;
    align-items: start;
}

.hyg_about_head {
    grid-area: head;
    padding-top: 48px;
}

.hyg_label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
}

.hyg_label_line {
    display: block;
    width: 32px;
    height: 1px;
    background-color: var(--hyg-gold);
}

.hyg_label_text {
    color: var(--hyg-gold);
    font-family: "Inter", var(--sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.hyg_about_title {
    color: #333;
    font-family: 'Noto Serif JP', var(--serif);
    font-size: 40px;
    font-weight: 300;
    line-height: 1.5;
    white-space: nowrap;
}

.hyg_about_body {
    grid-area: body;
    margin-top: 48px;
    color: #333;
    font-size: 18px;
    font-weight: 300;
    line-height: 2;
}

.hyg_about_photo {
    grid-area: photo;
    position: relative;
    z-index: 0;
}

.hyg_about_photo::before {
    content: "";
    position: absolute;
    top: 35px;
    left: 33px;
    right: -33px;
    bottom: -35px;
    background-color: #e4e2d9;
    z-index: -1;
}

.hyg_about_photo img {
    aspect-ratio: 559 / 410;
    object-fit: cover;
}

@media (max-width: 1279px) {
    .hyg_about {
        padding: 80px 0 72px;
    }

    .hyg_about_inner {
        grid-template-columns: minmax(0, 44%) minmax(0, 49%);
    }

    .hyg_about_head {
        padding-top: 0;
    }

    .hyg_about_title {
        font-size: 32px;
        white-space: normal;
    }

    .hyg_about_body {
        font-size: 16px;
        margin-top: 32px;
    }
}

@media (max-width: 767px) {
    .hyg_about {
        padding: 48px 0 64px;
    }

    .hyg_about_inner {
        display: block;
        width: 100%;
    }

    .hyg_about_head {
        width: 88%;
        margin: 0 auto;
    }

    .hyg_label {
        margin-bottom: 20px;
    }

    .hyg_label_text {
        font-size: 12px;
    }

    .hyg_about_title {
        font-size: 25px;
        line-height: 1.6;
    }

    .hyg_about_photo {
        width: 88%;
        margin: 32px auto 0 6%;
    }

    .hyg_about_photo::before {
        top: 12px;
        left: 20px;
        right: -20px;
        bottom: -12px;
    }

    .hyg_about_photo img {
        aspect-ratio: 342 / 223;
    }

    .hyg_about_body {
        width: 84%;
        margin: 36px auto 0;
        font-size: 14px;
    }
}

/* --------------------------------------------
   REASON（3つの理由）
-------------------------------------------- */
.hyg_reason {
    background-image: url("/recruit/assets/img/hygienist/bg-reason.jpg");
    background-size: cover;
    background-position: center;
    padding: 110px 0 96px;
}

.hyg_reason_inner {
    max-width: 1140px;
    width: 92%;
    margin: 0 auto;
}

.hyg_reason_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: 'Noto Serif JP', var(--serif);
    font-weight: 300;
    color: #333;
    margin-bottom: 140px;
}

.hyg_reason_title_top {
    font-size: 40px;
    line-height: 1.4;
}

.hyg_reason_title_bottom {
    font-size: 40px;
    line-height: 1.2;
    display: flex;
    align-items: center;
}

.hyg_reason_title_num {
    color: var(--hyg-gold);
    font-size: 96px;
    line-height: 1;
    margin-right: 8px;
}

.hyg_reason_list {
    display: block;
}

.hyg_reason_card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 0 36px 64px;
    margin-bottom: 146px;
}

.hyg_reason_card:last-child {
    margin-bottom: 0;
}

.hyg_reason_card.is-reverse {
    flex-direction: row-reverse;
}

.hyg_reason_photo {
    width: 56%;
    margin-top: -50px;
}

.hyg_reason_photo img {
    aspect-ratio: 610 / 430;
    object-fit: cover;
    border-radius: 14px;
}

.hyg_reason_body {
    width: 34%;
    margin-top: -82px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* バッジ（円＋番号） */
.hyg_reason_badge {
    position: relative;
    width: 165px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
}

.hyg_reason_badge::before {
    content: "";
    position: absolute;
    bottom: 4.4%;
    left: 50%;
    transform: translateX(-50%);
    width: 76.4%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: var(--hyg-badge);
    opacity: 0.7;
}

.hyg_reason_badge::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 85.2%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 3px solid var(--hyg-badge);
}

.hyg_reason_badge_num {
    position: absolute;
    top: 31%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-family: 'Noto Serif JP', var(--serif);
    font-size: 64px;
    font-weight: 300;
    line-height: 1;
    z-index: 1;
}

.hyg_reason_badge_en {
    position: absolute;
    top: 67%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-family: 'Noto Serif JP', var(--serif);
    font-size: 19px;
    font-weight: 300;
    line-height: 1;
    z-index: 1;
}

.hyg_reason_name {
    color: #444;
    font-family: 'Noto Serif JP', var(--serif);
    font-size: 32px;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    margin-top: 52px;
}

.hyg_reason_text {
    color: var(--hyg-text);
    font-size: 16px;
    font-weight: 300;
    line-height: 2;
    letter-spacing: 0.03em;
    margin-top: 48px;
}

@media (max-width: 1279px) {
    .hyg_reason {
        padding: 80px 0 72px;
    }

    .hyg_reason_title {
        margin-bottom: 110px;
    }

    .hyg_reason_title_top,
    .hyg_reason_title_bottom {
        font-size: 32px;
    }

    .hyg_reason_title_num {
        font-size: 72px;
    }

    .hyg_reason_card {
        padding: 0 24px 48px;
        margin-bottom: 110px;
    }

    .hyg_reason_photo {
        width: 54%;
    }

    .hyg_reason_body {
        width: 40%;
        margin-top: -60px;
    }

    .hyg_reason_badge {
        width: 120px;
    }

    .hyg_reason_badge_num {
        font-size: 46px;
    }

    .hyg_reason_badge_en {
        font-size: 14px;
    }

    .hyg_reason_name {
        font-size: 24px;
        margin-top: 36px;
    }

    .hyg_reason_text {
        font-size: 15px;
        margin-top: 28px;
    }
}

@media (max-width: 767px) {
    .hyg_reason {
        padding: 64px 0 80px;
    }

    .hyg_reason_inner {
        width: 100%;
    }

    .hyg_reason_title {
        margin-bottom: 56px;
    }

    .hyg_reason_title_top {
        font-size: 28px;
    }

    .hyg_reason_title_bottom {
        font-size: 28px;
    }

    .hyg_reason_title_num {
        font-size: 60px;
    }

    .hyg_reason_card,
    .hyg_reason_card.is-reverse {
        display: block;
        background: none;
        padding: 0;
        margin-bottom: 80px;
    }

    .hyg_reason_photo {
        width: 84%;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .hyg_reason_photo img {
        aspect-ratio: 325 / 214;
        border-radius: 13px;
    }

    .hyg_reason_body {
        width: 92%;
        margin: -70px auto 0 0;
        background-color: rgba(255, 255, 255, 0.85);
        padding: 0 7vw 44px;
    }

    .hyg_reason_card.is-reverse .hyg_reason_body {
        margin: -70px 0 0 auto;
    }

    .hyg_reason_badge {
        width: 83px;
        margin-top: 28px;
        z-index: 2;
    }

    .hyg_reason_badge::after {
        border-width: 2px;
    }

    .hyg_reason_badge_num {
        font-size: 32px;
    }

    .hyg_reason_badge_en {
        font-size: 10px;
    }

    .hyg_reason_name {
        font-size: 22px;
        margin-top: 24px;
    }

    .hyg_reason_text {
        font-size: 14px;
        margin-top: 24px;
    }
}

/* --------------------------------------------
   RECRUIT（募集要項）
-------------------------------------------- */
.hyg_recruit {
    background-image: url("/recruit/assets/img/hygienist/bg-pattern.jpg");
    background-size: 12px 12px;
    padding: 88px 0 116px;
}

.hyg_recruit_inner {
    max-width: 1140px;
    width: 92%;
    margin: 0 auto;
}

.hyg_recruit_en {
    color: #e5dfdf;
    opacity: 0.7;
    font-family: 'Noto Serif JP', var(--serif);
    font-size: clamp(60px, 6.67vw, 128px);
    font-weight: 400;
    letter-spacing: 0.12em;
    line-height: 1;
    text-align: center;
    text-indent: 0.12em;
}

.hyg_recruit_title {
    color: #333;
    font-family: 'Noto Serif JP', var(--serif);
    font-size: 40px;
    font-weight: 300;
    line-height: 1.4;
    text-align: center;
    margin-top: 16px;
    margin-bottom: 94px;
}

.hyg_recruit_table {
    background-color: #fff;
}

.hyg_recruit_row {
    display: grid;
    grid-template-columns: 270px 1fr;
    align-items: center;
    border-top: 1px solid #d6d6d6;
    padding: 60px 60px 60px 0;
}

.hyg_recruit_row dt {
    color: var(--hyg-navy);
    font-size: 18px;
    font-weight: 300;
    line-height: 2;
    text-align: center;
}

.hyg_recruit_row dd {
    color: #1b1c1c;
    font-size: 18px;
    font-weight: 300;
    line-height: 2;
}

.hyg_recruit_small {
    font-size: 16px;
}

@media (max-width: 1279px) {
    .hyg_recruit {
        padding: 64px 0 88px;
    }

    .hyg_recruit_title {
        font-size: 32px;
        margin-bottom: 64px;
    }

    .hyg_recruit_row {
        grid-template-columns: 180px 1fr;
        padding: 36px 36px 36px 0;
    }

    .hyg_recruit_row dt,
    .hyg_recruit_row dd {
        font-size: 16px;
    }

    .hyg_recruit_small {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .hyg_recruit {
        padding: 48px 0 72px;
    }

    .hyg_recruit_inner {
        width: 88%;
    }

    .hyg_recruit_en {
        font-size: 16.4vw;
    }

    .hyg_recruit_title {
        font-size: 27px;
        margin-top: 8px;
        margin-bottom: 40px;
    }

    .hyg_recruit_table {
        padding: 0 4.5%;
    }

    .hyg_recruit_row {
        display: block;
        padding: 36px 0;
        text-align: center;
    }

    .hyg_recruit_row dt {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .hyg_recruit_row dd {
        font-size: 14px;
        text-align: center;
    }

    .hyg_recruit_small {
        font-size: 12px;
    }
}

/* --------------------------------------------
   VISIT（まずは、医院を見に来ませんか？）
-------------------------------------------- */
.hyg_visit {
    background-color: #f5f3f3;
    padding: 76px 0 120px;
}

.hyg_visit_inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hyg_visit_inner::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: min(1140px, 92vw);
    top: calc(min(1327px, 96vw) * 0.2851 - 92px);
    bottom: 0;
    background-color: #fff;
}

.hyg_visit_photos {
    order: -1;
    position: relative;
    z-index: 1;
    display: flex;
    width: min(1327px, 96vw);
    margin-bottom: 40px;
}

.hyg_visit_photo {
    flex: 1;
    min-width: 0;
}

.hyg_visit_photo:nth-child(2) {
    transform: translateY(40px);
}

.hyg_visit_photo img {
    aspect-ratio: 663 / 378;
    object-fit: cover;
}

.hyg_visit_title {
    position: relative;
    color: var(--hyg-navy);
    font-family: 'Noto Serif JP', var(--serif);
    font-size: 36px;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    margin-top: 60px;
}

.hyg_visit_lead {
    position: relative;
    color: #1b1c1c;
    font-size: 18px;
    font-weight: 300;
    line-height: 2;
    text-align: center;
    margin-top: 28px;
    padding-bottom: 100px;
}

@media (max-width: 1279px) {
    .hyg_visit {
        padding: 56px 0 80px;
    }

    .hyg_visit_title {
        font-size: 28px;
        margin-top: 48px;
    }

    .hyg_visit_lead {
        font-size: 16px;
        width: 86%;
        padding-bottom: 64px;
    }

    .hyg_visit_inner::before {
        top: calc(96vw * 0.2851 - 64px);
    }
}

@media (max-width: 767px) {
    .hyg_visit {
        padding: 56px 0 88px;
    }

    .hyg_visit_inner::before {
        content: none;
    }

    .hyg_visit_photos {
        order: 0;
        width: 72%;
        margin: 0 auto;
    }

    .hyg_visit_title {
        font-size: 25px;
        margin-top: 0;
        margin-bottom: 36px;
        line-height: 1.7;
    }

    .hyg_visit_lead {
        background-color: #fff;
        width: 84%;
        margin: -104px auto 0;
        padding: 120px 7vw 40px;
        text-align: left;
        font-size: 14px;
    }
}
