:root {
    --color-bg: #ffffff;
    --color-surface: #ffffff;
    --color-text: #1f2937;
    --color-accent: #0f766e;
    --container: 1200px;
    --big-inner: 1320px;
    --layout-gutter: 24px;
    --bg-image-gradation: url("/recruit/images/common/gradation.png");
    --bg-lightgreen: #edf2f2;
    --line-grey: #dddddd;
    --second-grey: #e6e6e6;
    --bg-darkgreen: #0e7f80;
    /* Figma node 64:2839 typography tokens */
    --font-family-noto-sans-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
    --font-family-poppins: "Poppins", sans-serif;
    --pc-h1-font-size: 56px;
    --pc-h1-font-weight: 700;
    --pc-h1-line-height: 1.3;
    --pc-h1-letter-spacing: 0.02em;
    --pc-h2-font-size: 48px;
    --pc-h2-font-weight: 700;
    --pc-h2-line-height: 1.3;
    --pc-h2-letter-spacing: 0.02em;
    --pc-h3-font-size: 32px;
    --pc-h3-font-weight: 700;
    --pc-h3-line-height: 1.4;
    --pc-h3-letter-spacing: 0.02em;
    --pc-h4-font-size: 24px;
    --pc-h4-font-weight: 700;
    --pc-h4-line-height: 1.5;
    --pc-h4-letter-spacing: 0.02em;
    --pc-h5-font-size: 20px;
    --pc-h5-font-weight: 700;
    --pc-h5-line-height: 1.5;
    --pc-h5-letter-spacing: 0.02em;
    --pc-p-reg-font-size: 17px;
    --pc-p-reg-font-weight: 400;
    --pc-p-reg-line-height: 1.7;
    --pc-p-reg-letter-spacing: 0.02em;
    --bg-gra: var(--bg-image-gradation);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-family-noto-sans-jp);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

.full {
    width: 100%;
}

.big-inner {
    width: min(var(--big-inner), 100% - var(--layout-gutter) * 2);
    margin: 0 auto;
}

.inner {
    width: min(var(--container), 100% - var(--layout-gutter) * 2);
    margin: 0 auto;
}

@media only screen and (min-width: 1080px) {
    .pcH {
        display: none !important;
    }
}
@media only screen and (min-width: 768px) and (max-width: 1079px) {
    .tabH {
        display: none !important;
    }
}
@media only screen and (max-width: 767px) {
    .spH {
        display: none !important;
    }
}

.t-pc-h1,
.t-pc-h2,
.t-pc-h3,
.t-pc-h4,
.t-pc-h5,
.t-pc-p-reg {
    font-family: var(--font-family-noto-sans-jp);
}

.poppins {
    font-family: var(--font-family-poppins);
}

.t-pc-h1 {
    font-size: var(--pc-h1-font-size);
    font-weight: var(--pc-h1-font-weight);
    line-height: var(--pc-h1-line-height);
    letter-spacing: var(--pc-h1-letter-spacing);
}

.t-pc-h2 {
    font-size: var(--pc-h2-font-size);
    font-weight: var(--pc-h2-font-weight);
    line-height: var(--pc-h2-line-height);
    letter-spacing: var(--pc-h2-letter-spacing);
}

.t-pc-h3 {
    font-size: var(--pc-h3-font-size);
    font-weight: var(--pc-h3-font-weight);
    line-height: var(--pc-h3-line-height);
    letter-spacing: var(--pc-h3-letter-spacing);
}

.t-pc-h4 {
    font-size: var(--pc-h4-font-size);
    font-weight: var(--pc-h4-font-weight);
    line-height: var(--pc-h4-line-height);
    letter-spacing: var(--pc-h4-letter-spacing);
}

.t-pc-h5 {
    font-size: var(--pc-h5-font-size);
    font-weight: var(--pc-h5-font-weight);
    line-height: var(--pc-h5-line-height);
    letter-spacing: var(--pc-h5-letter-spacing);
}

.t-pc-p-reg {
    font-size: var(--pc-p-reg-font-size);
    font-weight: var(--pc-p-reg-font-weight);
    line-height: var(--pc-p-reg-line-height);
    letter-spacing: var(--pc-p-reg-letter-spacing);
}

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 120;
}

.c-header {
    --header-height: 100px;
    width: 100%;
    height: var(--header-height);
}

.c-header__inner {
    width: min(1360px, 100% - 80px);
    height: var(--header-height);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 12;
}

