@charset "utf-8";
/* スタイルシート
作成者：Hatomi Inc.
作成日：R8.1.29
-------------------------------------------------------------------------------------*/
.page {}
.page #main {}
.page #main .block {}
.page #main .inner {}

/*************************************************************************************
**************************************************************************************

about

**************************************************************************************
**************************************************************************************/
/*************************************************************************************

Company Profile

**************************************************************************************/
/* section */
.companyProfile {
    padding: 3rem 0;
}
/* title */
.companyProfile__title {
    position: relative;
}
/* table */
.companyProfile__tableWrap {
    width: 100%;
}
.companyProfile__table {
    width: 100%;
    border-collapse: collapse;
}
/* row */
.companyProfile__row {
    border-top: 1px solid rgba(0, 0, 0, .12);
}
.companyProfile__row:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, .12);
}
/* label */
.companyProfile__label {
    width: 12rem;
    padding: 1.375rem 0;
    font-weight: 700;
    text-align: left;
    vertical-align: top;
    white-space: nowrap;
}
/* value */
.companyProfile__value {
    padding: 1.375rem 0 1.375rem 3rem;
    line-height: 1.9;
}
/* =========================================================
  ~700px
========================================================= */
@media (max-width: 700px) {
    .companyProfile {
        padding: 52px 0;
    }
    .companyProfile__title {
        margin-bottom: 24px;
    }
    .companyProfile__row {
        grid-template-columns: 150px 1fr;
        column-gap: 28px;
        padding: 18px 0;
    }
    .companyProfile__value {
        line-height: 1.85;
    }
}
@media (max-width: 700px) {
    .companyProfile__table, .companyProfile__table tbody, .companyProfile__row {
        display: block;
        width: 100%;
    }
    .companyProfile__label, .companyProfile__value {
        display: list-item;
        list-style: none;
        width: 100%;
    }
    .companyProfile__row {
        padding: 1rem 0;
        border-top: 1px solid rgba(0, 0, 0, .12);
    }
    .companyProfile__label {
        padding: 0 0 0.5rem;
        white-space: normal;
    }
    .companyProfile__value {
        padding: 0;
    }
}
/*************************************************************************************

Company History

**************************************************************************************/
/* =========================
  History Timeline
========================= */
.companyHistory {
    padding: 64px 0;
}
/* --- timeline wrapper --- */
.historyTimeline {
    position: relative;
    margin: 0;
    --cap-pad: .75rem; /* ライン上下の“見せ余白” */
    --block-pad: .85rem; /* 年/本文ブロックの上下余白 */
    --col-gap: 1rem; /* 年↔レール↔本文の横gap */
    --items-gap: .6rem; /* 月行どうしの縦gap */
    /* 灰色ラインのX（PC） 年(7rem)+gap(--col-gap)+レール中心(1.5rem) */
    --rail-x: calc(7rem + var(--col-gap) + 1.5rem);
    padding-top: var(--cap-pad);
    padding-bottom: var(--cap-pad);
}
/* 全体の灰色ライン */
.historyTimeline::before {
    content: "";
    position: absolute;
    top: var(--cap-pad);
    bottom: var(--cap-pad);
    left: var(--rail-x);
    width: 10px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: rgba(0, 0, 0, .06);
    z-index: 0;
}
/* --- 1年分 --- */
.historyTimeline__row {
    position: relative;
    display: grid;
    grid-template-columns: 7rem 3rem 1fr; /* 年 / レール列 / 右 */
    column-gap: var(--col-gap);
    padding: 0;
}
/* ドット */
.historyTimeline__row::after {
    content: "";
    position: absolute;
    left: var(--rail-x);
    top: calc(var(--block-pad) + 0.55em + 7px);
    width: 10px;
    height: 10px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    /*background: #000;*/
    background: transparent;
    z-index: 2;
}
/* year（dt） */
.historyTimeline__year {
    margin: 0;
    font-weight: 700;
    white-space: nowrap;
    padding: var(--block-pad) 0;
}
/* dd  */
.historyTimeline__body {
    margin: 0;
    grid-column: 2 / 4;
    display: grid;
    grid-template-columns: 3rem 1fr;
    column-gap: var(--col-gap);
    padding: var(--block-pad) 0;
    align-items: start;
}
/* rail列*/
.historyTimeline__rail {
    position: relative;
    width: 3rem;
}
/* items */
.historyTimeline__items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    row-gap: var(--items-gap);
}
/* 1出来事（=月 + テキスト） */
.historyTimeline__item {
    display: grid;
    grid-template-columns: 5rem 1fr;
    column-gap: 1rem;
    align-items: start;
}
.historyTimeline__month {
    font-weight: 700;
    white-space: nowrap;
    position: relative;
    padding-right: .8rem;
}
.historyTimeline__month::after {
    content: "｜";
    position: absolute;
    right: 0;
    top: 0;
    opacity: .35;
}
.historyTimeline__text {
    margin: 0;
    line-height: 1.8;
}
.historyTimeline__items > .historyTimeline__item:first-child::before {
    content: none !important;
}
/* =======================================================
  TB 481~700
========================================================= */
@media (max-width: 700px) {
    .companyHistory {
        padding: 52px 0;
    }
    .historyTimeline {
        --cap-pad: .65rem;
        --block-pad: .75rem;
        --col-gap: .85rem;
        --items-gap: .55rem;
        /* TB: 年(7rem)+gap(--col-gap)+レール中心(2.5rem/2=1.25rem) */
        --rail-x: calc(7rem + var(--col-gap) + 1.25rem);
    }
    .historyTimeline__row {
        grid-template-columns: 7rem 2.5rem 1fr;
    }
    .historyTimeline__body {
        grid-template-columns: 2.5rem 1fr;
    }
    .historyTimeline__rail {
        width: 2.5rem;
    }
    .historyTimeline__item {
        grid-template-columns: 3rem 1fr;
        column-gap: .85rem;
    }
    .historyTimeline__row::after {
        top: calc(var(--block-pad) + 0.55em + 5px);
    }
}
/* =======================================================
  SP ~480
  年が上、下に（レール列 + 内容列）
========================================================= */
@media (max-width: 480px) {
    .companyHistory {
        padding: 40px 0;
    }
    .historyTimeline {
        --cap-pad: .55rem;
        --block-pad: .65rem;
        --col-gap: .75rem;
        --items-gap: .5rem;
        /* SP: bodyのレール列 2.5rem の中心 = 1.25rem */
        --rail-x: 1.25rem;
        padding-top: var(--cap-pad);
        padding-bottom: var(--cap-pad);
    }
    .historyTimeline::before {
        top: var(--cap-pad);
        bottom: var(--cap-pad);
    }
    /* SPは「年」もレール列を持った2カラムにする */
    .historyTimeline__row {
        grid-template-columns: 2.5rem 1fr; /* レール列 / 本文列 */
        column-gap: var(--col-gap);
        row-gap: .35rem; /* 詰め */
    }
    /* 年は本文列に配置*/
    .historyTimeline__year {
        grid-column: 2;
        padding: var(--block-pad) 0 0;
        margin-bottom: -.8rem;
    }
    /* bodyは2カラム（レール列 + 本文列）を維持 */
    .historyTimeline__body {
        grid-column: 1 / 3;
        grid-template-columns: 2.5rem 1fr;
        column-gap: var(--col-gap);
        padding: var(--block-pad) 0 .85rem;
    }
    .historyTimeline__item {
        grid-template-columns: 1fr;
        row-gap: .2rem;
    }
    .historyTimeline__month {
        padding-right: 0;
    }
    .historyTimeline__month::after {
        content: "";
    }
    .historyTimeline__row::after {
        top: calc(var(--block-pad) + 0.8em + 3px);
    }
}
/*************************************************************************************
**************************************************************************************

FAQ

**************************************************************************************
**************************************************************************************/