.c-header__logo {
    display: inline-flex;
    height: var(--header-height);
    align-items: center;
    gap: 16px;
    padding: 20px 30px;
    background: #fff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: box-shadow 0.25s ease;
}

.c-header.is-panel-open .c-header__logo {
    box-shadow: none;
}

.c-header__logo-image {
    display: inline-flex;
    width: 163px;
    height: 40px;
}

.c-header__logo-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.c-header__recruit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    color: #000;
    font-size: 20px;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
}

.c-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.c-header__entry {
    min-width: 130px;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    border-radius: 60px;
    border: 0;
    background: linear-gradient(90deg, #00a082 0%, #1d73c7 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: opacity 0.4s ease;
}
@media (any-hover: hover) {
    .c-header__entry:hover {
        opacity: 0.7;
    }
}
.c-header__menu {
    min-width: 56px;
    height: 52px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    background: rgba(23, 23, 23, 0.1);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 16px;
    cursor: pointer;
    transition: background-color 0.25s ease, border-color 0.25s ease;
}

.c-header__menu-line {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.25s ease, width 0.3s ease, height 0.3s ease;
}

.c-header.is-menu-open .c-header__menu {
    background: #00a082;
    border-color: rgba(0, 0, 0, 0.05);
    margin-right: var(--scrollbar-width);
}

.c-header.is-menu-open .c-header__menu-line:nth-child(1) {
    width: 27.7px;
    height: 2.3px;
    transform: translateY(9.1px) rotate(45deg);
}

.c-header.is-menu-open .c-header__menu-line:nth-child(2) {
    opacity: 0;
}

.c-header.is-menu-open .c-header__menu-line:nth-child(3) {
    width: 27.7px;
    height: 2.3px;
    transform: translateY(-9.1px) rotate(-45deg);
}

.c-header__backdrop {
    position: fixed;
    inset: var(--header-height) 0 0;
    border: 0;
    margin: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 8;
}

.c-header.is-panel-open .c-header__backdrop {
    opacity: 1;
    pointer-events: auto;
}

.c-header__panel {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    border-top: 1px solid #f1f1f1;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-28px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
    z-index: 10;
    padding-top: calc(var(--header-height) + 20px);
}

.c-header__panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.c-header__panel.is-open::before {
    content: "";
    position: absolute;
    top: calc(-1 * var(--header-height));
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: #fff;
}

.c-header__panel-shell {
    width: min(1360px, 100% - 140px);
    margin: 0 auto;
    padding: 10px 0 60px;
}

.c-header-entry-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.c-header-entry-panel__group {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    background: #f7f7f7;
}

.c-header-entry-panel__title {
    width: 250px;
    margin: 0;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.33;
    letter-spacing: 0.08em;
}

.c-header-entry-panel__actions {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 0;
}

.c-header-entry-panel__actions > .c-header-panel-link {
    flex: 0 0 150px;
}

.c-header-entry-panel__actions > .c-header-panel-pill {
    flex: 1 1 0;
    min-width: 0;
    max-width: 300px;
}

.c-header-entry-panel__actions--career > .c-header-panel-pill {
    flex: 0 0 300px;
    width: 300px;
}

.c-header-panel-link {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: #000;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.08em;
    transition: color 0.4s ease;
}
@media (any-hover: hover) {
    .c-header-panel-link:hover {
        color: #0e7f80;
    }
}

.c-header-panel-link::before {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 1.5px solid #00a082;
    border-bottom: 1.5px solid #00a082;
    transform: rotate(-45deg);
}

.c-header-panel-link--single {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.c-header-panel-pill {
    min-height: 72px;
    padding: 10px 55px 12px 15px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 60px;
    background: #fff;
    color: #000;
    text-decoration: none;
    transition: opacity 0.4s ease;
}

@media (any-hover: hover) {
    .c-header-panel-pill:hover {
        opacity: 0.7;
    }
}

.c-header-panel-pill__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.c-header-panel-pill__logo {
    width: 148px;
    height: 20px;
    object-fit: contain;
}

.c-header-panel-pill__note {
    color: #000;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.08em;
}

.c-header-panel-pill__main {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.c-header-panel-pill__arrow {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background: #0e7f80;
}

.c-header-panel-pill__arrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-60%, -50%) rotate(45deg);
}

.c-header-panel-pill--primary {
    border-color: #0e7f80;
    background: #0e7f80;
}

.c-header-panel-pill--primary .c-header-panel-pill__arrow {
    background: #fff;
}

.c-header-panel-pill--primary .c-header-panel-pill__arrow::before {
    border-color: #0e7f80;
}

.c-header-menu-panel {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 56px;
}

.c-header-menu-panel__entry {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.c-header-menu-panel__entry .c-header-panel-pill {
    padding-left: 50px;
}
@media (max-width: 767px) {
    .c-header__panel--menu .c-header-menu-panel__entry .c-header-panel-pill {
        padding-left: 40px;
    }
}

.c-header-menu-panel__entry-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.c-header-menu-panel__entry-title {
    margin: 0;
    color: #000;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.08em;
}

.c-header-menu-panel__entry-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.c-header-menu-panel__entry .c-header-panel-pill {
    width: 100%;
}

.c-header-menu-panel__entry-group .c-header-panel-link {
    margin-top: 5px;
}

.c-header-menu-panel__nav {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.c-header-menu-panel__columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 64px;
}

.c-header-menu-panel__column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.c-header-menu-panel__group {
    display: flex;
    flex-direction: column;
}

.c-header-menu-panel__group-title {
    margin: 0;
    color: #000;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.08em;
}

.c-header-menu-panel__list {
    margin: 15px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.c-header-menu-panel__list--sub {
    margin-top: 15px;
    padding-left: 20px;
}

body.is-header-panel-open {
    overflow: hidden;
}

@media (max-width: 1080px) {
    :root {
        --pc-h1-font-size: 48px;
        --pc-h2-font-size: 42px;
        --pc-h3-font-size: 30px;
        --pc-h4-font-size: 22px;
        --pc-h5-font-size: 19px;
        --pc-p-reg-font-size: 16px;
    }
}
@media (max-width: 1080px) {
    .c-header__inner {
        width: calc(100% - 48px);
    }
    .c-header__logo {
        padding: 14px 20px;
        gap: 12px;
    }
    .c-header__logo-image {
        width: 140px;
        height: 34px;
    }
    .c-header__recruit {
        min-height: 44px;
        padding: 12px 14px;
        font-size: 17px;
    }
    .c-header__entry {
        min-width: 120px;
        min-height: 48px;
        padding: 12px 30px;
        font-size: 16px;
    }
    .c-header__menu {
        min-width: 52px;
        height: 48px;
    }
    .c-header__panel-shell {
        width: calc(100% - 48px);
    }
    .c-header-entry-panel__group {
        flex-direction: column;
        align-items: flex-start;
    }
    .c-header-entry-panel__title {
        width: auto;
    }
    .c-header-entry-panel__actions {
        width: 100%;
        flex-wrap: wrap;
    }
    .c-header-entry-panel__actions > .c-header-panel-link {
        flex: 0 0 100%;
    }
    .c-header-entry-panel__actions > .c-header-panel-pill {
        flex: 1 1 0;
        min-width: 0;
        max-width: 300px;
    }
    .c-header-entry-panel__actions--career > .c-header-panel-pill {
        flex: 0 0 300px;
        width: 300px;
    }
    .c-header-menu-panel {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
@media (max-width: 767px) {
    :root {
        --layout-gutter: 16px;
        --pc-h1-font-size: 34px;
        --pc-h2-font-size: 30px;
        --pc-h3-font-size: 24px;
        --pc-h4-font-size: 20px;
        --pc-h5-font-size: 18px;
        --pc-p-reg-font-size: 15px;
    }
    .c-header {
        --header-height: 72px;
        height: var(--header-height);
    }
    .c-header__inner {
        width: 100%;
        height: var(--header-height);
        margin: 0;
        padding-left: 20px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(40.5px);
    }
    .c-header__logo {
        height: 100%;
        padding: 0;
        gap: 11px;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
    }
    .c-header__logo-image {
        width: 128px;
        height: 31.5px;
    }
    .c-header__recruit {
        min-height: auto;
        padding: 4px 6px;
        border-radius: 4px;
        font-size: 13px;
        font-weight: 600;
        font-style: normal;
        line-height: 16px;
        letter-spacing: 0;
    }
    .c-header__actions {
        gap: 0;
        height: 100%;
    }
    .c-header__entry {
        display: none;
        min-width: 100px;
        min-height: 40px;
        padding: 10px 24px;
        font-size: 14px;
    }
    .c-header__menu {
        min-width: 72px;
        height: 72px;
        gap: 7px;
        padding: 10px 22px;
        border: 0;
        border-radius: 0;
        background: linear-gradient(90deg, #00a082 0%, #1d73c7 100%);
    }
    .c-header.is-menu-open .c-header__menu {
        background: linear-gradient(90deg, #00a082 0%, #1d73c7 100%);
    }
    .c-header__menu-line {
        width: 28px;
        height: 2px;
    }
    .c-header.is-menu-open .c-header__menu-line:nth-child(1),
    .c-header.is-menu-open .c-header__menu-line:nth-child(3) {
        width: 28px;
    }
    .c-header.is-menu-open .c-header__menu-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .c-header.is-menu-open .c-header__menu-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    .c-header__panel {
        max-height: 100dvh;
    }
    .c-header__panel--menu {
        padding-top: var(--header-height);
        background: #f7f7f7;
    }
    .c-header__panel--menu.is-open::before {
        background: rgba(255, 255, 255, 0.9);
    }
    .c-header__panel--menu .c-header__panel-shell {
        width: 100%;
        padding: 40px 24px 0;
    }
    .c-header__panel--menu .c-header-menu-panel {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .c-header__panel--menu .c-header-menu-panel__nav {
        order: 1;
        gap: 20px;
    }
    .c-header__panel--menu .c-header-menu-panel__columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .c-header__panel--menu .c-header-menu-panel__column {
        gap: 20px;
    }
    .c-header__panel--menu .c-header-menu-panel__group,
    .c-header__panel--menu .c-header-menu-panel__column > .c-header-menu-panel__list {
        border-top: 1px solid var(--second-grey);
        padding-top: 15px;
    }
    .c-header__panel--menu .c-header-menu-panel__group-title {
        font-size: 15px;
        line-height: 1.6;
    }
    .c-header__panel--menu .c-header-menu-panel__list {
        margin-top: 15px;
        gap: 20px;
    }
    .c-header__panel--menu .c-header-menu-panel__list--sub {
        margin-top: 20px;
        padding-left: 0;
    }
    .c-header__panel--menu .c-header-panel-link,
    .c-header__panel--menu .c-header-panel-link--single {
        font-size: 13px;
        font-weight: 500;
        line-height: 1;
        letter-spacing: 0.08em;
    }
    .c-header__panel--menu .c-header-menu-panel__entry {
        order: 2;
        gap: 30px;
        margin: 40px -24px 0;
        padding: 40px 24px;
        border-top: 1px solid var(--second-grey);
    }
    .c-header__panel--menu .c-header-menu-panel__entry-group {
        gap: 10px;
    }
    .c-header__panel--menu .c-header-menu-panel__entry-title {
        font-size: 15px;
        line-height: 1.6;
    }
    .c-header__panel--menu .c-header-menu-panel__entry-actions {
        gap: 10px;
    }
    .c-header__panel--menu .c-header-panel-pill {
        min-height: 62px;
        padding: 10px 50px 12px 15px;
        border-radius: 60px;
    }
    .c-header__panel--menu .c-header-panel-pill__logo {
        width: 148px;
        height: 20px;
    }
    .c-header__panel--menu .c-header-panel-pill__note {
        font-size: 12px;
        line-height: 1;
    }
    .c-header__panel--menu .c-header-panel-pill__arrow {
        width: 28px;
        height: 28px;
        right: 15px;
    }
    .c-header__panel--menu .c-header-menu-panel__entry .c-header-panel-pill--primary {
        min-height: 45px;
        padding: 10px 50px 10px 40px;
    }
    .c-header__panel--menu .c-header-menu-panel__entry .c-header-panel-pill--primary .c-header-panel-pill__main {
        font-size: 20px;
        line-height: 1.5;
        letter-spacing: 0.02em;
    }
    .c-header__panel-shell {
        width: calc(100% - 32px);
        padding: 12px 0 32px;
    }
    .c-header-entry-panel__group {
        padding: 16px;
    }
    .c-header-entry-panel__title,
    .c-header-menu-panel__entry-title,
    .c-header-menu-panel__group-title {
        font-size: 14px;
    }
    .c-header-entry-panel__actions,
    .c-header-menu-panel__columns,
    .c-header-menu-panel__column {
        gap: 12px;
    }
    .c-header-entry-panel__actions > .c-header-panel-pill {
        flex: 1 1 100%;
        width: 100%;
    }
    .c-header-menu-panel__columns {
        grid-template-columns: 1fr;
    }
    .c-header-panel-link {
        font-size: 12px;
    }
    .c-header-panel-link--single {
        font-size: 14px;
    }
    .c-header-panel-pill {
        width: 100%;
        min-height: 60px;
        padding: 10px 48px 10px 14px;
    }
    .c-header-panel-pill__logo {
        width: 128px;
        height: 18px;
    }
    .c-header-panel-pill__note {
        font-size: 11px;
    }
    .c-header-panel-pill__main {
        font-size: 16px;
    }
    .c-header-panel-pill__arrow {
        width: 24px;
        height: 24px;
        right: 12px;
    }
}
.c-footer {
    position: relative;
    background: #fff;
    border-top: 1px solid var(--second-grey);
    padding: 60px 0;
}

.topScrollBtn {
    cursor: pointer;
    position: fixed;
    right: 20px;
    bottom: 40px;
    display: block;
    width: 56px;
    height: 56px;
    border-radius: 120px;
    background-color: var(--bg-darkgreen);
    transition: opacity 0.4s ease;
    z-index: 10;
    opacity: 1;
    visibility: visible;
}
.topScrollBtn.is-over-footer {
    position: absolute;
    bottom: auto;
    top: -30px;
}
.topScrollBtn.is-hidden {
    opacity: 0;
    visibility: hidden;
}
@media (any-hover: hover) {
    .topScrollBtn:hover {
        opacity: 0.7;
    }
}
.topScrollBtn::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translateY(1px) rotate(-135deg);
}

.c-footer__inner {
    width: min(1320px, 100% - 48px);
    margin: 0 auto;
}

.c-footer__top {
    display: grid;
    grid-template-columns: 226px minmax(0, 1fr) 300px;
    column-gap: 90px;
}

.c-footer__brand {
    min-width: 0;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.c-footer__logo {
    display: inline-flex;
    width: 226px;
    transition: opacity 0.4s ease;
}
@media (any-hover: hover) {
    .c-footer__logo:hover {
        opacity: 0.7;
    }
}

.c-footer__logo img {
    width: 100%;
    height: auto;
    display: block;
}

.c-footer__brand-link {
    margin-top: 40px;
    color: #00a082;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: opacity 0.4s ease;
}
@media (any-hover: hover) {
    .c-footer__brand-link:hover {
        opacity: 0.7;
    }
}

.c-footer__brand-bottom {
    margin-top: auto;
}

.c-footer__contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #00a082;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    transition: opacity 0.4s ease;
}
@media (any-hover: hover) {
    .c-footer__contact:hover {
        opacity: 0.7;
    }
}

.c-footer__external-icon {
    width: 10px;
    height: 10px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-top: -2px;
}

.c-footer__social {
    margin-top: 20px;
    display: flex;
    gap: 17px;
    align-items: center;
}

.c-footer__social-link {
    display: inline-flex;
    line-height: 0;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}
@media (any-hover: hover) {
    .c-footer__social-link:hover {
        opacity: 0.7;
    }
}

.c-footer__social-icon {
    display: block;
}

.c-footer__social-icon--instagram {
    width: 36px;
    height: 36px;
}

.c-footer__social-icon--youtube {
    width: 36.75px;
    height: 25.84px;
}

.c-footer__sitemap {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
}

.c-footer__column {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.c-footer__group {
    min-width: 0;
}

.c-footer__group-title {
    margin: 0;
    color: #000;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.08em;
}

.c-footer__list {
    margin: 15px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.c-footer__sublist {
    margin: 10px 0 0;
    padding: 0 0 0 20px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.c-footer__item {
    position: relative;
    display: inline-block;
    padding-left: 14px;
    color: #000;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: color 0.3s ease;
}

@media (any-hover: hover) {
    .c-footer__item:hover {
        color: #0e7f80;
    }
}

.c-footer__item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 5px;
    height: 5px;
    border-top: 1.3px solid #00a082;
    border-right: 1.3px solid #00a082;
    transform: translateY(-50%) rotate(45deg);
}

.c-footer__entry {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.c-footer__entry .c-footer__pill {
    padding-left: 40px;
}

.c-footer__entry-group {
    min-width: 0;
}

.c-footer__entry-actions {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.c-footer__pill {
    width: 100%;
    min-height: 72px;
    border-radius: 60px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.4s ease;
}
@media (any-hover: hover) {
    .c-footer__pill:hover {
        opacity: 0.7;
    }
}

.c-footer__pill--light {
    background: #fff;
    border: 1px solid var(--line-grey);
}

.c-footer__pill--primary {
    background: var(--bg-darkgreen);
    border: 0;
}

.c-footer__pill-copy {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.c-footer__pill-logo {
    width: 148px;
    height: 20px;
    object-fit: contain;
}

.c-footer__pill-note {
    color: #000;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.08em;
}

.c-footer__pill-main {
    flex: 1 1 auto;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.c-footer__pill-arrow {
    position: relative;
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--bg-darkgreen);
}

.c-footer__pill-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
    transform: translate(-60%, -50%) rotate(45deg);
}

.c-footer__pill--primary .c-footer__pill-arrow {
    background: #fff;
}

.c-footer__pill--primary .c-footer__pill-arrow::before {
    border-color: var(--bg-darkgreen);
}

.c-footer__bottom {
    margin-top: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.c-footer__copyright {
    margin: 0;
    color: #000;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
}

.c-footer__legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.c-footer__legal-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #00a082;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.08em;
    transition: opacity 0.4s ease;
}
@media (any-hover: hover) {
    .c-footer__legal-link:hover {
        opacity: 0.7;
    }
}

@media (max-width: 1300px) {
    .c-footer__top {
        grid-template-columns: 220px minmax(0, 1fr) 300px;
        column-gap: 48px;
    }
    .c-footer__sitemap {
        gap: 24px;
    }
    .c-footer__legal {
        gap: 24px;
    }
}
@media (max-width: 1080px) {
    .c-footer {
        padding: 48px 0;
    }
    .c-footer__top {
        grid-template-columns: 1fr;
        row-gap: 36px;
    }
    .c-footer__brand {
        gap: 24px;
        min-height: 0;
    }
    .c-footer__brand-link {
        margin-top: 0;
        font-size: 16px;
    }
    .c-footer__brand-bottom {
        margin-top: 0;
    }
    .c-footer__contact {
        font-size: 16px;
    }
    .c-footer__entry {
        max-width: 420px;
    }
    .c-footer__bottom {
        margin-top: 60px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}
@media (max-width: 767px) {
    .c-footer {
        padding: 40px 24px;
        background: #f7f7f7;
    }
    .c-footer__inner {
        width: 100%;
    }
    .c-footer__top {
        row-gap: 30px;
    }
    .c-footer__brand {
        align-items: center;
        gap: 20px;
        text-align: center;
    }
    .c-footer__logo {
        width: 226px;
    }
    .c-footer__brand-link {
        font-size: 16px;
        margin-top: 0;
        line-height: 1;
    }
    .c-footer__brand-bottom {
        margin-top: 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .c-footer__contact {
        font-size: 16px;
        line-height: 1;
    }
    .c-footer__social {
        margin-top: 0;
    }
    .c-footer__social-icon--instagram {
        width: 36px;
        height: 36px;
    }
    .c-footer__social-icon--youtube {
        width: 36.75px;
        height: 25.84px;
    }
    .c-footer__sitemap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 40px;
    }
    .c-footer__column {
        gap: 30px;
    }
    .c-footer__entry {
        max-width: 100%;
        gap: 30px;
    }
    .c-footer__entry-group {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .c-footer__group-title {
        font-size: 15px;
        line-height: 1.6;
    }
    .c-footer__list {
        margin-top: 15px;
        gap: 15px;
    }
    .c-footer__sublist {
        display: none;
    }
    .c-footer__item {
        font-size: 13px;
        line-height: 1.3;
    }
    .c-footer__pill {
        min-height: 62px;
        padding: 10px 15px;
    }
    .c-footer__entry-actions {
        margin-top: 0;
        gap: 10px;
    }
    .c-footer__pill-main {
        font-size: 20px;
    }
    .c-footer__pill-logo {
        width: 148px;
        height: 20px;
    }
    .c-footer__pill-note {
        font-size: 12px;
        line-height: 1;
    }
    .c-footer__pill-arrow {
        width: 28px;
        height: 28px;
    }
    .c-footer__pill--primary {
        min-height: 72px;
        border-radius: 50px;
    }
    .c-footer__sitemap > .c-footer__column:nth-child(2) > .c-footer__group:first-child .c-footer__list li:nth-child(n + 2) {
        display: none;
    }
    .c-footer__legal {
        gap: 10px 20px;
        flex-direction: row;
        justify-content: center;
    }
    .c-footer__legal-link {
        font-size: 15px;
        line-height: 1.2;
    }
    .c-footer__bottom {
        margin-top: 40px;
        flex-direction: column-reverse;
        align-items: center;
        gap: 30px;
    }
    .c-footer__copyright {
        text-align: center;
    }
}
/*# sourceMappingURL=common.css.map */