.faqSection {
    position: relative;
    overflow: hidden;
    padding: 72px 0 96px;
    background: #fff;
}
.faqSection::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/bg_sqare.png");
    background-repeat: no-repeat;
    background-position: center -2rem;
    background-size: clamp(760px, calc(100vw + 160px), 1423px) auto;
    z-index: 0;
    pointer-events: none;
}
.faqSection .column__outer, .faqSection .column__inner {
    position: relative;
    z-index: 1;
}
@media (max-width: 700px) {
    .faqSection {
        padding: 60px 0 80px;
    }
    .faqSection::before {
        background-size: clamp(640px, calc(100vw + 140px), 1423px) auto;
        background-position: center -2rem;
    }
}
@media (max-width: 480px) {
    .faqSection {
        padding: 48px 0 64px;
    }
    .faqSection::before {
        background-size: clamp(550px, calc(100vw + 120px), 1423px) auto;
        background-position: center -1rem;
    }
}
.faqSection__title {
    position: relative;
    text-align: center;
    padding-left: 0;
    margin: 0 0 56px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .08em;
    font-size: clamp(1.25rem, 1.2vw + 0.9rem, 1.75rem);
}
.faqSection__title::before {
    content: none;
}
.faqSection__title::after {
    content: "";
    display: block;
    width: 56px; /* 下線の長さ */
    height: 4px;
    margin: 18px auto 0; /* 上下バランス */
    background: #091057; /* 濃紺（デザイン色） */
    /*border-radius: 999px;*/
}
@media (max-width: 700px) {
    .faqSection__title {
        margin-bottom: 44px;
        font-size: clamp(1.15rem, 1.4vw + 0.8rem, 1.6rem);
    }
    .faqSection__title::after {
        width: 48px;
        margin-top: 16px;
    }
}
@media (max-width: 480px) {
    .faqSection__title {
        margin-bottom: 32px;
        letter-spacing: .06em;
    }
    .faqSection__title::after {
        width: 40px;
        height: 3px;
        margin-top: 14px;
    }
}
.faqList {
    display: grid;
    row-gap: 2rem;
}
@media (max-width: 700px) {
    .faqList {
        row-gap: 22px;
    }
}
@media (max-width: 480px) {
    .faqList {
        row-gap: 18px;
    }
}
.faqCard {
    background: #F2F2F2;
    border-radius: 14px;
    padding: 22px 26px;
    /*box-shadow: 0 10px 24px rgba(0,0,0,.06);*/
}
@media (max-width: 700px) {
    .faqCard {
        padding: 18px 20px;
        border-radius: 12px;
    }
}
@media (max-width: 480px) {
    .faqCard {
        padding: 16px 16px;
        border-radius: 12px;
    }
}
.faqCard__q, .faqCard__a {
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 14px;
    align-items: start;
}
.faqCard__q {
    padding-bottom: 14px;
    /*border-bottom: 1px solid rgba(0,0,0,.08);*/
    margin-bottom: 14px;
}
@media (max-width: 700px) {
    .faqCard__q, .faqCard__a {
        grid-template-columns: 40px 1fr;
        column-gap: 12px;
    }
    .faqCard__q {
        padding-bottom: 12px;
        margin-bottom: 12px;
    }
}
@media (max-width: 480px) {
    .faqCard__q, .faqCard__a {
        grid-template-columns: 38px 1fr;
        column-gap: 10px;
    }
    .faqCard__q {
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
}
.faqBadge {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    line-height: 1;
}
.faqBadge--q {
    background: #0b1a5a;
}
.faqBadge--a {
    background: #ff6aa6;
}
@media (max-width: 700px) {
    .faqBadge {
        width: 34px;
        height: 34px;
        font-size: .95rem;
    }
}
@media (max-width: 480px) {
    .faqBadge {
        width: 32px;
        height: 32px;
        font-size: .9rem;
    }
}
.faqCard__qText {
    margin: 0;
    font-weight: 700;
    line-height: 1.6;
}
.faqCard__aText {
    line-height: 1.9;
}
.faqCard__aText p {
    margin: 0;
}

/*************************************************************************************
**************************************************************************************

Welfare

**************************************************************************************
**************************************************************************************/

.welfareWrapper {
    position: relative;
    overflow: hidden;
}
.welfareWrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/bg_sqare_welfare.png");
    background-repeat: no-repeat;
    background-position: center -1.25rem;
    /*background-size: clamp(760px, calc(100vw + 160px), 1423px) auto;*/
    background-size: clamp(760px, calc(100vw + 50px), 1200px) auto;
    z-index: 0;
    pointer-events: none;
}
.welfareWrapper > * {
    position: relative;
    z-index: 1;
}
@media (max-width: 1300px) {
    .welfareWrapper::before {
        background-position: center -1rem;
        background-size: clamp(760px, calc(100vw + 30px), 1423px) auto;
    }
}
@media (max-width: 700px) {
    .welfareWrapper::before {
        background-position: center -1rem;
        background-size: clamp(640px, calc(100vw + 280px), 1423px) auto;
    }
}
@media (max-width: 480px) {
    .welfareWrapper::before {
        background-position: center -0.75rem;
        background-size: clamp(520px, calc(100vw + 16rem), 1423px) auto;
    }
}

.welfareLead {
    position: relative;
    overflow: hidden;
    padding: 72px 0 8rem;
}
@media (max-width: 960px) {
    .welfareLead {
        padding: 64px 0 52px;
    }
}
@media (max-width: 700px) {
    .welfareLead {
        padding: 60px 0 48px;
    }
}
@media (max-width: 480px) {
    .welfareLead {
        padding: 48px 0 40px;
    }
}
.welfareLead__grid {
    display: grid;
    grid-template-columns: 1fr minmax(420px, 520px);
    column-gap: 40px;
    align-items: center;
}
@media (max-width: 960px) {
    .welfareLead__grid {
        grid-template-columns: 1fr;
        row-gap: 24px;
        align-items: start;
    }
}
@media (max-width: 700px) {
    .welfareLead__grid {
        row-gap: 20px;
    }
}
@media (max-width: 480px) {
    .welfareLead__grid {
        row-gap: 16px;
    }
}
.welfareLead__title {
    margin: 0 0 1.5rem;
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: .04em;
    font-size: clamp(1.25rem, 1vw + 1rem, 1.6rem);
}
@media (max-width: 960px) {
    .welfareLead__title {
        margin-bottom: 2rem;
        text-align: center;
    }
}
@media (max-width: 700px) {
    .welfareLead__title {
        margin-bottom: 2rem;
    }
}
@media (max-width: 480px) {
    .welfareLead__title {
        margin-bottom: 2rem;
        font-size: 1.25rem;
        line-height: 1.5;
    }
}
.welfareLead__desc {
    margin: 0;
    line-height: 2;
    font-size: 1rem;
}
@media (max-width: 960px) {
    .welfareLead__desc {
        line-height: 1.95;
        text-align: center;
    }
}
@media (max-width: 700px) {
    .welfareLead__desc {
        font-size: .95rem;
    }
}
@media (max-width: 480px) {
    .welfareLead__desc {
        line-height: 1.9;
        text-align: left;
    }
}
.welfareLead__media {
    margin: 0;
}
.welfareLead__media--bleedRight {
    justify-self: end;
    width: calc(100% + ((100vw - 100%) / 2));
    margin-right: calc((100vw - 100%) / -2);
    height: 320px;
    /*border-radius: 10px 0 0 10px;*/
    overflow: hidden;
}
.welfareLead__media--bleedRight img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 960px) {
    .welfareLead__media--bleedRight {
        width: 100%;
        margin-right: 0;
        height: 300px;
        /*border-radius: 10px;*/
    }
}
@media (max-width: 700px) {
    .welfareLead__media--bleedRight {
        height: 280px;
    }
}
@media (max-width: 480px) {
    .welfareLead__media--bleedRight {
        height: auto;
    }
    .welfareLead__media--bleedRight img {
        height: auto;
        object-fit: contain;
    }
}
.welfareBenefits {
    padding: 64px 0 72px;
}
@media (max-width: 700px) {
    .welfareBenefits {
        padding: 56px 0 64px;
    }
}
@media (max-width: 480px) {
    .welfareBenefits {
        padding: 48px 0 56px;
    }
}
.welfareBenefit {
    padding: 0;
}
.welfareBenefit + .welfareBenefit {
    margin-top: 3.5rem;
}
@media (max-width: 700px) {
    .welfareBenefit + .welfareBenefit {
        margin-top: 3rem;
    }
}
@media (max-width: 480px) {
    .welfareBenefit + .welfareBenefit {
        margin-top: 2.5rem;
    }
}
.welfareBenefit__title {
    position: relative;
    margin: 0 0 1.25rem;
    padding-left: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    font-size: clamp(1.125rem, 0.6vw + 1.05rem, 1.35rem);
    letter-spacing: .02em;
    color: #091057;
}
.welfareBenefit__title::before {
    content: "";
    position: absolute;
    left: 0;
    top: .2em;
    width: .25rem;
    height: 1.1em;
    background: #091057;
}
@media (max-width: 700px) {
    .welfareBenefit__title {
        margin-bottom: 1.1rem;
        padding-left: 1.125rem;
    }
}
@media (max-width: 480px) {
    .welfareBenefit__title {
        margin-bottom: 1rem;
        padding-left: 1.05rem;
    }
}
.welfareBenefit__grid {
    display: grid;
    grid-template-columns: minmax(320px, 420px) 1fr;
    column-gap: 3rem;
    align-items: start;
}
.welfareBenefit--reverse .welfareBenefit__grid {
    grid-template-columns: 1fr minmax(320px, 420px);
}
.welfareBenefit--reverse .welfareBenefit__media {
    order: 2;
}
.welfareBenefit--reverse .welfareBenefit__body {
    order: 1;
}
@media (max-width: 960px) {
    .welfareBenefit .welfareBenefit__grid {
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 1rem;
    }
    .welfareBenefit .welfareBenefit__media {
        order: 2;
    }
    .welfareBenefit .welfareBenefit__body {
        order: 1;
    }
    .welfareBenefit--reverse .welfareBenefit__grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 700px) {
    .welfareBenefit .welfareBenefit__grid {
        row-gap: .9rem;
    }
}
@media (max-width: 480px) {
    .welfareBenefit .welfareBenefit__grid {
        row-gap: .85rem;
    }
}
.welfareBenefit__media {
    margin: 0;
}
.welfareBenefit__media img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: .625rem;
}
@media (max-width: 700px) {
    .welfareBenefit__media img {
        border-radius: .55rem;
    }
}
@media (max-width: 480px) {
    .welfareBenefit__media img {
        border-radius: .5rem;
    }
}
.welfareBenefit__body {
    min-width: 0;
}
.welfareBenefit__lead {
    font-weight: 700;
    line-height: 1.8;
    margin: 0 0 1.5rem;
    font-size: clamp(1.0625rem, 0.55vw + 1rem, 1.15rem);
}
@media (max-width: 700px) {
    .welfareBenefit__lead {
        padding-left: 0;
        margin-bottom: .9rem;
        font-size: clamp(1.02rem, 0.45vw + .98rem, 1.1rem);
    }
}
@media (max-width: 480px) {
    .welfareBenefit__lead {
        padding-left: 0;
        margin-bottom: .85rem;
        font-size: 1.02rem;
    }
}
.welfareBenefit__text {
    margin: 0;
    line-height: 2;
    font-size: .95rem;
}
.welfareBenefit__text + .welfareBenefit__text {
    margin-top: .75rem;
}
@media (max-width: 700px) {
    .welfareBenefit__text {
        line-height: 1.95;
    }
}
@media (max-width: 480px) {
    .welfareBenefit__text {
        line-height: 1.9;
    }
}
.welfareBenefit__box {
    margin: 1rem 0;
    padding: 1rem 2rem;
    border-radius: .75rem;
    background: rgba(0, 0, 0, .06);
}
@media (min-width: 1051px) {
    .welfareBenefit__box {
        padding: 1rem 5rem;
    }
}
@media (max-width: 1000px) {
    .welfareBenefit__box {
        padding: 1rem 1.25rem;
    }
}
@media (max-width: 700px) {
    .welfareBenefit__box {
        padding: .95rem 1.1rem;
        border-radius: .7rem;
    }
}
@media (max-width: 480px) {
    .welfareBenefit__box {
        padding: .9rem 1rem;
        border-radius: .65rem;
    }
}
.welfareBenefit__boxList {
    margin: 0;
    padding-left: 1.1rem;
    list-style: disc;
    display: block;
    line-height: 1.9;
    font-size: .95rem;
}
.welfareBenefit__boxList li {
    padding-left: 0;
}
@media (min-width: 961px) {
    .welfareBenefit__boxList {
        padding: 0;
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        gap: .25em 1em;
    }
    .welfareBenefit__boxList li {
        position: relative;
        white-space: nowrap;
        padding-left: .9em;
    }
    .welfareBenefit__boxList li::before {
        content: "・";
        position: absolute;
        left: 0;
        top: 0;
        opacity: .85;
    }
}

/*************************************************************************************
**************************************************************************************

data

**************************************************************************************
**************************************************************************************/

.dataSection {
    padding-top: 3.5rem;
    padding-bottom: 4.5rem;
}
.dataSection__title {
    font-size: clamp(1.25rem, 0.6vw + 1.2rem, 1.55rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    margin: 0 0 1.75rem 0;
    position: relative;
    padding-left: 1rem;
    color: #091057;
}
.dataSection__title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.25rem;
    height: 1.15em;
    background: #0b1f5a;
}
/* SP */
@media only screen and (max-width: 550px) {
    .dataSection__title {
        margin-bottom: 1.25rem;
    }
}
.dataStack {
    display: grid;
    gap: 1.875rem;
}
@media only screen and (max-width: 550px) {
    .dataStack {
        gap: 0.95rem;
    }
}
.dataRow {
    min-width: 0;
}
.dataRow--twoCol {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.875rem; /* ← 30px */
    align-items: stretch;
}
@media only screen and (max-width: 550px) {
    .dataRow--twoCol {
        grid-template-columns: 1fr;
        gap: 0.95rem;
    }
}
.dataRow--threeCol {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
}
@media only screen and (max-width: 550px) {
    .dataRow--threeCol {
        grid-template-columns: 1fr;
        gap: 0.95rem;
    }
}
.dataCol {
    display: grid;
    gap: 1.875rem;
    min-width: 0;
}
/* SP */
@media only screen and (max-width: 550px) {
    .dataCol {
        gap: 0.95rem;
    }
}
.dataCol--stack2 {
    grid-template-rows: repeat(2, 1fr);
}
.dataCol--stack3 {
    grid-template-rows: repeat(3, 1fr);
}
.dataCard {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 0.25rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
    padding: 1.1rem 1.1rem 1.2rem;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
/* SP */
@media only screen and (max-width: 550px) {
    .dataCard {
        padding: 1rem 1rem 1.05rem;
    }
}
.dataCard__label {
    font-size: clamp(1.1rem, /* SP下限 */ 0.6vw + 0.95rem, /* 可変 */ 1.25rem /* PC上限 ≒ 20px */
        );
    font-weight: 700;
    margin: 0 0 0.85rem 0;
    --bullet: 0.72em;
    --gap: 0.55rem;
    padding-left: calc(var(--bullet) + var(--gap));
    position: relative;
    line-height: 1.28;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dataCard__label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 55%;
    transform: translateY(-50%);
    width: var(--bullet);
    height: var(--bullet);
    background: #0b1f5a;
}
.dataCard--lg .dataCard__label {
    font-size: clamp(1.2rem, /* SP下限 */ 1vw + 0.9rem, /* 可変 */ 1.45rem /* PC上限 ≒ 23.2px */);
    line-height: 1.22;
}
@media only screen and (max-width: 550px) {
    .dataCard__label {
        margin-bottom: 0.75rem;
    }
}
.dataCard__label--wrap {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
}
.dataCard__label--wrap::before {
    top: 0.62em;
    transform: translateY(-50%);
}
.dataCard__media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 9.25rem;
    margin-top: auto;
}
@media only screen and (max-width: 550px) {
    .dataCard__media {
        min-height: 8.75rem;
    }
}
.dataCard__img {
    display: block;
    /*width: 100%;*/
    width: 85%;
    height: auto;
    /*max-height: 22rem;*/
    object-fit: contain;
}
.dataCard--lg .dataCard__media {
    min-height: 24rem;
}
@media only screen and (max-width: 550px) {
    .dataCard--lg .dataCard__media {
        min-height: 16.5rem;
    }
}
.dataCard__media--lift {
    transform: translateY(-2rem);
}
@media only screen and (max-width: 550px) {
    .dataCard__media--lift {
        transform: translateY(-0.5rem);
    }
}
.dataSection .js-inview {
    opacity: 0;
    transform: translateY(4px);
    transition:
        opacity .9s ease-out, transform .9s cubic-bezier(.22, 1, .36, 1);
    transition-delay: var(--delay, 0ms);
    will-change: opacity, transform;
}
.dataSection .js-inview.is-inview {
    opacity: 1;
    transform: translateY(0);
}
/*************************************************************************************
**************************************************************************************

Ideal

**************************************************************************************
**************************************************************************************/

.careerVisionArea {
    background: #f3f3f3;
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
    overflow: visible;
}
@media only screen and (max-width: 960px) {
    .careerVisionArea {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}
@media only screen and (max-width: 800px) {
    .careerVisionArea {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
}
@media only screen and (max-width: 480px) {
    .careerVisionArea {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}
.careerVision {
    text-align: center;
    padding-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}
@media only screen and (max-width: 960px) {
    .careerVision {
        padding-bottom: 3.25rem;
    }
}
@media only screen and (max-width: 800px) {
    .careerVision {
        padding-bottom: 3rem;
    }
}
@media only screen and (max-width: 480px) {
    .careerVision {
        padding-bottom: 2.6rem;
    }
}
.careerVision__title {
    margin: 0;
    color: #0b1f64;
    font-weight: 700;
    letter-spacing: 0.10em;
    font-size: clamp(2.8rem, 2.0vw + 1.7rem, 3.8rem);
    line-height: 1.08;
}
@media only screen and (max-width: 960px) {
    .careerVision__title {}
}
@media only screen and (max-width: 800px) {
    .careerVision__title {}
}
@media only screen and (max-width: 480px) {
    .careerVision__title {
        font-size: clamp(1.75rem, 2.2vw + 1.1rem, 2.05rem);
    }
}
.careerVision__lead {
    margin-top: 1.6rem;
    margin-bottom: 0;
    color: #1b1b1b;
    line-height: 1.9;
    font-weight: 600;
    letter-spacing: 0.1em;
    font-size: clamp(1.25rem, 1.1vw + 1.2rem, 2rem);
}
@media only screen and (max-width: 960px) {
    .careerVision__lead {}
}
@media only screen and (max-width: 800px) {
    .careerVision__lead {
        text-align: left;
        line-height: 1.9;
    }
}
@media only screen and (max-width: 480px) {
    .careerVision__lead {
        font-size: clamp(0.98rem, 0.8vw + 0.85rem, 1.05rem);
    }
}
.careerVision__list {
    margin-top: 3rem;
    margin-bottom: 0;
    list-style: none;
    padding-left: 0;
    width: min(80%, 52rem);
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    color: #1b1b1b;
    font-weight: 600;
    line-height: 1.9;
    font-size: clamp(1.2rem, 0.7vw + 1.05rem, 1.55rem);
    --dot-size: 2px;
    --dot-gap: 6px;
    --rule-thickness: 2px;
    --rule-color: rgba(0, 0, 0, .55);
    --bullet-indent: 1.35rem;
    --row-pad: 0.9rem;
    --line-gap: 0.6rem;
}
@media only screen and (max-width: 960px) {
    .careerVision__list {
        width: min(86%, 52rem);
    }
}
@media only screen and (max-width: 800px) {
    .careerVision__list {
        width: 100%;
    }
}
@media only screen and (max-width: 480px) {
    .careerVision__list {
        margin-top: 1.5rem;
        font-size: clamp(.8rem, 0.9vw + 0.95rem, .96rem);
        line-height: 1.85;
        --dot-size: 2px;
        --dot-gap: 5px;
        --rule-thickness: 2px;
        --bullet-indent: 1.25rem;
        --row-pad: 0.8rem;
        --line-gap: 0.55rem;
    }
}
.careerVision__list > li {
    /*padding-top: var(--row-pad);*/
    padding-bottom: var(--row-pad);
}
.careerVision__itemText {
    position: relative;
    display: inline-block;
    padding-left: var(--bullet-indent);
    padding-bottom: calc(var(--line-gap) + var(--rule-thickness));
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: inherit;
}
.careerVision__itemText::before {
    content: "・";
    position: absolute;
    left: 0;
    top: 0;
    letter-spacing: 0;
    color: #1b1b1b;
}
.careerVision__itemText::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: var(--rule-thickness);
    background-image:
        radial-gradient(circle, var(--rule-color) 0 var(--dot-size), transparent calc(var(--dot-size) + 0.5px));
    background-size: calc(var(--dot-size) + var(--dot-gap)) var(--rule-thickness);
    background-repeat: repeat-x;
    background-position: left bottom;
}
.careerIdeal {
    padding-top: 0.5rem;
    position: relative;
    z-index: 2;
}
@media only screen and (max-width: 960px) {
    .careerIdeal {
        padding-top: 0.25rem;
    }
}
@media only screen and (max-width: 800px) {
    .careerIdeal {
        padding-top: 0;
    }
}
@media only screen and (max-width: 480px) {
    .careerIdeal {
        padding-top: 0;
    }
}
.careerIdeal__grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    align-items: start;
    overflow: visible;
}
@media only screen and (max-width: 960px) {
    .careerIdeal__grid {
        grid-template-columns: 1fr 380px;
        gap: 2rem;
    }
}
@media only screen and (max-width: 800px) {
    .careerIdeal__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
@media only screen and (max-width: 480px) {
    .careerIdeal__grid {
        gap: 1.6rem;
    }
}
.careerIdeal__heading {
    margin: 0;
    color: #111;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.4;
    font-size: clamp(1.15rem, 0.6vw + 1.05rem, 1.45rem);
}
.careerIdeal__heading .underline {
    position: relative;
    display: inline-block;
    padding-bottom: 0.4em;
}
.careerIdeal__heading .underline::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background-color: #091057;
}
.careerIdeal__points {
    margin-top: 2.1rem;
    margin-bottom: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 2.2rem;
}
@media only screen and (max-width: 960px) {
    .careerIdeal__points {
        gap: 2.0rem;
    }
}
@media only screen and (max-width: 800px) {
    .careerIdeal__points {
        gap: 1.8rem;
    }
}
@media only screen and (max-width: 480px) {
    .careerIdeal__points {
        gap: 1.55rem;
    }
}
.careerIdeal__point {
    display: grid;
    grid-template-columns: 6.8rem 1fr;
    align-items: center;
    column-gap: 2.2rem;
}
@media only screen and (min-width: 961px) {
    .careerIdeal__point {
        grid-template-columns: 5rem 1fr;
        column-gap: 1.9rem;
    }
}
@media only screen and (max-width: 960px) {
    .careerIdeal__point {
        grid-template-columns: 5rem 1fr;
        column-gap: 1.9rem;
    }
}
@media only screen and (max-width: 800px) {
    .careerIdeal__point {
        grid-template-columns: 5rem 1fr;
        column-gap: 2.0rem;
    }
}
@media only screen and (max-width: 480px) {
    .careerIdeal__point {
        grid-template-columns: 4rem 1fr;
        column-gap: 1.6rem;
    }
}

.careerIdeal__no {
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1;
    color: rgba(127, 205, 208, .38);
    font-size: clamp(4.0rem, 2.6vw + 3.1rem, 5.6rem);
    display: inline-block;
    transform: scaleX(.9);
    transform-origin: left center;
    white-space: nowrap;
}
@media only screen and (max-width: 960px) {
    .careerIdeal__no {
        font-size: clamp(3.6rem, 2.2vw + 2.9rem, 5.0rem);
    }
}
@media only screen and (max-width: 800px) {
    .careerIdeal__no {
        font-size: clamp(3.8rem, 3.0vw + 2.7rem, 5.0rem);
    }
}
@media only screen and (max-width: 480px) {
    .careerIdeal__no {
        font-size: clamp(3.2rem, 4.2vw + 2.2rem, 4.2rem);
        transform: scaleX(.92);
    }
}
.careerIdeal__label {
    color: #111;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.7;
    font-size: clamp(1.25rem, 0.7vw + 1.05rem, 1.9rem);
}
@media only screen and (max-width: 960px) {
    .careerIdeal__label {
        font-size: clamp(1.15rem, 0.7vw + 1.0rem, 1.55rem);
    }
}
@media only screen and (max-width: 800px) {
    .careerIdeal__label {
        font-size: clamp(1.12rem, 0.9vw + 1.0rem, 1.45rem);
    }
}
@media only screen and (max-width: 480px) {
    .careerIdeal__label {
        font-size: clamp(1.05rem, 1.2vw + 0.95rem, 1.25rem);
    }
}
.careerIdeal__media {
    position: relative;
    z-index: 3;
    margin-top: -9rem;
}
@media only screen and (max-width: 960px) {
    .careerIdeal__media {
        margin-top: -2.75rem;
    }
}
@media only screen and (max-width: 800px) {
    .careerIdeal__media {
        margin-top: 0;
    }
}
@media only screen and (max-width: 480px) {
    .careerIdeal__media {
        margin-top: 0;
    }
}
.careerIdeal__media {
    margin-right: 0;
}
@media only screen and (max-width: 1280px) {
    .careerIdeal__media {
        margin-right: calc(50% - 50vw);
    }
}
@media only screen and (max-width: 800px) {
    .careerIdeal__media {
        margin-right: 0;
    }
}
@media only screen and (max-width: 480px) {
    .careerIdeal__media {
        margin-right: 0;
    }
}
.careerIdeal__imgFrame {
    overflow: hidden;
    border-radius: 1.75rem;
    max-width: 460px;
}
@media only screen and (min-width: 961px) {
    .careerIdeal__imgFrame {
        overflow: hidden;
        border-radius: 1.75rem;
        max-width: 460px;
        margin-left: 2rem;
    }
}
@media only screen and (max-width: 960px) {
    .careerIdeal__imgFrame {
        border-radius: 1.5rem;
        max-width: 380px;
    }
}
@media only screen and (max-width: 800px) {
    .careerIdeal__imgFrame {
        border-radius: 1.5rem;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media only screen and (max-width: 480px) {
    .careerIdeal__imgFrame {
        border-radius: 1.25rem;
        max-width: 100%;
    }
}
.careerIdeal__img {
    display: block;
    width: 100%;
    height: auto;
}
@media only screen and (max-width: 960px) {
    .careerIdeal__img {}
}
@media only screen and (max-width: 800px) {
    .careerIdeal__img {}
}
@media only screen and (max-width: 480px) {
    .careerIdeal__img {}
}

/*************************************************************************************
  Message
**************************************************************************************/

.careerMessage {
    padding-top: 4.5rem;
    padding-bottom: 0;
}
@media only screen and (max-width: 960px) {
    .careerMessage {
        padding-top: 4rem;
        padding-bottom: 0;
    }
}
@media only screen and (max-width: 480px) {
    .careerMessage {
        padding-top: 3.25rem;
        padding-bottom: 0;
    }
}
/* 2カラム */
.careerMessage__grid {
    margin-top: 2.2rem;
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 3rem;
    align-items: start;
}
@media only screen and (max-width: 1100px) {
    .careerMessage__grid {
        grid-template-columns: 1fr 420px;
        gap: 2.5rem;
    }
}
/* 900px以下で画像を下へ */
@media only screen and (max-width: 900px) {
    .careerMessage__grid {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }
}
/* 左：所属＋氏名 */
.careerMessage__meta {
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 1.6rem;
    color: #111;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.6;
    font-size: clamp(1.05rem, 0.3vw + 1.0rem, 1.2rem);
}
/* 左：本文 */
.careerMessage__text {
    margin-top: 1.6rem;
    color: #111;
    letter-spacing: 0.06em;
    line-height: 2.1;
    font-size: clamp(0.98rem, 0.25vw + 0.95rem, 1.08rem);
}
.careerMessage__text p {
    margin: 0;
}
.careerMessage__text p + p {
    margin-top: 1.6rem;
}
/* 右：写真 */
.careerMessage__photo {
    margin: 0;
    background: #f0f0f0;
    overflow: hidden;
}
.careerMessage__photo img {
    display: block;
    width: 100%;
    height: auto;
}
/* 右：経歴 */
.careerMessage__history {
    margin-top: 1.25rem;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    display: grid;
    gap: 0.65rem;
    color: #111;
    letter-spacing: 0.06em;
    line-height: 1.9;
    font-size: clamp(0.92rem, 0.2vw + 0.9rem, 1.0rem);
}
.careerMessage__row {
    display: grid;
    grid-template-columns: 8rem 1fr;
    column-gap: 1rem;
}
.careerMessage__row dt, .careerMessage__row dd {
    margin: 0;
    font-size: 90%;
}
.careerMessage__row dt {
    font-weight: 700;
    white-space: nowrap;
}
.careerMessage__row dd {
    font-weight: 500;
}
@media only screen and (max-width: 900px) {
    .careerMessage__row {
        grid-template-columns: 10rem 1fr;
    }
}
@media only screen and (max-width: 480px) {
    .careerMessage__meta {
        gap: 1.1rem;
        font-size: 1.05rem;
    }
    .careerMessage__text {
        line-height: 2.0;
    }
    .careerMessage__row {
        grid-template-columns: 1fr;
        gap: 0.15rem;
    }
    .careerMessage__row dt {
        font-size: 0.95rem;
    }
}